ETH Price: $2,586.18 (-2.18%)
Gas: 0.72 Gwei

Token

Ayahuasca Anonymous (AA)
 

Overview

Max Total Supply

3,282 AA

Holders

122

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
20 AA
0xfb737cae17f53813b05b7c2e5ca61f0c5fa795fb
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:
testContract

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT
// 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);
}

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



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





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





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


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



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


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





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


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



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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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



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



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





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


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





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


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



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


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



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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

contract testContract is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;

  bytes32 public merkleRoot;
  


  string public uriPrefix = '';
  string public uriSuffix = '.json';
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.001 ether;
  uint256 public maxSupply = 9595;
  uint256 public maxMintAmountPerTx = 10;
  uint256 public TOTAL_MAX_MINT_AMOUNT = 50;

  bool public paused = true;
  bool public revealed = true;



  constructor(
    string memory _tokenName,
    string memory _tokenSymbol,
    string memory _initBaseURI,
    string memory _hiddenMetadataUri
  ) ERC721A(_tokenName, _tokenSymbol) {
    setUriPrefix(_initBaseURI);
    setHiddenMetadataUri(_hiddenMetadataUri);
  }

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

  modifier mintPriceCompliance(uint256 _mintAmount) {
    require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
    _;
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    require(!paused, 'The contract is paused!');
    require(balanceOf(msg.sender) + _mintAmount <= TOTAL_MAX_MINT_AMOUNT, "Exceed Mint Limit");

    _safeMint(_msgSender(), _mintAmount);
  }

  function ownerMint(uint256 _mintAmount) public payable onlyOwner {
     require(_mintAmount > 0, 'Invalid mint amount!');
     require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _safeMint(_msgSender(), _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

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

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

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

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

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

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

    if (revealed == false) {
      return 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 setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setTotalMaxMintAmount(uint _amount) public onlyOwner {
      require(_amount <= 9595, "Exceed total amount");
      TOTAL_MAX_MINT_AMOUNT = _amount;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

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

  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 setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
    merkleRoot = _merkleRoot;
  }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"TOTAL_MAX_MINT_AMOUNT","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":[{"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":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"payable","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":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setTotalMaxMintAmount","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":"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":"_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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600b90805190602001906200002b929190620003f5565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c908051906020019062000079929190620003f5565b5066038d7ea4c68000600e5561257b600f55600a60105560326011556001601260006101000a81548160ff0219169083151502179055506001601260016101000a81548160ff021916908315150217905550348015620000d857600080fd5b5060405162004e2838038062004e288339818101604052810190620000fe919062000642565b8383816002908051906020019062000118929190620003f5565b50806003908051906020019062000131929190620003f5565b50620001426200019e60201b60201c565b60008190555050506200016a6200015e620001a760201b60201c565b620001af60201b60201c565b600160098190555062000183826200027560201b60201c565b62000194816200032060201b60201c565b5050505062000817565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000285620001a760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002ab620003cb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000304576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002fb9062000791565b60405180910390fd5b80600b90805190602001906200031c929190620003f5565b5050565b62000330620001a760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000356620003cb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003af576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003a69062000791565b60405180910390fd5b80600d9080519060200190620003c7929190620003f5565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200040390620007e2565b90600052602060002090601f01602090048101928262000427576000855562000473565b82601f106200044257805160ff191683800117855562000473565b8280016001018555821562000473579182015b828111156200047257825182559160200191906001019062000455565b5b50905062000482919062000486565b5090565b5b80821115620004a157600081600090555060010162000487565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200050e82620004c3565b810181811067ffffffffffffffff8211171562000530576200052f620004d4565b5b80604052505050565b600062000545620004a5565b905062000553828262000503565b919050565b600067ffffffffffffffff821115620005765762000575620004d4565b5b6200058182620004c3565b9050602081019050919050565b60005b83811015620005ae57808201518184015260208101905062000591565b83811115620005be576000848401525b50505050565b6000620005db620005d58462000558565b62000539565b905082815260208101848484011115620005fa57620005f9620004be565b5b620006078482856200058e565b509392505050565b600082601f830112620006275762000626620004b9565b5b815162000639848260208601620005c4565b91505092915050565b600080600080608085870312156200065f576200065e620004af565b5b600085015167ffffffffffffffff81111562000680576200067f620004b4565b5b6200068e878288016200060f565b945050602085015167ffffffffffffffff811115620006b257620006b1620004b4565b5b620006c0878288016200060f565b935050604085015167ffffffffffffffff811115620006e457620006e3620004b4565b5b620006f2878288016200060f565b925050606085015167ffffffffffffffff811115620007165762000715620004b4565b5b62000724878288016200060f565b91505092959194509250565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200077960208362000730565b9150620007868262000741565b602082019050919050565b60006020820190508181036000830152620007ac816200076a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007fb57607f821691505b602082108103620008115762000810620007b3565b5b50919050565b61460180620008276000396000f3fe6080604052600436106102465760003560e01c806362b99ad411610139578063a22cb465116100b6578063d5abeb011161007a578063d5abeb0114610847578063e0a8085314610872578063e985e9c51461089b578063efbd73f4146108d8578063f19e75d414610901578063f2fde38b1461091d57610246565b8063a22cb46514610764578063a45ba8e71461078d578063b071401b146107b8578063b88d4fde146107e1578063c87b56dd1461080a57610246565b80637ec4a659116100fd5780637ec4a6591461069e5780638da5cb5b146106c757806394354fd0146106f257806395d89b411461071d578063a0712d681461074857610246565b806362b99ad4146105b95780636352211e146105e457806370a0823114610621578063715018a61461065e5780637cb647591461067557610246565b80632eb4a7ab116101c75780634baabc8b1161018b5780634baabc8b146104e45780634fdd43cb1461050f57806351830227146105385780635503a0e8146105635780635c975abb1461058e57610246565b80632eb4a7ab146104135780633ccfd60b1461043e57806342842e0e14610455578063438b63001461047e57806344a0d68a146104bb57610246565b806313faede61161020e57806313faede61461034257806316ba10e01461036d57806316c38b3c1461039657806318160ddd146103bf57806323b872dd146103ea57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f05780631042779c14610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613487565b610946565b60405161027f91906134cf565b60405180910390f35b34801561029457600080fd5b5061029d610a28565b6040516102aa9190613583565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d591906135db565b610aba565b6040516102e79190613649565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613690565b610b36565b005b34801561032557600080fd5b50610340600480360381019061033b91906135db565b610c40565b005b34801561034e57600080fd5b50610357610d0b565b60405161036491906136df565b60405180910390f35b34801561037957600080fd5b50610394600480360381019061038f919061382f565b610d11565b005b3480156103a257600080fd5b506103bd60048036038101906103b891906138a4565b610da7565b005b3480156103cb57600080fd5b506103d4610e40565b6040516103e191906136df565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c91906138d1565b610e57565b005b34801561041f57600080fd5b50610428610e67565b604051610435919061393d565b60405180910390f35b34801561044a57600080fd5b50610453610e6d565b005b34801561046157600080fd5b5061047c600480360381019061047791906138d1565b610fbe565b005b34801561048a57600080fd5b506104a560048036038101906104a09190613958565b610fde565b6040516104b29190613a43565b60405180910390f35b3480156104c757600080fd5b506104e260048036038101906104dd91906135db565b6111f8565b005b3480156104f057600080fd5b506104f961127e565b60405161050691906136df565b60405180910390f35b34801561051b57600080fd5b506105366004803603810190610531919061382f565b611284565b005b34801561054457600080fd5b5061054d61131a565b60405161055a91906134cf565b60405180910390f35b34801561056f57600080fd5b5061057861132d565b6040516105859190613583565b60405180910390f35b34801561059a57600080fd5b506105a36113bb565b6040516105b091906134cf565b60405180910390f35b3480156105c557600080fd5b506105ce6113ce565b6040516105db9190613583565b60405180910390f35b3480156105f057600080fd5b5061060b600480360381019061060691906135db565b61145c565b6040516106189190613649565b60405180910390f35b34801561062d57600080fd5b5061064860048036038101906106439190613958565b611472565b60405161065591906136df565b60405180910390f35b34801561066a57600080fd5b50610673611541565b005b34801561068157600080fd5b5061069c60048036038101906106979190613a91565b6115c9565b005b3480156106aa57600080fd5b506106c560048036038101906106c0919061382f565b61164f565b005b3480156106d357600080fd5b506106dc6116e5565b6040516106e99190613649565b60405180910390f35b3480156106fe57600080fd5b5061070761170f565b60405161071491906136df565b60405180910390f35b34801561072957600080fd5b50610732611715565b60405161073f9190613583565b60405180910390f35b610762600480360381019061075d91906135db565b6117a7565b005b34801561077057600080fd5b5061078b60048036038101906107869190613abe565b61195f565b005b34801561079957600080fd5b506107a2611ad6565b6040516107af9190613583565b60405180910390f35b3480156107c457600080fd5b506107df60048036038101906107da91906135db565b611b64565b005b3480156107ed57600080fd5b5061080860048036038101906108039190613b9f565b611bea565b005b34801561081657600080fd5b50610831600480360381019061082c91906135db565b611c66565b60405161083e9190613583565b60405180910390f35b34801561085357600080fd5b5061085c611dbe565b60405161086991906136df565b60405180910390f35b34801561087e57600080fd5b50610899600480360381019061089491906138a4565b611dc4565b005b3480156108a757600080fd5b506108c260048036038101906108bd9190613c22565b611e5d565b6040516108cf91906134cf565b60405180910390f35b3480156108e457600080fd5b506108ff60048036038101906108fa9190613c62565b611ef1565b005b61091b600480360381019061091691906135db565b612025565b005b34801561092957600080fd5b50610944600480360381019061093f9190613958565b61214f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a215750610a2082612246565b5b9050919050565b606060028054610a3790613cd1565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6390613cd1565b8015610ab05780601f10610a8557610100808354040283529160200191610ab0565b820191906000526020600020905b815481529060010190602001808311610a9357829003601f168201915b5050505050905090565b6000610ac5826122b0565b610afb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b418261145c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ba8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bc76122fe565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bf95750610bf781610bf26122fe565b611e5d565b155b15610c30576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c3b838383612306565b505050565b610c486122fe565b73ffffffffffffffffffffffffffffffffffffffff16610c666116e5565b73ffffffffffffffffffffffffffffffffffffffff1614610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390613d4e565b60405180910390fd5b61257b811115610d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf890613dba565b60405180910390fd5b8060118190555050565b600e5481565b610d196122fe565b73ffffffffffffffffffffffffffffffffffffffff16610d376116e5565b73ffffffffffffffffffffffffffffffffffffffff1614610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8490613d4e565b60405180910390fd5b80600c9080519060200190610da3929190613335565b5050565b610daf6122fe565b73ffffffffffffffffffffffffffffffffffffffff16610dcd6116e5565b73ffffffffffffffffffffffffffffffffffffffff1614610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a90613d4e565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b6000610e4a6123b8565b6001546000540303905090565b610e628383836123c1565b505050565b600a5481565b610e756122fe565b73ffffffffffffffffffffffffffffffffffffffff16610e936116e5565b73ffffffffffffffffffffffffffffffffffffffff1614610ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee090613d4e565b60405180910390fd5b600260095403610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590613e26565b60405180910390fd5b60026009819055506000610f406116e5565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f6390613e77565b60006040518083038185875af1925050503d8060008114610fa0576040519150601f19603f3d011682016040523d82523d6000602084013e610fa5565b606091505b5050905080610fb357600080fd5b506001600981905550565b610fd983838360405180602001604052806000815250611bea565b505050565b60606000610feb83611472565b905060008167ffffffffffffffff81111561100957611008613704565b5b6040519080825280602002602001820160405280156110375781602001602082028036833780820191505090505b50905060006110446123b8565b90506000805b848210801561105b5750600f548311155b156111eb576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511580156111685750600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614155b1561117557806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111d757838584815181106111bc576111bb613e8c565b5b60200260200101818152505082806111d390613eea565b9350505b83806111e290613eea565b9450505061104a565b8395505050505050919050565b6112006122fe565b73ffffffffffffffffffffffffffffffffffffffff1661121e6116e5565b73ffffffffffffffffffffffffffffffffffffffff1614611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b90613d4e565b60405180910390fd5b80600e8190555050565b60115481565b61128c6122fe565b73ffffffffffffffffffffffffffffffffffffffff166112aa6116e5565b73ffffffffffffffffffffffffffffffffffffffff1614611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f790613d4e565b60405180910390fd5b80600d9080519060200190611316929190613335565b5050565b601260019054906101000a900460ff1681565b600c805461133a90613cd1565b80601f016020809104026020016040519081016040528092919081815260200182805461136690613cd1565b80156113b35780601f10611388576101008083540402835291602001916113b3565b820191906000526020600020905b81548152906001019060200180831161139657829003601f168201915b505050505081565b601260009054906101000a900460ff1681565b600b80546113db90613cd1565b80601f016020809104026020016040519081016040528092919081815260200182805461140790613cd1565b80156114545780601f1061142957610100808354040283529160200191611454565b820191906000526020600020905b81548152906001019060200180831161143757829003601f168201915b505050505081565b600061146782612875565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114d9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6115496122fe565b73ffffffffffffffffffffffffffffffffffffffff166115676116e5565b73ffffffffffffffffffffffffffffffffffffffff16146115bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b490613d4e565b60405180910390fd5b6115c76000612b04565b565b6115d16122fe565b73ffffffffffffffffffffffffffffffffffffffff166115ef6116e5565b73ffffffffffffffffffffffffffffffffffffffff1614611645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163c90613d4e565b60405180910390fd5b80600a8190555050565b6116576122fe565b73ffffffffffffffffffffffffffffffffffffffff166116756116e5565b73ffffffffffffffffffffffffffffffffffffffff16146116cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c290613d4e565b60405180910390fd5b80600b90805190602001906116e1929190613335565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60105481565b60606003805461172490613cd1565b80601f016020809104026020016040519081016040528092919081815260200182805461175090613cd1565b801561179d5780601f106117725761010080835404028352916020019161179d565b820191906000526020600020905b81548152906001019060200180831161178057829003601f168201915b5050505050905090565b806000811180156117ba57506010548111155b6117f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f090613f7e565b60405180910390fd5b600f5481611805610e40565b61180f9190613f9e565b1115611850576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184790614040565b60405180910390fd5b8180600e5461185f9190614060565b3410156118a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189890614106565b60405180910390fd5b601260009054906101000a900460ff16156118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e890614172565b60405180910390fd5b601154836118fe33611472565b6119089190613f9e565b1115611949576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611940906141de565b60405180910390fd5b61195a6119546122fe565b84612bca565b505050565b6119676122fe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119cb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119d86122fe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a856122fe565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611aca91906134cf565b60405180910390a35050565b600d8054611ae390613cd1565b80601f0160208091040260200160405190810160405280929190818152602001828054611b0f90613cd1565b8015611b5c5780601f10611b3157610100808354040283529160200191611b5c565b820191906000526020600020905b815481529060010190602001808311611b3f57829003601f168201915b505050505081565b611b6c6122fe565b73ffffffffffffffffffffffffffffffffffffffff16611b8a6116e5565b73ffffffffffffffffffffffffffffffffffffffff1614611be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd790613d4e565b60405180910390fd5b8060108190555050565b611bf58484846123c1565b611c148373ffffffffffffffffffffffffffffffffffffffff16612be8565b8015611c295750611c2784848484612c0b565b155b15611c60576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611c71826122b0565b611cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca790614270565b60405180910390fd5b60001515601260019054906101000a900460ff16151503611d5d57600d8054611cd890613cd1565b80601f0160208091040260200160405190810160405280929190818152602001828054611d0490613cd1565b8015611d515780601f10611d2657610100808354040283529160200191611d51565b820191906000526020600020905b815481529060010190602001808311611d3457829003601f168201915b50505050509050611db9565b6000611d67612d5b565b90506000815111611d875760405180602001604052806000815250611db5565b80611d9184612ded565b600c604051602001611da593929190614360565b6040516020818303038152906040525b9150505b919050565b600f5481565b611dcc6122fe565b73ffffffffffffffffffffffffffffffffffffffff16611dea6116e5565b73ffffffffffffffffffffffffffffffffffffffff1614611e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3790613d4e565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611f0457506010548111155b611f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3a90613f7e565b60405180910390fd5b600f5481611f4f610e40565b611f599190613f9e565b1115611f9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9190614040565b60405180910390fd5b611fa26122fe565b73ffffffffffffffffffffffffffffffffffffffff16611fc06116e5565b73ffffffffffffffffffffffffffffffffffffffff1614612016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200d90613d4e565b60405180910390fd5b6120208284612bca565b505050565b61202d6122fe565b73ffffffffffffffffffffffffffffffffffffffff1661204b6116e5565b73ffffffffffffffffffffffffffffffffffffffff16146120a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209890613d4e565b60405180910390fd5b600081116120e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120db90613f7e565b60405180910390fd5b600f54816120f0610e40565b6120fa9190613f9e565b111561213b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213290614040565b60405180910390fd5b61214c6121466122fe565b82612bca565b50565b6121576122fe565b73ffffffffffffffffffffffffffffffffffffffff166121756116e5565b73ffffffffffffffffffffffffffffffffffffffff16146121cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c290613d4e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361223a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223190614403565b60405180910390fd5b61224381612b04565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816122bb6123b8565b111580156122ca575060005482105b80156122f7575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006123cc82612875565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612437576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166124586122fe565b73ffffffffffffffffffffffffffffffffffffffff1614806124875750612486856124816122fe565b611e5d565b5b806124cc57506124956122fe565b73ffffffffffffffffffffffffffffffffffffffff166124b484610aba565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612505576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361256b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125788585856001612f4d565b61258460008487612306565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361280357600054821461280257878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461286e8585856001612f53565b5050505050565b61287d6133bb565b60008290508061288b6123b8565b1115801561289a575060005481105b15612acd576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612acb57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129af578092505050612aff565b5b600115612aca57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ac5578092505050612aff565b6129b0565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612be4828260405180602001604052806000815250612f59565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c316122fe565b8786866040518563ffffffff1660e01b8152600401612c539493929190614478565b6020604051808303816000875af1925050508015612c8f57506040513d601f19601f82011682018060405250810190612c8c91906144d9565b60015b612d08573d8060008114612cbf576040519150601f19603f3d011682016040523d82523d6000602084013e612cc4565b606091505b506000815103612d00576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054612d6a90613cd1565b80601f0160208091040260200160405190810160405280929190818152602001828054612d9690613cd1565b8015612de35780601f10612db857610100808354040283529160200191612de3565b820191906000526020600020905b815481529060010190602001808311612dc657829003601f168201915b5050505050905090565b606060008203612e34576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f48565b600082905060005b60008214612e66578080612e4f90613eea565b915050600a82612e5f9190614535565b9150612e3c565b60008167ffffffffffffffff811115612e8257612e81613704565b5b6040519080825280601f01601f191660200182016040528015612eb45781602001600182028036833780820191505090505b5090505b60008514612f4157600182612ecd9190614566565b9150600a85612edc919061459a565b6030612ee89190613f9e565b60f81b818381518110612efe57612efd613e8c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f3a9190614535565b9450612eb8565b8093505050505b919050565b50505050565b50505050565b612f668383836001612f6b565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612fd7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403613011576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61301e6000868387612f4d565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156131e857506131e78773ffffffffffffffffffffffffffffffffffffffff16612be8565b5b156132ad575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461325d6000888480600101955088612c0b565b613293576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036131ee5782600054146132a857600080fd5b613318565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036132ae575b81600081905550505061332e6000868387612f53565b5050505050565b82805461334190613cd1565b90600052602060002090601f01602090048101928261336357600085556133aa565b82601f1061337c57805160ff19168380011785556133aa565b828001600101855582156133aa579182015b828111156133a957825182559160200191906001019061338e565b5b5090506133b791906133fe565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156134175760008160009055506001016133ff565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6134648161342f565b811461346f57600080fd5b50565b6000813590506134818161345b565b92915050565b60006020828403121561349d5761349c613425565b5b60006134ab84828501613472565b91505092915050565b60008115159050919050565b6134c9816134b4565b82525050565b60006020820190506134e460008301846134c0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613524578082015181840152602081019050613509565b83811115613533576000848401525b50505050565b6000601f19601f8301169050919050565b6000613555826134ea565b61355f81856134f5565b935061356f818560208601613506565b61357881613539565b840191505092915050565b6000602082019050818103600083015261359d818461354a565b905092915050565b6000819050919050565b6135b8816135a5565b81146135c357600080fd5b50565b6000813590506135d5816135af565b92915050565b6000602082840312156135f1576135f0613425565b5b60006135ff848285016135c6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061363382613608565b9050919050565b61364381613628565b82525050565b600060208201905061365e600083018461363a565b92915050565b61366d81613628565b811461367857600080fd5b50565b60008135905061368a81613664565b92915050565b600080604083850312156136a7576136a6613425565b5b60006136b58582860161367b565b92505060206136c6858286016135c6565b9150509250929050565b6136d9816135a5565b82525050565b60006020820190506136f460008301846136d0565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61373c82613539565b810181811067ffffffffffffffff8211171561375b5761375a613704565b5b80604052505050565b600061376e61341b565b905061377a8282613733565b919050565b600067ffffffffffffffff82111561379a57613799613704565b5b6137a382613539565b9050602081019050919050565b82818337600083830152505050565b60006137d26137cd8461377f565b613764565b9050828152602081018484840111156137ee576137ed6136ff565b5b6137f98482856137b0565b509392505050565b600082601f830112613816576138156136fa565b5b81356138268482602086016137bf565b91505092915050565b60006020828403121561384557613844613425565b5b600082013567ffffffffffffffff8111156138635761386261342a565b5b61386f84828501613801565b91505092915050565b613881816134b4565b811461388c57600080fd5b50565b60008135905061389e81613878565b92915050565b6000602082840312156138ba576138b9613425565b5b60006138c88482850161388f565b91505092915050565b6000806000606084860312156138ea576138e9613425565b5b60006138f88682870161367b565b93505060206139098682870161367b565b925050604061391a868287016135c6565b9150509250925092565b6000819050919050565b61393781613924565b82525050565b6000602082019050613952600083018461392e565b92915050565b60006020828403121561396e5761396d613425565b5b600061397c8482850161367b565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6139ba816135a5565b82525050565b60006139cc83836139b1565b60208301905092915050565b6000602082019050919050565b60006139f082613985565b6139fa8185613990565b9350613a05836139a1565b8060005b83811015613a36578151613a1d88826139c0565b9750613a28836139d8565b925050600181019050613a09565b5085935050505092915050565b60006020820190508181036000830152613a5d81846139e5565b905092915050565b613a6e81613924565b8114613a7957600080fd5b50565b600081359050613a8b81613a65565b92915050565b600060208284031215613aa757613aa6613425565b5b6000613ab584828501613a7c565b91505092915050565b60008060408385031215613ad557613ad4613425565b5b6000613ae38582860161367b565b9250506020613af48582860161388f565b9150509250929050565b600067ffffffffffffffff821115613b1957613b18613704565b5b613b2282613539565b9050602081019050919050565b6000613b42613b3d84613afe565b613764565b905082815260208101848484011115613b5e57613b5d6136ff565b5b613b698482856137b0565b509392505050565b600082601f830112613b8657613b856136fa565b5b8135613b96848260208601613b2f565b91505092915050565b60008060008060808587031215613bb957613bb8613425565b5b6000613bc78782880161367b565b9450506020613bd88782880161367b565b9350506040613be9878288016135c6565b925050606085013567ffffffffffffffff811115613c0a57613c0961342a565b5b613c1687828801613b71565b91505092959194509250565b60008060408385031215613c3957613c38613425565b5b6000613c478582860161367b565b9250506020613c588582860161367b565b9150509250929050565b60008060408385031215613c7957613c78613425565b5b6000613c87858286016135c6565b9250506020613c988582860161367b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ce957607f821691505b602082108103613cfc57613cfb613ca2565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613d386020836134f5565b9150613d4382613d02565b602082019050919050565b60006020820190508181036000830152613d6781613d2b565b9050919050565b7f45786365656420746f74616c20616d6f756e7400000000000000000000000000600082015250565b6000613da46013836134f5565b9150613daf82613d6e565b602082019050919050565b60006020820190508181036000830152613dd381613d97565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613e10601f836134f5565b9150613e1b82613dda565b602082019050919050565b60006020820190508181036000830152613e3f81613e03565b9050919050565b600081905092915050565b50565b6000613e61600083613e46565b9150613e6c82613e51565b600082019050919050565b6000613e8282613e54565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ef5826135a5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613f2757613f26613ebb565b5b600182019050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613f686014836134f5565b9150613f7382613f32565b602082019050919050565b60006020820190508181036000830152613f9781613f5b565b9050919050565b6000613fa9826135a5565b9150613fb4836135a5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fe957613fe8613ebb565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b600061402a6014836134f5565b915061403582613ff4565b602082019050919050565b600060208201905081810360008301526140598161401d565b9050919050565b600061406b826135a5565b9150614076836135a5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140af576140ae613ebb565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006140f06013836134f5565b91506140fb826140ba565b602082019050919050565b6000602082019050818103600083015261411f816140e3565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b600061415c6017836134f5565b915061416782614126565b602082019050919050565b6000602082019050818103600083015261418b8161414f565b9050919050565b7f457863656564204d696e74204c696d6974000000000000000000000000000000600082015250565b60006141c86011836134f5565b91506141d382614192565b602082019050919050565b600060208201905081810360008301526141f7816141bb565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061425a602f836134f5565b9150614265826141fe565b604082019050919050565b600060208201905081810360008301526142898161424d565b9050919050565b600081905092915050565b60006142a6826134ea565b6142b08185614290565b93506142c0818560208601613506565b80840191505092915050565b60008190508160005260206000209050919050565b600081546142ee81613cd1565b6142f88186614290565b94506001821660008114614313576001811461432457614357565b60ff19831686528186019350614357565b61432d856142cc565b60005b8381101561434f57815481890152600182019150602081019050614330565b838801955050505b50505092915050565b600061436c828661429b565b9150614378828561429b565b915061438482846142e1565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006143ed6026836134f5565b91506143f882614391565b604082019050919050565b6000602082019050818103600083015261441c816143e0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061444a82614423565b614454818561442e565b9350614464818560208601613506565b61446d81613539565b840191505092915050565b600060808201905061448d600083018761363a565b61449a602083018661363a565b6144a760408301856136d0565b81810360608301526144b9818461443f565b905095945050505050565b6000815190506144d38161345b565b92915050565b6000602082840312156144ef576144ee613425565b5b60006144fd848285016144c4565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614540826135a5565b915061454b836135a5565b92508261455b5761455a614506565b5b828204905092915050565b6000614571826135a5565b915061457c836135a5565b92508282101561458f5761458e613ebb565b5b828203905092915050565b60006145a5826135a5565b91506145b0836135a5565b9250826145c0576145bf614506565b5b82820690509291505056fea26469706673582212207943416cd94c675a0be3d336eb7b82ca487098e0e67b4b2ad95f6fd78fdd355e64736f6c634300080e0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000001341796168756173636120416e6f6e796d6f7573000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002414100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102465760003560e01c806362b99ad411610139578063a22cb465116100b6578063d5abeb011161007a578063d5abeb0114610847578063e0a8085314610872578063e985e9c51461089b578063efbd73f4146108d8578063f19e75d414610901578063f2fde38b1461091d57610246565b8063a22cb46514610764578063a45ba8e71461078d578063b071401b146107b8578063b88d4fde146107e1578063c87b56dd1461080a57610246565b80637ec4a659116100fd5780637ec4a6591461069e5780638da5cb5b146106c757806394354fd0146106f257806395d89b411461071d578063a0712d681461074857610246565b806362b99ad4146105b95780636352211e146105e457806370a0823114610621578063715018a61461065e5780637cb647591461067557610246565b80632eb4a7ab116101c75780634baabc8b1161018b5780634baabc8b146104e45780634fdd43cb1461050f57806351830227146105385780635503a0e8146105635780635c975abb1461058e57610246565b80632eb4a7ab146104135780633ccfd60b1461043e57806342842e0e14610455578063438b63001461047e57806344a0d68a146104bb57610246565b806313faede61161020e57806313faede61461034257806316ba10e01461036d57806316c38b3c1461039657806318160ddd146103bf57806323b872dd146103ea57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f05780631042779c14610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613487565b610946565b60405161027f91906134cf565b60405180910390f35b34801561029457600080fd5b5061029d610a28565b6040516102aa9190613583565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d591906135db565b610aba565b6040516102e79190613649565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613690565b610b36565b005b34801561032557600080fd5b50610340600480360381019061033b91906135db565b610c40565b005b34801561034e57600080fd5b50610357610d0b565b60405161036491906136df565b60405180910390f35b34801561037957600080fd5b50610394600480360381019061038f919061382f565b610d11565b005b3480156103a257600080fd5b506103bd60048036038101906103b891906138a4565b610da7565b005b3480156103cb57600080fd5b506103d4610e40565b6040516103e191906136df565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c91906138d1565b610e57565b005b34801561041f57600080fd5b50610428610e67565b604051610435919061393d565b60405180910390f35b34801561044a57600080fd5b50610453610e6d565b005b34801561046157600080fd5b5061047c600480360381019061047791906138d1565b610fbe565b005b34801561048a57600080fd5b506104a560048036038101906104a09190613958565b610fde565b6040516104b29190613a43565b60405180910390f35b3480156104c757600080fd5b506104e260048036038101906104dd91906135db565b6111f8565b005b3480156104f057600080fd5b506104f961127e565b60405161050691906136df565b60405180910390f35b34801561051b57600080fd5b506105366004803603810190610531919061382f565b611284565b005b34801561054457600080fd5b5061054d61131a565b60405161055a91906134cf565b60405180910390f35b34801561056f57600080fd5b5061057861132d565b6040516105859190613583565b60405180910390f35b34801561059a57600080fd5b506105a36113bb565b6040516105b091906134cf565b60405180910390f35b3480156105c557600080fd5b506105ce6113ce565b6040516105db9190613583565b60405180910390f35b3480156105f057600080fd5b5061060b600480360381019061060691906135db565b61145c565b6040516106189190613649565b60405180910390f35b34801561062d57600080fd5b5061064860048036038101906106439190613958565b611472565b60405161065591906136df565b60405180910390f35b34801561066a57600080fd5b50610673611541565b005b34801561068157600080fd5b5061069c60048036038101906106979190613a91565b6115c9565b005b3480156106aa57600080fd5b506106c560048036038101906106c0919061382f565b61164f565b005b3480156106d357600080fd5b506106dc6116e5565b6040516106e99190613649565b60405180910390f35b3480156106fe57600080fd5b5061070761170f565b60405161071491906136df565b60405180910390f35b34801561072957600080fd5b50610732611715565b60405161073f9190613583565b60405180910390f35b610762600480360381019061075d91906135db565b6117a7565b005b34801561077057600080fd5b5061078b60048036038101906107869190613abe565b61195f565b005b34801561079957600080fd5b506107a2611ad6565b6040516107af9190613583565b60405180910390f35b3480156107c457600080fd5b506107df60048036038101906107da91906135db565b611b64565b005b3480156107ed57600080fd5b5061080860048036038101906108039190613b9f565b611bea565b005b34801561081657600080fd5b50610831600480360381019061082c91906135db565b611c66565b60405161083e9190613583565b60405180910390f35b34801561085357600080fd5b5061085c611dbe565b60405161086991906136df565b60405180910390f35b34801561087e57600080fd5b50610899600480360381019061089491906138a4565b611dc4565b005b3480156108a757600080fd5b506108c260048036038101906108bd9190613c22565b611e5d565b6040516108cf91906134cf565b60405180910390f35b3480156108e457600080fd5b506108ff60048036038101906108fa9190613c62565b611ef1565b005b61091b600480360381019061091691906135db565b612025565b005b34801561092957600080fd5b50610944600480360381019061093f9190613958565b61214f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a215750610a2082612246565b5b9050919050565b606060028054610a3790613cd1565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6390613cd1565b8015610ab05780601f10610a8557610100808354040283529160200191610ab0565b820191906000526020600020905b815481529060010190602001808311610a9357829003601f168201915b5050505050905090565b6000610ac5826122b0565b610afb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b418261145c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ba8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bc76122fe565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bf95750610bf781610bf26122fe565b611e5d565b155b15610c30576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c3b838383612306565b505050565b610c486122fe565b73ffffffffffffffffffffffffffffffffffffffff16610c666116e5565b73ffffffffffffffffffffffffffffffffffffffff1614610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390613d4e565b60405180910390fd5b61257b811115610d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf890613dba565b60405180910390fd5b8060118190555050565b600e5481565b610d196122fe565b73ffffffffffffffffffffffffffffffffffffffff16610d376116e5565b73ffffffffffffffffffffffffffffffffffffffff1614610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8490613d4e565b60405180910390fd5b80600c9080519060200190610da3929190613335565b5050565b610daf6122fe565b73ffffffffffffffffffffffffffffffffffffffff16610dcd6116e5565b73ffffffffffffffffffffffffffffffffffffffff1614610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a90613d4e565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b6000610e4a6123b8565b6001546000540303905090565b610e628383836123c1565b505050565b600a5481565b610e756122fe565b73ffffffffffffffffffffffffffffffffffffffff16610e936116e5565b73ffffffffffffffffffffffffffffffffffffffff1614610ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee090613d4e565b60405180910390fd5b600260095403610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590613e26565b60405180910390fd5b60026009819055506000610f406116e5565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f6390613e77565b60006040518083038185875af1925050503d8060008114610fa0576040519150601f19603f3d011682016040523d82523d6000602084013e610fa5565b606091505b5050905080610fb357600080fd5b506001600981905550565b610fd983838360405180602001604052806000815250611bea565b505050565b60606000610feb83611472565b905060008167ffffffffffffffff81111561100957611008613704565b5b6040519080825280602002602001820160405280156110375781602001602082028036833780820191505090505b50905060006110446123b8565b90506000805b848210801561105b5750600f548311155b156111eb576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511580156111685750600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614155b1561117557806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111d757838584815181106111bc576111bb613e8c565b5b60200260200101818152505082806111d390613eea565b9350505b83806111e290613eea565b9450505061104a565b8395505050505050919050565b6112006122fe565b73ffffffffffffffffffffffffffffffffffffffff1661121e6116e5565b73ffffffffffffffffffffffffffffffffffffffff1614611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b90613d4e565b60405180910390fd5b80600e8190555050565b60115481565b61128c6122fe565b73ffffffffffffffffffffffffffffffffffffffff166112aa6116e5565b73ffffffffffffffffffffffffffffffffffffffff1614611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f790613d4e565b60405180910390fd5b80600d9080519060200190611316929190613335565b5050565b601260019054906101000a900460ff1681565b600c805461133a90613cd1565b80601f016020809104026020016040519081016040528092919081815260200182805461136690613cd1565b80156113b35780601f10611388576101008083540402835291602001916113b3565b820191906000526020600020905b81548152906001019060200180831161139657829003601f168201915b505050505081565b601260009054906101000a900460ff1681565b600b80546113db90613cd1565b80601f016020809104026020016040519081016040528092919081815260200182805461140790613cd1565b80156114545780601f1061142957610100808354040283529160200191611454565b820191906000526020600020905b81548152906001019060200180831161143757829003601f168201915b505050505081565b600061146782612875565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114d9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6115496122fe565b73ffffffffffffffffffffffffffffffffffffffff166115676116e5565b73ffffffffffffffffffffffffffffffffffffffff16146115bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b490613d4e565b60405180910390fd5b6115c76000612b04565b565b6115d16122fe565b73ffffffffffffffffffffffffffffffffffffffff166115ef6116e5565b73ffffffffffffffffffffffffffffffffffffffff1614611645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163c90613d4e565b60405180910390fd5b80600a8190555050565b6116576122fe565b73ffffffffffffffffffffffffffffffffffffffff166116756116e5565b73ffffffffffffffffffffffffffffffffffffffff16146116cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c290613d4e565b60405180910390fd5b80600b90805190602001906116e1929190613335565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60105481565b60606003805461172490613cd1565b80601f016020809104026020016040519081016040528092919081815260200182805461175090613cd1565b801561179d5780601f106117725761010080835404028352916020019161179d565b820191906000526020600020905b81548152906001019060200180831161178057829003601f168201915b5050505050905090565b806000811180156117ba57506010548111155b6117f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f090613f7e565b60405180910390fd5b600f5481611805610e40565b61180f9190613f9e565b1115611850576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184790614040565b60405180910390fd5b8180600e5461185f9190614060565b3410156118a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189890614106565b60405180910390fd5b601260009054906101000a900460ff16156118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e890614172565b60405180910390fd5b601154836118fe33611472565b6119089190613f9e565b1115611949576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611940906141de565b60405180910390fd5b61195a6119546122fe565b84612bca565b505050565b6119676122fe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119cb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119d86122fe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a856122fe565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611aca91906134cf565b60405180910390a35050565b600d8054611ae390613cd1565b80601f0160208091040260200160405190810160405280929190818152602001828054611b0f90613cd1565b8015611b5c5780601f10611b3157610100808354040283529160200191611b5c565b820191906000526020600020905b815481529060010190602001808311611b3f57829003601f168201915b505050505081565b611b6c6122fe565b73ffffffffffffffffffffffffffffffffffffffff16611b8a6116e5565b73ffffffffffffffffffffffffffffffffffffffff1614611be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd790613d4e565b60405180910390fd5b8060108190555050565b611bf58484846123c1565b611c148373ffffffffffffffffffffffffffffffffffffffff16612be8565b8015611c295750611c2784848484612c0b565b155b15611c60576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611c71826122b0565b611cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca790614270565b60405180910390fd5b60001515601260019054906101000a900460ff16151503611d5d57600d8054611cd890613cd1565b80601f0160208091040260200160405190810160405280929190818152602001828054611d0490613cd1565b8015611d515780601f10611d2657610100808354040283529160200191611d51565b820191906000526020600020905b815481529060010190602001808311611d3457829003601f168201915b50505050509050611db9565b6000611d67612d5b565b90506000815111611d875760405180602001604052806000815250611db5565b80611d9184612ded565b600c604051602001611da593929190614360565b6040516020818303038152906040525b9150505b919050565b600f5481565b611dcc6122fe565b73ffffffffffffffffffffffffffffffffffffffff16611dea6116e5565b73ffffffffffffffffffffffffffffffffffffffff1614611e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3790613d4e565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611f0457506010548111155b611f43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3a90613f7e565b60405180910390fd5b600f5481611f4f610e40565b611f599190613f9e565b1115611f9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9190614040565b60405180910390fd5b611fa26122fe565b73ffffffffffffffffffffffffffffffffffffffff16611fc06116e5565b73ffffffffffffffffffffffffffffffffffffffff1614612016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200d90613d4e565b60405180910390fd5b6120208284612bca565b505050565b61202d6122fe565b73ffffffffffffffffffffffffffffffffffffffff1661204b6116e5565b73ffffffffffffffffffffffffffffffffffffffff16146120a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209890613d4e565b60405180910390fd5b600081116120e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120db90613f7e565b60405180910390fd5b600f54816120f0610e40565b6120fa9190613f9e565b111561213b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213290614040565b60405180910390fd5b61214c6121466122fe565b82612bca565b50565b6121576122fe565b73ffffffffffffffffffffffffffffffffffffffff166121756116e5565b73ffffffffffffffffffffffffffffffffffffffff16146121cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c290613d4e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361223a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223190614403565b60405180910390fd5b61224381612b04565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816122bb6123b8565b111580156122ca575060005482105b80156122f7575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006123cc82612875565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612437576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166124586122fe565b73ffffffffffffffffffffffffffffffffffffffff1614806124875750612486856124816122fe565b611e5d565b5b806124cc57506124956122fe565b73ffffffffffffffffffffffffffffffffffffffff166124b484610aba565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612505576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361256b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125788585856001612f4d565b61258460008487612306565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361280357600054821461280257878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461286e8585856001612f53565b5050505050565b61287d6133bb565b60008290508061288b6123b8565b1115801561289a575060005481105b15612acd576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612acb57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129af578092505050612aff565b5b600115612aca57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ac5578092505050612aff565b6129b0565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612be4828260405180602001604052806000815250612f59565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c316122fe565b8786866040518563ffffffff1660e01b8152600401612c539493929190614478565b6020604051808303816000875af1925050508015612c8f57506040513d601f19601f82011682018060405250810190612c8c91906144d9565b60015b612d08573d8060008114612cbf576040519150601f19603f3d011682016040523d82523d6000602084013e612cc4565b606091505b506000815103612d00576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054612d6a90613cd1565b80601f0160208091040260200160405190810160405280929190818152602001828054612d9690613cd1565b8015612de35780601f10612db857610100808354040283529160200191612de3565b820191906000526020600020905b815481529060010190602001808311612dc657829003601f168201915b5050505050905090565b606060008203612e34576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f48565b600082905060005b60008214612e66578080612e4f90613eea565b915050600a82612e5f9190614535565b9150612e3c565b60008167ffffffffffffffff811115612e8257612e81613704565b5b6040519080825280601f01601f191660200182016040528015612eb45781602001600182028036833780820191505090505b5090505b60008514612f4157600182612ecd9190614566565b9150600a85612edc919061459a565b6030612ee89190613f9e565b60f81b818381518110612efe57612efd613e8c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f3a9190614535565b9450612eb8565b8093505050505b919050565b50505050565b50505050565b612f668383836001612f6b565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612fd7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403613011576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61301e6000868387612f4d565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156131e857506131e78773ffffffffffffffffffffffffffffffffffffffff16612be8565b5b156132ad575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461325d6000888480600101955088612c0b565b613293576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036131ee5782600054146132a857600080fd5b613318565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036132ae575b81600081905550505061332e6000868387612f53565b5050505050565b82805461334190613cd1565b90600052602060002090601f01602090048101928261336357600085556133aa565b82601f1061337c57805160ff19168380011785556133aa565b828001600101855582156133aa579182015b828111156133a957825182559160200191906001019061338e565b5b5090506133b791906133fe565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156134175760008160009055506001016133ff565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6134648161342f565b811461346f57600080fd5b50565b6000813590506134818161345b565b92915050565b60006020828403121561349d5761349c613425565b5b60006134ab84828501613472565b91505092915050565b60008115159050919050565b6134c9816134b4565b82525050565b60006020820190506134e460008301846134c0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613524578082015181840152602081019050613509565b83811115613533576000848401525b50505050565b6000601f19601f8301169050919050565b6000613555826134ea565b61355f81856134f5565b935061356f818560208601613506565b61357881613539565b840191505092915050565b6000602082019050818103600083015261359d818461354a565b905092915050565b6000819050919050565b6135b8816135a5565b81146135c357600080fd5b50565b6000813590506135d5816135af565b92915050565b6000602082840312156135f1576135f0613425565b5b60006135ff848285016135c6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061363382613608565b9050919050565b61364381613628565b82525050565b600060208201905061365e600083018461363a565b92915050565b61366d81613628565b811461367857600080fd5b50565b60008135905061368a81613664565b92915050565b600080604083850312156136a7576136a6613425565b5b60006136b58582860161367b565b92505060206136c6858286016135c6565b9150509250929050565b6136d9816135a5565b82525050565b60006020820190506136f460008301846136d0565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61373c82613539565b810181811067ffffffffffffffff8211171561375b5761375a613704565b5b80604052505050565b600061376e61341b565b905061377a8282613733565b919050565b600067ffffffffffffffff82111561379a57613799613704565b5b6137a382613539565b9050602081019050919050565b82818337600083830152505050565b60006137d26137cd8461377f565b613764565b9050828152602081018484840111156137ee576137ed6136ff565b5b6137f98482856137b0565b509392505050565b600082601f830112613816576138156136fa565b5b81356138268482602086016137bf565b91505092915050565b60006020828403121561384557613844613425565b5b600082013567ffffffffffffffff8111156138635761386261342a565b5b61386f84828501613801565b91505092915050565b613881816134b4565b811461388c57600080fd5b50565b60008135905061389e81613878565b92915050565b6000602082840312156138ba576138b9613425565b5b60006138c88482850161388f565b91505092915050565b6000806000606084860312156138ea576138e9613425565b5b60006138f88682870161367b565b93505060206139098682870161367b565b925050604061391a868287016135c6565b9150509250925092565b6000819050919050565b61393781613924565b82525050565b6000602082019050613952600083018461392e565b92915050565b60006020828403121561396e5761396d613425565b5b600061397c8482850161367b565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6139ba816135a5565b82525050565b60006139cc83836139b1565b60208301905092915050565b6000602082019050919050565b60006139f082613985565b6139fa8185613990565b9350613a05836139a1565b8060005b83811015613a36578151613a1d88826139c0565b9750613a28836139d8565b925050600181019050613a09565b5085935050505092915050565b60006020820190508181036000830152613a5d81846139e5565b905092915050565b613a6e81613924565b8114613a7957600080fd5b50565b600081359050613a8b81613a65565b92915050565b600060208284031215613aa757613aa6613425565b5b6000613ab584828501613a7c565b91505092915050565b60008060408385031215613ad557613ad4613425565b5b6000613ae38582860161367b565b9250506020613af48582860161388f565b9150509250929050565b600067ffffffffffffffff821115613b1957613b18613704565b5b613b2282613539565b9050602081019050919050565b6000613b42613b3d84613afe565b613764565b905082815260208101848484011115613b5e57613b5d6136ff565b5b613b698482856137b0565b509392505050565b600082601f830112613b8657613b856136fa565b5b8135613b96848260208601613b2f565b91505092915050565b60008060008060808587031215613bb957613bb8613425565b5b6000613bc78782880161367b565b9450506020613bd88782880161367b565b9350506040613be9878288016135c6565b925050606085013567ffffffffffffffff811115613c0a57613c0961342a565b5b613c1687828801613b71565b91505092959194509250565b60008060408385031215613c3957613c38613425565b5b6000613c478582860161367b565b9250506020613c588582860161367b565b9150509250929050565b60008060408385031215613c7957613c78613425565b5b6000613c87858286016135c6565b9250506020613c988582860161367b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ce957607f821691505b602082108103613cfc57613cfb613ca2565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613d386020836134f5565b9150613d4382613d02565b602082019050919050565b60006020820190508181036000830152613d6781613d2b565b9050919050565b7f45786365656420746f74616c20616d6f756e7400000000000000000000000000600082015250565b6000613da46013836134f5565b9150613daf82613d6e565b602082019050919050565b60006020820190508181036000830152613dd381613d97565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613e10601f836134f5565b9150613e1b82613dda565b602082019050919050565b60006020820190508181036000830152613e3f81613e03565b9050919050565b600081905092915050565b50565b6000613e61600083613e46565b9150613e6c82613e51565b600082019050919050565b6000613e8282613e54565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ef5826135a5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613f2757613f26613ebb565b5b600182019050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613f686014836134f5565b9150613f7382613f32565b602082019050919050565b60006020820190508181036000830152613f9781613f5b565b9050919050565b6000613fa9826135a5565b9150613fb4836135a5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fe957613fe8613ebb565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b600061402a6014836134f5565b915061403582613ff4565b602082019050919050565b600060208201905081810360008301526140598161401d565b9050919050565b600061406b826135a5565b9150614076836135a5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140af576140ae613ebb565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006140f06013836134f5565b91506140fb826140ba565b602082019050919050565b6000602082019050818103600083015261411f816140e3565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b600061415c6017836134f5565b915061416782614126565b602082019050919050565b6000602082019050818103600083015261418b8161414f565b9050919050565b7f457863656564204d696e74204c696d6974000000000000000000000000000000600082015250565b60006141c86011836134f5565b91506141d382614192565b602082019050919050565b600060208201905081810360008301526141f7816141bb565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061425a602f836134f5565b9150614265826141fe565b604082019050919050565b600060208201905081810360008301526142898161424d565b9050919050565b600081905092915050565b60006142a6826134ea565b6142b08185614290565b93506142c0818560208601613506565b80840191505092915050565b60008190508160005260206000209050919050565b600081546142ee81613cd1565b6142f88186614290565b94506001821660008114614313576001811461432457614357565b60ff19831686528186019350614357565b61432d856142cc565b60005b8381101561434f57815481890152600182019150602081019050614330565b838801955050505b50505092915050565b600061436c828661429b565b9150614378828561429b565b915061438482846142e1565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006143ed6026836134f5565b91506143f882614391565b604082019050919050565b6000602082019050818103600083015261441c816143e0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061444a82614423565b614454818561442e565b9350614464818560208601613506565b61446d81613539565b840191505092915050565b600060808201905061448d600083018761363a565b61449a602083018661363a565b6144a760408301856136d0565b81810360608301526144b9818461443f565b905095945050505050565b6000815190506144d38161345b565b92915050565b6000602082840312156144ef576144ee613425565b5b60006144fd848285016144c4565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614540826135a5565b915061454b836135a5565b92508261455b5761455a614506565b5b828204905092915050565b6000614571826135a5565b915061457c836135a5565b92508282101561458f5761458e613ebb565b5b828203905092915050565b60006145a5826135a5565b91506145b0836135a5565b9250826145c0576145bf614506565b5b82820690509291505056fea26469706673582212207943416cd94c675a0be3d336eb7b82ca487098e0e67b4b2ad95f6fd78fdd355e64736f6c634300080e0033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000001341796168756173636120416e6f6e796d6f7573000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002414100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): Ayahuasca Anonymous
Arg [1] : _tokenSymbol (string): AA
Arg [2] : _initBaseURI (string):
Arg [3] : _hiddenMetadataUri (string):

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [5] : 41796168756173636120416e6f6e796d6f757300000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 4141000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

48944:4498:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31199:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34312:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35815:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35378:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52336:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49191:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52886:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52992:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30448:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36680:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49042:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53179:150;;;;;;;;;;;;;:::i;:::-;;36921:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50815:796;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52256:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49308:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52642:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49386:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49113:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49356:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49080:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34120:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31568:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21255:103;;;;;;;;;;;;;:::i;:::-;;53075:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52780:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20604:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49265:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34481:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50080:309;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36091:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49151:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52506:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37177:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51718:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49229:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52169:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36449:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50654:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50395:251;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21513:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31199:305;31301:4;31353:25;31338:40;;;:11;:40;;;;:105;;;;31410:33;31395:48;;;:11;:48;;;;31338:105;:158;;;;31460:36;31484:11;31460:23;:36::i;:::-;31338:158;31318:178;;31199:305;;;:::o;34312:100::-;34366:13;34399:5;34392:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34312:100;:::o;35815:204::-;35883:7;35908:16;35916:7;35908;:16::i;:::-;35903:64;;35933:34;;;;;;;;;;;;;;35903:64;35987:15;:24;36003:7;35987:24;;;;;;;;;;;;;;;;;;;;;35980:31;;35815:204;;;:::o;35378:371::-;35451:13;35467:24;35483:7;35467:15;:24::i;:::-;35451:40;;35512:5;35506:11;;:2;:11;;;35502:48;;35526:24;;;;;;;;;;;;;;35502:48;35583:5;35567:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;35593:37;35610:5;35617:12;:10;:12::i;:::-;35593:16;:37::i;:::-;35592:38;35567:63;35563:138;;;35654:35;;;;;;;;;;;;;;35563:138;35713:28;35722:2;35726:7;35735:5;35713:8;:28::i;:::-;35440:309;35378:371;;:::o;52336:164::-;20835:12;:10;:12::i;:::-;20824:23;;:7;:5;:7::i;:::-;:23;;;20816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52426:4:::1;52415:7;:15;;52407:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;52487:7;52463:21;:31;;;;52336:164:::0;:::o;49191:33::-;;;;:::o;52886:100::-;20835:12;:10;:12::i;:::-;20824:23;;:7;:5;:7::i;:::-;:23;;;20816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52970:10:::1;52958:9;:22;;;;;;;;;;;;:::i;:::-;;52886:100:::0;:::o;52992:77::-;20835:12;:10;:12::i;:::-;20824:23;;:7;:5;:7::i;:::-;:23;;;20816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53057:6:::1;53048;;:15;;;;;;;;;;;;;;;;;;52992:77:::0;:::o;30448:303::-;30492:7;30717:15;:13;:15::i;:::-;30702:12;;30686:13;;:28;:46;30679:53;;30448:303;:::o;36680:170::-;36814:28;36824:4;36830:2;36834:7;36814:9;:28::i;:::-;36680:170;;;:::o;49042:25::-;;;;:::o;53179:150::-;20835:12;:10;:12::i;:::-;20824:23;;:7;:5;:7::i;:::-;:23;;;20816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26091:1:::1;26689:7;;:19:::0;26681:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;26091:1;26822:7;:18;;;;53237:7:::2;53258;:5;:7::i;:::-;53250:21;;53279;53250:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53236:69;;;53320:2;53312:11;;;::::0;::::2;;53229:100;26047:1:::1;27001:7;:22;;;;53179:150::o:0;36921:185::-;37059:39;37076:4;37082:2;37086:7;37059:39;;;;;;;;;;;;:16;:39::i;:::-;36921:185;;;:::o;50815:796::-;50875:16;50900:23;50926:17;50936:6;50926:9;:17::i;:::-;50900:43;;50950:30;50997:15;50983:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50950:63;;51020:22;51045:15;:13;:15::i;:::-;51020:40;;51067:23;51101:26;51136:441;51161:15;51143;:33;:64;;;;;51198:9;;51180:14;:27;;51143:64;51136:441;;;51218:31;51252:11;:27;51264:14;51252:27;;;;;;;;;;;51218:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51295:9;:16;;;51294:17;:49;;;;;51341:1;51315:28;;:9;:14;;;:28;;;;51294:49;51290:111;;;51377:9;:14;;;51356:35;;51290:111;51437:6;51415:28;;:18;:28;;;51411:132;;51489:14;51456:13;51470:15;51456:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;51516:17;;;;;:::i;:::-;;;;51411:132;51553:16;;;;;:::i;:::-;;;;51209:368;51136:441;;;51592:13;51585:20;;;;;;;50815:796;;;:::o;52256:74::-;20835:12;:10;:12::i;:::-;20824:23;;:7;:5;:7::i;:::-;:23;;;20816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52319:5:::1;52312:4;:12;;;;52256:74:::0;:::o;49308:41::-;;;;:::o;52642:132::-;20835:12;:10;:12::i;:::-;20824:23;;:7;:5;:7::i;:::-;:23;;;20816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52750:18:::1;52730:17;:38;;;;;;;;;;;;:::i;:::-;;52642:132:::0;:::o;49386:27::-;;;;;;;;;;;;;:::o;49113:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49356:25::-;;;;;;;;;;;;;:::o;49080:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34120:125::-;34184:7;34211:21;34224:7;34211:12;:21::i;:::-;:26;;;34204:33;;34120:125;;;:::o;31568:206::-;31632:7;31673:1;31656:19;;:5;:19;;;31652:60;;31684:28;;;;;;;;;;;;;;31652:60;31738:12;:19;31751:5;31738:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;31730:36;;31723:43;;31568:206;;;:::o;21255:103::-;20835:12;:10;:12::i;:::-;20824:23;;:7;:5;:7::i;:::-;:23;;;20816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21320:30:::1;21347:1;21320:18;:30::i;:::-;21255:103::o:0;53075:98::-;20835:12;:10;:12::i;:::-;20824:23;;:7;:5;:7::i;:::-;:23;;;20816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53156:11:::1;53143:10;:24;;;;53075:98:::0;:::o;52780:100::-;20835:12;:10;:12::i;:::-;20824:23;;:7;:5;:7::i;:::-;:23;;;20816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52864:10:::1;52852:9;:22;;;;;;;;;;;;:::i;:::-;;52780:100:::0;:::o;20604:87::-;20650:7;20677:6;;;;;;;;;;;20670:13;;20604:87;:::o;49265:38::-;;;;:::o;34481:104::-;34537:13;34570:7;34563:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34481:104;:::o;50080:309::-;50145:11;49777:1;49763:11;:15;:52;;;;;49797:18;;49782:11;:33;;49763:52;49755:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;49886:9;;49871:11;49855:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;49847:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;50178:11:::1;50025;50018:4;;:18;;;;:::i;:::-;50005:9;:31;;49997:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;50207:6:::2;;;;;;;;;;;50206:7;50198:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;50295:21;;50280:11;50256:21;50266:10;50256:9;:21::i;:::-;:35;;;;:::i;:::-;:60;;50248:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;50347:36;50357:12;:10;:12::i;:::-;50371:11;50347:9;:36::i;:::-;49927:1:::1;50080:309:::0;;:::o;36091:287::-;36202:12;:10;:12::i;:::-;36190:24;;:8;:24;;;36186:54;;36223:17;;;;;;;;;;;;;;36186:54;36298:8;36253:18;:32;36272:12;:10;:12::i;:::-;36253:32;;;;;;;;;;;;;;;:42;36286:8;36253:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;36351:8;36322:48;;36337:12;:10;:12::i;:::-;36322:48;;;36361:8;36322:48;;;;;;:::i;:::-;;;;;;;;36091:287;;:::o;49151:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52506:130::-;20835:12;:10;:12::i;:::-;20824:23;;:7;:5;:7::i;:::-;:23;;;20816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52611:19:::1;52590:18;:40;;;;52506:130:::0;:::o;37177:369::-;37344:28;37354:4;37360:2;37364:7;37344:9;:28::i;:::-;37387:15;:2;:13;;;:15::i;:::-;:76;;;;;37407:56;37438:4;37444:2;37448:7;37457:5;37407:30;:56::i;:::-;37406:57;37387:76;37383:156;;;37487:40;;;;;;;;;;;;;;37383:156;37177:369;;;;:::o;51718:445::-;51792:13;51822:17;51830:8;51822:7;:17::i;:::-;51814:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;51916:5;51904:17;;:8;;;;;;;;;;;:17;;;51900:64;;51939:17;51932:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51900:64;51972:28;52003:10;:8;:10::i;:::-;51972:41;;52058:1;52033:14;52027:28;:32;:130;;;;;;;;;;;;;;;;;52095:14;52111:19;:8;:17;:19::i;:::-;52132:9;52078:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52027:130;52020:137;;;51718:445;;;;:::o;49229:31::-;;;;:::o;52169:81::-;20835:12;:10;:12::i;:::-;20824:23;;:7;:5;:7::i;:::-;:23;;;20816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52238:6:::1;52227:8;;:17;;;;;;;;;;;;;;;;;;52169:81:::0;:::o;36449:164::-;36546:4;36570:18;:25;36589:5;36570:25;;;;;;;;;;;;;;;:35;36596:8;36570:35;;;;;;;;;;;;;;;;;;;;;;;;;36563:42;;36449:164;;;;:::o;50654:155::-;50740:11;49777:1;49763:11;:15;:52;;;;;49797:18;;49782:11;:33;;49763:52;49755:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;49886:9;;49871:11;49855:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;49847:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20835:12:::1;:10;:12::i;:::-;20824:23;;:7;:5;:7::i;:::-;:23;;;20816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50770:33:::2;50780:9;50791:11;50770:9;:33::i;:::-;50654:155:::0;;;:::o;50395:251::-;20835:12;:10;:12::i;:::-;20824:23;;:7;:5;:7::i;:::-;:23;;;20816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50490:1:::1;50476:11;:15;50468:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;50563:9;;50548:11;50532:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;50524:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;50604:36;50614:12;:10;:12::i;:::-;50628:11;50604:9;:36::i;:::-;50395:251:::0;:::o;21513:201::-;20835:12;:10;:12::i;:::-;20824:23;;:7;:5;:7::i;:::-;:23;;;20816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21622:1:::1;21602:22;;:8;:22;;::::0;21594:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;21678:28;21697:8;21678:18;:28::i;:::-;21513:201:::0;:::o;19454:157::-;19539:4;19578:25;19563:40;;;:11;:40;;;;19556:47;;19454:157;;;:::o;37801:174::-;37858:4;37901:7;37882:15;:13;:15::i;:::-;:26;;:53;;;;;37922:13;;37912:7;:23;37882:53;:85;;;;;37940:11;:20;37952:7;37940:20;;;;;;;;;;;:27;;;;;;;;;;;;37939:28;37882:85;37875:92;;37801:174;;;:::o;18461:98::-;18514:7;18541:10;18534:17;;18461:98;:::o;45958:196::-;46100:2;46073:15;:24;46089:7;46073:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;46138:7;46134:2;46118:28;;46127:5;46118:28;;;;;;;;;;;;45958:196;;;:::o;51617:95::-;51682:7;51705:1;51698:8;;51617:95;:::o;40901:2130::-;41016:35;41054:21;41067:7;41054:12;:21::i;:::-;41016:59;;41114:4;41092:26;;:13;:18;;;:26;;;41088:67;;41127:28;;;;;;;;;;;;;;41088:67;41168:22;41210:4;41194:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;41231:36;41248:4;41254:12;:10;:12::i;:::-;41231:16;:36::i;:::-;41194:73;:126;;;;41308:12;:10;:12::i;:::-;41284:36;;:20;41296:7;41284:11;:20::i;:::-;:36;;;41194:126;41168:153;;41339:17;41334:66;;41365:35;;;;;;;;;;;;;;41334:66;41429:1;41415:16;;:2;:16;;;41411:52;;41440:23;;;;;;;;;;;;;;41411:52;41476:43;41498:4;41504:2;41508:7;41517:1;41476:21;:43::i;:::-;41584:35;41601:1;41605:7;41614:4;41584:8;:35::i;:::-;41945:1;41915:12;:18;41928:4;41915:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41989:1;41961:12;:16;41974:2;41961:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42007:31;42041:11;:20;42053:7;42041:20;;;;;;;;;;;42007:54;;42092:2;42076:8;:13;;;:18;;;;;;;;;;;;;;;;;;42142:15;42109:8;:23;;;:49;;;;;;;;;;;;;;;;;;42410:19;42442:1;42432:7;:11;42410:33;;42458:31;42492:11;:24;42504:11;42492:24;;;;;;;;;;;42458:58;;42560:1;42535:27;;:8;:13;;;;;;;;;;;;:27;;;42531:384;;42745:13;;42730:11;:28;42726:174;;42799:4;42783:8;:13;;;:20;;;;;;;;;;;;;;;;;;42852:13;:28;;;42826:8;:23;;;:54;;;;;;;;;;;;;;;;;;42726:174;42531:384;41890:1036;;;42962:7;42958:2;42943:27;;42952:4;42943:27;;;;;;;;;;;;42981:42;43002:4;43008:2;43012:7;43021:1;42981:20;:42::i;:::-;41005:2026;;40901:2130;;;:::o;32949:1109::-;33011:21;;:::i;:::-;33045:12;33060:7;33045:22;;33128:4;33109:15;:13;:15::i;:::-;:23;;:47;;;;;33143:13;;33136:4;:20;33109:47;33105:886;;;33177:31;33211:11;:17;33223:4;33211:17;;;;;;;;;;;33177:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33252:9;:16;;;33247:729;;33323:1;33297:28;;:9;:14;;;:28;;;33293:101;;33361:9;33354:16;;;;;;33293:101;33696:261;33703:4;33696:261;;;33736:6;;;;;;;;33781:11;:17;33793:4;33781:17;;;;;;;;;;;33769:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33855:1;33829:28;;:9;:14;;;:28;;;33825:109;;33897:9;33890:16;;;;;;33825:109;33696:261;;;33247:729;33158:833;33105:886;34019:31;;;;;;;;;;;;;;32949:1109;;;;:::o;21874:191::-;21948:16;21967:6;;;;;;;;;;;21948:25;;21993:8;21984:6;;:17;;;;;;;;;;;;;;;;;;22048:8;22017:40;;22038:8;22017:40;;;;;;;;;;;;21937:128;21874:191;:::o;37983:104::-;38052:27;38062:2;38066:8;38052:27;;;;;;;;;;;;:9;:27::i;:::-;37983:104;;:::o;10589:326::-;10649:4;10906:1;10884:7;:19;;;:23;10877:30;;10589:326;;;:::o;46646:667::-;46809:4;46846:2;46830:36;;;46867:12;:10;:12::i;:::-;46881:4;46887:7;46896:5;46830:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46826:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47081:1;47064:6;:13;:18;47060:235;;47110:40;;;;;;;;;;;;;;47060:235;47253:6;47247:13;47238:6;47234:2;47230:15;47223:38;46826:480;46959:45;;;46949:55;;;:6;:55;;;;46942:62;;;46646:667;;;;;;:::o;53335:104::-;53395:13;53424:9;53417:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53335:104;:::o;1237:723::-;1293:13;1523:1;1514:5;:10;1510:53;;1541:10;;;;;;;;;;;;;;;;;;;;;1510:53;1573:12;1588:5;1573:20;;1604:14;1629:78;1644:1;1636:4;:9;1629:78;;1662:8;;;;;:::i;:::-;;;;1693:2;1685:10;;;;;:::i;:::-;;;1629:78;;;1717:19;1749:6;1739:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1717:39;;1767:154;1783:1;1774:5;:10;1767:154;;1811:1;1801:11;;;;;:::i;:::-;;;1878:2;1870:5;:10;;;;:::i;:::-;1857:2;:24;;;;:::i;:::-;1844:39;;1827:6;1834;1827:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1907:2;1898:11;;;;;:::i;:::-;;;1767:154;;;1945:6;1931:21;;;;;1237:723;;;;:::o;47961:159::-;;;;;:::o;48779:158::-;;;;;:::o;38450:163::-;38573:32;38579:2;38583:8;38593:5;38600:4;38573:5;:32::i;:::-;38450:163;;;:::o;38872:1775::-;39011:20;39034:13;;39011:36;;39076:1;39062:16;;:2;:16;;;39058:48;;39087:19;;;;;;;;;;;;;;39058:48;39133:1;39121:8;:13;39117:44;;39143:18;;;;;;;;;;;;;;39117:44;39174:61;39204:1;39208:2;39212:12;39226:8;39174:21;:61::i;:::-;39547:8;39512:12;:16;39525:2;39512:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39611:8;39571:12;:16;39584:2;39571:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39670:2;39637:11;:25;39649:12;39637:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;39737:15;39687:11;:25;39699:12;39687:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;39770:20;39793:12;39770:35;;39820:11;39849:8;39834:12;:23;39820:37;;39878:4;:23;;;;;39886:15;:2;:13;;;:15::i;:::-;39878:23;39874:641;;;39922:314;39978:12;39974:2;39953:38;;39970:1;39953:38;;;;;;;;;;;;40019:69;40058:1;40062:2;40066:14;;;;;;40082:5;40019:30;:69::i;:::-;40014:174;;40124:40;;;;;;;;;;;;;;40014:174;40231:3;40215:12;:19;39922:314;;40317:12;40300:13;;:29;40296:43;;40331:8;;;40296:43;39874:641;;;40380:120;40436:14;;;;;;40432:2;40411:40;;40428:1;40411:40;;;;;;;;;;;;40495:3;40479:12;:19;40380:120;;39874:641;40545:12;40529:13;:28;;;;39487:1082;;40579:60;40608:1;40612:2;40616:12;40630:8;40579:20;:60::i;:::-;39000:1647;38872:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:116::-;7981:21;7996:5;7981:21;:::i;:::-;7974:5;7971:32;7961:60;;8017:1;8014;8007:12;7961:60;7911:116;:::o;8033:133::-;8076:5;8114:6;8101:20;8092:29;;8130:30;8154:5;8130:30;:::i;:::-;8033:133;;;;:::o;8172:323::-;8228:6;8277:2;8265:9;8256:7;8252:23;8248:32;8245:119;;;8283:79;;:::i;:::-;8245:119;8403:1;8428:50;8470:7;8461:6;8450:9;8446:22;8428:50;:::i;:::-;8418:60;;8374:114;8172:323;;;;:::o;8501:619::-;8578:6;8586;8594;8643:2;8631:9;8622:7;8618:23;8614:32;8611:119;;;8649:79;;:::i;:::-;8611:119;8769:1;8794:53;8839:7;8830:6;8819:9;8815:22;8794:53;:::i;:::-;8784:63;;8740:117;8896:2;8922:53;8967:7;8958:6;8947:9;8943:22;8922:53;:::i;:::-;8912:63;;8867:118;9024:2;9050:53;9095:7;9086:6;9075:9;9071:22;9050:53;:::i;:::-;9040:63;;8995:118;8501:619;;;;;:::o;9126:77::-;9163:7;9192:5;9181:16;;9126:77;;;:::o;9209:118::-;9296:24;9314:5;9296:24;:::i;:::-;9291:3;9284:37;9209:118;;:::o;9333:222::-;9426:4;9464:2;9453:9;9449:18;9441:26;;9477:71;9545:1;9534:9;9530:17;9521:6;9477:71;:::i;:::-;9333:222;;;;:::o;9561:329::-;9620:6;9669:2;9657:9;9648:7;9644:23;9640:32;9637:119;;;9675:79;;:::i;:::-;9637:119;9795:1;9820:53;9865:7;9856:6;9845:9;9841:22;9820:53;:::i;:::-;9810:63;;9766:117;9561:329;;;;:::o;9896:114::-;9963:6;9997:5;9991:12;9981:22;;9896:114;;;:::o;10016:184::-;10115:11;10149:6;10144:3;10137:19;10189:4;10184:3;10180:14;10165:29;;10016:184;;;;:::o;10206:132::-;10273:4;10296:3;10288:11;;10326:4;10321:3;10317:14;10309:22;;10206:132;;;:::o;10344:108::-;10421:24;10439:5;10421:24;:::i;:::-;10416:3;10409:37;10344:108;;:::o;10458:179::-;10527:10;10548:46;10590:3;10582:6;10548:46;:::i;:::-;10626:4;10621:3;10617:14;10603:28;;10458:179;;;;:::o;10643:113::-;10713:4;10745;10740:3;10736:14;10728:22;;10643:113;;;:::o;10792:732::-;10911:3;10940:54;10988:5;10940:54;:::i;:::-;11010:86;11089:6;11084:3;11010:86;:::i;:::-;11003:93;;11120:56;11170:5;11120:56;:::i;:::-;11199:7;11230:1;11215:284;11240:6;11237:1;11234:13;11215:284;;;11316:6;11310:13;11343:63;11402:3;11387:13;11343:63;:::i;:::-;11336:70;;11429:60;11482:6;11429:60;:::i;:::-;11419:70;;11275:224;11262:1;11259;11255:9;11250:14;;11215:284;;;11219:14;11515:3;11508:10;;10916:608;;;10792:732;;;;:::o;11530:373::-;11673:4;11711:2;11700:9;11696:18;11688:26;;11760:9;11754:4;11750:20;11746:1;11735:9;11731:17;11724:47;11788:108;11891:4;11882:6;11788:108;:::i;:::-;11780:116;;11530:373;;;;:::o;11909:122::-;11982:24;12000:5;11982:24;:::i;:::-;11975:5;11972:35;11962:63;;12021:1;12018;12011:12;11962:63;11909:122;:::o;12037:139::-;12083:5;12121:6;12108:20;12099:29;;12137:33;12164:5;12137:33;:::i;:::-;12037:139;;;;:::o;12182:329::-;12241:6;12290:2;12278:9;12269:7;12265:23;12261:32;12258:119;;;12296:79;;:::i;:::-;12258:119;12416:1;12441:53;12486:7;12477:6;12466:9;12462:22;12441:53;:::i;:::-;12431:63;;12387:117;12182:329;;;;:::o;12517:468::-;12582:6;12590;12639:2;12627:9;12618:7;12614:23;12610:32;12607:119;;;12645:79;;:::i;:::-;12607:119;12765:1;12790:53;12835:7;12826:6;12815:9;12811:22;12790:53;:::i;:::-;12780:63;;12736:117;12892:2;12918:50;12960:7;12951:6;12940:9;12936:22;12918:50;:::i;:::-;12908:60;;12863:115;12517:468;;;;;:::o;12991:307::-;13052:4;13142:18;13134:6;13131:30;13128:56;;;13164:18;;:::i;:::-;13128:56;13202:29;13224:6;13202:29;:::i;:::-;13194:37;;13286:4;13280;13276:15;13268:23;;12991:307;;;:::o;13304:410::-;13381:5;13406:65;13422:48;13463:6;13422:48;:::i;:::-;13406:65;:::i;:::-;13397:74;;13494:6;13487:5;13480:21;13532:4;13525:5;13521:16;13570:3;13561:6;13556:3;13552:16;13549:25;13546:112;;;13577:79;;:::i;:::-;13546:112;13667:41;13701:6;13696:3;13691;13667:41;:::i;:::-;13387:327;13304:410;;;;;:::o;13733:338::-;13788:5;13837:3;13830:4;13822:6;13818:17;13814:27;13804:122;;13845:79;;:::i;:::-;13804:122;13962:6;13949:20;13987:78;14061:3;14053:6;14046:4;14038:6;14034:17;13987:78;:::i;:::-;13978:87;;13794:277;13733:338;;;;:::o;14077:943::-;14172:6;14180;14188;14196;14245:3;14233:9;14224:7;14220:23;14216:33;14213:120;;;14252:79;;:::i;:::-;14213:120;14372:1;14397:53;14442:7;14433:6;14422:9;14418:22;14397:53;:::i;:::-;14387:63;;14343:117;14499:2;14525:53;14570:7;14561:6;14550:9;14546:22;14525:53;:::i;:::-;14515:63;;14470:118;14627:2;14653:53;14698:7;14689:6;14678:9;14674:22;14653:53;:::i;:::-;14643:63;;14598:118;14783:2;14772:9;14768:18;14755:32;14814:18;14806:6;14803:30;14800:117;;;14836:79;;:::i;:::-;14800:117;14941:62;14995:7;14986:6;14975:9;14971:22;14941:62;:::i;:::-;14931:72;;14726:287;14077:943;;;;;;;:::o;15026:474::-;15094:6;15102;15151:2;15139:9;15130:7;15126:23;15122:32;15119:119;;;15157:79;;:::i;:::-;15119:119;15277:1;15302:53;15347:7;15338:6;15327:9;15323:22;15302:53;:::i;:::-;15292:63;;15248:117;15404:2;15430:53;15475:7;15466:6;15455:9;15451:22;15430:53;:::i;:::-;15420:63;;15375:118;15026:474;;;;;:::o;15506:::-;15574:6;15582;15631:2;15619:9;15610:7;15606:23;15602:32;15599:119;;;15637:79;;:::i;:::-;15599:119;15757:1;15782:53;15827:7;15818:6;15807:9;15803:22;15782:53;:::i;:::-;15772:63;;15728:117;15884:2;15910:53;15955:7;15946:6;15935:9;15931:22;15910:53;:::i;:::-;15900:63;;15855:118;15506:474;;;;;:::o;15986:180::-;16034:77;16031:1;16024:88;16131:4;16128:1;16121:15;16155:4;16152:1;16145:15;16172:320;16216:6;16253:1;16247:4;16243:12;16233:22;;16300:1;16294:4;16290:12;16321:18;16311:81;;16377:4;16369:6;16365:17;16355:27;;16311:81;16439:2;16431:6;16428:14;16408:18;16405:38;16402:84;;16458:18;;:::i;:::-;16402:84;16223:269;16172:320;;;:::o;16498:182::-;16638:34;16634:1;16626:6;16622:14;16615:58;16498:182;:::o;16686:366::-;16828:3;16849:67;16913:2;16908:3;16849:67;:::i;:::-;16842:74;;16925:93;17014:3;16925:93;:::i;:::-;17043:2;17038:3;17034:12;17027:19;;16686:366;;;:::o;17058:419::-;17224:4;17262:2;17251:9;17247:18;17239:26;;17311:9;17305:4;17301:20;17297:1;17286:9;17282:17;17275:47;17339:131;17465:4;17339:131;:::i;:::-;17331:139;;17058:419;;;:::o;17483:169::-;17623:21;17619:1;17611:6;17607:14;17600:45;17483:169;:::o;17658:366::-;17800:3;17821:67;17885:2;17880:3;17821:67;:::i;:::-;17814:74;;17897:93;17986:3;17897:93;:::i;:::-;18015:2;18010:3;18006:12;17999:19;;17658:366;;;:::o;18030:419::-;18196:4;18234:2;18223:9;18219:18;18211:26;;18283:9;18277:4;18273:20;18269:1;18258:9;18254:17;18247:47;18311:131;18437:4;18311:131;:::i;:::-;18303:139;;18030:419;;;:::o;18455:181::-;18595:33;18591:1;18583:6;18579:14;18572:57;18455:181;:::o;18642:366::-;18784:3;18805:67;18869:2;18864:3;18805:67;:::i;:::-;18798:74;;18881:93;18970:3;18881:93;:::i;:::-;18999:2;18994:3;18990:12;18983:19;;18642:366;;;:::o;19014:419::-;19180:4;19218:2;19207:9;19203:18;19195:26;;19267:9;19261:4;19257:20;19253:1;19242:9;19238:17;19231:47;19295:131;19421:4;19295:131;:::i;:::-;19287:139;;19014:419;;;:::o;19439:147::-;19540:11;19577:3;19562:18;;19439:147;;;;:::o;19592:114::-;;:::o;19712:398::-;19871:3;19892:83;19973:1;19968:3;19892:83;:::i;:::-;19885:90;;19984:93;20073:3;19984:93;:::i;:::-;20102:1;20097:3;20093:11;20086:18;;19712:398;;;:::o;20116:379::-;20300:3;20322:147;20465:3;20322:147;:::i;:::-;20315:154;;20486:3;20479:10;;20116:379;;;:::o;20501:180::-;20549:77;20546:1;20539:88;20646:4;20643:1;20636:15;20670:4;20667:1;20660:15;20687:180;20735:77;20732:1;20725:88;20832:4;20829:1;20822:15;20856:4;20853:1;20846:15;20873:233;20912:3;20935:24;20953:5;20935:24;:::i;:::-;20926:33;;20981:66;20974:5;20971:77;20968:103;;21051:18;;:::i;:::-;20968:103;21098:1;21091:5;21087:13;21080:20;;20873:233;;;:::o;21112:170::-;21252:22;21248:1;21240:6;21236:14;21229:46;21112:170;:::o;21288:366::-;21430:3;21451:67;21515:2;21510:3;21451:67;:::i;:::-;21444:74;;21527:93;21616:3;21527:93;:::i;:::-;21645:2;21640:3;21636:12;21629:19;;21288:366;;;:::o;21660:419::-;21826:4;21864:2;21853:9;21849:18;21841:26;;21913:9;21907:4;21903:20;21899:1;21888:9;21884:17;21877:47;21941:131;22067:4;21941:131;:::i;:::-;21933:139;;21660:419;;;:::o;22085:305::-;22125:3;22144:20;22162:1;22144:20;:::i;:::-;22139:25;;22178:20;22196:1;22178:20;:::i;:::-;22173:25;;22332:1;22264:66;22260:74;22257:1;22254:81;22251:107;;;22338:18;;:::i;:::-;22251:107;22382:1;22379;22375:9;22368:16;;22085:305;;;;:::o;22396:170::-;22536:22;22532:1;22524:6;22520:14;22513:46;22396:170;:::o;22572:366::-;22714:3;22735:67;22799:2;22794:3;22735:67;:::i;:::-;22728:74;;22811:93;22900:3;22811:93;:::i;:::-;22929:2;22924:3;22920:12;22913:19;;22572:366;;;:::o;22944:419::-;23110:4;23148:2;23137:9;23133:18;23125:26;;23197:9;23191:4;23187:20;23183:1;23172:9;23168:17;23161:47;23225:131;23351:4;23225:131;:::i;:::-;23217:139;;22944:419;;;:::o;23369:348::-;23409:7;23432:20;23450:1;23432:20;:::i;:::-;23427:25;;23466:20;23484:1;23466:20;:::i;:::-;23461:25;;23654:1;23586:66;23582:74;23579:1;23576:81;23571:1;23564:9;23557:17;23553:105;23550:131;;;23661:18;;:::i;:::-;23550:131;23709:1;23706;23702:9;23691:20;;23369:348;;;;:::o;23723:169::-;23863:21;23859:1;23851:6;23847:14;23840:45;23723:169;:::o;23898:366::-;24040:3;24061:67;24125:2;24120:3;24061:67;:::i;:::-;24054:74;;24137:93;24226:3;24137:93;:::i;:::-;24255:2;24250:3;24246:12;24239:19;;23898:366;;;:::o;24270:419::-;24436:4;24474:2;24463:9;24459:18;24451:26;;24523:9;24517:4;24513:20;24509:1;24498:9;24494:17;24487:47;24551:131;24677:4;24551:131;:::i;:::-;24543:139;;24270:419;;;:::o;24695:173::-;24835:25;24831:1;24823:6;24819:14;24812:49;24695:173;:::o;24874:366::-;25016:3;25037:67;25101:2;25096:3;25037:67;:::i;:::-;25030:74;;25113:93;25202:3;25113:93;:::i;:::-;25231:2;25226:3;25222:12;25215:19;;24874:366;;;:::o;25246:419::-;25412:4;25450:2;25439:9;25435:18;25427:26;;25499:9;25493:4;25489:20;25485:1;25474:9;25470:17;25463:47;25527:131;25653:4;25527:131;:::i;:::-;25519:139;;25246:419;;;:::o;25671:167::-;25811:19;25807:1;25799:6;25795:14;25788:43;25671:167;:::o;25844:366::-;25986:3;26007:67;26071:2;26066:3;26007:67;:::i;:::-;26000:74;;26083:93;26172:3;26083:93;:::i;:::-;26201:2;26196:3;26192:12;26185:19;;25844:366;;;:::o;26216:419::-;26382:4;26420:2;26409:9;26405:18;26397:26;;26469:9;26463:4;26459:20;26455:1;26444:9;26440:17;26433:47;26497:131;26623:4;26497:131;:::i;:::-;26489:139;;26216:419;;;:::o;26641:234::-;26781:34;26777:1;26769:6;26765:14;26758:58;26850:17;26845:2;26837:6;26833:15;26826:42;26641:234;:::o;26881:366::-;27023:3;27044:67;27108:2;27103:3;27044:67;:::i;:::-;27037:74;;27120:93;27209:3;27120:93;:::i;:::-;27238:2;27233:3;27229:12;27222:19;;26881:366;;;:::o;27253:419::-;27419:4;27457:2;27446:9;27442:18;27434:26;;27506:9;27500:4;27496:20;27492:1;27481:9;27477:17;27470:47;27534:131;27660:4;27534:131;:::i;:::-;27526:139;;27253:419;;;:::o;27678:148::-;27780:11;27817:3;27802:18;;27678:148;;;;:::o;27832:377::-;27938:3;27966:39;27999:5;27966:39;:::i;:::-;28021:89;28103:6;28098:3;28021:89;:::i;:::-;28014:96;;28119:52;28164:6;28159:3;28152:4;28145:5;28141:16;28119:52;:::i;:::-;28196:6;28191:3;28187:16;28180:23;;27942:267;27832:377;;;;:::o;28215:141::-;28264:4;28287:3;28279:11;;28310:3;28307:1;28300:14;28344:4;28341:1;28331:18;28323:26;;28215:141;;;:::o;28386:845::-;28489:3;28526:5;28520:12;28555:36;28581:9;28555:36;:::i;:::-;28607:89;28689:6;28684:3;28607:89;:::i;:::-;28600:96;;28727:1;28716:9;28712:17;28743:1;28738:137;;;;28889:1;28884:341;;;;28705:520;;28738:137;28822:4;28818:9;28807;28803:25;28798:3;28791:38;28858:6;28853:3;28849:16;28842:23;;28738:137;;28884:341;28951:38;28983:5;28951:38;:::i;:::-;29011:1;29025:154;29039:6;29036:1;29033:13;29025:154;;;29113:7;29107:14;29103:1;29098:3;29094:11;29087:35;29163:1;29154:7;29150:15;29139:26;;29061:4;29058:1;29054:12;29049:17;;29025:154;;;29208:6;29203:3;29199:16;29192:23;;28891:334;;28705:520;;28493:738;;28386:845;;;;:::o;29237:589::-;29462:3;29484:95;29575:3;29566:6;29484:95;:::i;:::-;29477:102;;29596:95;29687:3;29678:6;29596:95;:::i;:::-;29589:102;;29708:92;29796:3;29787:6;29708:92;:::i;:::-;29701:99;;29817:3;29810:10;;29237:589;;;;;;:::o;29832:225::-;29972:34;29968:1;29960:6;29956:14;29949:58;30041:8;30036:2;30028:6;30024:15;30017:33;29832:225;:::o;30063:366::-;30205:3;30226:67;30290:2;30285:3;30226:67;:::i;:::-;30219:74;;30302:93;30391:3;30302:93;:::i;:::-;30420:2;30415:3;30411:12;30404:19;;30063:366;;;:::o;30435:419::-;30601:4;30639:2;30628:9;30624:18;30616:26;;30688:9;30682:4;30678:20;30674:1;30663:9;30659:17;30652:47;30716:131;30842:4;30716:131;:::i;:::-;30708:139;;30435:419;;;:::o;30860:98::-;30911:6;30945:5;30939:12;30929:22;;30860:98;;;:::o;30964:168::-;31047:11;31081:6;31076:3;31069:19;31121:4;31116:3;31112:14;31097:29;;30964:168;;;;:::o;31138:360::-;31224:3;31252:38;31284:5;31252:38;:::i;:::-;31306:70;31369:6;31364:3;31306:70;:::i;:::-;31299:77;;31385:52;31430:6;31425:3;31418:4;31411:5;31407:16;31385:52;:::i;:::-;31462:29;31484:6;31462:29;:::i;:::-;31457:3;31453:39;31446:46;;31228:270;31138:360;;;;:::o;31504:640::-;31699:4;31737:3;31726:9;31722:19;31714:27;;31751:71;31819:1;31808:9;31804:17;31795:6;31751:71;:::i;:::-;31832:72;31900:2;31889:9;31885:18;31876:6;31832:72;:::i;:::-;31914;31982:2;31971:9;31967:18;31958:6;31914:72;:::i;:::-;32033:9;32027:4;32023:20;32018:2;32007:9;32003:18;31996:48;32061:76;32132:4;32123:6;32061:76;:::i;:::-;32053:84;;31504:640;;;;;;;:::o;32150:141::-;32206:5;32237:6;32231:13;32222:22;;32253:32;32279:5;32253:32;:::i;:::-;32150:141;;;;:::o;32297:349::-;32366:6;32415:2;32403:9;32394:7;32390:23;32386:32;32383:119;;;32421:79;;:::i;:::-;32383:119;32541:1;32566:63;32621:7;32612:6;32601:9;32597:22;32566:63;:::i;:::-;32556:73;;32512:127;32297:349;;;;:::o;32652:180::-;32700:77;32697:1;32690:88;32797:4;32794:1;32787:15;32821:4;32818:1;32811:15;32838:185;32878:1;32895:20;32913:1;32895:20;:::i;:::-;32890:25;;32929:20;32947:1;32929:20;:::i;:::-;32924:25;;32968:1;32958:35;;32973:18;;:::i;:::-;32958:35;33015:1;33012;33008:9;33003:14;;32838:185;;;;:::o;33029:191::-;33069:4;33089:20;33107:1;33089:20;:::i;:::-;33084:25;;33123:20;33141:1;33123:20;:::i;:::-;33118:25;;33162:1;33159;33156:8;33153:34;;;33167:18;;:::i;:::-;33153:34;33212:1;33209;33205:9;33197:17;;33029:191;;;;:::o;33226:176::-;33258:1;33275:20;33293:1;33275:20;:::i;:::-;33270:25;;33309:20;33327:1;33309:20;:::i;:::-;33304:25;;33348:1;33338:35;;33353:18;;:::i;:::-;33338:35;33394:1;33391;33387:9;33382:14;;33226:176;;;;:::o

Swarm Source

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