ETH Price: $3,488.56 (+3.49%)
Gas: 4 Gwei

Token

Shinsekai (SSK)
 

Overview

Max Total Supply

10,000 SSK

Holders

3,679

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SSK
0x87213c6c8fb69b159a95e102181d53446473d9c3
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Shinsekai aims to build the greatest NFT manga community and push this industry towards its final stage of evolution.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Shinsekai

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts/utils/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 MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
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 0;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @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) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        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 {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _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);

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

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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 Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

// File: contracts/Shinsekai.sol



pragma solidity ^0.8.0;






contract Shinsekai is Ownable, ERC721A, ReentrancyGuard {
    uint256 public immutable amountForTeam;
    uint private constant MAX_SUPPLY = 10000;
    uint private constant MAX_BATCH = 5;
    bytes32 public portalAccessRoot;
    bytes32 public reserveCorpRoot;
    bytes32 public publicRegistrationRoot;
    mapping(address => uint256) public portalAccessClaimed;
    mapping(address => bool) public portalAccessClaimedChecker;
    mapping(address => uint256) public reserveCorpClaimed;
    mapping(address => bool) public reserveCorpClaimedChecker;
    mapping(address => uint256) public publicRegistrationClaimed;
    mapping(address => bool) public publicRegistrationChecker;
    

    struct SaleConfig {
        uint32 publicSaleStartTime;
        uint32 publicSaleKey;
        uint64 portalAccessPrice;
        uint64 reserveCorpPrice;
        uint64 publicRegistrationPrice;
        uint64 publicPrice;
        
    }

    SaleConfig public saleConfig;

    constructor(
        uint256 amountForTeam_
    ) ERC721A("Shinsekai", "SSK") {
        
        amountForTeam = amountForTeam_;
        require(
            amountForTeam_ <= MAX_SUPPLY,
            "larger collection size needed"
        );
    }

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

    function gift(address[] calldata receivers) external onlyOwner {
        require(totalSupply() + receivers.length <= MAX_SUPPLY, "MAX_MINT");
        for (uint256 i = 0; i < receivers.length; i++) {
            _safeMint(receivers[i], 1);
        }
    }

    function reserveGiveaway(uint256 num, address walletAddress)
        public
        onlyOwner
    {
        require(totalSupply() + num <= MAX_SUPPLY, "Exceeds total supply");
        _safeMint(walletAddress, num);
    }

    function portalAccess(bytes32[] calldata _merkleProof, uint256 quantity) external payable callerIsUser {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, portalAccessRoot, leaf),
            "Invalid Merkle Proof.");
        uint256 price = uint256(saleConfig.portalAccessPrice);
        require(price != 0, "whitelist sale has not begun yet");
        require(totalSupply() + quantity <= 8000, "Exceeds total supply");
        if (!portalAccessClaimedChecker[msg.sender]) {
            portalAccessClaimedChecker[msg.sender] = true;
            portalAccessClaimed[msg.sender] = 2;
        }
        require(portalAccessClaimed[msg.sender] - quantity >= 0, "Address already minted num of tokens allowed");
        portalAccessClaimed[msg.sender] = portalAccessClaimed[msg.sender] - quantity;
        _safeMint(msg.sender, quantity);
        refundIfOver(price * quantity);
    }


    function reserveCorp(bytes32[] calldata _merkleProof, uint256 quantity) external payable callerIsUser {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, reserveCorpRoot, leaf),
            "Invalid Merkle Proof.");
        uint256 price = uint256(saleConfig.reserveCorpPrice);
        require(price != 0, "whitelist sale has not begun yet");
        require(totalSupply() + quantity <= 9000, "Exceeds total supply");
        if (!reserveCorpClaimedChecker[msg.sender]) {
            reserveCorpClaimedChecker[msg.sender] = true;
            reserveCorpClaimed[msg.sender] = 2;
        }
        require(reserveCorpClaimed[msg.sender] - quantity >= 0, "Address already minted num of tokens allowed");
        reserveCorpClaimed[msg.sender] = reserveCorpClaimed[msg.sender] - quantity;
        _safeMint(msg.sender, quantity);
        refundIfOver(price * quantity);
    }

    function publicRegistration(bytes32[] calldata _merkleProof, uint256 quantity) external payable callerIsUser {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, publicRegistrationRoot, leaf),
            "Invalid Merkle Proof.");
        uint256 price = uint256(saleConfig.publicRegistrationPrice);
        require(price != 0, "whitelist sale has not begun yet");
        require(totalSupply() + quantity <= MAX_SUPPLY, "Exceeds total supply");
        if (!publicRegistrationChecker[msg.sender]) {
            publicRegistrationChecker[msg.sender] = true;
            publicRegistrationClaimed[msg.sender] = 2;
        }
        require(publicRegistrationClaimed[msg.sender] - quantity >= 0, "Address already minted num of tokens allowed");
        publicRegistrationClaimed[msg.sender] = publicRegistrationClaimed[msg.sender] - quantity;
        _safeMint(msg.sender, quantity);
        refundIfOver(price * quantity);
    }

    function publicSaleMint(uint256 quantity, uint256 callerPublicSaleKey)
        external
        payable
        callerIsUser
    {
        SaleConfig memory config = saleConfig;
        uint256 publicSaleKey = uint256(config.publicSaleKey);
        uint256 publicPrice = uint256(config.publicPrice);
        uint256 publicSaleStartTime = uint256(config.publicSaleStartTime);
        require(
            publicSaleKey == callerPublicSaleKey,
            "called with incorrect public sale key"
        );

        require(
            isPublicSaleOn(publicPrice, publicSaleKey, publicSaleStartTime),
            "public sale has not begun yet"
        );
        require(
            totalSupply() + quantity <= MAX_SUPPLY,
            "reached max supply"
        );
       
        _safeMint(msg.sender, quantity);
        refundIfOver(publicPrice * quantity);
    }

    function refundIfOver(uint256 price) private {
        require(msg.value >= price, "Need to send more ETH.");
        if (msg.value > price) {
            payable(msg.sender).transfer(msg.value - price);
        }
    }

    function isPublicSaleOn(
        uint256 publicPriceWei,
        uint256 publicSaleKey,
        uint256 publicSaleStartTime
    ) public view returns (bool) {
        return
            publicPriceWei != 0 &&
            publicSaleKey != 0 &&
            block.timestamp >= publicSaleStartTime;
    }

    function setupSaleInfo(
        uint64 whitelistPriceWei2,
        uint64 whitelistPriceWei1,
        uint64 publicRegistrationPrice,
        uint64 publicPriceWei,
        uint32 publicSaleStartTime
    ) external onlyOwner {
        saleConfig = SaleConfig(
            publicSaleStartTime,
            saleConfig.publicSaleKey,
            whitelistPriceWei1,
            whitelistPriceWei2,
            publicRegistrationPrice,
            publicPriceWei
        );
    }

    function setPublicSaleKey(uint32 key) external onlyOwner {
        saleConfig.publicSaleKey = key;
    }

    function setPublicPrice(uint64 price) external onlyOwner {
        saleConfig.publicPrice = price;
    }

    function setPublicRegistrationPrice(uint64 price) external onlyOwner {
        saleConfig.publicRegistrationPrice = price;
    }

    function setPortalAccessPrice(uint64 price) external onlyOwner {
        saleConfig.portalAccessPrice = price;
    }

    function setReserveCorpPrice(uint64 price) external onlyOwner {
        saleConfig.reserveCorpPrice = price;
    }

    function setPublicSaleStartTime(uint32 time) external onlyOwner {
        saleConfig.publicSaleStartTime = time;
    }

    function setPortalAccessRoot(bytes32 merkle_root) external onlyOwner {
        portalAccessRoot = merkle_root;
    }

    function setPublicRegistrationRoot(bytes32 merkle_root) external onlyOwner {
        publicRegistrationRoot = merkle_root;
    }

    function setReserveCorpRoot(bytes32 merkle_root) external onlyOwner {
        reserveCorpRoot = merkle_root;
    }

    function teamMint(uint256 quantity, address walletAddress)
        external
        onlyOwner
    {
        require(
            totalSupply() + quantity <= amountForTeam,
            "too many already minted for team mint"
        );
        require(
            quantity % MAX_BATCH == 0,
            "can only mint a multiple of the MAX_BATCH"
        );
        uint256 numChunks = quantity / MAX_BATCH;
        for (uint256 i = 0; i < numChunks; i++) {
            _safeMint(walletAddress, MAX_BATCH);
        }
    }

    string private _baseTokenURI;

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

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

    function withdraw() external onlyOwner nonReentrant {
        uint256 balance = address(this).balance;

        payable(0xa6Fc099Cc057b647B1E01562305D3e8150ADf847).transfer(
            balance
        );
    }

    function withdrawAmount(uint _amount) external onlyOwner nonReentrant {
        payable(0xa6Fc099Cc057b647B1E01562305D3e8150ADf847).transfer(_amount);
    }

    

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"amountForTeam_","type":"uint256"}],"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":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"amountForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"publicPriceWei","type":"uint256"},{"internalType":"uint256","name":"publicSaleKey","type":"uint256"},{"internalType":"uint256","name":"publicSaleStartTime","type":"uint256"}],"name":"isPublicSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"portalAccess","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"portalAccessClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"portalAccessClaimedChecker","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"portalAccessRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicRegistration","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicRegistrationChecker","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicRegistrationClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicRegistrationRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint256","name":"callerPublicSaleKey","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserveCorp","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"reserveCorpClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"reserveCorpClaimedChecker","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reserveCorpRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"},{"internalType":"address","name":"walletAddress","type":"address"}],"name":"reserveGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleConfig","outputs":[{"internalType":"uint32","name":"publicSaleStartTime","type":"uint32"},{"internalType":"uint32","name":"publicSaleKey","type":"uint32"},{"internalType":"uint64","name":"portalAccessPrice","type":"uint64"},{"internalType":"uint64","name":"reserveCorpPrice","type":"uint64"},{"internalType":"uint64","name":"publicRegistrationPrice","type":"uint64"},{"internalType":"uint64","name":"publicPrice","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"price","type":"uint64"}],"name":"setPortalAccessPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkle_root","type":"bytes32"}],"name":"setPortalAccessRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"price","type":"uint64"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"price","type":"uint64"}],"name":"setPublicRegistrationPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkle_root","type":"bytes32"}],"name":"setPublicRegistrationRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"key","type":"uint32"}],"name":"setPublicSaleKey","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"time","type":"uint32"}],"name":"setPublicSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"price","type":"uint64"}],"name":"setReserveCorpPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkle_root","type":"bytes32"}],"name":"setReserveCorpRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"whitelistPriceWei2","type":"uint64"},{"internalType":"uint64","name":"whitelistPriceWei1","type":"uint64"},{"internalType":"uint64","name":"publicRegistrationPrice","type":"uint64"},{"internalType":"uint64","name":"publicPriceWei","type":"uint64"},{"internalType":"uint32","name":"publicSaleStartTime","type":"uint32"}],"name":"setupSaleInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"walletAddress","type":"address"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawAmount","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040523480156200001157600080fd5b506040516200332238038062003322833981016040819052620000349162000221565b604051806040016040528060098152602001685368696e73656b616960b81b8152506040518060400160405280600381526020016253534b60e81b8152506200008c620000866200012760201b60201c565b6200012b565b8151620000a19060039060208501906200017b565b508051620000b79060049060208401906200017b565b506000600190815560095550506080819052612710811115620001205760405162461bcd60e51b815260206004820152601d60248201527f6c617267657220636f6c6c656374696f6e2073697a65206e6565646564000000604482015260640160405180910390fd5b5062000278565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b82805462000189906200023b565b90600052602060002090601f016020900481019282620001ad5760008555620001f8565b82601f10620001c857805160ff1916838001178555620001f8565b82800160010185558215620001f8579182015b82811115620001f8578251825591602001919060010190620001db565b50620002069291506200020a565b5090565b5b808211156200020657600081556001016200020b565b6000602082840312156200023457600080fd5b5051919050565b600181811c908216806200025057607f821691505b602082108114156200027257634e487b7160e01b600052602260045260246000fd5b50919050565b6080516130876200029b600039600081816108300152611a2601526130876000f3fe6080604052600436106102e45760003560e01c806368010d6e11610190578063adbe7f64116100dc578063cb91d8b311610095578063e1e9438c1161006f578063e1e9438c1461098b578063e985e9c5146109b8578063eef3451814610a01578063f2fde38b14610a2e57600080fd5b8063cb91d8b314610928578063cc543d891461093b578063dc33e6811461096b57600080fd5b8063adbe7f6414610872578063b584aee714610885578063b6c0930b1461089b578063b88d4fde146108c8578063bfa457bc146108e8578063c87b56dd1461090857600080fd5b806390aa0b0f1161014957806395d89b411161012357806395d89b41146107e9578063a22cb465146107fe578063a69b1cd51461081e578063aa3e46ad1461085257600080fd5b806390aa0b0f146106e1578063910549701461077d5780639231ab2a1461079357600080fd5b806368010d6e1461062e57806370a082311461064e578063715018a61461066e5780638ae04b6f146106835780638da5cb5b146106a357806390028083146106c157600080fd5b806334a6ecfe1161024f578063422030ba1161020857806355f804b3116101e257806355f804b3146105ae5780635fd84c28146105ce5780636352211e146105ee578063677f7b821461060e57600080fd5b8063422030ba1461053e57806342842e0e1461055e5780634318ea1e1461057e57600080fd5b806334a6ecfe14610493578063351adfac146104b3578063361576d0146104c65780633b242ca9146104d95780633ccfd60b146104f95780633ce3e8551461050e57600080fd5b80630da3937c116102a15780630da3937c146103da578063163e1e61146103fa57806318160ddd1461041a5780631f05c4e11461043d57806323b872dd1461045d5780632ed461d01461047d57600080fd5b806301ffc9a7146102e95780630562b9f71461031e57806306fdde0314610340578063081812fc14610362578063095ea7b31461039a5780630c29dbae146103ba575b600080fd5b3480156102f557600080fd5b50610309610304366004612b3f565b610a4e565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033e610339366004612b26565b610aa0565b005b34801561034c57600080fd5b50610355610b75565b6040516103159190612d8e565b34801561036e57600080fd5b5061038261037d366004612b26565b610c07565b6040516001600160a01b039091168152602001610315565b3480156103a657600080fd5b5061033e6103b5366004612a70565b610c4b565b3480156103c657600080fd5b5061033e6103d5366004612c76565b610cd9565b3480156103e657600080fd5b5061033e6103f5366004612c76565b610d26565b34801561040657600080fd5b5061033e610415366004612a9a565b610d82565b34801561042657600080fd5b50600254600154035b604051908152602001610315565b34801561044957600080fd5b5061033e610458366004612c91565b610e4e565b34801561046957600080fd5b5061033e61047836600461291d565b610f4d565b34801561048957600080fd5b5061042f600b5481565b34801561049f57600080fd5b5061033e6104ae366004612c76565b610f58565b61033e6104c1366004612adb565b610faa565b61033e6104d4366004612adb565b61118d565b3480156104e557600080fd5b5061033e6104f4366004612b26565b611357565b34801561050557600080fd5b5061033e611386565b34801561051a57600080fd5b506103096105293660046128cf565b600e6020526000908152604090205460ff1681565b34801561054a57600080fd5b50610309610559366004612c2f565b61144b565b34801561056a57600080fd5b5061033e61057936600461291d565b61146f565b34801561058a57600080fd5b506103096105993660046128cf565b60126020526000908152604090205460ff1681565b3480156105ba57600080fd5b5061033e6105c9366004612b79565b61148a565b3480156105da57600080fd5b5061033e6105e9366004612c5b565b6114c0565b3480156105fa57600080fd5b50610382610609366004612b26565b611506565b34801561061a57600080fd5b5061033e610629366004612b26565b611518565b34801561063a57600080fd5b5061033e610649366004612bea565b611547565b34801561065a57600080fd5b5061042f6106693660046128cf565b6115b8565b34801561067a57600080fd5b5061033e611606565b34801561068f57600080fd5b5061033e61069e366004612c76565b61163c565b3480156106af57600080fd5b506000546001600160a01b0316610382565b3480156106cd57600080fd5b5061033e6106dc366004612c5b565b611693565b3480156106ed57600080fd5b506013546014546107379163ffffffff808216926401000000008304909116916001600160401b03600160401b8204811692600160801b8304821692600160c01b90048216911686565b6040805163ffffffff97881681529690951660208701526001600160401b03938416948601949094529082166060850152811660808401521660a082015260c001610315565b34801561078957600080fd5b5061042f600c5481565b34801561079f57600080fd5b506107b36107ae366004612b26565b6116e5565b6040805182516001600160a01b031681526020808401516001600160401b03169082015291810151151590820152606001610315565b3480156107f557600080fd5b5061035561170b565b34801561080a57600080fd5b5061033e610819366004612a34565b61171a565b34801561082a57600080fd5b5061042f7f000000000000000000000000000000000000000000000000000000000000000081565b34801561085e57600080fd5b5061033e61086d366004612b26565b6117b0565b61033e610880366004612adb565b6117df565b34801561089157600080fd5b5061042f600a5481565b3480156108a757600080fd5b5061042f6108b63660046128cf565b600f6020526000908152604090205481565b3480156108d457600080fd5b5061033e6108e3366004612959565b6119a9565b3480156108f457600080fd5b5061033e610903366004612bea565b6119fa565b34801561091457600080fd5b50610355610923366004612b26565b611b5a565b61033e610936366004612c0d565b611bdf565b34801561094757600080fd5b506103096109563660046128cf565b60106020526000908152604090205460ff1681565b34801561097757600080fd5b5061042f6109863660046128cf565b611da0565b34801561099757600080fd5b5061042f6109a63660046128cf565b600d6020526000908152604090205481565b3480156109c457600080fd5b506103096109d33660046128ea565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b348015610a0d57600080fd5b5061042f610a1c3660046128cf565b60116020526000908152604090205481565b348015610a3a57600080fd5b5061033e610a493660046128cf565b611dab565b60006001600160e01b031982166380ac58cd60e01b1480610a7f57506001600160e01b03198216635b5e139f60e01b145b80610a9a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b03163314610ad35760405162461bcd60e51b8152600401610aca90612eb6565b60405180910390fd5b60026009541415610b265760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610aca565b600260095560405173a6fc099cc057b647b1e01562305d3e8150adf8479082156108fc029083906000818181858888f19350505050158015610b6c573d6000803e3d6000fd5b50506001600955565b606060038054610b8490612f79565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb090612f79565b8015610bfd5780601f10610bd257610100808354040283529160200191610bfd565b820191906000526020600020905b815481529060010190602001808311610be057829003601f168201915b5050505050905090565b6000610c1282611e46565b610c2f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610c5682611506565b9050806001600160a01b0316836001600160a01b03161415610c8b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610cab5750610ca981336109d3565b155b15610cc9576040516367d9dca160e11b815260040160405180910390fd5b610cd4838383611e72565b505050565b6000546001600160a01b03163314610d035760405162461bcd60e51b8152600401610aca90612eb6565b6014805467ffffffffffffffff19166001600160401b0392909216919091179055565b6000546001600160a01b03163314610d505760405162461bcd60e51b8152600401610aca90612eb6565b601380546001600160401b03909216600160401b026fffffffffffffffff000000000000000019909216919091179055565b6000546001600160a01b03163314610dac5760405162461bcd60e51b8152600401610aca90612eb6565b61271081610dbd6002546001540390565b610dc79190612eeb565b1115610e005760405162461bcd60e51b815260206004820152600860248201526713505617d352539560c21b6044820152606401610aca565b60005b81811015610cd457610e3c838383818110610e2057610e2061300f565b9050602002016020810190610e3591906128cf565b6001611ece565b80610e4681612fb4565b915050610e03565b6000546001600160a01b03163314610e785760405162461bcd60e51b8152600401610aca90612eb6565b6040805160c08101825263ffffffff92831680825260138054640100000000808204909616602085018190526001600160401b03998a1695850186905299891660608501819052978916608085018190529690981660a090930183905267ffffffffffffffff19978816909117979093029690961777ffffffffffffffffffffffffffffffff00000000000000001916600160401b90910267ffffffffffffffff60801b191617600160801b909302929092176001600160c01b0316600160c01b909102179055601480549091169091179055565b610cd4838383611ee8565b6000546001600160a01b03163314610f825760405162461bcd60e51b8152600401610aca90612eb6565b601380546001600160401b03909216600160c01b026001600160c01b03909216919091179055565b323314610fc95760405162461bcd60e51b8152600401610aca90612e7f565b6040516001600160601b03193360601b16602082015260009060340160405160208183030381529060405280519060200120905061103e84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c5491508490506120f9565b61105a5760405162461bcd60e51b8152600401610aca90612dd6565b601354600160c01b90046001600160401b03168061108a5760405162461bcd60e51b8152600401610aca90612da1565b6127108361109b6002546001540390565b6110a59190612eeb565b11156110c35760405162461bcd60e51b8152600401610aca90612e05565b3360009081526012602052604090205460ff1661110357336000908152601260209081526040808320805460ff1916600117905560119091529020600290555b3360009081526011602052604081205461111e908590612f36565b101561113c5760405162461bcd60e51b8152600401610aca90612e33565b33600090815260116020526040902054611157908490612f36565b336000818152601160205260409020919091556111749084611ece565b6111866111818483612f17565b61210f565b5050505050565b3233146111ac5760405162461bcd60e51b8152600401610aca90612e7f565b6040516001600160601b03193360601b16602082015260009060340160405160208183030381529060405280519060200120905061122184848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b5491508490506120f9565b61123d5760405162461bcd60e51b8152600401610aca90612dd6565b601354600160801b90046001600160401b03168061126d5760405162461bcd60e51b8152600401610aca90612da1565b6123288361127e6002546001540390565b6112889190612eeb565b11156112a65760405162461bcd60e51b8152600401610aca90612e05565b3360009081526010602052604090205460ff166112e657336000908152601060209081526040808320805460ff19166001179055600f9091529020600290555b336000908152600f6020526040812054611301908590612f36565b101561131f5760405162461bcd60e51b8152600401610aca90612e33565b336000908152600f602052604090205461133a908490612f36565b336000818152600f60205260409020919091556111749084611ece565b6000546001600160a01b031633146113815760405162461bcd60e51b8152600401610aca90612eb6565b600c55565b6000546001600160a01b031633146113b05760405162461bcd60e51b8152600401610aca90612eb6565b600260095414156114035760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610aca565b6002600955604051479073a6fc099cc057b647b1e01562305d3e8150adf8479082156108fc029083906000818181858888f19350505050158015610b6c573d6000803e3d6000fd5b6000831580159061145b57508215155b80156114675750814210155b949350505050565b610cd4838383604051806020016040528060008152506119a9565b6000546001600160a01b031633146114b45760405162461bcd60e51b8152600401610aca90612eb6565b610cd4601583836127a4565b6000546001600160a01b031633146114ea5760405162461bcd60e51b8152600401610aca90612eb6565b6013805463ffffffff191663ffffffff92909216919091179055565b600061151182612196565b5192915050565b6000546001600160a01b031633146115425760405162461bcd60e51b8152600401610aca90612eb6565b600b55565b6000546001600160a01b031633146115715760405162461bcd60e51b8152600401610aca90612eb6565b612710826115826002546001540390565b61158c9190612eeb565b11156115aa5760405162461bcd60e51b8152600401610aca90612e05565b6115b48183611ece565b5050565b60006001600160a01b0382166115e1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b031633146116305760405162461bcd60e51b8152600401610aca90612eb6565b61163a60006122b0565b565b6000546001600160a01b031633146116665760405162461bcd60e51b8152600401610aca90612eb6565b601380546001600160401b03909216600160801b0267ffffffffffffffff60801b19909216919091179055565b6000546001600160a01b031633146116bd5760405162461bcd60e51b8152600401610aca90612eb6565b6013805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b6040805160608101825260008082526020820181905291810191909152610a9a82612196565b606060048054610b8490612f79565b6001600160a01b0382163314156117445760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146117da5760405162461bcd60e51b8152600401610aca90612eb6565b600a55565b3233146117fe5760405162461bcd60e51b8152600401610aca90612e7f565b6040516001600160601b03193360601b16602082015260009060340160405160208183030381529060405280519060200120905061187384848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a5491508490506120f9565b61188f5760405162461bcd60e51b8152600401610aca90612dd6565b601354600160401b90046001600160401b0316806118bf5760405162461bcd60e51b8152600401610aca90612da1565b611f40836118d06002546001540390565b6118da9190612eeb565b11156118f85760405162461bcd60e51b8152600401610aca90612e05565b336000908152600e602052604090205460ff1661193857336000908152600e60209081526040808320805460ff19166001179055600d9091529020600290555b336000908152600d6020526040812054611953908590612f36565b10156119715760405162461bcd60e51b8152600401610aca90612e33565b336000908152600d602052604090205461198c908490612f36565b336000818152600d60205260409020919091556111749084611ece565b6119b4848484611ee8565b6001600160a01b0383163b151580156119d657506119d484848484612300565b155b156119f4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b03163314611a245760405162461bcd60e51b8152600401610aca90612eb6565b7f000000000000000000000000000000000000000000000000000000000000000082611a536002546001540390565b611a5d9190612eeb565b1115611ab95760405162461bcd60e51b815260206004820152602560248201527f746f6f206d616e7920616c7265616479206d696e74656420666f72207465616d604482015264081b5a5b9d60da1b6064820152608401610aca565b611ac4600583612fcf565b15611b235760405162461bcd60e51b815260206004820152602960248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526809a82b0be8482a886960bb1b6064820152608401610aca565b6000611b30600584612f03565b905060005b818110156119f457611b48836005611ece565b80611b5281612fb4565b915050611b35565b6060611b6582611e46565b611b8257604051630a14c4b560e41b815260040160405180910390fd5b6000611b8c6123f7565b9050805160001415611bad5760405180602001604052806000815250611bd8565b80611bb784612406565b604051602001611bc8929190612d22565b6040516020818303038152906040525b9392505050565b323314611bfe5760405162461bcd60e51b8152600401610aca90612e7f565b6040805160c08101825260135463ffffffff8082168084526401000000008304909116602084018190526001600160401b03600160401b8404811695850195909552600160801b830485166060850152600160c01b9092048416608084015260145490931660a083018190529192909190848314611ccc5760405162461bcd60e51b815260206004820152602560248201527f63616c6c6564207769746820696e636f7272656374207075626c69632073616c60448201526465206b657960d81b6064820152608401610aca565b611cd782848361144b565b611d235760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e207965740000006044820152606401610aca565b61271086611d346002546001540390565b611d3e9190612eeb565b1115611d815760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610aca565b611d8b3387611ece565b611d986111818784612f17565b505050505050565b6000610a9a82612503565b6000546001600160a01b03163314611dd55760405162461bcd60e51b8152600401610aca90612eb6565b6001600160a01b038116611e3a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610aca565b611e43816122b0565b50565b600060015482108015610a9a575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6115b4828260405180602001604052806000815250612558565b6000611ef382612196565b80519091506000906001600160a01b0316336001600160a01b03161480611f2157508151611f2190336109d3565b80611f3c575033611f3184610c07565b6001600160a01b0316145b905080611f5c57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611f915760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611fb857604051633a954ecd60e21b815260040160405180910390fd5b611fc86000848460000151611e72565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166120b2576001548110156120b257825160008281526005602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611186565b6000826121068584612565565b14949350505050565b803410156121585760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610aca565b80341115611e4357336108fc61216e8334612f36565b6040518115909202916000818181858888f193505050501580156115b4573d6000803e3d6000fd5b60408051606081018252600080825260208201819052918101919091528160015481101561229757600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906122955780516001600160a01b03161561222c579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612290579392505050565b61222c565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612335903390899088908890600401612d51565b602060405180830381600087803b15801561234f57600080fd5b505af192505050801561237f575060408051601f3d908101601f1916820190925261237c91810190612b5c565b60015b6123da573d8080156123ad576040519150601f19603f3d011682016040523d82523d6000602084013e6123b2565b606091505b5080516123d2576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b606060158054610b8490612f79565b60608161242a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612454578061243e81612fb4565b915061244d9050600a83612f03565b915061242e565b6000816001600160401b0381111561246e5761246e613025565b6040519080825280601f01601f191660200182016040528015612498576020820181803683370190505b5090505b8415611467576124ad600183612f36565b91506124ba600a86612fcf565b6124c5906030612eeb565b60f81b8183815181106124da576124da61300f565b60200101906001600160f81b031916908160001a9053506124fc600a86612f03565b945061249c565b60006001600160a01b03821661252c576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260066020526040902054600160401b90046001600160401b031690565b610cd483838360016125d9565b600081815b84518110156125d15760008582815181106125875761258761300f565b602002602001015190508083116125ad57600083815260208290526040902092506125be565b600081815260208490526040902092505b50806125c981612fb4565b91505061256a565b509392505050565b6001546001600160a01b03851661260257604051622e076360e81b815260040160405180910390fd5b836126205760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156126cc57506001600160a01b0387163b15155b15612755575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461271d6000888480600101955088612300565b61273a576040516368d2bf6b60e11b815260040160405180910390fd5b808214156126d257826001541461275057600080fd5b61279b565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612756575b50600155611186565b8280546127b090612f79565b90600052602060002090601f0160209004810192826127d25760008555612818565b82601f106127eb5782800160ff19823516178555612818565b82800160010185558215612818579182015b828111156128185782358255916020019190600101906127fd565b50612824929150612828565b5090565b5b808211156128245760008155600101612829565b80356001600160a01b038116811461285457600080fd5b919050565b60008083601f84011261286b57600080fd5b5081356001600160401b0381111561288257600080fd5b6020830191508360208260051b850101111561289d57600080fd5b9250929050565b803563ffffffff8116811461285457600080fd5b80356001600160401b038116811461285457600080fd5b6000602082840312156128e157600080fd5b611bd88261283d565b600080604083850312156128fd57600080fd5b6129068361283d565b91506129146020840161283d565b90509250929050565b60008060006060848603121561293257600080fd5b61293b8461283d565b92506129496020850161283d565b9150604084013590509250925092565b6000806000806080858703121561296f57600080fd5b6129788561283d565b93506129866020860161283d565b92506040850135915060608501356001600160401b03808211156129a957600080fd5b818701915087601f8301126129bd57600080fd5b8135818111156129cf576129cf613025565b604051601f8201601f19908116603f011681019083821181831017156129f7576129f7613025565b816040528281528a6020848701011115612a1057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612a4757600080fd5b612a508361283d565b915060208301358015158114612a6557600080fd5b809150509250929050565b60008060408385031215612a8357600080fd5b612a8c8361283d565b946020939093013593505050565b60008060208385031215612aad57600080fd5b82356001600160401b03811115612ac357600080fd5b612acf85828601612859565b90969095509350505050565b600080600060408486031215612af057600080fd5b83356001600160401b03811115612b0657600080fd5b612b1286828701612859565b909790965060209590950135949350505050565b600060208284031215612b3857600080fd5b5035919050565b600060208284031215612b5157600080fd5b8135611bd88161303b565b600060208284031215612b6e57600080fd5b8151611bd88161303b565b60008060208385031215612b8c57600080fd5b82356001600160401b0380821115612ba357600080fd5b818501915085601f830112612bb757600080fd5b813581811115612bc657600080fd5b866020828501011115612bd857600080fd5b60209290920196919550909350505050565b60008060408385031215612bfd57600080fd5b823591506129146020840161283d565b60008060408385031215612c2057600080fd5b50508035926020909101359150565b600080600060608486031215612c4457600080fd5b505081359360208301359350604090920135919050565b600060208284031215612c6d57600080fd5b611bd8826128a4565b600060208284031215612c8857600080fd5b611bd8826128b8565b600080600080600060a08688031215612ca957600080fd5b612cb2866128b8565b9450612cc0602087016128b8565b9350612cce604087016128b8565b9250612cdc606087016128b8565b9150612cea608087016128a4565b90509295509295909350565b60008151808452612d0e816020860160208601612f4d565b601f01601f19169290920160200192915050565b60008351612d34818460208801612f4d565b835190830190612d48818360208801612f4d565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d8490830184612cf6565b9695505050505050565b602081526000611bd86020830184612cf6565b6020808252818101527f77686974656c6973742073616c6520686173206e6f7420626567756e20796574604082015260600190565b60208082526015908201527424b73b30b634b21026b2b935b63290283937b7b31760591b604082015260600190565b6020808252601490820152734578636565647320746f74616c20737570706c7960601b604082015260600190565b6020808252602c908201527f4164647265737320616c7265616479206d696e746564206e756d206f6620746f60408201526b1ad95b9cc8185b1b1bddd95960a21b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115612efe57612efe612fe3565b500190565b600082612f1257612f12612ff9565b500490565b6000816000190483118215151615612f3157612f31612fe3565b500290565b600082821015612f4857612f48612fe3565b500390565b60005b83811015612f68578181015183820152602001612f50565b838111156119f45750506000910152565b600181811c90821680612f8d57607f821691505b60208210811415612fae57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612fc857612fc8612fe3565b5060010190565b600082612fde57612fde612ff9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611e4357600080fdfea26469706673582212208d552d966369d496b680b956fcc0c1f77e68926a51f424814e0889405a93e64464736f6c634300080700330000000000000000000000000000000000000000000000000000000000000064

Deployed Bytecode

0x6080604052600436106102e45760003560e01c806368010d6e11610190578063adbe7f64116100dc578063cb91d8b311610095578063e1e9438c1161006f578063e1e9438c1461098b578063e985e9c5146109b8578063eef3451814610a01578063f2fde38b14610a2e57600080fd5b8063cb91d8b314610928578063cc543d891461093b578063dc33e6811461096b57600080fd5b8063adbe7f6414610872578063b584aee714610885578063b6c0930b1461089b578063b88d4fde146108c8578063bfa457bc146108e8578063c87b56dd1461090857600080fd5b806390aa0b0f1161014957806395d89b411161012357806395d89b41146107e9578063a22cb465146107fe578063a69b1cd51461081e578063aa3e46ad1461085257600080fd5b806390aa0b0f146106e1578063910549701461077d5780639231ab2a1461079357600080fd5b806368010d6e1461062e57806370a082311461064e578063715018a61461066e5780638ae04b6f146106835780638da5cb5b146106a357806390028083146106c157600080fd5b806334a6ecfe1161024f578063422030ba1161020857806355f804b3116101e257806355f804b3146105ae5780635fd84c28146105ce5780636352211e146105ee578063677f7b821461060e57600080fd5b8063422030ba1461053e57806342842e0e1461055e5780634318ea1e1461057e57600080fd5b806334a6ecfe14610493578063351adfac146104b3578063361576d0146104c65780633b242ca9146104d95780633ccfd60b146104f95780633ce3e8551461050e57600080fd5b80630da3937c116102a15780630da3937c146103da578063163e1e61146103fa57806318160ddd1461041a5780631f05c4e11461043d57806323b872dd1461045d5780632ed461d01461047d57600080fd5b806301ffc9a7146102e95780630562b9f71461031e57806306fdde0314610340578063081812fc14610362578063095ea7b31461039a5780630c29dbae146103ba575b600080fd5b3480156102f557600080fd5b50610309610304366004612b3f565b610a4e565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033e610339366004612b26565b610aa0565b005b34801561034c57600080fd5b50610355610b75565b6040516103159190612d8e565b34801561036e57600080fd5b5061038261037d366004612b26565b610c07565b6040516001600160a01b039091168152602001610315565b3480156103a657600080fd5b5061033e6103b5366004612a70565b610c4b565b3480156103c657600080fd5b5061033e6103d5366004612c76565b610cd9565b3480156103e657600080fd5b5061033e6103f5366004612c76565b610d26565b34801561040657600080fd5b5061033e610415366004612a9a565b610d82565b34801561042657600080fd5b50600254600154035b604051908152602001610315565b34801561044957600080fd5b5061033e610458366004612c91565b610e4e565b34801561046957600080fd5b5061033e61047836600461291d565b610f4d565b34801561048957600080fd5b5061042f600b5481565b34801561049f57600080fd5b5061033e6104ae366004612c76565b610f58565b61033e6104c1366004612adb565b610faa565b61033e6104d4366004612adb565b61118d565b3480156104e557600080fd5b5061033e6104f4366004612b26565b611357565b34801561050557600080fd5b5061033e611386565b34801561051a57600080fd5b506103096105293660046128cf565b600e6020526000908152604090205460ff1681565b34801561054a57600080fd5b50610309610559366004612c2f565b61144b565b34801561056a57600080fd5b5061033e61057936600461291d565b61146f565b34801561058a57600080fd5b506103096105993660046128cf565b60126020526000908152604090205460ff1681565b3480156105ba57600080fd5b5061033e6105c9366004612b79565b61148a565b3480156105da57600080fd5b5061033e6105e9366004612c5b565b6114c0565b3480156105fa57600080fd5b50610382610609366004612b26565b611506565b34801561061a57600080fd5b5061033e610629366004612b26565b611518565b34801561063a57600080fd5b5061033e610649366004612bea565b611547565b34801561065a57600080fd5b5061042f6106693660046128cf565b6115b8565b34801561067a57600080fd5b5061033e611606565b34801561068f57600080fd5b5061033e61069e366004612c76565b61163c565b3480156106af57600080fd5b506000546001600160a01b0316610382565b3480156106cd57600080fd5b5061033e6106dc366004612c5b565b611693565b3480156106ed57600080fd5b506013546014546107379163ffffffff808216926401000000008304909116916001600160401b03600160401b8204811692600160801b8304821692600160c01b90048216911686565b6040805163ffffffff97881681529690951660208701526001600160401b03938416948601949094529082166060850152811660808401521660a082015260c001610315565b34801561078957600080fd5b5061042f600c5481565b34801561079f57600080fd5b506107b36107ae366004612b26565b6116e5565b6040805182516001600160a01b031681526020808401516001600160401b03169082015291810151151590820152606001610315565b3480156107f557600080fd5b5061035561170b565b34801561080a57600080fd5b5061033e610819366004612a34565b61171a565b34801561082a57600080fd5b5061042f7f000000000000000000000000000000000000000000000000000000000000006481565b34801561085e57600080fd5b5061033e61086d366004612b26565b6117b0565b61033e610880366004612adb565b6117df565b34801561089157600080fd5b5061042f600a5481565b3480156108a757600080fd5b5061042f6108b63660046128cf565b600f6020526000908152604090205481565b3480156108d457600080fd5b5061033e6108e3366004612959565b6119a9565b3480156108f457600080fd5b5061033e610903366004612bea565b6119fa565b34801561091457600080fd5b50610355610923366004612b26565b611b5a565b61033e610936366004612c0d565b611bdf565b34801561094757600080fd5b506103096109563660046128cf565b60106020526000908152604090205460ff1681565b34801561097757600080fd5b5061042f6109863660046128cf565b611da0565b34801561099757600080fd5b5061042f6109a63660046128cf565b600d6020526000908152604090205481565b3480156109c457600080fd5b506103096109d33660046128ea565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b348015610a0d57600080fd5b5061042f610a1c3660046128cf565b60116020526000908152604090205481565b348015610a3a57600080fd5b5061033e610a493660046128cf565b611dab565b60006001600160e01b031982166380ac58cd60e01b1480610a7f57506001600160e01b03198216635b5e139f60e01b145b80610a9a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b03163314610ad35760405162461bcd60e51b8152600401610aca90612eb6565b60405180910390fd5b60026009541415610b265760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610aca565b600260095560405173a6fc099cc057b647b1e01562305d3e8150adf8479082156108fc029083906000818181858888f19350505050158015610b6c573d6000803e3d6000fd5b50506001600955565b606060038054610b8490612f79565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb090612f79565b8015610bfd5780601f10610bd257610100808354040283529160200191610bfd565b820191906000526020600020905b815481529060010190602001808311610be057829003601f168201915b5050505050905090565b6000610c1282611e46565b610c2f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610c5682611506565b9050806001600160a01b0316836001600160a01b03161415610c8b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610cab5750610ca981336109d3565b155b15610cc9576040516367d9dca160e11b815260040160405180910390fd5b610cd4838383611e72565b505050565b6000546001600160a01b03163314610d035760405162461bcd60e51b8152600401610aca90612eb6565b6014805467ffffffffffffffff19166001600160401b0392909216919091179055565b6000546001600160a01b03163314610d505760405162461bcd60e51b8152600401610aca90612eb6565b601380546001600160401b03909216600160401b026fffffffffffffffff000000000000000019909216919091179055565b6000546001600160a01b03163314610dac5760405162461bcd60e51b8152600401610aca90612eb6565b61271081610dbd6002546001540390565b610dc79190612eeb565b1115610e005760405162461bcd60e51b815260206004820152600860248201526713505617d352539560c21b6044820152606401610aca565b60005b81811015610cd457610e3c838383818110610e2057610e2061300f565b9050602002016020810190610e3591906128cf565b6001611ece565b80610e4681612fb4565b915050610e03565b6000546001600160a01b03163314610e785760405162461bcd60e51b8152600401610aca90612eb6565b6040805160c08101825263ffffffff92831680825260138054640100000000808204909616602085018190526001600160401b03998a1695850186905299891660608501819052978916608085018190529690981660a090930183905267ffffffffffffffff19978816909117979093029690961777ffffffffffffffffffffffffffffffff00000000000000001916600160401b90910267ffffffffffffffff60801b191617600160801b909302929092176001600160c01b0316600160c01b909102179055601480549091169091179055565b610cd4838383611ee8565b6000546001600160a01b03163314610f825760405162461bcd60e51b8152600401610aca90612eb6565b601380546001600160401b03909216600160c01b026001600160c01b03909216919091179055565b323314610fc95760405162461bcd60e51b8152600401610aca90612e7f565b6040516001600160601b03193360601b16602082015260009060340160405160208183030381529060405280519060200120905061103e84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c5491508490506120f9565b61105a5760405162461bcd60e51b8152600401610aca90612dd6565b601354600160c01b90046001600160401b03168061108a5760405162461bcd60e51b8152600401610aca90612da1565b6127108361109b6002546001540390565b6110a59190612eeb565b11156110c35760405162461bcd60e51b8152600401610aca90612e05565b3360009081526012602052604090205460ff1661110357336000908152601260209081526040808320805460ff1916600117905560119091529020600290555b3360009081526011602052604081205461111e908590612f36565b101561113c5760405162461bcd60e51b8152600401610aca90612e33565b33600090815260116020526040902054611157908490612f36565b336000818152601160205260409020919091556111749084611ece565b6111866111818483612f17565b61210f565b5050505050565b3233146111ac5760405162461bcd60e51b8152600401610aca90612e7f565b6040516001600160601b03193360601b16602082015260009060340160405160208183030381529060405280519060200120905061122184848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b5491508490506120f9565b61123d5760405162461bcd60e51b8152600401610aca90612dd6565b601354600160801b90046001600160401b03168061126d5760405162461bcd60e51b8152600401610aca90612da1565b6123288361127e6002546001540390565b6112889190612eeb565b11156112a65760405162461bcd60e51b8152600401610aca90612e05565b3360009081526010602052604090205460ff166112e657336000908152601060209081526040808320805460ff19166001179055600f9091529020600290555b336000908152600f6020526040812054611301908590612f36565b101561131f5760405162461bcd60e51b8152600401610aca90612e33565b336000908152600f602052604090205461133a908490612f36565b336000818152600f60205260409020919091556111749084611ece565b6000546001600160a01b031633146113815760405162461bcd60e51b8152600401610aca90612eb6565b600c55565b6000546001600160a01b031633146113b05760405162461bcd60e51b8152600401610aca90612eb6565b600260095414156114035760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610aca565b6002600955604051479073a6fc099cc057b647b1e01562305d3e8150adf8479082156108fc029083906000818181858888f19350505050158015610b6c573d6000803e3d6000fd5b6000831580159061145b57508215155b80156114675750814210155b949350505050565b610cd4838383604051806020016040528060008152506119a9565b6000546001600160a01b031633146114b45760405162461bcd60e51b8152600401610aca90612eb6565b610cd4601583836127a4565b6000546001600160a01b031633146114ea5760405162461bcd60e51b8152600401610aca90612eb6565b6013805463ffffffff191663ffffffff92909216919091179055565b600061151182612196565b5192915050565b6000546001600160a01b031633146115425760405162461bcd60e51b8152600401610aca90612eb6565b600b55565b6000546001600160a01b031633146115715760405162461bcd60e51b8152600401610aca90612eb6565b612710826115826002546001540390565b61158c9190612eeb565b11156115aa5760405162461bcd60e51b8152600401610aca90612e05565b6115b48183611ece565b5050565b60006001600160a01b0382166115e1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b031633146116305760405162461bcd60e51b8152600401610aca90612eb6565b61163a60006122b0565b565b6000546001600160a01b031633146116665760405162461bcd60e51b8152600401610aca90612eb6565b601380546001600160401b03909216600160801b0267ffffffffffffffff60801b19909216919091179055565b6000546001600160a01b031633146116bd5760405162461bcd60e51b8152600401610aca90612eb6565b6013805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b6040805160608101825260008082526020820181905291810191909152610a9a82612196565b606060048054610b8490612f79565b6001600160a01b0382163314156117445760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146117da5760405162461bcd60e51b8152600401610aca90612eb6565b600a55565b3233146117fe5760405162461bcd60e51b8152600401610aca90612e7f565b6040516001600160601b03193360601b16602082015260009060340160405160208183030381529060405280519060200120905061187384848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a5491508490506120f9565b61188f5760405162461bcd60e51b8152600401610aca90612dd6565b601354600160401b90046001600160401b0316806118bf5760405162461bcd60e51b8152600401610aca90612da1565b611f40836118d06002546001540390565b6118da9190612eeb565b11156118f85760405162461bcd60e51b8152600401610aca90612e05565b336000908152600e602052604090205460ff1661193857336000908152600e60209081526040808320805460ff19166001179055600d9091529020600290555b336000908152600d6020526040812054611953908590612f36565b10156119715760405162461bcd60e51b8152600401610aca90612e33565b336000908152600d602052604090205461198c908490612f36565b336000818152600d60205260409020919091556111749084611ece565b6119b4848484611ee8565b6001600160a01b0383163b151580156119d657506119d484848484612300565b155b156119f4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b03163314611a245760405162461bcd60e51b8152600401610aca90612eb6565b7f000000000000000000000000000000000000000000000000000000000000006482611a536002546001540390565b611a5d9190612eeb565b1115611ab95760405162461bcd60e51b815260206004820152602560248201527f746f6f206d616e7920616c7265616479206d696e74656420666f72207465616d604482015264081b5a5b9d60da1b6064820152608401610aca565b611ac4600583612fcf565b15611b235760405162461bcd60e51b815260206004820152602960248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526809a82b0be8482a886960bb1b6064820152608401610aca565b6000611b30600584612f03565b905060005b818110156119f457611b48836005611ece565b80611b5281612fb4565b915050611b35565b6060611b6582611e46565b611b8257604051630a14c4b560e41b815260040160405180910390fd5b6000611b8c6123f7565b9050805160001415611bad5760405180602001604052806000815250611bd8565b80611bb784612406565b604051602001611bc8929190612d22565b6040516020818303038152906040525b9392505050565b323314611bfe5760405162461bcd60e51b8152600401610aca90612e7f565b6040805160c08101825260135463ffffffff8082168084526401000000008304909116602084018190526001600160401b03600160401b8404811695850195909552600160801b830485166060850152600160c01b9092048416608084015260145490931660a083018190529192909190848314611ccc5760405162461bcd60e51b815260206004820152602560248201527f63616c6c6564207769746820696e636f7272656374207075626c69632073616c60448201526465206b657960d81b6064820152608401610aca565b611cd782848361144b565b611d235760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e207965740000006044820152606401610aca565b61271086611d346002546001540390565b611d3e9190612eeb565b1115611d815760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610aca565b611d8b3387611ece565b611d986111818784612f17565b505050505050565b6000610a9a82612503565b6000546001600160a01b03163314611dd55760405162461bcd60e51b8152600401610aca90612eb6565b6001600160a01b038116611e3a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610aca565b611e43816122b0565b50565b600060015482108015610a9a575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6115b4828260405180602001604052806000815250612558565b6000611ef382612196565b80519091506000906001600160a01b0316336001600160a01b03161480611f2157508151611f2190336109d3565b80611f3c575033611f3184610c07565b6001600160a01b0316145b905080611f5c57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611f915760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611fb857604051633a954ecd60e21b815260040160405180910390fd5b611fc86000848460000151611e72565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166120b2576001548110156120b257825160008281526005602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611186565b6000826121068584612565565b14949350505050565b803410156121585760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610aca565b80341115611e4357336108fc61216e8334612f36565b6040518115909202916000818181858888f193505050501580156115b4573d6000803e3d6000fd5b60408051606081018252600080825260208201819052918101919091528160015481101561229757600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906122955780516001600160a01b03161561222c579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612290579392505050565b61222c565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612335903390899088908890600401612d51565b602060405180830381600087803b15801561234f57600080fd5b505af192505050801561237f575060408051601f3d908101601f1916820190925261237c91810190612b5c565b60015b6123da573d8080156123ad576040519150601f19603f3d011682016040523d82523d6000602084013e6123b2565b606091505b5080516123d2576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b606060158054610b8490612f79565b60608161242a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612454578061243e81612fb4565b915061244d9050600a83612f03565b915061242e565b6000816001600160401b0381111561246e5761246e613025565b6040519080825280601f01601f191660200182016040528015612498576020820181803683370190505b5090505b8415611467576124ad600183612f36565b91506124ba600a86612fcf565b6124c5906030612eeb565b60f81b8183815181106124da576124da61300f565b60200101906001600160f81b031916908160001a9053506124fc600a86612f03565b945061249c565b60006001600160a01b03821661252c576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260066020526040902054600160401b90046001600160401b031690565b610cd483838360016125d9565b600081815b84518110156125d15760008582815181106125875761258761300f565b602002602001015190508083116125ad57600083815260208290526040902092506125be565b600081815260208490526040902092505b50806125c981612fb4565b91505061256a565b509392505050565b6001546001600160a01b03851661260257604051622e076360e81b815260040160405180910390fd5b836126205760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156126cc57506001600160a01b0387163b15155b15612755575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461271d6000888480600101955088612300565b61273a576040516368d2bf6b60e11b815260040160405180910390fd5b808214156126d257826001541461275057600080fd5b61279b565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612756575b50600155611186565b8280546127b090612f79565b90600052602060002090601f0160209004810192826127d25760008555612818565b82601f106127eb5782800160ff19823516178555612818565b82800160010185558215612818579182015b828111156128185782358255916020019190600101906127fd565b50612824929150612828565b5090565b5b808211156128245760008155600101612829565b80356001600160a01b038116811461285457600080fd5b919050565b60008083601f84011261286b57600080fd5b5081356001600160401b0381111561288257600080fd5b6020830191508360208260051b850101111561289d57600080fd5b9250929050565b803563ffffffff8116811461285457600080fd5b80356001600160401b038116811461285457600080fd5b6000602082840312156128e157600080fd5b611bd88261283d565b600080604083850312156128fd57600080fd5b6129068361283d565b91506129146020840161283d565b90509250929050565b60008060006060848603121561293257600080fd5b61293b8461283d565b92506129496020850161283d565b9150604084013590509250925092565b6000806000806080858703121561296f57600080fd5b6129788561283d565b93506129866020860161283d565b92506040850135915060608501356001600160401b03808211156129a957600080fd5b818701915087601f8301126129bd57600080fd5b8135818111156129cf576129cf613025565b604051601f8201601f19908116603f011681019083821181831017156129f7576129f7613025565b816040528281528a6020848701011115612a1057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612a4757600080fd5b612a508361283d565b915060208301358015158114612a6557600080fd5b809150509250929050565b60008060408385031215612a8357600080fd5b612a8c8361283d565b946020939093013593505050565b60008060208385031215612aad57600080fd5b82356001600160401b03811115612ac357600080fd5b612acf85828601612859565b90969095509350505050565b600080600060408486031215612af057600080fd5b83356001600160401b03811115612b0657600080fd5b612b1286828701612859565b909790965060209590950135949350505050565b600060208284031215612b3857600080fd5b5035919050565b600060208284031215612b5157600080fd5b8135611bd88161303b565b600060208284031215612b6e57600080fd5b8151611bd88161303b565b60008060208385031215612b8c57600080fd5b82356001600160401b0380821115612ba357600080fd5b818501915085601f830112612bb757600080fd5b813581811115612bc657600080fd5b866020828501011115612bd857600080fd5b60209290920196919550909350505050565b60008060408385031215612bfd57600080fd5b823591506129146020840161283d565b60008060408385031215612c2057600080fd5b50508035926020909101359150565b600080600060608486031215612c4457600080fd5b505081359360208301359350604090920135919050565b600060208284031215612c6d57600080fd5b611bd8826128a4565b600060208284031215612c8857600080fd5b611bd8826128b8565b600080600080600060a08688031215612ca957600080fd5b612cb2866128b8565b9450612cc0602087016128b8565b9350612cce604087016128b8565b9250612cdc606087016128b8565b9150612cea608087016128a4565b90509295509295909350565b60008151808452612d0e816020860160208601612f4d565b601f01601f19169290920160200192915050565b60008351612d34818460208801612f4d565b835190830190612d48818360208801612f4d565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d8490830184612cf6565b9695505050505050565b602081526000611bd86020830184612cf6565b6020808252818101527f77686974656c6973742073616c6520686173206e6f7420626567756e20796574604082015260600190565b60208082526015908201527424b73b30b634b21026b2b935b63290283937b7b31760591b604082015260600190565b6020808252601490820152734578636565647320746f74616c20737570706c7960601b604082015260600190565b6020808252602c908201527f4164647265737320616c7265616479206d696e746564206e756d206f6620746f60408201526b1ad95b9cc8185b1b1bddd95960a21b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115612efe57612efe612fe3565b500190565b600082612f1257612f12612ff9565b500490565b6000816000190483118215151615612f3157612f31612fe3565b500290565b600082821015612f4857612f48612fe3565b500390565b60005b83811015612f68578181015183820152602001612f50565b838111156119f45750506000910152565b600181811c90821680612f8d57607f821691505b60208210811415612fae57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612fc857612fc8612fe3565b5060010190565b600082612fde57612fde612ff9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611e4357600080fdfea26469706673582212208d552d966369d496b680b956fcc0c1f77e68926a51f424814e0889405a93e64464736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000064

-----Decoded View---------------
Arg [0] : amountForTeam_ (uint256): 100

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000064


Deployed Bytecode Sourcemap

50958:9413:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30882:305;;;;;;;;;;-1:-1:-1;30882:305:0;;;;;:::i;:::-;;:::i;:::-;;;9401:14:1;;9394:22;9376:41;;9364:2;9349:18;30882:305:0;;;;;;;;59906:158;;;;;;;;;;-1:-1:-1;59906:158:0;;;;;:::i;:::-;;:::i;:::-;;34267:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35770:204::-;;;;;;;;;;-1:-1:-1;35770:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8699:32:1;;;8681:51;;8669:2;8654:18;35770:204:0;8535:203:1;35333:371:0;;;;;;;;;;-1:-1:-1;35333:371:0;;;;;:::i;:::-;;:::i;57845:106::-;;;;;;;;;;-1:-1:-1;57845:106:0;;;;;:::i;:::-;;:::i;58097:118::-;;;;;;;;;;-1:-1:-1;58097:118:0;;;;;:::i;:::-;;:::i;52345:259::-;;;;;;;;;;-1:-1:-1;52345:259:0;;;;;:::i;:::-;;:::i;30131:303::-;;;;;;;;;;-1:-1:-1;30385:12:0;;30369:13;;:28;30131:303;;;9574:25:1;;;9562:2;9547:18;30131:303:0;9428:177:1;57233:490:0;;;;;;;;;;-1:-1:-1;57233:490:0;;;;;:::i;:::-;;:::i;36635:170::-;;;;;;;;;;-1:-1:-1;36635:170:0;;;;;:::i;:::-;;:::i;51193:30::-;;;;;;;;;;;;;;;;57959:130;;;;;;;;;;-1:-1:-1;57959:130:0;;;;;:::i;:::-;;:::i;54771:1004::-;;;;;;:::i;:::-;;:::i;53814:949::-;;;;;;:::i;:::-;;:::i;58601:130::-;;;;;;;;;;-1:-1:-1;58601:130:0;;;;;:::i;:::-;;:::i;59682:216::-;;;;;;;;;;;;;:::i;51335:58::-;;;;;;;;;;-1:-1:-1;51335:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;56916:309;;;;;;;;;;-1:-1:-1;56916:309:0;;;;;:::i;:::-;;:::i;36876:185::-;;;;;;;;;;-1:-1:-1;36876:185:0;;;;;:::i;:::-;;:::i;51591:57::-;;;;;;;;;;-1:-1:-1;51591:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;59568:106;;;;;;;;;;-1:-1:-1;59568:106:0;;;;;:::i;:::-;;:::i;58347:120::-;;;;;;;;;;-1:-1:-1;58347:120:0;;;;;:::i;:::-;;:::i;34076:124::-;;;;;;;;;;-1:-1:-1;34076:124:0;;;;;:::i;:::-;;:::i;58739:116::-;;;;;;;;;;-1:-1:-1;58739:116:0;;;;;:::i;:::-;;:::i;52612:226::-;;;;;;;;;;-1:-1:-1;52612:226:0;;;;;:::i;:::-;;:::i;31251:206::-;;;;;;;;;;-1:-1:-1;31251:206:0;;;;;:::i;:::-;;:::i;50064:103::-;;;;;;;;;;;;;:::i;58223:116::-;;;;;;;;;;-1:-1:-1;58223:116:0;;;;;:::i;:::-;;:::i;49413:87::-;;;;;;;;;;-1:-1:-1;49459:7:0;49486:6;-1:-1:-1;;;;;49486:6:0;49413:87;;57731:106;;;;;;;;;;-1:-1:-1;57731:106:0;;;;;:::i;:::-;;:::i;51914:28::-;;;;;;;;;;-1:-1:-1;51914:28:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;51914:28:0;;;;;-1:-1:-1;;;51914:28:0;;;;;-1:-1:-1;;;51914:28:0;;;;;;;;;;;;16319:10:1;16356:15;;;16338:34;;16408:15;;;;16403:2;16388:18;;16381:43;-1:-1:-1;;;;;16497:15:1;;;16477:18;;;16470:43;;;;16549:15;;;16544:2;16529:18;;16522:43;16602:15;;16596:3;16581:19;;16574:44;16655:15;16649:3;16634:19;;16627:44;16296:3;16281:19;51914:28:0;16034:643:1;51230:37:0;;;;;;;;;;;;;;;;60201:167;;;;;;;;;;-1:-1:-1;60201:167:0;;;;;:::i;:::-;;:::i;:::-;;;;15638:13:1;;-1:-1:-1;;;;;15634:39:1;15616:58;;15734:4;15722:17;;;15716:24;-1:-1:-1;;;;;15712:49:1;15690:20;;;15683:79;15820:17;;;15814:24;15807:32;15800:40;15778:20;;;15771:70;15604:2;15589:18;60201:167:0;15408:439:1;34436:104:0;;;;;;;;;;;;;:::i;36046:287::-;;;;;;;;;;-1:-1:-1;36046:287:0;;;;;:::i;:::-;;:::i;51021:38::-;;;;;;;;;;;;;;;58475:118;;;;;;;;;;-1:-1:-1;58475:118:0;;;;;:::i;:::-;;:::i;52846:958::-;;;;;;:::i;:::-;;:::i;51155:31::-;;;;;;;;;;;;;;;;51400:53;;;;;;;;;;-1:-1:-1;51400:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;37132:369;;;;;;;;;;-1:-1:-1;37132:369:0;;;;;:::i;:::-;;:::i;58863:538::-;;;;;;;;;;-1:-1:-1;58863:538:0;;;;;:::i;:::-;;:::i;34611:318::-;;;;;;;;;;-1:-1:-1;34611:318:0;;;;;:::i;:::-;;:::i;55783:893::-;;;;;;:::i;:::-;;:::i;51460:57::-;;;;;;;;;;-1:-1:-1;51460:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;60080:113;;;;;;;;;;-1:-1:-1;60080:113:0;;;;;:::i;:::-;;:::i;51274:54::-;;;;;;;;;;-1:-1:-1;51274:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;36404:164;;;;;;;;;;-1:-1:-1;36404:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;36525:25:0;;;36501:4;36525:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36404:164;51524:60;;;;;;;;;;-1:-1:-1;51524:60:0;;;;;:::i;:::-;;;;;;;;;;;;;;50322:201;;;;;;;;;;-1:-1:-1;50322:201:0;;;;;:::i;:::-;;:::i;30882:305::-;30984:4;-1:-1:-1;;;;;;31021:40:0;;-1:-1:-1;;;31021:40:0;;:105;;-1:-1:-1;;;;;;;31078:48:0;;-1:-1:-1;;;31078:48:0;31021:105;:158;;;-1:-1:-1;;;;;;;;;;15938:40:0;;;31143:36;31001:178;30882:305;-1:-1:-1;;30882:305:0:o;59906:158::-;49459:7;49486:6;-1:-1:-1;;;;;49486:6:0;26266:10;49633:23;49625:68;;;;-1:-1:-1;;;49625:68:0;;;;;;;:::i;:::-;;;;;;;;;24560:1:::1;25158:7;;:19;;25150:63;;;::::0;-1:-1:-1;;;25150:63:0;;15250:2:1;25150:63:0::1;::::0;::::1;15232:21:1::0;15289:2;15269:18;;;15262:30;15328:33;15308:18;;;15301:61;15379:18;;25150:63:0::1;15048:355:1::0;25150:63:0::1;24560:1;25291:7;:18:::0;59987:69:::2;::::0;59995:42:::2;::::0;59987:69;::::2;;;::::0;60048:7;;59987:69:::2;::::0;;;60048:7;59995:42;59987:69;::::2;;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;24516:1:0::1;25470:7;:22:::0;59906:158::o;34267:100::-;34321:13;34354:5;34347:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34267:100;:::o;35770:204::-;35838:7;35863:16;35871:7;35863;:16::i;:::-;35858:64;;35888:34;;-1:-1:-1;;;35888:34:0;;;;;;;;;;;35858:64;-1:-1:-1;35942:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35942:24:0;;35770:204::o;35333:371::-;35406:13;35422:24;35438:7;35422:15;:24::i;:::-;35406:40;;35467:5;-1:-1:-1;;;;;35461:11:0;:2;-1:-1:-1;;;;;35461:11:0;;35457:48;;;35481:24;;-1:-1:-1;;;35481:24:0;;;;;;;;;;;35457:48;26266:10;-1:-1:-1;;;;;35522:21:0;;;;;;:63;;-1:-1:-1;35548:37:0;35565:5;26266:10;36404:164;:::i;35548:37::-;35547:38;35522:63;35518:138;;;35609:35;;-1:-1:-1;;;35609:35:0;;;;;;;;;;;35518:138;35668:28;35677:2;35681:7;35690:5;35668:8;:28::i;:::-;35395:309;35333:371;;:::o;57845:106::-;49459:7;49486:6;-1:-1:-1;;;;;49486:6:0;26266:10;49633:23;49625:68;;;;-1:-1:-1;;;49625:68:0;;;;;;;:::i;:::-;57913:22;:30;;-1:-1:-1;;57913:30:0::1;-1:-1:-1::0;;;;;57913:30:0;;;::::1;::::0;;;::::1;::::0;;57845:106::o;58097:118::-;49459:7;49486:6;-1:-1:-1;;;;;49486:6:0;26266:10;49633:23;49625:68;;;;-1:-1:-1;;;49625:68:0;;;;;;;:::i;:::-;58171:10:::1;:36:::0;;-1:-1:-1;;;;;58171:36:0;;::::1;-1:-1:-1::0;;;58171:36:0::1;-1:-1:-1::0;;58171:36:0;;::::1;::::0;;;::::1;::::0;;58097:118::o;52345:259::-;49459:7;49486:6;-1:-1:-1;;;;;49486:6:0;26266:10;49633:23;49625:68;;;;-1:-1:-1;;;49625:68:0;;;;;;;:::i;:::-;51101:5:::1;52443:9:::0;52427:13:::1;30385:12:::0;;30369:13;;:28;;30131:303;52427:13:::1;:32;;;;:::i;:::-;:46;;52419:67;;;::::0;-1:-1:-1;;;52419:67:0;;13844:2:1;52419:67:0::1;::::0;::::1;13826:21:1::0;13883:1;13863:18;;;13856:29;-1:-1:-1;;;13901:18:1;;;13894:38;13949:18;;52419:67:0::1;13642:331:1::0;52419:67:0::1;52502:9;52497:100;52517:20:::0;;::::1;52497:100;;;52559:26;52569:9;;52579:1;52569:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;52583:1;52559:9;:26::i;:::-;52539:3:::0;::::1;::::0;::::1;:::i;:::-;;;;52497:100;;57233:490:::0;49459:7;49486:6;-1:-1:-1;;;;;49486:6:0;26266:10;49633:23;49625:68;;;;-1:-1:-1;;;49625:68:0;;;;;;;:::i;:::-;57488:227:::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;::::0;;;57547:10:::1;:24:::0;;;;;::::1;::::0;;::::1;57488:227;::::0;::::1;::::0;;;-1:-1:-1;;;;;57488:227:0;;::::1;::::0;;;;;;;;::::1;::::0;;;;;;;;::::1;::::0;;;;;;;;;::::1;::::0;;;;;;;-1:-1:-1;;57475:240:0;;;;;;;;;::::1;::::0;;;::::1;-1:-1:-1::0;;57475:240:0;-1:-1:-1;;;57475:240:0;;::::1;-1:-1:-1::0;;;;57475:240:0;;-1:-1:-1;;;57475:240:0;;::::1;::::0;;;::::1;-1:-1:-1::0;;;;;57475:240:0::1;-1:-1:-1::0;;;57475:240:0;;::::1;;::::0;;;;;;;::::1;::::0;;::::1;::::0;;57233:490::o;36635:170::-;36769:28;36779:4;36785:2;36789:7;36769:9;:28::i;57959:130::-;49459:7;49486:6;-1:-1:-1;;;;;49486:6:0;26266:10;49633:23;49625:68;;;;-1:-1:-1;;;49625:68:0;;;;;;;:::i;:::-;58039:10:::1;:42:::0;;-1:-1:-1;;;;;58039:42:0;;::::1;-1:-1:-1::0;;;58039:42:0::1;-1:-1:-1::0;;;;;58039:42:0;;::::1;::::0;;;::::1;::::0;;57959:130::o;54771:1004::-;52259:9;52272:10;52259:23;52251:66;;;;-1:-1:-1;;;52251:66:0;;;;;;;:::i;:::-;54916:28:::1;::::0;-1:-1:-1;;;;;;54933:10:0::1;7975:2:1::0;7971:15;7967:53;54916:28:0::1;::::0;::::1;7955:66:1::0;54891:12:0::1;::::0;8037::1;;54916:28:0::1;;;;;;;;;;;;54906:39;;;;;;54891:54;;54964:62;54983:12;;54964:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;54997:22:0::1;::::0;;-1:-1:-1;55021:4:0;;-1:-1:-1;54964:18:0::1;:62::i;:::-;54956:109;;;;-1:-1:-1::0;;;54956:109:0::1;;;;;;;:::i;:::-;55100:10;:34:::0;-1:-1:-1;;;55100:34:0;::::1;-1:-1:-1::0;;;;;55100:34:0::1;::::0;55146:55:::1;;;;-1:-1:-1::0;;;55146:55:0::1;;;;;;;:::i;:::-;51101:5;55236:8;55220:13;30385:12:::0;;30369:13;;:28;;30131:303;55220:13:::1;:24;;;;:::i;:::-;:38;;55212:71;;;;-1:-1:-1::0;;;55212:71:0::1;;;;;;;:::i;:::-;55325:10;55299:37;::::0;;;:25:::1;:37;::::0;;;;;::::1;;55294:171;;55379:10;55353:37;::::0;;;:25:::1;:37;::::0;;;;;;;:44;;-1:-1:-1;;55353:44:0::1;55393:4;55353:44;::::0;;55412:25:::1;:37:::0;;;;;55452:1:::1;55412:41:::0;;55294:171:::1;55509:10;55535:1;55483:37:::0;;;:25:::1;:37;::::0;;;;;:48:::1;::::0;55523:8;;55483:48:::1;:::i;:::-;:53;;55475:110;;;;-1:-1:-1::0;;;55475:110:0::1;;;;;;;:::i;:::-;55662:10;55636:37;::::0;;;:25:::1;:37;::::0;;;;;:48:::1;::::0;55676:8;;55636:48:::1;:::i;:::-;55622:10;55596:37;::::0;;;:25:::1;:37;::::0;;;;:88;;;;55695:31:::1;::::0;55717:8;55695:9:::1;:31::i;:::-;55737:30;55750:16;55758:8:::0;55750:5;:16:::1;:::i;:::-;55737:12;:30::i;:::-;54880:895;;54771:1004:::0;;;:::o;53814:949::-;52259:9;52272:10;52259:23;52251:66;;;;-1:-1:-1;;;52251:66:0;;;;;;;:::i;:::-;53952:28:::1;::::0;-1:-1:-1;;;;;;53969:10:0::1;7975:2:1::0;7971:15;7967:53;53952:28:0::1;::::0;::::1;7955:66:1::0;53927:12:0::1;::::0;8037::1;;53952:28:0::1;;;;;;;;;;;;53942:39;;;;;;53927:54;;54000:55;54019:12;;54000:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;54033:15:0::1;::::0;;-1:-1:-1;54050:4:0;;-1:-1:-1;54000:18:0::1;:55::i;:::-;53992:102;;;;-1:-1:-1::0;;;53992:102:0::1;;;;;;;:::i;:::-;54129:10;:27:::0;-1:-1:-1;;;54129:27:0;::::1;-1:-1:-1::0;;;;;54129:27:0::1;::::0;54168:55:::1;;;;-1:-1:-1::0;;;54168:55:0::1;;;;;;;:::i;:::-;54270:4;54258:8;54242:13;30385:12:::0;;30369:13;;:28;;30131:303;54242:13:::1;:24;;;;:::i;:::-;:32;;54234:65;;;;-1:-1:-1::0;;;54234:65:0::1;;;;;;;:::i;:::-;54341:10;54315:37;::::0;;;:25:::1;:37;::::0;;;;;::::1;;54310:164;;54395:10;54369:37;::::0;;;:25:::1;:37;::::0;;;;;;;:44;;-1:-1:-1;;54369:44:0::1;54409:4;54369:44;::::0;;54428:18:::1;:30:::0;;;;;54461:1:::1;54428:34:::0;;54310:164:::1;54511:10;54537:1;54492:30:::0;;;:18:::1;:30;::::0;;;;;:41:::1;::::0;54525:8;;54492:41:::1;:::i;:::-;:46;;54484:103;;;;-1:-1:-1::0;;;54484:103:0::1;;;;;;;:::i;:::-;54650:10;54631:30;::::0;;;:18:::1;:30;::::0;;;;;:41:::1;::::0;54664:8;;54631:41:::1;:::i;:::-;54617:10;54598:30;::::0;;;:18:::1;:30;::::0;;;;:74;;;;54683:31:::1;::::0;54705:8;54683:9:::1;:31::i;58601:130::-:0;49459:7;49486:6;-1:-1:-1;;;;;49486:6:0;26266:10;49633:23;49625:68;;;;-1:-1:-1;;;49625:68:0;;;;;;;:::i;:::-;58687:22:::1;:36:::0;58601:130::o;59682:216::-;49459:7;49486:6;-1:-1:-1;;;;;49486:6:0;26266:10;49633:23;49625:68;;;;-1:-1:-1;;;49625:68:0;;;;;;;:::i;:::-;24560:1:::1;25158:7;;:19;;25150:63;;;::::0;-1:-1:-1;;;25150:63:0;;15250:2:1;25150:63:0::1;::::0;::::1;15232:21:1::0;15289:2;15269:18;;;15262:30;15328:33;15308:18;;;15301:61;15379:18;;25150:63:0::1;15048:355:1::0;25150:63:0::1;24560:1;25291:7;:18:::0;59797:93:::2;::::0;59763:21:::2;::::0;59805:42:::2;::::0;59797:93;::::2;;;::::0;59763:21;;59745:15:::2;59797:93:::0;59745:15;59797:93;59763:21;59805:42;59797:93;::::2;;;;;;;;;;;;;::::0;::::2;;;;56916:309:::0;57071:4;57108:19;;;;;:54;;-1:-1:-1;57144:18:0;;;57108:54;:109;;;;;57198:19;57179:15;:38;;57108:109;57088:129;56916:309;-1:-1:-1;;;;56916:309:0:o;36876:185::-;37014:39;37031:4;37037:2;37041:7;37014:39;;;;;;;;;;;;:16;:39::i;59568:106::-;49459:7;49486:6;-1:-1:-1;;;;;49486:6:0;26266:10;49633:23;49625:68;;;;-1:-1:-1;;;49625:68:0;;;;;;;:::i;:::-;59643:23:::1;:13;59659:7:::0;;59643:23:::1;:::i;58347:120::-:0;49459:7;49486:6;-1:-1:-1;;;;;49486:6:0;26266:10;49633:23;49625:68;;;;-1:-1:-1;;;49625:68:0;;;;;;;:::i;:::-;58422:10:::1;:37:::0;;-1:-1:-1;;58422:37:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;58347:120::o;34076:124::-;34140:7;34167:20;34179:7;34167:11;:20::i;:::-;:25;;34076:124;-1:-1:-1;;34076:124:0:o;58739:116::-;49459:7;49486:6;-1:-1:-1;;;;;49486:6:0;26266:10;49633:23;49625:68;;;;-1:-1:-1;;;49625:68:0;;;;;;;:::i;:::-;58818:15:::1;:29:::0;58739:116::o;52612:226::-;49459:7;49486:6;-1:-1:-1;;;;;49486:6:0;26266:10;49633:23;49625:68;;;;-1:-1:-1;;;49625:68:0;;;;;;;:::i;:::-;51101:5:::1;52748:3;52732:13;30385:12:::0;;30369:13;;:28;;30131:303;52732:13:::1;:19;;;;:::i;:::-;:33;;52724:66;;;;-1:-1:-1::0;;;52724:66:0::1;;;;;;;:::i;:::-;52801:29;52811:13;52826:3;52801:9;:29::i;:::-;52612:226:::0;;:::o;31251:206::-;31315:7;-1:-1:-1;;;;;31339:19:0;;31335:60;;31367:28;;-1:-1:-1;;;31367:28:0;;;;;;;;;;;31335:60;-1:-1:-1;;;;;;31421:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;31421:27:0;;31251:206::o;50064:103::-;49459:7;49486:6;-1:-1:-1;;;;;49486:6:0;26266:10;49633:23;49625:68;;;;-1:-1:-1;;;49625:68:0;;;;;;;:::i;:::-;50129:30:::1;50156:1;50129:18;:30::i;:::-;50064:103::o:0;58223:116::-;49459:7;49486:6;-1:-1:-1;;;;;49486:6:0;26266:10;49633:23;49625:68;;;;-1:-1:-1;;;49625:68:0;;;;;;;:::i;:::-;58296:10:::1;:35:::0;;-1:-1:-1;;;;;58296:35:0;;::::1;-1:-1:-1::0;;;58296:35:0::1;-1:-1:-1::0;;;;58296:35:0;;::::1;::::0;;;::::1;::::0;;58223:116::o;57731:106::-;49459:7;49486:6;-1:-1:-1;;;;;49486:6:0;26266:10;49633:23;49625:68;;;;-1:-1:-1;;;49625:68:0;;;;;;;:::i;:::-;57799:10:::1;:30:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;57799:30:0;;::::1;::::0;;;::::1;::::0;;57731:106::o;60201:167::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;60340:20:0;60352:7;60340:11;:20::i;34436:104::-;34492:13;34525:7;34518:14;;;;;:::i;36046:287::-;-1:-1:-1;;;;;36145:24:0;;26266:10;36145:24;36141:54;;;36178:17;;-1:-1:-1;;;36178:17:0;;;;;;;;;;;36141:54;26266:10;36208:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;36208:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;36208:53:0;;;;;;;;;;36277:48;;9376:41:1;;;36208:42:0;;26266:10;36277:48;;9349:18:1;36277:48:0;;;;;;;36046:287;;:::o;58475:118::-;49459:7;49486:6;-1:-1:-1;;;;;49486:6:0;26266:10;49633:23;49625:68;;;;-1:-1:-1;;;49625:68:0;;;;;;;:::i;:::-;58555:16:::1;:30:::0;58475:118::o;52846:958::-;52259:9;52272:10;52259:23;52251:66;;;;-1:-1:-1;;;52251:66:0;;;;;;;:::i;:::-;52985:28:::1;::::0;-1:-1:-1;;;;;;53002:10:0::1;7975:2:1::0;7971:15;7967:53;52985:28:0::1;::::0;::::1;7955:66:1::0;52960:12:0::1;::::0;8037::1;;52985:28:0::1;;;;;;;;;;;;52975:39;;;;;;52960:54;;53033:56;53052:12;;53033:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;53066:16:0::1;::::0;;-1:-1:-1;53084:4:0;;-1:-1:-1;53033:18:0::1;:56::i;:::-;53025:103;;;;-1:-1:-1::0;;;53025:103:0::1;;;;;;;:::i;:::-;53163:10;:28:::0;-1:-1:-1;;;53163:28:0;::::1;-1:-1:-1::0;;;;;53163:28:0::1;::::0;53203:55:::1;;;;-1:-1:-1::0;;;53203:55:0::1;;;;;;;:::i;:::-;53305:4;53293:8;53277:13;30385:12:::0;;30369:13;;:28;;30131:303;53277:13:::1;:24;;;;:::i;:::-;:32;;53269:65;;;;-1:-1:-1::0;;;53269:65:0::1;;;;;;;:::i;:::-;53377:10;53350:38;::::0;;;:26:::1;:38;::::0;;;;;::::1;;53345:167;;53432:10;53405:38;::::0;;;:26:::1;:38;::::0;;;;;;;:45;;-1:-1:-1;;53405:45:0::1;53446:4;53405:45;::::0;;53465:19:::1;:31:::0;;;;;53499:1:::1;53465:35:::0;;53345:167:::1;53550:10;53576:1;53530:31:::0;;;:19:::1;:31;::::0;;;;;:42:::1;::::0;53564:8;;53530:42:::1;:::i;:::-;:47;;53522:104;;;;-1:-1:-1::0;;;53522:104:0::1;;;;;;;:::i;:::-;53691:10;53671:31;::::0;;;:19:::1;:31;::::0;;;;;:42:::1;::::0;53705:8;;53671:42:::1;:::i;:::-;53657:10;53637:31;::::0;;;:19:::1;:31;::::0;;;;:76;;;;53724:31:::1;::::0;53746:8;53724:9:::1;:31::i;37132:369::-:0;37299:28;37309:4;37315:2;37319:7;37299:9;:28::i;:::-;-1:-1:-1;;;;;37342:13:0;;6041:19;:23;;37342:76;;;;;37362:56;37393:4;37399:2;37403:7;37412:5;37362:30;:56::i;:::-;37361:57;37342:76;37338:156;;;37442:40;;-1:-1:-1;;;37442:40:0;;;;;;;;;;;37338:156;37132:369;;;;:::o;58863:538::-;49459:7;49486:6;-1:-1:-1;;;;;49486:6:0;26266:10;49633:23;49625:68;;;;-1:-1:-1;;;49625:68:0;;;;;;;:::i;:::-;59025:13:::1;59013:8;58997:13;30385:12:::0;;30369:13;;:28;;30131:303;58997:13:::1;:24;;;;:::i;:::-;:41;;58975:128;;;::::0;-1:-1:-1;;;58975:128:0;;10804:2:1;58975:128:0::1;::::0;::::1;10786:21:1::0;10843:2;10823:18;;;10816:30;10882:34;10862:18;;;10855:62;-1:-1:-1;;;10933:18:1;;;10926:35;10978:19;;58975:128:0::1;10602:401:1::0;58975:128:0::1;59136:20;51147:1;59136:8:::0;:20:::1;:::i;:::-;:25:::0;59114:116:::1;;;::::0;-1:-1:-1;;;59114:116:0;;13087:2:1;59114:116:0::1;::::0;::::1;13069:21:1::0;13126:2;13106:18;;;13099:30;13165:34;13145:18;;;13138:62;-1:-1:-1;;;13216:18:1;;;13209:39;13265:19;;59114:116:0::1;12885:405:1::0;59114:116:0::1;59241:17;59261:20;51147:1;59261:8:::0;:20:::1;:::i;:::-;59241:40;;59297:9;59292:102;59316:9;59312:1;:13;59292:102;;;59347:35;59357:13;51147:1;59347:9;:35::i;:::-;59327:3:::0;::::1;::::0;::::1;:::i;:::-;;;;59292:102;;34611:318:::0;34684:13;34715:16;34723:7;34715;:16::i;:::-;34710:59;;34740:29;;-1:-1:-1;;;34740:29:0;;;;;;;;;;;34710:59;34782:21;34806:10;:8;:10::i;:::-;34782:34;;34840:7;34834:21;34859:1;34834:26;;:87;;;;;;;;;;;;;;;;;34887:7;34896:18;:7;:16;:18::i;:::-;34870:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34834:87;34827:94;34611:318;-1:-1:-1;;;34611:318:0:o;55783:893::-;52259:9;52272:10;52259:23;52251:66;;;;-1:-1:-1;;;52251:66:0;;;;;;;:::i;:::-;55927:37:::1;::::0;;::::1;::::0;::::1;::::0;;55954:10:::1;55927:37:::0;::::1;::::0;;::::1;::::0;;;;;::::1;::::0;;::::1;;::::0;::::1;::::0;;;-1:-1:-1;;;;;;;;55927:37:0;::::1;::::0;::::1;::::0;;;;;;;-1:-1:-1;;;55927:37:0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;55927:37:0;;::::1;::::0;::::1;::::0;;;;;;;;::::1;::::0;;;;;;;;;;;56197:36;;::::1;56175:123;;;::::0;-1:-1:-1;;;56175:123:0;;11909:2:1;56175:123:0::1;::::0;::::1;11891:21:1::0;11948:2;11928:18;;;11921:30;11987:34;11967:18;;;11960:62;-1:-1:-1;;;12038:18:1;;;12031:35;12083:19;;56175:123:0::1;11707:401:1::0;56175:123:0::1;56333:63;56348:11;56361:13;56376:19;56333:14;:63::i;:::-;56311:142;;;::::0;-1:-1:-1;;;56311:142:0;;14541:2:1;56311:142:0::1;::::0;::::1;14523:21:1::0;14580:2;14560:18;;;14553:30;14619:31;14599:18;;;14592:59;14668:18;;56311:142:0::1;14339:353:1::0;56311:142:0::1;51101:5;56502:8;56486:13;30385:12:::0;;30369:13;;:28;;30131:303;56486:13:::1;:24;;;;:::i;:::-;:38;;56464:106;;;::::0;-1:-1:-1;;;56464:106:0;;13497:2:1;56464:106:0::1;::::0;::::1;13479:21:1::0;13536:2;13516:18;;;13509:30;-1:-1:-1;;;13555:18:1;;;13548:48;13613:18;;56464:106:0::1;13295:342:1::0;56464:106:0::1;56590:31;56600:10;56612:8;56590:9;:31::i;:::-;56632:36;56645:22;56659:8:::0;56645:11;:22:::1;:::i;56632:36::-;55916:760;;;;55783:893:::0;;:::o;60080:113::-;60138:7;60165:20;60179:5;60165:13;:20::i;50322:201::-;49459:7;49486:6;-1:-1:-1;;;;;49486:6:0;26266:10;49633:23;49625:68;;;;-1:-1:-1;;;49625:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50411:22:0;::::1;50403:73;;;::::0;-1:-1:-1;;;50403:73:0;;10397:2:1;50403:73:0::1;::::0;::::1;10379:21:1::0;10436:2;10416:18;;;10409:30;10475:34;10455:18;;;10448:62;-1:-1:-1;;;10526:18:1;;;10519:36;10572:19;;50403:73:0::1;10195:402:1::0;50403:73:0::1;50487:28;50506:8;50487:18;:28::i;:::-;50322:201:::0;:::o;37756:187::-;37813:4;37877:13;;37867:7;:23;37837:98;;;;-1:-1:-1;;37908:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;37908:27:0;;;;37907:28;;37756:187::o;45367:196::-;45482:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45482:29:0;-1:-1:-1;;;;;45482:29:0;;;;;;;;;45527:28;;45482:24;;45527:28;;;;;;;45367:196;;;:::o;37951:104::-;38020:27;38030:2;38034:8;38020:27;;;;;;;;;;;;:9;:27::i;40869:2112::-;40984:35;41022:20;41034:7;41022:11;:20::i;:::-;41097:18;;40984:58;;-1:-1:-1;41055:22:0;;-1:-1:-1;;;;;41081:34:0;26266:10;-1:-1:-1;;;;;41081:34:0;;:101;;;-1:-1:-1;41149:18:0;;41132:50;;26266:10;36404:164;:::i;41132:50::-;41081:154;;;-1:-1:-1;26266:10:0;41199:20;41211:7;41199:11;:20::i;:::-;-1:-1:-1;;;;;41199:36:0;;41081:154;41055:181;;41254:17;41249:66;;41280:35;;-1:-1:-1;;;41280:35:0;;;;;;;;;;;41249:66;41352:4;-1:-1:-1;;;;;41330:26:0;:13;:18;;;-1:-1:-1;;;;;41330:26:0;;41326:67;;41365:28;;-1:-1:-1;;;41365:28:0;;;;;;;;;;;41326:67;-1:-1:-1;;;;;41408:16:0;;41404:52;;41433:23;;-1:-1:-1;;;41433:23:0;;;;;;;;;;;41404:52;41577:49;41594:1;41598:7;41607:13;:18;;;41577:8;:49::i;:::-;-1:-1:-1;;;;;41922:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;41922:31:0;;;-1:-1:-1;;;;;41922:31:0;;;-1:-1:-1;;41922:31:0;;;;;;;41968:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;41968:29:0;;;;;;;;;;;42014:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;42059:61:0;;;;-1:-1:-1;;;42104:15:0;42059:61;;;;;;;;;;;42394:11;;;42424:24;;;;;:29;42394:11;;42424:29;42420:445;;42649:13;;42635:11;:27;42631:219;;;42719:18;;;42687:24;;;:11;:24;;;;;;;;:50;;42802:28;;;;-1:-1:-1;;;;;42760:70:0;-1:-1:-1;;;42760:70:0;-1:-1:-1;;;;;;42760:70:0;;;-1:-1:-1;;;;;42687:50:0;;;42760:70;;;;;;;42631:219;41897:979;42912:7;42908:2;-1:-1:-1;;;;;42893:27:0;42902:4;-1:-1:-1;;;;;42893:27:0;;;;;;;;;;;42931:42;37132:369;923:190;1048:4;1101;1072:25;1085:5;1092:4;1072:12;:25::i;:::-;:33;;923:190;-1:-1:-1;;;;923:190:0:o;56684:224::-;56761:5;56748:9;:18;;56740:53;;;;-1:-1:-1;;;56740:53:0;;14899:2:1;56740:53:0;;;14881:21:1;14938:2;14918:18;;;14911:30;-1:-1:-1;;;14957:18:1;;;14950:52;15019:18;;56740:53:0;14697:346:1;56740:53:0;56820:5;56808:9;:17;56804:97;;;56850:10;56842:47;56871:17;56883:5;56871:9;:17;:::i;:::-;56842:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32906:1108;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;33016:7:0;33099:13;;33092:4;:20;33061:886;;;33133:31;33167:17;;;:11;:17;;;;;;;;;33133:51;;;;;;;;;-1:-1:-1;;;;;33133:51:0;;;;-1:-1:-1;;;33133:51:0;;-1:-1:-1;;;;;33133:51:0;;;;;;;;-1:-1:-1;;;33133:51:0;;;;;;;;;;;;;;33203:729;;33253:14;;-1:-1:-1;;;;;33253:28:0;;33249:101;;33317:9;32906:1108;-1:-1:-1;;;32906:1108:0:o;33249:101::-;-1:-1:-1;;;33692:6:0;33737:17;;;;:11;:17;;;;;;;;;33725:29;;;;;;;;;-1:-1:-1;;;;;33725:29:0;;;;;-1:-1:-1;;;33725:29:0;;-1:-1:-1;;;;;33725:29:0;;;;;;;;-1:-1:-1;;;33725:29:0;;;;;;;;;;;;;33785:28;33781:109;;33853:9;32906:1108;-1:-1:-1;;;32906:1108:0:o;33781:109::-;33652:261;;;33114:833;33061:886;33975:31;;-1:-1:-1;;;33975:31:0;;;;;;;;;;;50683:191;50757:16;50776:6;;-1:-1:-1;;;;;50793:17:0;;;-1:-1:-1;;;;;;50793:17:0;;;;;;50826:40;;50776:6;;;;;;;50826:40;;50757:16;50826:40;50746:128;50683:191;:::o;46055:667::-;46239:72;;-1:-1:-1;;;46239:72:0;;46218:4;;-1:-1:-1;;;;;46239:36:0;;;;;:72;;26266:10;;46290:4;;46296:7;;46305:5;;46239:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46239:72:0;;;;;;;;-1:-1:-1;;46239:72:0;;;;;;;;;;;;:::i;:::-;;;46235:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46473:13:0;;46469:235;;46519:40;;-1:-1:-1;;;46519:40:0;;;;;;;;;;;46469:235;46662:6;46656:13;46647:6;46643:2;46639:15;46632:38;46235:480;-1:-1:-1;;;;;;46358:55:0;-1:-1:-1;;;46358:55:0;;-1:-1:-1;46055:667:0;;;;;;:::o;59446:114::-;59506:13;59539;59532:20;;;;;:::i;2754:723::-;2810:13;3031:10;3027:53;;-1:-1:-1;;3058:10:0;;;;;;;;;;;;-1:-1:-1;;;3058:10:0;;;;;2754:723::o;3027:53::-;3105:5;3090:12;3146:78;3153:9;;3146:78;;3179:8;;;;:::i;:::-;;-1:-1:-1;3202:10:0;;-1:-1:-1;3210:2:0;3202:10;;:::i;:::-;;;3146:78;;;3234:19;3266:6;-1:-1:-1;;;;;3256:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3256:17:0;;3234:39;;3284:154;3291:10;;3284:154;;3318:11;3328:1;3318:11;;:::i;:::-;;-1:-1:-1;3387:10:0;3395:2;3387:5;:10;:::i;:::-;3374:24;;:2;:24;:::i;:::-;3361:39;;3344:6;3351;3344:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3344:56:0;;;;;;;;-1:-1:-1;3415:11:0;3424:2;3415:11;;:::i;:::-;;;3284:154;;31539:207;31600:7;-1:-1:-1;;;;;31624:19:0;;31620:59;;31652:27;;-1:-1:-1;;;31652:27:0;;;;;;;;;;;31620:59;-1:-1:-1;;;;;;31705:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;31705:32:0;;-1:-1:-1;;;;;31705:32:0;;31539:207::o;38418:163::-;38541:32;38547:2;38551:8;38561:5;38568:4;38541:5;:32::i;1475:675::-;1558:7;1601:4;1558:7;1616:497;1640:5;:12;1636:1;:16;1616:497;;;1674:20;1697:5;1703:1;1697:8;;;;;;;;:::i;:::-;;;;;;;1674:31;;1740:12;1724;:28;1720:382;;2226:13;2276:15;;;2312:4;2305:15;;;2359:4;2343:21;;1852:57;;1720:382;;;2226:13;2276:15;;;2312:4;2305:15;;;2359:4;2343:21;;2029:57;;1720:382;-1:-1:-1;1654:3:0;;;;:::i;:::-;;;;1616:497;;;-1:-1:-1;2130:12:0;1475:675;-1:-1:-1;;;1475:675:0:o;38840:1775::-;39002:13;;-1:-1:-1;;;;;39030:16:0;;39026:48;;39055:19;;-1:-1:-1;;;39055:19:0;;;;;;;;;;;39026:48;39089:13;39085:44;;39111:18;;-1:-1:-1;;;39111:18:0;;;;;;;;;;;39085:44;-1:-1:-1;;;;;39480:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;39539:49:0;;-1:-1:-1;;;;;39480:44:0;;;;;;;39539:49;;;-1:-1:-1;;;;;39480:44:0;;;;;;39539:49;;;;;;;;;;;;;;;;39605:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;39655:66:0;;;;-1:-1:-1;;;39705:15:0;39655:66;;;;;;;;;;39605:25;39802:23;;;39846:4;:23;;;;-1:-1:-1;;;;;;39854:13:0;;6041:19;:23;;39854:15;39842:641;;;39890:314;39921:38;;39946:12;;-1:-1:-1;;;;;39921:38:0;;;39938:1;;39921:38;;39938:1;;39921:38;39987:69;40026:1;40030:2;40034:14;;;;;;40050:5;39987:30;:69::i;:::-;39982:174;;40092:40;;-1:-1:-1;;;40092:40:0;;;;;;;;;;;39982:174;40199:3;40183:12;:19;;39890:314;;40285:12;40268:13;;:29;40264:43;;40299:8;;;40264:43;39842:641;;;40348:120;40379:40;;40404:14;;;;;-1:-1:-1;;;;;40379:40:0;;;40396:1;;40379:40;;40396:1;;40379:40;40463:3;40447:12;:19;;40348:120;;39842:641;-1:-1:-1;40497:13:0;:28;40547:60;37132:369;-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:367::-;255:8;265:6;319:3;312:4;304:6;300:17;296:27;286:55;;337:1;334;327:12;286:55;-1:-1:-1;360:20:1;;-1:-1:-1;;;;;392:30:1;;389:50;;;435:1;432;425:12;389:50;472:4;464:6;460:17;448:29;;532:3;525:4;515:6;512:1;508:14;500:6;496:27;492:38;489:47;486:67;;;549:1;546;539:12;486:67;192:367;;;;;:::o;564:163::-;631:20;;691:10;680:22;;670:33;;660:61;;717:1;714;707:12;732:171;799:20;;-1:-1:-1;;;;;848:30:1;;838:41;;828:69;;893:1;890;883:12;908:186;967:6;1020:2;1008:9;999:7;995:23;991:32;988:52;;;1036:1;1033;1026:12;988:52;1059:29;1078:9;1059:29;:::i;1099:260::-;1167:6;1175;1228:2;1216:9;1207:7;1203:23;1199:32;1196:52;;;1244:1;1241;1234:12;1196:52;1267:29;1286:9;1267:29;:::i;:::-;1257:39;;1315:38;1349:2;1338:9;1334:18;1315:38;:::i;:::-;1305:48;;1099:260;;;;;:::o;1364:328::-;1441:6;1449;1457;1510:2;1498:9;1489:7;1485:23;1481:32;1478:52;;;1526:1;1523;1516:12;1478:52;1549:29;1568:9;1549:29;:::i;:::-;1539:39;;1597:38;1631:2;1620:9;1616:18;1597:38;:::i;:::-;1587:48;;1682:2;1671:9;1667:18;1654:32;1644:42;;1364:328;;;;;:::o;1697:1138::-;1792:6;1800;1808;1816;1869:3;1857:9;1848:7;1844:23;1840:33;1837:53;;;1886:1;1883;1876:12;1837:53;1909:29;1928:9;1909:29;:::i;:::-;1899:39;;1957:38;1991:2;1980:9;1976:18;1957:38;:::i;:::-;1947:48;;2042:2;2031:9;2027:18;2014:32;2004:42;;2097:2;2086:9;2082:18;2069:32;-1:-1:-1;;;;;2161:2:1;2153:6;2150:14;2147:34;;;2177:1;2174;2167:12;2147:34;2215:6;2204:9;2200:22;2190:32;;2260:7;2253:4;2249:2;2245:13;2241:27;2231:55;;2282:1;2279;2272:12;2231:55;2318:2;2305:16;2340:2;2336;2333:10;2330:36;;;2346:18;;:::i;:::-;2421:2;2415:9;2389:2;2475:13;;-1:-1:-1;;2471:22:1;;;2495:2;2467:31;2463:40;2451:53;;;2519:18;;;2539:22;;;2516:46;2513:72;;;2565:18;;:::i;:::-;2605:10;2601:2;2594:22;2640:2;2632:6;2625:18;2680:7;2675:2;2670;2666;2662:11;2658:20;2655:33;2652:53;;;2701:1;2698;2691:12;2652:53;2757:2;2752;2748;2744:11;2739:2;2731:6;2727:15;2714:46;2802:1;2797:2;2792;2784:6;2780:15;2776:24;2769:35;2823:6;2813:16;;;;;;;1697:1138;;;;;;;:::o;2840:347::-;2905:6;2913;2966:2;2954:9;2945:7;2941:23;2937:32;2934:52;;;2982:1;2979;2972:12;2934:52;3005:29;3024:9;3005:29;:::i;:::-;2995:39;;3084:2;3073:9;3069:18;3056:32;3131:5;3124:13;3117:21;3110:5;3107:32;3097:60;;3153:1;3150;3143:12;3097:60;3176:5;3166:15;;;2840:347;;;;;:::o;3192:254::-;3260:6;3268;3321:2;3309:9;3300:7;3296:23;3292:32;3289:52;;;3337:1;3334;3327:12;3289:52;3360:29;3379:9;3360:29;:::i;:::-;3350:39;3436:2;3421:18;;;;3408:32;;-1:-1:-1;;;3192:254:1:o;3451:437::-;3537:6;3545;3598:2;3586:9;3577:7;3573:23;3569:32;3566:52;;;3614:1;3611;3604:12;3566:52;3654:9;3641:23;-1:-1:-1;;;;;3679:6:1;3676:30;3673:50;;;3719:1;3716;3709:12;3673:50;3758:70;3820:7;3811:6;3800:9;3796:22;3758:70;:::i;:::-;3847:8;;3732:96;;-1:-1:-1;3451:437:1;-1:-1:-1;;;;3451:437:1:o;3893:505::-;3988:6;3996;4004;4057:2;4045:9;4036:7;4032:23;4028:32;4025:52;;;4073:1;4070;4063:12;4025:52;4113:9;4100:23;-1:-1:-1;;;;;4138:6:1;4135:30;4132:50;;;4178:1;4175;4168:12;4132:50;4217:70;4279:7;4270:6;4259:9;4255:22;4217:70;:::i;:::-;4306:8;;4191:96;;-1:-1:-1;4388:2:1;4373:18;;;;4360:32;;3893:505;-1:-1:-1;;;;3893:505:1:o;4403:180::-;4462:6;4515:2;4503:9;4494:7;4490:23;4486:32;4483:52;;;4531:1;4528;4521:12;4483:52;-1:-1:-1;4554:23:1;;4403:180;-1:-1:-1;4403:180:1:o;4588:245::-;4646:6;4699:2;4687:9;4678:7;4674:23;4670:32;4667:52;;;4715:1;4712;4705:12;4667:52;4754:9;4741:23;4773:30;4797:5;4773:30;:::i;4838:249::-;4907:6;4960:2;4948:9;4939:7;4935:23;4931:32;4928:52;;;4976:1;4973;4966:12;4928:52;5008:9;5002:16;5027:30;5051:5;5027:30;:::i;5092:592::-;5163:6;5171;5224:2;5212:9;5203:7;5199:23;5195:32;5192:52;;;5240:1;5237;5230:12;5192:52;5280:9;5267:23;-1:-1:-1;;;;;5350:2:1;5342:6;5339:14;5336:34;;;5366:1;5363;5356:12;5336:34;5404:6;5393:9;5389:22;5379:32;;5449:7;5442:4;5438:2;5434:13;5430:27;5420:55;;5471:1;5468;5461:12;5420:55;5511:2;5498:16;5537:2;5529:6;5526:14;5523:34;;;5553:1;5550;5543:12;5523:34;5598:7;5593:2;5584:6;5580:2;5576:15;5572:24;5569:37;5566:57;;;5619:1;5616;5609:12;5566:57;5650:2;5642:11;;;;;5672:6;;-1:-1:-1;5092:592:1;;-1:-1:-1;;;;5092:592:1:o;5874:254::-;5942:6;5950;6003:2;5991:9;5982:7;5978:23;5974:32;5971:52;;;6019:1;6016;6009:12;5971:52;6055:9;6042:23;6032:33;;6084:38;6118:2;6107:9;6103:18;6084:38;:::i;6133:248::-;6201:6;6209;6262:2;6250:9;6241:7;6237:23;6233:32;6230:52;;;6278:1;6275;6268:12;6230:52;-1:-1:-1;;6301:23:1;;;6371:2;6356:18;;;6343:32;;-1:-1:-1;6133:248:1:o;6386:316::-;6463:6;6471;6479;6532:2;6520:9;6511:7;6507:23;6503:32;6500:52;;;6548:1;6545;6538:12;6500:52;-1:-1:-1;;6571:23:1;;;6641:2;6626:18;;6613:32;;-1:-1:-1;6692:2:1;6677:18;;;6664:32;;6386:316;-1:-1:-1;6386:316:1:o;6707:184::-;6765:6;6818:2;6806:9;6797:7;6793:23;6789:32;6786:52;;;6834:1;6831;6824:12;6786:52;6857:28;6875:9;6857:28;:::i;6896:184::-;6954:6;7007:2;6995:9;6986:7;6982:23;6978:32;6975:52;;;7023:1;7020;7013:12;6975:52;7046:28;7064:9;7046:28;:::i;7085:474::-;7175:6;7183;7191;7199;7207;7260:3;7248:9;7239:7;7235:23;7231:33;7228:53;;;7277:1;7274;7267:12;7228:53;7300:28;7318:9;7300:28;:::i;:::-;7290:38;;7347:37;7380:2;7369:9;7365:18;7347:37;:::i;:::-;7337:47;;7403:37;7436:2;7425:9;7421:18;7403:37;:::i;:::-;7393:47;;7459:37;7492:2;7481:9;7477:18;7459:37;:::i;:::-;7449:47;;7515:38;7548:3;7537:9;7533:19;7515:38;:::i;:::-;7505:48;;7085:474;;;;;;;;:::o;7564:257::-;7605:3;7643:5;7637:12;7670:6;7665:3;7658:19;7686:63;7742:6;7735:4;7730:3;7726:14;7719:4;7712:5;7708:16;7686:63;:::i;:::-;7803:2;7782:15;-1:-1:-1;;7778:29:1;7769:39;;;;7810:4;7765:50;;7564:257;-1:-1:-1;;7564:257:1:o;8060:470::-;8239:3;8277:6;8271:13;8293:53;8339:6;8334:3;8327:4;8319:6;8315:17;8293:53;:::i;:::-;8409:13;;8368:16;;;;8431:57;8409:13;8368:16;8465:4;8453:17;;8431:57;:::i;:::-;8504:20;;8060:470;-1:-1:-1;;;;8060:470:1:o;8743:488::-;-1:-1:-1;;;;;9012:15:1;;;8994:34;;9064:15;;9059:2;9044:18;;9037:43;9111:2;9096:18;;9089:34;;;9159:3;9154:2;9139:18;;9132:31;;;8937:4;;9180:45;;9205:19;;9197:6;9180:45;:::i;:::-;9172:53;8743:488;-1:-1:-1;;;;;;8743:488:1:o;9610:219::-;9759:2;9748:9;9741:21;9722:4;9779:44;9819:2;9808:9;9804:18;9796:6;9779:44;:::i;9834:356::-;10036:2;10018:21;;;10055:18;;;10048:30;10114:34;10109:2;10094:18;;10087:62;10181:2;10166:18;;9834:356::o;11008:345::-;11210:2;11192:21;;;11249:2;11229:18;;;11222:30;-1:-1:-1;;;11283:2:1;11268:18;;11261:51;11344:2;11329:18;;11008:345::o;11358:344::-;11560:2;11542:21;;;11599:2;11579:18;;;11572:30;-1:-1:-1;;;11633:2:1;11618:18;;11611:50;11693:2;11678:18;;11358:344::o;12113:408::-;12315:2;12297:21;;;12354:2;12334:18;;;12327:30;12393:34;12388:2;12373:18;;12366:62;-1:-1:-1;;;12459:2:1;12444:18;;12437:42;12511:3;12496:19;;12113:408::o;12526:354::-;12728:2;12710:21;;;12767:2;12747:18;;;12740:30;12806:32;12801:2;12786:18;;12779:60;12871:2;12856:18;;12526:354::o;13978:356::-;14180:2;14162:21;;;14199:18;;;14192:30;14258:34;14253:2;14238:18;;14231:62;14325:2;14310:18;;13978:356::o;16682:128::-;16722:3;16753:1;16749:6;16746:1;16743:13;16740:39;;;16759:18;;:::i;:::-;-1:-1:-1;16795:9:1;;16682:128::o;16815:120::-;16855:1;16881;16871:35;;16886:18;;:::i;:::-;-1:-1:-1;16920:9:1;;16815:120::o;16940:168::-;16980:7;17046:1;17042;17038:6;17034:14;17031:1;17028:21;17023:1;17016:9;17009:17;17005:45;17002:71;;;17053:18;;:::i;:::-;-1:-1:-1;17093:9:1;;16940:168::o;17113:125::-;17153:4;17181:1;17178;17175:8;17172:34;;;17186:18;;:::i;:::-;-1:-1:-1;17223:9:1;;17113:125::o;17243:258::-;17315:1;17325:113;17339:6;17336:1;17333:13;17325:113;;;17415:11;;;17409:18;17396:11;;;17389:39;17361:2;17354:10;17325:113;;;17456:6;17453:1;17450:13;17447:48;;;-1:-1:-1;;17491:1:1;17473:16;;17466:27;17243:258::o;17506:380::-;17585:1;17581:12;;;;17628;;;17649:61;;17703:4;17695:6;17691:17;17681:27;;17649:61;17756:2;17748:6;17745:14;17725:18;17722:38;17719:161;;;17802:10;17797:3;17793:20;17790:1;17783:31;17837:4;17834:1;17827:15;17865:4;17862:1;17855:15;17719:161;;17506:380;;;:::o;17891:135::-;17930:3;-1:-1:-1;;17951:17:1;;17948:43;;;17971:18;;:::i;:::-;-1:-1:-1;18018:1:1;18007:13;;17891:135::o;18031:112::-;18063:1;18089;18079:35;;18094:18;;:::i;:::-;-1:-1:-1;18128:9:1;;18031:112::o;18148:127::-;18209:10;18204:3;18200:20;18197:1;18190:31;18240:4;18237:1;18230:15;18264:4;18261:1;18254:15;18280:127;18341:10;18336:3;18332:20;18329:1;18322:31;18372:4;18369:1;18362:15;18396:4;18393:1;18386:15;18412:127;18473:10;18468:3;18464:20;18461:1;18454:31;18504:4;18501:1;18494:15;18528:4;18525:1;18518:15;18544:127;18605:10;18600:3;18596:20;18593:1;18586:31;18636:4;18633:1;18626:15;18660:4;18657:1;18650:15;18676:131;-1:-1:-1;;;;;;18750:32:1;;18740:43;;18730:71;;18797:1;18794;18787:12

Swarm Source

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