ETH Price: $3,294.85 (-3.43%)
Gas: 20 Gwei

Token

CockCockCOCKROACH (COCKROACH)
 

Overview

Max Total Supply

1,445 COCKROACH

Holders

223

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
grapedutch.eth
Balance
5 COCKROACH
0x7abca3cbc8aa182d10f742f72e2e8bc68c4a8839
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:
CockCockCOCKROACH

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

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

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/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/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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


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

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

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


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



pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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/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: @openzeppelin/contracts/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/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;
    }
}


// Creator: Chiru Labs

pragma solidity ^0.8.0;


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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

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

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

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

    /**
     * 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) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

    /**
     * @dev 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;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

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

            uint256 updatedIndex = startTokenId;

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

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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





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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

pragma solidity >=0.7.0 <0.9.0;

contract CockCockCOCKROACH is ERC721A, Ownable {
  using Strings for uint256;
  string baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.009 ether;
  uint256 public maxSupply = 1500;
  uint256 public maxMintAmount = 10;
  uint256 public maxFREEMintAmount = 3;
  uint256 public FREEnftPerAddressLimit = 3;
  uint256 public FREE_MAX_SUPPLY = 1000;
  address[] public whitelistedAddresses;
  bool public paused = true;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI
  ) ERC721A(_name, _symbol) {
    setBaseURI(_initBaseURI);
  }

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

  // public
  function mint(uint256 _mintAmount) public payable {
    require(!paused, "the contract is paused");
    uint256 supply = totalSupply();
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

    if (msg.sender != owner()) {
        if (FREE_MAX_SUPPLY >= supply + _mintAmount) {
            require(_mintAmount <= maxFREEMintAmount, "max mint amount per session exceeded");
            require(numberMinted(msg.sender) + _mintAmount <= FREEnftPerAddressLimit, "max NFT per address exceeded");
        } else {
            require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
            require(msg.value >= _mintAmount * cost, "Invalid funds provided");
        }
    }
    
    _safeMint(msg.sender, _mintAmount);
    
  }

  function WLmint(uint256 _mintAmount) public payable {
    require(!paused, "the contract is paused");
    uint256 supply = totalSupply();
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");
    require(isWhitelisted(msg.sender), "user is not whitelisted");
    _safeMint(msg.sender, _mintAmount);
    
  }

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


  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

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

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

  //only owner

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


  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    FREEnftPerAddressLimit = _limit;
  }

  function setFreeMaxSupply(uint256 _FreeMaxAmount) public onlyOwner {
    FREE_MAX_SUPPLY = _FreeMaxAmount;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

  function setFreeMaxMintAmount(uint256 _newFreeMaxMintAmount) public onlyOwner {
    maxFREEMintAmount = _newFreeMaxMintAmount;
    FREEnftPerAddressLimit = _newFreeMaxMintAmount;
  }

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREEnftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"WLmint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFREEMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newFreeMaxMintAmount","type":"uint256"}],"name":"setFreeMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_FreeMaxAmount","type":"uint256"}],"name":"setFreeMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a0908152620000289160099190620001ba565b50661ff973cafa8000600a9081556105dc600b55600c556003600d819055600e556103e8600f556011805460ff191660011790553480156200006957600080fd5b5060405162002aa738038062002aa78339810160408190526200008c9162000317565b825183908390620000a5906001906020850190620001ba565b508051620000bb906002906020840190620001ba565b505050620000d8620000d2620000ec60201b60201c565b620000f0565b620000e38162000142565b505050620003fb565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b03163314620001a15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001b6906008906020840190620001ba565b5050565b828054620001c890620003a8565b90600052602060002090601f016020900481019282620001ec576000855562000237565b82601f106200020757805160ff191683800117855562000237565b8280016001018555821562000237579182015b82811115620002375782518255916020019190600101906200021a565b506200024592915062000249565b5090565b5b808211156200024557600081556001016200024a565b600082601f8301126200027257600080fd5b81516001600160401b03808211156200028f576200028f620003e5565b604051601f8301601f19908116603f01168101908282118183101715620002ba57620002ba620003e5565b81604052838152602092508683858801011115620002d757600080fd5b600091505b83821015620002fb5785820183015181830184015290820190620002dc565b838211156200030d5760008385830101525b9695505050505050565b6000806000606084860312156200032d57600080fd5b83516001600160401b03808211156200034557600080fd5b620003538783880162000260565b945060208601519150808211156200036a57600080fd5b620003788783880162000260565b935060408601519150808211156200038f57600080fd5b506200039e8682870162000260565b9150509250925092565b600181811c90821680620003bd57607f821691505b60208210811415620003df57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61269c806200040b6000396000f3fe6080604052600436106102515760003560e01c8063715018a611610139578063c6682862116100b6578063d5abeb011161007a578063d5abeb011461067d578063da3ef23f14610693578063dc33e681146106b3578063e985e9c5146106d3578063edec5f271461071c578063f2fde38b1461073c57600080fd5b8063c6682862146105e8578063c87b56dd146105fd578063d0eb26b01461061d578063d223a6311461063d578063d4fcb2ae1461065d57600080fd5b806395d89b41116100fd57806395d89b4114610560578063a0712d6814610575578063a22cb46514610588578063b88d4fde146105a8578063ba4e5c49146105c857600080fd5b8063715018a6146104e15780637c7c867f146104f65780637f00c7a61461050c5780638069876d1461052c5780638da5cb5b1461054257600080fd5b80633af32abf116101d25780634f6ccce7116101965780634f6ccce71461043157806355f804b314610451578063586963d9146104715780635c975abb146104875780636352211e146104a157806370a08231146104c157600080fd5b80633af32abf146103b65780633c773c25146103d65780633ccfd60b146103e957806342842e0e146103f157806344a0d68a1461041157600080fd5b806313faede61161021957806313faede61461032757806318160ddd1461034b578063239c70ae1461036057806323b872dd146103765780632f745c591461039657600080fd5b806301ffc9a71461025657806302329a291461028b57806306fdde03146102ad578063081812fc146102cf578063095ea7b314610307575b600080fd5b34801561026257600080fd5b50610276610271366004612258565b61075c565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a636600461223d565b6107c9565b005b3480156102b957600080fd5b506102c261080f565b6040516102829190612421565b3480156102db57600080fd5b506102ef6102ea3660046122db565b6108a1565b6040516001600160a01b039091168152602001610282565b34801561031357600080fd5b506102ab61032236600461219e565b61092c565b34801561033357600080fd5b5061033d600a5481565b604051908152602001610282565b34801561035757600080fd5b5060005461033d565b34801561036c57600080fd5b5061033d600c5481565b34801561038257600080fd5b506102ab6103913660046120bc565b610a44565b3480156103a257600080fd5b5061033d6103b136600461219e565b610a4f565b3480156103c257600080fd5b506102766103d136600461206e565b610bac565b6102ab6103e43660046122db565b610c16565b6102ab610d1c565b3480156103fd57600080fd5b506102ab61040c3660046120bc565b610dba565b34801561041d57600080fd5b506102ab61042c3660046122db565b610dd5565b34801561043d57600080fd5b5061033d61044c3660046122db565b610e04565b34801561045d57600080fd5b506102ab61046c366004612292565b610e66565b34801561047d57600080fd5b5061033d600e5481565b34801561049357600080fd5b506011546102769060ff1681565b3480156104ad57600080fd5b506102ef6104bc3660046122db565b610ea3565b3480156104cd57600080fd5b5061033d6104dc36600461206e565b610eb5565b3480156104ed57600080fd5b506102ab610f46565b34801561050257600080fd5b5061033d600d5481565b34801561051857600080fd5b506102ab6105273660046122db565b610f7c565b34801561053857600080fd5b5061033d600f5481565b34801561054e57600080fd5b506007546001600160a01b03166102ef565b34801561056c57600080fd5b506102c2610fab565b6102ab6105833660046122db565b610fba565b34801561059457600080fd5b506102ab6105a3366004612174565b611184565b3480156105b457600080fd5b506102ab6105c33660046120f8565b611249565b3480156105d457600080fd5b506102ef6105e33660046122db565b611282565b3480156105f457600080fd5b506102c26112ac565b34801561060957600080fd5b506102c26106183660046122db565b61133a565b34801561062957600080fd5b506102ab6106383660046122db565b61140a565b34801561064957600080fd5b506102ab6106583660046122db565b611439565b34801561066957600080fd5b506102ab6106783660046122db565b611468565b34801561068957600080fd5b5061033d600b5481565b34801561069f57600080fd5b506102ab6106ae366004612292565b61149c565b3480156106bf57600080fd5b5061033d6106ce36600461206e565b6114d9565b3480156106df57600080fd5b506102766106ee366004612089565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561072857600080fd5b506102ab6107373660046121c8565b6114e4565b34801561074857600080fd5b506102ab61075736600461206e565b611526565b60006001600160e01b031982166380ac58cd60e01b148061078d57506001600160e01b03198216635b5e139f60e01b145b806107a857506001600160e01b0319821663780e9d6360e01b145b806107c357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146107fc5760405162461bcd60e51b81526004016107f390612478565b60405180910390fd5b6011805460ff1916911515919091179055565b60606001805461081e9061258e565b80601f016020809104026020016040519081016040528092919081815260200182805461084a9061258e565b80156108975780601f1061086c57610100808354040283529160200191610897565b820191906000526020600020905b81548152906001019060200180831161087a57829003601f168201915b5050505050905090565b60006108ae826000541190565b6109105760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016107f3565b506000908152600560205260409020546001600160a01b031690565b600061093782610ea3565b9050806001600160a01b0316836001600160a01b031614156109a65760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016107f3565b336001600160a01b03821614806109c257506109c281336106ee565b610a345760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016107f3565b610a3f8383836115be565b505050565b610a3f83838361161a565b6000610a5a83610eb5565b8210610ab35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016107f3565b600080549080805b83811015610b4c576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b0e57805192505b876001600160a01b0316836001600160a01b03161415610b435786841415610b3c575093506107c392505050565b6001909301925b50600101610abb565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016107f3565b6000805b601054811015610c0d57826001600160a01b031660108281548110610bd757610bd7612624565b6000918252602090912001546001600160a01b03161415610bfb5750600192915050565b80610c05816125c9565b915050610bb0565b50600092915050565b60115460ff1615610c625760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016107f3565b600054600b54610c728383612500565b1115610cb95760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016107f3565b610cc233610bac565b610d0e5760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c697374656400000000000000000060448201526064016107f3565b610d1833836118ff565b5050565b6007546001600160a01b03163314610d465760405162461bcd60e51b81526004016107f390612478565b6000610d5a6007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610da4576040519150601f19603f3d011682016040523d82523d6000602084013e610da9565b606091505b5050905080610db757600080fd5b50565b610a3f83838360405180602001604052806000815250611249565b6007546001600160a01b03163314610dff5760405162461bcd60e51b81526004016107f390612478565b600a55565b600080548210610e625760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016107f3565b5090565b6007546001600160a01b03163314610e905760405162461bcd60e51b81526004016107f390612478565b8051610d18906008906020840190611ec6565b6000610eae82611919565b5192915050565b60006001600160a01b038216610f215760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016107f3565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610f705760405162461bcd60e51b81526004016107f390612478565b610f7a60006119f0565b565b6007546001600160a01b03163314610fa65760405162461bcd60e51b81526004016107f390612478565b600c55565b60606002805461081e9061258e565b60115460ff16156110065760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016107f3565b600054600b546110168383612500565b111561105d5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016107f3565b6007546001600160a01b03163314610d0e576110798282612500565b600f541061110d57600d548211156110a35760405162461bcd60e51b81526004016107f390612434565b600e54826110b0336114d9565b6110ba9190612500565b11156111085760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016107f3565b610d0e565b600c5482111561112f5760405162461bcd60e51b81526004016107f390612434565b600a5461113c908361252c565b341015610d0e5760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b60448201526064016107f3565b6001600160a01b0382163314156111dd5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016107f3565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61125484848461161a565b61126084848484611a42565b61127c5760405162461bcd60e51b81526004016107f3906124ad565b50505050565b6010818154811061129257600080fd5b6000918252602090912001546001600160a01b0316905081565b600980546112b99061258e565b80601f01602080910402602001604051908101604052809291908181526020018280546112e59061258e565b80156113325780601f1061130757610100808354040283529160200191611332565b820191906000526020600020905b81548152906001019060200180831161131557829003601f168201915b505050505081565b6060611347826000541190565b6113ab5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107f3565b60006113b5611b50565b905060008151116113d55760405180602001604052806000815250611403565b806113df84611b5f565b60096040516020016113f393929190612320565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146114345760405162461bcd60e51b81526004016107f390612478565b600e55565b6007546001600160a01b031633146114635760405162461bcd60e51b81526004016107f390612478565b600f55565b6007546001600160a01b031633146114925760405162461bcd60e51b81526004016107f390612478565b600d819055600e55565b6007546001600160a01b031633146114c65760405162461bcd60e51b81526004016107f390612478565b8051610d18906009906020840190611ec6565b60006107c382611c5d565b6007546001600160a01b0316331461150e5760405162461bcd60e51b81526004016107f390612478565b61151a60106000611f46565b610a3f60108383611f64565b6007546001600160a01b031633146115505760405162461bcd60e51b81526004016107f390612478565b6001600160a01b0381166115b55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f3565b610db7816119f0565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061162582611919565b80519091506000906001600160a01b0316336001600160a01b0316148061165c575033611651846108a1565b6001600160a01b0316145b8061166e5750815161166e90336106ee565b9050806116d85760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016107f3565b846001600160a01b031682600001516001600160a01b03161461174c5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016107f3565b6001600160a01b0384166117b05760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016107f3565b6117c060008484600001516115be565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166118b557611868816000541190565b156118b5578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610d18828260405180602001604052806000815250611cfb565b6040805180820190915260008082526020820152611938826000541190565b6119975760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016107f3565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156119e6579392505050565b5060001901611999565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611b4457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a869033908990889088906004016123e4565b602060405180830381600087803b158015611aa057600080fd5b505af1925050508015611ad0575060408051601f3d908101601f19168201909252611acd91810190612275565b60015b611b2a573d808015611afe576040519150601f19603f3d011682016040523d82523d6000602084013e611b03565b606091505b508051611b225760405162461bcd60e51b81526004016107f3906124ad565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b48565b5060015b949350505050565b60606008805461081e9061258e565b606081611b835750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bad5780611b97816125c9565b9150611ba69050600a83612518565b9150611b87565b60008167ffffffffffffffff811115611bc857611bc861263a565b6040519080825280601f01601f191660200182016040528015611bf2576020820181803683370190505b5090505b8415611b4857611c0760018361254b565b9150611c14600a866125e4565b611c1f906030612500565b60f81b818381518110611c3457611c34612624565b60200101906001600160f81b031916908160001a905350611c56600a86612518565b9450611bf6565b60006001600160a01b038216611ccf5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016107f3565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b610a3f83838360016000546001600160a01b038516611d665760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016107f3565b83611dc45760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016107f3565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611ebd5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611eb157611e956000888488611a42565b611eb15760405162461bcd60e51b81526004016107f3906124ad565b60019182019101611e42565b506000556118f8565b828054611ed29061258e565b90600052602060002090601f016020900481019282611ef45760008555611f3a565b82601f10611f0d57805160ff1916838001178555611f3a565b82800160010185558215611f3a579182015b82811115611f3a578251825591602001919060010190611f1f565b50610e62929150611fb7565b5080546000825590600052602060002090810190610db79190611fb7565b828054828255906000526020600020908101928215611f3a579160200282015b82811115611f3a5781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190611f84565b5b80821115610e625760008155600101611fb8565b600067ffffffffffffffff80841115611fe757611fe761263a565b604051601f8501601f19908116603f0116810190828211818310171561200f5761200f61263a565b8160405280935085815286868601111561202857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461205957600080fd5b919050565b8035801515811461205957600080fd5b60006020828403121561208057600080fd5b61140382612042565b6000806040838503121561209c57600080fd5b6120a583612042565b91506120b360208401612042565b90509250929050565b6000806000606084860312156120d157600080fd5b6120da84612042565b92506120e860208501612042565b9150604084013590509250925092565b6000806000806080858703121561210e57600080fd5b61211785612042565b935061212560208601612042565b925060408501359150606085013567ffffffffffffffff81111561214857600080fd5b8501601f8101871361215957600080fd5b61216887823560208401611fcc565b91505092959194509250565b6000806040838503121561218757600080fd5b61219083612042565b91506120b36020840161205e565b600080604083850312156121b157600080fd5b6121ba83612042565b946020939093013593505050565b600080602083850312156121db57600080fd5b823567ffffffffffffffff808211156121f357600080fd5b818501915085601f83011261220757600080fd5b81358181111561221657600080fd5b8660208260051b850101111561222b57600080fd5b60209290920196919550909350505050565b60006020828403121561224f57600080fd5b6114038261205e565b60006020828403121561226a57600080fd5b813561140381612650565b60006020828403121561228757600080fd5b815161140381612650565b6000602082840312156122a457600080fd5b813567ffffffffffffffff8111156122bb57600080fd5b8201601f810184136122cc57600080fd5b611b4884823560208401611fcc565b6000602082840312156122ed57600080fd5b5035919050565b6000815180845261230c816020860160208601612562565b601f01601f19169290920160200192915050565b6000845160206123338285838a01612562565b8551918401916123468184848a01612562565b8554920191600090600181811c908083168061236357607f831692505b85831081141561238157634e487b7160e01b85526022600452602485fd5b80801561239557600181146123a6576123d3565b60ff198516885283880195506123d3565b60008b81526020902060005b858110156123cb5781548a8201529084019088016123b2565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612417908301846122f4565b9695505050505050565b60208152600061140360208301846122f4565b60208082526024908201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656040820152631959195960e21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008219821115612513576125136125f8565b500190565b6000826125275761252761260e565b500490565b6000816000190483118215151615612546576125466125f8565b500290565b60008282101561255d5761255d6125f8565b500390565b60005b8381101561257d578181015183820152602001612565565b8381111561127c5750506000910152565b600181811c908216806125a257607f821691505b602082108114156125c357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125dd576125dd6125f8565b5060010190565b6000826125f3576125f361260e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610db757600080fdfea26469706673582212201efb0c0a353ec23894177c1a72b02e616a753e6658f8f19ed06034a466e99e3264736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000011436f636b436f636b434f434b524f4143480000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009434f434b524f41434800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d654a377437757237793270327a78647967716d7a464179664a627372544e587035586b796b627a4744504a432f00000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c8063715018a611610139578063c6682862116100b6578063d5abeb011161007a578063d5abeb011461067d578063da3ef23f14610693578063dc33e681146106b3578063e985e9c5146106d3578063edec5f271461071c578063f2fde38b1461073c57600080fd5b8063c6682862146105e8578063c87b56dd146105fd578063d0eb26b01461061d578063d223a6311461063d578063d4fcb2ae1461065d57600080fd5b806395d89b41116100fd57806395d89b4114610560578063a0712d6814610575578063a22cb46514610588578063b88d4fde146105a8578063ba4e5c49146105c857600080fd5b8063715018a6146104e15780637c7c867f146104f65780637f00c7a61461050c5780638069876d1461052c5780638da5cb5b1461054257600080fd5b80633af32abf116101d25780634f6ccce7116101965780634f6ccce71461043157806355f804b314610451578063586963d9146104715780635c975abb146104875780636352211e146104a157806370a08231146104c157600080fd5b80633af32abf146103b65780633c773c25146103d65780633ccfd60b146103e957806342842e0e146103f157806344a0d68a1461041157600080fd5b806313faede61161021957806313faede61461032757806318160ddd1461034b578063239c70ae1461036057806323b872dd146103765780632f745c591461039657600080fd5b806301ffc9a71461025657806302329a291461028b57806306fdde03146102ad578063081812fc146102cf578063095ea7b314610307575b600080fd5b34801561026257600080fd5b50610276610271366004612258565b61075c565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a636600461223d565b6107c9565b005b3480156102b957600080fd5b506102c261080f565b6040516102829190612421565b3480156102db57600080fd5b506102ef6102ea3660046122db565b6108a1565b6040516001600160a01b039091168152602001610282565b34801561031357600080fd5b506102ab61032236600461219e565b61092c565b34801561033357600080fd5b5061033d600a5481565b604051908152602001610282565b34801561035757600080fd5b5060005461033d565b34801561036c57600080fd5b5061033d600c5481565b34801561038257600080fd5b506102ab6103913660046120bc565b610a44565b3480156103a257600080fd5b5061033d6103b136600461219e565b610a4f565b3480156103c257600080fd5b506102766103d136600461206e565b610bac565b6102ab6103e43660046122db565b610c16565b6102ab610d1c565b3480156103fd57600080fd5b506102ab61040c3660046120bc565b610dba565b34801561041d57600080fd5b506102ab61042c3660046122db565b610dd5565b34801561043d57600080fd5b5061033d61044c3660046122db565b610e04565b34801561045d57600080fd5b506102ab61046c366004612292565b610e66565b34801561047d57600080fd5b5061033d600e5481565b34801561049357600080fd5b506011546102769060ff1681565b3480156104ad57600080fd5b506102ef6104bc3660046122db565b610ea3565b3480156104cd57600080fd5b5061033d6104dc36600461206e565b610eb5565b3480156104ed57600080fd5b506102ab610f46565b34801561050257600080fd5b5061033d600d5481565b34801561051857600080fd5b506102ab6105273660046122db565b610f7c565b34801561053857600080fd5b5061033d600f5481565b34801561054e57600080fd5b506007546001600160a01b03166102ef565b34801561056c57600080fd5b506102c2610fab565b6102ab6105833660046122db565b610fba565b34801561059457600080fd5b506102ab6105a3366004612174565b611184565b3480156105b457600080fd5b506102ab6105c33660046120f8565b611249565b3480156105d457600080fd5b506102ef6105e33660046122db565b611282565b3480156105f457600080fd5b506102c26112ac565b34801561060957600080fd5b506102c26106183660046122db565b61133a565b34801561062957600080fd5b506102ab6106383660046122db565b61140a565b34801561064957600080fd5b506102ab6106583660046122db565b611439565b34801561066957600080fd5b506102ab6106783660046122db565b611468565b34801561068957600080fd5b5061033d600b5481565b34801561069f57600080fd5b506102ab6106ae366004612292565b61149c565b3480156106bf57600080fd5b5061033d6106ce36600461206e565b6114d9565b3480156106df57600080fd5b506102766106ee366004612089565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561072857600080fd5b506102ab6107373660046121c8565b6114e4565b34801561074857600080fd5b506102ab61075736600461206e565b611526565b60006001600160e01b031982166380ac58cd60e01b148061078d57506001600160e01b03198216635b5e139f60e01b145b806107a857506001600160e01b0319821663780e9d6360e01b145b806107c357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146107fc5760405162461bcd60e51b81526004016107f390612478565b60405180910390fd5b6011805460ff1916911515919091179055565b60606001805461081e9061258e565b80601f016020809104026020016040519081016040528092919081815260200182805461084a9061258e565b80156108975780601f1061086c57610100808354040283529160200191610897565b820191906000526020600020905b81548152906001019060200180831161087a57829003601f168201915b5050505050905090565b60006108ae826000541190565b6109105760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016107f3565b506000908152600560205260409020546001600160a01b031690565b600061093782610ea3565b9050806001600160a01b0316836001600160a01b031614156109a65760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016107f3565b336001600160a01b03821614806109c257506109c281336106ee565b610a345760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016107f3565b610a3f8383836115be565b505050565b610a3f83838361161a565b6000610a5a83610eb5565b8210610ab35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016107f3565b600080549080805b83811015610b4c576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b0e57805192505b876001600160a01b0316836001600160a01b03161415610b435786841415610b3c575093506107c392505050565b6001909301925b50600101610abb565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016107f3565b6000805b601054811015610c0d57826001600160a01b031660108281548110610bd757610bd7612624565b6000918252602090912001546001600160a01b03161415610bfb5750600192915050565b80610c05816125c9565b915050610bb0565b50600092915050565b60115460ff1615610c625760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016107f3565b600054600b54610c728383612500565b1115610cb95760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016107f3565b610cc233610bac565b610d0e5760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c697374656400000000000000000060448201526064016107f3565b610d1833836118ff565b5050565b6007546001600160a01b03163314610d465760405162461bcd60e51b81526004016107f390612478565b6000610d5a6007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610da4576040519150601f19603f3d011682016040523d82523d6000602084013e610da9565b606091505b5050905080610db757600080fd5b50565b610a3f83838360405180602001604052806000815250611249565b6007546001600160a01b03163314610dff5760405162461bcd60e51b81526004016107f390612478565b600a55565b600080548210610e625760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016107f3565b5090565b6007546001600160a01b03163314610e905760405162461bcd60e51b81526004016107f390612478565b8051610d18906008906020840190611ec6565b6000610eae82611919565b5192915050565b60006001600160a01b038216610f215760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016107f3565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610f705760405162461bcd60e51b81526004016107f390612478565b610f7a60006119f0565b565b6007546001600160a01b03163314610fa65760405162461bcd60e51b81526004016107f390612478565b600c55565b60606002805461081e9061258e565b60115460ff16156110065760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016107f3565b600054600b546110168383612500565b111561105d5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016107f3565b6007546001600160a01b03163314610d0e576110798282612500565b600f541061110d57600d548211156110a35760405162461bcd60e51b81526004016107f390612434565b600e54826110b0336114d9565b6110ba9190612500565b11156111085760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016107f3565b610d0e565b600c5482111561112f5760405162461bcd60e51b81526004016107f390612434565b600a5461113c908361252c565b341015610d0e5760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b60448201526064016107f3565b6001600160a01b0382163314156111dd5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016107f3565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61125484848461161a565b61126084848484611a42565b61127c5760405162461bcd60e51b81526004016107f3906124ad565b50505050565b6010818154811061129257600080fd5b6000918252602090912001546001600160a01b0316905081565b600980546112b99061258e565b80601f01602080910402602001604051908101604052809291908181526020018280546112e59061258e565b80156113325780601f1061130757610100808354040283529160200191611332565b820191906000526020600020905b81548152906001019060200180831161131557829003601f168201915b505050505081565b6060611347826000541190565b6113ab5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107f3565b60006113b5611b50565b905060008151116113d55760405180602001604052806000815250611403565b806113df84611b5f565b60096040516020016113f393929190612320565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146114345760405162461bcd60e51b81526004016107f390612478565b600e55565b6007546001600160a01b031633146114635760405162461bcd60e51b81526004016107f390612478565b600f55565b6007546001600160a01b031633146114925760405162461bcd60e51b81526004016107f390612478565b600d819055600e55565b6007546001600160a01b031633146114c65760405162461bcd60e51b81526004016107f390612478565b8051610d18906009906020840190611ec6565b60006107c382611c5d565b6007546001600160a01b0316331461150e5760405162461bcd60e51b81526004016107f390612478565b61151a60106000611f46565b610a3f60108383611f64565b6007546001600160a01b031633146115505760405162461bcd60e51b81526004016107f390612478565b6001600160a01b0381166115b55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f3565b610db7816119f0565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061162582611919565b80519091506000906001600160a01b0316336001600160a01b0316148061165c575033611651846108a1565b6001600160a01b0316145b8061166e5750815161166e90336106ee565b9050806116d85760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016107f3565b846001600160a01b031682600001516001600160a01b03161461174c5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016107f3565b6001600160a01b0384166117b05760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016107f3565b6117c060008484600001516115be565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166118b557611868816000541190565b156118b5578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610d18828260405180602001604052806000815250611cfb565b6040805180820190915260008082526020820152611938826000541190565b6119975760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016107f3565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156119e6579392505050565b5060001901611999565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611b4457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a869033908990889088906004016123e4565b602060405180830381600087803b158015611aa057600080fd5b505af1925050508015611ad0575060408051601f3d908101601f19168201909252611acd91810190612275565b60015b611b2a573d808015611afe576040519150601f19603f3d011682016040523d82523d6000602084013e611b03565b606091505b508051611b225760405162461bcd60e51b81526004016107f3906124ad565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b48565b5060015b949350505050565b60606008805461081e9061258e565b606081611b835750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bad5780611b97816125c9565b9150611ba69050600a83612518565b9150611b87565b60008167ffffffffffffffff811115611bc857611bc861263a565b6040519080825280601f01601f191660200182016040528015611bf2576020820181803683370190505b5090505b8415611b4857611c0760018361254b565b9150611c14600a866125e4565b611c1f906030612500565b60f81b818381518110611c3457611c34612624565b60200101906001600160f81b031916908160001a905350611c56600a86612518565b9450611bf6565b60006001600160a01b038216611ccf5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016107f3565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b610a3f83838360016000546001600160a01b038516611d665760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016107f3565b83611dc45760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016107f3565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611ebd5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611eb157611e956000888488611a42565b611eb15760405162461bcd60e51b81526004016107f3906124ad565b60019182019101611e42565b506000556118f8565b828054611ed29061258e565b90600052602060002090601f016020900481019282611ef45760008555611f3a565b82601f10611f0d57805160ff1916838001178555611f3a565b82800160010185558215611f3a579182015b82811115611f3a578251825591602001919060010190611f1f565b50610e62929150611fb7565b5080546000825590600052602060002090810190610db79190611fb7565b828054828255906000526020600020908101928215611f3a579160200282015b82811115611f3a5781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190611f84565b5b80821115610e625760008155600101611fb8565b600067ffffffffffffffff80841115611fe757611fe761263a565b604051601f8501601f19908116603f0116810190828211818310171561200f5761200f61263a565b8160405280935085815286868601111561202857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461205957600080fd5b919050565b8035801515811461205957600080fd5b60006020828403121561208057600080fd5b61140382612042565b6000806040838503121561209c57600080fd5b6120a583612042565b91506120b360208401612042565b90509250929050565b6000806000606084860312156120d157600080fd5b6120da84612042565b92506120e860208501612042565b9150604084013590509250925092565b6000806000806080858703121561210e57600080fd5b61211785612042565b935061212560208601612042565b925060408501359150606085013567ffffffffffffffff81111561214857600080fd5b8501601f8101871361215957600080fd5b61216887823560208401611fcc565b91505092959194509250565b6000806040838503121561218757600080fd5b61219083612042565b91506120b36020840161205e565b600080604083850312156121b157600080fd5b6121ba83612042565b946020939093013593505050565b600080602083850312156121db57600080fd5b823567ffffffffffffffff808211156121f357600080fd5b818501915085601f83011261220757600080fd5b81358181111561221657600080fd5b8660208260051b850101111561222b57600080fd5b60209290920196919550909350505050565b60006020828403121561224f57600080fd5b6114038261205e565b60006020828403121561226a57600080fd5b813561140381612650565b60006020828403121561228757600080fd5b815161140381612650565b6000602082840312156122a457600080fd5b813567ffffffffffffffff8111156122bb57600080fd5b8201601f810184136122cc57600080fd5b611b4884823560208401611fcc565b6000602082840312156122ed57600080fd5b5035919050565b6000815180845261230c816020860160208601612562565b601f01601f19169290920160200192915050565b6000845160206123338285838a01612562565b8551918401916123468184848a01612562565b8554920191600090600181811c908083168061236357607f831692505b85831081141561238157634e487b7160e01b85526022600452602485fd5b80801561239557600181146123a6576123d3565b60ff198516885283880195506123d3565b60008b81526020902060005b858110156123cb5781548a8201529084019088016123b2565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612417908301846122f4565b9695505050505050565b60208152600061140360208301846122f4565b60208082526024908201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656040820152631959195960e21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008219821115612513576125136125f8565b500190565b6000826125275761252761260e565b500490565b6000816000190483118215151615612546576125466125f8565b500290565b60008282101561255d5761255d6125f8565b500390565b60005b8381101561257d578181015183820152602001612565565b8381111561127c5750506000910152565b600181811c908216806125a257607f821691505b602082108114156125c357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125dd576125dd6125f8565b5060010190565b6000826125f3576125f361260e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610db757600080fdfea26469706673582212201efb0c0a353ec23894177c1a72b02e616a753e6658f8f19ed06034a466e99e3264736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000011436f636b436f636b434f434b524f4143480000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009434f434b524f41434800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d654a377437757237793270327a78647967716d7a464179664a627372544e587035586b796b627a4744504a432f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): CockCockCOCKROACH
Arg [1] : _symbol (string): COCKROACH
Arg [2] : _initBaseURI (string): ipfs://QmeJ7t7ur7y2p2zxdygqmzFAyfJbsrTNXp5XkykbzGDPJC/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [4] : 436f636b436f636b434f434b524f414348000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [6] : 434f434b524f4143480000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d654a377437757237793270327a78647967716d7a464179
Arg [9] : 664a627372544e587035586b796b627a4744504a432f00000000000000000000


Deployed Bytecode Sourcemap

39532:3950:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24018:372;;;;;;;;;;-1:-1:-1;24018:372:0;;;;;:::i;:::-;;:::i;:::-;;;7790:14:1;;7783:22;7765:41;;7753:2;7738:18;24018:372:0;;;;;;;;43254:73;;;;;;;;;;-1:-1:-1;43254:73:0;;;;;:::i;:::-;;:::i;:::-;;25904:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27466:214::-;;;;;;;;;;-1:-1:-1;27466:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7088:32:1;;;7070:51;;7058:2;7043:18;27466:214:0;6924:203:1;26987:413:0;;;;;;;;;;-1:-1:-1;26987:413:0;;;;;:::i;:::-;;:::i;39675:33::-;;;;;;;;;;;;;;;;;;;18478:25:1;;;18466:2;18451:18;39675:33:0;18332:177:1;22275:100:0;;;;;;;;;;-1:-1:-1;22328:7:0;22355:12;22275:100;;39749:33;;;;;;;;;;;;;;;;28342:162;;;;;;;;;;-1:-1:-1;28342:162:0;;;;;:::i;:::-;;:::i;22939:1007::-;;;;;;;;;;-1:-1:-1;22939:1007:0;;;;;:::i;:::-;;:::i;41430:239::-;;;;;;;;;;-1:-1:-1;41430:239:0;;;;;:::i;:::-;;:::i;41090:334::-;;;;;;:::i;:::-;;:::i;43334:145::-;;;:::i;28575:177::-;;;;;;;;;;-1:-1:-1;28575:177:0;;;;;:::i;:::-;;:::i;42623:80::-;;;;;;;;;;-1:-1:-1;42623:80:0;;;;;:::i;:::-;;:::i;22452:187::-;;;;;;;;;;-1:-1:-1;22452:187:0;;;;;:::i;:::-;;:::i;43022:98::-;;;;;;;;;;-1:-1:-1;43022:98:0;;;;;:::i;:::-;;:::i;39828:41::-;;;;;;;;;;;;;;;;39958:25;;;;;;;;;;-1:-1:-1;39958:25:0;;;;;;;;25713:124;;;;;;;;;;-1:-1:-1;25713:124:0;;;;;:::i;:::-;;:::i;24454:221::-;;;;;;;;;;-1:-1:-1;24454:221:0;;;;;:::i;:::-;;:::i;38868:94::-;;;;;;;;;;;;;:::i;39787:36::-;;;;;;;;;;;;;;;;42709:116;;;;;;;;;;-1:-1:-1;42709:116:0;;;;;:::i;:::-;;:::i;39874:37::-;;;;;;;;;;;;;;;;38217:87;;;;;;;;;;-1:-1:-1;38290:6:0;;-1:-1:-1;;;;;38290:6:0;38217:87;;26073:104;;;;;;;;;;;;;:::i;40297:787::-;;;;;;:::i;:::-;;:::i;27752:288::-;;;;;;;;;;-1:-1:-1;27752:288:0;;;;;:::i;:::-;;:::i;28823:355::-;;;;;;;;;;-1:-1:-1;28823:355:0;;;;;:::i;:::-;;:::i;39916:37::-;;;;;;;;;;-1:-1:-1;39916:37:0;;;;;:::i;:::-;;:::i;39633:::-;;;;;;;;;;;;;:::i;41790:423::-;;;;;;;;;;-1:-1:-1;41790:423:0;;;;;:::i;:::-;;:::i;42389:108::-;;;;;;;;;;-1:-1:-1;42389:108:0;;;;;:::i;:::-;;:::i;42503:112::-;;;;;;;;;;-1:-1:-1;42503:112:0;;;;;:::i;:::-;;:::i;42831:185::-;;;;;;;;;;-1:-1:-1;42831:185:0;;;;;:::i;:::-;;:::i;39713:31::-;;;;;;;;;;;;;;;;43126:122;;;;;;;;;;-1:-1:-1;43126:122:0;;;;;:::i;:::-;;:::i;41677:107::-;;;;;;;;;;-1:-1:-1;41677:107:0;;;;;:::i;:::-;;:::i;28111:164::-;;;;;;;;;;-1:-1:-1;28111:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28232:25:0;;;28208:4;28232:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28111:164;42237:144;;;;;;;;;;-1:-1:-1;42237:144:0;;;;;:::i;:::-;;:::i;39117:192::-;;;;;;;;;;-1:-1:-1;39117:192:0;;;;;:::i;:::-;;:::i;24018:372::-;24120:4;-1:-1:-1;;;;;;24157:40:0;;-1:-1:-1;;;24157:40:0;;:105;;-1:-1:-1;;;;;;;24214:48:0;;-1:-1:-1;;;24214:48:0;24157:105;:172;;;-1:-1:-1;;;;;;;24279:50:0;;-1:-1:-1;;;24279:50:0;24157:172;:225;;;-1:-1:-1;;;;;;;;;;7762:40:0;;;24346:36;24137:245;24018:372;-1:-1:-1;;24018:372:0:o;43254:73::-;38290:6;;-1:-1:-1;;;;;38290:6:0;20376:10;38437:23;38429:68;;;;-1:-1:-1;;;38429:68:0;;;;;;;:::i;:::-;;;;;;;;;43306:6:::1;:15:::0;;-1:-1:-1;;43306:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;43254:73::o;25904:100::-;25958:13;25991:5;25984:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25904:100;:::o;27466:214::-;27534:7;27562:16;27570:7;29490:4;29524:12;-1:-1:-1;29514:22:0;29433:111;27562:16;27554:74;;;;-1:-1:-1;;;27554:74:0;;18120:2:1;27554:74:0;;;18102:21:1;18159:2;18139:18;;;18132:30;18198:34;18178:18;;;18171:62;-1:-1:-1;;;18249:18:1;;;18242:43;18302:19;;27554:74:0;17918:409:1;27554:74:0;-1:-1:-1;27648:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27648:24:0;;27466:214::o;26987:413::-;27060:13;27076:24;27092:7;27076:15;:24::i;:::-;27060:40;;27125:5;-1:-1:-1;;;;;27119:11:0;:2;-1:-1:-1;;;;;27119:11:0;;;27111:58;;;;-1:-1:-1;;;27111:58:0;;15303:2:1;27111:58:0;;;15285:21:1;15342:2;15322:18;;;15315:30;15381:34;15361:18;;;15354:62;-1:-1:-1;;;15432:18:1;;;15425:32;15474:19;;27111:58:0;15101:398:1;27111:58:0;20376:10;-1:-1:-1;;;;;27204:21:0;;;;:62;;-1:-1:-1;27229:37:0;27246:5;20376:10;28111:164;:::i;27229:37::-;27182:169;;;;-1:-1:-1;;;27182:169:0;;11049:2:1;27182:169:0;;;11031:21:1;11088:2;11068:18;;;11061:30;11127:34;11107:18;;;11100:62;11198:27;11178:18;;;11171:55;11243:19;;27182:169:0;10847:421:1;27182:169:0;27364:28;27373:2;27377:7;27386:5;27364:8;:28::i;:::-;27049:351;26987:413;;:::o;28342:162::-;28468:28;28478:4;28484:2;28488:7;28468:9;:28::i;22939:1007::-;23028:7;23064:16;23074:5;23064:9;:16::i;:::-;23056:5;:24;23048:71;;;;-1:-1:-1;;;23048:71:0;;8243:2:1;23048:71:0;;;8225:21:1;8282:2;8262:18;;;8255:30;8321:34;8301:18;;;8294:62;-1:-1:-1;;;8372:18:1;;;8365:32;8414:19;;23048:71:0;8041:398:1;23048:71:0;23130:22;22355:12;;;23130:22;;23393:466;23413:14;23409:1;:18;23393:466;;;23453:31;23487:14;;;:11;:14;;;;;;;;;23453:48;;;;;;;;;-1:-1:-1;;;;;23453:48:0;;;;;-1:-1:-1;;;23453:48:0;;;;;;;;;;;;23524:28;23520:111;;23597:14;;;-1:-1:-1;23520:111:0;23674:5;-1:-1:-1;;;;;23653:26:0;:17;-1:-1:-1;;;;;23653:26:0;;23649:195;;;23723:5;23708:11;:20;23704:85;;;-1:-1:-1;23764:1:0;-1:-1:-1;23757:8:0;;-1:-1:-1;;;23757:8:0;23704:85;23811:13;;;;;23649:195;-1:-1:-1;23429:3:0;;23393:466;;;-1:-1:-1;23882:56:0;;-1:-1:-1;;;23882:56:0;;16937:2:1;23882:56:0;;;16919:21:1;16976:2;16956:18;;;16949:30;17015:34;16995:18;;;16988:62;-1:-1:-1;;;17066:18:1;;;17059:44;17120:19;;23882:56:0;16735:410:1;41430:239:0;41489:4;;41502:143;41523:20;:27;41519:31;;41502:143;;;41597:5;-1:-1:-1;;;;;41570:32:0;:20;41591:1;41570:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;41570:23:0;:32;41566:72;;;-1:-1:-1;41624:4:0;;41430:239;-1:-1:-1;;41430:239:0:o;41566:72::-;41552:3;;;;:::i;:::-;;;;41502:143;;;-1:-1:-1;41658:5:0;;41430:239;-1:-1:-1;;41430:239:0:o;41090:334::-;41158:6;;;;41157:7;41149:42;;;;-1:-1:-1;;;41149:42:0;;13411:2:1;41149:42:0;;;13393:21:1;13450:2;13430:18;;;13423:30;-1:-1:-1;;;13469:18:1;;;13462:52;13531:18;;41149:42:0;13209:346:1;41149:42:0;41198:14;22355:12;41267:9;;41243:20;41252:11;22355:12;41243:20;:::i;:::-;:33;;41235:68;;;;-1:-1:-1;;;41235:68:0;;11475:2:1;41235:68:0;;;11457:21:1;11514:2;11494:18;;;11487:30;-1:-1:-1;;;11533:18:1;;;11526:52;11595:18;;41235:68:0;11273:346:1;41235:68:0;41318:25;41332:10;41318:13;:25::i;:::-;41310:61;;;;-1:-1:-1;;;41310:61:0;;17352:2:1;41310:61:0;;;17334:21:1;17391:2;17371:18;;;17364:30;17430:25;17410:18;;;17403:53;17473:18;;41310:61:0;17150:347:1;41310:61:0;41378:34;41388:10;41400:11;41378:9;:34::i;:::-;41142:282;41090:334;:::o;43334:145::-;38290:6;;-1:-1:-1;;;;;38290:6:0;20376:10;38437:23;38429:68;;;;-1:-1:-1;;;38429:68:0;;;;;;;:::i;:::-;43387:7:::1;43408;38290:6:::0;;-1:-1:-1;;;;;38290:6:0;;38217:87;43408:7:::1;-1:-1:-1::0;;;;;43400:21:0::1;43429;43400:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43386:69;;;43470:2;43462:11;;;::::0;::::1;;43379:100;43334:145::o:0;28575:177::-;28705:39;28722:4;28728:2;28732:7;28705:39;;;;;;;;;;;;:16;:39::i;42623:80::-;38290:6;;-1:-1:-1;;;;;38290:6:0;20376:10;38437:23;38429:68;;;;-1:-1:-1;;;38429:68:0;;;;;;;:::i;:::-;42682:4:::1;:15:::0;42623:80::o;22452:187::-;22519:7;22355:12;;22547:5;:21;22539:69;;;;-1:-1:-1;;;22539:69:0;;9821:2:1;22539:69:0;;;9803:21:1;9860:2;9840:18;;;9833:30;9899:34;9879:18;;;9872:62;-1:-1:-1;;;9950:18:1;;;9943:33;9993:19;;22539:69:0;9619:399:1;22539:69:0;-1:-1:-1;22626:5:0;22452:187::o;43022:98::-;38290:6;;-1:-1:-1;;;;;38290:6:0;20376:10;38437:23;38429:68;;;;-1:-1:-1;;;38429:68:0;;;;;;;:::i;:::-;43093:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;25713:124::-:0;25777:7;25804:20;25816:7;25804:11;:20::i;:::-;:25;;25713:124;-1:-1:-1;;25713:124:0:o;24454:221::-;24518:7;-1:-1:-1;;;;;24546:19:0;;24538:75;;;;-1:-1:-1;;;24538:75:0;;12231:2:1;24538:75:0;;;12213:21:1;12270:2;12250:18;;;12243:30;12309:34;12289:18;;;12282:62;-1:-1:-1;;;12360:18:1;;;12353:41;12411:19;;24538:75:0;12029:407:1;24538:75:0;-1:-1:-1;;;;;;24639:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;24639:27:0;;24454:221::o;38868:94::-;38290:6;;-1:-1:-1;;;;;38290:6:0;20376:10;38437:23;38429:68;;;;-1:-1:-1;;;38429:68:0;;;;;;;:::i;:::-;38933:21:::1;38951:1;38933:9;:21::i;:::-;38868:94::o:0;42709:116::-;38290:6;;-1:-1:-1;;;;;38290:6:0;20376:10;38437:23;38429:68;;;;-1:-1:-1;;;38429:68:0;;;;;;;:::i;:::-;42786:13:::1;:33:::0;42709:116::o;26073:104::-;26129:13;26162:7;26155:14;;;;;:::i;40297:787::-;40363:6;;;;40362:7;40354:42;;;;-1:-1:-1;;;40354:42:0;;13411:2:1;40354:42:0;;;13393:21:1;13450:2;13430:18;;;13423:30;-1:-1:-1;;;13469:18:1;;;13462:52;13531:18;;40354:42:0;13209:346:1;40354:42:0;40403:14;22355:12;40472:9;;40448:20;40457:11;22355:12;40448:20;:::i;:::-;:33;;40440:68;;;;-1:-1:-1;;;40440:68:0;;11475:2:1;40440:68:0;;;11457:21:1;11514:2;11494:18;;;11487:30;-1:-1:-1;;;11533:18:1;;;11526:52;11595:18;;40440:68:0;11273:346:1;40440:68:0;38290:6;;-1:-1:-1;;;;;38290:6:0;40521:10;:21;40517:509;;40578:20;40587:11;40578:6;:20;:::i;:::-;40559:15;;:39;40555:464;;40638:17;;40623:11;:32;;40615:81;;;;-1:-1:-1;;;40615:81:0;;;;;;;:::i;:::-;40761:22;;40746:11;40719:24;40732:10;40719:12;:24::i;:::-;:38;;;;:::i;:::-;:64;;40711:105;;;;-1:-1:-1;;;40711:105:0;;9464:2:1;40711:105:0;;;9446:21:1;9503:2;9483:18;;;9476:30;9542;9522:18;;;9515:58;9590:18;;40711:105:0;9262:352:1;40711:105:0;40555:464;;;40872:13;;40857:11;:28;;40849:77;;;;-1:-1:-1;;;40849:77:0;;;;;;;:::i;:::-;40976:4;;40962:18;;:11;:18;:::i;:::-;40949:9;:31;;40941:66;;;;-1:-1:-1;;;40941:66:0;;14952:2:1;40941:66:0;;;14934:21:1;14991:2;14971:18;;;14964:30;-1:-1:-1;;;15010:18:1;;;15003:52;15072:18;;40941:66:0;14750:346:1;27752:288:0;-1:-1:-1;;;;;27847:24:0;;20376:10;27847:24;;27839:63;;;;-1:-1:-1;;;27839:63:0;;14178:2:1;27839:63:0;;;14160:21:1;14217:2;14197:18;;;14190:30;14256:28;14236:18;;;14229:56;14302:18;;27839:63:0;13976:350:1;27839:63:0;20376:10;27915:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27915:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27915:53:0;;;;;;;;;;27984:48;;7765:41:1;;;27915:42:0;;20376:10;27984:48;;7738:18:1;27984:48:0;;;;;;;27752:288;;:::o;28823:355::-;28982:28;28992:4;28998:2;29002:7;28982:9;:28::i;:::-;29043:48;29066:4;29072:2;29076:7;29085:5;29043:22;:48::i;:::-;29021:149;;;;-1:-1:-1;;;29021:149:0;;;;;;;:::i;:::-;28823:355;;;;:::o;39916:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39916:37:0;;-1:-1:-1;39916:37:0;:::o;39633:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41790:423::-;41888:13;41929:16;41937:7;29490:4;29524:12;-1:-1:-1;29514:22:0;29433:111;41929:16;41913:97;;;;-1:-1:-1;;;41913:97:0;;13762:2:1;41913:97:0;;;13744:21:1;13801:2;13781:18;;;13774:30;13840:34;13820:18;;;13813:62;-1:-1:-1;;;13891:18:1;;;13884:45;13946:19;;41913:97:0;13560:411:1;41913:97:0;42019:28;42050:10;:8;:10::i;:::-;42019:41;;42105:1;42080:14;42074:28;:32;:133;;;;;;;;;;;;;;;;;42142:14;42158:18;:7;:16;:18::i;:::-;42178:13;42125:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42074:133;42067:140;41790:423;-1:-1:-1;;;41790:423:0:o;42389:108::-;38290:6;;-1:-1:-1;;;;;38290:6:0;20376:10;38437:23;38429:68;;;;-1:-1:-1;;;38429:68:0;;;;;;;:::i;:::-;42460:22:::1;:31:::0;42389:108::o;42503:112::-;38290:6;;-1:-1:-1;;;;;38290:6:0;20376:10;38437:23;38429:68;;;;-1:-1:-1;;;38429:68:0;;;;;;;:::i;:::-;42577:15:::1;:32:::0;42503:112::o;42831:185::-;38290:6;;-1:-1:-1;;;;;38290:6:0;20376:10;38437:23;38429:68;;;;-1:-1:-1;;;38429:68:0;;;;;;;:::i;:::-;42916:17:::1;:41:::0;;;42964:22:::1;:46:::0;42831:185::o;43126:122::-;38290:6;;-1:-1:-1;;;;;38290:6:0;20376:10;38437:23;38429:68;;;;-1:-1:-1;;;38429:68:0;;;;;;;:::i;:::-;43209:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;41677:107::-:0;41735:7;41758:20;41772:5;41758:13;:20::i;42237:144::-;38290:6;;-1:-1:-1;;;;;38290:6:0;20376:10;38437:23;38429:68;;;;-1:-1:-1;;;38429:68:0;;;;;;;:::i;:::-;42312:27:::1;42319:20;;42312:27;:::i;:::-;42346:29;:20;42369:6:::0;;42346:29:::1;:::i;39117:192::-:0;38290:6;;-1:-1:-1;;;;;38290:6:0;20376:10;38437:23;38429:68;;;;-1:-1:-1;;;38429:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39206:22:0;::::1;39198:73;;;::::0;-1:-1:-1;;;39198:73:0;;8646:2:1;39198:73:0::1;::::0;::::1;8628:21:1::0;8685:2;8665:18;;;8658:30;8724:34;8704:18;;;8697:62;-1:-1:-1;;;8775:18:1;;;8768:36;8821:19;;39198:73:0::1;8444:402:1::0;39198:73:0::1;39282:19;39292:8;39282:9;:19::i;34353:196::-:0;34468:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;34468:29:0;-1:-1:-1;;;;;34468:29:0;;;;;;;;;34513:28;;34468:24;;34513:28;;;;;;;34353:196;;;:::o;32233:2002::-;32348:35;32386:20;32398:7;32386:11;:20::i;:::-;32461:18;;32348:58;;-1:-1:-1;32419:22:0;;-1:-1:-1;;;;;32445:34:0;20376:10;-1:-1:-1;;;;;32445:34:0;;:87;;;-1:-1:-1;20376:10:0;32496:20;32508:7;32496:11;:20::i;:::-;-1:-1:-1;;;;;32496:36:0;;32445:87;:154;;;-1:-1:-1;32566:18:0;;32549:50;;20376:10;28111:164;:::i;32549:50::-;32419:181;;32621:17;32613:80;;;;-1:-1:-1;;;32613:80:0;;14533:2:1;32613:80:0;;;14515:21:1;14572:2;14552:18;;;14545:30;14611:34;14591:18;;;14584:62;-1:-1:-1;;;14662:18:1;;;14655:48;14720:19;;32613:80:0;14331:414:1;32613:80:0;32736:4;-1:-1:-1;;;;;32714:26:0;:13;:18;;;-1:-1:-1;;;;;32714:26:0;;32706:77;;;;-1:-1:-1;;;32706:77:0;;12643:2:1;32706:77:0;;;12625:21:1;12682:2;12662:18;;;12655:30;12721:34;12701:18;;;12694:62;-1:-1:-1;;;12772:18:1;;;12765:36;12818:19;;32706:77:0;12441:402:1;32706:77:0;-1:-1:-1;;;;;32802:16:0;;32794:66;;;;-1:-1:-1;;;32794:66:0;;10225:2:1;32794:66:0;;;10207:21:1;10264:2;10244:18;;;10237:30;10303:34;10283:18;;;10276:62;-1:-1:-1;;;10354:18:1;;;10347:35;10399:19;;32794:66:0;10023:401:1;32794:66:0;32981:49;32998:1;33002:7;33011:13;:18;;;32981:8;:49::i;:::-;-1:-1:-1;;;;;33326:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;33326:31:0;;;-1:-1:-1;;;;;33326:31:0;;;-1:-1:-1;;33326:31:0;;;;;;;33372:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;33372:29:0;;;;;;;;;;;;;33418:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;33463:61:0;;;;-1:-1:-1;;;33508:15:0;33463:61;;;;;;33798:11;;;33828:24;;;;;:29;33798:11;;33828:29;33824:295;;33896:20;33904:11;29490:4;29524:12;-1:-1:-1;29514:22:0;29433:111;33896:20;33892:212;;;33973:18;;;33941:24;;;:11;:24;;;;;;;;:50;;34056:28;;;;34014:70;;-1:-1:-1;;;34014:70:0;-1:-1:-1;;;;;;34014:70:0;;;-1:-1:-1;;;;;33941:50:0;;;34014:70;;;;;;;33892:212;33301:829;34166:7;34162:2;-1:-1:-1;;;;;34147:27:0;34156:4;-1:-1:-1;;;;;34147:27:0;;;;;;;;;;;34185:42;32337:1898;;32233:2002;;;:::o;29552:104::-;29621:27;29631:2;29635:8;29621:27;;;;;;;;;;;;:9;:27::i;25114:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;25217:16:0;25225:7;29490:4;29524:12;-1:-1:-1;29514:22:0;29433:111;25217:16;25209:71;;;;-1:-1:-1;;;25209:71:0;;9053:2:1;25209:71:0;;;9035:21:1;9092:2;9072:18;;;9065:30;9131:34;9111:18;;;9104:62;-1:-1:-1;;;9182:18:1;;;9175:40;9232:19;;25209:71:0;8851:406:1;25209:71:0;25338:7;25318:245;25385:31;25419:17;;;:11;:17;;;;;;;;;25385:51;;;;;;;;;-1:-1:-1;;;;;25385:51:0;;;;;-1:-1:-1;;;25385:51:0;;;;;;;;;;;;25459:28;25455:93;;25519:9;25114:537;-1:-1:-1;;;25114:537:0:o;25455:93::-;-1:-1:-1;;;25358:6:0;25318:245;;39317:173;39392:6;;;-1:-1:-1;;;;;39409:17:0;;;-1:-1:-1;;;;;;39409:17:0;;;;;;;39442:40;;39392:6;;;39409:17;39392:6;;39442:40;;39373:16;;39442:40;39362:128;39317:173;:::o;35114:804::-;35269:4;-1:-1:-1;;;;;35290:13:0;;10976:20;11024:8;35286:625;;35326:72;;-1:-1:-1;;;35326:72:0;;-1:-1:-1;;;;;35326:36:0;;;;;:72;;20376:10;;35377:4;;35383:7;;35392:5;;35326:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35326:72:0;;;;;;;;-1:-1:-1;;35326:72:0;;;;;;;;;;;;:::i;:::-;;;35322:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35572:13:0;;35568:273;;35615:61;;-1:-1:-1;;;35615:61:0;;;;;;;:::i;35568:273::-;35791:6;35785:13;35776:6;35772:2;35768:15;35761:38;35322:534;-1:-1:-1;;;;;;35449:55:0;-1:-1:-1;;;35449:55:0;;-1:-1:-1;35442:62:0;;35286:625;-1:-1:-1;35895:4:0;35286:625;35114:804;;;;;;:::o;40176:102::-;40236:13;40265:7;40258:14;;;;;:::i;8128:723::-;8184:13;8405:10;8401:53;;-1:-1:-1;;8432:10:0;;;;;;;;;;;;-1:-1:-1;;;8432:10:0;;;;;8128:723::o;8401:53::-;8479:5;8464:12;8520:78;8527:9;;8520:78;;8553:8;;;;:::i;:::-;;-1:-1:-1;8576:10:0;;-1:-1:-1;8584:2:0;8576:10;;:::i;:::-;;;8520:78;;;8608:19;8640:6;8630:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8630:17:0;;8608:39;;8658:154;8665:10;;8658:154;;8692:11;8702:1;8692:11;;:::i;:::-;;-1:-1:-1;8761:10:0;8769:2;8761:5;:10;:::i;:::-;8748:24;;:2;:24;:::i;:::-;8735:39;;8718:6;8725;8718:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8718:56:0;;;;;;;;-1:-1:-1;8789:11:0;8798:2;8789:11;;:::i;:::-;;;8658:154;;24683:229;24744:7;-1:-1:-1;;;;;24772:19:0;;24764:81;;;;-1:-1:-1;;;24764:81:0;;10631:2:1;24764:81:0;;;10613:21:1;10670:2;10650:18;;;10643:30;10709:34;10689:18;;;10682:62;-1:-1:-1;;;10760:18:1;;;10753:47;10817:19;;24764:81:0;10429:413:1;24764:81:0;-1:-1:-1;;;;;;24871:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;24871:32:0;;-1:-1:-1;;;;;24871:32:0;;24683:229::o;30019:163::-;30142:32;30148:2;30152:8;30162:5;30169:4;30580:20;30603:12;-1:-1:-1;;;;;30634:16:0;;30626:62;;;;-1:-1:-1;;;30626:62:0;;16126:2:1;30626:62:0;;;16108:21:1;16165:2;16145:18;;;16138:30;16204:34;16184:18;;;16177:62;-1:-1:-1;;;16255:18:1;;;16248:31;16296:19;;30626:62:0;15924:397:1;30626:62:0;30707:13;30699:66;;;;-1:-1:-1;;;30699:66:0;;16528:2:1;30699:66:0;;;16510:21:1;16567:2;16547:18;;;16540:30;16606:34;16586:18;;;16579:62;-1:-1:-1;;;16657:18:1;;;16650:38;16705:19;;30699:66:0;16326:404:1;30699:66:0;-1:-1:-1;;;;;31117:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;31117:45:0;;-1:-1:-1;;;;;31117:45:0;;;;;;;;;;31177:50;;;;;;;;;;;;;;31244:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;31294:66:0;;;;-1:-1:-1;;;31344:15:0;31294:66;;;;;;;31244:25;;31429:415;31449:8;31445:1;:12;31429:415;;;31488:38;;31513:12;;-1:-1:-1;;;;;31488:38:0;;;31505:1;;31488:38;;31505:1;;31488:38;31549:4;31545:249;;;31612:59;31643:1;31647:2;31651:12;31665:5;31612:22;:59::i;:::-;31578:196;;;;-1:-1:-1;;;31578:196:0;;;;;;;:::i;:::-;31814:14;;;;;31459:3;31429:415;;;-1:-1:-1;31860:12:0;:27;31911:60;28823:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:615::-;3057:6;3065;3118:2;3106:9;3097:7;3093:23;3089:32;3086:52;;;3134:1;3131;3124:12;3086:52;3174:9;3161:23;3203:18;3244:2;3236:6;3233:14;3230:34;;;3260:1;3257;3250:12;3230:34;3298:6;3287:9;3283:22;3273:32;;3343:7;3336:4;3332:2;3328:13;3324:27;3314:55;;3365:1;3362;3355:12;3314:55;3405:2;3392:16;3431:2;3423:6;3420:14;3417:34;;;3447:1;3444;3437:12;3417:34;3500:7;3495:2;3485:6;3482:1;3478:14;3474:2;3470:23;3466:32;3463:45;3460:65;;;3521:1;3518;3511:12;3460:65;3552:2;3544:11;;;;;3574:6;;-1:-1:-1;2971:615:1;;-1:-1:-1;;;;2971:615:1:o;3591:180::-;3647:6;3700:2;3688:9;3679:7;3675:23;3671:32;3668:52;;;3716:1;3713;3706:12;3668:52;3739:26;3755:9;3739:26;:::i;3776:245::-;3834:6;3887:2;3875:9;3866:7;3862:23;3858:32;3855:52;;;3903:1;3900;3893:12;3855:52;3942:9;3929:23;3961:30;3985:5;3961:30;:::i;4026:249::-;4095:6;4148:2;4136:9;4127:7;4123:23;4119:32;4116:52;;;4164:1;4161;4154:12;4116:52;4196:9;4190:16;4215:30;4239:5;4215:30;:::i;4280:450::-;4349:6;4402:2;4390:9;4381:7;4377:23;4373:32;4370:52;;;4418:1;4415;4408:12;4370:52;4458:9;4445:23;4491:18;4483:6;4480:30;4477:50;;;4523:1;4520;4513:12;4477:50;4546:22;;4599:4;4591:13;;4587:27;-1:-1:-1;4577:55:1;;4628:1;4625;4618:12;4577:55;4651:73;4716:7;4711:2;4698:16;4693:2;4689;4685:11;4651:73;:::i;4735:180::-;4794:6;4847:2;4835:9;4826:7;4822:23;4818:32;4815:52;;;4863:1;4860;4853:12;4815:52;-1:-1:-1;4886:23:1;;4735:180;-1:-1:-1;4735:180:1:o;4920:257::-;4961:3;4999:5;4993:12;5026:6;5021:3;5014:19;5042:63;5098:6;5091:4;5086:3;5082:14;5075:4;5068:5;5064:16;5042:63;:::i;:::-;5159:2;5138:15;-1:-1:-1;;5134:29:1;5125:39;;;;5166:4;5121:50;;4920:257;-1:-1:-1;;4920:257:1:o;5182:1527::-;5406:3;5444:6;5438:13;5470:4;5483:51;5527:6;5522:3;5517:2;5509:6;5505:15;5483:51;:::i;:::-;5597:13;;5556:16;;;;5619:55;5597:13;5556:16;5641:15;;;5619:55;:::i;:::-;5763:13;;5696:20;;;5736:1;;5823;5845:18;;;;5898;;;;5925:93;;6003:4;5993:8;5989:19;5977:31;;5925:93;6066:2;6056:8;6053:16;6033:18;6030:40;6027:167;;;-1:-1:-1;;;6093:33:1;;6149:4;6146:1;6139:15;6179:4;6100:3;6167:17;6027:167;6210:18;6237:110;;;;6361:1;6356:328;;;;6203:481;;6237:110;-1:-1:-1;;6272:24:1;;6258:39;;6317:20;;;;-1:-1:-1;6237:110:1;;6356:328;18587:1;18580:14;;;18624:4;18611:18;;6451:1;6465:169;6479:8;6476:1;6473:15;6465:169;;;6561:14;;6546:13;;;6539:37;6604:16;;;;6496:10;;6465:169;;;6469:3;;6665:8;6658:5;6654:20;6647:27;;6203:481;-1:-1:-1;6700:3:1;;5182:1527;-1:-1:-1;;;;;;;;;;;5182:1527:1:o;7132:488::-;-1:-1:-1;;;;;7401:15:1;;;7383:34;;7453:15;;7448:2;7433:18;;7426:43;7500:2;7485:18;;7478:34;;;7548:3;7543:2;7528:18;;7521:31;;;7326:4;;7569:45;;7594:19;;7586:6;7569:45;:::i;:::-;7561:53;7132:488;-1:-1:-1;;;;;;7132:488:1:o;7817:219::-;7966:2;7955:9;7948:21;7929:4;7986:44;8026:2;8015:9;8011:18;8003:6;7986:44;:::i;11624:400::-;11826:2;11808:21;;;11865:2;11845:18;;;11838:30;11904:34;11899:2;11884:18;;11877:62;-1:-1:-1;;;11970:2:1;11955:18;;11948:34;12014:3;11999:19;;11624:400::o;12848:356::-;13050:2;13032:21;;;13069:18;;;13062:30;13128:34;13123:2;13108:18;;13101:62;13195:2;13180:18;;12848:356::o;15504:415::-;15706:2;15688:21;;;15745:2;15725:18;;;15718:30;15784:34;15779:2;15764:18;;15757:62;-1:-1:-1;;;15850:2:1;15835:18;;15828:49;15909:3;15894:19;;15504:415::o;18640:128::-;18680:3;18711:1;18707:6;18704:1;18701:13;18698:39;;;18717:18;;:::i;:::-;-1:-1:-1;18753:9:1;;18640:128::o;18773:120::-;18813:1;18839;18829:35;;18844:18;;:::i;:::-;-1:-1:-1;18878:9:1;;18773:120::o;18898:168::-;18938:7;19004:1;19000;18996:6;18992:14;18989:1;18986:21;18981:1;18974:9;18967:17;18963:45;18960:71;;;19011:18;;:::i;:::-;-1:-1:-1;19051:9:1;;18898:168::o;19071:125::-;19111:4;19139:1;19136;19133:8;19130:34;;;19144:18;;:::i;:::-;-1:-1:-1;19181:9:1;;19071:125::o;19201:258::-;19273:1;19283:113;19297:6;19294:1;19291:13;19283:113;;;19373:11;;;19367:18;19354:11;;;19347:39;19319:2;19312:10;19283:113;;;19414:6;19411:1;19408:13;19405:48;;;-1:-1:-1;;19449:1:1;19431:16;;19424:27;19201:258::o;19464:380::-;19543:1;19539:12;;;;19586;;;19607:61;;19661:4;19653:6;19649:17;19639:27;;19607:61;19714:2;19706:6;19703:14;19683:18;19680:38;19677:161;;;19760:10;19755:3;19751:20;19748:1;19741:31;19795:4;19792:1;19785:15;19823:4;19820:1;19813:15;19677:161;;19464:380;;;:::o;19849:135::-;19888:3;-1:-1:-1;;19909:17:1;;19906:43;;;19929:18;;:::i;:::-;-1:-1:-1;19976:1:1;19965:13;;19849:135::o;19989:112::-;20021:1;20047;20037:35;;20052:18;;:::i;:::-;-1:-1:-1;20086:9:1;;19989:112::o;20106:127::-;20167:10;20162:3;20158:20;20155:1;20148:31;20198:4;20195:1;20188:15;20222:4;20219:1;20212:15;20238:127;20299:10;20294:3;20290:20;20287:1;20280:31;20330:4;20327:1;20320:15;20354:4;20351:1;20344:15;20370:127;20431:10;20426:3;20422:20;20419:1;20412:31;20462:4;20459:1;20452:15;20486:4;20483:1;20476:15;20502:127;20563:10;20558:3;20554:20;20551:1;20544:31;20594:4;20591:1;20584:15;20618:4;20615:1;20608:15;20634:131;-1:-1:-1;;;;;;20708:32:1;;20698:43;;20688:71;;20755:1;20752;20745:12

Swarm Source

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