ETH Price: $2,330.90 (-0.75%)

Token

SyntheticallyEngineeredCreepths (SYNTHCREEPTHS)
 

Overview

Max Total Supply

42 SYNTHCREEPTHS

Holders

37

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 SYNTHCREEPTHS
0x69023DddaB45f345f2B683c180001d017FC0a540
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:
SyntheticallyEngineeredCreepths

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 2023-04-05
*/

/**
 *Submitted for verification at testnet.snowtrace.io on 2023-04-03
*/

// SPDX-License-Identifier: MIT
//


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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


pragma solidity ^0.8.0;


/**ERC721A import
 * @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..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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




contract SyntheticallyEngineeredCreepths is Ownable, ERC721A, ReentrancyGuard {

    using Address for address;
    using Strings for uint256;

    //allows for 150 tokens to be minted for team reserves to use as needed/planned 
    uint256 public MAX_TEAM_RESERVES_PRESALE = 150;
    //sets immutable value for lifetime total collection of 10000
    uint256 public immutable MAX_TOKENS;
    //toggle supply total for sale depending on wave
    uint256 public WAVE_TOTAL_SUPPLY = 30;
    //sets limit of mints per wallet during allowlist sale
    uint256 public MAX_WL_TOKENS_PER_ADDRESS = 30;
    //OG skelelinks holder presale token price
    uint256 public OG_TOKEN_PRICE = 0.00 ether;
    //WL allowlist presale token price
    uint256 public WL_TOKEN_PRICE = 0.00 ether;
    //public token price
    uint256 public TOKEN_PRICE = 0.00 ether;
    //max mints per tx during the public mint
    uint256 public MAX_MINTS_PER_TX = 50;

    bool public OGsale = false;
    bool public WLsale = false;
    bool public PublicSale = false;


        // OG merkle root
    bytes32 public OGmerkleroot;

        // whitelist merkle root
    bytes32 public WLmerkleroot;

    //tracks amount a user can claim during OG Skele Links Holders mint
    mapping (address => uint256) public OGsaleReserved;

    //tracks number a user has minted during OG sale
    mapping (address => uint) public OGNumMinted;

    //tracks number a user has minted during WL sale
    mapping (address => uint) public WLNumMinted;

    string private _contractUri = "ipfs://";

    constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_,
    uint256 maxTOKENS_
  ) ERC721A("SyntheticallyEngineeredCreepths","SYNTHCREEPTHS", maxBatchSize_,collectionSize_) {
    MAX_MINTS_PER_TX = maxBatchSize_;
    MAX_TOKENS = maxTOKENS_;
    require(
        maxTOKENS_ <= collectionSize_,
        "larger collection size needed"
    );   
  }

  modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }

//minting function for the OG presale- which allows a specific qty per wallet (requires it)
    function OGclaim(uint256 quantity, bytes32[] calldata OGMerkleProof) external payable callerIsUser nonReentrant {
        require(OGsale, "OG sale is not live");
        require(totalSupply() + quantity <= MAX_TOKENS, "minting this many would exceed supply");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(OGMerkleProof, OGmerkleroot, leaf), "Invalid proof.");
        _checkOGMintRequirements(quantity);
        _safeMint(msg.sender, quantity);
    }

    function _checkOGMintRequirements(uint256 quantity) internal {
        require(quantity > 0 && quantity <= OGsaleReserved[msg.sender], "invalid quantity: zero or greater than mint allowance");
        require(msg.value == OG_TOKEN_PRICE * quantity, "wrong amount of ether sent");
        OGNumMinted[msg.sender] = OGNumMinted[msg.sender] + quantity;
        require(OGNumMinted[msg.sender] <= OGsaleReserved[msg.sender], "Cannot mint more than your allowance");
}

//minting function for the WL allowlist sale- standard set amount per wallet
    function WLsaleMint(uint256 quantity, bytes32[] calldata WLsaleMerkleProof) external payable callerIsUser nonReentrant {
        require(WLsale, "WL sale is not live");
        require(totalSupply() + quantity <= WAVE_TOTAL_SUPPLY, "minting this many would exceed supply for WL round");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(WLsaleMerkleProof, WLmerkleroot, leaf), "Invalid proof.");
        _checkWLPreMintRequirements(quantity);
        _safeMint(msg.sender, quantity);
    }

    function _checkWLPreMintRequirements(uint256 quantity) internal {
        require(quantity > 0 && quantity <= MAX_WL_TOKENS_PER_ADDRESS, "invalid quantity: zero or greater than mint allowance");
        require(totalSupply() + quantity <= MAX_TOKENS);
        require(msg.value == WL_TOKEN_PRICE * quantity, "wrong amount of ether sent");
        WLNumMinted[msg.sender] = WLNumMinted[msg.sender] + quantity;
        require(WLNumMinted[msg.sender] <= MAX_WL_TOKENS_PER_ADDRESS, "Cannot mint more than your allotment in this phase");
    }

//public mint function
    function mint(uint256 quantity) external payable callerIsUser nonReentrant {
        require(PublicSale, "public sale is not live");
        require(totalSupply() + quantity <= MAX_TOKENS, "invalid quantity: would exceed max supply");
        require(totalSupply() + quantity <= WAVE_TOTAL_SUPPLY, "minting this many would exceed supply for this phase");
        _checkMintRequirements(quantity);
        _safeMint(msg.sender, quantity);
    }

    function _checkMintRequirements(uint256 quantity) internal {
        require(quantity > 0 && quantity <= MAX_MINTS_PER_TX, "invalid quantity: zero or greater than mint allowance per tx");
        require(msg.value == TOKEN_PRICE * quantity, "wrong amount of ether sent");
    }

//admin minting function for team tokens
    function teamReservesPreSaleMint(uint256 quantity) public onlyOwner {
        require(quantity <= MAX_TEAM_RESERVES_PRESALE, "Can't reserve more than set amount" );
        MAX_TEAM_RESERVES_PRESALE -= quantity;
        require(totalSupply() + quantity <= MAX_TOKENS, "invalid quantity: would exceed max supply");
        _safeMint(msg.sender, quantity);
    }

    function toggleOGsale() public onlyOwner {
        OGsale = !OGsale;
    }

    function toggleWLsale() public onlyOwner {
        WLsale = !WLsale;
    }

    function togglePublic1Sale() public onlyOwner {
        PublicSale = !PublicSale;
    }

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

    function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {
    _setOwnersExplicit(quantity);
  }

    // // metadata URI
    string private _baseTokenURI;

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

    function setBaseURI(string calldata baseURI) external onlyOwner {
    _baseTokenURI = baseURI;
  } 

    function setOGmerkleroot(bytes32 newOGmerkle) public onlyOwner {
    OGmerkleroot = newOGmerkle;
    }

      function setContractUri(string calldata newUri) public onlyOwner {
    _contractUri = newUri;
  }


    function setWLmerkleroot(bytes32 newWLmerkle) public onlyOwner {
    WLmerkleroot = newWLmerkle;
    }

     // Edit reserved OG skele links holders spots
  function editOGReserved(address[] memory _a, uint256[] memory _amount) public onlyOwner {
    for(uint256 i; i < _a.length; i++){
    OGsaleReserved[_a[i]] = _amount[i];
    }
  }


    function setWAVE_TOTAL_SUPPLY(uint256 _WAVE_TOTAL_SUPPLY) public onlyOwner() {
    WAVE_TOTAL_SUPPLY = _WAVE_TOTAL_SUPPLY;
    }

    function setMAX_WL_TOKENS_PER_ADDRESS(uint256 _MAX_WL_TOKENS_PER_ADDRESS) public onlyOwner() {
    MAX_WL_TOKENS_PER_ADDRESS = _MAX_WL_TOKENS_PER_ADDRESS;
    }


    function setMAX_MINTS_PER_TX(uint256 _MAX_MINTS_PER_TX) public onlyOwner() {
    MAX_MINTS_PER_TX = _MAX_MINTS_PER_TX;
    }

    function setOG_TOKEN_PRICE(uint256 _OG_TOKEN_PRICE) public onlyOwner() {
    OG_TOKEN_PRICE = _OG_TOKEN_PRICE;
    }

    function setWL_TOKEN_PRICE(uint256 _WL_TOKEN_PRICE) public onlyOwner() {
    WL_TOKEN_PRICE = _WL_TOKEN_PRICE;
    }

    function setTOKEN_PRICE(uint256 _TOKEN_PRICE) public onlyOwner() {
    TOKEN_PRICE = _TOKEN_PRICE;
    }

     function contractURI() public view returns (string memory) {
    return _contractUri;
  }


  

    function getOwnershipData(uint256 tokenId)
    external
    view
    returns (TokenOwnership memory)
  {
    return ownershipOf(tokenId);
  }

  function withdrawMoney() external onlyOwner nonReentrant {
    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "Transfer failed.");
  }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"maxTOKENS_","type":"uint256"}],"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":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TEAM_RESERVES_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WL_TOKENS_PER_ADDRESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"OGNumMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OG_TOKEN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"OGMerkleProof","type":"bytes32[]"}],"name":"OGclaim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"OGmerkleroot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OGsale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"OGsaleReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PublicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WAVE_TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WLNumMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_TOKEN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WLmerkleroot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WLsale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"WLsaleMerkleProof","type":"bytes32[]"}],"name":"WLsaleMint","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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_a","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"editOGReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newUri","type":"string"}],"name":"setContractUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_MINTS_PER_TX","type":"uint256"}],"name":"setMAX_MINTS_PER_TX","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_WL_TOKENS_PER_ADDRESS","type":"uint256"}],"name":"setMAX_WL_TOKENS_PER_ADDRESS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_OG_TOKEN_PRICE","type":"uint256"}],"name":"setOG_TOKEN_PRICE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newOGmerkle","type":"bytes32"}],"name":"setOGmerkleroot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_TOKEN_PRICE","type":"uint256"}],"name":"setTOKEN_PRICE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_WAVE_TOTAL_SUPPLY","type":"uint256"}],"name":"setWAVE_TOTAL_SUPPLY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_WL_TOKEN_PRICE","type":"uint256"}],"name":"setWL_TOKEN_PRICE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newWLmerkle","type":"bytes32"}],"name":"setWLmerkleroot","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":"quantity","type":"uint256"}],"name":"teamReservesPreSaleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleOGsale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublic1Sale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWLsale","outputs":[],"stateMutability":"nonpayable","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":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000600181905560088190556096600a55601e600b819055600c55600d819055600e819055600f5560326010556011805462ffffff19169055610120604052600760e081905266697066733a2f2f60c81b610100908152620000659160179190620002d2565b503480156200007357600080fd5b5060405162003cc038038062003cc0833981016040819052620000969162000378565b6040518060400160405280601f81526020017f53796e746865746963616c6c79456e67696e65657265644372656570746873008152506040518060400160405280600d81526020016c53594e5448435245455054485360981b81525084846200010e620001086200027e60201b60201c565b62000282565b600081116200017b5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001dd5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000172565b8351620001f2906002906020870190620002d2565b50825162000208906003906020860190620002d2565b5060a09190915260805250506001600955601083905560c081905281811115620002755760405162461bcd60e51b815260206004820152601d60248201527f6c617267657220636f6c6c656374696f6e2073697a65206e6565646564000000604482015260640162000172565b505050620003e4565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620002e090620003a7565b90600052602060002090601f0160209004810192826200030457600085556200034f565b82601f106200031f57805160ff19168380011785556200034f565b828001600101855582156200034f579182015b828111156200034f57825182559160200191906001019062000332565b506200035d92915062000361565b5090565b5b808211156200035d576000815560010162000362565b6000806000606084860312156200038e57600080fd5b8351925060208401519150604084015190509250925092565b600181811c90821680620003bc57607f821691505b60208210811415620003de57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05161387b6200044560003960008181610a5901528181610e85015281816114b20152818161172b0152612a76015260008181612567015281816125910152612caa01526000818161236d015261239f015261387b6000f3fe60806040526004361061038c5760003560e01c806380295bf6116101dc578063ccb4807b11610102578063e985e9c5116100a0578063f47c84c51161006f578063f47c84c514610a47578063f4ee6f9c14610a7b578063fab905fa14610a91578063fde32d9f14610abe57600080fd5b8063e985e9c5146109a8578063f14f2a45146109f1578063f2fde38b14610a11578063f3fa925114610a3157600080fd5b8063d7224ba0116100dc578063d7224ba014610943578063dc33e68114610959578063e150795d14610979578063e8a3d4851461099357600080fd5b8063ccb4807b146108f8578063d2d8cb6714610918578063d6793b411461092e57600080fd5b8063a0712d681161017a578063b88d4fde11610149578063b88d4fde1461088c578063bc84b182146108ac578063c6a91b42146108c2578063c87b56dd146108d857600080fd5b8063a0712d6814610817578063a22cb4651461082a578063a5c351fd1461084a578063ac4460021461087757600080fd5b80639231ab2a116101b65780639231ab2a1461078057806392c7e9ab146107cd578063948f62a8146107e257806395d89b411461080257600080fd5b806380295bf61461072c5780638832fedc1461074c5780638da5cb5b1461076257600080fd5b80634b0b5bc1116102c157806364be52871161025f57806372a6b4201161022e57806372a6b4201461069f57806377bab905146106bf5780637a37744a146106ec5780637db1d6841461070c57600080fd5b806364be52871461063457806368df66a61461065457806370a082311461066a578063715018a61461068a57600080fd5b8063513744de1161029b578063513744de146105b557806355f804b3146105d557806359da6871146105f55780636352211e1461061457600080fd5b80634b0b5bc11461055f5780634f4342e2146105755780634f6ccce71461059557600080fd5b80631bbaa8ec1161032e5780632bd1c94e116103085780632bd1c94e146104ec5780632d20fb60146104ff5780632f745c591461051f57806342842e0e1461053f57600080fd5b80631bbaa8ec146104965780631dd737ec146104ac57806323b872dd146104cc57600080fd5b8063081812fc1161036a578063081812fc146103ff578063095ea7b3146104375780630f59c6eb1461045757806318160ddd1461047757600080fd5b806301ffc9a71461039157806304736a56146103c657806306fdde03146103dd575b600080fd5b34801561039d57600080fd5b506103b16103ac366004613273565b610ad1565b60405190151581526020015b60405180910390f35b3480156103d257600080fd5b506103db610b3e565b005b3480156103e957600080fd5b506103f2610b85565b6040516103bd9190613444565b34801561040b57600080fd5b5061041f61041a36600461325a565b610c17565b6040516001600160a01b0390911681526020016103bd565b34801561044357600080fd5b506103db61045236600461316a565b610ca2565b34801561046357600080fd5b506011546103b19062010000900460ff1681565b34801561048357600080fd5b506001545b6040519081526020016103bd565b3480156104a257600080fd5b50610488600a5481565b3480156104b857600080fd5b506103db6104c736600461325a565b610dba565b3480156104d857600080fd5b506103db6104e7366004613033565b610de9565b6103db6104fa36600461331e565b610df4565b34801561050b57600080fd5b506103db61051a36600461325a565b610fe9565b34801561052b57600080fd5b5061048861053a36600461316a565b61104c565b34801561054b57600080fd5b506103db61055a366004613033565b6111c4565b34801561056b57600080fd5b50610488600c5481565b34801561058157600080fd5b506103db61059036600461325a565b6111df565b3480156105a157600080fd5b506104886105b036600461325a565b61120e565b3480156105c157600080fd5b506103db6105d036600461325a565b611277565b3480156105e157600080fd5b506103db6105f03660046132ad565b6112a6565b34801561060157600080fd5b506011546103b190610100900460ff1681565b34801561062057600080fd5b5061041f61062f36600461325a565b6112dc565b34801561064057600080fd5b506103db61064f36600461325a565b6112ee565b34801561066057600080fd5b50610488600d5481565b34801561067657600080fd5b50610488610685366004612fe5565b61131d565b34801561069657600080fd5b506103db6113ae565b3480156106ab57600080fd5b506103db6106ba36600461325a565b6113e4565b3480156106cb57600080fd5b506104886106da366004612fe5565b60146020526000908152604090205481565b3480156106f857600080fd5b506103db61070736600461325a565b611413565b34801561071857600080fd5b506103db61072736600461325a565b611512565b34801561073857600080fd5b506103db610747366004613194565b611541565b34801561075857600080fd5b5061048860125481565b34801561076e57600080fd5b506000546001600160a01b031661041f565b34801561078c57600080fd5b506107a061079b36600461325a565b6115e6565b6040805182516001600160a01b031681526020928301516001600160401b031692810192909252016103bd565b3480156107d957600080fd5b506103db611603565b3480156107ee57600080fd5b506103db6107fd36600461325a565b61164c565b34801561080e57600080fd5b506103f261167b565b6103db61082536600461325a565b61168a565b34801561083657600080fd5b506103db61084536600461312e565b611811565b34801561085657600080fd5b50610488610865366004612fe5565b60156020526000908152604090205481565b34801561088357600080fd5b506103db6118d6565b34801561089857600080fd5b506103db6108a736600461306f565b6119b3565b3480156108b857600080fd5b50610488600b5481565b3480156108ce57600080fd5b5061048860105481565b3480156108e457600080fd5b506103f26108f336600461325a565b6119ec565b34801561090457600080fd5b506103db6109133660046132ad565b611ab9565b34801561092457600080fd5b50610488600f5481565b34801561093a57600080fd5b506103db611aef565b34801561094f57600080fd5b5061048860085481565b34801561096557600080fd5b50610488610974366004612fe5565b611b36565b34801561098557600080fd5b506011546103b19060ff1681565b34801561099f57600080fd5b506103f2611b41565b3480156109b457600080fd5b506103b16109c3366004613000565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156109fd57600080fd5b506103db610a0c36600461325a565b611b50565b348015610a1d57600080fd5b506103db610a2c366004612fe5565b611b7f565b348015610a3d57600080fd5b5061048860135481565b348015610a5357600080fd5b506104887f000000000000000000000000000000000000000000000000000000000000000081565b348015610a8757600080fd5b50610488600e5481565b348015610a9d57600080fd5b50610488610aac366004612fe5565b60166020526000908152604090205481565b6103db610acc36600461331e565b611c17565b60006001600160e01b031982166380ac58cd60e01b1480610b0257506001600160e01b03198216635b5e139f60e01b145b80610b1d57506001600160e01b0319821663780e9d6360e01b145b80610b3857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b03163314610b715760405162461bcd60e51b8152600401610b68906134d7565b60405180910390fd5b6011805460ff19811660ff90911615179055565b606060028054610b949061376d565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc09061376d565b8015610c0d5780601f10610be257610100808354040283529160200191610c0d565b820191906000526020600020905b815481529060010190602001808311610bf057829003601f168201915b5050505050905090565b6000610c24826001541190565b610c865760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610b68565b506000908152600660205260409020546001600160a01b031690565b6000610cad826112dc565b9050806001600160a01b0316836001600160a01b03161415610d1c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610b68565b336001600160a01b0382161480610d385750610d3881336109c3565b610daa5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610b68565b610db5838383611deb565b505050565b6000546001600160a01b03163314610de45760405162461bcd60e51b8152600401610b68906134d7565b600b55565b610db5838383611e47565b323314610e135760405162461bcd60e51b8152600401610b6890613457565b60026009541415610e365760405162461bcd60e51b8152600401610b689061355f565b600260095560115460ff16610e835760405162461bcd60e51b81526020600482015260136024820152724f472073616c65206973206e6f74206c69766560681b6044820152606401610b68565b7f000000000000000000000000000000000000000000000000000000000000000083610eae60015490565b610eb891906136a0565b1115610f145760405162461bcd60e51b815260206004820152602560248201527f6d696e74696e672074686973206d616e7920776f756c642065786365656420736044820152647570706c7960d81b6064820152608401610b68565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610f8e8383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060125491508490506121cd565b610fcb5760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b210383937b7b31760911b6044820152606401610b68565b610fd4846121e3565b610fde33856122de565b505060016009555050565b6000546001600160a01b031633146110135760405162461bcd60e51b8152600401610b68906134d7565b600260095414156110365760405162461bcd60e51b8152600401610b689061355f565b6002600955611044816122fc565b506001600955565b60006110578361131d565b82106110b05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610b68565b60006110bb60015490565b905060008060005b83811015611164576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561111557805192505b876001600160a01b0316836001600160a01b03161415611151578684141561114357509350610b3892505050565b8361114d816137a8565b9450505b508061115c816137a8565b9150506110c3565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610b68565b610db5838383604051806020016040528060008152506119b3565b6000546001600160a01b031633146112095760405162461bcd60e51b8152600401610b68906134d7565b601055565b600061121960015490565b82106112735760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610b68565b5090565b6000546001600160a01b031633146112a15760405162461bcd60e51b8152600401610b68906134d7565b600d55565b6000546001600160a01b031633146112d05760405162461bcd60e51b8152600401610b68906134d7565b610db560188383612ec7565b60006112e7826124e5565b5192915050565b6000546001600160a01b031633146113185760405162461bcd60e51b8152600401610b68906134d7565b600f55565b60006001600160a01b0382166113895760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610b68565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146113d85760405162461bcd60e51b8152600401610b68906134d7565b6113e2600061268e565b565b6000546001600160a01b0316331461140e5760405162461bcd60e51b8152600401610b68906134d7565b601255565b6000546001600160a01b0316331461143d5760405162461bcd60e51b8152600401610b68906134d7565b600a5481111561149a5760405162461bcd60e51b815260206004820152602260248201527f43616e27742072657365727665206d6f7265207468616e2073657420616d6f756044820152611b9d60f21b6064820152608401610b68565b80600a60008282546114ac9190613713565b909155507f00000000000000000000000000000000000000000000000000000000000000009050816114dd60015490565b6114e791906136a0565b11156115055760405162461bcd60e51b8152600401610b689061348e565b61150f33826122de565b50565b6000546001600160a01b0316331461153c5760405162461bcd60e51b8152600401610b68906134d7565b601355565b6000546001600160a01b0316331461156b5760405162461bcd60e51b8152600401610b68906134d7565b60005b8251811015610db55781818151811061158957611589613803565b6020026020010151601460008584815181106115a7576115a7613803565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806115de906137a8565b91505061156e565b6040805180820190915260008082526020820152610b38826124e5565b6000546001600160a01b0316331461162d5760405162461bcd60e51b8152600401610b68906134d7565b6011805462ff0000198116620100009182900460ff1615909102179055565b6000546001600160a01b031633146116765760405162461bcd60e51b8152600401610b68906134d7565b600c55565b606060038054610b949061376d565b3233146116a95760405162461bcd60e51b8152600401610b6890613457565b600260095414156116cc5760405162461bcd60e51b8152600401610b689061355f565b600260095560115462010000900460ff166117295760405162461bcd60e51b815260206004820152601760248201527f7075626c69632073616c65206973206e6f74206c6976650000000000000000006044820152606401610b68565b7f00000000000000000000000000000000000000000000000000000000000000008161175460015490565b61175e91906136a0565b111561177c5760405162461bcd60e51b8152600401610b689061348e565b600b548161178960015490565b61179391906136a0565b11156117fe5760405162461bcd60e51b815260206004820152603460248201527f6d696e74696e672074686973206d616e7920776f756c642065786365656420736044820152737570706c7920666f72207468697320706861736560601b6064820152608401610b68565b611807816126de565b61104433826122de565b6001600160a01b03821633141561186a5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610b68565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146119005760405162461bcd60e51b8152600401610b68906134d7565b600260095414156119235760405162461bcd60e51b8152600401610b689061355f565b6002600955604051600090339047908381818185875af1925050503d806000811461196a576040519150601f19603f3d011682016040523d82523d6000602084013e61196f565b606091505b50509050806110445760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610b68565b6119be848484611e47565b6119ca8484848461278e565b6119e65760405162461bcd60e51b8152600401610b689061350c565b50505050565b60606119f9826001541190565b611a5d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b68565b6000611a6761289c565b90506000815111611a875760405180602001604052806000815250611ab2565b80611a91846128ab565b604051602001611aa29291906133c8565b6040516020818303038152906040525b9392505050565b6000546001600160a01b03163314611ae35760405162461bcd60e51b8152600401610b68906134d7565b610db560178383612ec7565b6000546001600160a01b03163314611b195760405162461bcd60e51b8152600401610b68906134d7565b6011805461ff001981166101009182900460ff1615909102179055565b6000610b38826129a8565b606060178054610b949061376d565b6000546001600160a01b03163314611b7a5760405162461bcd60e51b8152600401610b68906134d7565b600e55565b6000546001600160a01b03163314611ba95760405162461bcd60e51b8152600401610b68906134d7565b6001600160a01b038116611c0e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b68565b61150f8161268e565b323314611c365760405162461bcd60e51b8152600401610b6890613457565b60026009541415611c595760405162461bcd60e51b8152600401610b689061355f565b6002600955601154610100900460ff16611cab5760405162461bcd60e51b8152602060048201526013602482015272574c2073616c65206973206e6f74206c69766560681b6044820152606401610b68565b600b5483611cb860015490565b611cc291906136a0565b1115611d2b5760405162461bcd60e51b815260206004820152603260248201527f6d696e74696e672074686973206d616e7920776f756c642065786365656420736044820152711d5c1c1b1e48199bdc8815d3081c9bdd5b9960721b6064820152608401610b68565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050611da58383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060135491508490506121cd565b611de25760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b210383937b7b31760911b6044820152606401610b68565b610fd484612a46565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611e52826124e5565b80519091506000906001600160a01b0316336001600160a01b03161480611e89575033611e7e84610c17565b6001600160a01b0316145b80611e9b57508151611e9b90336109c3565b905080611f055760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610b68565b846001600160a01b031682600001516001600160a01b031614611f795760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610b68565b6001600160a01b038416611fdd5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610b68565b611fed6000848460000151611deb565b6001600160a01b038516600090815260056020526040812080546001929061201f9084906001600160801b03166136eb565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261206b91859116613675565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556120f28460016136a0565b6000818152600460205260409020549091506001600160a01b03166121835761211c816001541190565b156121835760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6000826121da8584612b79565b14949350505050565b6000811180156122025750336000908152601460205260409020548111155b61221e5760405162461bcd60e51b8152600401610b68906135cd565b80600d5461222c91906136cc565b341461224a5760405162461bcd60e51b8152600401610b6890613596565b336000908152601560205260409020546122659082906136a0565b33600090815260156020818152604080842085905560148252909220549152101561150f5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f74206d696e74206d6f7265207468616e20796f757220616c6c6f77604482015263616e636560e01b6064820152608401610b68565b6122f8828260405180602001604052806000815250612bed565b5050565b6008548161234c5760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610b68565b6000600161235a84846136a0565b6123649190613713565b905061239160017f0000000000000000000000000000000000000000000000000000000000000000613713565b8111156123c6576123c360017f0000000000000000000000000000000000000000000000000000000000000000613713565b90505b6123d1816001541190565b61242c5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610b68565b815b8181116124d1576000818152600460205260409020546001600160a01b03166124bf57600061245c826124e5565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b806124c9816137a8565b91505061242e565b506124dd8160016136a0565b600855505050565b6040805180820190915260008082526020820152612504826001541190565b6125635760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610b68565b60007f000000000000000000000000000000000000000000000000000000000000000083106125c4576125b67f000000000000000000000000000000000000000000000000000000000000000084613713565b6125c19060016136a0565b90505b825b81811061262d576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561261a57949350505050565b508061262581613756565b9150506125c6565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610b68565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000811180156126f057506010548111155b6127625760405162461bcd60e51b815260206004820152603c60248201527f696e76616c6964207175616e746974793a207a65726f206f722067726561746560448201527f72207468616e206d696e7420616c6c6f77616e636520706572207478000000006064820152608401610b68565b80600f5461277091906136cc565b341461150f5760405162461bcd60e51b8152600401610b6890613596565b60006001600160a01b0384163b1561289057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906127d2903390899088908890600401613407565b602060405180830381600087803b1580156127ec57600080fd5b505af192505050801561281c575060408051601f3d908101601f1916820190925261281991810190613290565b60015b612876573d80801561284a576040519150601f19603f3d011682016040523d82523d6000602084013e61284f565b606091505b50805161286e5760405162461bcd60e51b8152600401610b689061350c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612894565b5060015b949350505050565b606060188054610b949061376d565b6060816128cf5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156128f957806128e3816137a8565b91506128f29050600a836136b8565b91506128d3565b6000816001600160401b0381111561291357612913613819565b6040519080825280601f01601f19166020018201604052801561293d576020820181803683370190505b5090505b841561289457612952600183613713565b915061295f600a866137c3565b61296a9060306136a0565b60f81b81838151811061297f5761297f613803565b60200101906001600160f81b031916908160001a9053506129a1600a866136b8565b9450612941565b60006001600160a01b038216612a1a5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610b68565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b600081118015612a585750600c548111155b612a745760405162461bcd60e51b8152600401610b68906135cd565b7f000000000000000000000000000000000000000000000000000000000000000081612a9f60015490565b612aa991906136a0565b1115612ab457600080fd5b80600e54612ac291906136cc565b3414612ae05760405162461bcd60e51b8152600401610b6890613596565b33600090815260166020526040902054612afb9082906136a0565b336000908152601660205260409020819055600c54101561150f5760405162461bcd60e51b815260206004820152603260248201527f43616e6e6f74206d696e74206d6f7265207468616e20796f757220616c6c6f746044820152716d656e7420696e207468697320706861736560701b6064820152608401610b68565b600081815b8451811015612be5576000858281518110612b9b57612b9b613803565b60200260200101519050808311612bc15760008381526020829052604090209250612bd2565b600081815260208490526040902092505b5080612bdd816137a8565b915050612b7e565b509392505050565b6001546001600160a01b038416612c505760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610b68565b612c5b816001541190565b15612ca85760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610b68565b7f0000000000000000000000000000000000000000000000000000000000000000831115612d235760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610b68565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612d7f908790613675565b6001600160801b03168152602001858360200151612d9d9190613675565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612ebc5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612e80600088848861278e565b612e9c5760405162461bcd60e51b8152600401610b689061350c565b81612ea6816137a8565b9250508080612eb4906137a8565b915050612e33565b5060018190556121c5565b828054612ed39061376d565b90600052602060002090601f016020900481019282612ef55760008555612f3b565b82601f10612f0e5782800160ff19823516178555612f3b565b82800160010185558215612f3b579182015b82811115612f3b578235825591602001919060010190612f20565b506112739291505b808211156112735760008155600101612f43565b80356001600160a01b0381168114612f6e57600080fd5b919050565b600082601f830112612f8457600080fd5b81356020612f99612f9483613652565b613622565b80838252828201915082860187848660051b8901011115612fb957600080fd5b60005b85811015612fd857813584529284019290840190600101612fbc565b5090979650505050505050565b600060208284031215612ff757600080fd5b611ab282612f57565b6000806040838503121561301357600080fd5b61301c83612f57565b915061302a60208401612f57565b90509250929050565b60008060006060848603121561304857600080fd5b61305184612f57565b925061305f60208501612f57565b9150604084013590509250925092565b6000806000806080858703121561308557600080fd5b61308e85612f57565b9350602061309d818701612f57565b93506040860135925060608601356001600160401b03808211156130c057600080fd5b818801915088601f8301126130d457600080fd5b8135818111156130e6576130e6613819565b6130f8601f8201601f19168501613622565b9150808252898482850101111561310e57600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561314157600080fd5b61314a83612f57565b91506020830135801515811461315f57600080fd5b809150509250929050565b6000806040838503121561317d57600080fd5b61318683612f57565b946020939093013593505050565b600080604083850312156131a757600080fd5b82356001600160401b03808211156131be57600080fd5b818501915085601f8301126131d257600080fd5b813560206131e2612f9483613652565b8083825282820191508286018a848660051b890101111561320257600080fd5b600096505b8487101561322c5761321881612f57565b835260019690960195918301918301613207565b509650508601359250508082111561324357600080fd5b5061325085828601612f73565b9150509250929050565b60006020828403121561326c57600080fd5b5035919050565b60006020828403121561328557600080fd5b8135611ab28161382f565b6000602082840312156132a257600080fd5b8151611ab28161382f565b600080602083850312156132c057600080fd5b82356001600160401b03808211156132d757600080fd5b818501915085601f8301126132eb57600080fd5b8135818111156132fa57600080fd5b86602082850101111561330c57600080fd5b60209290920196919550909350505050565b60008060006040848603121561333357600080fd5b8335925060208401356001600160401b038082111561335157600080fd5b818601915086601f83011261336557600080fd5b81358181111561337457600080fd5b8760208260051b850101111561338957600080fd5b6020830194508093505050509250925092565b600081518084526133b481602086016020860161372a565b601f01601f19169290920160200192915050565b600083516133da81846020880161372a565b8351908301906133ee81836020880161372a565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061343a9083018461339c565b9695505050505050565b602081526000611ab2602083018461339c565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526029908201527f696e76616c6964207175616e746974793a20776f756c6420657863656564206d604082015268617820737570706c7960b81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601a908201527f77726f6e6720616d6f756e74206f662065746865722073656e74000000000000604082015260600190565b60208082526035908201527f696e76616c6964207175616e746974793a207a65726f206f722067726561746560408201527472207468616e206d696e7420616c6c6f77616e636560581b606082015260800190565b604051601f8201601f191681016001600160401b038111828210171561364a5761364a613819565b604052919050565b60006001600160401b0382111561366b5761366b613819565b5060051b60200190565b60006001600160801b03808316818516808303821115613697576136976137d7565b01949350505050565b600082198211156136b3576136b36137d7565b500190565b6000826136c7576136c76137ed565b500490565b60008160001904831182151516156136e6576136e66137d7565b500290565b60006001600160801b038381169083168181101561370b5761370b6137d7565b039392505050565b600082821015613725576137256137d7565b500390565b60005b8381101561374557818101518382015260200161372d565b838111156119e65750506000910152565b600081613765576137656137d7565b506000190190565b600181811c9082168061378157607f821691505b602082108114156137a257634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156137bc576137bc6137d7565b5060010190565b6000826137d2576137d26137ed565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461150f57600080fdfea2646970667358221220b9a8fe16488ea13af081d569870d35f697b29f607e0515cea18a04a340831ae964736f6c63430008070033000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000002710

Deployed Bytecode

0x60806040526004361061038c5760003560e01c806380295bf6116101dc578063ccb4807b11610102578063e985e9c5116100a0578063f47c84c51161006f578063f47c84c514610a47578063f4ee6f9c14610a7b578063fab905fa14610a91578063fde32d9f14610abe57600080fd5b8063e985e9c5146109a8578063f14f2a45146109f1578063f2fde38b14610a11578063f3fa925114610a3157600080fd5b8063d7224ba0116100dc578063d7224ba014610943578063dc33e68114610959578063e150795d14610979578063e8a3d4851461099357600080fd5b8063ccb4807b146108f8578063d2d8cb6714610918578063d6793b411461092e57600080fd5b8063a0712d681161017a578063b88d4fde11610149578063b88d4fde1461088c578063bc84b182146108ac578063c6a91b42146108c2578063c87b56dd146108d857600080fd5b8063a0712d6814610817578063a22cb4651461082a578063a5c351fd1461084a578063ac4460021461087757600080fd5b80639231ab2a116101b65780639231ab2a1461078057806392c7e9ab146107cd578063948f62a8146107e257806395d89b411461080257600080fd5b806380295bf61461072c5780638832fedc1461074c5780638da5cb5b1461076257600080fd5b80634b0b5bc1116102c157806364be52871161025f57806372a6b4201161022e57806372a6b4201461069f57806377bab905146106bf5780637a37744a146106ec5780637db1d6841461070c57600080fd5b806364be52871461063457806368df66a61461065457806370a082311461066a578063715018a61461068a57600080fd5b8063513744de1161029b578063513744de146105b557806355f804b3146105d557806359da6871146105f55780636352211e1461061457600080fd5b80634b0b5bc11461055f5780634f4342e2146105755780634f6ccce71461059557600080fd5b80631bbaa8ec1161032e5780632bd1c94e116103085780632bd1c94e146104ec5780632d20fb60146104ff5780632f745c591461051f57806342842e0e1461053f57600080fd5b80631bbaa8ec146104965780631dd737ec146104ac57806323b872dd146104cc57600080fd5b8063081812fc1161036a578063081812fc146103ff578063095ea7b3146104375780630f59c6eb1461045757806318160ddd1461047757600080fd5b806301ffc9a71461039157806304736a56146103c657806306fdde03146103dd575b600080fd5b34801561039d57600080fd5b506103b16103ac366004613273565b610ad1565b60405190151581526020015b60405180910390f35b3480156103d257600080fd5b506103db610b3e565b005b3480156103e957600080fd5b506103f2610b85565b6040516103bd9190613444565b34801561040b57600080fd5b5061041f61041a36600461325a565b610c17565b6040516001600160a01b0390911681526020016103bd565b34801561044357600080fd5b506103db61045236600461316a565b610ca2565b34801561046357600080fd5b506011546103b19062010000900460ff1681565b34801561048357600080fd5b506001545b6040519081526020016103bd565b3480156104a257600080fd5b50610488600a5481565b3480156104b857600080fd5b506103db6104c736600461325a565b610dba565b3480156104d857600080fd5b506103db6104e7366004613033565b610de9565b6103db6104fa36600461331e565b610df4565b34801561050b57600080fd5b506103db61051a36600461325a565b610fe9565b34801561052b57600080fd5b5061048861053a36600461316a565b61104c565b34801561054b57600080fd5b506103db61055a366004613033565b6111c4565b34801561056b57600080fd5b50610488600c5481565b34801561058157600080fd5b506103db61059036600461325a565b6111df565b3480156105a157600080fd5b506104886105b036600461325a565b61120e565b3480156105c157600080fd5b506103db6105d036600461325a565b611277565b3480156105e157600080fd5b506103db6105f03660046132ad565b6112a6565b34801561060157600080fd5b506011546103b190610100900460ff1681565b34801561062057600080fd5b5061041f61062f36600461325a565b6112dc565b34801561064057600080fd5b506103db61064f36600461325a565b6112ee565b34801561066057600080fd5b50610488600d5481565b34801561067657600080fd5b50610488610685366004612fe5565b61131d565b34801561069657600080fd5b506103db6113ae565b3480156106ab57600080fd5b506103db6106ba36600461325a565b6113e4565b3480156106cb57600080fd5b506104886106da366004612fe5565b60146020526000908152604090205481565b3480156106f857600080fd5b506103db61070736600461325a565b611413565b34801561071857600080fd5b506103db61072736600461325a565b611512565b34801561073857600080fd5b506103db610747366004613194565b611541565b34801561075857600080fd5b5061048860125481565b34801561076e57600080fd5b506000546001600160a01b031661041f565b34801561078c57600080fd5b506107a061079b36600461325a565b6115e6565b6040805182516001600160a01b031681526020928301516001600160401b031692810192909252016103bd565b3480156107d957600080fd5b506103db611603565b3480156107ee57600080fd5b506103db6107fd36600461325a565b61164c565b34801561080e57600080fd5b506103f261167b565b6103db61082536600461325a565b61168a565b34801561083657600080fd5b506103db61084536600461312e565b611811565b34801561085657600080fd5b50610488610865366004612fe5565b60156020526000908152604090205481565b34801561088357600080fd5b506103db6118d6565b34801561089857600080fd5b506103db6108a736600461306f565b6119b3565b3480156108b857600080fd5b50610488600b5481565b3480156108ce57600080fd5b5061048860105481565b3480156108e457600080fd5b506103f26108f336600461325a565b6119ec565b34801561090457600080fd5b506103db6109133660046132ad565b611ab9565b34801561092457600080fd5b50610488600f5481565b34801561093a57600080fd5b506103db611aef565b34801561094f57600080fd5b5061048860085481565b34801561096557600080fd5b50610488610974366004612fe5565b611b36565b34801561098557600080fd5b506011546103b19060ff1681565b34801561099f57600080fd5b506103f2611b41565b3480156109b457600080fd5b506103b16109c3366004613000565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156109fd57600080fd5b506103db610a0c36600461325a565b611b50565b348015610a1d57600080fd5b506103db610a2c366004612fe5565b611b7f565b348015610a3d57600080fd5b5061048860135481565b348015610a5357600080fd5b506104887f000000000000000000000000000000000000000000000000000000000000271081565b348015610a8757600080fd5b50610488600e5481565b348015610a9d57600080fd5b50610488610aac366004612fe5565b60166020526000908152604090205481565b6103db610acc36600461331e565b611c17565b60006001600160e01b031982166380ac58cd60e01b1480610b0257506001600160e01b03198216635b5e139f60e01b145b80610b1d57506001600160e01b0319821663780e9d6360e01b145b80610b3857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b03163314610b715760405162461bcd60e51b8152600401610b68906134d7565b60405180910390fd5b6011805460ff19811660ff90911615179055565b606060028054610b949061376d565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc09061376d565b8015610c0d5780601f10610be257610100808354040283529160200191610c0d565b820191906000526020600020905b815481529060010190602001808311610bf057829003601f168201915b5050505050905090565b6000610c24826001541190565b610c865760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610b68565b506000908152600660205260409020546001600160a01b031690565b6000610cad826112dc565b9050806001600160a01b0316836001600160a01b03161415610d1c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610b68565b336001600160a01b0382161480610d385750610d3881336109c3565b610daa5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610b68565b610db5838383611deb565b505050565b6000546001600160a01b03163314610de45760405162461bcd60e51b8152600401610b68906134d7565b600b55565b610db5838383611e47565b323314610e135760405162461bcd60e51b8152600401610b6890613457565b60026009541415610e365760405162461bcd60e51b8152600401610b689061355f565b600260095560115460ff16610e835760405162461bcd60e51b81526020600482015260136024820152724f472073616c65206973206e6f74206c69766560681b6044820152606401610b68565b7f000000000000000000000000000000000000000000000000000000000000271083610eae60015490565b610eb891906136a0565b1115610f145760405162461bcd60e51b815260206004820152602560248201527f6d696e74696e672074686973206d616e7920776f756c642065786365656420736044820152647570706c7960d81b6064820152608401610b68565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610f8e8383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060125491508490506121cd565b610fcb5760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b210383937b7b31760911b6044820152606401610b68565b610fd4846121e3565b610fde33856122de565b505060016009555050565b6000546001600160a01b031633146110135760405162461bcd60e51b8152600401610b68906134d7565b600260095414156110365760405162461bcd60e51b8152600401610b689061355f565b6002600955611044816122fc565b506001600955565b60006110578361131d565b82106110b05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610b68565b60006110bb60015490565b905060008060005b83811015611164576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561111557805192505b876001600160a01b0316836001600160a01b03161415611151578684141561114357509350610b3892505050565b8361114d816137a8565b9450505b508061115c816137a8565b9150506110c3565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610b68565b610db5838383604051806020016040528060008152506119b3565b6000546001600160a01b031633146112095760405162461bcd60e51b8152600401610b68906134d7565b601055565b600061121960015490565b82106112735760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610b68565b5090565b6000546001600160a01b031633146112a15760405162461bcd60e51b8152600401610b68906134d7565b600d55565b6000546001600160a01b031633146112d05760405162461bcd60e51b8152600401610b68906134d7565b610db560188383612ec7565b60006112e7826124e5565b5192915050565b6000546001600160a01b031633146113185760405162461bcd60e51b8152600401610b68906134d7565b600f55565b60006001600160a01b0382166113895760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610b68565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146113d85760405162461bcd60e51b8152600401610b68906134d7565b6113e2600061268e565b565b6000546001600160a01b0316331461140e5760405162461bcd60e51b8152600401610b68906134d7565b601255565b6000546001600160a01b0316331461143d5760405162461bcd60e51b8152600401610b68906134d7565b600a5481111561149a5760405162461bcd60e51b815260206004820152602260248201527f43616e27742072657365727665206d6f7265207468616e2073657420616d6f756044820152611b9d60f21b6064820152608401610b68565b80600a60008282546114ac9190613713565b909155507f00000000000000000000000000000000000000000000000000000000000027109050816114dd60015490565b6114e791906136a0565b11156115055760405162461bcd60e51b8152600401610b689061348e565b61150f33826122de565b50565b6000546001600160a01b0316331461153c5760405162461bcd60e51b8152600401610b68906134d7565b601355565b6000546001600160a01b0316331461156b5760405162461bcd60e51b8152600401610b68906134d7565b60005b8251811015610db55781818151811061158957611589613803565b6020026020010151601460008584815181106115a7576115a7613803565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806115de906137a8565b91505061156e565b6040805180820190915260008082526020820152610b38826124e5565b6000546001600160a01b0316331461162d5760405162461bcd60e51b8152600401610b68906134d7565b6011805462ff0000198116620100009182900460ff1615909102179055565b6000546001600160a01b031633146116765760405162461bcd60e51b8152600401610b68906134d7565b600c55565b606060038054610b949061376d565b3233146116a95760405162461bcd60e51b8152600401610b6890613457565b600260095414156116cc5760405162461bcd60e51b8152600401610b689061355f565b600260095560115462010000900460ff166117295760405162461bcd60e51b815260206004820152601760248201527f7075626c69632073616c65206973206e6f74206c6976650000000000000000006044820152606401610b68565b7f00000000000000000000000000000000000000000000000000000000000027108161175460015490565b61175e91906136a0565b111561177c5760405162461bcd60e51b8152600401610b689061348e565b600b548161178960015490565b61179391906136a0565b11156117fe5760405162461bcd60e51b815260206004820152603460248201527f6d696e74696e672074686973206d616e7920776f756c642065786365656420736044820152737570706c7920666f72207468697320706861736560601b6064820152608401610b68565b611807816126de565b61104433826122de565b6001600160a01b03821633141561186a5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610b68565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146119005760405162461bcd60e51b8152600401610b68906134d7565b600260095414156119235760405162461bcd60e51b8152600401610b689061355f565b6002600955604051600090339047908381818185875af1925050503d806000811461196a576040519150601f19603f3d011682016040523d82523d6000602084013e61196f565b606091505b50509050806110445760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610b68565b6119be848484611e47565b6119ca8484848461278e565b6119e65760405162461bcd60e51b8152600401610b689061350c565b50505050565b60606119f9826001541190565b611a5d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b68565b6000611a6761289c565b90506000815111611a875760405180602001604052806000815250611ab2565b80611a91846128ab565b604051602001611aa29291906133c8565b6040516020818303038152906040525b9392505050565b6000546001600160a01b03163314611ae35760405162461bcd60e51b8152600401610b68906134d7565b610db560178383612ec7565b6000546001600160a01b03163314611b195760405162461bcd60e51b8152600401610b68906134d7565b6011805461ff001981166101009182900460ff1615909102179055565b6000610b38826129a8565b606060178054610b949061376d565b6000546001600160a01b03163314611b7a5760405162461bcd60e51b8152600401610b68906134d7565b600e55565b6000546001600160a01b03163314611ba95760405162461bcd60e51b8152600401610b68906134d7565b6001600160a01b038116611c0e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b68565b61150f8161268e565b323314611c365760405162461bcd60e51b8152600401610b6890613457565b60026009541415611c595760405162461bcd60e51b8152600401610b689061355f565b6002600955601154610100900460ff16611cab5760405162461bcd60e51b8152602060048201526013602482015272574c2073616c65206973206e6f74206c69766560681b6044820152606401610b68565b600b5483611cb860015490565b611cc291906136a0565b1115611d2b5760405162461bcd60e51b815260206004820152603260248201527f6d696e74696e672074686973206d616e7920776f756c642065786365656420736044820152711d5c1c1b1e48199bdc8815d3081c9bdd5b9960721b6064820152608401610b68565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050611da58383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060135491508490506121cd565b611de25760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b210383937b7b31760911b6044820152606401610b68565b610fd484612a46565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611e52826124e5565b80519091506000906001600160a01b0316336001600160a01b03161480611e89575033611e7e84610c17565b6001600160a01b0316145b80611e9b57508151611e9b90336109c3565b905080611f055760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610b68565b846001600160a01b031682600001516001600160a01b031614611f795760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610b68565b6001600160a01b038416611fdd5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610b68565b611fed6000848460000151611deb565b6001600160a01b038516600090815260056020526040812080546001929061201f9084906001600160801b03166136eb565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261206b91859116613675565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556120f28460016136a0565b6000818152600460205260409020549091506001600160a01b03166121835761211c816001541190565b156121835760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6000826121da8584612b79565b14949350505050565b6000811180156122025750336000908152601460205260409020548111155b61221e5760405162461bcd60e51b8152600401610b68906135cd565b80600d5461222c91906136cc565b341461224a5760405162461bcd60e51b8152600401610b6890613596565b336000908152601560205260409020546122659082906136a0565b33600090815260156020818152604080842085905560148252909220549152101561150f5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f74206d696e74206d6f7265207468616e20796f757220616c6c6f77604482015263616e636560e01b6064820152608401610b68565b6122f8828260405180602001604052806000815250612bed565b5050565b6008548161234c5760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610b68565b6000600161235a84846136a0565b6123649190613713565b905061239160017f0000000000000000000000000000000000000000000000000000000000002710613713565b8111156123c6576123c360017f0000000000000000000000000000000000000000000000000000000000002710613713565b90505b6123d1816001541190565b61242c5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610b68565b815b8181116124d1576000818152600460205260409020546001600160a01b03166124bf57600061245c826124e5565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b806124c9816137a8565b91505061242e565b506124dd8160016136a0565b600855505050565b6040805180820190915260008082526020820152612504826001541190565b6125635760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610b68565b60007f000000000000000000000000000000000000000000000000000000000000003283106125c4576125b67f000000000000000000000000000000000000000000000000000000000000003284613713565b6125c19060016136a0565b90505b825b81811061262d576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561261a57949350505050565b508061262581613756565b9150506125c6565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610b68565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000811180156126f057506010548111155b6127625760405162461bcd60e51b815260206004820152603c60248201527f696e76616c6964207175616e746974793a207a65726f206f722067726561746560448201527f72207468616e206d696e7420616c6c6f77616e636520706572207478000000006064820152608401610b68565b80600f5461277091906136cc565b341461150f5760405162461bcd60e51b8152600401610b6890613596565b60006001600160a01b0384163b1561289057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906127d2903390899088908890600401613407565b602060405180830381600087803b1580156127ec57600080fd5b505af192505050801561281c575060408051601f3d908101601f1916820190925261281991810190613290565b60015b612876573d80801561284a576040519150601f19603f3d011682016040523d82523d6000602084013e61284f565b606091505b50805161286e5760405162461bcd60e51b8152600401610b689061350c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612894565b5060015b949350505050565b606060188054610b949061376d565b6060816128cf5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156128f957806128e3816137a8565b91506128f29050600a836136b8565b91506128d3565b6000816001600160401b0381111561291357612913613819565b6040519080825280601f01601f19166020018201604052801561293d576020820181803683370190505b5090505b841561289457612952600183613713565b915061295f600a866137c3565b61296a9060306136a0565b60f81b81838151811061297f5761297f613803565b60200101906001600160f81b031916908160001a9053506129a1600a866136b8565b9450612941565b60006001600160a01b038216612a1a5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610b68565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b600081118015612a585750600c548111155b612a745760405162461bcd60e51b8152600401610b68906135cd565b7f000000000000000000000000000000000000000000000000000000000000271081612a9f60015490565b612aa991906136a0565b1115612ab457600080fd5b80600e54612ac291906136cc565b3414612ae05760405162461bcd60e51b8152600401610b6890613596565b33600090815260166020526040902054612afb9082906136a0565b336000908152601660205260409020819055600c54101561150f5760405162461bcd60e51b815260206004820152603260248201527f43616e6e6f74206d696e74206d6f7265207468616e20796f757220616c6c6f746044820152716d656e7420696e207468697320706861736560701b6064820152608401610b68565b600081815b8451811015612be5576000858281518110612b9b57612b9b613803565b60200260200101519050808311612bc15760008381526020829052604090209250612bd2565b600081815260208490526040902092505b5080612bdd816137a8565b915050612b7e565b509392505050565b6001546001600160a01b038416612c505760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610b68565b612c5b816001541190565b15612ca85760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610b68565b7f0000000000000000000000000000000000000000000000000000000000000032831115612d235760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610b68565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612d7f908790613675565b6001600160801b03168152602001858360200151612d9d9190613675565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612ebc5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612e80600088848861278e565b612e9c5760405162461bcd60e51b8152600401610b689061350c565b81612ea6816137a8565b9250508080612eb4906137a8565b915050612e33565b5060018190556121c5565b828054612ed39061376d565b90600052602060002090601f016020900481019282612ef55760008555612f3b565b82601f10612f0e5782800160ff19823516178555612f3b565b82800160010185558215612f3b579182015b82811115612f3b578235825591602001919060010190612f20565b506112739291505b808211156112735760008155600101612f43565b80356001600160a01b0381168114612f6e57600080fd5b919050565b600082601f830112612f8457600080fd5b81356020612f99612f9483613652565b613622565b80838252828201915082860187848660051b8901011115612fb957600080fd5b60005b85811015612fd857813584529284019290840190600101612fbc565b5090979650505050505050565b600060208284031215612ff757600080fd5b611ab282612f57565b6000806040838503121561301357600080fd5b61301c83612f57565b915061302a60208401612f57565b90509250929050565b60008060006060848603121561304857600080fd5b61305184612f57565b925061305f60208501612f57565b9150604084013590509250925092565b6000806000806080858703121561308557600080fd5b61308e85612f57565b9350602061309d818701612f57565b93506040860135925060608601356001600160401b03808211156130c057600080fd5b818801915088601f8301126130d457600080fd5b8135818111156130e6576130e6613819565b6130f8601f8201601f19168501613622565b9150808252898482850101111561310e57600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561314157600080fd5b61314a83612f57565b91506020830135801515811461315f57600080fd5b809150509250929050565b6000806040838503121561317d57600080fd5b61318683612f57565b946020939093013593505050565b600080604083850312156131a757600080fd5b82356001600160401b03808211156131be57600080fd5b818501915085601f8301126131d257600080fd5b813560206131e2612f9483613652565b8083825282820191508286018a848660051b890101111561320257600080fd5b600096505b8487101561322c5761321881612f57565b835260019690960195918301918301613207565b509650508601359250508082111561324357600080fd5b5061325085828601612f73565b9150509250929050565b60006020828403121561326c57600080fd5b5035919050565b60006020828403121561328557600080fd5b8135611ab28161382f565b6000602082840312156132a257600080fd5b8151611ab28161382f565b600080602083850312156132c057600080fd5b82356001600160401b03808211156132d757600080fd5b818501915085601f8301126132eb57600080fd5b8135818111156132fa57600080fd5b86602082850101111561330c57600080fd5b60209290920196919550909350505050565b60008060006040848603121561333357600080fd5b8335925060208401356001600160401b038082111561335157600080fd5b818601915086601f83011261336557600080fd5b81358181111561337457600080fd5b8760208260051b850101111561338957600080fd5b6020830194508093505050509250925092565b600081518084526133b481602086016020860161372a565b601f01601f19169290920160200192915050565b600083516133da81846020880161372a565b8351908301906133ee81836020880161372a565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061343a9083018461339c565b9695505050505050565b602081526000611ab2602083018461339c565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526029908201527f696e76616c6964207175616e746974793a20776f756c6420657863656564206d604082015268617820737570706c7960b81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601a908201527f77726f6e6720616d6f756e74206f662065746865722073656e74000000000000604082015260600190565b60208082526035908201527f696e76616c6964207175616e746974793a207a65726f206f722067726561746560408201527472207468616e206d696e7420616c6c6f77616e636560581b606082015260800190565b604051601f8201601f191681016001600160401b038111828210171561364a5761364a613819565b604052919050565b60006001600160401b0382111561366b5761366b613819565b5060051b60200190565b60006001600160801b03808316818516808303821115613697576136976137d7565b01949350505050565b600082198211156136b3576136b36137d7565b500190565b6000826136c7576136c76137ed565b500490565b60008160001904831182151516156136e6576136e66137d7565b500290565b60006001600160801b038381169083168181101561370b5761370b6137d7565b039392505050565b600082821015613725576137256137d7565b500390565b60005b8381101561374557818101518382015260200161372d565b838111156119e65750506000910152565b600081613765576137656137d7565b506000190190565b600181811c9082168061378157607f821691505b602082108114156137a257634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156137bc576137bc6137d7565b5060010190565b6000826137d2576137d26137ed565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461150f57600080fdfea2646970667358221220b9a8fe16488ea13af081d569870d35f697b29f607e0515cea18a04a340831ae964736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000002710

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 50
Arg [1] : collectionSize_ (uint256): 10000
Arg [2] : maxTOKENS_ (uint256): 10000

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [2] : 0000000000000000000000000000000000000000000000000000000000002710


Deployed Bytecode Sourcemap

45089:8174:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32769:370;;;;;;;;;;-1:-1:-1;32769:370:0;;;;;:::i;:::-;;:::i;:::-;;;8790:14:1;;8783:22;8765:41;;8753:2;8738:18;32769:370:0;;;;;;;;50636:76;;;;;;;;;;;;;:::i;:::-;;34495:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36028:204::-;;;;;;;;;;-1:-1:-1;36028:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8088:32:1;;;8070:51;;8058:2;8043:18;36028:204:0;7924:203:1;35591:379:0;;;;;;;;;;-1:-1:-1;35591:379:0;;;;;:::i;:::-;;:::i;46116:30::-;;;;;;;;;;-1:-1:-1;46116:30:0;;;;;;;;;;;31330:94;;;;;;;;;;-1:-1:-1;31406:12:0;;31330:94;;;8963:25:1;;;8951:2;8936:18;31330:94:0;8817:177:1;45328:46:0;;;;;;;;;;;;;;;;52006:130;;;;;;;;;;-1:-1:-1;52006:130:0;;;;;:::i;:::-;;:::i;36878:142::-;;;;;;;;;;-1:-1:-1;36878:142:0;;;;;:::i;:::-;;:::i;47273:511::-;;;;;;:::i;:::-;;:::i;51016:118::-;;;;;;;;;;-1:-1:-1;51016:118:0;;;;;:::i;:::-;;:::i;31961:744::-;;;;;;;;;;-1:-1:-1;31961:744:0;;;;;:::i;:::-;;:::i;37083:157::-;;;;;;;;;;-1:-1:-1;37083:157:0;;;;;:::i;:::-;;:::i;45648:45::-;;;;;;;;;;;;;;;;52316:126;;;;;;;;;;-1:-1:-1;52316:126:0;;;;;:::i;:::-;;:::i;31493:177::-;;;;;;;;;;-1:-1:-1;31493:177:0;;;;;:::i;:::-;;:::i;52450:118::-;;;;;;;;;;-1:-1:-1;52450:118:0;;;;;:::i;:::-;;:::i;51319:100::-;;;;;;;;;;-1:-1:-1;51319:100:0;;;;;:::i;:::-;;:::i;46083:26::-;;;;;;;;;;-1:-1:-1;46083:26:0;;;;;;;;;;;34318:118;;;;;;;;;;-1:-1:-1;34318:118:0;;;;;:::i;:::-;;:::i;52702:106::-;;;;;;;;;;-1:-1:-1;52702:106:0;;;;;:::i;:::-;;:::i;45748:42::-;;;;;;;;;;;;;;;;33195:211;;;;;;;;;;-1:-1:-1;33195:211:0;;;;;:::i;:::-;;:::i;25474:103::-;;;;;;;;;;;;;:::i;51428:104::-;;;;;;;;;;-1:-1:-1;51428:104:0;;;;;:::i;:::-;;:::i;46363:50::-;;;;;;;;;;-1:-1:-1;46363:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;50263:365;;;;;;;;;;-1:-1:-1;50263:365:0;;;;;:::i;:::-;;:::i;51651:104::-;;;;;;;;;;-1:-1:-1;51651:104:0;;;;;:::i;:::-;;:::i;51813:183::-;;;;;;;;;;-1:-1:-1;51813:183:0;;;;;:::i;:::-;;:::i;46184:27::-;;;;;;;;;;;;;;;;24823:87;;;;;;;;;;-1:-1:-1;24869:7:0;24896:6;-1:-1:-1;;;;;24896:6:0;24823:87;;52924:147;;;;;;;;;;-1:-1:-1;52924:147:0;;;;;:::i;:::-;;:::i;:::-;;;;25233:13:1;;-1:-1:-1;;;;;25229:39:1;25211:58;;25329:4;25317:17;;;25311:24;-1:-1:-1;;;;;25307:49:1;25285:20;;;25278:79;;;;25184:18;52924:147:0;25003:360:1;50804:89:0;;;;;;;;;;;;;:::i;52144:162::-;;;;;;;;;;-1:-1:-1;52144:162:0;;;;;:::i;:::-;;:::i;34650:98::-;;;;;;;;;;;;;:::i;49476:449::-;;;;;;:::i;:::-;;:::i;36296:274::-;;;;;;;;;;-1:-1:-1;36296:274:0;;;;;:::i;:::-;;:::i;46476:44::-;;;;;;;;;;-1:-1:-1;46476:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;53077:181;;;;;;;;;;;;;:::i;37303:311::-;;;;;;;;;;-1:-1:-1;37303:311:0;;;;;:::i;:::-;;:::i;45544:37::-;;;;;;;;;;;;;;;;46005:36;;;;;;;;;;;;;;;;34811:402;;;;;;;;;;-1:-1:-1;34811:402:0;;;;;:::i;:::-;;:::i;51542:99::-;;;;;;;;;;-1:-1:-1;51542:99:0;;;;;:::i;:::-;;:::i;45912:39::-;;;;;;;;;;;;;;;;50720:76;;;;;;;;;;;;;:::i;41718:43::-;;;;;;;;;;;;;;;;50901:107;;;;;;;;;;-1:-1:-1;50901:107:0;;;;;:::i;:::-;;:::i;46050:26::-;;;;;;;;;;-1:-1:-1;46050:26:0;;;;;;;;52817:91;;;;;;;;;;;;;:::i;36633:186::-;;;;;;;;;;-1:-1:-1;36633:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;36778:25:0;;;36755:4;36778:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36633:186;52576:118;;;;;;;;;;-1:-1:-1;52576:118:0;;;;;:::i;:::-;;:::i;25732:201::-;;;;;;;;;;-1:-1:-1;25732:201:0;;;;;:::i;:::-;;:::i;46254:27::-;;;;;;;;;;;;;;;;45448:35;;;;;;;;;;;;;;;45837:42;;;;;;;;;;;;;;;;46583:44;;;;;;;;;;-1:-1:-1;46583:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;48346:545;;;;;;:::i;:::-;;:::i;32769:370::-;32896:4;-1:-1:-1;;;;;;32926:40:0;;-1:-1:-1;;;32926:40:0;;:99;;-1:-1:-1;;;;;;;32977:48:0;;-1:-1:-1;;;32977:48:0;32926:99;:160;;;-1:-1:-1;;;;;;;33036:50:0;;-1:-1:-1;;;33036:50:0;32926:160;:207;;;-1:-1:-1;;;;;;;;;;11545:40:0;;;33097:36;32912:221;32769:370;-1:-1:-1;;32769:370:0:o;50636:76::-;24869:7;24896:6;-1:-1:-1;;;;;24896:6:0;23627:10;25043:23;25035:68;;;;-1:-1:-1;;;25035:68:0;;;;;;;:::i;:::-;;;;;;;;;50698:6:::1;::::0;;-1:-1:-1;;50688:16:0;::::1;50698:6;::::0;;::::1;50697:7;50688:16;::::0;;50636:76::o;34495:94::-;34549:13;34578:5;34571:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34495:94;:::o;36028:204::-;36096:7;36120:16;36128:7;37940:12;;-1:-1:-1;37930:22:0;37853:105;36120:16;36112:74;;;;-1:-1:-1;;;36112:74:0;;24388:2:1;36112:74:0;;;24370:21:1;24427:2;24407:18;;;24400:30;24466:34;24446:18;;;24439:62;-1:-1:-1;;;24517:18:1;;;24510:43;24570:19;;36112:74:0;24186:409:1;36112:74:0;-1:-1:-1;36202:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36202:24:0;;36028:204::o;35591:379::-;35660:13;35676:24;35692:7;35676:15;:24::i;:::-;35660:40;;35721:5;-1:-1:-1;;;;;35715:11:0;:2;-1:-1:-1;;;;;35715:11:0;;;35707:58;;;;-1:-1:-1;;;35707:58:0;;18965:2:1;35707:58:0;;;18947:21:1;19004:2;18984:18;;;18977:30;19043:34;19023:18;;;19016:62;-1:-1:-1;;;19094:18:1;;;19087:32;19136:19;;35707:58:0;18763:398:1;35707:58:0;23627:10;-1:-1:-1;;;;;35790:21:0;;;;:62;;-1:-1:-1;35815:37:0;35832:5;23627:10;36633:186;:::i;35815:37::-;35774:153;;;;-1:-1:-1;;;35774:153:0;;13425:2:1;35774:153:0;;;13407:21:1;13464:2;13444:18;;;13437:30;13503:34;13483:18;;;13476:62;13574:27;13554:18;;;13547:55;13619:19;;35774:153:0;13223:421:1;35774:153:0;35936:28;35945:2;35949:7;35958:5;35936:8;:28::i;:::-;35653:317;35591:379;;:::o;52006:130::-;24869:7;24896:6;-1:-1:-1;;;;;24896:6:0;23627:10;25043:23;25035:68;;;;-1:-1:-1;;;25035:68:0;;;;;;;:::i;:::-;52090:17:::1;:38:::0;52006:130::o;36878:142::-;36986:28;36996:4;37002:2;37006:7;36986:9;:28::i;47273:511::-;47100:9;47113:10;47100:23;47092:66;;;;-1:-1:-1;;;47092:66:0;;;;;;;:::i;:::-;28103:1:::1;28701:7;;:19;;28693:63;;;;-1:-1:-1::0;;;28693:63:0::1;;;;;;;:::i;:::-;28103:1;28834:7;:18:::0;47404:6:::2;::::0;::::2;;47396:38;;;::::0;-1:-1:-1;;;47396:38:0;;20491:2:1;47396:38:0::2;::::0;::::2;20473:21:1::0;20530:2;20510:18;;;20503:30;-1:-1:-1;;;20549:18:1;;;20542:49;20608:18;;47396:38:0::2;20289:343:1::0;47396:38:0::2;47481:10;47469:8;47453:13;31406:12:::0;;;31330:94;47453:13:::2;:24;;;;:::i;:::-;:38;;47445:88;;;::::0;-1:-1:-1;;;47445:88:0;;17021:2:1;47445:88:0::2;::::0;::::2;17003:21:1::0;17060:2;17040:18;;;17033:30;17099:34;17079:18;;;17072:62;-1:-1:-1;;;17150:18:1;;;17143:35;17195:19;;47445:88:0::2;16819:401:1::0;47445:88:0::2;47569:28;::::0;-1:-1:-1;;47586:10:0::2;6987:2:1::0;6983:15;6979:53;47569:28:0::2;::::0;::::2;6967:66:1::0;47544:12:0::2;::::0;7049::1;;47569:28:0::2;;;;;;;;;;;;47559:39;;;;;;47544:54;;47617:53;47636:13;;47617:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;47651:12:0::2;::::0;;-1:-1:-1;47665:4:0;;-1:-1:-1;47617:18:0::2;:53::i;:::-;47609:80;;;::::0;-1:-1:-1;;;47609:80:0;;21670:2:1;47609:80:0::2;::::0;::::2;21652:21:1::0;21709:2;21689:18;;;21682:30;-1:-1:-1;;;21728:18:1;;;21721:44;21782:18;;47609:80:0::2;21468:338:1::0;47609:80:0::2;47700:34;47725:8;47700:24;:34::i;:::-;47745:31;47755:10;47767:8;47745:9;:31::i;:::-;-1:-1:-1::0;;28059:1:0::1;29013:7;:22:::0;-1:-1:-1;;47273:511:0:o;51016:118::-;24869:7;24896:6;-1:-1:-1;;;;;24896:6:0;23627:10;25043:23;25035:68;;;;-1:-1:-1;;;25035:68:0;;;;;;;:::i;:::-;28103:1:::1;28701:7;;:19;;28693:63;;;;-1:-1:-1::0;;;28693:63:0::1;;;;;;;:::i;:::-;28103:1;28834:7;:18:::0;51100:28:::2;51119:8:::0;51100:18:::2;:28::i;:::-;-1:-1:-1::0;28059:1:0::1;29013:7;:22:::0;51016:118::o;31961:744::-;32070:7;32105:16;32115:5;32105:9;:16::i;:::-;32097:5;:24;32089:71;;;;-1:-1:-1;;;32089:71:0;;9425:2:1;32089:71:0;;;9407:21:1;9464:2;9444:18;;;9437:30;9503:34;9483:18;;;9476:62;-1:-1:-1;;;9554:18:1;;;9547:32;9596:19;;32089:71:0;9223:398:1;32089:71:0;32167:22;32192:13;31406:12;;;31330:94;32192:13;32167:38;;32212:19;32242:25;32292:9;32287:350;32311:14;32307:1;:18;32287:350;;;32341:31;32375:14;;;:11;:14;;;;;;;;;32341:48;;;;;;;;;-1:-1:-1;;;;;32341:48:0;;;;;-1:-1:-1;;;32341:48:0;;;-1:-1:-1;;;;;32341:48:0;;;;;;;;32402:28;32398:89;;32463:14;;;-1:-1:-1;32398:89:0;32520:5;-1:-1:-1;;;;;32499:26:0;:17;-1:-1:-1;;;;;32499:26:0;;32495:135;;;32557:5;32542:11;:20;32538:59;;;-1:-1:-1;32584:1:0;-1:-1:-1;32577:8:0;;-1:-1:-1;;;32577:8:0;32538:59;32607:13;;;;:::i;:::-;;;;32495:135;-1:-1:-1;32327:3:0;;;;:::i;:::-;;;;32287:350;;;-1:-1:-1;32643:56:0;;-1:-1:-1;;;32643:56:0;;22013:2:1;32643:56:0;;;21995:21:1;22052:2;22032:18;;;22025:30;22091:34;22071:18;;;22064:62;-1:-1:-1;;;22142:18:1;;;22135:44;22196:19;;32643:56:0;21811:410:1;37083:157:0;37195:39;37212:4;37218:2;37222:7;37195:39;;;;;;;;;;;;:16;:39::i;52316:126::-;24869:7;24896:6;-1:-1:-1;;;;;24896:6:0;23627:10;25043:23;25035:68;;;;-1:-1:-1;;;25035:68:0;;;;;;;:::i;:::-;52398:16:::1;:36:::0;52316:126::o;31493:177::-;31560:7;31592:13;31406:12;;;31330:94;31592:13;31584:5;:21;31576:69;;;;-1:-1:-1;;;31576:69:0;;11838:2:1;31576:69:0;;;11820:21:1;11877:2;11857:18;;;11850:30;11916:34;11896:18;;;11889:62;-1:-1:-1;;;11967:18:1;;;11960:33;12010:19;;31576:69:0;11636:399:1;31576:69:0;-1:-1:-1;31659:5:0;31493:177::o;52450:118::-;24869:7;24896:6;-1:-1:-1;;;;;24896:6:0;23627:10;25043:23;25035:68;;;;-1:-1:-1;;;25035:68:0;;;;;;;:::i;:::-;52528:14:::1;:32:::0;52450:118::o;51319:100::-;24869:7;24896:6;-1:-1:-1;;;;;24896:6:0;23627:10;25043:23;25035:68;;;;-1:-1:-1;;;25035:68:0;;;;;;;:::i;:::-;51390:23:::1;:13;51406:7:::0;;51390:23:::1;:::i;34318:118::-:0;34382:7;34405:20;34417:7;34405:11;:20::i;:::-;:25;;34318:118;-1:-1:-1;;34318:118:0:o;52702:106::-;24869:7;24896:6;-1:-1:-1;;;;;24896:6:0;23627:10;25043:23;25035:68;;;;-1:-1:-1;;;25035:68:0;;;;;;;:::i;:::-;52774:11:::1;:26:::0;52702:106::o;33195:211::-;33259:7;-1:-1:-1;;;;;33283:19:0;;33275:75;;;;-1:-1:-1;;;33275:75:0;;15019:2:1;33275:75:0;;;15001:21:1;15058:2;15038:18;;;15031:30;15097:34;15077:18;;;15070:62;-1:-1:-1;;;15148:18:1;;;15141:41;15199:19;;33275:75:0;14817:407:1;33275:75:0;-1:-1:-1;;;;;;33372:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;33372:27:0;;33195:211::o;25474:103::-;24869:7;24896:6;-1:-1:-1;;;;;24896:6:0;23627:10;25043:23;25035:68;;;;-1:-1:-1;;;25035:68:0;;;;;;;:::i;:::-;25539:30:::1;25566:1;25539:18;:30::i;:::-;25474:103::o:0;51428:104::-;24869:7;24896:6;-1:-1:-1;;;;;24896:6:0;23627:10;25043:23;25035:68;;;;-1:-1:-1;;;25035:68:0;;;;;;;:::i;:::-;51498:12:::1;:26:::0;51428:104::o;50263:365::-;24869:7;24896:6;-1:-1:-1;;;;;24896:6:0;23627:10;25043:23;25035:68;;;;-1:-1:-1;;;25035:68:0;;;;;;;:::i;:::-;50362:25:::1;;50350:8;:37;;50342:85;;;::::0;-1:-1:-1;;;50342:85:0;;16257:2:1;50342:85:0::1;::::0;::::1;16239:21:1::0;16296:2;16276:18;;;16269:30;16335:34;16315:18;;;16308:62;-1:-1:-1;;;16386:18:1;;;16379:32;16428:19;;50342:85:0::1;16055:398:1::0;50342:85:0::1;50467:8;50438:25;;:37;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;50522:10:0::1;::::0;-1:-1:-1;50510:8:0;50494:13:::1;31406:12:::0;;;31330:94;50494:13:::1;:24;;;;:::i;:::-;:38;;50486:92;;;;-1:-1:-1::0;;;50486:92:0::1;;;;;;;:::i;:::-;50589:31;50599:10;50611:8;50589:9;:31::i;:::-;50263:365:::0;:::o;51651:104::-;24869:7;24896:6;-1:-1:-1;;;;;24896:6:0;23627:10;25043:23;25035:68;;;;-1:-1:-1;;;25035:68:0;;;;;;;:::i;:::-;51721:12:::1;:26:::0;51651:104::o;51813:183::-;24869:7;24896:6;-1:-1:-1;;;;;24896:6:0;23627:10;25043:23;25035:68;;;;-1:-1:-1;;;25035:68:0;;;;;;;:::i;:::-;51912:9:::1;51908:83;51927:2;:9;51923:1;:13;51908:83;;;51973:7;51981:1;51973:10;;;;;;;;:::i;:::-;;;;;;;51949:14;:21;51964:2;51967:1;51964:5;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;51949:21:0::1;-1:-1:-1::0;;;;;51949:21:0::1;;;;;;;;;;;;:34;;;;51938:3;;;;;:::i;:::-;;;;51908:83;;52924:147:::0;-1:-1:-1;;;;;;;;;;;;;;;;;53045:20:0;53057:7;53045:11;:20::i;50804:89::-;24869:7;24896:6;-1:-1:-1;;;;;24896:6:0;23627:10;25043:23;25035:68;;;;-1:-1:-1;;;25035:68:0;;;;;;;:::i;:::-;50875:10:::1;::::0;;-1:-1:-1;;50861:24:0;::::1;50875:10:::0;;;;::::1;;;50874:11;50861:24:::0;;::::1;;::::0;;50804:89::o;52144:162::-;24869:7;24896:6;-1:-1:-1;;;;;24896:6:0;23627:10;25043:23;25035:68;;;;-1:-1:-1;;;25035:68:0;;;;;;;:::i;:::-;52244:25:::1;:54:::0;52144:162::o;34650:98::-;34706:13;34735:7;34728:14;;;;;:::i;49476:449::-;47100:9;47113:10;47100:23;47092:66;;;;-1:-1:-1;;;47092:66:0;;;;;;;:::i;:::-;28103:1:::1;28701:7;;:19;;28693:63;;;;-1:-1:-1::0;;;28693:63:0::1;;;;;;;:::i;:::-;28103:1;28834:7;:18:::0;49570:10:::2;::::0;;;::::2;;;49562:46;;;::::0;-1:-1:-1;;;49562:46:0;;9828:2:1;49562:46:0::2;::::0;::::2;9810:21:1::0;9867:2;9847:18;;;9840:30;9906:25;9886:18;;;9879:53;9949:18;;49562:46:0::2;9626:347:1::0;49562:46:0::2;49655:10;49643:8;49627:13;31406:12:::0;;;31330:94;49627:13:::2;:24;;;;:::i;:::-;:38;;49619:92;;;;-1:-1:-1::0;;;49619:92:0::2;;;;;;;:::i;:::-;49758:17;;49746:8;49730:13;31406:12:::0;;;31330:94;49730:13:::2;:24;;;;:::i;:::-;:45;;49722:110;;;::::0;-1:-1:-1;;;49722:110:0;;11417:2:1;49722:110:0::2;::::0;::::2;11399:21:1::0;11456:2;11436:18;;;11429:30;11495:34;11475:18;;;11468:62;-1:-1:-1;;;11546:18:1;;;11539:50;11606:19;;49722:110:0::2;11215:416:1::0;49722:110:0::2;49843:32;49866:8;49843:22;:32::i;:::-;49886:31;49896:10;49908:8;49886:9;:31::i;36296:274::-:0;-1:-1:-1;;;;;36387:24:0;;23627:10;36387:24;;36379:63;;;;-1:-1:-1;;;36379:63:0;;17843:2:1;36379:63:0;;;17825:21:1;17882:2;17862:18;;;17855:30;17921:28;17901:18;;;17894:56;17967:18;;36379:63:0;17641:350:1;36379:63:0;23627:10;36451:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;36451:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;36451:53:0;;;;;;;;;;36516:48;;8765:41:1;;;36451:42:0;;23627:10;36516:48;;8738:18:1;36516:48:0;;;;;;;36296:274;;:::o;53077:181::-;24869:7;24896:6;-1:-1:-1;;;;;24896:6:0;23627:10;25043:23;25035:68;;;;-1:-1:-1;;;25035:68:0;;;;;;;:::i;:::-;28103:1:::1;28701:7;;:19;;28693:63;;;;-1:-1:-1::0;;;28693:63:0::1;;;;;;;:::i;:::-;28103:1;28834:7;:18:::0;53160:49:::2;::::0;53142:12:::2;::::0;53160:10:::2;::::0;53183:21:::2;::::0;53142:12;53160:49;53142:12;53160:49;53183:21;53160:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53141:68;;;53224:7;53216:36;;;::::0;-1:-1:-1;;;53216:36:0;;19368:2:1;53216:36:0::2;::::0;::::2;19350:21:1::0;19407:2;19387:18;;;19380:30;-1:-1:-1;;;19426:18:1;;;19419:46;19482:18;;53216:36:0::2;19166:340:1::0;37303:311:0;37440:28;37450:4;37456:2;37460:7;37440:9;:28::i;:::-;37491:48;37514:4;37520:2;37524:7;37533:5;37491:22;:48::i;:::-;37475:133;;;;-1:-1:-1;;;37475:133:0;;;;;;;:::i;:::-;37303:311;;;;:::o;34811:402::-;34909:13;34950:16;34958:7;37940:12;;-1:-1:-1;37930:22:0;37853:105;34950:16;34934:97;;;;-1:-1:-1;;;34934:97:0;;17427:2:1;34934:97:0;;;17409:21:1;17466:2;17446:18;;;17439:30;17505:34;17485:18;;;17478:62;-1:-1:-1;;;17556:18:1;;;17549:45;17611:19;;34934:97:0;17225:411:1;34934:97:0;35040:21;35064:10;:8;:10::i;:::-;35040:34;;35119:1;35101:7;35095:21;:25;:112;;;;;;;;;;;;;;;;;35156:7;35165:18;:7;:16;:18::i;:::-;35139:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35095:112;35081:126;34811:402;-1:-1:-1;;;34811:402:0:o;51542:99::-;24869:7;24896:6;-1:-1:-1;;;;;24896:6:0;23627:10;25043:23;25035:68;;;;-1:-1:-1;;;25035:68:0;;;;;;;:::i;:::-;51614:21:::1;:12;51629:6:::0;;51614:21:::1;:::i;50720:76::-:0;24869:7;24896:6;-1:-1:-1;;;;;24896:6:0;23627:10;25043:23;25035:68;;;;-1:-1:-1;;;25035:68:0;;;;;;;:::i;:::-;50782:6:::1;::::0;;-1:-1:-1;;50772:16:0;::::1;50782:6;::::0;;;::::1;;;50781:7;50772:16:::0;;::::1;;::::0;;50720:76::o;50901:107::-;50959:7;50982:20;50996:5;50982:13;:20::i;52817:91::-;52861:13;52890:12;52883:19;;;;;:::i;52576:118::-;24869:7;24896:6;-1:-1:-1;;;;;24896:6:0;23627:10;25043:23;25035:68;;;;-1:-1:-1;;;25035:68:0;;;;;;;:::i;:::-;52654:14:::1;:32:::0;52576:118::o;25732:201::-;24869:7;24896:6;-1:-1:-1;;;;;24896:6:0;23627:10;25043:23;25035:68;;;;-1:-1:-1;;;25035:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25821:22:0;::::1;25813:73;;;::::0;-1:-1:-1;;;25813:73:0;;10180:2:1;25813:73:0::1;::::0;::::1;10162:21:1::0;10219:2;10199:18;;;10192:30;10258:34;10238:18;;;10231:62;-1:-1:-1;;;10309:18:1;;;10302:36;10355:19;;25813:73:0::1;9978:402:1::0;25813:73:0::1;25897:28;25916:8;25897:18;:28::i;48346:545::-:0;47100:9;47113:10;47100:23;47092:66;;;;-1:-1:-1;;;47092:66:0;;;;;;;:::i;:::-;28103:1:::1;28701:7;;:19;;28693:63;;;;-1:-1:-1::0;;;28693:63:0::1;;;;;;;:::i;:::-;28103:1;28834:7;:18:::0;48484:6:::2;::::0;::::2;::::0;::::2;;;48476:38;;;::::0;-1:-1:-1;;;48476:38:0;;18617:2:1;48476:38:0::2;::::0;::::2;18599:21:1::0;18656:2;18636:18;;;18629:30;-1:-1:-1;;;18675:18:1;;;18668:49;18734:18;;48476:38:0::2;18415:343:1::0;48476:38:0::2;48561:17;;48549:8;48533:13;31406:12:::0;;;31330:94;48533:13:::2;:24;;;;:::i;:::-;:45;;48525:108;;;::::0;-1:-1:-1;;;48525:108:0;;15431:2:1;48525:108:0::2;::::0;::::2;15413:21:1::0;15470:2;15450:18;;;15443:30;15509:34;15489:18;;;15482:62;-1:-1:-1;;;15560:18:1;;;15553:48;15618:19;;48525:108:0::2;15229:414:1::0;48525:108:0::2;48669:28;::::0;-1:-1:-1;;48686:10:0::2;6987:2:1::0;6983:15;6979:53;48669:28:0::2;::::0;::::2;6967:66:1::0;48644:12:0::2;::::0;7049::1;;48669:28:0::2;;;;;;;;;;;;48659:39;;;;;;48644:54;;48717:57;48736:17;;48717:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;48755:12:0::2;::::0;;-1:-1:-1;48769:4:0;;-1:-1:-1;48717:18:0::2;:57::i;:::-;48709:84;;;::::0;-1:-1:-1;;;48709:84:0;;21670:2:1;48709:84:0::2;::::0;::::2;21652:21:1::0;21709:2;21689:18;;;21682:30;-1:-1:-1;;;21728:18:1;;;21721:44;21782:18;;48709:84:0::2;21468:338:1::0;48709:84:0::2;48804:37;48832:8;48804:27;:37::i;41540:172::-:0;41637:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41637:29:0;-1:-1:-1;;;;;41637:29:0;;;;;;;;;41678:28;;41637:24;;41678:28;;;;;;;41540:172;;;:::o;39905:1529::-;40002:35;40040:20;40052:7;40040:11;:20::i;:::-;40111:18;;40002:58;;-1:-1:-1;40069:22:0;;-1:-1:-1;;;;;40095:34:0;23627:10;-1:-1:-1;;;;;40095:34:0;;:81;;;-1:-1:-1;23627:10:0;40140:20;40152:7;40140:11;:20::i;:::-;-1:-1:-1;;;;;40140:36:0;;40095:81;:142;;;-1:-1:-1;40204:18:0;;40187:50;;23627:10;36633:186;:::i;40187:50::-;40069:169;;40263:17;40247:101;;;;-1:-1:-1;;;40247:101:0;;18198:2:1;40247:101:0;;;18180:21:1;18237:2;18217:18;;;18210:30;18276:34;18256:18;;;18249:62;-1:-1:-1;;;18327:18:1;;;18320:48;18385:19;;40247:101:0;17996:414:1;40247:101:0;40395:4;-1:-1:-1;;;;;40373:26:0;:13;:18;;;-1:-1:-1;;;;;40373:26:0;;40357:98;;;;-1:-1:-1;;;40357:98:0;;15850:2:1;40357:98:0;;;15832:21:1;15889:2;15869:18;;;15862:30;15928:34;15908:18;;;15901:62;-1:-1:-1;;;15979:18:1;;;15972:36;16025:19;;40357:98:0;15648:402:1;40357:98:0;-1:-1:-1;;;;;40470:16:0;;40462:66;;;;-1:-1:-1;;;40462:66:0;;12242:2:1;40462:66:0;;;12224:21:1;12281:2;12261:18;;;12254:30;12320:34;12300:18;;;12293:62;-1:-1:-1;;;12371:18:1;;;12364:35;12416:19;;40462:66:0;12040:401:1;40462:66:0;40637:49;40654:1;40658:7;40667:13;:18;;;40637:8;:49::i;:::-;-1:-1:-1;;;;;40695:18:0;;;;;;:12;:18;;;;;:31;;40725:1;;40695:18;:31;;40725:1;;-1:-1:-1;;;;;40695:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;40695:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;40733:16:0;;-1:-1:-1;40733:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;40733:16:0;;:29;;-1:-1:-1;;40733:29:0;;:::i;:::-;;;-1:-1:-1;;;;;40733:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40792:43:0;;;;;;;;-1:-1:-1;;;;;40792:43:0;;;;;-1:-1:-1;;;;;40818:15:0;40792:43;;;;;;;;;-1:-1:-1;40769:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;40769:66:0;-1:-1:-1;;;;;;40769:66:0;;;;;;;;;;;41085:11;40781:7;-1:-1:-1;41085:11:0;:::i;:::-;41148:1;41107:24;;;:11;:24;;;;;:29;41063:33;;-1:-1:-1;;;;;;41107:29:0;41103:236;;41165:20;41173:11;37940:12;;-1:-1:-1;37930:22:0;37853:105;41165:20;41161:171;;;41225:97;;;;;;;;41252:18;;-1:-1:-1;;;;;41225:97:0;;;;;;41283:28;;;;-1:-1:-1;;;;;41225:97:0;;;;;;;;;-1:-1:-1;41198:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;41198:124:0;-1:-1:-1;;;;;;41198:124:0;;;;;;;;;;;;41161:171;41371:7;41367:2;-1:-1:-1;;;;;41352:27:0;41361:4;-1:-1:-1;;;;;41352:27:0;;;;;;;;;;;41386:42;39995:1439;;;39905:1529;;;:::o;21402:190::-;21527:4;21580;21551:25;21564:5;21571:4;21551:12;:25::i;:::-;:33;;21402:190;-1:-1:-1;;;;21402:190:0:o;47792:468::-;47883:1;47872:8;:12;:54;;;;-1:-1:-1;47915:10:0;47900:26;;;;:14;:26;;;;;;47888:38;;;47872:54;47864:120;;;;-1:-1:-1;;;47864:120:0;;;;;;;:::i;:::-;48033:8;48016:14;;:25;;;;:::i;:::-;48003:9;:38;47995:77;;;;-1:-1:-1;;;47995:77:0;;;;;;;:::i;:::-;48121:10;48109:23;;;;:11;:23;;;;;;:34;;48135:8;;48109:34;:::i;:::-;48095:10;48083:23;;;;:11;:23;;;;;;;;:60;;;48189:14;:26;;;;;;48162:23;;-1:-1:-1;48162:53:0;48154:102;;;;-1:-1:-1;;;48154:102:0;;14204:2:1;48154:102:0;;;14186:21:1;14243:2;14223:18;;;14216:30;14282:34;14262:18;;;14255:62;-1:-1:-1;;;14333:18:1;;;14326:34;14377:19;;48154:102:0;14002:400:1;37964:98:0;38029:27;38039:2;38043:8;38029:27;;;;;;;;;;;;:9;:27::i;:::-;37964:98;;:::o;41866:846::-;41956:24;;41995:12;41987:49;;;;-1:-1:-1;;;41987:49:0;;13851:2:1;41987:49:0;;;13833:21:1;13890:2;13870:18;;;13863:30;13929:26;13909:18;;;13902:54;13973:18;;41987:49:0;13649:348:1;41987:49:0;42043:16;42093:1;42062:28;42082:8;42062:17;:28;:::i;:::-;:32;;;;:::i;:::-;42043:51;-1:-1:-1;42116:18:0;42133:1;42116:14;:18;:::i;:::-;42105:8;:29;42101:81;;;42156:18;42173:1;42156:14;:18;:::i;:::-;42145:29;;42101:81;42297:17;42305:8;37940:12;;-1:-1:-1;37930:22:0;37853:105;42297:17;42289:68;;;;-1:-1:-1;;;42289:68:0;;22428:2:1;42289:68:0;;;22410:21:1;22467:2;22447:18;;;22440:30;22506:34;22486:18;;;22479:62;-1:-1:-1;;;22557:18:1;;;22550:36;22603:19;;42289:68:0;22226:402:1;42289:68:0;42381:17;42364:297;42405:8;42400:1;:13;42364:297;;42464:1;42433:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;42433:19:0;42429:225;;42479:31;42513:14;42525:1;42513:11;:14::i;:::-;42555:89;;;;;;;;42582:14;;-1:-1:-1;;;;;42555:89:0;;;;;;42609:24;;;;-1:-1:-1;;;;;42555:89:0;;;;;;;;;-1:-1:-1;42538:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;42538:106:0;-1:-1:-1;;;;;;42538:106:0;;;;;;;;;;;;-1:-1:-1;42429:225:0;42415:3;;;;:::i;:::-;;;;42364:297;;;-1:-1:-1;42694:12:0;:8;42705:1;42694:12;:::i;:::-;42667:24;:39;-1:-1:-1;;;41866:846:0:o;33658:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;33775:16:0;33783:7;37940:12;;-1:-1:-1;37930:22:0;37853:105;33775:16;33767:71;;;;-1:-1:-1;;;33767:71:0;;10587:2:1;33767:71:0;;;10569:21:1;10626:2;10606:18;;;10599:30;10665:34;10645:18;;;10638:62;-1:-1:-1;;;10716:18:1;;;10709:40;10766:19;;33767:71:0;10385:406:1;33767:71:0;33847:26;33895:12;33884:7;:23;33880:93;;33939:22;33949:12;33939:7;:22;:::i;:::-;:26;;33964:1;33939:26;:::i;:::-;33918:47;;33880:93;34001:7;33981:212;34018:18;34010:4;:26;33981:212;;34055:31;34089:17;;;:11;:17;;;;;;;;;34055:51;;;;;;;;;-1:-1:-1;;;;;34055:51:0;;;;;-1:-1:-1;;;34055:51:0;;;-1:-1:-1;;;;;34055:51:0;;;;;;;;34119:28;34115:71;;34167:9;33658:606;-1:-1:-1;;;;33658:606:0:o;34115:71::-;-1:-1:-1;34038:6:0;;;;:::i;:::-;;;;33981:212;;;-1:-1:-1;34201:57:0;;-1:-1:-1;;;34201:57:0;;23550:2:1;34201:57:0;;;23532:21:1;23589:2;23569:18;;;23562:30;23628:34;23608:18;;;23601:62;-1:-1:-1;;;23679:18:1;;;23672:45;23734:19;;34201:57:0;23348:411:1;26093:191:0;26167:16;26186:6;;-1:-1:-1;;;;;26203:17:0;;;-1:-1:-1;;;;;;26203:17:0;;;;;;26236:40;;26186:6;;;;;;;26236:40;;26167:16;26236:40;26156:128;26093:191;:::o;49933:280::-;50022:1;50011:8;:12;:44;;;;;50039:16;;50027:8;:28;;50011:44;50003:117;;;;-1:-1:-1;;;50003:117:0;;20839:2:1;50003:117:0;;;20821:21:1;20878:2;20858:18;;;20851:30;20917:34;20897:18;;;20890:62;20988:30;20968:18;;;20961:58;21036:19;;50003:117:0;20637:424:1;50003:117:0;50166:8;50152:11;;:22;;;;:::i;:::-;50139:9;:35;50131:74;;;;-1:-1:-1;;;50131:74:0;;;;;;;:::i;43255:690::-;43392:4;-1:-1:-1;;;;;43409:13:0;;1648:19;:23;43405:535;;43448:72;;-1:-1:-1;;;43448:72:0;;-1:-1:-1;;;;;43448:36:0;;;;;:72;;23627:10;;43499:4;;43505:7;;43514:5;;43448:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43448:72:0;;;;;;;;-1:-1:-1;;43448:72:0;;;;;;;;;;;;:::i;:::-;;;43435:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43679:13:0;;43675:215;;43712:61;;-1:-1:-1;;;43712:61:0;;;;;;;:::i;43675:215::-;43858:6;43852:13;43843:6;43839:2;43835:15;43828:38;43435:464;-1:-1:-1;;;;;;43570:55:0;-1:-1:-1;;;43570:55:0;;-1:-1:-1;43563:62:0;;43405:535;-1:-1:-1;43928:4:0;43405:535;43255:690;;;;;;:::o;51203:108::-;51263:13;51292;51285:20;;;;;:::i;18720:723::-;18776:13;18997:10;18993:53;;-1:-1:-1;;19024:10:0;;;;;;;;;;;;-1:-1:-1;;;19024:10:0;;;;;18720:723::o;18993:53::-;19071:5;19056:12;19112:78;19119:9;;19112:78;;19145:8;;;;:::i;:::-;;-1:-1:-1;19168:10:0;;-1:-1:-1;19176:2:0;19168:10;;:::i;:::-;;;19112:78;;;19200:19;19232:6;-1:-1:-1;;;;;19222:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19222:17:0;;19200:39;;19250:154;19257:10;;19250:154;;19284:11;19294:1;19284:11;;:::i;:::-;;-1:-1:-1;19353:10:0;19361:2;19353:5;:10;:::i;:::-;19340:24;;:2;:24;:::i;:::-;19327:39;;19310:6;19317;19310:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19310:56:0;;;;;;;;-1:-1:-1;19381:11:0;19390:2;19381:11;;:::i;:::-;;;19250:154;;33412:240;33473:7;-1:-1:-1;;;;;33505:19:0;;33489:102;;;;-1:-1:-1;;;33489:102:0;;12648:2:1;33489:102:0;;;12630:21:1;12687:2;12667:18;;;12660:30;12726:34;12706:18;;;12699:62;-1:-1:-1;;;12777:18:1;;;12770:47;12834:19;;33489:102:0;12446:413:1;33489:102:0;-1:-1:-1;;;;;;33613:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;33613:32:0;;-1:-1:-1;;;;;33613:32:0;;33412:240::o;48899:545::-;48993:1;48982:8;:12;:53;;;;;49010:25;;48998:8;:37;;48982:53;48974:119;;;;-1:-1:-1;;;48974:119:0;;;;;;;:::i;:::-;49140:10;49128:8;49112:13;31406:12;;;31330:94;49112:13;:24;;;;:::i;:::-;:38;;49104:47;;;;;;49200:8;49183:14;;:25;;;;:::i;:::-;49170:9;:38;49162:77;;;;-1:-1:-1;;;49162:77:0;;;;;;;:::i;:::-;49288:10;49276:23;;;;:11;:23;;;;;;:34;;49302:8;;49276:34;:::i;:::-;49262:10;49250:23;;;;:11;:23;;;;;:60;;;49356:25;;-1:-1:-1;49329:52:0;49321:115;;;;-1:-1:-1;;;49321:115:0;;10998:2:1;49321:115:0;;;10980:21:1;11037:2;11017:18;;;11010:30;11076:34;11056:18;;;11049:62;-1:-1:-1;;;11127:18:1;;;11120:48;11185:19;;49321:115:0;10796:414:1;21954:675:0;22037:7;22080:4;22037:7;22095:497;22119:5;:12;22115:1;:16;22095:497;;;22153:20;22176:5;22182:1;22176:8;;;;;;;;:::i;:::-;;;;;;;22153:31;;22219:12;22203;:28;22199:382;;22705:13;22755:15;;;22791:4;22784:15;;;22838:4;22822:21;;22331:57;;22199:382;;;22705:13;22755:15;;;22791:4;22784:15;;;22838:4;22822:21;;22508:57;;22199:382;-1:-1:-1;22133:3:0;;;;:::i;:::-;;;;22095:497;;;-1:-1:-1;22609:12:0;21954:675;-1:-1:-1;;;21954:675:0:o;38401:1272::-;38529:12;;-1:-1:-1;;;;;38556:16:0;;38548:62;;;;-1:-1:-1;;;38548:62:0;;21268:2:1;38548:62:0;;;21250:21:1;21307:2;21287:18;;;21280:30;21346:34;21326:18;;;21319:62;-1:-1:-1;;;21397:18:1;;;21390:31;21438:19;;38548:62:0;21066:397:1;38548:62:0;38747:21;38755:12;37940;;-1:-1:-1;37930:22:0;37853:105;38747:21;38746:22;38738:64;;;;-1:-1:-1;;;38738:64:0;;20133:2:1;38738:64:0;;;20115:21:1;20172:2;20152:18;;;20145:30;20211:31;20191:18;;;20184:59;20260:18;;38738:64:0;19931:353:1;38738:64:0;38829:12;38817:8;:24;;38809:71;;;;-1:-1:-1;;;38809:71:0;;24802:2:1;38809:71:0;;;24784:21:1;24841:2;24821:18;;;24814:30;24880:34;24860:18;;;24853:62;-1:-1:-1;;;24931:18:1;;;24924:32;24973:19;;38809:71:0;24600:398:1;38809:71:0;-1:-1:-1;;;;;38992:16:0;;38959:30;38992:16;;;:12;:16;;;;;;;;;38959:49;;;;;;;;;-1:-1:-1;;;;;38959:49:0;;;;;-1:-1:-1;;;38959:49:0;;;;;;;;;;;39034:119;;;;;;;;39054:19;;38959:49;;39034:119;;;39054:39;;39084:8;;39054:39;:::i;:::-;-1:-1:-1;;;;;39034:119:0;;;;;39137:8;39102:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;39034:119:0;;;;;;-1:-1:-1;;;;;39015:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;39015:138:0;;;;;;;;;;;;39188:43;;;;;;;;;;-1:-1:-1;;;;;39214:15:0;39188:43;;;;;;;;39160:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;39160:71:0;-1:-1:-1;;;;;;39160:71:0;;;;;;;;;;;;;;;;;;39172:12;;39284:281;39308:8;39304:1;:12;39284:281;;;39337:38;;39362:12;;-1:-1:-1;;;;;39337:38:0;;;39354:1;;39337:38;;39354:1;;39337:38;39402:59;39433:1;39437:2;39441:12;39455:5;39402:22;:59::i;:::-;39384:150;;;;-1:-1:-1;;;39384:150:0;;;;;;;:::i;:::-;39543:14;;;;:::i;:::-;;;;39318:3;;;;;:::i;:::-;;;;39284:281;;;-1:-1:-1;39573:12:0;:27;;;39607:60;37303:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:673::-;246:5;299:3;292:4;284:6;280:17;276:27;266:55;;317:1;314;307:12;266:55;353:6;340:20;379:4;403:60;419:43;459:2;419:43;:::i;:::-;403:60;:::i;:::-;485:3;509:2;504:3;497:15;537:2;532:3;528:12;521:19;;572:2;564:6;560:15;624:3;619:2;613;610:1;606:10;598:6;594:23;590:32;587:41;584:61;;;641:1;638;631:12;584:61;663:1;673:163;687:2;684:1;681:9;673:163;;;744:17;;732:30;;782:12;;;;814;;;;705:1;698:9;673:163;;;-1:-1:-1;854:5:1;;192:673;-1:-1:-1;;;;;;;192:673:1:o;870:186::-;929:6;982:2;970:9;961:7;957:23;953:32;950:52;;;998:1;995;988:12;950:52;1021:29;1040:9;1021:29;:::i;1061:260::-;1129:6;1137;1190:2;1178:9;1169:7;1165:23;1161:32;1158:52;;;1206:1;1203;1196:12;1158:52;1229:29;1248:9;1229:29;:::i;:::-;1219:39;;1277:38;1311:2;1300:9;1296:18;1277:38;:::i;:::-;1267:48;;1061:260;;;;;:::o;1326:328::-;1403:6;1411;1419;1472:2;1460:9;1451:7;1447:23;1443:32;1440:52;;;1488:1;1485;1478:12;1440:52;1511:29;1530:9;1511:29;:::i;:::-;1501:39;;1559:38;1593:2;1582:9;1578:18;1559:38;:::i;:::-;1549:48;;1644:2;1633:9;1629:18;1616:32;1606:42;;1326:328;;;;;:::o;1659:980::-;1754:6;1762;1770;1778;1831:3;1819:9;1810:7;1806:23;1802:33;1799:53;;;1848:1;1845;1838:12;1799:53;1871:29;1890:9;1871:29;:::i;:::-;1861:39;;1919:2;1940:38;1974:2;1963:9;1959:18;1940:38;:::i;:::-;1930:48;;2025:2;2014:9;2010:18;1997:32;1987:42;;2080:2;2069:9;2065:18;2052:32;-1:-1:-1;;;;;2144:2:1;2136:6;2133:14;2130:34;;;2160:1;2157;2150:12;2130:34;2198:6;2187:9;2183:22;2173:32;;2243:7;2236:4;2232:2;2228:13;2224:27;2214:55;;2265:1;2262;2255:12;2214:55;2301:2;2288:16;2323:2;2319;2316:10;2313:36;;;2329:18;;:::i;:::-;2371:53;2414:2;2395:13;;-1:-1:-1;;2391:27:1;2387:36;;2371:53;:::i;:::-;2358:66;;2447:2;2440:5;2433:17;2487:7;2482:2;2477;2473;2469:11;2465:20;2462:33;2459:53;;;2508:1;2505;2498:12;2459:53;2563:2;2558;2554;2550:11;2545:2;2538:5;2534:14;2521:45;2607:1;2602:2;2597;2590:5;2586:14;2582:23;2575:34;;2628:5;2618:15;;;;;1659:980;;;;;;;:::o;2644:347::-;2709:6;2717;2770:2;2758:9;2749:7;2745:23;2741:32;2738:52;;;2786:1;2783;2776:12;2738:52;2809:29;2828:9;2809:29;:::i;:::-;2799:39;;2888:2;2877:9;2873:18;2860:32;2935:5;2928:13;2921:21;2914:5;2911:32;2901:60;;2957:1;2954;2947:12;2901:60;2980:5;2970:15;;;2644:347;;;;;:::o;2996:254::-;3064:6;3072;3125:2;3113:9;3104:7;3100:23;3096:32;3093:52;;;3141:1;3138;3131:12;3093:52;3164:29;3183:9;3164:29;:::i;:::-;3154:39;3240:2;3225:18;;;;3212:32;;-1:-1:-1;;;2996:254:1:o;3255:1157::-;3373:6;3381;3434:2;3422:9;3413:7;3409:23;3405:32;3402:52;;;3450:1;3447;3440:12;3402:52;3490:9;3477:23;-1:-1:-1;;;;;3560:2:1;3552:6;3549:14;3546:34;;;3576:1;3573;3566:12;3546:34;3614:6;3603:9;3599:22;3589:32;;3659:7;3652:4;3648:2;3644:13;3640:27;3630:55;;3681:1;3678;3671:12;3630:55;3717:2;3704:16;3739:4;3763:60;3779:43;3819:2;3779:43;:::i;3763:60::-;3845:3;3869:2;3864:3;3857:15;3897:2;3892:3;3888:12;3881:19;;3928:2;3924;3920:11;3976:7;3971:2;3965;3962:1;3958:10;3954:2;3950:19;3946:28;3943:41;3940:61;;;3997:1;3994;3987:12;3940:61;4019:1;4010:10;;4029:169;4043:2;4040:1;4037:9;4029:169;;;4100:23;4119:3;4100:23;:::i;:::-;4088:36;;4061:1;4054:9;;;;;4144:12;;;;4176;;4029:169;;;-1:-1:-1;4217:5:1;-1:-1:-1;;4260:18:1;;4247:32;;-1:-1:-1;;4291:16:1;;;4288:36;;;4320:1;4317;4310:12;4288:36;;4343:63;4398:7;4387:8;4376:9;4372:24;4343:63;:::i;:::-;4333:73;;;3255:1157;;;;;:::o;4417:180::-;4476:6;4529:2;4517:9;4508:7;4504:23;4500:32;4497:52;;;4545:1;4542;4535:12;4497:52;-1:-1:-1;4568:23:1;;4417:180;-1:-1:-1;4417:180:1:o;4602:245::-;4660:6;4713:2;4701:9;4692:7;4688:23;4684:32;4681:52;;;4729:1;4726;4719:12;4681:52;4768:9;4755:23;4787:30;4811:5;4787:30;:::i;4852:249::-;4921:6;4974:2;4962:9;4953:7;4949:23;4945:32;4942:52;;;4990:1;4987;4980:12;4942:52;5022:9;5016:16;5041:30;5065:5;5041:30;:::i;5106:592::-;5177:6;5185;5238:2;5226:9;5217:7;5213:23;5209:32;5206:52;;;5254:1;5251;5244:12;5206:52;5294:9;5281:23;-1:-1:-1;;;;;5364:2:1;5356:6;5353:14;5350:34;;;5380:1;5377;5370:12;5350:34;5418:6;5407:9;5403:22;5393:32;;5463:7;5456:4;5452:2;5448:13;5444:27;5434:55;;5485:1;5482;5475:12;5434:55;5525:2;5512:16;5551:2;5543:6;5540:14;5537:34;;;5567:1;5564;5557:12;5537:34;5612:7;5607:2;5598:6;5594:2;5590:15;5586:24;5583:37;5580:57;;;5633:1;5630;5623:12;5580:57;5664:2;5656:11;;;;;5686:6;;-1:-1:-1;5106:592:1;;-1:-1:-1;;;;5106:592:1:o;5888:683::-;5983:6;5991;5999;6052:2;6040:9;6031:7;6027:23;6023:32;6020:52;;;6068:1;6065;6058:12;6020:52;6104:9;6091:23;6081:33;;6165:2;6154:9;6150:18;6137:32;-1:-1:-1;;;;;6229:2:1;6221:6;6218:14;6215:34;;;6245:1;6242;6235:12;6215:34;6283:6;6272:9;6268:22;6258:32;;6328:7;6321:4;6317:2;6313:13;6309:27;6299:55;;6350:1;6347;6340:12;6299:55;6390:2;6377:16;6416:2;6408:6;6405:14;6402:34;;;6432:1;6429;6422:12;6402:34;6485:7;6480:2;6470:6;6467:1;6463:14;6459:2;6455:23;6451:32;6448:45;6445:65;;;6506:1;6503;6496:12;6445:65;6537:2;6533;6529:11;6519:21;;6559:6;6549:16;;;;;5888:683;;;;;:::o;6576:257::-;6617:3;6655:5;6649:12;6682:6;6677:3;6670:19;6698:63;6754:6;6747:4;6742:3;6738:14;6731:4;6724:5;6720:16;6698:63;:::i;:::-;6815:2;6794:15;-1:-1:-1;;6790:29:1;6781:39;;;;6822:4;6777:50;;6576:257;-1:-1:-1;;6576:257:1:o;7072:637::-;7352:3;7390:6;7384:13;7406:53;7452:6;7447:3;7440:4;7432:6;7428:17;7406:53;:::i;:::-;7522:13;;7481:16;;;;7544:57;7522:13;7481:16;7578:4;7566:17;;7544:57;:::i;:::-;-1:-1:-1;;;7623:20:1;;7652:22;;;7701:1;7690:13;;7072:637;-1:-1:-1;;;;7072:637:1:o;8132:488::-;-1:-1:-1;;;;;8401:15:1;;;8383:34;;8453:15;;8448:2;8433:18;;8426:43;8500:2;8485:18;;8478:34;;;8548:3;8543:2;8528:18;;8521:31;;;8326:4;;8569:45;;8594:19;;8586:6;8569:45;:::i;:::-;8561:53;8132:488;-1:-1:-1;;;;;;8132:488:1:o;8999:219::-;9148:2;9137:9;9130:21;9111:4;9168:44;9208:2;9197:9;9193:18;9185:6;9168:44;:::i;12864:354::-;13066:2;13048:21;;;13105:2;13085:18;;;13078:30;13144:32;13139:2;13124:18;;13117:60;13209:2;13194:18;;12864:354::o;14407:405::-;14609:2;14591:21;;;14648:2;14628:18;;;14621:30;14687:34;14682:2;14667:18;;14660:62;-1:-1:-1;;;14753:2:1;14738:18;;14731:39;14802:3;14787:19;;14407:405::o;16458:356::-;16660:2;16642:21;;;16679:18;;;16672:30;16738:34;16733:2;16718:18;;16711:62;16805:2;16790:18;;16458:356::o;19511:415::-;19713:2;19695:21;;;19752:2;19732:18;;;19725:30;19791:34;19786:2;19771:18;;19764:62;-1:-1:-1;;;19857:2:1;19842:18;;19835:49;19916:3;19901:19;;19511:415::o;22633:355::-;22835:2;22817:21;;;22874:2;22854:18;;;22847:30;22913:33;22908:2;22893:18;;22886:61;22979:2;22964:18;;22633:355::o;22993:350::-;23195:2;23177:21;;;23234:2;23214:18;;;23207:30;23273:28;23268:2;23253:18;;23246:56;23334:2;23319:18;;22993:350::o;23764:417::-;23966:2;23948:21;;;24005:2;23985:18;;;23978:30;24044:34;24039:2;24024:18;;24017:62;-1:-1:-1;;;24110:2:1;24095:18;;24088:51;24171:3;24156:19;;23764:417::o;25550:275::-;25621:2;25615:9;25686:2;25667:13;;-1:-1:-1;;25663:27:1;25651:40;;-1:-1:-1;;;;;25706:34:1;;25742:22;;;25703:62;25700:88;;;25768:18;;:::i;:::-;25804:2;25797:22;25550:275;;-1:-1:-1;25550:275:1:o;25830:183::-;25890:4;-1:-1:-1;;;;;25915:6:1;25912:30;25909:56;;;25945:18;;:::i;:::-;-1:-1:-1;25990:1:1;25986:14;26002:4;25982:25;;25830:183::o;26018:253::-;26058:3;-1:-1:-1;;;;;26147:2:1;26144:1;26140:10;26177:2;26174:1;26170:10;26208:3;26204:2;26200:12;26195:3;26192:21;26189:47;;;26216:18;;:::i;:::-;26252:13;;26018:253;-1:-1:-1;;;;26018:253:1:o;26276:128::-;26316:3;26347:1;26343:6;26340:1;26337:13;26334:39;;;26353:18;;:::i;:::-;-1:-1:-1;26389:9:1;;26276:128::o;26409:120::-;26449:1;26475;26465:35;;26480:18;;:::i;:::-;-1:-1:-1;26514:9:1;;26409:120::o;26534:168::-;26574:7;26640:1;26636;26632:6;26628:14;26625:1;26622:21;26617:1;26610:9;26603:17;26599:45;26596:71;;;26647:18;;:::i;:::-;-1:-1:-1;26687:9:1;;26534:168::o;26707:246::-;26747:4;-1:-1:-1;;;;;26860:10:1;;;;26830;;26882:12;;;26879:38;;;26897:18;;:::i;:::-;26934:13;;26707:246;-1:-1:-1;;;26707:246:1:o;26958:125::-;26998:4;27026:1;27023;27020:8;27017:34;;;27031:18;;:::i;:::-;-1:-1:-1;27068:9:1;;26958:125::o;27088:258::-;27160:1;27170:113;27184:6;27181:1;27178:13;27170:113;;;27260:11;;;27254:18;27241:11;;;27234:39;27206:2;27199:10;27170:113;;;27301:6;27298:1;27295:13;27292:48;;;-1:-1:-1;;27336:1:1;27318:16;;27311:27;27088:258::o;27351:136::-;27390:3;27418:5;27408:39;;27427:18;;:::i;:::-;-1:-1:-1;;;27463:18:1;;27351:136::o;27492:380::-;27571:1;27567:12;;;;27614;;;27635:61;;27689:4;27681:6;27677:17;27667:27;;27635:61;27742:2;27734:6;27731:14;27711:18;27708:38;27705:161;;;27788:10;27783:3;27779:20;27776:1;27769:31;27823:4;27820:1;27813:15;27851:4;27848:1;27841:15;27705:161;;27492:380;;;:::o;27877:135::-;27916:3;-1:-1:-1;;27937:17:1;;27934:43;;;27957:18;;:::i;:::-;-1:-1:-1;28004:1:1;27993:13;;27877:135::o;28017:112::-;28049:1;28075;28065:35;;28080:18;;:::i;:::-;-1:-1:-1;28114:9:1;;28017:112::o;28134:127::-;28195:10;28190:3;28186:20;28183:1;28176:31;28226:4;28223:1;28216:15;28250:4;28247:1;28240:15;28266:127;28327:10;28322:3;28318:20;28315:1;28308:31;28358:4;28355:1;28348:15;28382:4;28379:1;28372:15;28398:127;28459:10;28454:3;28450:20;28447:1;28440:31;28490:4;28487:1;28480:15;28514:4;28511:1;28504:15;28530:127;28591:10;28586:3;28582:20;28579:1;28572:31;28622:4;28619:1;28612:15;28646:4;28643:1;28636:15;28662:131;-1:-1:-1;;;;;;28736:32:1;;28726:43;;28716:71;;28783:1;28780;28773:12

Swarm Source

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