ETH Price: $3,389.09 (-1.55%)
Gas: 1 Gwei

Token

Ad Astra Club (Ad Astra Club)
 

Overview

Max Total Supply

3,333 Ad Astra Club

Holders

1,000

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
losemoney.eth
Balance
7 Ad Astra Club
0xcd74df7b8f0e01aA57FF5cE2518C53439370A4df
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:
AdAstraClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * 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/Address.sol


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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



// Creator: Chiru Labs



pragma solidity ^0.8.4;










error ApprovalCallerNotOwnerNorApproved();

error ApprovalQueryForNonexistentToken();

error ApproveToCaller();

error ApprovalToCurrentOwner();

error BalanceQueryForZeroAddress();

error MintToZeroAddress();

error MintZeroQuantity();

error OwnerQueryForNonexistentToken();

error TransferCallerNotOwnerNorApproved();

error TransferFromIncorrectOwner();

error TransferToNonERC721ReceiverImplementer();

error TransferToZeroAddress();

error URIQueryForNonexistentToken();



/**

 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including

 * the Metadata extension. Built to optimize for lower gas during batch mints.

 *

 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).

 *

 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.

 *

 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).

 */

contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {

    using Address for address;

    using Strings for uint256;



    // Compiler will pack this into a single 256bit word.

    struct TokenOwnership {

        // The address of the owner.

        address addr;

        // Keeps track of the start time of ownership with minimal overhead for tokenomics.

        uint64 startTimestamp;

        // Whether the token has been burned.

        bool burned;

    }



    // Compiler will pack this into a single 256bit word.

    struct AddressData {

        // Realistically, 2**64-1 is more than enough.

        uint64 balance;

        // Keeps track of mint count with minimal overhead for tokenomics.

        uint64 numberMinted;

        // Keeps track of burn count with minimal overhead for tokenomics.

        uint64 numberBurned;

        // For miscellaneous variable(s) pertaining to the address

        // (e.g. number of whitelist mint slots used).

        // If there are multiple variables, please pack them into a uint64.

        uint64 aux;

    }



    // The tokenId of the next token to be minted.

    uint256 internal _currentIndex;



    // The number of tokens burned.

    uint256 internal _burnCounter;



    // Token name

    string private _name;



    // Token symbol

    string private _symbol;



    // Mapping from token ID to ownership details

    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.

    mapping(uint256 => TokenOwnership) internal _ownerships;



    // Mapping owner address to address data

    mapping(address => AddressData) private _addressData;



    // Mapping from token ID to approved address

    mapping(uint256 => address) private _tokenApprovals;



    // Mapping from owner to operator approvals

    mapping(address => mapping(address => bool)) private _operatorApprovals;



    constructor(string memory name_, string memory symbol_) {

        _name = name_;

        _symbol = symbol_;

        _currentIndex = _startTokenId();

    }



    /**

     * To change the starting tokenId, please override this function.

     */

    function _startTokenId() internal view virtual returns (uint256) {

        return 1;

    }



    /**

     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.

     */

    function totalSupply() public view returns (uint256) {

        // Counter underflow is impossible as _burnCounter cannot be incremented

        // more than _currentIndex - _startTokenId() times

        unchecked {

            return _currentIndex - _burnCounter - _startTokenId();

        }

    }



    /**

     * Returns the total amount of tokens minted in the contract.

     */

    function _totalMinted() internal view returns (uint256) {

        // Counter underflow is impossible as _currentIndex does not decrement,

        // and it is initialized to _startTokenId()

        unchecked {

            return _currentIndex - _startTokenId();

        }

    }



    /**

     * @dev See {IERC165-supportsInterface}.

     */

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {

        return

            interfaceId == type(IERC721).interfaceId ||

            interfaceId == type(IERC721Metadata).interfaceId ||

            super.supportsInterface(interfaceId);

    }



    /**

     * @dev See {IERC721-balanceOf}.

     */

    function balanceOf(address owner) public view override returns (uint256) {

        if (owner == address(0)) revert BalanceQueryForZeroAddress();

        return uint256(_addressData[owner].balance);

    }



    /**

     * Returns the number of tokens minted by `owner`.

     */

    function _numberMinted(address owner) internal view returns (uint256) {

        return uint256(_addressData[owner].numberMinted);

    }



    /**

     * Returns the number of tokens burned by or on behalf of `owner`.

     */

    function _numberBurned(address owner) internal view returns (uint256) {

        return uint256(_addressData[owner].numberBurned);

    }



    /**

     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).

     */

    function _getAux(address owner) internal view returns (uint64) {

        return _addressData[owner].aux;

    }



    /**

     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).

     * If there are multiple variables, please pack them into a uint64.

     */

    function _setAux(address owner, uint64 aux) internal {

        _addressData[owner].aux = aux;

    }



    /**

     * Gas spent here starts off proportional to the maximum mint batch size.

     * It gradually moves to O(1) as tokens get transferred around in the collection over time.

     */

    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {

        uint256 curr = tokenId;



        unchecked {

            if (_startTokenId() <= curr && curr < _currentIndex) {

                TokenOwnership memory ownership = _ownerships[curr];

                if (!ownership.burned) {

                    if (ownership.addr != address(0)) {

                        return ownership;

                    }

                    // Invariant:

                    // There will always be an ownership that has an address and is not burned

                    // before an ownership that does not have an address and is not burned.

                    // Hence, curr will not underflow.

                    while (true) {

                        curr--;

                        ownership = _ownerships[curr];

                        if (ownership.addr != address(0)) {

                            return ownership;

                        }

                    }

                }

            }

        }

        revert OwnerQueryForNonexistentToken();

    }



    /**

     * @dev See {IERC721-ownerOf}.

     */

    function ownerOf(uint256 tokenId) public view override returns (address) {

        return _ownershipOf(tokenId).addr;

    }



    /**

     * @dev See {IERC721Metadata-name}.

     */

    function name() public view virtual override returns (string memory) {

        return _name;

    }



    /**

     * @dev See {IERC721Metadata-symbol}.

     */

    function symbol() public view virtual override returns (string memory) {

        return _symbol;

    }



    /**

     * @dev See {IERC721Metadata-tokenURI}.

     */

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {

        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();



        string memory baseURI = _baseURI();

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

    }



    /**

     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each

     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty

     * by default, can be overriden in child contracts.

     */

    function _baseURI() internal view virtual returns (string memory) {

        return '';

    }



    /**

     * @dev See {IERC721-approve}.

     */

    function approve(address to, uint256 tokenId) public override {

        address owner = ERC721A.ownerOf(tokenId);

        if (to == owner) revert ApprovalToCurrentOwner();



        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {

            revert ApprovalCallerNotOwnerNorApproved();

        }



        _approve(to, tokenId, owner);

    }



    /**

     * @dev See {IERC721-getApproved}.

     */

    function getApproved(uint256 tokenId) public view override returns (address) {

        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();



        return _tokenApprovals[tokenId];

    }



    /**

     * @dev See {IERC721-setApprovalForAll}.

     */

    function setApprovalForAll(address operator, bool approved) public virtual override {

        if (operator == _msgSender()) revert ApproveToCaller();



        _operatorApprovals[_msgSender()][operator] = approved;

        emit ApprovalForAll(_msgSender(), operator, approved);

    }



    /**

     * @dev See {IERC721-isApprovedForAll}.

     */

    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {

        return _operatorApprovals[owner][operator];

    }



    /**

     * @dev See {IERC721-transferFrom}.

     */

    function transferFrom(

        address from,

        address to,

        uint256 tokenId

    ) public virtual override {

        _transfer(from, to, tokenId);

    }



    /**

     * @dev See {IERC721-safeTransferFrom}.

     */

    function safeTransferFrom(

        address from,

        address to,

        uint256 tokenId

    ) public virtual override {

        safeTransferFrom(from, to, tokenId, '');

    }



    /**

     * @dev See {IERC721-safeTransferFrom}.

     */

    function safeTransferFrom(

        address from,

        address to,

        uint256 tokenId,

        bytes memory _data

    ) public virtual override {

        _transfer(from, to, tokenId);

        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {

            revert TransferToNonERC721ReceiverImplementer();

        }

    }



    /**

     * @dev Returns whether `tokenId` exists.

     *

     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.

     *

     * Tokens start existing when they are minted (`_mint`),

     */

    function _exists(uint256 tokenId) internal view returns (bool) {

        return _startTokenId() <= tokenId && tokenId < _currentIndex &&

            !_ownerships[tokenId].burned;

    }



    function _safeMint(address to, uint256 quantity) internal {

        _safeMint(to, quantity, '');

    }



    /**

     * @dev Safely mints `quantity` tokens and transfers them to `to`.

     *

     * Requirements:

     *

     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.

     * - `quantity` must be greater than 0.

     *

     * Emits a {Transfer} event.

     */

    function _safeMint(

        address to,

        uint256 quantity,

        bytes memory _data

    ) internal {

        _mint(to, quantity, _data, true);

    }



    /**

     * @dev Mints `quantity` tokens and transfers them to `to`.

     *

     * Requirements:

     *

     * - `to` cannot be the zero address.

     * - `quantity` must be greater than 0.

     *

     * Emits a {Transfer} event.

     */

    function _mint(

        address to,

        uint256 quantity,

        bytes memory _data,

        bool safe

    ) internal {

        uint256 startTokenId = _currentIndex;

        if (to == address(0)) revert MintToZeroAddress();

        if (quantity == 0) revert MintZeroQuantity();



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



        // Overflows are incredibly unrealistic.

        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1

        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1

        unchecked {

            _addressData[to].balance += uint64(quantity);

            _addressData[to].numberMinted += uint64(quantity);



            _ownerships[startTokenId].addr = to;

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



            uint256 updatedIndex = startTokenId;

            uint256 end = updatedIndex + quantity;



            if (safe && to.isContract()) {

                do {

                    emit Transfer(address(0), to, updatedIndex);

                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {

                        revert TransferToNonERC721ReceiverImplementer();

                    }

                } while (updatedIndex != end);

                // Reentrancy protection

                if (_currentIndex != startTokenId) revert();

            } else {

                do {

                    emit Transfer(address(0), to, updatedIndex++);

                } while (updatedIndex != end);

            }

            _currentIndex = updatedIndex;

        }

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

    }



    /**

     * @dev Transfers `tokenId` from `from` to `to`.

     *

     * Requirements:

     *

     * - `to` cannot be the zero address.

     * - `tokenId` token must be owned by `from`.

     *

     * Emits a {Transfer} event.

     */

    function _transfer(

        address from,

        address to,

        uint256 tokenId

    ) private {

        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);



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



        bool isApprovedOrOwner = (_msgSender() == from ||

            isApprovedForAll(from, _msgSender()) ||

            getApproved(tokenId) == _msgSender());



        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();



        _beforeTokenTransfers(from, to, tokenId, 1);



        // Clear approvals from the previous owner

        _approve(address(0), tokenId, from);



        // Underflow of the sender's balance is impossible because we check for

        // ownership above and the recipient's balance can't realistically overflow.

        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.

        unchecked {

            _addressData[from].balance -= 1;

            _addressData[to].balance += 1;



            TokenOwnership storage currSlot = _ownerships[tokenId];

            currSlot.addr = to;

            currSlot.startTimestamp = uint64(block.timestamp);



            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.

            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.

            uint256 nextTokenId = tokenId + 1;

            TokenOwnership storage nextSlot = _ownerships[nextTokenId];

            if (nextSlot.addr == address(0)) {

                // This will suffice for checking _exists(nextTokenId),

                // as a burned slot cannot contain the zero address.

                if (nextTokenId != _currentIndex) {

                    nextSlot.addr = from;

                    nextSlot.startTimestamp = prevOwnership.startTimestamp;

                }

            }

        }



        emit Transfer(from, to, tokenId);

        _afterTokenTransfers(from, to, tokenId, 1);

    }



    /**

     * @dev This is equivalent to _burn(tokenId, false)

     */

    function _burn(uint256 tokenId) internal virtual {

        _burn(tokenId, false);

    }



    /**

     * @dev Destroys `tokenId`.

     * The approval is cleared when the token is burned.

     *

     * Requirements:

     *

     * - `tokenId` must exist.

     *

     * Emits a {Transfer} event.

     */

    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {

        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);



        address from = prevOwnership.addr;



        if (approvalCheck) {

            bool isApprovedOrOwner = (_msgSender() == from ||

                isApprovedForAll(from, _msgSender()) ||

                getApproved(tokenId) == _msgSender());



            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();

        }



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



        // Clear approvals from the previous owner

        _approve(address(0), tokenId, from);



        // Underflow of the sender's balance is impossible because we check for

        // ownership above and the recipient's balance can't realistically overflow.

        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.

        unchecked {

            AddressData storage addressData = _addressData[from];

            addressData.balance -= 1;

            addressData.numberBurned += 1;



            // Keep track of who burned the token, and the timestamp of burning.

            TokenOwnership storage currSlot = _ownerships[tokenId];

            currSlot.addr = from;

            currSlot.startTimestamp = uint64(block.timestamp);

            currSlot.burned = true;



            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.

            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.

            uint256 nextTokenId = tokenId + 1;

            TokenOwnership storage nextSlot = _ownerships[nextTokenId];

            if (nextSlot.addr == address(0)) {

                // This will suffice for checking _exists(nextTokenId),

                // as a burned slot cannot contain the zero address.

                if (nextTokenId != _currentIndex) {

                    nextSlot.addr = from;

                    nextSlot.startTimestamp = prevOwnership.startTimestamp;

                }

            }

        }



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

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



        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.

        unchecked {

            _burnCounter++;

        }

    }



    /**

     * @dev Approve `to` to operate on `tokenId`

     *

     * Emits a {Approval} event.

     */

    function _approve(

        address to,

        uint256 tokenId,

        address owner

    ) private {

        _tokenApprovals[tokenId] = to;

        emit Approval(owner, to, tokenId);

    }



    /**

     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.

     *

     * @param from address representing the previous owner of the given token ID

     * @param to target address that will receive the tokens

     * @param tokenId uint256 ID of the token to be transferred

     * @param _data bytes optional data to send along with the call

     * @return bool whether the call correctly returned the expected magic value

     */

    function _checkContractOnERC721Received(

        address from,

        address to,

        uint256 tokenId,

        bytes memory _data

    ) private returns (bool) {

        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {

            return retval == IERC721Receiver(to).onERC721Received.selector;

        } catch (bytes memory reason) {

            if (reason.length == 0) {

                revert TransferToNonERC721ReceiverImplementer();

            } else {

                assembly {

                    revert(add(32, reason), mload(reason))

                }

            }

        }

    }



    /**

     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.

     * And also called before burning one token.

     *

     * startTokenId - the first token id to be transferred

     * quantity - the amount to be transferred

     *

     * Calling conditions:

     *

     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be

     * transferred to `to`.

     * - When `from` is zero, `tokenId` will be minted for `to`.

     * - When `to` is zero, `tokenId` will be burned by `from`.

     * - `from` and `to` are never both zero.

     */

    function _beforeTokenTransfers(

        address from,

        address to,

        uint256 startTokenId,

        uint256 quantity

    ) internal virtual {}



    /**

     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes

     * minting.

     * And also called after one token has been burned.

     *

     * startTokenId - the first token id to be transferred

     * quantity - the amount to be transferred

     *

     * Calling conditions:

     *

     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been

     * transferred to `to`.

     * - When `from` is zero, `tokenId` has been minted for `to`.

     * - When `to` is zero, `tokenId` has been burned by `from`.

     * - `from` and `to` are never both zero.

     */

    function _afterTokenTransfers(

        address from,

        address to,

        uint256 startTokenId,

        uint256 quantity

    ) internal virtual {}

}
// 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 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: contracts/contract.sol


pragma solidity ^0.8.4;


contract AdAstraClub is Ownable, ERC721A  {

    using Strings for uint256;

    string private baseTokenURI;

    uint128 public maxSupply = 3333;
    uint128 public teamSupply = 333;
    uint128 public teamAmountMinted = 0;
    uint128 public presaleAmountMinted = 0;
    uint128 public presaleSupply = 2500;

    uint64 public maxMintAmountPerPresaleAccount = 1;
    uint64 public maxMintAmountPerPublicAccount = 1;

    bool public presaleActive = false;
    bool public publicSaleActive = false;

    bytes32 public merkleRoot;

    constructor() ERC721A("Ad Astra Club", "Ad Astra Club") {}


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

    ///Mints NFTs for whitelist members during the presale
    function presaleMint(bytes32[] calldata _merkleProof, uint64 _mintAmount) public payable mintCompliance(_mintAmount) {
        require(presaleActive, "Presale is not Active");

        require(presaleAmountMinted + _mintAmount <= presaleSupply, "Presale total supply exceeded." );

        require(numberMinted(msg.sender) + _mintAmount <= maxMintAmountPerPresaleAccount, "Mint limit exceeded." );
        
        ///verify the provided _merkleProof
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "Not part of the Presale whitelist.");
        
        presaleAmountMinted += _mintAmount;

        _safeMint(msg.sender, _mintAmount);
    }

    ///Allows any address to mint when the public sale is open
    function publicMint(uint64 _mintAmount) public payable mintCompliance(_mintAmount) {
        require(publicSaleActive, "Public sale is not Active");

        require(tx.origin == msg.sender);

        uint64 publicAmountMinted = getPublicAmountMinted(msg.sender);
        require(publicAmountMinted + _mintAmount <= maxMintAmountPerPublicAccount, "Mint limit exceeded." );
   
        setPublicAmountMinted(msg.sender,publicAmountMinted + _mintAmount);
        
        _safeMint(msg.sender, _mintAmount);
    }

    ///Allows owner of the collection to airdrop a token to any address
    function mintForAddress(uint64 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
        require(teamAmountMinted + _mintAmount <= teamSupply, "Mint limit exceeded.");
        teamAmountMinted+=_mintAmount;
        _safeMint(_receiver, _mintAmount);
    }

    //@return token ids owned by an address in the collection
    function walletOfOwner(address _owner)
        external
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
            if(exists(currentTokenId) == true) {
                address currentTokenOwner = ownerOf(currentTokenId);

                if (currentTokenOwner == _owner) {
                    ownedTokenIds[ownedTokenIndex] = currentTokenId;
                    ownedTokenIndex++;
                }
            }
            currentTokenId++;
        }

        return ownedTokenIds;
    }

    //@return full url for passed in token id 
    function tokenURI(uint256 _tokenId)

        public
        view
        virtual
        override
        returns (string memory)

    {

        require(
        _exists(_tokenId),
        "ERC721Metadata: URI query for nonexistent token"
        );

        string memory currentBaseURI = _baseURI();

        return bytes(currentBaseURI).length > 0

            ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json"))

            : "";
    }

    //@return amount an address has minted during the public sale
    function getPublicAmountMinted(address _owner) public view returns (uint64) {
        return _getAux(_owner);
    }

    function setPublicAmountMinted(address _owner, uint64 _aux) internal {
        _setAux(_owner, _aux);
    }

    //@return amount an address has minted during all sales
    function numberMinted(address _owner) public view returns (uint256) {
        return _numberMinted(_owner);
    }

    //@return all NFT's minted including burned tokens
    function totalMinted() public view returns (uint256) {
        return _totalMinted();
    }

    function exists(uint256 _tokenId) public view returns (bool) {
        return _exists(_tokenId);
    }

    function burn(uint256 _tokenId) public {
        require(exists(_tokenId), "Token does not exist");
        require(msg.sender == ownerOf(_tokenId), "Not the owner of the token");
        _burn(_tokenId, false);
    }

    //@return url for the nft metadata
    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }

    function setBaseURI(string calldata _URI) external onlyOwner {
        baseTokenURI = _URI;
    }

    function setMaxMintPerPresaleAccount(uint64 _maxMintPerPresaleAccount) public onlyOwner {
        maxMintAmountPerPresaleAccount = _maxMintPerPresaleAccount;
    }
   
    function setMaxMintPerPublicAccount(uint64 _maxMintAmountPerPublicAccount) public onlyOwner {
        maxMintAmountPerPublicAccount = _maxMintAmountPerPublicAccount;
    }
    
    function setPresaleActive(bool _state) public onlyOwner {
        presaleActive = _state;
    }

    function setPublicActive(bool _state) public onlyOwner {
        require(presaleActive == false);
        publicSaleActive = _state;
    }

    ///sets merkle tree root which determines the whitelisted addresses
    function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function setMaxSupply(uint128 _maxSupply) public onlyOwner {
        maxSupply = _maxSupply;
    }

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

    /// Fallbacks 
    receive() external payable { }
    fallback() external payable { }
}

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"},{"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"},{"stateMutability":"payable","type":"fallback"},{"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":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"}],"name":"getPublicAmountMinted","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"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":"maxMintAmountPerPresaleAccount","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerPublicAccount","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"_mintAmount","type":"uint64"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleAmountMinted","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint64","name":"_mintAmount","type":"uint64"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleSupply","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"_mintAmount","type":"uint64"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_maxMintPerPresaleAccount","type":"uint64"}],"name":"setMaxMintPerPresaleAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_maxMintAmountPerPublicAccount","type":"uint64"}],"name":"setMaxMintPerPublicAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint128","name":"_maxSupply","type":"uint128"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicActive","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":"teamAmountMinted","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamSupply","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"stateMutability":"payable","type":"receive"}]

608060405271014d00000000000000000000000000000d05600a556000600b5578010000000000000001000000000000000000000000000009c4600c55600d805461ffff191690553480156200005457600080fd5b506040518060400160405280600d81526020016c20b21020b9ba39309021b63ab160991b8152506040518060400160405280600d81526020016c20b21020b9ba39309021b63ab160991b815250620000bb620000b5620000f360201b60201c565b620000f7565b8151620000d090600390602085019062000147565b508051620000e690600490602084019062000147565b505060018055506200022a565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200015590620001ed565b90600052602060002090601f016020900481019282620001795760008555620001c4565b82601f106200019457805160ff1916838001178555620001c4565b82800160010185558215620001c4579182015b82811115620001c4578251825591602001919060010190620001a7565b50620001d2929150620001d6565b5090565b5b80821115620001d25760008155600101620001d7565b600181811c908216806200020257607f821691505b602082108114156200022457634e487b7160e01b600052602260045260246000fd5b50919050565b6128c9806200023a6000396000f3fe6080604052600436106102485760003560e01c80636afcb7b011610138578063b220b77a116100b0578063cd11ddc411610077578063cd11ddc41461072b578063d5abeb011461074b578063dc33e6811461076b578063e985e9c51461078b578063f2f4e824146107d4578063f2fde38b146107fb57005b8063b220b77a1461068c578063b3a196e9146106ac578063b88d4fde146106cc578063bc8893b4146106ec578063c87b56dd1461070b57005b80638ac068a2116100ff5780638ac068a2146105e45780638aca408c146106045780638da5cb5b1461062457806395d89b4114610642578063a22cb46514610657578063a2309ff81461067757005b80636afcb7b01461055157806370812fee1461056457806370a08231146105845780637c061741146105a45780637cb64759146105c457005b8063342a891f116101cb578063438b630011610192578063438b63001461049757806347fa1e75146104c45780634f558e79146104d757806353135ca0146104f757806355f804b3146105115780636352211e1461053157005b8063342a891f146103fb5780633ccfd60b146104225780633f8121a21461043757806342842e0e1461045757806342966c681461047757005b806318160ddd1161020f57806318160ddd1461033f57806318a1c1131461036657806323b872dd146103865780632cfac6ec146103a65780632eb4a7ab146103e557005b806301ffc9a71461025157806306fdde0314610286578063081812fc146102a8578063095ea7b3146102e05780630b85d4ef1461030057005b3661024f57005b005b34801561025d57600080fd5b5061027161026c366004612416565b61081b565b60405190151581526020015b60405180910390f35b34801561029257600080fd5b5061029b61086d565b60405161027d919061260d565b3480156102b457600080fd5b506102c86102c33660046123fd565b6108ff565b6040516001600160a01b03909116815260200161027d565b3480156102ec57600080fd5b5061024f6102fb366004612335565b610943565b34801561030c57600080fd5b50600c5461032790600160c01b90046001600160401b031681565b6040516001600160401b03909116815260200161027d565b34801561034b57600080fd5b5060025460015403600019015b60405190815260200161027d565b34801561037257600080fd5b5061024f6103813660046124ea565b6109d1565b34801561039257600080fd5b5061024f6103a13660046121f4565b610a2c565b3480156103b257600080fd5b50600a546103cd90600160801b90046001600160801b031681565b6040516001600160801b03909116815260200161027d565b3480156103f157600080fd5b50610358600e5481565b34801561040757600080fd5b50600b546103cd90600160801b90046001600160801b031681565b34801561042e57600080fd5b5061024f610a37565b34801561044357600080fd5b5061024f6104523660046123e2565b610ac4565b34801561046357600080fd5b5061024f6104723660046121f4565b610b01565b34801561048357600080fd5b5061024f6104923660046123fd565b610b1c565b3480156104a357600080fd5b506104b76104b23660046121a6565b610bdc565b60405161027d91906125c9565b61024f6104d236600461235f565b610cd9565b3480156104e357600080fd5b506102716104f23660046123fd565b610f95565b34801561050357600080fd5b50600d546102719060ff1681565b34801561051d57600080fd5b5061024f61052c366004612450565b610fa0565b34801561053d57600080fd5b506102c861054c3660046123fd565b610fd6565b61024f61055f3660046124ea565b610fe8565b34801561057057600080fd5b50600b546103cd906001600160801b031681565b34801561059057600080fd5b5061035861059f3660046121a6565b61115f565b3480156105b057600080fd5b5061024f6105bf366004612505565b6111ad565b3480156105d057600080fd5b5061024f6105df3660046123fd565b6112f1565b3480156105f057600080fd5b5061024f6105ff3660046124c1565b611320565b34801561061057600080fd5b5061024f61061f3660046123e2565b61136c565b34801561063057600080fd5b506000546001600160a01b03166102c8565b34801561064e57600080fd5b5061029b6113c0565b34801561066357600080fd5b5061024f61067236600461230b565b6113cf565b34801561068357600080fd5b50610358611465565b34801561069857600080fd5b5061024f6106a73660046124ea565b611479565b3480156106b857600080fd5b50600c546103cd906001600160801b031681565b3480156106d857600080fd5b5061024f6106e7366004612230565b6114d0565b3480156106f857600080fd5b50600d5461027190610100900460ff1681565b34801561071757600080fd5b5061029b6107263660046123fd565b611521565b34801561073757600080fd5b506103276107463660046121a6565b6115ec565b34801561075757600080fd5b50600a546103cd906001600160801b031681565b34801561077757600080fd5b506103586107863660046121a6565b61161a565b34801561079757600080fd5b506102716107a63660046121c1565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156107e057600080fd5b50600c5461032790600160801b90046001600160401b031681565b34801561080757600080fd5b5061024f6108163660046121a6565b611648565b60006001600160e01b031982166380ac58cd60e01b148061084c57506001600160e01b03198216635b5e139f60e01b145b8061086757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461087c9061279b565b80601f01602080910402602001604051908101604052809291908181526020018280546108a89061279b565b80156108f55780601f106108ca576101008083540402835291602001916108f5565b820191906000526020600020905b8154815290600101906020018083116108d857829003601f168201915b5050505050905090565b600061090a826116e0565b610927576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061094e82610fd6565b9050806001600160a01b0316836001600160a01b031614156109835760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109a357506109a181336107a6565b155b156109c1576040516367d9dca160e11b815260040160405180910390fd5b6109cc838383611719565b505050565b6000546001600160a01b03163314610a045760405162461bcd60e51b81526004016109fb9061267c565b60405180910390fd5b600c80546001600160401b03909216600160c01b026001600160c01b03909216919091179055565b6109cc838383611775565b6000546001600160a01b03163314610a615760405162461bcd60e51b81526004016109fb9061267c565b600080546040516001600160a01b039091169047908381818185875af1925050503d8060008114610aae576040519150601f19603f3d011682016040523d82523d6000602084013e610ab3565b606091505b5050905080610ac157600080fd5b50565b6000546001600160a01b03163314610aee5760405162461bcd60e51b81526004016109fb9061267c565b600d805460ff1916911515919091179055565b6109cc838383604051806020016040528060008152506114d0565b610b2581610f95565b610b685760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b60448201526064016109fb565b610b7181610fd6565b6001600160a01b0316336001600160a01b031614610bd15760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420746865206f776e6572206f662074686520746f6b656e00000000000060448201526064016109fb565b610ac181600061194e565b60606000610be98361115f565b90506000816001600160401b03811115610c0557610c05612847565b604051908082528060200260200182016040528015610c2e578160200160208202803683370190505b509050600160005b8381108015610c505750600a546001600160801b03168211155b15610ccf57610c5e82610f95565b151560011415610cbd576000610c7383610fd6565b9050866001600160a01b0316816001600160a01b03161415610cbb5782848381518110610ca257610ca2612831565b602090810291909101015281610cb7816127d6565b9250505b505b81610cc7816127d6565b925050610c36565b5090949350505050565b806001600160401b031660008111610d035760405162461bcd60e51b81526004016109fb9061264e565b600a546001600160801b031681610d18611465565b610d22919061270a565b1115610d405760405162461bcd60e51b81526004016109fb906126b1565b600d5460ff16610d8a5760405162461bcd60e51b815260206004820152601560248201527450726573616c65206973206e6f742041637469766560581b60448201526064016109fb565b600c54600b546001600160801b0391821691610db9916001600160401b03861691600160801b909104166126df565b6001600160801b03161115610e105760405162461bcd60e51b815260206004820152601e60248201527f50726573616c6520746f74616c20737570706c792065786365656465642e000060448201526064016109fb565b600c546001600160401b03600160801b9091048116908316610e313361161a565b610e3b919061270a565b1115610e595760405162461bcd60e51b81526004016109fb90612620565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610ed385858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e549150849050611b02565b610f2a5760405162461bcd60e51b815260206004820152602260248201527f4e6f742070617274206f66207468652050726573616c652077686974656c69736044820152613a1760f11b60648201526084016109fb565b826001600160401b0316600b60108282829054906101000a90046001600160801b0316610f5791906126df565b92506101000a8154816001600160801b0302191690836001600160801b03160217905550610f8e33846001600160401b0316611b18565b5050505050565b6000610867826116e0565b6000546001600160a01b03163314610fca5760405162461bcd60e51b81526004016109fb9061267c565b6109cc600983836120ca565b6000610fe182611b36565b5192915050565b806001600160401b0316600081116110125760405162461bcd60e51b81526004016109fb9061264e565b600a546001600160801b031681611027611465565b611031919061270a565b111561104f5760405162461bcd60e51b81526004016109fb906126b1565b600d54610100900460ff166110a65760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f74204163746976650000000000000060448201526064016109fb565b3233146110b257600080fd5b60006110bd336115ec565b600c54909150600160c01b90046001600160401b03166110dd8483612722565b6001600160401b031611156111045760405162461bcd60e51b81526004016109fb90612620565b61114c336111128584612722565b6001600160a01b038216600090815260066020526040902080546001600160c01b0316600160c01b6001600160401b038416021790555050565b6109cc33846001600160401b0316611b18565b60006001600160a01b038216611188576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b816001600160401b0316600081116111d75760405162461bcd60e51b81526004016109fb9061264e565b600a546001600160801b0316816111ec611465565b6111f6919061270a565b11156112145760405162461bcd60e51b81526004016109fb906126b1565b6000546001600160a01b0316331461123e5760405162461bcd60e51b81526004016109fb9061267c565b600a54600b546001600160801b03600160801b90920482169161126c916001600160401b03871691166126df565b6001600160801b031611156112935760405162461bcd60e51b81526004016109fb90612620565b600b80546001600160401b03851691906000906112ba9084906001600160801b03166126df565b92506101000a8154816001600160801b0302191690836001600160801b031602179055506109cc82846001600160401b0316611b18565b6000546001600160a01b0316331461131b5760405162461bcd60e51b81526004016109fb9061267c565b600e55565b6000546001600160a01b0316331461134a5760405162461bcd60e51b81526004016109fb9061267c565b600a80546001600160801b0319166001600160801b0392909216919091179055565b6000546001600160a01b031633146113965760405162461bcd60e51b81526004016109fb9061267c565b600d5460ff16156113a657600080fd5b600d80549115156101000261ff0019909216919091179055565b60606004805461087c9061279b565b6001600160a01b0382163314156113f95760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006114746001546000190190565b905090565b6000546001600160a01b031633146114a35760405162461bcd60e51b81526004016109fb9061267c565b600c80546001600160401b03909216600160801b0267ffffffffffffffff60801b19909216919091179055565b6114db848484611775565b6001600160a01b0383163b151580156114fd57506114fb84848484611c5d565b155b1561151b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061152c826116e0565b6115905760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109fb565b600061159a611d55565b905060008151116115ba57604051806020016040528060008152506115e5565b806115c484611d64565b6040516020016115d592919061254d565b6040516020818303038152906040525b9392505050565b6001600160a01b038116600090815260066020526040812054600160c01b90046001600160401b0316610867565b6001600160a01b038116600090815260066020526040812054600160401b90046001600160401b0316610867565b6000546001600160a01b031633146116725760405162461bcd60e51b81526004016109fb9061267c565b6001600160a01b0381166116d75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109fb565b610ac181611e61565b6000816001111580156116f4575060015482105b8015610867575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061178082611b36565b9050836001600160a01b031681600001516001600160a01b0316146117b75760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806117d557506117d585336107a6565b806117f05750336117e5846108ff565b6001600160a01b0316145b90508061181057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661183757604051633a954ecd60e21b815260040160405180910390fd5b61184360008487611719565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661191757600154821461191757805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061287483398151915260405160405180910390a4610f8e565b600061195983611b36565b805190915082156119bf576000336001600160a01b0383161480611982575061198282336107a6565b8061199d575033611992866108ff565b6001600160a01b0316145b9050806119bd57604051632ce44b5f60e11b815260040160405180910390fd5b505b6119cb60008583611719565b6001600160a01b0380821660008181526006602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526005909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116611ac9576001548214611ac957805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020612874833981519152908390a450506002805460010190555050565b600082611b0f8584611eb1565b14949350505050565b611b32828260405180602001604052806000815250611f25565b5050565b60408051606081018252600080825260208201819052918101919091528180600111158015611b66575060015481105b15611c4457600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611c425780516001600160a01b031615611bd9579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611c3d579392505050565b611bd9565b505b604051636f96cda160e11b815260040160405180910390fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611c9290339089908890889060040161258c565b602060405180830381600087803b158015611cac57600080fd5b505af1925050508015611cdc575060408051601f3d908101601f19168201909252611cd991810190612433565b60015b611d37573d808015611d0a576040519150601f19603f3d011682016040523d82523d6000602084013e611d0f565b606091505b508051611d2f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461087c9061279b565b606081611d885750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611db25780611d9c816127d6565b9150611dab9050600a83612744565b9150611d8c565b6000816001600160401b03811115611dcc57611dcc612847565b6040519080825280601f01601f191660200182016040528015611df6576020820181803683370190505b5090505b8415611d4d57611e0b600183612758565b9150611e18600a866127f1565b611e2390603061270a565b60f81b818381518110611e3857611e38612831565b60200101906001600160f81b031916908160001a905350611e5a600a86612744565b9450611dfa565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600081815b8451811015611f1d576000858281518110611ed357611ed3612831565b60200260200101519050808311611ef95760008381526020829052604090209250611f0a565b600081815260208490526040902092505b5080611f15816127d6565b915050611eb6565b509392505050565b6109cc838383600180546001600160a01b038516611f5557604051622e076360e81b815260040160405180910390fd5b83611f735760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546001600160801b031981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561201657506001600160a01b0387163b15155b1561208d575b60405182906001600160a01b03891690600090600080516020612874833981519152908290a46120556000888480600101955088611c5d565b612072576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561201c57826001541461208857600080fd5b6120c1565b5b6040516001830192906001600160a01b03891690600090600080516020612874833981519152908290a48082141561208e575b50600155610f8e565b8280546120d69061279b565b90600052602060002090601f0160209004810192826120f8576000855561213e565b82601f106121115782800160ff1982351617855561213e565b8280016001018555821561213e579182015b8281111561213e578235825591602001919060010190612123565b5061214a92915061214e565b5090565b5b8082111561214a576000815560010161214f565b80356001600160a01b038116811461217a57600080fd5b919050565b8035801515811461217a57600080fd5b80356001600160401b038116811461217a57600080fd5b6000602082840312156121b857600080fd5b6115e582612163565b600080604083850312156121d457600080fd5b6121dd83612163565b91506121eb60208401612163565b90509250929050565b60008060006060848603121561220957600080fd5b61221284612163565b925061222060208501612163565b9150604084013590509250925092565b6000806000806080858703121561224657600080fd5b61224f85612163565b935061225d60208601612163565b92506040850135915060608501356001600160401b038082111561228057600080fd5b818701915087601f83011261229457600080fd5b8135818111156122a6576122a6612847565b604051601f8201601f19908116603f011681019083821181831017156122ce576122ce612847565b816040528281528a60208487010111156122e757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561231e57600080fd5b61232783612163565b91506121eb6020840161217f565b6000806040838503121561234857600080fd5b61235183612163565b946020939093013593505050565b60008060006040848603121561237457600080fd5b83356001600160401b038082111561238b57600080fd5b818601915086601f83011261239f57600080fd5b8135818111156123ae57600080fd5b8760208260051b85010111156123c357600080fd5b6020928301955093506123d9918601905061218f565b90509250925092565b6000602082840312156123f457600080fd5b6115e58261217f565b60006020828403121561240f57600080fd5b5035919050565b60006020828403121561242857600080fd5b81356115e58161285d565b60006020828403121561244557600080fd5b81516115e58161285d565b6000806020838503121561246357600080fd5b82356001600160401b038082111561247a57600080fd5b818501915085601f83011261248e57600080fd5b81358181111561249d57600080fd5b8660208285010111156124af57600080fd5b60209290920196919550909350505050565b6000602082840312156124d357600080fd5b81356001600160801b03811681146115e557600080fd5b6000602082840312156124fc57600080fd5b6115e58261218f565b6000806040838503121561251857600080fd5b6121dd8361218f565b6000815180845261253981602086016020860161276f565b601f01601f19169290920160200192915050565b6000835161255f81846020880161276f565b83519083019061257381836020880161276f565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125bf90830184612521565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612601578351835292840192918401916001016125e5565b50909695505050505050565b6020815260006115e56020830184612521565b60208082526014908201527326b4b73a103634b6b4ba1032bc31b2b2b232b21760611b604082015260600190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60006001600160801b0380831681851680830382111561270157612701612805565b01949350505050565b6000821982111561271d5761271d612805565b500190565b60006001600160401b0380831681851680830382111561270157612701612805565b6000826127535761275361281b565b500490565b60008282101561276a5761276a612805565b500390565b60005b8381101561278a578181015183820152602001612772565b8381111561151b5750506000910152565b600181811c908216806127af57607f821691505b602082108114156127d057634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127ea576127ea612805565b5060010190565b6000826128005761280061281b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ac157600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212208b4e9a0d1386ac54274e890b1c9076e24156b957d2ae44551a19037531de4af964736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102485760003560e01c80636afcb7b011610138578063b220b77a116100b0578063cd11ddc411610077578063cd11ddc41461072b578063d5abeb011461074b578063dc33e6811461076b578063e985e9c51461078b578063f2f4e824146107d4578063f2fde38b146107fb57005b8063b220b77a1461068c578063b3a196e9146106ac578063b88d4fde146106cc578063bc8893b4146106ec578063c87b56dd1461070b57005b80638ac068a2116100ff5780638ac068a2146105e45780638aca408c146106045780638da5cb5b1461062457806395d89b4114610642578063a22cb46514610657578063a2309ff81461067757005b80636afcb7b01461055157806370812fee1461056457806370a08231146105845780637c061741146105a45780637cb64759146105c457005b8063342a891f116101cb578063438b630011610192578063438b63001461049757806347fa1e75146104c45780634f558e79146104d757806353135ca0146104f757806355f804b3146105115780636352211e1461053157005b8063342a891f146103fb5780633ccfd60b146104225780633f8121a21461043757806342842e0e1461045757806342966c681461047757005b806318160ddd1161020f57806318160ddd1461033f57806318a1c1131461036657806323b872dd146103865780632cfac6ec146103a65780632eb4a7ab146103e557005b806301ffc9a71461025157806306fdde0314610286578063081812fc146102a8578063095ea7b3146102e05780630b85d4ef1461030057005b3661024f57005b005b34801561025d57600080fd5b5061027161026c366004612416565b61081b565b60405190151581526020015b60405180910390f35b34801561029257600080fd5b5061029b61086d565b60405161027d919061260d565b3480156102b457600080fd5b506102c86102c33660046123fd565b6108ff565b6040516001600160a01b03909116815260200161027d565b3480156102ec57600080fd5b5061024f6102fb366004612335565b610943565b34801561030c57600080fd5b50600c5461032790600160c01b90046001600160401b031681565b6040516001600160401b03909116815260200161027d565b34801561034b57600080fd5b5060025460015403600019015b60405190815260200161027d565b34801561037257600080fd5b5061024f6103813660046124ea565b6109d1565b34801561039257600080fd5b5061024f6103a13660046121f4565b610a2c565b3480156103b257600080fd5b50600a546103cd90600160801b90046001600160801b031681565b6040516001600160801b03909116815260200161027d565b3480156103f157600080fd5b50610358600e5481565b34801561040757600080fd5b50600b546103cd90600160801b90046001600160801b031681565b34801561042e57600080fd5b5061024f610a37565b34801561044357600080fd5b5061024f6104523660046123e2565b610ac4565b34801561046357600080fd5b5061024f6104723660046121f4565b610b01565b34801561048357600080fd5b5061024f6104923660046123fd565b610b1c565b3480156104a357600080fd5b506104b76104b23660046121a6565b610bdc565b60405161027d91906125c9565b61024f6104d236600461235f565b610cd9565b3480156104e357600080fd5b506102716104f23660046123fd565b610f95565b34801561050357600080fd5b50600d546102719060ff1681565b34801561051d57600080fd5b5061024f61052c366004612450565b610fa0565b34801561053d57600080fd5b506102c861054c3660046123fd565b610fd6565b61024f61055f3660046124ea565b610fe8565b34801561057057600080fd5b50600b546103cd906001600160801b031681565b34801561059057600080fd5b5061035861059f3660046121a6565b61115f565b3480156105b057600080fd5b5061024f6105bf366004612505565b6111ad565b3480156105d057600080fd5b5061024f6105df3660046123fd565b6112f1565b3480156105f057600080fd5b5061024f6105ff3660046124c1565b611320565b34801561061057600080fd5b5061024f61061f3660046123e2565b61136c565b34801561063057600080fd5b506000546001600160a01b03166102c8565b34801561064e57600080fd5b5061029b6113c0565b34801561066357600080fd5b5061024f61067236600461230b565b6113cf565b34801561068357600080fd5b50610358611465565b34801561069857600080fd5b5061024f6106a73660046124ea565b611479565b3480156106b857600080fd5b50600c546103cd906001600160801b031681565b3480156106d857600080fd5b5061024f6106e7366004612230565b6114d0565b3480156106f857600080fd5b50600d5461027190610100900460ff1681565b34801561071757600080fd5b5061029b6107263660046123fd565b611521565b34801561073757600080fd5b506103276107463660046121a6565b6115ec565b34801561075757600080fd5b50600a546103cd906001600160801b031681565b34801561077757600080fd5b506103586107863660046121a6565b61161a565b34801561079757600080fd5b506102716107a63660046121c1565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156107e057600080fd5b50600c5461032790600160801b90046001600160401b031681565b34801561080757600080fd5b5061024f6108163660046121a6565b611648565b60006001600160e01b031982166380ac58cd60e01b148061084c57506001600160e01b03198216635b5e139f60e01b145b8061086757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461087c9061279b565b80601f01602080910402602001604051908101604052809291908181526020018280546108a89061279b565b80156108f55780601f106108ca576101008083540402835291602001916108f5565b820191906000526020600020905b8154815290600101906020018083116108d857829003601f168201915b5050505050905090565b600061090a826116e0565b610927576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061094e82610fd6565b9050806001600160a01b0316836001600160a01b031614156109835760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109a357506109a181336107a6565b155b156109c1576040516367d9dca160e11b815260040160405180910390fd5b6109cc838383611719565b505050565b6000546001600160a01b03163314610a045760405162461bcd60e51b81526004016109fb9061267c565b60405180910390fd5b600c80546001600160401b03909216600160c01b026001600160c01b03909216919091179055565b6109cc838383611775565b6000546001600160a01b03163314610a615760405162461bcd60e51b81526004016109fb9061267c565b600080546040516001600160a01b039091169047908381818185875af1925050503d8060008114610aae576040519150601f19603f3d011682016040523d82523d6000602084013e610ab3565b606091505b5050905080610ac157600080fd5b50565b6000546001600160a01b03163314610aee5760405162461bcd60e51b81526004016109fb9061267c565b600d805460ff1916911515919091179055565b6109cc838383604051806020016040528060008152506114d0565b610b2581610f95565b610b685760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b60448201526064016109fb565b610b7181610fd6565b6001600160a01b0316336001600160a01b031614610bd15760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420746865206f776e6572206f662074686520746f6b656e00000000000060448201526064016109fb565b610ac181600061194e565b60606000610be98361115f565b90506000816001600160401b03811115610c0557610c05612847565b604051908082528060200260200182016040528015610c2e578160200160208202803683370190505b509050600160005b8381108015610c505750600a546001600160801b03168211155b15610ccf57610c5e82610f95565b151560011415610cbd576000610c7383610fd6565b9050866001600160a01b0316816001600160a01b03161415610cbb5782848381518110610ca257610ca2612831565b602090810291909101015281610cb7816127d6565b9250505b505b81610cc7816127d6565b925050610c36565b5090949350505050565b806001600160401b031660008111610d035760405162461bcd60e51b81526004016109fb9061264e565b600a546001600160801b031681610d18611465565b610d22919061270a565b1115610d405760405162461bcd60e51b81526004016109fb906126b1565b600d5460ff16610d8a5760405162461bcd60e51b815260206004820152601560248201527450726573616c65206973206e6f742041637469766560581b60448201526064016109fb565b600c54600b546001600160801b0391821691610db9916001600160401b03861691600160801b909104166126df565b6001600160801b03161115610e105760405162461bcd60e51b815260206004820152601e60248201527f50726573616c6520746f74616c20737570706c792065786365656465642e000060448201526064016109fb565b600c546001600160401b03600160801b9091048116908316610e313361161a565b610e3b919061270a565b1115610e595760405162461bcd60e51b81526004016109fb90612620565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610ed385858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e549150849050611b02565b610f2a5760405162461bcd60e51b815260206004820152602260248201527f4e6f742070617274206f66207468652050726573616c652077686974656c69736044820152613a1760f11b60648201526084016109fb565b826001600160401b0316600b60108282829054906101000a90046001600160801b0316610f5791906126df565b92506101000a8154816001600160801b0302191690836001600160801b03160217905550610f8e33846001600160401b0316611b18565b5050505050565b6000610867826116e0565b6000546001600160a01b03163314610fca5760405162461bcd60e51b81526004016109fb9061267c565b6109cc600983836120ca565b6000610fe182611b36565b5192915050565b806001600160401b0316600081116110125760405162461bcd60e51b81526004016109fb9061264e565b600a546001600160801b031681611027611465565b611031919061270a565b111561104f5760405162461bcd60e51b81526004016109fb906126b1565b600d54610100900460ff166110a65760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f74204163746976650000000000000060448201526064016109fb565b3233146110b257600080fd5b60006110bd336115ec565b600c54909150600160c01b90046001600160401b03166110dd8483612722565b6001600160401b031611156111045760405162461bcd60e51b81526004016109fb90612620565b61114c336111128584612722565b6001600160a01b038216600090815260066020526040902080546001600160c01b0316600160c01b6001600160401b038416021790555050565b6109cc33846001600160401b0316611b18565b60006001600160a01b038216611188576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b816001600160401b0316600081116111d75760405162461bcd60e51b81526004016109fb9061264e565b600a546001600160801b0316816111ec611465565b6111f6919061270a565b11156112145760405162461bcd60e51b81526004016109fb906126b1565b6000546001600160a01b0316331461123e5760405162461bcd60e51b81526004016109fb9061267c565b600a54600b546001600160801b03600160801b90920482169161126c916001600160401b03871691166126df565b6001600160801b031611156112935760405162461bcd60e51b81526004016109fb90612620565b600b80546001600160401b03851691906000906112ba9084906001600160801b03166126df565b92506101000a8154816001600160801b0302191690836001600160801b031602179055506109cc82846001600160401b0316611b18565b6000546001600160a01b0316331461131b5760405162461bcd60e51b81526004016109fb9061267c565b600e55565b6000546001600160a01b0316331461134a5760405162461bcd60e51b81526004016109fb9061267c565b600a80546001600160801b0319166001600160801b0392909216919091179055565b6000546001600160a01b031633146113965760405162461bcd60e51b81526004016109fb9061267c565b600d5460ff16156113a657600080fd5b600d80549115156101000261ff0019909216919091179055565b60606004805461087c9061279b565b6001600160a01b0382163314156113f95760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006114746001546000190190565b905090565b6000546001600160a01b031633146114a35760405162461bcd60e51b81526004016109fb9061267c565b600c80546001600160401b03909216600160801b0267ffffffffffffffff60801b19909216919091179055565b6114db848484611775565b6001600160a01b0383163b151580156114fd57506114fb84848484611c5d565b155b1561151b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061152c826116e0565b6115905760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109fb565b600061159a611d55565b905060008151116115ba57604051806020016040528060008152506115e5565b806115c484611d64565b6040516020016115d592919061254d565b6040516020818303038152906040525b9392505050565b6001600160a01b038116600090815260066020526040812054600160c01b90046001600160401b0316610867565b6001600160a01b038116600090815260066020526040812054600160401b90046001600160401b0316610867565b6000546001600160a01b031633146116725760405162461bcd60e51b81526004016109fb9061267c565b6001600160a01b0381166116d75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109fb565b610ac181611e61565b6000816001111580156116f4575060015482105b8015610867575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061178082611b36565b9050836001600160a01b031681600001516001600160a01b0316146117b75760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806117d557506117d585336107a6565b806117f05750336117e5846108ff565b6001600160a01b0316145b90508061181057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661183757604051633a954ecd60e21b815260040160405180910390fd5b61184360008487611719565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661191757600154821461191757805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061287483398151915260405160405180910390a4610f8e565b600061195983611b36565b805190915082156119bf576000336001600160a01b0383161480611982575061198282336107a6565b8061199d575033611992866108ff565b6001600160a01b0316145b9050806119bd57604051632ce44b5f60e11b815260040160405180910390fd5b505b6119cb60008583611719565b6001600160a01b0380821660008181526006602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526005909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116611ac9576001548214611ac957805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020612874833981519152908390a450506002805460010190555050565b600082611b0f8584611eb1565b14949350505050565b611b32828260405180602001604052806000815250611f25565b5050565b60408051606081018252600080825260208201819052918101919091528180600111158015611b66575060015481105b15611c4457600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611c425780516001600160a01b031615611bd9579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611c3d579392505050565b611bd9565b505b604051636f96cda160e11b815260040160405180910390fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611c9290339089908890889060040161258c565b602060405180830381600087803b158015611cac57600080fd5b505af1925050508015611cdc575060408051601f3d908101601f19168201909252611cd991810190612433565b60015b611d37573d808015611d0a576040519150601f19603f3d011682016040523d82523d6000602084013e611d0f565b606091505b508051611d2f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461087c9061279b565b606081611d885750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611db25780611d9c816127d6565b9150611dab9050600a83612744565b9150611d8c565b6000816001600160401b03811115611dcc57611dcc612847565b6040519080825280601f01601f191660200182016040528015611df6576020820181803683370190505b5090505b8415611d4d57611e0b600183612758565b9150611e18600a866127f1565b611e2390603061270a565b60f81b818381518110611e3857611e38612831565b60200101906001600160f81b031916908160001a905350611e5a600a86612744565b9450611dfa565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600081815b8451811015611f1d576000858281518110611ed357611ed3612831565b60200260200101519050808311611ef95760008381526020829052604090209250611f0a565b600081815260208490526040902092505b5080611f15816127d6565b915050611eb6565b509392505050565b6109cc838383600180546001600160a01b038516611f5557604051622e076360e81b815260040160405180910390fd5b83611f735760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546001600160801b031981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561201657506001600160a01b0387163b15155b1561208d575b60405182906001600160a01b03891690600090600080516020612874833981519152908290a46120556000888480600101955088611c5d565b612072576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561201c57826001541461208857600080fd5b6120c1565b5b6040516001830192906001600160a01b03891690600090600080516020612874833981519152908290a48082141561208e575b50600155610f8e565b8280546120d69061279b565b90600052602060002090601f0160209004810192826120f8576000855561213e565b82601f106121115782800160ff1982351617855561213e565b8280016001018555821561213e579182015b8281111561213e578235825591602001919060010190612123565b5061214a92915061214e565b5090565b5b8082111561214a576000815560010161214f565b80356001600160a01b038116811461217a57600080fd5b919050565b8035801515811461217a57600080fd5b80356001600160401b038116811461217a57600080fd5b6000602082840312156121b857600080fd5b6115e582612163565b600080604083850312156121d457600080fd5b6121dd83612163565b91506121eb60208401612163565b90509250929050565b60008060006060848603121561220957600080fd5b61221284612163565b925061222060208501612163565b9150604084013590509250925092565b6000806000806080858703121561224657600080fd5b61224f85612163565b935061225d60208601612163565b92506040850135915060608501356001600160401b038082111561228057600080fd5b818701915087601f83011261229457600080fd5b8135818111156122a6576122a6612847565b604051601f8201601f19908116603f011681019083821181831017156122ce576122ce612847565b816040528281528a60208487010111156122e757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561231e57600080fd5b61232783612163565b91506121eb6020840161217f565b6000806040838503121561234857600080fd5b61235183612163565b946020939093013593505050565b60008060006040848603121561237457600080fd5b83356001600160401b038082111561238b57600080fd5b818601915086601f83011261239f57600080fd5b8135818111156123ae57600080fd5b8760208260051b85010111156123c357600080fd5b6020928301955093506123d9918601905061218f565b90509250925092565b6000602082840312156123f457600080fd5b6115e58261217f565b60006020828403121561240f57600080fd5b5035919050565b60006020828403121561242857600080fd5b81356115e58161285d565b60006020828403121561244557600080fd5b81516115e58161285d565b6000806020838503121561246357600080fd5b82356001600160401b038082111561247a57600080fd5b818501915085601f83011261248e57600080fd5b81358181111561249d57600080fd5b8660208285010111156124af57600080fd5b60209290920196919550909350505050565b6000602082840312156124d357600080fd5b81356001600160801b03811681146115e557600080fd5b6000602082840312156124fc57600080fd5b6115e58261218f565b6000806040838503121561251857600080fd5b6121dd8361218f565b6000815180845261253981602086016020860161276f565b601f01601f19169290920160200192915050565b6000835161255f81846020880161276f565b83519083019061257381836020880161276f565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125bf90830184612521565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612601578351835292840192918401916001016125e5565b50909695505050505050565b6020815260006115e56020830184612521565b60208082526014908201527326b4b73a103634b6b4ba1032bc31b2b2b232b21760611b604082015260600190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60006001600160801b0380831681851680830382111561270157612701612805565b01949350505050565b6000821982111561271d5761271d612805565b500190565b60006001600160401b0380831681851680830382111561270157612701612805565b6000826127535761275361281b565b500490565b60008282101561276a5761276a612805565b500390565b60005b8381101561278a578181015183820152602001612772565b8381111561151b5750506000910152565b600181811c908216806127af57607f821691505b602082108114156127d057634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127ea576127ea612805565b5060010190565b6000826128005761280061281b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ac157600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212208b4e9a0d1386ac54274e890b1c9076e24156b957d2ae44551a19037531de4af964736f6c63430008070033

Deployed Bytecode Sourcemap

48341:6438:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27447:315;;;;;;;;;;-1:-1:-1;27447:315:0;;;;;:::i;:::-;;:::i;:::-;;;8946:14:1;;8939:22;8921:41;;8909:2;8894:18;27447:315:0;;;;;;;;30730:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32327:212::-;;;;;;;;;;-1:-1:-1;32327:212:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7607:32:1;;;7589:51;;7577:2;7562:18;32327:212:0;7443:203:1;31862:389:0;;;;;;;;;;-1:-1:-1;31862:389:0;;;;;:::i;:::-;;:::i;48724:47::-;;;;;;;;;;-1:-1:-1;48724:47:0;;;;-1:-1:-1;;;48724:47:0;;-1:-1:-1;;;;;48724:47:0;;;;;;-1:-1:-1;;;;;14347:31:1;;;14329:50;;14317:2;14302:18;48724:47:0;14185:200:1;26652:315:0;;;;;;;;;;-1:-1:-1;26914:12:0;;26497:1;26898:13;:28;-1:-1:-1;;26898:46:0;26652:315;;;9119:25:1;;;9107:2;9092:18;26652:315:0;8973:177:1;53802:173:0;;;;;;;;;;-1:-1:-1;53802:173:0;;;;;:::i;:::-;;:::i;33244:182::-;;;;;;;;;;-1:-1:-1;33244:182:0;;;;;:::i;:::-;;:::i;48500:31::-;;;;;;;;;;-1:-1:-1;48500:31:0;;;;-1:-1:-1;;;48500:31:0;;-1:-1:-1;;;;;48500:31:0;;;;;;-1:-1:-1;;;;;13944:47:1;;;13926:66;;13914:2;13899:18;48500:31:0;13780:218:1;48865:25:0;;;;;;;;;;;;;;;;48580:38;;;;;;;;;;-1:-1:-1;48580:38:0;;;;-1:-1:-1;;;48580:38:0;;-1:-1:-1;;;;;48580:38:0;;;54534:147;;;;;;;;;;;;;:::i;53987:97::-;;;;;;;;;;-1:-1:-1;53987:97:0;;;;;:::i;:::-;;:::i;33507:197::-;;;;;;;;;;-1:-1:-1;33507:197:0;;;;;:::i;:::-;;:::i;53129:221::-;;;;;;;;;;-1:-1:-1;53129:221:0;;;;;:::i;:::-;;:::i;51017:802::-;;;;;;;;;;-1:-1:-1;51017:802:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49244:739::-;;;;;;:::i;:::-;;:::i;53017:104::-;;;;;;;;;;-1:-1:-1;53017:104:0;;;;;:::i;:::-;;:::i;48780:33::-;;;;;;;;;;-1:-1:-1;48780:33:0;;;;;;;;53519:99;;;;;;;;;;-1:-1:-1;53519:99:0;;;;;:::i;:::-;;:::i;30524:129::-;;;;;;;;;;-1:-1:-1;30524:129:0;;;;;:::i;:::-;;:::i;50055:522::-;;;;;;:::i;:::-;;:::i;48538:35::-;;;;;;;;;;-1:-1:-1;48538:35:0;;;;-1:-1:-1;;;;;48538:35:0;;;27836:212;;;;;;;;;;-1:-1:-1;27836:212:0;;;;;:::i;:::-;;:::i;50658:288::-;;;;;;;;;;-1:-1:-1;50658:288:0;;;;;:::i;:::-;;:::i;54314:104::-;;;;;;;;;;-1:-1:-1;54314:104:0;;;;;:::i;:::-;;:::i;54426:100::-;;;;;;;;;;-1:-1:-1;54426:100:0;;;;;:::i;:::-;;:::i;54092:141::-;;;;;;;;;;-1:-1:-1;54092:141:0;;;;;:::i;:::-;;:::i;47261:87::-;;;;;;;;;;-1:-1:-1;47307:7:0;47334:6;-1:-1:-1;;;;;47334:6:0;47261:87;;30913:108;;;;;;;;;;;;;:::i;32621:297::-;;;;;;;;;;-1:-1:-1;32621:297:0;;;;;:::i;:::-;;:::i;52916:93::-;;;;;;;;;;;;;:::i;53626:165::-;;;;;;;;;;-1:-1:-1;53626:165:0;;;;;:::i;:::-;;:::i;48625:35::-;;;;;;;;;;-1:-1:-1;48625:35:0;;;;-1:-1:-1;;;;;48625:35:0;;;33785:389;;;;;;;;;;-1:-1:-1;33785:389:0;;;;;:::i;:::-;;:::i;48820:36::-;;;;;;;;;;-1:-1:-1;48820:36:0;;;;;;;;;;;51875:484;;;;;;;;;;-1:-1:-1;51875:484:0;;;;;:::i;:::-;;:::i;52434:117::-;;;;;;;;;;-1:-1:-1;52434:117:0;;;;;:::i;:::-;;:::i;48462:31::-;;;;;;;;;;-1:-1:-1;48462:31:0;;;;-1:-1:-1;;;;;48462:31:0;;;52737:115;;;;;;;;;;-1:-1:-1;52737:115:0;;;;;:::i;:::-;;:::i;32999:168::-;;;;;;;;;;-1:-1:-1;32999:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;33122:25:0;;;33096:4;33122:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32999:168;48669:48;;;;;;;;;;-1:-1:-1;48669:48:0;;;;-1:-1:-1;;;48669:48:0;;-1:-1:-1;;;;;48669:48:0;;;47716:201;;;;;;;;;;-1:-1:-1;47716:201:0;;;;;:::i;:::-;;:::i;27447:315::-;27549:4;-1:-1:-1;;;;;;27590:40:0;;-1:-1:-1;;;27590:40:0;;:107;;-1:-1:-1;;;;;;;27649:48:0;;-1:-1:-1;;;27649:48:0;27590:107;:162;;;-1:-1:-1;;;;;;;;;;16322:40:0;;;27716:36;27568:184;27447:315;-1:-1:-1;;27447:315:0:o;30730:104::-;30784:13;30819:5;30812:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30730:104;:::o;32327:212::-;32395:7;32422:16;32430:7;32422;:16::i;:::-;32417:64;;32447:34;;-1:-1:-1;;;32447:34:0;;;;;;;;;;;32417:64;-1:-1:-1;32505:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32505:24:0;;32327:212::o;31862:389::-;31937:13;31953:24;31969:7;31953:15;:24::i;:::-;31937:40;;32000:5;-1:-1:-1;;;;;31994:11:0;:2;-1:-1:-1;;;;;31994:11:0;;31990:48;;;32014:24;;-1:-1:-1;;;32014:24:0;;;;;;;;;;;31990:48;22811:10;-1:-1:-1;;;;;32059:21:0;;;;;;:63;;-1:-1:-1;32085:37:0;32102:5;22811:10;32999:168;:::i;32085:37::-;32084:38;32059:63;32055:142;;;32148:35;;-1:-1:-1;;;32148:35:0;;;;;;;;;;;32055:142;32213:28;32222:2;32226:7;32235:5;32213:8;:28::i;:::-;31924:327;31862:389;;:::o;53802:173::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;;;;;;;;;53905:29:::1;:62:::0;;-1:-1:-1;;;;;53905:62:0;;::::1;-1:-1:-1::0;;;53905:62:0::1;-1:-1:-1::0;;;;;53905:62:0;;::::1;::::0;;;::::1;::::0;;53802:173::o;33244:182::-;33388:28;33398:4;33404:2;33408:7;33388:9;:28::i;54534:147::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;54583:7:::1;47334:6:::0;;54596:55:::1;::::0;-1:-1:-1;;;;;47334:6:0;;;;54625:21:::1;::::0;54583:7;54596:55;54583:7;54596:55;54625:21;47334:6;54596:55:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54582:69;;;54670:2;54662:11;;;::::0;::::1;;54571:110;54534:147::o:0;53987:97::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;54054:13:::1;:22:::0;;-1:-1:-1;;54054:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;53987:97::o;33507:197::-;33655:39;33672:4;33678:2;33682:7;33655:39;;;;;;;;;;;;:16;:39::i;53129:221::-;53187:16;53194:8;53187:6;:16::i;:::-;53179:49;;;;-1:-1:-1;;;53179:49:0;;11036:2:1;53179:49:0;;;11018:21:1;11075:2;11055:18;;;11048:30;-1:-1:-1;;;11094:18:1;;;11087:50;11154:18;;53179:49:0;10834:344:1;53179:49:0;53261:17;53269:8;53261:7;:17::i;:::-;-1:-1:-1;;;;;53247:31:0;:10;-1:-1:-1;;;;;53247:31:0;;53239:70;;;;-1:-1:-1;;;53239:70:0;;13627:2:1;53239:70:0;;;13609:21:1;13666:2;13646:18;;;13639:30;13705:28;13685:18;;;13678:56;13751:18;;53239:70:0;13425:350:1;53239:70:0;53320:22;53326:8;53336:5;53320;:22::i;51017:802::-;51106:16;51140:23;51166:17;51176:6;51166:9;:17::i;:::-;51140:43;;51194:30;51241:15;-1:-1:-1;;;;;51227:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51227:30:0;-1:-1:-1;51194:63:0;-1:-1:-1;51293:1:0;51268:22;51345:434;51370:15;51352;:33;:64;;;;-1:-1:-1;51407:9:0;;-1:-1:-1;;;;;51407:9:0;51389:27;;;51352:64;51345:434;;;51436:22;51443:14;51436:6;:22::i;:::-;:30;;51462:4;51436:30;51433:304;;;51487:25;51515:23;51523:14;51515:7;:23::i;:::-;51487:51;;51584:6;-1:-1:-1;;;;;51563:27:0;:17;-1:-1:-1;;;;;51563:27:0;;51559:163;;;51648:14;51615:13;51629:15;51615:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;51685:17;;;;:::i;:::-;;;;51559:163;51468:269;51433:304;51751:16;;;;:::i;:::-;;;;51345:434;;;-1:-1:-1;51798:13:0;;51017:802;-1:-1:-1;;;;51017:802:0:o;49244:739::-;49348:11;-1:-1:-1;;;;;48967:209:0;49045:1;49031:11;:15;49023:49;;;;-1:-1:-1;;;49023:49:0;;;;;;;:::i;:::-;49122:9;;-1:-1:-1;;;;;49122:9:0;49107:11;49091:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;49083:73;;;;-1:-1:-1;;;49083:73:0;;;;;;;:::i;:::-;49380:13:::1;::::0;::::1;;49372:47;;;::::0;-1:-1:-1;;;49372:47:0;;9581:2:1;49372:47:0::1;::::0;::::1;9563:21:1::0;9620:2;9600:18;;;9593:30;-1:-1:-1;;;9639:18:1;;;9632:51;9700:18;;49372:47:0::1;9379:345:1::0;49372:47:0::1;49477:13;::::0;49440:19:::1;::::0;-1:-1:-1;;;;;49477:13:0;;::::1;::::0;49440:33:::1;::::0;-1:-1:-1;;;;;49440:33:0;::::1;::::0;-1:-1:-1;;;49440:19:0;;::::1;;:33;:::i;:::-;-1:-1:-1::0;;;;;49440:50:0::1;;;49432:94;;;::::0;-1:-1:-1;;;49432:94:0;;12919:2:1;49432:94:0::1;::::0;::::1;12901:21:1::0;12958:2;12938:18;;;12931:30;12997:32;12977:18;;;12970:60;13047:18;;49432:94:0::1;12717:354:1::0;49432:94:0::1;49589:30;::::0;-1:-1:-1;;;;;;;;49589:30:0;;::::1;::::0;::::1;::::0;49547:38;::::1;:24;49560:10;49547:12;:24::i;:::-;:38;;;;:::i;:::-;:72;;49539:106;;;;-1:-1:-1::0;;;49539:106:0::1;;;;;;;:::i;:::-;49736:28;::::0;-1:-1:-1;;49753:10:0::1;6506:2:1::0;6502:15;6498:53;49736:28:0::1;::::0;::::1;6486:66:1::0;49711:12:0::1;::::0;6568::1;;49736:28:0::1;;;;;;;;;;;;49726:39;;;;;;49711:54;;49784:50;49803:12;;49784:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;49817:10:0::1;::::0;;-1:-1:-1;49829:4:0;;-1:-1:-1;49784:18:0::1;:50::i;:::-;49776:97;;;::::0;-1:-1:-1;;;49776:97:0;;11385:2:1;49776:97:0::1;::::0;::::1;11367:21:1::0;11424:2;11404:18;;;11397:30;11463:34;11443:18;;;11436:62;-1:-1:-1;;;11514:18:1;;;11507:32;11556:19;;49776:97:0::1;11183:398:1::0;49776:97:0::1;49917:11;-1:-1:-1::0;;;;;49894:34:0::1;:19;;:34;;;;;;;;;;-1:-1:-1::0;;;;;49894:34:0::1;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;;;;;49894:34:0::1;;;;;-1:-1:-1::0;;;;;49894:34:0::1;;;;;;49941;49951:10;49963:11;-1:-1:-1::0;;;;;49941:34:0::1;:9;:34::i;:::-;49361:622;49244:739:::0;;;;:::o;53017:104::-;53072:4;53096:17;53104:8;53096:7;:17::i;53519:99::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;53591:19:::1;:12;53606:4:::0;;53591:19:::1;:::i;30524:129::-:0;30588:7;30617:21;30630:7;30617:12;:21::i;:::-;:26;;30524:129;-1:-1:-1;;30524:129:0:o;50055:522::-;50125:11;-1:-1:-1;;;;;48967:209:0;49045:1;49031:11;:15;49023:49;;;;-1:-1:-1;;;49023:49:0;;;;;;;:::i;:::-;49122:9;;-1:-1:-1;;;;;49122:9:0;49107:11;49091:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;49083:73;;;;-1:-1:-1;;;49083:73:0;;;;;;;:::i;:::-;50157:16:::1;::::0;::::1;::::0;::::1;;;50149:54;;;::::0;-1:-1:-1;;;50149:54:0;;11788:2:1;50149:54:0::1;::::0;::::1;11770:21:1::0;11827:2;11807:18;;;11800:30;11866:27;11846:18;;;11839:55;11911:18;;50149:54:0::1;11586:349:1::0;50149:54:0::1;50224:9;50237:10;50224:23;50216:32;;;::::0;::::1;;50261:25;50289:33;50311:10;50289:21;:33::i;:::-;50377:29;::::0;50261:61;;-1:-1:-1;;;;50377:29:0;::::1;-1:-1:-1::0;;;;;50377:29:0::1;50341:32;50362:11:::0;50261:61;50341:32:::1;:::i;:::-;-1:-1:-1::0;;;;;50341:65:0::1;;;50333:99;;;;-1:-1:-1::0;;;50333:99:0::1;;;;;;;:::i;:::-;50448:66;50470:10;50481:32;50502:11:::0;50481:18;:32:::1;:::i;:::-;-1:-1:-1::0;;;;;29040:19:0;;;;;;:12;:19;;;;;:29;;-1:-1:-1;;;;;29040:29:0;-1:-1:-1;;;;;;;;29040:29:0;;;;;;34652:108;;;50448:66:::1;50535:34;50545:10;50557:11;-1:-1:-1::0;;;;;50535:34:0::1;:9;:34::i;27836:212::-:0;27900:7;-1:-1:-1;;;;;27926:19:0;;27922:60;;27954:28;;-1:-1:-1;;;27954:28:0;;;;;;;;;;;27922:60;-1:-1:-1;;;;;;28010:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28010:27:0;;27836:212::o;50658:288::-;50743:11;-1:-1:-1;;;;;48967:209:0;49045:1;49031:11;:15;49023:49;;;;-1:-1:-1;;;49023:49:0;;;;;;;:::i;:::-;49122:9;;-1:-1:-1;;;;;49122:9:0;49107:11;49091:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;49083:73;;;;-1:-1:-1;;;49083:73:0;;;;;;;:::i;:::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23:::1;47473:68;;;;-1:-1:-1::0;;;47473:68:0::1;;;;;;;:::i;:::-;50819:10:::2;::::0;50785:16:::2;::::0;-1:-1:-1;;;;;;;;50819:10:0;;::::2;::::0;::::2;::::0;50785:30:::2;::::0;-1:-1:-1;;;;;50785:30:0;::::2;::::0;:16:::2;:30;:::i;:::-;-1:-1:-1::0;;;;;50785:44:0::2;;;50777:77;;;;-1:-1:-1::0;;;50777:77:0::2;;;;;;;:::i;:::-;50865:16;:29:::0;;-1:-1:-1;;;;;50865:29:0;::::2;::::0;:16;::::2;::::0;:29:::2;::::0;;;-1:-1:-1;;;;;50865:29:0::2;;:::i;:::-;;;;;;;;-1:-1:-1::0;;;;;50865:29:0::2;;;;;-1:-1:-1::0;;;;;50865:29:0::2;;;;;;50905:33;50915:9;50926:11;-1:-1:-1::0;;;;;50905:33:0::2;:9;:33::i;54314:104::-:0;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;54386:10:::1;:24:::0;54314:104::o;54426:100::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;54496:9:::1;:22:::0;;-1:-1:-1;;;;;;54496:22:0::1;-1:-1:-1::0;;;;;54496:22:0;;;::::1;::::0;;;::::1;::::0;;54426:100::o;54092:141::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;54166:13:::1;::::0;::::1;;:22;54158:31;;;::::0;::::1;;54200:16;:25:::0;;;::::1;;;;-1:-1:-1::0;;54200:25:0;;::::1;::::0;;;::::1;::::0;;54092:141::o;30913:108::-;30969:13;31004:7;30997:14;;;;;:::i;32621:297::-;-1:-1:-1;;;;;32722:24:0;;22811:10;32722:24;32718:54;;;32755:17;;-1:-1:-1;;;32755:17:0;;;;;;;;;;;32718:54;22811:10;32789:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32789:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32789:53:0;;;;;;;;;;32860:48;;8921:41:1;;;32789:42:0;;22811:10;32860:48;;8894:18:1;32860:48:0;;;;;;;32621:297;;:::o;52916:93::-;52960:7;52987:14;26497:1;27311:13;-1:-1:-1;;27311:31:0;;27070:295;52987:14;52980:21;;52916:93;:::o;53626:165::-;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;53725:30:::1;:58:::0;;-1:-1:-1;;;;;53725:58:0;;::::1;-1:-1:-1::0;;;53725:58:0::1;-1:-1:-1::0;;;;53725:58:0;;::::1;::::0;;;::::1;::::0;;53626:165::o;33785:389::-;33964:28;33974:4;33980:2;33984:7;33964:9;:28::i;:::-;-1:-1:-1;;;;;34009:13:0;;6425:19;:23;;34009:76;;;;;34029:56;34060:4;34066:2;34070:7;34079:5;34029:30;:56::i;:::-;34028:57;34009:76;34005:160;;;34111:40;;-1:-1:-1;;;34111:40:0;;;;;;;;;;;34005:160;33785:389;;;;:::o;51875:484::-;51996:13;52049:17;52057:8;52049:7;:17::i;:::-;52031:106;;;;-1:-1:-1;;;52031:106:0;;12503:2:1;52031:106:0;;;12485:21:1;12542:2;12522:18;;;12515:30;12581:34;12561:18;;;12554:62;-1:-1:-1;;;12632:18:1;;;12625:45;12687:19;;52031:106:0;12301:411:1;52031:106:0;52150:28;52181:10;:8;:10::i;:::-;52150:41;;52242:1;52217:14;52211:28;:32;:140;;;;;;;;;;;;;;;;;52285:14;52301:19;:8;:17;:19::i;:::-;52268:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52211:140;52204:147;51875:484;-1:-1:-1;;;51875:484:0:o;52434:117::-;-1:-1:-1;;;;;28741:19:0;;52502:6;28741:19;;;:12;:19;;;;;:23;-1:-1:-1;;;28741:23:0;;-1:-1:-1;;;;;28741:23:0;52528:15;28658:116;52737:115;-1:-1:-1;;;;;28238:19:0;;52796:7;28238:19;;;:12;:19;;;;;:32;-1:-1:-1;;;28238:32:0;;-1:-1:-1;;;;;28238:32:0;52823:21;28140:141;47716:201;47307:7;47334:6;-1:-1:-1;;;;;47334:6:0;22811:10;47481:23;47473:68;;;;-1:-1:-1;;;47473:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47805:22:0;::::1;47797:73;;;::::0;-1:-1:-1;;;47797:73:0;;10280:2:1;47797:73:0::1;::::0;::::1;10262:21:1::0;10319:2;10299:18;;;10292:30;10358:34;10338:18;;;10331:62;-1:-1:-1;;;10409:18:1;;;10402:36;10455:19;;47797:73:0::1;10078:402:1::0;47797:73:0::1;47881:28;47900:8;47881:18;:28::i;34447:193::-:0;34504:4;34549:7;26497:1;34530:26;;:53;;;;;34570:13;;34560:7;:23;34530:53;:100;;;;-1:-1:-1;;34603:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;34603:27:0;;;;34602:28;;34447:193::o;43053:210::-;43178:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;43178:29:0;-1:-1:-1;;;;;43178:29:0;;;;;;;;;43225:28;;43178:24;;43225:28;;;;;;;43053:210;;;:::o;37742:2226::-;37867:35;37905:21;37918:7;37905:12;:21::i;:::-;37867:59;;37969:4;-1:-1:-1;;;;;37947:26:0;:13;:18;;;-1:-1:-1;;;;;37947:26:0;;37943:67;;37982:28;;-1:-1:-1;;;37982:28:0;;;;;;;;;;;37943:67;38027:22;22811:10;-1:-1:-1;;;;;38053:20:0;;;;:75;;-1:-1:-1;38092:36:0;38109:4;22811:10;32999:168;:::i;38092:36::-;38053:130;;;-1:-1:-1;22811:10:0;38147:20;38159:7;38147:11;:20::i;:::-;-1:-1:-1;;;;;38147:36:0;;38053:130;38027:157;;38206:17;38201:66;;38232:35;;-1:-1:-1;;;38232:35:0;;;;;;;;;;;38201:66;-1:-1:-1;;;;;38284:16:0;;38280:52;;38309:23;;-1:-1:-1;;;38309:23:0;;;;;;;;;;;38280:52;38463:35;38480:1;38484:7;38493:4;38463:8;:35::i;:::-;-1:-1:-1;;;;;38806:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;38806:31:0;;;-1:-1:-1;;;;;38806:31:0;;;-1:-1:-1;;38806:31:0;;;;;;;38854:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;38854:29:0;;;;;;;;;;;38938:20;;;:11;:20;;;;;;38975:18;;-1:-1:-1;;;;;;39010:49:0;;;;-1:-1:-1;;;39043:15:0;39010:49;;;;;;;;;;39341:11;;39403:24;;;;;39448:13;;38938:20;;39403:24;;39448:13;39444:398;;39664:13;;39649:11;:28;39645:180;;39704:20;;39775:28;;;;-1:-1:-1;;;;;39749:54:0;-1:-1:-1;;;39749:54:0;-1:-1:-1;;;;;;39749:54:0;;;-1:-1:-1;;;;;39704:20:0;;39749:54;;;;39645:180;38779:1076;;;39895:7;39891:2;-1:-1:-1;;;;;39876:27:0;39885:4;-1:-1:-1;;;;;39876:27:0;-1:-1:-1;;;;;;;;;;;39876:27:0;;;;;;;;;39916:42;33785:389;40407:2514;40489:35;40527:21;40540:7;40527:12;:21::i;:::-;40580:18;;40489:59;;-1:-1:-1;40615:302:0;;;;40651:22;22811:10;-1:-1:-1;;;;;40677:20:0;;;;:79;;-1:-1:-1;40720:36:0;40737:4;22811:10;32999:168;:::i;40720:36::-;40677:138;;;-1:-1:-1;22811:10:0;40779:20;40791:7;40779:11;:20::i;:::-;-1:-1:-1;;;;;40779:36:0;;40677:138;40651:165;;40842:17;40837:66;;40868:35;;-1:-1:-1;;;40868:35:0;;;;;;;;;;;40837:66;40634:283;40615:302;41055:35;41072:1;41076:7;41085:4;41055:8;:35::i;:::-;-1:-1:-1;;;;;41432:18:0;;;41398:31;41432:18;;;:12;:18;;;;;;;;41467:24;;-1:-1:-1;;;;;;;;;;41467:24:0;;;;;;;;;-1:-1:-1;;41467:24:0;;;;41508:29;;;;;41490:1;41508:29;;;;;;;;-1:-1:-1;;41508:29:0;;;;;;;;;;41676:20;;;:11;:20;;;;;;41713;;-1:-1:-1;;;;41783:15:0;41750:49;;;-1:-1:-1;;;41750:49:0;-1:-1:-1;;;;;;41750:49:0;;;;;;;;;;41816:22;-1:-1:-1;;;41816:22:0;;;42116:11;;;42178:24;;;;;42223:13;;41432:18;;42178:24;;42223:13;42219:398;;42439:13;;42424:11;:28;42420:180;;42479:20;;42550:28;;;;-1:-1:-1;;;;;42524:54:0;-1:-1:-1;;;42524:54:0;-1:-1:-1;;;;;;42524:54:0;;;-1:-1:-1;;;;;42479:20:0;;42524:54;;;;42420:180;-1:-1:-1;;42651:35:0;;42678:7;;-1:-1:-1;42674:1:0;;-1:-1:-1;;;;;;42651:35:0;;;-1:-1:-1;;;;;;;;;;;42651:35:0;42674:1;;42651:35;-1:-1:-1;;42884:12:0;:14;;;;;;-1:-1:-1;;40407:2514:0:o;1308:190::-;1433:4;1486;1457:25;1470:5;1477:4;1457:12;:25::i;:::-;:33;;1308:190;-1:-1:-1;;;;1308:190:0:o;34652:108::-;34723:27;34733:2;34737:8;34723:27;;;;;;;;;;;;:9;:27::i;:::-;34652:108;;:::o;29293:1159::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;29406:7:0;;26497:1;29461:23;;:47;;;;;29495:13;;29488:4;:20;29461:47;29457:922;;;29531:31;29565:17;;;:11;:17;;;;;;;;;29531:51;;;;;;;;;-1:-1:-1;;;;;29531:51:0;;;;-1:-1:-1;;;29531:51:0;;-1:-1:-1;;;;;29531:51:0;;;;;;;;-1:-1:-1;;;29531:51:0;;;;;;;;;;;;;;29603:759;;29655:14;;-1:-1:-1;;;;;29655:28:0;;29651:105;;29721:9;29293:1159;-1:-1:-1;;;29293:1159:0:o;29651:105::-;-1:-1:-1;;;30110:6:0;30157:17;;;;:11;:17;;;;;;;;;30145:29;;;;;;;;;-1:-1:-1;;;;;30145:29:0;;;;;-1:-1:-1;;;30145:29:0;;-1:-1:-1;;;;;30145:29:0;;;;;;;;-1:-1:-1;;;30145:29:0;;;;;;;;;;;;;30207:28;30203:113;;30277:9;29293:1159;-1:-1:-1;;;29293:1159:0:o;30203:113::-;30068:273;;;29510:869;29457:922;30411:31;;-1:-1:-1;;;30411:31:0;;;;;;;;;;;43777:701;43973:72;;-1:-1:-1;;;43973:72:0;;43950:4;;-1:-1:-1;;;;;43973:36:0;;;;;:72;;22811:10;;44024:4;;44030:7;;44039:5;;43973:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43973:72:0;;;;;;;;-1:-1:-1;;43973:72:0;;;;;;;;;;;;:::i;:::-;;;43969:500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44213:13:0;;44209:247;;44261:40;;-1:-1:-1;;;44261:40:0;;;;;;;;;;;44209:247;44410:6;44404:13;44395:6;44391:2;44387:15;44380:38;43969:500;-1:-1:-1;;;;;;44094:55:0;-1:-1:-1;;;44094:55:0;;-1:-1:-1;43969:500:0;43777:701;;;;;;:::o;53398:113::-;53458:13;53491:12;53484:19;;;;;:::i;3138:723::-;3194:13;3415:10;3411:53;;-1:-1:-1;;3442:10:0;;;;;;;;;;;;-1:-1:-1;;;3442:10:0;;;;;3138:723::o;3411:53::-;3489:5;3474:12;3530:78;3537:9;;3530:78;;3563:8;;;;:::i;:::-;;-1:-1:-1;3586:10:0;;-1:-1:-1;3594:2:0;3586:10;;:::i;:::-;;;3530:78;;;3618:19;3650:6;-1:-1:-1;;;;;3640:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3640:17:0;;3618:39;;3668:154;3675:10;;3668:154;;3702:11;3712:1;3702:11;;:::i;:::-;;-1:-1:-1;3771:10:0;3779:2;3771:5;:10;:::i;:::-;3758:24;;:2;:24;:::i;:::-;3745:39;;3728:6;3735;3728:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3728:56:0;;;;;;;;-1:-1:-1;3799:11:0;3808:2;3799:11;;:::i;:::-;;;3668:154;;48077:191;48151:16;48170:6;;-1:-1:-1;;;;;48187:17:0;;;-1:-1:-1;;;;;;48187:17:0;;;;;;48220:40;;48170:6;;;;;;;48220:40;;48151:16;48220:40;48140:128;48077:191;:::o;1859:675::-;1942:7;1985:4;1942:7;2000:497;2024:5;:12;2020:1;:16;2000:497;;;2058:20;2081:5;2087:1;2081:8;;;;;;;;:::i;:::-;;;;;;;2058:31;;2124:12;2108;:28;2104:382;;2610:13;2660:15;;;2696:4;2689:15;;;2743:4;2727:21;;2236:57;;2104:382;;;2610:13;2660:15;;;2696:4;2689:15;;;2743:4;2727:21;;2413:57;;2104:382;-1:-1:-1;2038:3:0;;;;:::i;:::-;;;;2000:497;;;-1:-1:-1;2514:12:0;1859:675;-1:-1:-1;;;1859:675:0:o;35147:175::-;35280:32;35286:2;35290:8;35300:5;35307:4;35779:13;;-1:-1:-1;;;;;35809:16:0;;35805:48;;35834:19;;-1:-1:-1;;;35834:19:0;;;;;;;;;;;35805:48;35870:13;35866:44;;35892:18;;-1:-1:-1;;;35892:18:0;;;;;;;;;;;35866:44;-1:-1:-1;;;;;36277:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;36338:49:0;;-1:-1:-1;;;;;36277:44:0;;;;;;;36338:49;;;-1:-1:-1;;;;;36277:44:0;;;;;;36338:49;;;;;;;;;;;;;;;;36408:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;36460:66:0;;;;-1:-1:-1;;;36510:15:0;36460:66;;;;;;;;;;36408:25;36613:23;;;36661:4;:23;;;;-1:-1:-1;;;;;;36669:13:0;;6425:19;:23;;36669:15;36657:667;;;36707:324;36740:38;;36765:12;;-1:-1:-1;;;;;36740:38:0;;;36757:1;;-1:-1:-1;;;;;;;;;;;36740:38:0;36757:1;;36740:38;36808:69;36847:1;36851:2;36855:14;;;;;;36871:5;36808:30;:69::i;:::-;36803:178;;36915:40;;-1:-1:-1;;;36915:40:0;;;;;;;;;;;36803:178;37026:3;37010:12;:19;;36707:324;;37116:12;37099:13;;:29;37095:43;;37130:8;;;37095:43;36657:667;;;37183:124;37216:40;;37241:14;;;;;-1:-1:-1;;;;;37216:40:0;;;37233:1;;-1:-1:-1;;;;;;;;;;;37216:40:0;37233:1;;37216:40;37302:3;37286:12;:19;;37183:124;;36657:667;-1:-1:-1;37340:13:0;:28;37394:60;33785:389;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:160::-;257:20;;313:13;;306:21;296:32;;286:60;;342:1;339;332:12;357:171;424:20;;-1:-1:-1;;;;;473:30:1;;463:41;;453:69;;518:1;515;508:12;533:186;592:6;645:2;633:9;624:7;620:23;616:32;613:52;;;661:1;658;651:12;613:52;684:29;703:9;684:29;:::i;724:260::-;792:6;800;853:2;841:9;832:7;828:23;824:32;821:52;;;869:1;866;859:12;821:52;892:29;911:9;892:29;:::i;:::-;882:39;;940:38;974:2;963:9;959:18;940:38;:::i;:::-;930:48;;724:260;;;;;:::o;989:328::-;1066:6;1074;1082;1135:2;1123:9;1114:7;1110:23;1106:32;1103:52;;;1151:1;1148;1141:12;1103:52;1174:29;1193:9;1174:29;:::i;:::-;1164:39;;1222:38;1256:2;1245:9;1241:18;1222:38;:::i;:::-;1212:48;;1307:2;1296:9;1292:18;1279:32;1269:42;;989:328;;;;;:::o;1322:1138::-;1417:6;1425;1433;1441;1494:3;1482:9;1473:7;1469:23;1465:33;1462:53;;;1511:1;1508;1501:12;1462:53;1534:29;1553:9;1534:29;:::i;:::-;1524:39;;1582:38;1616:2;1605:9;1601:18;1582:38;:::i;:::-;1572:48;;1667:2;1656:9;1652:18;1639:32;1629:42;;1722:2;1711:9;1707:18;1694:32;-1:-1:-1;;;;;1786:2:1;1778:6;1775:14;1772:34;;;1802:1;1799;1792:12;1772:34;1840:6;1829:9;1825:22;1815:32;;1885:7;1878:4;1874:2;1870:13;1866:27;1856:55;;1907:1;1904;1897:12;1856:55;1943:2;1930:16;1965:2;1961;1958:10;1955:36;;;1971:18;;:::i;:::-;2046:2;2040:9;2014:2;2100:13;;-1:-1:-1;;2096:22:1;;;2120:2;2092:31;2088:40;2076:53;;;2144:18;;;2164:22;;;2141:46;2138:72;;;2190:18;;:::i;:::-;2230:10;2226:2;2219:22;2265:2;2257:6;2250:18;2305:7;2300:2;2295;2291;2287:11;2283:20;2280:33;2277:53;;;2326:1;2323;2316:12;2277:53;2382:2;2377;2373;2369:11;2364:2;2356:6;2352:15;2339:46;2427:1;2422:2;2417;2409:6;2405:15;2401:24;2394:35;2448:6;2438:16;;;;;;;1322:1138;;;;;;;:::o;2465:254::-;2530:6;2538;2591:2;2579:9;2570:7;2566:23;2562:32;2559:52;;;2607:1;2604;2597:12;2559:52;2630:29;2649:9;2630:29;:::i;:::-;2620:39;;2678:35;2709:2;2698:9;2694:18;2678:35;:::i;2724:254::-;2792:6;2800;2853:2;2841:9;2832:7;2828:23;2824:32;2821:52;;;2869:1;2866;2859:12;2821:52;2892:29;2911:9;2892:29;:::i;:::-;2882:39;2968:2;2953:18;;;;2940:32;;-1:-1:-1;;;2724:254:1:o;2983:693::-;3077:6;3085;3093;3146:2;3134:9;3125:7;3121:23;3117:32;3114:52;;;3162:1;3159;3152:12;3114:52;3202:9;3189:23;-1:-1:-1;;;;;3272:2:1;3264:6;3261:14;3258:34;;;3288:1;3285;3278:12;3258:34;3326:6;3315:9;3311:22;3301:32;;3371:7;3364:4;3360:2;3356:13;3352:27;3342:55;;3393:1;3390;3383:12;3342:55;3433:2;3420:16;3459:2;3451:6;3448:14;3445:34;;;3475:1;3472;3465:12;3445:34;3530:7;3523:4;3513:6;3510:1;3506:14;3502:2;3498:23;3494:34;3491:47;3488:67;;;3551:1;3548;3541:12;3488:67;3582:4;3574:13;;;;-1:-1:-1;3606:6:1;-1:-1:-1;3631:39:1;;3649:20;;;-1:-1:-1;3631:39:1;:::i;:::-;3621:49;;2983:693;;;;;:::o;3681:180::-;3737:6;3790:2;3778:9;3769:7;3765:23;3761:32;3758:52;;;3806:1;3803;3796:12;3758:52;3829:26;3845:9;3829:26;:::i;3866:180::-;3925:6;3978:2;3966:9;3957:7;3953:23;3949:32;3946:52;;;3994:1;3991;3984:12;3946:52;-1:-1:-1;4017:23:1;;3866:180;-1:-1:-1;3866:180:1:o;4051:245::-;4109:6;4162:2;4150:9;4141:7;4137:23;4133:32;4130:52;;;4178:1;4175;4168:12;4130:52;4217:9;4204:23;4236:30;4260:5;4236:30;:::i;4301:249::-;4370:6;4423:2;4411:9;4402:7;4398:23;4394:32;4391:52;;;4439:1;4436;4429:12;4391:52;4471:9;4465:16;4490:30;4514:5;4490:30;:::i;4555:592::-;4626:6;4634;4687:2;4675:9;4666:7;4662:23;4658:32;4655:52;;;4703:1;4700;4693:12;4655:52;4743:9;4730:23;-1:-1:-1;;;;;4813:2:1;4805:6;4802:14;4799:34;;;4829:1;4826;4819:12;4799:34;4867:6;4856:9;4852:22;4842:32;;4912:7;4905:4;4901:2;4897:13;4893:27;4883:55;;4934:1;4931;4924:12;4883:55;4974:2;4961:16;5000:2;4992:6;4989:14;4986:34;;;5016:1;5013;5006:12;4986:34;5061:7;5056:2;5047:6;5043:2;5039:15;5035:24;5032:37;5029:57;;;5082:1;5079;5072:12;5029:57;5113:2;5105:11;;;;;5135:6;;-1:-1:-1;4555:592:1;;-1:-1:-1;;;;4555:592:1:o;5152:301::-;5211:6;5264:2;5252:9;5243:7;5239:23;5235:32;5232:52;;;5280:1;5277;5270:12;5232:52;5319:9;5306:23;-1:-1:-1;;;;;5362:5:1;5358:46;5351:5;5348:57;5338:85;;5419:1;5416;5409:12;5643:184;5701:6;5754:2;5742:9;5733:7;5729:23;5725:32;5722:52;;;5770:1;5767;5760:12;5722:52;5793:28;5811:9;5793:28;:::i;5832:258::-;5899:6;5907;5960:2;5948:9;5939:7;5935:23;5931:32;5928:52;;;5976:1;5973;5966:12;5928:52;5999:28;6017:9;5999:28;:::i;6095:257::-;6136:3;6174:5;6168:12;6201:6;6196:3;6189:19;6217:63;6273:6;6266:4;6261:3;6257:14;6250:4;6243:5;6239:16;6217:63;:::i;:::-;6334:2;6313:15;-1:-1:-1;;6309:29:1;6300:39;;;;6341:4;6296:50;;6095:257;-1:-1:-1;;6095:257:1:o;6591:637::-;6871:3;6909:6;6903:13;6925:53;6971:6;6966:3;6959:4;6951:6;6947:17;6925:53;:::i;:::-;7041:13;;7000:16;;;;7063:57;7041:13;7000:16;7097:4;7085:17;;7063:57;:::i;:::-;-1:-1:-1;;;7142:20:1;;7171:22;;;7220:1;7209:13;;6591:637;-1:-1:-1;;;;6591:637:1:o;7651:488::-;-1:-1:-1;;;;;7920:15:1;;;7902:34;;7972:15;;7967:2;7952:18;;7945:43;8019:2;8004:18;;7997:34;;;8067:3;8062:2;8047:18;;8040:31;;;7845:4;;8088:45;;8113:19;;8105:6;8088:45;:::i;:::-;8080:53;7651:488;-1:-1:-1;;;;;;7651:488:1:o;8144:632::-;8315:2;8367:21;;;8437:13;;8340:18;;;8459:22;;;8286:4;;8315:2;8538:15;;;;8512:2;8497:18;;;8286:4;8581:169;8595:6;8592:1;8589:13;8581:169;;;8656:13;;8644:26;;8725:15;;;;8690:12;;;;8617:1;8610:9;8581:169;;;-1:-1:-1;8767:3:1;;8144:632;-1:-1:-1;;;;;;8144:632:1:o;9155:219::-;9304:2;9293:9;9286:21;9267:4;9324:44;9364:2;9353:9;9349:18;9341:6;9324:44;:::i;9729:344::-;9931:2;9913:21;;;9970:2;9950:18;;;9943:30;-1:-1:-1;;;10004:2:1;9989:18;;9982:50;10064:2;10049:18;;9729:344::o;10485:::-;10687:2;10669:21;;;10726:2;10706:18;;;10699:30;-1:-1:-1;;;10760:2:1;10745:18;;10738:50;10820:2;10805:18;;10485:344::o;11940:356::-;12142:2;12124:21;;;12161:18;;;12154:30;12220:34;12215:2;12200:18;;12193:62;12287:2;12272:18;;11940:356::o;13076:344::-;13278:2;13260:21;;;13317:2;13297:18;;;13290:30;-1:-1:-1;;;13351:2:1;13336:18;;13329:50;13411:2;13396:18;;13076:344::o;14390:253::-;14430:3;-1:-1:-1;;;;;14519:2:1;14516:1;14512:10;14549:2;14546:1;14542:10;14580:3;14576:2;14572:12;14567:3;14564:21;14561:47;;;14588:18;;:::i;:::-;14624:13;;14390:253;-1:-1:-1;;;;14390:253:1:o;14648:128::-;14688:3;14719:1;14715:6;14712:1;14709:13;14706:39;;;14725:18;;:::i;:::-;-1:-1:-1;14761:9:1;;14648:128::o;14781:236::-;14820:3;-1:-1:-1;;;;;14893:2:1;14890:1;14886:10;14923:2;14920:1;14916:10;14954:3;14950:2;14946:12;14941:3;14938:21;14935:47;;;14962:18;;:::i;15022:120::-;15062:1;15088;15078:35;;15093:18;;:::i;:::-;-1:-1:-1;15127:9:1;;15022:120::o;15147:125::-;15187:4;15215:1;15212;15209:8;15206:34;;;15220:18;;:::i;:::-;-1:-1:-1;15257:9:1;;15147:125::o;15277:258::-;15349:1;15359:113;15373:6;15370:1;15367:13;15359:113;;;15449:11;;;15443:18;15430:11;;;15423:39;15395:2;15388:10;15359:113;;;15490:6;15487:1;15484:13;15481:48;;;-1:-1:-1;;15525:1:1;15507:16;;15500:27;15277:258::o;15540:380::-;15619:1;15615:12;;;;15662;;;15683:61;;15737:4;15729:6;15725:17;15715:27;;15683:61;15790:2;15782:6;15779:14;15759:18;15756:38;15753:161;;;15836:10;15831:3;15827:20;15824:1;15817:31;15871:4;15868:1;15861:15;15899:4;15896:1;15889:15;15753:161;;15540:380;;;:::o;15925:135::-;15964:3;-1:-1:-1;;15985:17:1;;15982:43;;;16005:18;;:::i;:::-;-1:-1:-1;16052:1:1;16041:13;;15925:135::o;16065:112::-;16097:1;16123;16113:35;;16128:18;;:::i;:::-;-1:-1:-1;16162:9:1;;16065:112::o;16182:127::-;16243:10;16238:3;16234:20;16231:1;16224:31;16274:4;16271:1;16264:15;16298:4;16295:1;16288:15;16314:127;16375:10;16370:3;16366:20;16363:1;16356:31;16406:4;16403:1;16396:15;16430:4;16427:1;16420:15;16446:127;16507:10;16502:3;16498:20;16495:1;16488:31;16538:4;16535:1;16528:15;16562:4;16559:1;16552:15;16578:127;16639:10;16634:3;16630:20;16627:1;16620:31;16670:4;16667:1;16660:15;16694:4;16691:1;16684:15;16710:131;-1:-1:-1;;;;;;16784:32:1;;16774:43;;16764:71;;16831:1;16828;16821:12

Swarm Source

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