ETH Price: $3,357.97 (-1.70%)
Gas: 8 Gwei

Token

0xCats (0xCat)
 

Overview

Max Total Supply

9,999 0xCat

Holders

1,141

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
9 0xCat
0xB9a39fFE656011276b93fDD87F827Ea1A74bDdB8
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
xCats

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-01-31
*/

// SPDX-License-Identifier: MIT


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/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 v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


// Creator: Chiru Labs


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)
        }
    }
}

pragma solidity ^0.8.0;










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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 0;

    uint256 internal immutable maxBatchSize;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) 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;

    /**
     * @dev
     * `maxBatchSize` refers to how much a minter can mint at a time.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_
    ) {
        require(maxBatchSize_ > 0, 'ERC721A: max batch size must be nonzero');
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

        uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

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

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

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

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

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

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

interface HolderC {
    
    function balanceOf(address owner) external view returns (uint256 balance);
}

pragma solidity ^0.8.0;

contract xCats is ERC721A, Ownable {
  using Strings for uint256;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.04 ether;
  uint256 public maxSupply = 9999;
  uint256 public maxMintAmountPerTx = 9;
  uint256 public nftPerAddressLimitWl = 9;

  bool public paused = true;
  bool public revealed = false;
  bool public onlyWhitelisted = true;

  bytes32 public whitelistMerkleRoot;
  mapping(address => uint256) public addressMintedBalance;

  HolderC public holderc;

  constructor() ERC721A("0xCats", "0xCat", maxMintAmountPerTx) {
    setHiddenMetadataUri("https://0xcats.mypinata.cloud/ipfs/QmQQJV8H66DKTwdHQCMw8wFuNxUo7qVmQQJjsg4nc7Fows/hidden.json");
  }

  /**
    * @dev validates merkleProof
    */
  modifier isValidMerkleProof(bytes32[] calldata merkleProof, bytes32 root) {
    require(
        MerkleProof.verify(
            merkleProof,
            root,
            keccak256(abi.encodePacked(msg.sender))
        ),
        "Address does not exist in list"
    );
    _;
  }

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

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    require(!onlyWhitelisted, "Presale is on");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

    _safeMint(msg.sender, _mintAmount);
  }

  function mintHolder(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    uint256 ownerMintedCount = addressMintedBalance[msg.sender];
    require(!paused, "The contract is paused!");
    require(onlyWhitelisted, "Presale has ended");
    require(holderc.balanceOf(msg.sender) > 0 , "you are not a holder");
    require(ownerMintedCount + _mintAmount <= nftPerAddressLimitWl, "max NFT per address exceeded");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

    addressMintedBalance[msg.sender]+=_mintAmount;
    _safeMint(msg.sender, _mintAmount);
  }

  function mintWhitelist(bytes32[] calldata merkleProof, uint256 _mintAmount) public payable isValidMerkleProof(merkleProof, whitelistMerkleRoot){
    uint256 ownerMintedCount = addressMintedBalance[msg.sender];
    require(!paused, "The contract is paused!");
    require(onlyWhitelisted, "Presale has ended");
    require(ownerMintedCount + _mintAmount <= nftPerAddressLimitWl, "max NFT per address exceeded");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    
    addressMintedBalance[msg.sender]+=_mintAmount;
    _safeMint(msg.sender, _mintAmount);
  }
  
  function mintOwner(address _to, uint256 _mintAmount) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_to, _mintAmount);
  }

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

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

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

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

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

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

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setWhitelistMerkleRoot(bytes32 merkleRoot) external onlyOwner {
    whitelistMerkleRoot = merkleRoot;
  }

  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setHolderC(address _address) public {
    holderc = HolderC(_address);
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setNftPerAddressLimitWl(uint256 _limit) public onlyOwner {
    nftPerAddressLimitWl = _limit;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

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

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
      _safeMint(_receiver, _mintAmount);
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","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":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"holderc","outputs":[{"internalType":"contract HolderC","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintHolder","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimitWl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setHolderC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimitWl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600080805560c0604081905260a08290526200001f91600891906200025d565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004e916009916200025d565b50668e1bc9bf040000600b5561270f600c556009600d819055600e55600f805462ffffff1916620100011790553480156200008857600080fd5b506040518060400160405280600681526020016530784361747360d01b815250604051806040016040528060058152602001640c1e10d85d60da1b815250600d54600081116200012f5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084015b60405180910390fd5b8251620001449060019060208601906200025d565b5081516200015a9060029060208501906200025d565b50608052506200016c90503362000196565b620001906040518060800160405280605d8152602001620032b2605d9139620001e8565b62000340565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b03163314620002445760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000126565b80516200025990600a9060208401906200025d565b5050565b8280546200026b9062000303565b90600052602060002090601f0160209004810192826200028f5760008555620002da565b82601f10620002aa57805160ff1916838001178555620002da565b82800160010185558215620002da579182015b82811115620002da578251825591602001919060010190620002bd565b50620002e8929150620002ec565b5090565b5b80821115620002e85760008155600101620002ed565b600181811c908216806200031857607f821691505b602082108114156200033a57634e487b7160e01b600052602260045260246000fd5b50919050565b608051612f486200036a60003960008181611f7101528181611f9b01526123d90152612f486000f3fe6080604052600436106102935760003560e01c80635503a0e81161015a578063a22cb465116100c1578063c87b56dd1161007a578063c87b56dd146107a9578063d5abeb01146107c9578063e0a80853146107df578063e2dfc039146107ff578063e985e9c51461081f578063f2fde38b1461086857600080fd5b8063a22cb4651461070b578063a45ba8e71461072b578063a6d612f914610740578063aa98e0c614610753578063b88d4fde14610769578063bd32fb661461078957600080fd5b80637ec4a659116101135780637ec4a6591461066f5780638da5cb5b1461068f57806394354fd0146106ad57806395d89b41146106c35780639c70b512146106d8578063a0712d68146106f857600080fd5b80635503a0e8146105d65780635c975abb146105eb57806362b99ad4146106055780636352211e1461061a57806370a082311461063a578063715018a61461065a57600080fd5b80632f745c59116101fe578063438b6300116101b7578063438b63001461051757806344a0d68a146105445780634b3ea934146105645780634f6ccce7146105775780634fdd43cb1461059757806351830227146105b757600080fd5b80632f745c5914610445578063388960a7146104655780633c952764146104a25780633ccfd60b146104c2578063408cbf94146104d757806342842e0e146104f757600080fd5b806316c38b3c1161025057806316c38b3c1461038d57806318160ddd146103ad57806318cae269146103c25780632063064e146103ef57806323b872dd146104055780632cdf09ba1461042557600080fd5b806301ffc9a71461029857806306fdde03146102cd578063081812fc146102ef578063095ea7b31461032757806313faede61461034957806316ba10e01461036d575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612a02565b610888565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e26108f5565b6040516102c49190612c0f565b3480156102fb57600080fd5b5061030f61030a3660046129e9565b610987565b6040516001600160a01b0390911681526020016102c4565b34801561033357600080fd5b50610347610342366004612929565b610a17565b005b34801561035557600080fd5b5061035f600b5481565b6040519081526020016102c4565b34801561037957600080fd5b50610347610388366004612a3c565b610b2f565b34801561039957600080fd5b506103476103a83660046129ce565b610b70565b3480156103b957600080fd5b5060005461035f565b3480156103ce57600080fd5b5061035f6103dd3660046127f9565b60116020526000908152604090205481565b3480156103fb57600080fd5b5061035f600e5481565b34801561041157600080fd5b50610347610420366004612847565b610bad565b34801561043157600080fd5b5060125461030f906001600160a01b031681565b34801561045157600080fd5b5061035f610460366004612929565b610bb8565b34801561047157600080fd5b506103476104803660046127f9565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b3480156104ae57600080fd5b506103476104bd3660046129ce565b610d26565b3480156104ce57600080fd5b50610347610d6c565b3480156104e357600080fd5b506103476104f2366004612929565b610e0a565b34801561050357600080fd5b50610347610512366004612847565b610e9c565b34801561052357600080fd5b506105376105323660046127f9565b610eb7565b6040516102c49190612bcb565b34801561055057600080fd5b5061034761055f3660046129e9565b610f97565b6103476105723660046129e9565b610fc6565b34801561058357600080fd5b5061035f6105923660046129e9565b61121a565b3480156105a357600080fd5b506103476105b2366004612a3c565b61127c565b3480156105c357600080fd5b50600f546102b890610100900460ff1681565b3480156105e257600080fd5b506102e26112b9565b3480156105f757600080fd5b50600f546102b89060ff1681565b34801561061157600080fd5b506102e2611347565b34801561062657600080fd5b5061030f6106353660046129e9565b611354565b34801561064657600080fd5b5061035f6106553660046127f9565b611366565b34801561066657600080fd5b506103476113f7565b34801561067b57600080fd5b5061034761068a366004612a3c565b61142d565b34801561069b57600080fd5b506007546001600160a01b031661030f565b3480156106b957600080fd5b5061035f600d5481565b3480156106cf57600080fd5b506102e261146a565b3480156106e457600080fd5b50600f546102b89062010000900460ff1681565b6103476107063660046129e9565b611479565b34801561071757600080fd5b506103476107263660046128ff565b61157a565b34801561073757600080fd5b506102e261163f565b61034761074e366004612953565b61164c565b34801561075f57600080fd5b5061035f60105481565b34801561077557600080fd5b50610347610784366004612883565b61184e565b34801561079557600080fd5b506103476107a43660046129e9565b611887565b3480156107b557600080fd5b506102e26107c43660046129e9565b6118b6565b3480156107d557600080fd5b5061035f600c5481565b3480156107eb57600080fd5b506103476107fa3660046129ce565b611a27565b34801561080b57600080fd5b5061034761081a3660046129e9565b611a6b565b34801561082b57600080fd5b506102b861083a366004612814565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561087457600080fd5b506103476108833660046127f9565b611a9a565b60006001600160e01b031982166380ac58cd60e01b14806108b957506001600160e01b03198216635b5e139f60e01b145b806108d457506001600160e01b0319821663780e9d6360e01b145b806108ef57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461090490612e3a565b80601f016020809104026020016040519081016040528092919081815260200182805461093090612e3a565b801561097d5780601f106109525761010080835404028352916020019161097d565b820191906000526020600020905b81548152906001019060200180831161096057829003601f168201915b5050505050905090565b6000610994826000541190565b6109fb5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610a2282611354565b9050806001600160a01b0316836001600160a01b03161415610a915760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016109f2565b336001600160a01b0382161480610aad5750610aad813361083a565b610b1f5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016109f2565b610b2a838383611b32565b505050565b6007546001600160a01b03163314610b595760405162461bcd60e51b81526004016109f290612c50565b8051610b6c9060099060208401906126c7565b5050565b6007546001600160a01b03163314610b9a5760405162461bcd60e51b81526004016109f290612c50565b600f805460ff1916911515919091179055565b610b2a838383611b8e565b6000610bc383611366565b8210610c1c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016109f2565b600080549080805b83811015610cc6576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c7757805192505b876001600160a01b0316836001600160a01b03161415610cb35786841415610ca5575093506108ef92505050565b83610caf81612e75565b9450505b5080610cbe81612e75565b915050610c24565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016109f2565b6007546001600160a01b03163314610d505760405162461bcd60e51b81526004016109f290612c50565b600f8054911515620100000262ff000019909216919091179055565b6007546001600160a01b03163314610d965760405162461bcd60e51b81526004016109f290612c50565b6000610daa6007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610df4576040519150601f19603f3d011682016040523d82523d6000602084013e610df9565b606091505b5050905080610e0757600080fd5b50565b80600081118015610e1d5750600d548111155b610e395760405162461bcd60e51b81526004016109f290612c22565b600c5481600054610e4a9190612d95565b1115610e685760405162461bcd60e51b81526004016109f290612cbc565b6007546001600160a01b03163314610e925760405162461bcd60e51b81526004016109f290612c50565b610b2a8383611ed5565b610b2a8383836040518060200160405280600081525061184e565b60606000610ec483611366565b905060008167ffffffffffffffff811115610ee157610ee1612ee6565b604051908082528060200260200182016040528015610f0a578160200160208202803683370190505b5090506000805b8381108015610f225750600c548211155b15610f8d576000610f3283611354565b9050866001600160a01b0316816001600160a01b03161415610f7a5782848381518110610f6157610f61612ed0565b602090810291909101015281610f7681612e75565b9250505b82610f8481612e75565b93505050610f11565b5090949350505050565b6007546001600160a01b03163314610fc15760405162461bcd60e51b81526004016109f290612c50565b600b55565b80600081118015610fd95750600d548111155b610ff55760405162461bcd60e51b81526004016109f290612c22565b600c54816000546110069190612d95565b11156110245760405162461bcd60e51b81526004016109f290612cbc565b33600090815260116020526040902054600f5460ff16156110575760405162461bcd60e51b81526004016109f290612c85565b600f5462010000900460ff166110a35760405162461bcd60e51b8152602060048201526011602482015270141c995cd85b19481a185cc8195b991959607a1b60448201526064016109f2565b6012546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156110e757600080fd5b505afa1580156110fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061111f9190612a85565b116111635760405162461bcd60e51b81526020600482015260146024820152733cb7ba9030b932903737ba1030903437b63232b960611b60448201526064016109f2565b600e546111708483612d95565b11156111be5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016109f2565b82600b546111cc9190612dc1565b3410156111eb5760405162461bcd60e51b81526004016109f290612d3d565b336000908152601160205260408120805485929061120a908490612d95565b90915550610b2a90503384611ed5565b6000805482106112785760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016109f2565b5090565b6007546001600160a01b031633146112a65760405162461bcd60e51b81526004016109f290612c50565b8051610b6c90600a9060208401906126c7565b600980546112c690612e3a565b80601f01602080910402602001604051908101604052809291908181526020018280546112f290612e3a565b801561133f5780601f106113145761010080835404028352916020019161133f565b820191906000526020600020905b81548152906001019060200180831161132257829003601f168201915b505050505081565b600880546112c690612e3a565b600061135f82611eef565b5192915050565b60006001600160a01b0382166113d25760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016109f2565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146114215760405162461bcd60e51b81526004016109f290612c50565b61142b6000612099565b565b6007546001600160a01b031633146114575760405162461bcd60e51b81526004016109f290612c50565b8051610b6c9060089060208401906126c7565b60606002805461090490612e3a565b8060008111801561148c5750600d548111155b6114a85760405162461bcd60e51b81526004016109f290612c22565b600c54816000546114b99190612d95565b11156114d75760405162461bcd60e51b81526004016109f290612cbc565b600f5460ff16156114fa5760405162461bcd60e51b81526004016109f290612c85565b600f5462010000900460ff16156115435760405162461bcd60e51b815260206004820152600d60248201526c283932b9b0b6329034b99037b760991b60448201526064016109f2565b81600b546115519190612dc1565b3410156115705760405162461bcd60e51b81526004016109f290612d3d565b610b6c3383611ed5565b6001600160a01b0382163314156115d35760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016109f2565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a80546112c690612e3a565b82826010546116c3838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b1660208201528592506034019050604051602081830303815290604052805190602001206120eb565b61170f5760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c697374000060448201526064016109f2565b33600090815260116020526040902054600f5460ff16156117425760405162461bcd60e51b81526004016109f290612c85565b600f5462010000900460ff1661178e5760405162461bcd60e51b8152602060048201526011602482015270141c995cd85b19481a185cc8195b991959607a1b60448201526064016109f2565b600e5461179b8683612d95565b11156117e95760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016109f2565b84600b546117f79190612dc1565b3410156118165760405162461bcd60e51b81526004016109f290612d3d565b3360009081526011602052604081208054879290611835908490612d95565b9091555061184590503386611ed5565b50505050505050565b611859848484611b8e565b61186584848484612101565b6118815760405162461bcd60e51b81526004016109f290612cea565b50505050565b6007546001600160a01b031633146118b15760405162461bcd60e51b81526004016109f290612c50565b601055565b60606118c3826000541190565b6119275760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109f2565b600f54610100900460ff166119c857600a805461194390612e3a565b80601f016020809104026020016040519081016040528092919081815260200182805461196f90612e3a565b80156119bc5780601f10611991576101008083540402835291602001916119bc565b820191906000526020600020905b81548152906001019060200180831161199f57829003601f168201915b50505050509050919050565b60006119d261220f565b905060008151116119f25760405180602001604052806000815250611a20565b806119fc8461221e565b6009604051602001611a1093929190612aca565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314611a515760405162461bcd60e51b81526004016109f290612c50565b600f80549115156101000261ff0019909216919091179055565b6007546001600160a01b03163314611a955760405162461bcd60e51b81526004016109f290612c50565b600e55565b6007546001600160a01b03163314611ac45760405162461bcd60e51b81526004016109f290612c50565b6001600160a01b038116611b295760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109f2565b610e0781612099565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611b9982611eef565b80519091506000906001600160a01b0316336001600160a01b03161480611bd0575033611bc584610987565b6001600160a01b0316145b80611be257508151611be2903361083a565b905080611c4c5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016109f2565b846001600160a01b031682600001516001600160a01b031614611cc05760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016109f2565b6001600160a01b038416611d245760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016109f2565b611d346000848460000151611b32565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b95909216949094021790925590611df9908590612d95565b6000818152600360205260409020549091506001600160a01b0316611e8b57611e23816000541190565b15611e8b5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610b6c82826040518060200160405280600081525061231c565b6040805180820190915260008082526020820152611f0e826000541190565b611f6d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016109f2565b60007f00000000000000000000000000000000000000000000000000000000000000008310611fce57611fc07f000000000000000000000000000000000000000000000000000000000000000084612de0565b611fcb906001612d95565b90505b825b818110612038576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561202557949350505050565b508061203081612e23565b915050611fd0565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016109f2565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826120f88584612653565b14949350505050565b60006001600160a01b0384163b1561220357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612145903390899088908890600401612b8e565b602060405180830381600087803b15801561215f57600080fd5b505af192505050801561218f575060408051601f3d908101601f1916820190925261218c91810190612a1f565b60015b6121e9573d8080156121bd576040519150601f19603f3d011682016040523d82523d6000602084013e6121c2565b606091505b5080516121e15760405162461bcd60e51b81526004016109f290612cea565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612207565b5060015b949350505050565b60606008805461090490612e3a565b6060816122425750506040805180820190915260018152600360fc1b602082015290565b8160005b811561226c578061225681612e75565b91506122659050600a83612dad565b9150612246565b60008167ffffffffffffffff81111561228757612287612ee6565b6040519080825280601f01601f1916602001820160405280156122b1576020820181803683370190505b5090505b8415612207576122c6600183612de0565b91506122d3600a86612e90565b6122de906030612d95565b60f81b8183815181106122f3576122f3612ed0565b60200101906001600160f81b031916908160001a905350612315600a86612dad565b94506122b5565b6000546001600160a01b03841661237f5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016109f2565b61238a816000541190565b156123d75760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016109f2565b7f00000000000000000000000000000000000000000000000000000000000000008311156124525760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016109f2565b600083116124ae5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b60648201526084016109f2565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061250a908790612d6a565b6001600160801b031681526020018583602001516125289190612d6a565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156126485760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461260c6000888488612101565b6126285760405162461bcd60e51b81526004016109f290612cea565b8161263281612e75565b925050808061264090612e75565b9150506125bf565b506000819055611ecd565b600081815b84518110156126bf57600085828151811061267557612675612ed0565b6020026020010151905080831161269b57600083815260208290526040902092506126ac565b600081815260208490526040902092505b50806126b781612e75565b915050612658565b509392505050565b8280546126d390612e3a565b90600052602060002090601f0160209004810192826126f5576000855561273b565b82601f1061270e57805160ff191683800117855561273b565b8280016001018555821561273b579182015b8281111561273b578251825591602001919060010190612720565b506112789291505b808211156112785760008155600101612743565b600067ffffffffffffffff8084111561277257612772612ee6565b604051601f8501601f19908116603f0116810190828211818310171561279a5761279a612ee6565b816040528093508581528686860111156127b357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146127e457600080fd5b919050565b803580151581146127e457600080fd5b60006020828403121561280b57600080fd5b611a20826127cd565b6000806040838503121561282757600080fd5b612830836127cd565b915061283e602084016127cd565b90509250929050565b60008060006060848603121561285c57600080fd5b612865846127cd565b9250612873602085016127cd565b9150604084013590509250925092565b6000806000806080858703121561289957600080fd5b6128a2856127cd565b93506128b0602086016127cd565b925060408501359150606085013567ffffffffffffffff8111156128d357600080fd5b8501601f810187136128e457600080fd5b6128f387823560208401612757565b91505092959194509250565b6000806040838503121561291257600080fd5b61291b836127cd565b915061283e602084016127e9565b6000806040838503121561293c57600080fd5b612945836127cd565b946020939093013593505050565b60008060006040848603121561296857600080fd5b833567ffffffffffffffff8082111561298057600080fd5b818601915086601f83011261299457600080fd5b8135818111156129a357600080fd5b8760208260051b85010111156129b857600080fd5b6020928301989097509590910135949350505050565b6000602082840312156129e057600080fd5b611a20826127e9565b6000602082840312156129fb57600080fd5b5035919050565b600060208284031215612a1457600080fd5b8135611a2081612efc565b600060208284031215612a3157600080fd5b8151611a2081612efc565b600060208284031215612a4e57600080fd5b813567ffffffffffffffff811115612a6557600080fd5b8201601f81018413612a7657600080fd5b61220784823560208401612757565b600060208284031215612a9757600080fd5b5051919050565b60008151808452612ab6816020860160208601612df7565b601f01601f19169290920160200192915050565b600084516020612add8285838a01612df7565b855191840191612af08184848a01612df7565b8554920191600090600181811c9080831680612b0d57607f831692505b858310811415612b2b57634e487b7160e01b85526022600452602485fd5b808015612b3f5760018114612b5057612b7d565b60ff19851688528388019550612b7d565b60008b81526020902060005b85811015612b755781548a820152908401908801612b5c565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612bc190830184612a9e565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612c0357835183529284019291840191600101612be7565b50909695505050505050565b602081526000611a206020830184612a9e565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f54686520636f6e74726163742069732070617573656421000000000000000000604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b60006001600160801b03808316818516808303821115612d8c57612d8c612ea4565b01949350505050565b60008219821115612da857612da8612ea4565b500190565b600082612dbc57612dbc612eba565b500490565b6000816000190483118215151615612ddb57612ddb612ea4565b500290565b600082821015612df257612df2612ea4565b500390565b60005b83811015612e12578181015183820152602001612dfa565b838111156118815750506000910152565b600081612e3257612e32612ea4565b506000190190565b600181811c90821680612e4e57607f821691505b60208210811415612e6f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e8957612e89612ea4565b5060010190565b600082612e9f57612e9f612eba565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e0757600080fdfea2646970667358221220e962f8c239286f89504bb5f2199e470824f4b8d4f42f832472202c8b9fa1ef4f64736f6c6343000807003368747470733a2f2f3078636174732e6d7970696e6174612e636c6f75642f697066732f516d51514a5638483636444b5477644851434d77387746754e78556f3771566d51514a6a7367346e6337466f77732f68696464656e2e6a736f6e

Deployed Bytecode

0x6080604052600436106102935760003560e01c80635503a0e81161015a578063a22cb465116100c1578063c87b56dd1161007a578063c87b56dd146107a9578063d5abeb01146107c9578063e0a80853146107df578063e2dfc039146107ff578063e985e9c51461081f578063f2fde38b1461086857600080fd5b8063a22cb4651461070b578063a45ba8e71461072b578063a6d612f914610740578063aa98e0c614610753578063b88d4fde14610769578063bd32fb661461078957600080fd5b80637ec4a659116101135780637ec4a6591461066f5780638da5cb5b1461068f57806394354fd0146106ad57806395d89b41146106c35780639c70b512146106d8578063a0712d68146106f857600080fd5b80635503a0e8146105d65780635c975abb146105eb57806362b99ad4146106055780636352211e1461061a57806370a082311461063a578063715018a61461065a57600080fd5b80632f745c59116101fe578063438b6300116101b7578063438b63001461051757806344a0d68a146105445780634b3ea934146105645780634f6ccce7146105775780634fdd43cb1461059757806351830227146105b757600080fd5b80632f745c5914610445578063388960a7146104655780633c952764146104a25780633ccfd60b146104c2578063408cbf94146104d757806342842e0e146104f757600080fd5b806316c38b3c1161025057806316c38b3c1461038d57806318160ddd146103ad57806318cae269146103c25780632063064e146103ef57806323b872dd146104055780632cdf09ba1461042557600080fd5b806301ffc9a71461029857806306fdde03146102cd578063081812fc146102ef578063095ea7b31461032757806313faede61461034957806316ba10e01461036d575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612a02565b610888565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e26108f5565b6040516102c49190612c0f565b3480156102fb57600080fd5b5061030f61030a3660046129e9565b610987565b6040516001600160a01b0390911681526020016102c4565b34801561033357600080fd5b50610347610342366004612929565b610a17565b005b34801561035557600080fd5b5061035f600b5481565b6040519081526020016102c4565b34801561037957600080fd5b50610347610388366004612a3c565b610b2f565b34801561039957600080fd5b506103476103a83660046129ce565b610b70565b3480156103b957600080fd5b5060005461035f565b3480156103ce57600080fd5b5061035f6103dd3660046127f9565b60116020526000908152604090205481565b3480156103fb57600080fd5b5061035f600e5481565b34801561041157600080fd5b50610347610420366004612847565b610bad565b34801561043157600080fd5b5060125461030f906001600160a01b031681565b34801561045157600080fd5b5061035f610460366004612929565b610bb8565b34801561047157600080fd5b506103476104803660046127f9565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b3480156104ae57600080fd5b506103476104bd3660046129ce565b610d26565b3480156104ce57600080fd5b50610347610d6c565b3480156104e357600080fd5b506103476104f2366004612929565b610e0a565b34801561050357600080fd5b50610347610512366004612847565b610e9c565b34801561052357600080fd5b506105376105323660046127f9565b610eb7565b6040516102c49190612bcb565b34801561055057600080fd5b5061034761055f3660046129e9565b610f97565b6103476105723660046129e9565b610fc6565b34801561058357600080fd5b5061035f6105923660046129e9565b61121a565b3480156105a357600080fd5b506103476105b2366004612a3c565b61127c565b3480156105c357600080fd5b50600f546102b890610100900460ff1681565b3480156105e257600080fd5b506102e26112b9565b3480156105f757600080fd5b50600f546102b89060ff1681565b34801561061157600080fd5b506102e2611347565b34801561062657600080fd5b5061030f6106353660046129e9565b611354565b34801561064657600080fd5b5061035f6106553660046127f9565b611366565b34801561066657600080fd5b506103476113f7565b34801561067b57600080fd5b5061034761068a366004612a3c565b61142d565b34801561069b57600080fd5b506007546001600160a01b031661030f565b3480156106b957600080fd5b5061035f600d5481565b3480156106cf57600080fd5b506102e261146a565b3480156106e457600080fd5b50600f546102b89062010000900460ff1681565b6103476107063660046129e9565b611479565b34801561071757600080fd5b506103476107263660046128ff565b61157a565b34801561073757600080fd5b506102e261163f565b61034761074e366004612953565b61164c565b34801561075f57600080fd5b5061035f60105481565b34801561077557600080fd5b50610347610784366004612883565b61184e565b34801561079557600080fd5b506103476107a43660046129e9565b611887565b3480156107b557600080fd5b506102e26107c43660046129e9565b6118b6565b3480156107d557600080fd5b5061035f600c5481565b3480156107eb57600080fd5b506103476107fa3660046129ce565b611a27565b34801561080b57600080fd5b5061034761081a3660046129e9565b611a6b565b34801561082b57600080fd5b506102b861083a366004612814565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561087457600080fd5b506103476108833660046127f9565b611a9a565b60006001600160e01b031982166380ac58cd60e01b14806108b957506001600160e01b03198216635b5e139f60e01b145b806108d457506001600160e01b0319821663780e9d6360e01b145b806108ef57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461090490612e3a565b80601f016020809104026020016040519081016040528092919081815260200182805461093090612e3a565b801561097d5780601f106109525761010080835404028352916020019161097d565b820191906000526020600020905b81548152906001019060200180831161096057829003601f168201915b5050505050905090565b6000610994826000541190565b6109fb5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610a2282611354565b9050806001600160a01b0316836001600160a01b03161415610a915760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016109f2565b336001600160a01b0382161480610aad5750610aad813361083a565b610b1f5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016109f2565b610b2a838383611b32565b505050565b6007546001600160a01b03163314610b595760405162461bcd60e51b81526004016109f290612c50565b8051610b6c9060099060208401906126c7565b5050565b6007546001600160a01b03163314610b9a5760405162461bcd60e51b81526004016109f290612c50565b600f805460ff1916911515919091179055565b610b2a838383611b8e565b6000610bc383611366565b8210610c1c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016109f2565b600080549080805b83811015610cc6576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c7757805192505b876001600160a01b0316836001600160a01b03161415610cb35786841415610ca5575093506108ef92505050565b83610caf81612e75565b9450505b5080610cbe81612e75565b915050610c24565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016109f2565b6007546001600160a01b03163314610d505760405162461bcd60e51b81526004016109f290612c50565b600f8054911515620100000262ff000019909216919091179055565b6007546001600160a01b03163314610d965760405162461bcd60e51b81526004016109f290612c50565b6000610daa6007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610df4576040519150601f19603f3d011682016040523d82523d6000602084013e610df9565b606091505b5050905080610e0757600080fd5b50565b80600081118015610e1d5750600d548111155b610e395760405162461bcd60e51b81526004016109f290612c22565b600c5481600054610e4a9190612d95565b1115610e685760405162461bcd60e51b81526004016109f290612cbc565b6007546001600160a01b03163314610e925760405162461bcd60e51b81526004016109f290612c50565b610b2a8383611ed5565b610b2a8383836040518060200160405280600081525061184e565b60606000610ec483611366565b905060008167ffffffffffffffff811115610ee157610ee1612ee6565b604051908082528060200260200182016040528015610f0a578160200160208202803683370190505b5090506000805b8381108015610f225750600c548211155b15610f8d576000610f3283611354565b9050866001600160a01b0316816001600160a01b03161415610f7a5782848381518110610f6157610f61612ed0565b602090810291909101015281610f7681612e75565b9250505b82610f8481612e75565b93505050610f11565b5090949350505050565b6007546001600160a01b03163314610fc15760405162461bcd60e51b81526004016109f290612c50565b600b55565b80600081118015610fd95750600d548111155b610ff55760405162461bcd60e51b81526004016109f290612c22565b600c54816000546110069190612d95565b11156110245760405162461bcd60e51b81526004016109f290612cbc565b33600090815260116020526040902054600f5460ff16156110575760405162461bcd60e51b81526004016109f290612c85565b600f5462010000900460ff166110a35760405162461bcd60e51b8152602060048201526011602482015270141c995cd85b19481a185cc8195b991959607a1b60448201526064016109f2565b6012546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156110e757600080fd5b505afa1580156110fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061111f9190612a85565b116111635760405162461bcd60e51b81526020600482015260146024820152733cb7ba9030b932903737ba1030903437b63232b960611b60448201526064016109f2565b600e546111708483612d95565b11156111be5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016109f2565b82600b546111cc9190612dc1565b3410156111eb5760405162461bcd60e51b81526004016109f290612d3d565b336000908152601160205260408120805485929061120a908490612d95565b90915550610b2a90503384611ed5565b6000805482106112785760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016109f2565b5090565b6007546001600160a01b031633146112a65760405162461bcd60e51b81526004016109f290612c50565b8051610b6c90600a9060208401906126c7565b600980546112c690612e3a565b80601f01602080910402602001604051908101604052809291908181526020018280546112f290612e3a565b801561133f5780601f106113145761010080835404028352916020019161133f565b820191906000526020600020905b81548152906001019060200180831161132257829003601f168201915b505050505081565b600880546112c690612e3a565b600061135f82611eef565b5192915050565b60006001600160a01b0382166113d25760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016109f2565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146114215760405162461bcd60e51b81526004016109f290612c50565b61142b6000612099565b565b6007546001600160a01b031633146114575760405162461bcd60e51b81526004016109f290612c50565b8051610b6c9060089060208401906126c7565b60606002805461090490612e3a565b8060008111801561148c5750600d548111155b6114a85760405162461bcd60e51b81526004016109f290612c22565b600c54816000546114b99190612d95565b11156114d75760405162461bcd60e51b81526004016109f290612cbc565b600f5460ff16156114fa5760405162461bcd60e51b81526004016109f290612c85565b600f5462010000900460ff16156115435760405162461bcd60e51b815260206004820152600d60248201526c283932b9b0b6329034b99037b760991b60448201526064016109f2565b81600b546115519190612dc1565b3410156115705760405162461bcd60e51b81526004016109f290612d3d565b610b6c3383611ed5565b6001600160a01b0382163314156115d35760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016109f2565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a80546112c690612e3a565b82826010546116c3838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b1660208201528592506034019050604051602081830303815290604052805190602001206120eb565b61170f5760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c697374000060448201526064016109f2565b33600090815260116020526040902054600f5460ff16156117425760405162461bcd60e51b81526004016109f290612c85565b600f5462010000900460ff1661178e5760405162461bcd60e51b8152602060048201526011602482015270141c995cd85b19481a185cc8195b991959607a1b60448201526064016109f2565b600e5461179b8683612d95565b11156117e95760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016109f2565b84600b546117f79190612dc1565b3410156118165760405162461bcd60e51b81526004016109f290612d3d565b3360009081526011602052604081208054879290611835908490612d95565b9091555061184590503386611ed5565b50505050505050565b611859848484611b8e565b61186584848484612101565b6118815760405162461bcd60e51b81526004016109f290612cea565b50505050565b6007546001600160a01b031633146118b15760405162461bcd60e51b81526004016109f290612c50565b601055565b60606118c3826000541190565b6119275760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109f2565b600f54610100900460ff166119c857600a805461194390612e3a565b80601f016020809104026020016040519081016040528092919081815260200182805461196f90612e3a565b80156119bc5780601f10611991576101008083540402835291602001916119bc565b820191906000526020600020905b81548152906001019060200180831161199f57829003601f168201915b50505050509050919050565b60006119d261220f565b905060008151116119f25760405180602001604052806000815250611a20565b806119fc8461221e565b6009604051602001611a1093929190612aca565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314611a515760405162461bcd60e51b81526004016109f290612c50565b600f80549115156101000261ff0019909216919091179055565b6007546001600160a01b03163314611a955760405162461bcd60e51b81526004016109f290612c50565b600e55565b6007546001600160a01b03163314611ac45760405162461bcd60e51b81526004016109f290612c50565b6001600160a01b038116611b295760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109f2565b610e0781612099565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611b9982611eef565b80519091506000906001600160a01b0316336001600160a01b03161480611bd0575033611bc584610987565b6001600160a01b0316145b80611be257508151611be2903361083a565b905080611c4c5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016109f2565b846001600160a01b031682600001516001600160a01b031614611cc05760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016109f2565b6001600160a01b038416611d245760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016109f2565b611d346000848460000151611b32565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b95909216949094021790925590611df9908590612d95565b6000818152600360205260409020549091506001600160a01b0316611e8b57611e23816000541190565b15611e8b5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610b6c82826040518060200160405280600081525061231c565b6040805180820190915260008082526020820152611f0e826000541190565b611f6d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016109f2565b60007f00000000000000000000000000000000000000000000000000000000000000098310611fce57611fc07f000000000000000000000000000000000000000000000000000000000000000984612de0565b611fcb906001612d95565b90505b825b818110612038576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561202557949350505050565b508061203081612e23565b915050611fd0565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016109f2565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826120f88584612653565b14949350505050565b60006001600160a01b0384163b1561220357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612145903390899088908890600401612b8e565b602060405180830381600087803b15801561215f57600080fd5b505af192505050801561218f575060408051601f3d908101601f1916820190925261218c91810190612a1f565b60015b6121e9573d8080156121bd576040519150601f19603f3d011682016040523d82523d6000602084013e6121c2565b606091505b5080516121e15760405162461bcd60e51b81526004016109f290612cea565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612207565b5060015b949350505050565b60606008805461090490612e3a565b6060816122425750506040805180820190915260018152600360fc1b602082015290565b8160005b811561226c578061225681612e75565b91506122659050600a83612dad565b9150612246565b60008167ffffffffffffffff81111561228757612287612ee6565b6040519080825280601f01601f1916602001820160405280156122b1576020820181803683370190505b5090505b8415612207576122c6600183612de0565b91506122d3600a86612e90565b6122de906030612d95565b60f81b8183815181106122f3576122f3612ed0565b60200101906001600160f81b031916908160001a905350612315600a86612dad565b94506122b5565b6000546001600160a01b03841661237f5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016109f2565b61238a816000541190565b156123d75760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016109f2565b7f00000000000000000000000000000000000000000000000000000000000000098311156124525760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016109f2565b600083116124ae5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b60648201526084016109f2565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061250a908790612d6a565b6001600160801b031681526020018583602001516125289190612d6a565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156126485760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461260c6000888488612101565b6126285760405162461bcd60e51b81526004016109f290612cea565b8161263281612e75565b925050808061264090612e75565b9150506125bf565b506000819055611ecd565b600081815b84518110156126bf57600085828151811061267557612675612ed0565b6020026020010151905080831161269b57600083815260208290526040902092506126ac565b600081815260208490526040902092505b50806126b781612e75565b915050612658565b509392505050565b8280546126d390612e3a565b90600052602060002090601f0160209004810192826126f5576000855561273b565b82601f1061270e57805160ff191683800117855561273b565b8280016001018555821561273b579182015b8281111561273b578251825591602001919060010190612720565b506112789291505b808211156112785760008155600101612743565b600067ffffffffffffffff8084111561277257612772612ee6565b604051601f8501601f19908116603f0116810190828211818310171561279a5761279a612ee6565b816040528093508581528686860111156127b357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146127e457600080fd5b919050565b803580151581146127e457600080fd5b60006020828403121561280b57600080fd5b611a20826127cd565b6000806040838503121561282757600080fd5b612830836127cd565b915061283e602084016127cd565b90509250929050565b60008060006060848603121561285c57600080fd5b612865846127cd565b9250612873602085016127cd565b9150604084013590509250925092565b6000806000806080858703121561289957600080fd5b6128a2856127cd565b93506128b0602086016127cd565b925060408501359150606085013567ffffffffffffffff8111156128d357600080fd5b8501601f810187136128e457600080fd5b6128f387823560208401612757565b91505092959194509250565b6000806040838503121561291257600080fd5b61291b836127cd565b915061283e602084016127e9565b6000806040838503121561293c57600080fd5b612945836127cd565b946020939093013593505050565b60008060006040848603121561296857600080fd5b833567ffffffffffffffff8082111561298057600080fd5b818601915086601f83011261299457600080fd5b8135818111156129a357600080fd5b8760208260051b85010111156129b857600080fd5b6020928301989097509590910135949350505050565b6000602082840312156129e057600080fd5b611a20826127e9565b6000602082840312156129fb57600080fd5b5035919050565b600060208284031215612a1457600080fd5b8135611a2081612efc565b600060208284031215612a3157600080fd5b8151611a2081612efc565b600060208284031215612a4e57600080fd5b813567ffffffffffffffff811115612a6557600080fd5b8201601f81018413612a7657600080fd5b61220784823560208401612757565b600060208284031215612a9757600080fd5b5051919050565b60008151808452612ab6816020860160208601612df7565b601f01601f19169290920160200192915050565b600084516020612add8285838a01612df7565b855191840191612af08184848a01612df7565b8554920191600090600181811c9080831680612b0d57607f831692505b858310811415612b2b57634e487b7160e01b85526022600452602485fd5b808015612b3f5760018114612b5057612b7d565b60ff19851688528388019550612b7d565b60008b81526020902060005b85811015612b755781548a820152908401908801612b5c565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612bc190830184612a9e565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612c0357835183529284019291840191600101612be7565b50909695505050505050565b602081526000611a206020830184612a9e565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f54686520636f6e74726163742069732070617573656421000000000000000000604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b60006001600160801b03808316818516808303821115612d8c57612d8c612ea4565b01949350505050565b60008219821115612da857612da8612ea4565b500190565b600082612dbc57612dbc612eba565b500490565b6000816000190483118215151615612ddb57612ddb612ea4565b500290565b600082821015612df257612df2612ea4565b500390565b60005b83811015612e12578181015183820152602001612dfa565b838111156118815750506000910152565b600081612e3257612e32612ea4565b506000190190565b600181811c90821680612e4e57607f821691505b60208210811415612e6f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e8957612e89612ea4565b5060010190565b600082612e9f57612e9f612eba565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e0757600080fdfea2646970667358221220e962f8c239286f89504bb5f2199e470824f4b8d4f42f832472202c8b9fa1ef4f64736f6c63430008070033

Deployed Bytecode Sourcemap

41722:5545:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29335:372;;;;;;;;;;-1:-1:-1;29335:372:0;;;;;:::i;:::-;;:::i;:::-;;;9109:14:1;;9102:22;9084:41;;9072:2;9057:18;29335:372:0;;;;;;;;31140:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32701:214::-;;;;;;;;;;-1:-1:-1;32701:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7770:32:1;;;7752:51;;7740:2;7725:18;32701:214:0;7606:203:1;32222:413:0;;;;;;;;;;-1:-1:-1;32222:413:0;;;;;:::i;:::-;;:::i;:::-;;41905:32;;;;;;;;;;;;;;;;;;;9282:25:1;;;9270:2;9255:18;41905:32:0;9136:177:1;46706:100:0;;;;;;;;;;-1:-1:-1;46706:100:0;;;;;:::i;:::-;;:::i;46812:77::-;;;;;;;;;;-1:-1:-1;46812:77:0;;;;;:::i;:::-;;:::i;27776:100::-;;;;;;;;;;-1:-1:-1;27829:7:0;27856:12;27776:100;;42209:55;;;;;;;;;;-1:-1:-1;42209:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;42020:39;;;;;;;;;;;;;;;;33577:162;;;;;;;;;;-1:-1:-1;33577:162:0;;;;;:::i;:::-;;:::i;42271:22::-;;;;;;;;;;-1:-1:-1;42271:22:0;;;;-1:-1:-1;;;;;42271:22:0;;;28440:823;;;;;;;;;;-1:-1:-1;28440:823:0;;;;;:::i;:::-;;:::i;46257:85::-;;;;;;;;;;-1:-1:-1;46257:85:0;;;;;:::i;:::-;46309:7;:27;;-1:-1:-1;;;;;;46309:27:0;-1:-1:-1;;;;;46309:27:0;;;;;;;;;;46257:85;46076:95;;;;;;;;;;-1:-1:-1;46076:95:0;;;;;:::i;:::-;;:::i;46895:137::-;;;;;;;;;;;;;:::i;44582:138::-;;;;;;;;;;-1:-1:-1;44582:138:0;;;;;:::i;:::-;;:::i;33810:177::-;;;;;;;;;;-1:-1:-1;33810:177:0;;;;;:::i;:::-;;:::i;44726:635::-;;;;;;;;;;-1:-1:-1;44726:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46177:74::-;;;;;;;;;;-1:-1:-1;46177:74:0;;;;;:::i;:::-;;:::i;43381:599::-;;;;;;:::i;:::-;;:::i;27953:187::-;;;;;;;;;;-1:-1:-1;27953:187:0;;;;;:::i;:::-;;:::i;46348:132::-;;;;;;;;;;-1:-1:-1;46348:132:0;;;;;:::i;:::-;;:::i;42096:28::-;;;;;;;;;;-1:-1:-1;42096:28:0;;;;;;;;;;;41827:33;;;;;;;;;;;;;:::i;42066:25::-;;;;;;;;;;-1:-1:-1;42066:25:0;;;;;;;;41794:28;;;;;;;;;;;;;:::i;30949:124::-;;;;;;;;;;-1:-1:-1;30949:124:0;;;;;:::i;:::-;;:::i;29771:221::-;;;;;;;;;;-1:-1:-1;29771:221:0;;;;;:::i;:::-;;:::i;4711:103::-;;;;;;;;;;;;;:::i;46600:100::-;;;;;;;;;;-1:-1:-1;46600:100:0;;;;;:::i;:::-;;:::i;4060:87::-;;;;;;;;;;-1:-1:-1;4133:6:0;;-1:-1:-1;;;;;4133:6:0;4060:87;;41978:37;;;;;;;;;;;;;;;;31309:104;;;;;;;;;;;;;:::i;42129:34::-;;;;;;;;;;-1:-1:-1;42129:34:0;;;;;;;;;;;43079:296;;;;;;:::i;:::-;;:::i;32987:288::-;;;;;;;;;;-1:-1:-1;32987:288:0;;;;;:::i;:::-;;:::i;41865:31::-;;;;;;;;;;;;;:::i;43986:588::-;;;;;;:::i;:::-;;:::i;42170:34::-;;;;;;;;;;;;;;;;34058:355;;;;;;;;;;-1:-1:-1;34058:355:0;;;;;:::i;:::-;;:::i;45954:116::-;;;;;;;;;;-1:-1:-1;45954:116:0;;;;;:::i;:::-;;:::i;45367:494::-;;;;;;;;;;-1:-1:-1;45367:494:0;;;;;:::i;:::-;;:::i;41942:31::-;;;;;;;;;;;;;;;;45867:81;;;;;;;;;;-1:-1:-1;45867:81:0;;;;;:::i;:::-;;:::i;46486:108::-;;;;;;;;;;-1:-1:-1;46486:108:0;;;;;:::i;:::-;;:::i;33346:164::-;;;;;;;;;;-1:-1:-1;33346:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33467:25:0;;;33443:4;33467:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33346:164;4969:201;;;;;;;;;;-1:-1:-1;4969:201:0;;;;;:::i;:::-;;:::i;29335:372::-;29437:4;-1:-1:-1;;;;;;29474:40:0;;-1:-1:-1;;;29474:40:0;;:105;;-1:-1:-1;;;;;;;29531:48:0;;-1:-1:-1;;;29531:48:0;29474:105;:172;;;-1:-1:-1;;;;;;;29596:50:0;;-1:-1:-1;;;29596:50:0;29474:172;:225;;;-1:-1:-1;;;;;;;;;;16601:40:0;;;29663:36;29454:245;29335:372;-1:-1:-1;;29335:372:0:o;31140:100::-;31194:13;31227:5;31220:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31140:100;:::o;32701:214::-;32769:7;32797:16;32805:7;34725:4;34759:12;-1:-1:-1;34749:22:0;34668:111;32797:16;32789:74;;;;-1:-1:-1;;;32789:74:0;;20416:2:1;32789:74:0;;;20398:21:1;20455:2;20435:18;;;20428:30;20494:34;20474:18;;;20467:62;-1:-1:-1;;;20545:18:1;;;20538:43;20598:19;;32789:74:0;;;;;;;;;-1:-1:-1;32883:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32883:24:0;;32701:214::o;32222:413::-;32295:13;32311:24;32327:7;32311:15;:24::i;:::-;32295:40;;32360:5;-1:-1:-1;;;;;32354:11:0;:2;-1:-1:-1;;;;;32354:11:0;;;32346:58;;;;-1:-1:-1;;;32346:58:0;;17249:2:1;32346:58:0;;;17231:21:1;17288:2;17268:18;;;17261:30;17327:34;17307:18;;;17300:62;-1:-1:-1;;;17378:18:1;;;17371:32;17420:19;;32346:58:0;17047:398:1;32346:58:0;2864:10;-1:-1:-1;;;;;32439:21:0;;;;:62;;-1:-1:-1;32464:37:0;32481:5;2864:10;33346:164;:::i;32464:37::-;32417:169;;;;-1:-1:-1;;;32417:169:0;;13410:2:1;32417:169:0;;;13392:21:1;13449:2;13429:18;;;13422:30;13488:34;13468:18;;;13461:62;13559:27;13539:18;;;13532:55;13604:19;;32417:169:0;13208:421:1;32417:169:0;32599:28;32608:2;32612:7;32621:5;32599:8;:28::i;:::-;32284:351;32222:413;;:::o;46706:100::-;4133:6;;-1:-1:-1;;;;;4133:6:0;2864:10;4280:23;4272:68;;;;-1:-1:-1;;;4272:68:0;;;;;;;:::i;:::-;46778:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46706:100:::0;:::o;46812:77::-;4133:6;;-1:-1:-1;;;;;4133:6:0;2864:10;4280:23;4272:68;;;;-1:-1:-1;;;4272:68:0;;;;;;;:::i;:::-;46868:6:::1;:15:::0;;-1:-1:-1;;46868:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46812:77::o;33577:162::-;33703:28;33713:4;33719:2;33723:7;33703:9;:28::i;28440:823::-;28529:7;28565:16;28575:5;28565:9;:16::i;:::-;28557:5;:24;28549:71;;;;-1:-1:-1;;;28549:71:0;;10314:2:1;28549:71:0;;;10296:21:1;10353:2;10333:18;;;10326:30;10392:34;10372:18;;;10365:62;-1:-1:-1;;;10443:18:1;;;10436:32;10485:19;;28549:71:0;10112:398:1;28549:71:0;28631:22;27856:12;;;28631:22;;28763:426;28787:14;28783:1;:18;28763:426;;;28823:31;28857:14;;;:11;:14;;;;;;;;;28823:48;;;;;;;;;-1:-1:-1;;;;;28823:48:0;;;;;-1:-1:-1;;;28823:48:0;;;;;;;;;;;;28890:28;28886:103;;28959:14;;;-1:-1:-1;28886:103:0;29028:5;-1:-1:-1;;;;;29007:26:0;:17;-1:-1:-1;;;;;29007:26:0;;29003:175;;;29073:5;29058:11;:20;29054:77;;;-1:-1:-1;29110:1:0;-1:-1:-1;29103:8:0;;-1:-1:-1;;;29103:8:0;29054:77;29149:13;;;;:::i;:::-;;;;29003:175;-1:-1:-1;28803:3:0;;;;:::i;:::-;;;;28763:426;;;-1:-1:-1;29199:56:0;;-1:-1:-1;;;29199:56:0;;19585:2:1;29199:56:0;;;19567:21:1;19624:2;19604:18;;;19597:30;19663:34;19643:18;;;19636:62;-1:-1:-1;;;19714:18:1;;;19707:44;19768:19;;29199:56:0;19383:410:1;46076:95:0;4133:6;;-1:-1:-1;;;;;4133:6:0;2864:10;4280:23;4272:68;;;;-1:-1:-1;;;4272:68:0;;;;;;;:::i;:::-;46141:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;46141:24:0;;::::1;::::0;;;::::1;::::0;;46076:95::o;46895:137::-;4133:6;;-1:-1:-1;;;;;4133:6:0;2864:10;4280:23;4272:68;;;;-1:-1:-1;;;4272:68:0;;;;;;;:::i;:::-;46940:7:::1;46961;4133:6:::0;;-1:-1:-1;;;;;4133:6:0;;4060:87;46961:7:::1;-1:-1:-1::0;;;;;46953:21:0::1;46982;46953:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46939:69;;;47023:2;47015:11;;;::::0;::::1;;46932:100;46895:137::o:0;44582:138::-;44657:11;42917:1;42903:11;:15;:52;;;;;42937:18;;42922:11;:33;;42903:52;42895:85;;;;-1:-1:-1;;;42895:85:0;;;;;;;:::i;:::-;43025:9;;43010:11;42995:12;;:26;;;;:::i;:::-;:39;;42987:72;;;;-1:-1:-1;;;42987:72:0;;;;;;;:::i;:::-;4133:6;;-1:-1:-1;;;;;4133:6:0;2864:10;4280:23:::1;4272:68;;;;-1:-1:-1::0;;;4272:68:0::1;;;;;;;:::i;:::-;44687:27:::2;44697:3;44702:11;44687:9;:27::i;33810:177::-:0;33940:39;33957:4;33963:2;33967:7;33940:39;;;;;;;;;;;;:16;:39::i;44726:635::-;44801:16;44829:23;44855:17;44865:6;44855:9;:17::i;:::-;44829:43;;44879:30;44926:15;44912:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44912:30:0;;44879:63;;44949:22;44982:23;45018:309;45043:15;45025;:33;:64;;;;;45080:9;;45062:14;:27;;45025:64;45018:309;;;45100:25;45128:23;45136:14;45128:7;:23::i;:::-;45100:51;;45187:6;-1:-1:-1;;;;;45166:27:0;:17;-1:-1:-1;;;;;45166:27:0;;45162:131;;;45239:14;45206:13;45220:15;45206:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;45266:17;;;;:::i;:::-;;;;45162:131;45303:16;;;;:::i;:::-;;;;45091:236;45018:309;;;-1:-1:-1;45342:13:0;;44726:635;-1:-1:-1;;;;44726:635:0:o;46177:74::-;4133:6;;-1:-1:-1;;;;;4133:6:0;2864:10;4280:23;4272:68;;;;-1:-1:-1;;;4272:68:0;;;;;;;:::i;:::-;46233:4:::1;:12:::0;46177:74::o;43381:599::-;43452:11;42917:1;42903:11;:15;:52;;;;;42937:18;;42922:11;:33;;42903:52;42895:85;;;;-1:-1:-1;;;42895:85:0;;;;;;;:::i;:::-;43025:9;;43010:11;42995:12;;:26;;;;:::i;:::-;:39;;42987:72;;;;-1:-1:-1;;;42987:72:0;;;;;;;:::i;:::-;43520:10:::1;43472:24;43499:32:::0;;;:20:::1;:32;::::0;;;;;43547:6:::1;::::0;::::1;;43546:7;43538:43;;;;-1:-1:-1::0;;;43538:43:0::1;;;;;;;:::i;:::-;43596:15;::::0;;;::::1;;;43588:45;;;::::0;-1:-1:-1;;;43588:45:0;;9968:2:1;43588:45:0::1;::::0;::::1;9950:21:1::0;10007:2;9987:18;;;9980:30;-1:-1:-1;;;10026:18:1;;;10019:47;10083:18;;43588:45:0::1;9766:341:1::0;43588:45:0::1;43648:7;::::0;:29:::1;::::0;-1:-1:-1;;;43648:29:0;;43666:10:::1;43648:29;::::0;::::1;7752:51:1::0;43680:1:0::1;::::0;-1:-1:-1;;;;;43648:7:0::1;::::0;:17:::1;::::0;7725:18:1;;43648:29:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:33;43640:67;;;::::0;-1:-1:-1;;;43640:67:0;;14997:2:1;43640:67:0::1;::::0;::::1;14979:21:1::0;15036:2;15016:18;;;15009:30;-1:-1:-1;;;15055:18:1;;;15048:50;15115:18;;43640:67:0::1;14795:344:1::0;43640:67:0::1;43756:20;::::0;43722:30:::1;43741:11:::0;43722:16;:30:::1;:::i;:::-;:54;;43714:95;;;::::0;-1:-1:-1;;;43714:95:0;;11884:2:1;43714:95:0::1;::::0;::::1;11866:21:1::0;11923:2;11903:18;;;11896:30;11962;11942:18;;;11935:58;12010:18;;43714:95:0::1;11682:352:1::0;43714:95:0::1;43844:11;43837:4;;:18;;;;:::i;:::-;43824:9;:31;;43816:63;;;;-1:-1:-1::0;;;43816:63:0::1;;;;;;;:::i;:::-;43909:10;43888:32;::::0;;;:20:::1;:32;::::0;;;;:45;;43922:11;;43888:32;:45:::1;::::0;43922:11;;43888:45:::1;:::i;:::-;::::0;;;-1:-1:-1;43940:34:0::1;::::0;-1:-1:-1;43950:10:0::1;43962:11:::0;43940:9:::1;:34::i;27953:187::-:0;28020:7;27856:12;;28048:5;:21;28040:69;;;;-1:-1:-1;;;28040:69:0;;12241:2:1;28040:69:0;;;12223:21:1;12280:2;12260:18;;;12253:30;12319:34;12299:18;;;12292:62;-1:-1:-1;;;12370:18:1;;;12363:33;12413:19;;28040:69:0;12039:399:1;28040:69:0;-1:-1:-1;28127:5:0;27953:187::o;46348:132::-;4133:6;;-1:-1:-1;;;;;4133:6:0;2864:10;4280:23;4272:68;;;;-1:-1:-1;;;4272:68:0;;;;;;;:::i;:::-;46436:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;41827:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41794:28::-;;;;;;;:::i;30949:124::-;31013:7;31040:20;31052:7;31040:11;:20::i;:::-;:25;;30949:124;-1:-1:-1;;30949:124:0:o;29771:221::-;29835:7;-1:-1:-1;;;;;29863:19:0;;29855:75;;;;-1:-1:-1;;;29855:75:0;;14178:2:1;29855:75:0;;;14160:21:1;14217:2;14197:18;;;14190:30;14256:34;14236:18;;;14229:62;-1:-1:-1;;;14307:18:1;;;14300:41;14358:19;;29855:75:0;13976:407:1;29855:75:0;-1:-1:-1;;;;;;29956:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;29956:27:0;;29771:221::o;4711:103::-;4133:6;;-1:-1:-1;;;;;4133:6:0;2864:10;4280:23;4272:68;;;;-1:-1:-1;;;4272:68:0;;;;;;;:::i;:::-;4776:30:::1;4803:1;4776:18;:30::i;:::-;4711:103::o:0;46600:100::-;4133:6;;-1:-1:-1;;;;;4133:6:0;2864:10;4280:23;4272:68;;;;-1:-1:-1;;;4272:68:0;;;;;;;:::i;:::-;46672:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;31309:104::-:0;31365:13;31398:7;31391:14;;;;;:::i;43079:296::-;43144:11;42917:1;42903:11;:15;:52;;;;;42937:18;;42922:11;:33;;42903:52;42895:85;;;;-1:-1:-1;;;42895:85:0;;;;;;;:::i;:::-;43025:9;;43010:11;42995:12;;:26;;;;:::i;:::-;:39;;42987:72;;;;-1:-1:-1;;;42987:72:0;;;;;;;:::i;:::-;43173:6:::1;::::0;::::1;;43172:7;43164:43;;;;-1:-1:-1::0;;;43164:43:0::1;;;;;;;:::i;:::-;43223:15;::::0;;;::::1;;;43222:16;43214:42;;;::::0;-1:-1:-1;;;43214:42:0;;13836:2:1;43214:42:0::1;::::0;::::1;13818:21:1::0;13875:2;13855:18;;;13848:30;-1:-1:-1;;;13894:18:1;;;13887:43;13947:18;;43214:42:0::1;13634:337:1::0;43214:42:0::1;43291:11;43284:4;;:18;;;;:::i;:::-;43271:9;:31;;43263:63;;;;-1:-1:-1::0;;;43263:63:0::1;;;;;;;:::i;:::-;43335:34;43345:10;43357:11;43335:9;:34::i;32987:288::-:0;-1:-1:-1;;;;;33082:24:0;;2864:10;33082:24;;33074:63;;;;-1:-1:-1;;;33074:63:0;;16475:2:1;33074:63:0;;;16457:21:1;16514:2;16494:18;;;16487:30;16553:28;16533:18;;;16526:56;16599:18;;33074:63:0;16273:350:1;33074:63:0;2864:10;33150:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33150:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33150:53:0;;;;;;;;;;33219:48;;9084:41:1;;;33150:42:0;;2864:10;33219:48;;9057:18:1;33219:48:0;;;;;;;32987:288;;:::o;41865:31::-;;;;;;;:::i;43986:588::-;44096:11;;44109:19;;42645:128;42678:11;;42645:128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;42733:28:0;;-1:-1:-1;;42750:10:0;5779:2:1;5775:15;5771:53;42733:28:0;;;5759:66:1;42704:4:0;;-1:-1:-1;5841:12:1;;;-1:-1:-1;42733:28:0;;;;;;;;;;;;42723:39;;;;;;42645:18;:128::i;:::-;42627:196;;;;-1:-1:-1;;;42627:196:0;;13051:2:1;42627:196:0;;;13033:21:1;13090:2;13070:18;;;13063:30;13129:32;13109:18;;;13102:60;13179:18;;42627:196:0;12849:354:1;42627:196:0;44184:10:::1;44136:24;44163:32:::0;;;:20:::1;:32;::::0;;;;;44211:6:::1;::::0;::::1;;44210:7;44202:43;;;;-1:-1:-1::0;;;44202:43:0::1;;;;;;;:::i;:::-;44260:15;::::0;;;::::1;;;44252:45;;;::::0;-1:-1:-1;;;44252:45:0;;9968:2:1;44252:45:0::1;::::0;::::1;9950:21:1::0;10007:2;9987:18;;;9980:30;-1:-1:-1;;;10026:18:1;;;10019:47;10083:18;;44252:45:0::1;9766:341:1::0;44252:45:0::1;44346:20;::::0;44312:30:::1;44331:11:::0;44312:16;:30:::1;:::i;:::-;:54;;44304:95;;;::::0;-1:-1:-1;;;44304:95:0;;11884:2:1;44304:95:0::1;::::0;::::1;11866:21:1::0;11923:2;11903:18;;;11896:30;11962;11942:18;;;11935:58;12010:18;;44304:95:0::1;11682:352:1::0;44304:95:0::1;44434:11;44427:4;;:18;;;;:::i;:::-;44414:9;:31;;44406:63;;;;-1:-1:-1::0;;;44406:63:0::1;;;;;;;:::i;:::-;44503:10;44482:32;::::0;;;:20:::1;:32;::::0;;;;:45;;44516:11;;44482:32;:45:::1;::::0;44516:11;;44482:45:::1;:::i;:::-;::::0;;;-1:-1:-1;44534:34:0::1;::::0;-1:-1:-1;44544:10:0::1;44556:11:::0;44534:9:::1;:34::i;:::-;44129:445;43986:588:::0;;;;;;:::o;34058:355::-;34217:28;34227:4;34233:2;34237:7;34217:9;:28::i;:::-;34278:48;34301:4;34307:2;34311:7;34320:5;34278:22;:48::i;:::-;34256:149;;;;-1:-1:-1;;;34256:149:0;;;;;;;:::i;:::-;34058:355;;;;:::o;45954:116::-;4133:6;;-1:-1:-1;;;;;4133:6:0;2864:10;4280:23;4272:68;;;;-1:-1:-1;;;4272:68:0;;;;;;;:::i;:::-;46032:19:::1;:32:::0;45954:116::o;45367:494::-;45466:13;45507:17;45515:8;34725:4;34759:12;-1:-1:-1;34749:22:0;34668:111;45507:17;45491:98;;;;-1:-1:-1;;;45491:98:0;;16059:2:1;45491:98:0;;;16041:21:1;16098:2;16078:18;;;16071:30;16137:34;16117:18;;;16110:62;-1:-1:-1;;;16188:18:1;;;16181:45;16243:19;;45491:98:0;15857:411:1;45491:98:0;45602:8;;;;;;;45598:64;;45637:17;45630:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45367:494;;;:::o;45598:64::-;45670:28;45701:10;:8;:10::i;:::-;45670:41;;45756:1;45731:14;45725:28;:32;:130;;;;;;;;;;;;;;;;;45793:14;45809:19;:8;:17;:19::i;:::-;45830:9;45776:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45725:130;45718:137;45367:494;-1:-1:-1;;;45367:494:0:o;45867:81::-;4133:6;;-1:-1:-1;;;;;4133:6:0;2864:10;4280:23;4272:68;;;;-1:-1:-1;;;4272:68:0;;;;;;;:::i;:::-;45925:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;45925:17:0;;::::1;::::0;;;::::1;::::0;;45867:81::o;46486:108::-;4133:6;;-1:-1:-1;;;;;4133:6:0;2864:10;4280:23;4272:68;;;;-1:-1:-1;;;4272:68:0;;;;;;;:::i;:::-;46559:20:::1;:29:::0;46486:108::o;4969:201::-;4133:6;;-1:-1:-1;;;;;4133:6:0;2864:10;4280:23;4272:68;;;;-1:-1:-1;;;4272:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5058:22:0;::::1;5050:73;;;::::0;-1:-1:-1;;;5050:73:0;;10717:2:1;5050:73:0::1;::::0;::::1;10699:21:1::0;10756:2;10736:18;;;10729:30;10795:34;10775:18;;;10768:62;-1:-1:-1;;;10846:18:1;;;10839:36;10892:19;;5050:73:0::1;10515:402:1::0;5050:73:0::1;5134:28;5153:8;5134:18;:28::i;38794:196::-:0;38909:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;38909:29:0;-1:-1:-1;;;;;38909:29:0;;;;;;;;;38954:28;;38909:24;;38954:28;;;;;;;38794:196;;;:::o;36893:1783::-;37008:35;37046:20;37058:7;37046:11;:20::i;:::-;37121:18;;37008:58;;-1:-1:-1;37079:22:0;;-1:-1:-1;;;;;37105:34:0;2864:10;-1:-1:-1;;;;;37105:34:0;;:87;;;-1:-1:-1;2864:10:0;37156:20;37168:7;37156:11;:20::i;:::-;-1:-1:-1;;;;;37156:36:0;;37105:87;:154;;;-1:-1:-1;37226:18:0;;37209:50;;2864:10;33346:164;:::i;37209:50::-;37079:181;;37281:17;37273:80;;;;-1:-1:-1;;;37273:80:0;;16830:2:1;37273:80:0;;;16812:21:1;16869:2;16849:18;;;16842:30;16908:34;16888:18;;;16881:62;-1:-1:-1;;;16959:18:1;;;16952:48;17017:19;;37273:80:0;16628:414:1;37273:80:0;37396:4;-1:-1:-1;;;;;37374:26:0;:13;:18;;;-1:-1:-1;;;;;37374:26:0;;37366:77;;;;-1:-1:-1;;;37366:77:0;;14590:2:1;37366:77:0;;;14572:21:1;14629:2;14609:18;;;14602:30;14668:34;14648:18;;;14641:62;-1:-1:-1;;;14719:18:1;;;14712:36;14765:19;;37366:77:0;14388:402:1;37366:77:0;-1:-1:-1;;;;;37462:16:0;;37454:66;;;;-1:-1:-1;;;37454:66:0;;12645:2:1;37454:66:0;;;12627:21:1;12684:2;12664:18;;;12657:30;12723:34;12703:18;;;12696:62;-1:-1:-1;;;12774:18:1;;;12767:35;12819:19;;37454:66:0;12443:401:1;37454:66:0;37641:49;37658:1;37662:7;37671:13;:18;;;37641:8;:49::i;:::-;-1:-1:-1;;;;;37895:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37895:31:0;;;-1:-1:-1;;;;;37895:31:0;;;-1:-1:-1;;37895:31:0;;;;;;;37941:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37941:29:0;;;;;;;;;;;;;38017:43;;;;;;;;;;38043:15;38017:43;;;;;;;;;;37994:20;;;:11;:20;;;;;;:66;;;;;;;;-1:-1:-1;;;;;;37994:66:0;;;;;;;-1:-1:-1;;;37994:66:0;;;;;;;;;;;;37895:18;38322:11;;37994:20;;38322:11;:::i;:::-;38389:1;38348:24;;;:11;:24;;;;;:29;38300:33;;-1:-1:-1;;;;;;38348:29:0;38344:227;;38412:20;38420:11;34725:4;34759:12;-1:-1:-1;34749:22:0;34668:111;38412:20;38408:152;;;38480:64;;;;;;;;38495:18;;-1:-1:-1;;;;;38480:64:0;;;;;;38515:28;;;;38480:64;;;;;;;;;;-1:-1:-1;38453:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;38453:91:0;-1:-1:-1;;;;;;38453:91:0;;;;;;;;;;;;38408:152;38607:7;38603:2;-1:-1:-1;;;;;38588:27:0;38597:4;-1:-1:-1;;;;;38588:27:0;;;;;;;;;;;38626:42;36997:1679;;;36893:1783;;;:::o;34787:104::-;34856:27;34866:2;34870:8;34856:27;;;;;;;;;;;;:9;:27::i;30237:650::-;-1:-1:-1;;;;;;;;;;;;;;;;;30340:16:0;30348:7;34725:4;34759:12;-1:-1:-1;34749:22:0;34668:111;30340:16;30332:71;;;;-1:-1:-1;;;30332:71:0;;11124:2:1;30332:71:0;;;11106:21:1;11163:2;11143:18;;;11136:30;11202:34;11182:18;;;11175:62;-1:-1:-1;;;11253:18:1;;;11246:40;11303:19;;30332:71:0;10922:406:1;30332:71:0;30416:26;30468:12;30457:7;:23;30453:103;;30518:22;30528:12;30518:7;:22;:::i;:::-;:26;;30543:1;30518:26;:::i;:::-;30497:47;;30453:103;30588:7;30568:242;30605:18;30597:4;:26;30568:242;;30648:31;30682:17;;;:11;:17;;;;;;;;;30648:51;;;;;;;;;-1:-1:-1;;;;;30648:51:0;;;;;-1:-1:-1;;;30648:51:0;;;;;;;;;;;;30718:28;30714:85;;30774:9;30237:650;-1:-1:-1;;;;30237:650:0:o;30714:85::-;-1:-1:-1;30625:6:0;;;;:::i;:::-;;;;30568:242;;;-1:-1:-1;30822:57:0;;-1:-1:-1;;;30822:57:0;;20000:2:1;30822:57:0;;;19982:21:1;20039:2;20019:18;;;20012:30;20078:34;20058:18;;;20051:62;-1:-1:-1;;;20129:18:1;;;20122:45;20184:19;;30822:57:0;19798:411:1;5330:191:0;5423:6;;;-1:-1:-1;;;;;5440:17:0;;;-1:-1:-1;;;;;;5440:17:0;;;;;;;5473:40;;5423:6;;;5440:17;5423:6;;5473:40;;5404:16;;5473:40;5393:128;5330:191;:::o;24231:190::-;24356:4;24409;24380:25;24393:5;24400:4;24380:12;:25::i;:::-;:33;;24231:190;-1:-1:-1;;;;24231:190:0:o;39555:804::-;39710:4;-1:-1:-1;;;;;39731:13:0;;6671:20;6719:8;39727:625;;39767:72;;-1:-1:-1;;;39767:72:0;;-1:-1:-1;;;;;39767:36:0;;;;;:72;;2864:10;;39818:4;;39824:7;;39833:5;;39767:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39767:72:0;;;;;;;;-1:-1:-1;;39767:72:0;;;;;;;;;;;;:::i;:::-;;;39763:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40013:13:0;;40009:273;;40056:61;;-1:-1:-1;;;40056:61:0;;;;;;;:::i;40009:273::-;40232:6;40226:13;40217:6;40213:2;40209:15;40202:38;39763:534;-1:-1:-1;;;;;;39890:55:0;-1:-1:-1;;;39890:55:0;;-1:-1:-1;39883:62:0;;39727:625;-1:-1:-1;40336:4:0;39727:625;39555:804;;;;;;:::o;47160:104::-;47220:13;47249:9;47242:16;;;;;:::i;346:723::-;402:13;623:10;619:53;;-1:-1:-1;;650:10:0;;;;;;;;;;;;-1:-1:-1;;;650:10:0;;;;;346:723::o;619:53::-;697:5;682:12;738:78;745:9;;738:78;;771:8;;;;:::i;:::-;;-1:-1:-1;794:10:0;;-1:-1:-1;802:2:0;794:10;;:::i;:::-;;;738:78;;;826:19;858:6;848:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;848:17:0;;826:39;;876:154;883:10;;876:154;;910:11;920:1;910:11;;:::i;:::-;;-1:-1:-1;979:10:0;987:2;979:5;:10;:::i;:::-;966:24;;:2;:24;:::i;:::-;953:39;;936:6;943;936:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;936:56:0;;;;;;;;-1:-1:-1;1007:11:0;1016:2;1007:11;;:::i;:::-;;;876:154;;35168:1471;35291:20;35314:12;-1:-1:-1;;;;;35345:16:0;;35337:62;;;;-1:-1:-1;;;35337:62:0;;19183:2:1;35337:62:0;;;19165:21:1;19222:2;19202:18;;;19195:30;19261:34;19241:18;;;19234:62;-1:-1:-1;;;19312:18:1;;;19305:31;19353:19;;35337:62:0;18981:397:1;35337:62:0;35544:21;35552:12;34725:4;34759:12;-1:-1:-1;34749:22:0;34668:111;35544:21;35543:22;35535:64;;;;-1:-1:-1;;;35535:64:0;;18825:2:1;35535:64:0;;;18807:21:1;18864:2;18844:18;;;18837:30;18903:31;18883:18;;;18876:59;18952:18;;35535:64:0;18623:353:1;35535:64:0;35630:12;35618:8;:24;;35610:71;;;;-1:-1:-1;;;35610:71:0;;20830:2:1;35610:71:0;;;20812:21:1;20869:2;20849:18;;;20842:30;20908:34;20888:18;;;20881:62;-1:-1:-1;;;20959:18:1;;;20952:32;21001:19;;35610:71:0;20628:398:1;35610:71:0;35711:1;35700:8;:12;35692:60;;;;-1:-1:-1;;;35692:60:0;;18001:2:1;35692:60:0;;;17983:21:1;18040:2;18020:18;;;18013:30;18079:34;18059:18;;;18052:62;-1:-1:-1;;;18130:18:1;;;18123:33;18173:19;;35692:60:0;17799:399:1;35692:60:0;-1:-1:-1;;;;;35872:16:0;;35839:30;35872:16;;;:12;:16;;;;;;;;;35839:49;;;;;;;;;-1:-1:-1;;;;;35839:49:0;;;;;-1:-1:-1;;;35839:49:0;;;;;;;;;;;35918:135;;;;;;;;35944:19;;35839:49;;35918:135;;;35944:39;;35974:8;;35944:39;:::i;:::-;-1:-1:-1;;;;;35918:135:0;;;;;36033:8;35998:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;35918:135:0;;;;;;-1:-1:-1;;;;;35899:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;35899:154:0;;;;;;;;;;;;36092:43;;;;;;;;;;;36118:15;36092:43;;;;;;;;36064:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;36064:71:0;-1:-1:-1;;;;;;36064:71:0;;;;;;;;;;;;;;;;;;36076:12;;36196:325;36220:8;36216:1;:12;36196:325;;;36255:38;;36280:12;;-1:-1:-1;;;;;36255:38:0;;;36272:1;;36255:38;;36272:1;;36255:38;36334:59;36365:1;36369:2;36373:12;36387:5;36334:22;:59::i;:::-;36308:172;;;;-1:-1:-1;;;36308:172:0;;;;;;;:::i;:::-;36495:14;;;;:::i;:::-;;;;36230:3;;;;;:::i;:::-;;;;36196:325;;;-1:-1:-1;36533:12:0;:27;;;36571:60;34058:355;24783:675;24866:7;24909:4;24866:7;24924:497;24948:5;:12;24944:1;:16;24924:497;;;24982:20;25005:5;25011:1;25005:8;;;;;;;;:::i;:::-;;;;;;;24982:31;;25048:12;25032;:28;25028:382;;25534:13;25584:15;;;25620:4;25613:15;;;25667:4;25651:21;;25160:57;;25028:382;;;25534:13;25584:15;;;25620:4;25613:15;;;25667:4;25651:21;;25337:57;;25028:382;-1:-1:-1;24962:3:0;;;;:::i;:::-;;;;24924:497;;;-1:-1:-1;25438:12:0;24783:675;-1:-1:-1;;;24783:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:689::-;3066:6;3074;3082;3135:2;3123:9;3114:7;3110:23;3106:32;3103:52;;;3151:1;3148;3141:12;3103:52;3191:9;3178:23;3220:18;3261:2;3253:6;3250:14;3247:34;;;3277:1;3274;3267:12;3247:34;3315:6;3304:9;3300:22;3290:32;;3360:7;3353:4;3349:2;3345:13;3341:27;3331:55;;3382:1;3379;3372:12;3331:55;3422:2;3409:16;3448:2;3440:6;3437:14;3434:34;;;3464:1;3461;3454:12;3434:34;3519:7;3512:4;3502:6;3499:1;3495:14;3491:2;3487:23;3483:34;3480:47;3477:67;;;3540:1;3537;3530:12;3477:67;3571:4;3563:13;;;;3595:6;;-1:-1:-1;3633:20:1;;;;3620:34;;2971:689;-1:-1:-1;;;;2971:689:1:o;3665:180::-;3721:6;3774:2;3762:9;3753:7;3749:23;3745:32;3742:52;;;3790:1;3787;3780:12;3742:52;3813:26;3829:9;3813:26;:::i;3850:180::-;3909:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:52;;;3978:1;3975;3968:12;3930:52;-1:-1:-1;4001:23:1;;3850:180;-1:-1:-1;3850:180:1:o;4035:245::-;4093:6;4146:2;4134:9;4125:7;4121:23;4117:32;4114:52;;;4162:1;4159;4152:12;4114:52;4201:9;4188:23;4220:30;4244:5;4220:30;:::i;4285:249::-;4354:6;4407:2;4395:9;4386:7;4382:23;4378:32;4375:52;;;4423:1;4420;4413:12;4375:52;4455:9;4449:16;4474:30;4498:5;4474:30;:::i;4539:450::-;4608:6;4661:2;4649:9;4640:7;4636:23;4632:32;4629:52;;;4677:1;4674;4667:12;4629:52;4717:9;4704:23;4750:18;4742:6;4739:30;4736:50;;;4782:1;4779;4772:12;4736:50;4805:22;;4858:4;4850:13;;4846:27;-1:-1:-1;4836:55:1;;4887:1;4884;4877:12;4836:55;4910:73;4975:7;4970:2;4957:16;4952:2;4948;4944:11;4910:73;:::i;5179:184::-;5249:6;5302:2;5290:9;5281:7;5277:23;5273:32;5270:52;;;5318:1;5315;5308:12;5270:52;-1:-1:-1;5341:16:1;;5179:184;-1:-1:-1;5179:184:1:o;5368:257::-;5409:3;5447:5;5441:12;5474:6;5469:3;5462:19;5490:63;5546:6;5539:4;5534:3;5530:14;5523:4;5516:5;5512:16;5490:63;:::i;:::-;5607:2;5586:15;-1:-1:-1;;5582:29:1;5573:39;;;;5614:4;5569:50;;5368:257;-1:-1:-1;;5368:257:1:o;5864:1527::-;6088:3;6126:6;6120:13;6152:4;6165:51;6209:6;6204:3;6199:2;6191:6;6187:15;6165:51;:::i;:::-;6279:13;;6238:16;;;;6301:55;6279:13;6238:16;6323:15;;;6301:55;:::i;:::-;6445:13;;6378:20;;;6418:1;;6505;6527:18;;;;6580;;;;6607:93;;6685:4;6675:8;6671:19;6659:31;;6607:93;6748:2;6738:8;6735:16;6715:18;6712:40;6709:167;;;-1:-1:-1;;;6775:33:1;;6831:4;6828:1;6821:15;6861:4;6782:3;6849:17;6709:167;6892:18;6919:110;;;;7043:1;7038:328;;;;6885:481;;6919:110;-1:-1:-1;;6954:24:1;;6940:39;;6999:20;;;;-1:-1:-1;6919:110:1;;7038:328;21634:1;21627:14;;;21671:4;21658:18;;7133:1;7147:169;7161:8;7158:1;7155:15;7147:169;;;7243:14;;7228:13;;;7221:37;7286:16;;;;7178:10;;7147:169;;;7151:3;;7347:8;7340:5;7336:20;7329:27;;6885:481;-1:-1:-1;7382:3:1;;5864:1527;-1:-1:-1;;;;;;;;;;;5864:1527:1:o;7814:488::-;-1:-1:-1;;;;;8083:15:1;;;8065:34;;8135:15;;8130:2;8115:18;;8108:43;8182:2;8167:18;;8160:34;;;8230:3;8225:2;8210:18;;8203:31;;;8008:4;;8251:45;;8276:19;;8268:6;8251:45;:::i;:::-;8243:53;7814:488;-1:-1:-1;;;;;;7814:488:1:o;8307:632::-;8478:2;8530:21;;;8600:13;;8503:18;;;8622:22;;;8449:4;;8478:2;8701:15;;;;8675:2;8660:18;;;8449:4;8744:169;8758:6;8755:1;8752:13;8744:169;;;8819:13;;8807:26;;8888:15;;;;8853:12;;;;8780:1;8773:9;8744:169;;;-1:-1:-1;8930:3:1;;8307:632;-1:-1:-1;;;;;;8307:632:1:o;9542:219::-;9691:2;9680:9;9673:21;9654:4;9711:44;9751:2;9740:9;9736:18;9728:6;9711:44;:::i;11333:344::-;11535:2;11517:21;;;11574:2;11554:18;;;11547:30;-1:-1:-1;;;11608:2:1;11593:18;;11586:50;11668:2;11653:18;;11333:344::o;15144:356::-;15346:2;15328:21;;;15365:18;;;15358:30;15424:34;15419:2;15404:18;;15397:62;15491:2;15476:18;;15144:356::o;15505:347::-;15707:2;15689:21;;;15746:2;15726:18;;;15719:30;15785:25;15780:2;15765:18;;15758:53;15843:2;15828:18;;15505:347::o;17450:344::-;17652:2;17634:21;;;17691:2;17671:18;;;17664:30;-1:-1:-1;;;17725:2:1;17710:18;;17703:50;17785:2;17770:18;;17450:344::o;18203:415::-;18405:2;18387:21;;;18444:2;18424:18;;;18417:30;18483:34;18478:2;18463:18;;18456:62;-1:-1:-1;;;18549:2:1;18534:18;;18527:49;18608:3;18593:19;;18203:415::o;21031:343::-;21233:2;21215:21;;;21272:2;21252:18;;;21245:30;-1:-1:-1;;;21306:2:1;21291:18;;21284:49;21365:2;21350:18;;21031:343::o;21687:253::-;21727:3;-1:-1:-1;;;;;21816:2:1;21813:1;21809:10;21846:2;21843:1;21839:10;21877:3;21873:2;21869:12;21864:3;21861:21;21858:47;;;21885:18;;:::i;:::-;21921:13;;21687:253;-1:-1:-1;;;;21687:253:1:o;21945:128::-;21985:3;22016:1;22012:6;22009:1;22006:13;22003:39;;;22022:18;;:::i;:::-;-1:-1:-1;22058:9:1;;21945:128::o;22078:120::-;22118:1;22144;22134:35;;22149:18;;:::i;:::-;-1:-1:-1;22183:9:1;;22078:120::o;22203:168::-;22243:7;22309:1;22305;22301:6;22297:14;22294:1;22291:21;22286:1;22279:9;22272:17;22268:45;22265:71;;;22316:18;;:::i;:::-;-1:-1:-1;22356:9:1;;22203:168::o;22376:125::-;22416:4;22444:1;22441;22438:8;22435:34;;;22449:18;;:::i;:::-;-1:-1:-1;22486:9:1;;22376:125::o;22506:258::-;22578:1;22588:113;22602:6;22599:1;22596:13;22588:113;;;22678:11;;;22672:18;22659:11;;;22652:39;22624:2;22617:10;22588:113;;;22719:6;22716:1;22713:13;22710:48;;;-1:-1:-1;;22754:1:1;22736:16;;22729:27;22506:258::o;22769:136::-;22808:3;22836:5;22826:39;;22845:18;;:::i;:::-;-1:-1:-1;;;22881:18:1;;22769:136::o;22910:380::-;22989:1;22985:12;;;;23032;;;23053:61;;23107:4;23099:6;23095:17;23085:27;;23053:61;23160:2;23152:6;23149:14;23129:18;23126:38;23123:161;;;23206:10;23201:3;23197:20;23194:1;23187:31;23241:4;23238:1;23231:15;23269:4;23266:1;23259:15;23123:161;;22910:380;;;:::o;23295:135::-;23334:3;-1:-1:-1;;23355:17:1;;23352:43;;;23375:18;;:::i;:::-;-1:-1:-1;23422:1:1;23411:13;;23295:135::o;23435:112::-;23467:1;23493;23483:35;;23498:18;;:::i;:::-;-1:-1:-1;23532:9:1;;23435:112::o;23552:127::-;23613:10;23608:3;23604:20;23601:1;23594:31;23644:4;23641:1;23634:15;23668:4;23665:1;23658:15;23684:127;23745:10;23740:3;23736:20;23733:1;23726:31;23776:4;23773:1;23766:15;23800:4;23797:1;23790:15;23816:127;23877:10;23872:3;23868:20;23865:1;23858:31;23908:4;23905:1;23898:15;23932:4;23929:1;23922:15;23948:127;24009:10;24004:3;24000:20;23997:1;23990:31;24040:4;24037:1;24030:15;24064:4;24061:1;24054:15;24080:131;-1:-1:-1;;;;;;24154:32:1;;24144:43;;24134:71;;24201:1;24198;24191:12

Swarm Source

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