ETH Price: $3,108.78 (+1.32%)
Gas: 6 Gwei

Token

GetRugged (GR)
 

Overview

Max Total Supply

659 GR

Holders

439

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 GR
0x96ef93862aca845c900bb861e82add19c5a96328
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:
GetRuggedNFT

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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

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


// OpenZeppelin Contracts (last updated v4.6.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.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
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 Merkle 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/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

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


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

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

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;







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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

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

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

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

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

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

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

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

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

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

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/GetRuggedNFT.sol



pragma solidity >=0.8.9 <0.9.0;





contract GetRuggedNFT is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;

    bytes32 public ogRoot;
    bytes32 public wlRoot;

    string private uri;
    string private suffix;
    string private hidden;

    uint256 public maxSupply;
    uint256 public maxMintableTx;

    bool public saleOpen;
    bool public ogOpen;
    bool public wlOpen;
    bool public revealed;

    mapping(address => uint256) public ogMinted;
    mapping(address => uint256) public wlMinted;

    constructor() ERC721A("GetRugged", "GR") {
        maxSupply = 10500;
        maxMintableTx = 5;
    }

    modifier minter(uint256 amount) {
        require(amount > 0, "Invalid mint amount!");
        require(totalSupply() + amount <= maxSupply, "Max supply exceeded!");
        _;
    }

    function cost(uint256 tier) public view returns (uint256) {
        if (tier == 0) {
            return 0.035 ether;
        }
        if (tier == 1) {
            return 0.04 ether;
        }
        if (tier >= 2) {
            return 0.05 ether;
        }
    }

    function airdrop(address[] memory addresses) public onlyOwner {
        for (uint256 i; i < addresses.length; i++) {
            _safeMint(addresses[i], 1);
        }
    }

    function ogMint(uint256 amount, bytes32[] calldata proof) public payable {
        require(amount > 0 && amount <= maxMintableTx, "Invalid amount!");
        require(msg.value >= cost(0), "Insufficient funds!");
        require(
            totalSupply() + amount <= 500,
            "Supply of the og tokens has been minted!"
        );
        require(ogOpen, "The OG Mint is not yet open!");
        require(
            ogMinted[msg.sender] < maxMintableTx,
            "You cant exceed minting 5 og tokens!"
        );
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(proof, ogRoot, leaf),
            "You are not on the OG list!"
        );
        ogMinted[msg.sender] = amount;

        _safeMint(msg.sender, amount);
    }

    function wlMint(uint256 amount, bytes32[] calldata proof) public payable {
        require(amount > 0 && amount <= maxMintableTx, "Invalid amount!");
        require(msg.value >= cost(1), "Insufficient funds!");
        require(
            totalSupply() + amount <= 2500,
            "Supply of the wl tokens has been minted!"
        );
        require(wlOpen, "The OG Mint is not yet open!");
        require(
            wlMinted[msg.sender] < maxMintableTx,
            "You cant exceed minting 5 wl tokens!"
        );
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(proof, wlRoot, leaf),
            "You are not on the WL list!"
        );
        wlMinted[msg.sender] = amount;

        _safeMint(msg.sender, amount);
    }

    function mint(uint256 amount) public payable {
        require(amount > 0 && amount <= maxMintableTx, "Invalid amount!");
        require(msg.value >= cost(2), "Insufficient funds!");
        require(
            totalSupply() + amount <= 7200,
            "Supply of the public tokens has been minted!"
        );
        require(saleOpen, "The public sale is not yet open!");

        _safeMint(msg.sender, amount);
    }

    function mintForAddress(uint256 amount) public minter(amount) onlyOwner {
        _safeMint(msg.sender, amount);
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = _startTokenId();
        uint256 ownedTokenIndex = 0;
        address latestOwnerAddress;

        while (
            ownedTokenIndex < ownerTokenCount && currentTokenId < _currentIndex
        ) {
            TokenOwnership memory ownership = _ownerships[currentTokenId];

            if (!ownership.burned) {
                if (ownership.addr != address(0)) {
                    latestOwnerAddress = ownership.addr;
                }

                if (latestOwnerAddress == _owner) {
                    ownedTokenIds[ownedTokenIndex] = currentTokenId;

                    ownedTokenIndex++;
                }
            }

            currentTokenId++;
        }

        return ownedTokenIds;
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

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

        if (revealed == false) {
            return hidden;
        }

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

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

    // Toggles
    function toggleSaleOpen() public onlyOwner {
        saleOpen = !saleOpen;
    }

    function toggleOGSale() public onlyOwner {
        ogOpen = !ogOpen;
    }

    function toggleWLSale() public onlyOwner {
        wlOpen = !wlOpen;
    }

    function toggleReveal() public onlyOwner {
        revealed = !revealed;
    }

    // Setters
    function setMaxMintableTx(uint256 newMaxMintableTx) public onlyOwner {
        maxMintableTx = newMaxMintableTx;
    }

    function setURI(string memory newURi) public onlyOwner {
        uri = newURi;
    }

    function setSuffix(string memory newSuffix) public onlyOwner {
        suffix = newSuffix;
    }

    function setHidden(string memory newHidden) public onlyOwner {
        hidden = newHidden;
    }

    function setOGRoot(bytes32 newOGRoot) public onlyOwner {
        ogRoot = newOGRoot;
    }

    function setWLRoot(bytes32 newWLRoot) public onlyOwner {
        wlRoot = newWLRoot;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tier","type":"uint256"}],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintableTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"ogMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ogMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"newHidden","type":"string"}],"name":"setHidden","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxMintableTx","type":"uint256"}],"name":"setMaxMintableTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newOGRoot","type":"bytes32"}],"name":"setOGRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newSuffix","type":"string"}],"name":"setSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURi","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newWLRoot","type":"bytes32"}],"name":"setWLRoot","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":[],"name":"toggleOGSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWLSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"wlMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"wlMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600981526020016811d95d149d59d9d95960ba1b8152506040518060400160405280600281526020016123a960f11b815250816002908051906020019062000067929190620000f8565b5080516200007d906003906020840190620000f8565b50506001600055506200009033620000a6565b6001600955612904600f556005601055620001da565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000106906200019e565b90600052602060002090601f0160209004810192826200012a576000855562000175565b82601f106200014557805160ff191683800117855562000175565b8280016001018555821562000175579182015b828111156200017557825182559160200191906001019062000158565b506200018392915062000187565b5090565b5b8082111562000183576000815560010162000188565b600181811c90821680620001b357607f821691505b602082108103620001d457634e487b7160e01b600052602260045260246000fd5b50919050565b6129f780620001ea6000396000f3fe6080604052600436106102725760003560e01c806375d5ae9f1161014f57806399800185116100c1578063d309aa2c1161007a578063d309aa2c14610716578063d57f827914610736578063d5abeb011461074b578063e985e9c514610761578063e9b1683a146107aa578063f2fde38b146107d757600080fd5b8063998001851461066e578063a0712d6814610683578063a22cb46514610696578063b11c7f82146106b6578063b88d4fde146106d6578063c87b56dd146106f657600080fd5b80638f470ce5116101135780638f470ce5146105d45780638fb450c4146105f3578063903afdc0146106095780639097548d1461061f57806395d89b411461063f57806399288dbb1461065457600080fd5b806375d5ae9f1461053e57806378a923801461055e57806382c309871461058b5780638393634c146105a15780638da5cb5b146105b657600080fd5b80633ccfd60b116101e85780635b8ad429116101ac5780635b8ad429146104945780635efe1a1f146104a95780636352211e146104c957806370a08231146104e9578063715018a614610509578063729ad39e1461051e57600080fd5b80633ccfd60b146103fe5780633ef0d36d1461041357806342842e0e14610426578063438b630014610446578063518302271461047357600080fd5b8063095ea7b31161023a578063095ea7b3146103485780630c00f6db1461036857806318160ddd146103885780631a904acb146103ab57806323b872dd146103cb5780632b314dc6146103eb57600080fd5b8063011f47511461027757806301ffc9a71461029957806302fe5305146102ce57806306fdde03146102ee578063081812fc14610310575b600080fd5b34801561028357600080fd5b506102976102923660046122a1565b6107f7565b005b3480156102a557600080fd5b506102b96102b43660046122d0565b61082f565b60405190151581526020015b60405180910390f35b3480156102da57600080fd5b506102976102e936600461238a565b610881565b3480156102fa57600080fd5b506103036108c2565b6040516102c5919061242a565b34801561031c57600080fd5b5061033061032b3660046122a1565b610954565b6040516001600160a01b0390911681526020016102c5565b34801561035457600080fd5b50610297610363366004612454565b610998565b34801561037457600080fd5b506102976103833660046122a1565b610a1e565b34801561039457600080fd5b5061039d610af5565b6040519081526020016102c5565b3480156103b757600080fd5b506011546102b99062010000900460ff1681565b3480156103d757600080fd5b506102976103e636600461247e565b610b03565b6102976103f93660046124ba565b610b0e565b34801561040a57600080fd5b50610297610d85565b6102976104213660046124ba565b610e7f565b34801561043257600080fd5b5061029761044136600461247e565b6110f1565b34801561045257600080fd5b50610466610461366004612538565b61110c565b6040516102c59190612553565b34801561047f57600080fd5b506011546102b9906301000000900460ff1681565b3480156104a057600080fd5b5061029761124b565b3480156104b557600080fd5b506102976104c43660046122a1565b611296565b3480156104d557600080fd5b506103306104e43660046122a1565b6112c5565b3480156104f557600080fd5b5061039d610504366004612538565b6112d7565b34801561051557600080fd5b50610297611325565b34801561052a57600080fd5b50610297610539366004612597565b61135b565b34801561054a57600080fd5b5061029761055936600461238a565b6113c7565b34801561056a57600080fd5b5061039d610579366004612538565b60136020526000908152604090205481565b34801561059757600080fd5b5061039d600b5481565b3480156105ad57600080fd5b50610297611404565b3480156105c257600080fd5b506008546001600160a01b0316610330565b3480156105e057600080fd5b506011546102b990610100900460ff1681565b3480156105ff57600080fd5b5061039d60105481565b34801561061557600080fd5b5061039d600a5481565b34801561062b57600080fd5b5061039d61063a3660046122a1565b611442565b34801561064b57600080fd5b5061030361148b565b34801561066057600080fd5b506011546102b99060ff1681565b34801561067a57600080fd5b5061029761149a565b6102976106913660046122a1565b6114e1565b3480156106a257600080fd5b506102976106b1366004612643565b611610565b3480156106c257600080fd5b506102976106d13660046122a1565b6116a5565b3480156106e257600080fd5b506102976106f136600461267f565b6116d4565b34801561070257600080fd5b506103036107113660046122a1565b611718565b34801561072257600080fd5b5061029761073136600461238a565b61188e565b34801561074257600080fd5b506102976118cb565b34801561075757600080fd5b5061039d600f5481565b34801561076d57600080fd5b506102b961077c3660046126fa565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107b657600080fd5b5061039d6107c5366004612538565b60126020526000908152604090205481565b3480156107e357600080fd5b506102976107f2366004612538565b611914565b6008546001600160a01b0316331461082a5760405162461bcd60e51b81526004016108219061272d565b60405180910390fd5b601055565b60006001600160e01b031982166380ac58cd60e01b148061086057506001600160e01b03198216635b5e139f60e01b145b8061087b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146108ab5760405162461bcd60e51b81526004016108219061272d565b80516108be90600c906020840190612208565b5050565b6060600280546108d190612762565b80601f01602080910402602001604051908101604052809291908181526020018280546108fd90612762565b801561094a5780601f1061091f5761010080835404028352916020019161094a565b820191906000526020600020905b81548152906001019060200180831161092d57829003601f168201915b5050505050905090565b600061095f826119ac565b61097c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109a3826112c5565b9050806001600160a01b0316836001600160a01b0316036109d75760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610a0e576109f1813361077c565b610a0e576040516367d9dca160e11b815260040160405180910390fd5b610a198383836119e5565b505050565b8060008111610a665760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610821565b600f5481610a72610af5565b610a7c91906127b2565b1115610ac15760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610821565b6008546001600160a01b03163314610aeb5760405162461bcd60e51b81526004016108219061272d565b6108be3383611a41565b600154600054036000190190565b610a19838383611a5b565b600083118015610b2057506010548311155b610b3c5760405162461bcd60e51b8152600401610821906127ca565b610b466000611442565b341015610b655760405162461bcd60e51b8152600401610821906127f3565b6101f483610b71610af5565b610b7b91906127b2565b1115610bda5760405162461bcd60e51b815260206004820152602860248201527f537570706c79206f6620746865206f6720746f6b656e7320686173206265656e604482015267206d696e7465642160c01b6064820152608401610821565b601154610100900460ff16610c315760405162461bcd60e51b815260206004820152601c60248201527f546865204f47204d696e74206973206e6f7420796574206f70656e21000000006044820152606401610821565b6010543360009081526012602052604090205410610c9d5760405162461bcd60e51b8152602060048201526024808201527f596f752063616e7420657863656564206d696e74696e672035206f6720746f6b604482015263656e732160e01b6064820152608401610821565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610d1783838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050611c48565b610d635760405162461bcd60e51b815260206004820152601b60248201527f596f7520617265206e6f74206f6e20746865204f47206c6973742100000000006044820152606401610821565b336000818152601260205260409020859055610d7f9085611a41565b50505050565b6008546001600160a01b03163314610daf5760405162461bcd60e51b81526004016108219061272d565b600260095403610e015760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610821565b60026009556000610e1a6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e64576040519150601f19603f3d011682016040523d82523d6000602084013e610e69565b606091505b5050905080610e7757600080fd5b506001600955565b600083118015610e9157506010548311155b610ead5760405162461bcd60e51b8152600401610821906127ca565b610eb76001611442565b341015610ed65760405162461bcd60e51b8152600401610821906127f3565b6109c483610ee2610af5565b610eec91906127b2565b1115610f4b5760405162461bcd60e51b815260206004820152602860248201527f537570706c79206f662074686520776c20746f6b656e7320686173206265656e604482015267206d696e7465642160c01b6064820152608401610821565b60115462010000900460ff16610fa35760405162461bcd60e51b815260206004820152601c60248201527f546865204f47204d696e74206973206e6f7420796574206f70656e21000000006044820152606401610821565b601054336000908152601360205260409020541061100f5760405162461bcd60e51b8152602060048201526024808201527f596f752063616e7420657863656564206d696e74696e67203520776c20746f6b604482015263656e732160e01b6064820152608401610821565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061108983838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b549150849050611c48565b6110d55760405162461bcd60e51b815260206004820152601b60248201527f596f7520617265206e6f74206f6e2074686520574c206c6973742100000000006044820152606401610821565b336000818152601360205260409020859055610d7f9085611a41565b610a19838383604051806020016040528060008152506116d4565b60606000611119836112d7565b90506000816001600160401b03811115611135576111356122ed565b60405190808252806020026020018201604052801561115e578160200160208202803683370190505b50905060016000805b8482108015611177575060005483105b1561124057600083815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061122d5780516001600160a01b0316156111e857805191505b876001600160a01b0316826001600160a01b03160361122d578385848151811061121457611214612820565b60209081029190910101528261122981612836565b9350505b8361123781612836565b94505050611167565b509195945050505050565b6008546001600160a01b031633146112755760405162461bcd60e51b81526004016108219061272d565b6011805463ff00000019811663010000009182900460ff1615909102179055565b6008546001600160a01b031633146112c05760405162461bcd60e51b81526004016108219061272d565b600a55565b60006112d082611c5e565b5192915050565b60006001600160a01b038216611300576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b0316331461134f5760405162461bcd60e51b81526004016108219061272d565b6113596000611d80565b565b6008546001600160a01b031633146113855760405162461bcd60e51b81526004016108219061272d565b60005b81518110156108be576113b58282815181106113a6576113a6612820565b60200260200101516001611a41565b806113bf81612836565b915050611388565b6008546001600160a01b031633146113f15760405162461bcd60e51b81526004016108219061272d565b80516108be90600d906020840190612208565b6008546001600160a01b0316331461142e5760405162461bcd60e51b81526004016108219061272d565b6011805460ff19811660ff90911615179055565b60008160000361145a5750667c585087238000919050565b816001036114705750668e1bc9bf040000919050565b60028210611486575066b1a2bc2ec50000919050565b919050565b6060600380546108d190612762565b6008546001600160a01b031633146114c45760405162461bcd60e51b81526004016108219061272d565b6011805461ff001981166101009182900460ff1615909102179055565b6000811180156114f357506010548111155b61150f5760405162461bcd60e51b8152600401610821906127ca565b6115196002611442565b3410156115385760405162461bcd60e51b8152600401610821906127f3565b611c2081611544610af5565b61154e91906127b2565b11156115b15760405162461bcd60e51b815260206004820152602c60248201527f537570706c79206f6620746865207075626c696320746f6b656e73206861732060448201526b6265656e206d696e7465642160a01b6064820152608401610821565b60115460ff166116035760405162461bcd60e51b815260206004820181905260248201527f546865207075626c69632073616c65206973206e6f7420796574206f70656e216044820152606401610821565b61160d3382611a41565b50565b336001600160a01b038316036116395760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146116cf5760405162461bcd60e51b81526004016108219061272d565b600b55565b6116df848484611a5b565b6001600160a01b0383163b15610d7f576116fb84848484611dd2565b610d7f576040516368d2bf6b60e11b815260040160405180910390fd5b6060611723826119ac565b6117875760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610821565b6011546301000000900460ff16151560000361182f57600e80546117aa90612762565b80601f01602080910402602001604051908101604052809291908181526020018280546117d690612762565b80156118235780601f106117f857610100808354040283529160200191611823565b820191906000526020600020905b81548152906001019060200180831161180657829003601f168201915b50505050509050919050565b6000611839611ebe565b905060008151116118595760405180602001604052806000815250611887565b8061186384611ecd565b600d6040516020016118779392919061284f565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146118b85760405162461bcd60e51b81526004016108219061272d565b80516108be90600e906020840190612208565b6008546001600160a01b031633146118f55760405162461bcd60e51b81526004016108219061272d565b6011805462ff0000198116620100009182900460ff1615909102179055565b6008546001600160a01b0316331461193e5760405162461bcd60e51b81526004016108219061272d565b6001600160a01b0381166119a35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610821565b61160d81611d80565b6000816001111580156119c0575060005482105b801561087b575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108be828260405180602001604052806000815250611fcd565b6000611a6682611c5e565b9050836001600160a01b031681600001516001600160a01b031614611a9d5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611abb5750611abb853361077c565b80611ad6575033611acb84610954565b6001600160a01b0316145b905080611af657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611b1d57604051633a954ecd60e21b815260040160405180910390fd5b611b29600084876119e5565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611bfd576000548214611bfd57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600082611c558584612194565b14949350505050565b60408051606081018252600080825260208201819052918101919091528180600111611d6757600054811015611d6757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611d655780516001600160a01b031615611cfc579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611d60579392505050565b611cfc565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611e07903390899088908890600401612912565b6020604051808303816000875af1925050508015611e42575060408051601f3d908101601f19168201909252611e3f9181019061294f565b60015b611ea0573d808015611e70576040519150601f19603f3d011682016040523d82523d6000602084013e611e75565b606091505b508051600003611e98576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c80546108d190612762565b606081600003611ef45750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f1e5780611f0881612836565b9150611f179050600a83612982565b9150611ef8565b6000816001600160401b03811115611f3857611f386122ed565b6040519080825280601f01601f191660200182016040528015611f62576020820181803683370190505b5090505b8415611eb657611f77600183612996565b9150611f84600a866129ad565b611f8f9060306127b2565b60f81b818381518110611fa457611fa4612820565b60200101906001600160f81b031916908160001a905350611fc6600a86612982565b9450611f66565b6000546001600160a01b038416611ff657604051622e076360e81b815260040160405180910390fd5b826000036120175760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b1561213f575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121086000878480600101955087611dd2565b612125576040516368d2bf6b60e11b815260040160405180910390fd5b8082106120bd57826000541461213a57600080fd5b612184565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210612140575b506000908155610d7f9085838684565b600081815b84518110156122005760008582815181106121b6576121b6612820565b602002602001015190508083116121dc57600083815260208290526040902092506121ed565b600081815260208490526040902092505b50806121f881612836565b915050612199565b509392505050565b82805461221490612762565b90600052602060002090601f016020900481019282612236576000855561227c565b82601f1061224f57805160ff191683800117855561227c565b8280016001018555821561227c579182015b8281111561227c578251825591602001919060010190612261565b5061228892915061228c565b5090565b5b80821115612288576000815560010161228d565b6000602082840312156122b357600080fd5b5035919050565b6001600160e01b03198116811461160d57600080fd5b6000602082840312156122e257600080fd5b8135611887816122ba565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561232b5761232b6122ed565b604052919050565b60006001600160401b0383111561234c5761234c6122ed565b61235f601f8401601f1916602001612303565b905082815283838301111561237357600080fd5b828260208301376000602084830101529392505050565b60006020828403121561239c57600080fd5b81356001600160401b038111156123b257600080fd5b8201601f810184136123c357600080fd5b611eb684823560208401612333565b60005b838110156123ed5781810151838201526020016123d5565b83811115610d7f5750506000910152565b600081518084526124168160208601602086016123d2565b601f01601f19169290920160200192915050565b60208152600061188760208301846123fe565b80356001600160a01b038116811461148657600080fd5b6000806040838503121561246757600080fd5b6124708361243d565b946020939093013593505050565b60008060006060848603121561249357600080fd5b61249c8461243d565b92506124aa6020850161243d565b9150604084013590509250925092565b6000806000604084860312156124cf57600080fd5b8335925060208401356001600160401b03808211156124ed57600080fd5b818601915086601f83011261250157600080fd5b81358181111561251057600080fd5b8760208260051b850101111561252557600080fd5b6020830194508093505050509250925092565b60006020828403121561254a57600080fd5b6118878261243d565b6020808252825182820181905260009190848201906040850190845b8181101561258b5783518352928401929184019160010161256f565b50909695505050505050565b600060208083850312156125aa57600080fd5b82356001600160401b03808211156125c157600080fd5b818501915085601f8301126125d557600080fd5b8135818111156125e7576125e76122ed565b8060051b91506125f8848301612303565b818152918301840191848101908884111561261257600080fd5b938501935b83851015612637576126288561243d565b82529385019390850190612617565b98975050505050505050565b6000806040838503121561265657600080fd5b61265f8361243d565b91506020830135801515811461267457600080fd5b809150509250929050565b6000806000806080858703121561269557600080fd5b61269e8561243d565b93506126ac6020860161243d565b92506040850135915060608501356001600160401b038111156126ce57600080fd5b8501601f810187136126df57600080fd5b6126ee87823560208401612333565b91505092959194509250565b6000806040838503121561270d57600080fd5b6127168361243d565b91506127246020840161243d565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061277657607f821691505b60208210810361279657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156127c5576127c561279c565b500190565b6020808252600f908201526e496e76616c696420616d6f756e742160881b604082015260600190565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6000600182016128485761284861279c565b5060010190565b6000845160206128628285838a016123d2565b8551918401916128758184848a016123d2565b8554920191600090600181811c908083168061289257607f831692505b85831081036128af57634e487b7160e01b85526022600452602485fd5b8080156128c357600181146128d457612901565b60ff19851688528388019550612901565b60008b81526020902060005b858110156128f95781548a8201529084019088016128e0565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612945908301846123fe565b9695505050505050565b60006020828403121561296157600080fd5b8151611887816122ba565b634e487b7160e01b600052601260045260246000fd5b6000826129915761299161296c565b500490565b6000828210156129a8576129a861279c565b500390565b6000826129bc576129bc61296c565b50069056fea26469706673582212200c3191bc573c5bdb6a697a914ecf6dd8a6fc8186d83acdd0da1241430f60e7a864736f6c634300080d0033

Deployed Bytecode

0x6080604052600436106102725760003560e01c806375d5ae9f1161014f57806399800185116100c1578063d309aa2c1161007a578063d309aa2c14610716578063d57f827914610736578063d5abeb011461074b578063e985e9c514610761578063e9b1683a146107aa578063f2fde38b146107d757600080fd5b8063998001851461066e578063a0712d6814610683578063a22cb46514610696578063b11c7f82146106b6578063b88d4fde146106d6578063c87b56dd146106f657600080fd5b80638f470ce5116101135780638f470ce5146105d45780638fb450c4146105f3578063903afdc0146106095780639097548d1461061f57806395d89b411461063f57806399288dbb1461065457600080fd5b806375d5ae9f1461053e57806378a923801461055e57806382c309871461058b5780638393634c146105a15780638da5cb5b146105b657600080fd5b80633ccfd60b116101e85780635b8ad429116101ac5780635b8ad429146104945780635efe1a1f146104a95780636352211e146104c957806370a08231146104e9578063715018a614610509578063729ad39e1461051e57600080fd5b80633ccfd60b146103fe5780633ef0d36d1461041357806342842e0e14610426578063438b630014610446578063518302271461047357600080fd5b8063095ea7b31161023a578063095ea7b3146103485780630c00f6db1461036857806318160ddd146103885780631a904acb146103ab57806323b872dd146103cb5780632b314dc6146103eb57600080fd5b8063011f47511461027757806301ffc9a71461029957806302fe5305146102ce57806306fdde03146102ee578063081812fc14610310575b600080fd5b34801561028357600080fd5b506102976102923660046122a1565b6107f7565b005b3480156102a557600080fd5b506102b96102b43660046122d0565b61082f565b60405190151581526020015b60405180910390f35b3480156102da57600080fd5b506102976102e936600461238a565b610881565b3480156102fa57600080fd5b506103036108c2565b6040516102c5919061242a565b34801561031c57600080fd5b5061033061032b3660046122a1565b610954565b6040516001600160a01b0390911681526020016102c5565b34801561035457600080fd5b50610297610363366004612454565b610998565b34801561037457600080fd5b506102976103833660046122a1565b610a1e565b34801561039457600080fd5b5061039d610af5565b6040519081526020016102c5565b3480156103b757600080fd5b506011546102b99062010000900460ff1681565b3480156103d757600080fd5b506102976103e636600461247e565b610b03565b6102976103f93660046124ba565b610b0e565b34801561040a57600080fd5b50610297610d85565b6102976104213660046124ba565b610e7f565b34801561043257600080fd5b5061029761044136600461247e565b6110f1565b34801561045257600080fd5b50610466610461366004612538565b61110c565b6040516102c59190612553565b34801561047f57600080fd5b506011546102b9906301000000900460ff1681565b3480156104a057600080fd5b5061029761124b565b3480156104b557600080fd5b506102976104c43660046122a1565b611296565b3480156104d557600080fd5b506103306104e43660046122a1565b6112c5565b3480156104f557600080fd5b5061039d610504366004612538565b6112d7565b34801561051557600080fd5b50610297611325565b34801561052a57600080fd5b50610297610539366004612597565b61135b565b34801561054a57600080fd5b5061029761055936600461238a565b6113c7565b34801561056a57600080fd5b5061039d610579366004612538565b60136020526000908152604090205481565b34801561059757600080fd5b5061039d600b5481565b3480156105ad57600080fd5b50610297611404565b3480156105c257600080fd5b506008546001600160a01b0316610330565b3480156105e057600080fd5b506011546102b990610100900460ff1681565b3480156105ff57600080fd5b5061039d60105481565b34801561061557600080fd5b5061039d600a5481565b34801561062b57600080fd5b5061039d61063a3660046122a1565b611442565b34801561064b57600080fd5b5061030361148b565b34801561066057600080fd5b506011546102b99060ff1681565b34801561067a57600080fd5b5061029761149a565b6102976106913660046122a1565b6114e1565b3480156106a257600080fd5b506102976106b1366004612643565b611610565b3480156106c257600080fd5b506102976106d13660046122a1565b6116a5565b3480156106e257600080fd5b506102976106f136600461267f565b6116d4565b34801561070257600080fd5b506103036107113660046122a1565b611718565b34801561072257600080fd5b5061029761073136600461238a565b61188e565b34801561074257600080fd5b506102976118cb565b34801561075757600080fd5b5061039d600f5481565b34801561076d57600080fd5b506102b961077c3660046126fa565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107b657600080fd5b5061039d6107c5366004612538565b60126020526000908152604090205481565b3480156107e357600080fd5b506102976107f2366004612538565b611914565b6008546001600160a01b0316331461082a5760405162461bcd60e51b81526004016108219061272d565b60405180910390fd5b601055565b60006001600160e01b031982166380ac58cd60e01b148061086057506001600160e01b03198216635b5e139f60e01b145b8061087b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146108ab5760405162461bcd60e51b81526004016108219061272d565b80516108be90600c906020840190612208565b5050565b6060600280546108d190612762565b80601f01602080910402602001604051908101604052809291908181526020018280546108fd90612762565b801561094a5780601f1061091f5761010080835404028352916020019161094a565b820191906000526020600020905b81548152906001019060200180831161092d57829003601f168201915b5050505050905090565b600061095f826119ac565b61097c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109a3826112c5565b9050806001600160a01b0316836001600160a01b0316036109d75760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610a0e576109f1813361077c565b610a0e576040516367d9dca160e11b815260040160405180910390fd5b610a198383836119e5565b505050565b8060008111610a665760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610821565b600f5481610a72610af5565b610a7c91906127b2565b1115610ac15760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610821565b6008546001600160a01b03163314610aeb5760405162461bcd60e51b81526004016108219061272d565b6108be3383611a41565b600154600054036000190190565b610a19838383611a5b565b600083118015610b2057506010548311155b610b3c5760405162461bcd60e51b8152600401610821906127ca565b610b466000611442565b341015610b655760405162461bcd60e51b8152600401610821906127f3565b6101f483610b71610af5565b610b7b91906127b2565b1115610bda5760405162461bcd60e51b815260206004820152602860248201527f537570706c79206f6620746865206f6720746f6b656e7320686173206265656e604482015267206d696e7465642160c01b6064820152608401610821565b601154610100900460ff16610c315760405162461bcd60e51b815260206004820152601c60248201527f546865204f47204d696e74206973206e6f7420796574206f70656e21000000006044820152606401610821565b6010543360009081526012602052604090205410610c9d5760405162461bcd60e51b8152602060048201526024808201527f596f752063616e7420657863656564206d696e74696e672035206f6720746f6b604482015263656e732160e01b6064820152608401610821565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610d1783838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050611c48565b610d635760405162461bcd60e51b815260206004820152601b60248201527f596f7520617265206e6f74206f6e20746865204f47206c6973742100000000006044820152606401610821565b336000818152601260205260409020859055610d7f9085611a41565b50505050565b6008546001600160a01b03163314610daf5760405162461bcd60e51b81526004016108219061272d565b600260095403610e015760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610821565b60026009556000610e1a6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e64576040519150601f19603f3d011682016040523d82523d6000602084013e610e69565b606091505b5050905080610e7757600080fd5b506001600955565b600083118015610e9157506010548311155b610ead5760405162461bcd60e51b8152600401610821906127ca565b610eb76001611442565b341015610ed65760405162461bcd60e51b8152600401610821906127f3565b6109c483610ee2610af5565b610eec91906127b2565b1115610f4b5760405162461bcd60e51b815260206004820152602860248201527f537570706c79206f662074686520776c20746f6b656e7320686173206265656e604482015267206d696e7465642160c01b6064820152608401610821565b60115462010000900460ff16610fa35760405162461bcd60e51b815260206004820152601c60248201527f546865204f47204d696e74206973206e6f7420796574206f70656e21000000006044820152606401610821565b601054336000908152601360205260409020541061100f5760405162461bcd60e51b8152602060048201526024808201527f596f752063616e7420657863656564206d696e74696e67203520776c20746f6b604482015263656e732160e01b6064820152608401610821565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061108983838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b549150849050611c48565b6110d55760405162461bcd60e51b815260206004820152601b60248201527f596f7520617265206e6f74206f6e2074686520574c206c6973742100000000006044820152606401610821565b336000818152601360205260409020859055610d7f9085611a41565b610a19838383604051806020016040528060008152506116d4565b60606000611119836112d7565b90506000816001600160401b03811115611135576111356122ed565b60405190808252806020026020018201604052801561115e578160200160208202803683370190505b50905060016000805b8482108015611177575060005483105b1561124057600083815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061122d5780516001600160a01b0316156111e857805191505b876001600160a01b0316826001600160a01b03160361122d578385848151811061121457611214612820565b60209081029190910101528261122981612836565b9350505b8361123781612836565b94505050611167565b509195945050505050565b6008546001600160a01b031633146112755760405162461bcd60e51b81526004016108219061272d565b6011805463ff00000019811663010000009182900460ff1615909102179055565b6008546001600160a01b031633146112c05760405162461bcd60e51b81526004016108219061272d565b600a55565b60006112d082611c5e565b5192915050565b60006001600160a01b038216611300576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b0316331461134f5760405162461bcd60e51b81526004016108219061272d565b6113596000611d80565b565b6008546001600160a01b031633146113855760405162461bcd60e51b81526004016108219061272d565b60005b81518110156108be576113b58282815181106113a6576113a6612820565b60200260200101516001611a41565b806113bf81612836565b915050611388565b6008546001600160a01b031633146113f15760405162461bcd60e51b81526004016108219061272d565b80516108be90600d906020840190612208565b6008546001600160a01b0316331461142e5760405162461bcd60e51b81526004016108219061272d565b6011805460ff19811660ff90911615179055565b60008160000361145a5750667c585087238000919050565b816001036114705750668e1bc9bf040000919050565b60028210611486575066b1a2bc2ec50000919050565b919050565b6060600380546108d190612762565b6008546001600160a01b031633146114c45760405162461bcd60e51b81526004016108219061272d565b6011805461ff001981166101009182900460ff1615909102179055565b6000811180156114f357506010548111155b61150f5760405162461bcd60e51b8152600401610821906127ca565b6115196002611442565b3410156115385760405162461bcd60e51b8152600401610821906127f3565b611c2081611544610af5565b61154e91906127b2565b11156115b15760405162461bcd60e51b815260206004820152602c60248201527f537570706c79206f6620746865207075626c696320746f6b656e73206861732060448201526b6265656e206d696e7465642160a01b6064820152608401610821565b60115460ff166116035760405162461bcd60e51b815260206004820181905260248201527f546865207075626c69632073616c65206973206e6f7420796574206f70656e216044820152606401610821565b61160d3382611a41565b50565b336001600160a01b038316036116395760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146116cf5760405162461bcd60e51b81526004016108219061272d565b600b55565b6116df848484611a5b565b6001600160a01b0383163b15610d7f576116fb84848484611dd2565b610d7f576040516368d2bf6b60e11b815260040160405180910390fd5b6060611723826119ac565b6117875760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610821565b6011546301000000900460ff16151560000361182f57600e80546117aa90612762565b80601f01602080910402602001604051908101604052809291908181526020018280546117d690612762565b80156118235780601f106117f857610100808354040283529160200191611823565b820191906000526020600020905b81548152906001019060200180831161180657829003601f168201915b50505050509050919050565b6000611839611ebe565b905060008151116118595760405180602001604052806000815250611887565b8061186384611ecd565b600d6040516020016118779392919061284f565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146118b85760405162461bcd60e51b81526004016108219061272d565b80516108be90600e906020840190612208565b6008546001600160a01b031633146118f55760405162461bcd60e51b81526004016108219061272d565b6011805462ff0000198116620100009182900460ff1615909102179055565b6008546001600160a01b0316331461193e5760405162461bcd60e51b81526004016108219061272d565b6001600160a01b0381166119a35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610821565b61160d81611d80565b6000816001111580156119c0575060005482105b801561087b575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108be828260405180602001604052806000815250611fcd565b6000611a6682611c5e565b9050836001600160a01b031681600001516001600160a01b031614611a9d5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611abb5750611abb853361077c565b80611ad6575033611acb84610954565b6001600160a01b0316145b905080611af657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611b1d57604051633a954ecd60e21b815260040160405180910390fd5b611b29600084876119e5565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611bfd576000548214611bfd57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600082611c558584612194565b14949350505050565b60408051606081018252600080825260208201819052918101919091528180600111611d6757600054811015611d6757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611d655780516001600160a01b031615611cfc579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611d60579392505050565b611cfc565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611e07903390899088908890600401612912565b6020604051808303816000875af1925050508015611e42575060408051601f3d908101601f19168201909252611e3f9181019061294f565b60015b611ea0573d808015611e70576040519150601f19603f3d011682016040523d82523d6000602084013e611e75565b606091505b508051600003611e98576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c80546108d190612762565b606081600003611ef45750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f1e5780611f0881612836565b9150611f179050600a83612982565b9150611ef8565b6000816001600160401b03811115611f3857611f386122ed565b6040519080825280601f01601f191660200182016040528015611f62576020820181803683370190505b5090505b8415611eb657611f77600183612996565b9150611f84600a866129ad565b611f8f9060306127b2565b60f81b818381518110611fa457611fa4612820565b60200101906001600160f81b031916908160001a905350611fc6600a86612982565b9450611f66565b6000546001600160a01b038416611ff657604051622e076360e81b815260040160405180910390fd5b826000036120175760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b1561213f575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121086000878480600101955087611dd2565b612125576040516368d2bf6b60e11b815260040160405180910390fd5b8082106120bd57826000541461213a57600080fd5b612184565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210612140575b506000908155610d7f9085838684565b600081815b84518110156122005760008582815181106121b6576121b6612820565b602002602001015190508083116121dc57600083815260208290526040902092506121ed565b600081815260208490526040902092505b50806121f881612836565b915050612199565b509392505050565b82805461221490612762565b90600052602060002090601f016020900481019282612236576000855561227c565b82601f1061224f57805160ff191683800117855561227c565b8280016001018555821561227c579182015b8281111561227c578251825591602001919060010190612261565b5061228892915061228c565b5090565b5b80821115612288576000815560010161228d565b6000602082840312156122b357600080fd5b5035919050565b6001600160e01b03198116811461160d57600080fd5b6000602082840312156122e257600080fd5b8135611887816122ba565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561232b5761232b6122ed565b604052919050565b60006001600160401b0383111561234c5761234c6122ed565b61235f601f8401601f1916602001612303565b905082815283838301111561237357600080fd5b828260208301376000602084830101529392505050565b60006020828403121561239c57600080fd5b81356001600160401b038111156123b257600080fd5b8201601f810184136123c357600080fd5b611eb684823560208401612333565b60005b838110156123ed5781810151838201526020016123d5565b83811115610d7f5750506000910152565b600081518084526124168160208601602086016123d2565b601f01601f19169290920160200192915050565b60208152600061188760208301846123fe565b80356001600160a01b038116811461148657600080fd5b6000806040838503121561246757600080fd5b6124708361243d565b946020939093013593505050565b60008060006060848603121561249357600080fd5b61249c8461243d565b92506124aa6020850161243d565b9150604084013590509250925092565b6000806000604084860312156124cf57600080fd5b8335925060208401356001600160401b03808211156124ed57600080fd5b818601915086601f83011261250157600080fd5b81358181111561251057600080fd5b8760208260051b850101111561252557600080fd5b6020830194508093505050509250925092565b60006020828403121561254a57600080fd5b6118878261243d565b6020808252825182820181905260009190848201906040850190845b8181101561258b5783518352928401929184019160010161256f565b50909695505050505050565b600060208083850312156125aa57600080fd5b82356001600160401b03808211156125c157600080fd5b818501915085601f8301126125d557600080fd5b8135818111156125e7576125e76122ed565b8060051b91506125f8848301612303565b818152918301840191848101908884111561261257600080fd5b938501935b83851015612637576126288561243d565b82529385019390850190612617565b98975050505050505050565b6000806040838503121561265657600080fd5b61265f8361243d565b91506020830135801515811461267457600080fd5b809150509250929050565b6000806000806080858703121561269557600080fd5b61269e8561243d565b93506126ac6020860161243d565b92506040850135915060608501356001600160401b038111156126ce57600080fd5b8501601f810187136126df57600080fd5b6126ee87823560208401612333565b91505092959194509250565b6000806040838503121561270d57600080fd5b6127168361243d565b91506127246020840161243d565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061277657607f821691505b60208210810361279657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156127c5576127c561279c565b500190565b6020808252600f908201526e496e76616c696420616d6f756e742160881b604082015260600190565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6000600182016128485761284861279c565b5060010190565b6000845160206128628285838a016123d2565b8551918401916128758184848a016123d2565b8554920191600090600181811c908083168061289257607f831692505b85831081036128af57634e487b7160e01b85526022600452602485fd5b8080156128c357600181146128d457612901565b60ff19851688528388019550612901565b60008b81526020902060005b858110156128f95781548a8201529084019088016128e0565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612945908301846123fe565b9695505050505050565b60006020828403121561296157600080fd5b8151611887816122ba565b634e487b7160e01b600052601260045260246000fd5b6000826129915761299161296c565b500490565b6000828210156129a8576129a861279c565b500390565b6000826129bc576129bc61296c565b50069056fea26469706673582212200c3191bc573c5bdb6a697a914ecf6dd8a6fc8186d83acdd0da1241430f60e7a864736f6c634300080d0033

Deployed Bytecode Sourcemap

52924:6656:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58766:120;;;;;;;;;;-1:-1:-1;58766:120:0;;;;;:::i;:::-;;:::i;:::-;;34024:305;;;;;;;;;;-1:-1:-1;34024:305:0;;;;;:::i;:::-;;:::i;:::-;;;750:14:1;;743:22;725:41;;713:2;698:18;34024:305:0;;;;;;;;58894:86;;;;;;;;;;-1:-1:-1;58894:86:0;;;;;:::i;:::-;;:::i;37139:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;38643:204::-;;;;;;;;;;-1:-1:-1;38643:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2972:32:1;;;2954:51;;2942:2;2927:18;38643:204:0;2808:203:1;38205:372:0;;;;;;;;;;-1:-1:-1;38205:372:0;;;;;:::i;:::-;;:::i;56301:120::-;;;;;;;;;;-1:-1:-1;56301:120:0;;;;;:::i;:::-;;:::i;33264:312::-;;;;;;;;;;;;;:::i;:::-;;;3599:25:1;;;3587:2;3572:18;33264:312:0;3453:177:1;53285:18:0;;;;;;;;;;-1:-1:-1;53285:18:0;;;;;;;;;;;39508:170;;;;;;;;;;-1:-1:-1;39508:170:0;;;;;:::i;:::-;;:::i;54213:815::-;;;;;;:::i;:::-;;:::i;59417:160::-;;;;;;;;;;;;;:::i;55036:816::-;;;;;;:::i;:::-;;:::i;39749:185::-;;;;;;;;;;-1:-1:-1;39749:185:0;;;;;:::i;:::-;;:::i;56429:1009::-;;;;;;;;;;-1:-1:-1;56429:1009:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;53310:20::-;;;;;;;;;;-1:-1:-1;53310:20:0;;;;;;;;;;;58662:80;;;;;;;;;;;;;:::i;59200:92::-;;;;;;;;;;-1:-1:-1;59200:92:0;;;;;:::i;:::-;;:::i;36947:125::-;;;;;;;;;;-1:-1:-1;36947:125:0;;;;;:::i;:::-;;:::i;34393:206::-;;;;;;;;;;-1:-1:-1;34393:206:0;;;;;:::i;:::-;;:::i;10209:103::-;;;;;;;;;;;;;:::i;54029:176::-;;;;;;;;;;-1:-1:-1;54029:176:0;;;;;:::i;:::-;;:::i;58988:98::-;;;;;;;;;;-1:-1:-1;58988:98:0;;;;;:::i;:::-;;:::i;53389:43::-;;;;;;;;;;-1:-1:-1;53389:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;53052:21;;;;;;;;;;;;;;;;58404:82;;;;;;;;;;;;;:::i;9558:87::-;;;;;;;;;;-1:-1:-1;9631:6:0;;-1:-1:-1;;;;;9631:6:0;9558:87;;53260:18;;;;;;;;;;-1:-1:-1;53260:18:0;;;;;;;;;;;53196:28;;;;;;;;;;;;;;;;53024:21;;;;;;;;;;;;;;;;53747:274;;;;;;;;;;-1:-1:-1;53747:274:0;;;;;:::i;:::-;;:::i;37308:104::-;;;;;;;;;;;;;:::i;53233:20::-;;;;;;;;;;-1:-1:-1;53233:20:0;;;;;;;;58494:76;;;;;;;;;;;;;:::i;55860:433::-;;;;;;:::i;:::-;;:::i;38919:287::-;;;;;;;;;;-1:-1:-1;38919:287:0;;;;;:::i;:::-;;:::i;59300:92::-;;;;;;;;;;-1:-1:-1;59300:92:0;;;;;:::i;:::-;;:::i;40005:370::-;;;;;;;;;;-1:-1:-1;40005:370:0;;;;;:::i;:::-;;:::i;57555:713::-;;;;;;;;;;-1:-1:-1;57555:713:0;;;;;:::i;:::-;;:::i;59094:98::-;;;;;;;;;;-1:-1:-1;59094:98:0;;;;;:::i;:::-;;:::i;58578:76::-;;;;;;;;;;;;;:::i;53165:24::-;;;;;;;;;;;;;;;;39277:164;;;;;;;;;;-1:-1:-1;39277:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;39398:25:0;;;39374:4;39398:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;39277:164;53339:43;;;;;;;;;;-1:-1:-1;53339:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;10467:201;;;;;;;;;;-1:-1:-1;10467:201:0;;;;;:::i;:::-;;:::i;58766:120::-;9631:6;;-1:-1:-1;;;;;9631:6:0;8362:10;9778:23;9770:68;;;;-1:-1:-1;;;9770:68:0;;;;;;;:::i;:::-;;;;;;;;;58846:13:::1;:32:::0;58766:120::o;34024:305::-;34126:4;-1:-1:-1;;;;;;34163:40:0;;-1:-1:-1;;;34163:40:0;;:105;;-1:-1:-1;;;;;;;34220:48:0;;-1:-1:-1;;;34220:48:0;34163:105;:158;;;-1:-1:-1;;;;;;;;;;22474:40:0;;;34285:36;34143:178;34024:305;-1:-1:-1;;34024:305:0:o;58894:86::-;9631:6;;-1:-1:-1;;;;;9631:6:0;8362:10;9778:23;9770:68;;;;-1:-1:-1;;;9770:68:0;;;;;;;:::i;:::-;58960:12;;::::1;::::0;:3:::1;::::0;:12:::1;::::0;::::1;::::0;::::1;:::i;:::-;;58894:86:::0;:::o;37139:100::-;37193:13;37226:5;37219:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37139:100;:::o;38643:204::-;38711:7;38736:16;38744:7;38736;:16::i;:::-;38731:64;;38761:34;;-1:-1:-1;;;38761:34:0;;;;;;;;;;;38731:64;-1:-1:-1;38815:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;38815:24:0;;38643:204::o;38205:372::-;38278:13;38294:24;38310:7;38294:15;:24::i;:::-;38278:40;;38339:5;-1:-1:-1;;;;;38333:11:0;:2;-1:-1:-1;;;;;38333:11:0;;38329:48;;38353:24;;-1:-1:-1;;;38353:24:0;;;;;;;;;;;38329:48;8362:10;-1:-1:-1;;;;;38394:21:0;;;38390:139;;38421:37;38438:5;8362:10;39277:164;:::i;38421:37::-;38417:112;;38482:35;;-1:-1:-1;;;38482:35:0;;;;;;;;;;;38417:112;38541:28;38550:2;38554:7;38563:5;38541:8;:28::i;:::-;38267:310;38205:372;;:::o;56301:120::-;56355:6;53614:1;53605:6;:10;53597:43;;;;-1:-1:-1;;;53597:43:0;;9045:2:1;53597:43:0;;;9027:21:1;9084:2;9064:18;;;9057:30;-1:-1:-1;;;9103:18:1;;;9096:50;9163:18;;53597:43:0;8843:344:1;53597:43:0;53685:9;;53675:6;53659:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;53651:68;;;;-1:-1:-1;;;53651:68:0;;9659:2:1;53651:68:0;;;9641:21:1;9698:2;9678:18;;;9671:30;-1:-1:-1;;;9717:18:1;;;9710:50;9777:18;;53651:68:0;9457:344:1;53651:68:0;9631:6;;-1:-1:-1;;;;;9631:6:0;8362:10;9778:23:::1;9770:68;;;;-1:-1:-1::0;;;9770:68:0::1;;;;;;;:::i;:::-;56384:29:::2;56394:10;56406:6;56384:9;:29::i;33264:312::-:0;57538:1;33527:12;33317:7;33511:13;:28;-1:-1:-1;;33511:46:0;;33264:312::o;39508:170::-;39642:28;39652:4;39658:2;39662:7;39642:9;:28::i;54213:815::-;54314:1;54305:6;:10;:37;;;;;54329:13;;54319:6;:23;;54305:37;54297:65;;;;-1:-1:-1;;;54297:65:0;;;;;;;:::i;:::-;54394:7;54399:1;54394:4;:7::i;:::-;54381:9;:20;;54373:52;;;;-1:-1:-1;;;54373:52:0;;;;;;;:::i;:::-;54484:3;54474:6;54458:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:29;;54436:119;;;;-1:-1:-1;;;54436:119:0;;10700:2:1;54436:119:0;;;10682:21:1;10739:2;10719:18;;;10712:30;10778:34;10758:18;;;10751:62;-1:-1:-1;;;10829:18:1;;;10822:38;10877:19;;54436:119:0;10498:404:1;54436:119:0;54574:6;;;;;;;54566:47;;;;-1:-1:-1;;;54566:47:0;;11109:2:1;54566:47:0;;;11091:21:1;11148:2;11128:18;;;11121:30;11187;11167:18;;;11160:58;11235:18;;54566:47:0;10907:352:1;54566:47:0;54669:13;;54655:10;54646:20;;;;:8;:20;;;;;;:36;54624:122;;;;-1:-1:-1;;;54624:122:0;;11466:2:1;54624:122:0;;;11448:21:1;11505:2;11485:18;;;11478:30;11544:34;11524:18;;;11517:62;-1:-1:-1;;;11595:18:1;;;11588:34;11639:19;;54624:122:0;11264:400:1;54624:122:0;54782:28;;-1:-1:-1;;54799:10:0;11818:2:1;11814:15;11810:53;54782:28:0;;;11798:66:1;54757:12:0;;11880::1;;54782:28:0;;;;;;;;;;;;54772:39;;;;;;54757:54;;54844:39;54863:5;;54844:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;54870:6:0;;;-1:-1:-1;54878:4:0;;-1:-1:-1;54844:18:0;:39::i;:::-;54822:116;;;;-1:-1:-1;;;54822:116:0;;12105:2:1;54822:116:0;;;12087:21:1;12144:2;12124:18;;;12117:30;12183:29;12163:18;;;12156:57;12230:18;;54822:116:0;11903:351:1;54822:116:0;54958:10;54949:20;;;;:8;:20;;;;;:29;;;54991;;54972:6;54991:9;:29::i;:::-;54286:742;54213:815;;;:::o;59417:160::-;9631:6;;-1:-1:-1;;;;;9631:6:0;8362:10;9778:23;9770:68;;;;-1:-1:-1;;;9770:68:0;;;;;;;:::i;:::-;1847:1:::1;2445:7;;:19:::0;2437:63:::1;;;::::0;-1:-1:-1;;;2437:63:0;;12461:2:1;2437:63:0::1;::::0;::::1;12443:21:1::0;12500:2;12480:18;;;12473:30;12539:33;12519:18;;;12512:61;12590:18;;2437:63:0::1;12259:355:1::0;2437:63:0::1;1847:1;2578:7;:18:::0;59479:7:::2;59500;9631:6:::0;;-1:-1:-1;;;;;9631:6:0;;9558:87;59500:7:::2;-1:-1:-1::0;;;;;59492:21:0::2;59521;59492:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59478:69;;;59566:2;59558:11;;;::::0;::::2;;-1:-1:-1::0;1803:1:0::1;2757:7;:22:::0;59417:160::o;55036:816::-;55137:1;55128:6;:10;:37;;;;;55152:13;;55142:6;:23;;55128:37;55120:65;;;;-1:-1:-1;;;55120:65:0;;;;;;;:::i;:::-;55217:7;55222:1;55217:4;:7::i;:::-;55204:9;:20;;55196:52;;;;-1:-1:-1;;;55196:52:0;;;;;;;:::i;:::-;55307:4;55297:6;55281:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:30;;55259:120;;;;-1:-1:-1;;;55259:120:0;;13031:2:1;55259:120:0;;;13013:21:1;13070:2;13050:18;;;13043:30;13109:34;13089:18;;;13082:62;-1:-1:-1;;;13160:18:1;;;13153:38;13208:19;;55259:120:0;12829:404:1;55259:120:0;55398:6;;;;;;;55390:47;;;;-1:-1:-1;;;55390:47:0;;11109:2:1;55390:47:0;;;11091:21:1;11148:2;11128:18;;;11121:30;11187;11167:18;;;11160:58;11235:18;;55390:47:0;10907:352:1;55390:47:0;55493:13;;55479:10;55470:20;;;;:8;:20;;;;;;:36;55448:122;;;;-1:-1:-1;;;55448:122:0;;13440:2:1;55448:122:0;;;13422:21:1;13479:2;13459:18;;;13452:30;13518:34;13498:18;;;13491:62;-1:-1:-1;;;13569:18:1;;;13562:34;13613:19;;55448:122:0;13238:400:1;55448:122:0;55606:28;;-1:-1:-1;;55623:10:0;11818:2:1;11814:15;11810:53;55606:28:0;;;11798:66:1;55581:12:0;;11880::1;;55606:28:0;;;;;;;;;;;;55596:39;;;;;;55581:54;;55668:39;55687:5;;55668:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;55694:6:0;;;-1:-1:-1;55702:4:0;;-1:-1:-1;55668:18:0;:39::i;:::-;55646:116;;;;-1:-1:-1;;;55646:116:0;;13845:2:1;55646:116:0;;;13827:21:1;13884:2;13864:18;;;13857:30;13923:29;13903:18;;;13896:57;13970:18;;55646:116:0;13643:351:1;55646:116:0;55782:10;55773:20;;;;:8;:20;;;;;:29;;;55815;;55796:6;55815:9;:29::i;39749:185::-;39887:39;39904:4;39910:2;39914:7;39887:39;;;;;;;;;;;;:16;:39::i;56429:1009::-;56516:16;56550:23;56576:17;56586:6;56576:9;:17::i;:::-;56550:43;;56604:30;56651:15;-1:-1:-1;;;;;56637:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56637:30:0;-1:-1:-1;56604:63:0;-1:-1:-1;57538:1:0;56678:22;;56806:592;56845:15;56827;:33;:67;;;;;56881:13;;56864:14;:30;56827:67;56806:592;;;56921:31;56955:27;;;:11;:27;;;;;;;;;56921:61;;;;;;;;;-1:-1:-1;;;;;56921:61:0;;;;-1:-1:-1;;;56921:61:0;;-1:-1:-1;;;;;56921:61:0;;;;;;;;-1:-1:-1;;;56921:61:0;;;;;;;;;;;;;;56999:355;;57045:14;;-1:-1:-1;;;;;57045:28:0;;57041:112;;57119:14;;;-1:-1:-1;57041:112:0;57199:6;-1:-1:-1;;;;;57177:28:0;:18;-1:-1:-1;;;;;57177:28:0;;57173:166;;57263:14;57230:13;57244:15;57230:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;57302:17;;;;:::i;:::-;;;;57173:166;57370:16;;;;:::i;:::-;;;;56906:492;56806:592;;;-1:-1:-1;57417:13:0;;56429:1009;-1:-1:-1;;;;;56429:1009:0:o;58662:80::-;9631:6;;-1:-1:-1;;;;;9631:6:0;8362:10;9778:23;9770:68;;;;-1:-1:-1;;;9770:68:0;;;;;;;:::i;:::-;58726:8:::1;::::0;;-1:-1:-1;;58714:20:0;::::1;58726:8:::0;;;;::::1;;;58725:9;58714:20:::0;;::::1;;::::0;;58662:80::o;59200:92::-;9631:6;;-1:-1:-1;;;;;9631:6:0;8362:10;9778:23;9770:68;;;;-1:-1:-1;;;9770:68:0;;;;;;;:::i;:::-;59266:6:::1;:18:::0;59200:92::o;36947:125::-;37011:7;37038:21;37051:7;37038:12;:21::i;:::-;:26;;36947:125;-1:-1:-1;;36947:125:0:o;34393:206::-;34457:7;-1:-1:-1;;;;;34481:19:0;;34477:60;;34509:28;;-1:-1:-1;;;34509:28:0;;;;;;;;;;;34477:60;-1:-1:-1;;;;;;34563:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;34563:27:0;;34393:206::o;10209:103::-;9631:6;;-1:-1:-1;;;;;9631:6:0;8362:10;9778:23;9770:68;;;;-1:-1:-1;;;9770:68:0;;;;;;;:::i;:::-;10274:30:::1;10301:1;10274:18;:30::i;:::-;10209:103::o:0;54029:176::-;9631:6;;-1:-1:-1;;;;;9631:6:0;8362:10;9778:23;9770:68;;;;-1:-1:-1;;;9770:68:0;;;;;;;:::i;:::-;54107:9:::1;54102:96;54122:9;:16;54118:1;:20;54102:96;;;54160:26;54170:9;54180:1;54170:12;;;;;;;;:::i;:::-;;;;;;;54184:1;54160:9;:26::i;:::-;54140:3:::0;::::1;::::0;::::1;:::i;:::-;;;;54102:96;;58988:98:::0;9631:6;;-1:-1:-1;;;;;9631:6:0;8362:10;9778:23;9770:68;;;;-1:-1:-1;;;9770:68:0;;;;;;;:::i;:::-;59060:18;;::::1;::::0;:6:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;58404:82::-:0;9631:6;;-1:-1:-1;;;;;9631:6:0;8362:10;9778:23;9770:68;;;;-1:-1:-1;;;9770:68:0;;;;;;;:::i;:::-;58470:8:::1;::::0;;-1:-1:-1;;58458:20:0;::::1;58470:8;::::0;;::::1;58469:9;58458:20;::::0;;58404:82::o;53747:274::-;53796:7;53820:4;53828:1;53820:9;53816:60;;-1:-1:-1;53853:11:0;;53747:274;-1:-1:-1;53747:274:0:o;53816:60::-;53890:4;53898:1;53890:9;53886:59;;-1:-1:-1;53923:10:0;;53747:274;-1:-1:-1;53747:274:0:o;53886:59::-;53967:1;53959:4;:9;53955:59;;-1:-1:-1;53992:10:0;;53747:274;-1:-1:-1;53747:274:0:o;53955:59::-;53747:274;;;:::o;37308:104::-;37364:13;37397:7;37390:14;;;;;:::i;58494:76::-;9631:6;;-1:-1:-1;;;;;9631:6:0;8362:10;9778:23;9770:68;;;;-1:-1:-1;;;9770:68:0;;;;;;;:::i;:::-;58556:6:::1;::::0;;-1:-1:-1;;58546:16:0;::::1;58556:6;::::0;;;::::1;;;58555:7;58546:16:::0;;::::1;;::::0;;58494:76::o;55860:433::-;55933:1;55924:6;:10;:37;;;;;55948:13;;55938:6;:23;;55924:37;55916:65;;;;-1:-1:-1;;;55916:65:0;;;;;;;:::i;:::-;56013:7;56018:1;56013:4;:7::i;:::-;56000:9;:20;;55992:52;;;;-1:-1:-1;;;55992:52:0;;;;;;;:::i;:::-;56103:4;56093:6;56077:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:30;;56055:124;;;;-1:-1:-1;;;56055:124:0;;14473:2:1;56055:124:0;;;14455:21:1;14512:2;14492:18;;;14485:30;14551:34;14531:18;;;14524:62;-1:-1:-1;;;14602:18:1;;;14595:42;14654:19;;56055:124:0;14271:408:1;56055:124:0;56198:8;;;;56190:53;;;;-1:-1:-1;;;56190:53:0;;14886:2:1;56190:53:0;;;14868:21:1;;;14905:18;;;14898:30;14964:34;14944:18;;;14937:62;15016:18;;56190:53:0;14684:356:1;56190:53:0;56256:29;56266:10;56278:6;56256:9;:29::i;:::-;55860:433;:::o;38919:287::-;8362:10;-1:-1:-1;;;;;39018:24:0;;;39014:54;;39051:17;;-1:-1:-1;;;39051:17:0;;;;;;;;;;;39014:54;8362:10;39081:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;39081:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;39081:53:0;;;;;;;;;;39150:48;;725:41:1;;;39081:42:0;;8362:10;39150:48;;698:18:1;39150:48:0;;;;;;;38919:287;;:::o;59300:92::-;9631:6;;-1:-1:-1;;;;;9631:6:0;8362:10;9778:23;9770:68;;;;-1:-1:-1;;;9770:68:0;;;;;;;:::i;:::-;59366:6:::1;:18:::0;59300:92::o;40005:370::-;40172:28;40182:4;40188:2;40192:7;40172:9;:28::i;:::-;-1:-1:-1;;;;;40215:13:0;;12554:19;:23;40211:157;;40236:56;40267:4;40273:2;40277:7;40286:5;40236:30;:56::i;:::-;40232:136;;40316:40;;-1:-1:-1;;;40316:40:0;;;;;;;;;;;57555:713;57674:13;57727:17;57735:8;57727:7;:17::i;:::-;57705:114;;;;-1:-1:-1;;;57705:114:0;;15247:2:1;57705:114:0;;;15229:21:1;15286:2;15266:18;;;15259:30;15325:34;15305:18;;;15298:62;-1:-1:-1;;;15376:18:1;;;15369:45;15431:19;;57705:114:0;15045:411:1;57705:114:0;57836:8;;;;;;;:17;;57848:5;57836:17;57832:63;;57877:6;57870:13;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57555:713;;;:::o;57832:63::-;57907:28;57938:10;:8;:10::i;:::-;57907:41;;58010:1;57985:14;57979:28;:32;:281;;;;;;;;;;;;;;;;;58103:14;58144:19;:8;:17;:19::i;:::-;58190:6;58060:159;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57979:281;57959:301;57555:713;-1:-1:-1;;;57555:713:0:o;59094:98::-;9631:6;;-1:-1:-1;;;;;9631:6:0;8362:10;9778:23;9770:68;;;;-1:-1:-1;;;9770:68:0;;;;;;;:::i;:::-;59166:18;;::::1;::::0;:6:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;58578:76::-:0;9631:6;;-1:-1:-1;;;;;9631:6:0;8362:10;9778:23;9770:68;;;;-1:-1:-1;;;9770:68:0;;;;;;;:::i;:::-;58640:6:::1;::::0;;-1:-1:-1;;58630:16:0;::::1;58640:6:::0;;;;::::1;;;58639:7;58630:16:::0;;::::1;;::::0;;58578:76::o;10467:201::-;9631:6;;-1:-1:-1;;;;;9631:6:0;8362:10;9778:23;9770:68;;;;-1:-1:-1;;;9770:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10556:22:0;::::1;10548:73;;;::::0;-1:-1:-1;;;10548:73:0;;17321:2:1;10548:73:0::1;::::0;::::1;17303:21:1::0;17360:2;17340:18;;;17333:30;17399:34;17379:18;;;17372:62;-1:-1:-1;;;17450:18:1;;;17443:36;17496:19;;10548:73:0::1;17119:402:1::0;10548:73:0::1;10632:28;10651:8;10632:18;:28::i;40630:174::-:0;40687:4;40730:7;57538:1;40711:26;;:53;;;;;40751:13;;40741:7;:23;40711:53;:85;;;;-1:-1:-1;;40769:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;40769:27:0;;;;40768:28;;40630:174::o;49852:196::-;49967:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;49967:29:0;-1:-1:-1;;;;;49967:29:0;;;;;;;;;50012:28;;49967:24;;50012:28;;;;;;;49852:196;;;:::o;40888:104::-;40957:27;40967:2;40971:8;40957:27;;;;;;;;;;;;:9;:27::i;44800:2130::-;44915:35;44953:21;44966:7;44953:12;:21::i;:::-;44915:59;;45013:4;-1:-1:-1;;;;;44991:26:0;:13;:18;;;-1:-1:-1;;;;;44991:26:0;;44987:67;;45026:28;;-1:-1:-1;;;45026:28:0;;;;;;;;;;;44987:67;45067:22;8362:10;-1:-1:-1;;;;;45093:20:0;;;;:73;;-1:-1:-1;45130:36:0;45147:4;8362:10;39277:164;:::i;45130:36::-;45093:126;;;-1:-1:-1;8362:10:0;45183:20;45195:7;45183:11;:20::i;:::-;-1:-1:-1;;;;;45183:36:0;;45093:126;45067:153;;45238:17;45233:66;;45264:35;;-1:-1:-1;;;45264:35:0;;;;;;;;;;;45233:66;-1:-1:-1;;;;;45314:16:0;;45310:52;;45339:23;;-1:-1:-1;;;45339:23:0;;;;;;;;;;;45310:52;45483:35;45500:1;45504:7;45513:4;45483:8;:35::i;:::-;-1:-1:-1;;;;;45814:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;45814:31:0;;;-1:-1:-1;;;;;45814:31:0;;;-1:-1:-1;;45814:31:0;;;;;;;45860:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;45860:29:0;;;;;;;;;;;45940:20;;;:11;:20;;;;;;45975:18;;-1:-1:-1;;;;;;46008:49:0;;;;-1:-1:-1;;;46041:15:0;46008:49;;;;;;;;;;46331:11;;46391:24;;;;;46434:13;;45940:20;;46391:24;;46434:13;46430:384;;46644:13;;46629:11;:28;46625:174;;46682:20;;46751:28;;;;-1:-1:-1;;;;;46725:54:0;-1:-1:-1;;;46725:54:0;-1:-1:-1;;;;;;46725:54:0;;;-1:-1:-1;;;;;46682:20:0;;46725:54;;;;46625:174;45789:1036;;;46861:7;46857:2;-1:-1:-1;;;;;46842:27:0;46851:4;-1:-1:-1;;;;;46842:27:0;;;;;;;;;;;44904:2026;;44800:2130;;;:::o;4014:190::-;4139:4;4192;4163:25;4176:5;4183:4;4163:12;:25::i;:::-;:33;;4014:190;-1:-1:-1;;;;4014:190:0:o;35774:1111::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;35885:7:0;;57538:1;35934:23;35930:888;;35970:13;;35963:4;:20;35959:859;;;36004:31;36038:17;;;:11;:17;;;;;;;;;36004:51;;;;;;;;;-1:-1:-1;;;;;36004:51:0;;;;-1:-1:-1;;;36004:51:0;;-1:-1:-1;;;;;36004:51:0;;;;;;;;-1:-1:-1;;;36004:51:0;;;;;;;;;;;;;;36074:729;;36124:14;;-1:-1:-1;;;;;36124:28:0;;36120:101;;36188:9;35774:1111;-1:-1:-1;;;35774:1111:0:o;36120:101::-;-1:-1:-1;;;36563:6:0;36608:17;;;;:11;:17;;;;;;;;;36596:29;;;;;;;;;-1:-1:-1;;;;;36596:29:0;;;;;-1:-1:-1;;;36596:29:0;;-1:-1:-1;;;;;36596:29:0;;;;;;;;-1:-1:-1;;;36596:29:0;;;;;;;;;;;;;36656:28;36652:109;;36724:9;35774:1111;-1:-1:-1;;;35774:1111:0:o;36652:109::-;36523:261;;;35985:833;35959:859;36846:31;;-1:-1:-1;;;36846:31:0;;;;;;;;;;;10828:191;10921:6;;;-1:-1:-1;;;;;10938:17:0;;;-1:-1:-1;;;;;;10938:17:0;;;;;;;10971:40;;10921:6;;;10938:17;10921:6;;10971:40;;10902:16;;10971:40;10891:128;10828:191;:::o;50540:667::-;50724:72;;-1:-1:-1;;;50724:72:0;;50703:4;;-1:-1:-1;;;;;50724:36:0;;;;;:72;;8362:10;;50775:4;;50781:7;;50790:5;;50724:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50724:72:0;;;;;;;;-1:-1:-1;;50724:72:0;;;;;;;;;;;;:::i;:::-;;;50720:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50958:6;:13;50975:1;50958:18;50954:235;;51004:40;;-1:-1:-1;;;51004:40:0;;;;;;;;;;;50954:235;51147:6;51141:13;51132:6;51128:2;51124:15;51117:38;50720:480;-1:-1:-1;;;;;;50843:55:0;-1:-1:-1;;;50843:55:0;;-1:-1:-1;50720:480:0;50540:667;;;;;;:::o;58276:104::-;58336:13;58369:3;58362:10;;;;;:::i;5844:723::-;5900:13;6121:5;6130:1;6121:10;6117:53;;-1:-1:-1;;6148:10:0;;;;;;;;;;;;-1:-1:-1;;;6148:10:0;;;;;5844:723::o;6117:53::-;6195:5;6180:12;6236:78;6243:9;;6236:78;;6269:8;;;;:::i;:::-;;-1:-1:-1;6292:10:0;;-1:-1:-1;6300:2:0;6292:10;;:::i;:::-;;;6236:78;;;6324:19;6356:6;-1:-1:-1;;;;;6346:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6346:17:0;;6324:39;;6374:154;6381:10;;6374:154;;6408:11;6418:1;6408:11;;:::i;:::-;;-1:-1:-1;6477:10:0;6485:2;6477:5;:10;:::i;:::-;6464:24;;:2;:24;:::i;:::-;6451:39;;6434:6;6441;6434:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6434:56:0;;;;;;;;-1:-1:-1;6505:11:0;6514:2;6505:11;;:::i;:::-;;;6374:154;;41365:1749;41488:20;41511:13;-1:-1:-1;;;;;41539:16:0;;41535:48;;41564:19;;-1:-1:-1;;;41564:19:0;;;;;;;;;;;41535:48;41598:8;41610:1;41598:13;41594:44;;41620:18;;-1:-1:-1;;;41620:18:0;;;;;;;;;;;41594:44;-1:-1:-1;;;;;41989:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;42048:49:0;;-1:-1:-1;;;;;41989:44:0;;;;;;;42048:49;;;;-1:-1:-1;;41989:44:0;;;;;;42048:49;;;;;;;;;;;;;;;;42114:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;42164:66:0;;;-1:-1:-1;;;42214:15:0;42164:66;;;;;;;;;;;;;42114:25;;42311:23;;;;12554:19;:23;42351:631;;42391:313;42422:38;;42447:12;;-1:-1:-1;;;;;42422:38:0;;;42439:1;;42422:38;;42439:1;;42422:38;42488:69;42527:1;42531:2;42535:14;;;;;;42551:5;42488:30;:69::i;:::-;42483:174;;42593:40;;-1:-1:-1;;;42593:40:0;;;;;;;;;;;42483:174;42699:3;42684:12;:18;42391:313;;42785:12;42768:13;;:29;42764:43;;42799:8;;;42764:43;42351:631;;;42848:119;42879:40;;42904:14;;;;;-1:-1:-1;;;;;42879:40:0;;;42896:1;;42879:40;;42896:1;;42879:40;42962:3;42947:12;:18;42848:119;;42351:631;-1:-1:-1;42996:13:0;:28;;;43046:60;;43079:2;43083:12;43097:8;43046:60;:::i;4565:675::-;4648:7;4691:4;4648:7;4706:497;4730:5;:12;4726:1;:16;4706:497;;;4764:20;4787:5;4793:1;4787:8;;;;;;;;:::i;:::-;;;;;;;4764:31;;4830:12;4814;:28;4810:382;;5316:13;5366:15;;;5402:4;5395:15;;;5449:4;5433:21;;4942:57;;4810:382;;;5316:13;5366:15;;;5402:4;5395:15;;;5449:4;5433:21;;5119:57;;4810:382;-1:-1:-1;4744:3:0;;;;:::i;:::-;;;;4706:497;;;-1:-1:-1;5220:12:0;4565:675;-1:-1:-1;;;4565:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:180:1;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;199:131::-;-1:-1:-1;;;;;;273:32:1;;263:43;;253:71;;320:1;317;310:12;335:245;393:6;446:2;434:9;425:7;421:23;417:32;414:52;;;462:1;459;452:12;414:52;501:9;488:23;520:30;544:5;520:30;:::i;777:127::-;838:10;833:3;829:20;826:1;819:31;869:4;866:1;859:15;893:4;890:1;883:15;909:275;980:2;974:9;1045:2;1026:13;;-1:-1:-1;;1022:27:1;1010:40;;-1:-1:-1;;;;;1065:34:1;;1101:22;;;1062:62;1059:88;;;1127:18;;:::i;:::-;1163:2;1156:22;909:275;;-1:-1:-1;909:275:1:o;1189:407::-;1254:5;-1:-1:-1;;;;;1280:6:1;1277:30;1274:56;;;1310:18;;:::i;:::-;1348:57;1393:2;1372:15;;-1:-1:-1;;1368:29:1;1399:4;1364:40;1348:57;:::i;:::-;1339:66;;1428:6;1421:5;1414:21;1468:3;1459:6;1454:3;1450:16;1447:25;1444:45;;;1485:1;1482;1475:12;1444:45;1534:6;1529:3;1522:4;1515:5;1511:16;1498:43;1588:1;1581:4;1572:6;1565:5;1561:18;1557:29;1550:40;1189:407;;;;;:::o;1601:451::-;1670:6;1723:2;1711:9;1702:7;1698:23;1694:32;1691:52;;;1739:1;1736;1729:12;1691:52;1779:9;1766:23;-1:-1:-1;;;;;1804:6:1;1801:30;1798:50;;;1844:1;1841;1834:12;1798:50;1867:22;;1920:4;1912:13;;1908:27;-1:-1:-1;1898:55:1;;1949:1;1946;1939:12;1898:55;1972:74;2038:7;2033:2;2020:16;2015:2;2011;2007:11;1972:74;:::i;2057:258::-;2129:1;2139:113;2153:6;2150:1;2147:13;2139:113;;;2229:11;;;2223:18;2210:11;;;2203:39;2175:2;2168:10;2139:113;;;2270:6;2267:1;2264:13;2261:48;;;-1:-1:-1;;2305:1:1;2287:16;;2280:27;2057:258::o;2320:::-;2362:3;2400:5;2394:12;2427:6;2422:3;2415:19;2443:63;2499:6;2492:4;2487:3;2483:14;2476:4;2469:5;2465:16;2443:63;:::i;:::-;2560:2;2539:15;-1:-1:-1;;2535:29:1;2526:39;;;;2567:4;2522:50;;2320:258;-1:-1:-1;;2320:258:1:o;2583:220::-;2732:2;2721:9;2714:21;2695:4;2752:45;2793:2;2782:9;2778:18;2770:6;2752:45;:::i;3016:173::-;3084:20;;-1:-1:-1;;;;;3133:31:1;;3123:42;;3113:70;;3179:1;3176;3169:12;3194:254;3262:6;3270;3323:2;3311:9;3302:7;3298:23;3294:32;3291:52;;;3339:1;3336;3329:12;3291:52;3362:29;3381:9;3362:29;:::i;:::-;3352:39;3438:2;3423:18;;;;3410:32;;-1:-1:-1;;;3194:254:1:o;3635:328::-;3712:6;3720;3728;3781:2;3769:9;3760:7;3756:23;3752:32;3749:52;;;3797:1;3794;3787:12;3749:52;3820:29;3839:9;3820:29;:::i;:::-;3810:39;;3868:38;3902:2;3891:9;3887:18;3868:38;:::i;:::-;3858:48;;3953:2;3942:9;3938:18;3925:32;3915:42;;3635:328;;;;;:::o;3968:683::-;4063:6;4071;4079;4132:2;4120:9;4111:7;4107:23;4103:32;4100:52;;;4148:1;4145;4138:12;4100:52;4184:9;4171:23;4161:33;;4245:2;4234:9;4230:18;4217:32;-1:-1:-1;;;;;4309:2:1;4301:6;4298:14;4295:34;;;4325:1;4322;4315:12;4295:34;4363:6;4352:9;4348:22;4338:32;;4408:7;4401:4;4397:2;4393:13;4389:27;4379:55;;4430:1;4427;4420:12;4379:55;4470:2;4457:16;4496:2;4488:6;4485:14;4482:34;;;4512:1;4509;4502:12;4482:34;4565:7;4560:2;4550:6;4547:1;4543:14;4539:2;4535:23;4531:32;4528:45;4525:65;;;4586:1;4583;4576:12;4525:65;4617:2;4613;4609:11;4599:21;;4639:6;4629:16;;;;;3968:683;;;;;:::o;4656:186::-;4715:6;4768:2;4756:9;4747:7;4743:23;4739:32;4736:52;;;4784:1;4781;4774:12;4736:52;4807:29;4826:9;4807:29;:::i;4847:632::-;5018:2;5070:21;;;5140:13;;5043:18;;;5162:22;;;4989:4;;5018:2;5241:15;;;;5215:2;5200:18;;;4989:4;5284:169;5298:6;5295:1;5292:13;5284:169;;;5359:13;;5347:26;;5428:15;;;;5393:12;;;;5320:1;5313:9;5284:169;;;-1:-1:-1;5470:3:1;;4847:632;-1:-1:-1;;;;;;4847:632:1:o;5669:952::-;5753:6;5784:2;5827;5815:9;5806:7;5802:23;5798:32;5795:52;;;5843:1;5840;5833:12;5795:52;5883:9;5870:23;-1:-1:-1;;;;;5953:2:1;5945:6;5942:14;5939:34;;;5969:1;5966;5959:12;5939:34;6007:6;5996:9;5992:22;5982:32;;6052:7;6045:4;6041:2;6037:13;6033:27;6023:55;;6074:1;6071;6064:12;6023:55;6110:2;6097:16;6132:2;6128;6125:10;6122:36;;;6138:18;;:::i;:::-;6184:2;6181:1;6177:10;6167:20;;6207:28;6231:2;6227;6223:11;6207:28;:::i;:::-;6269:15;;;6339:11;;;6335:20;;;6300:12;;;;6367:19;;;6364:39;;;6399:1;6396;6389:12;6364:39;6423:11;;;;6443:148;6459:6;6454:3;6451:15;6443:148;;;6525:23;6544:3;6525:23;:::i;:::-;6513:36;;6476:12;;;;6569;;;;6443:148;;;6610:5;5669:952;-1:-1:-1;;;;;;;;5669:952:1:o;6808:347::-;6873:6;6881;6934:2;6922:9;6913:7;6909:23;6905:32;6902:52;;;6950:1;6947;6940:12;6902:52;6973:29;6992:9;6973:29;:::i;:::-;6963:39;;7052:2;7041:9;7037:18;7024:32;7099:5;7092:13;7085:21;7078:5;7075:32;7065:60;;7121:1;7118;7111:12;7065:60;7144:5;7134:15;;;6808:347;;;;;:::o;7160:667::-;7255:6;7263;7271;7279;7332:3;7320:9;7311:7;7307:23;7303:33;7300:53;;;7349:1;7346;7339:12;7300:53;7372:29;7391:9;7372:29;:::i;:::-;7362:39;;7420:38;7454:2;7443:9;7439:18;7420:38;:::i;:::-;7410:48;;7505:2;7494:9;7490:18;7477:32;7467:42;;7560:2;7549:9;7545:18;7532:32;-1:-1:-1;;;;;7579:6:1;7576:30;7573:50;;;7619:1;7616;7609:12;7573:50;7642:22;;7695:4;7687:13;;7683:27;-1:-1:-1;7673:55:1;;7724:1;7721;7714:12;7673:55;7747:74;7813:7;7808:2;7795:16;7790:2;7786;7782:11;7747:74;:::i;:::-;7737:84;;;7160:667;;;;;;;:::o;7832:260::-;7900:6;7908;7961:2;7949:9;7940:7;7936:23;7932:32;7929:52;;;7977:1;7974;7967:12;7929:52;8000:29;8019:9;8000:29;:::i;:::-;7990:39;;8048:38;8082:2;8071:9;8067:18;8048:38;:::i;:::-;8038:48;;7832:260;;;;;:::o;8097:356::-;8299:2;8281:21;;;8318:18;;;8311:30;8377:34;8372:2;8357:18;;8350:62;8444:2;8429:18;;8097:356::o;8458:380::-;8537:1;8533:12;;;;8580;;;8601:61;;8655:4;8647:6;8643:17;8633:27;;8601:61;8708:2;8700:6;8697:14;8677:18;8674:38;8671:161;;8754:10;8749:3;8745:20;8742:1;8735:31;8789:4;8786:1;8779:15;8817:4;8814:1;8807:15;8671:161;;8458:380;;;:::o;9192:127::-;9253:10;9248:3;9244:20;9241:1;9234:31;9284:4;9281:1;9274:15;9308:4;9305:1;9298:15;9324:128;9364:3;9395:1;9391:6;9388:1;9385:13;9382:39;;;9401:18;;:::i;:::-;-1:-1:-1;9437:9:1;;9324:128::o;9806:339::-;10008:2;9990:21;;;10047:2;10027:18;;;10020:30;-1:-1:-1;;;10081:2:1;10066:18;;10059:45;10136:2;10121:18;;9806:339::o;10150:343::-;10352:2;10334:21;;;10391:2;10371:18;;;10364:30;-1:-1:-1;;;10425:2:1;10410:18;;10403:49;10484:2;10469:18;;10150:343::o;13999:127::-;14060:10;14055:3;14051:20;14048:1;14041:31;14091:4;14088:1;14081:15;14115:4;14112:1;14105:15;14131:135;14170:3;14191:17;;;14188:43;;14211:18;;:::i;:::-;-1:-1:-1;14258:1:1;14247:13;;14131:135::o;15587:1527::-;15811:3;15849:6;15843:13;15875:4;15888:51;15932:6;15927:3;15922:2;15914:6;15910:15;15888:51;:::i;:::-;16002:13;;15961:16;;;;16024:55;16002:13;15961:16;16046:15;;;16024:55;:::i;:::-;16168:13;;16101:20;;;16141:1;;16228;16250:18;;;;16303;;;;16330:93;;16408:4;16398:8;16394:19;16382:31;;16330:93;16471:2;16461:8;16458:16;16438:18;16435:40;16432:167;;-1:-1:-1;;;16498:33:1;;16554:4;16551:1;16544:15;16584:4;16505:3;16572:17;16432:167;16615:18;16642:110;;;;16766:1;16761:328;;;;16608:481;;16642:110;-1:-1:-1;;16677:24:1;;16663:39;;16722:20;;;;-1:-1:-1;16642:110:1;;16761:328;15534:1;15527:14;;;15571:4;15558:18;;16856:1;16870:169;16884:8;16881:1;16878:15;16870:169;;;16966:14;;16951:13;;;16944:37;17009:16;;;;16901:10;;16870:169;;;16874:3;;17070:8;17063:5;17059:20;17052:27;;16608:481;-1:-1:-1;17105:3:1;;15587:1527;-1:-1:-1;;;;;;;;;;;15587:1527:1:o;17526:489::-;-1:-1:-1;;;;;17795:15:1;;;17777:34;;17847:15;;17842:2;17827:18;;17820:43;17894:2;17879:18;;17872:34;;;17942:3;17937:2;17922:18;;17915:31;;;17720:4;;17963:46;;17989:19;;17981:6;17963:46;:::i;:::-;17955:54;17526:489;-1:-1:-1;;;;;;17526:489:1:o;18020:249::-;18089:6;18142:2;18130:9;18121:7;18117:23;18113:32;18110:52;;;18158:1;18155;18148:12;18110:52;18190:9;18184:16;18209:30;18233:5;18209:30;:::i;18274:127::-;18335:10;18330:3;18326:20;18323:1;18316:31;18366:4;18363:1;18356:15;18390:4;18387:1;18380:15;18406:120;18446:1;18472;18462:35;;18477:18;;:::i;:::-;-1:-1:-1;18511:9:1;;18406:120::o;18531:125::-;18571:4;18599:1;18596;18593:8;18590:34;;;18604:18;;:::i;:::-;-1:-1:-1;18641:9:1;;18531:125::o;18661:112::-;18693:1;18719;18709:35;;18724:18;;:::i;:::-;-1:-1:-1;18758:9:1;;18661:112::o

Swarm Source

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