ETH Price: $2,284.07 (-3.50%)

Token

TinyAlpaca (TNYALP)
 

Overview

Max Total Supply

398 TNYALP

Holders

43

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
otakuclub.eth
Balance
5 TNYALP
0x1c308bCdFfa3CDaFd2D2Eaa740ae5402C44F2448
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:
TinyAlpacas

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-05-27
*/

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 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 {}
}

// File: contracts/TinyAlpacas.sol



pragma solidity >=0.8.9 <0.9.0;





contract TinyAlpacas is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;

  bytes32 public merkleRoot;
  mapping(address => bool) public whitelistClaimed;

  string public uriPrefix = '';
  string public uriSuffix = '';
  string public hiddenMetadataUri;
  
  uint256 public cost;
  uint256 public maxSupply;
  uint256 public maxMintAmountPerTx;

  bool public paused = true;
  bool public whitelistMintEnabled = false;
  bool public revealed = false;
  uint256 public freeSupply = 333;
  
  address payable private devguy = payable(0x4b753135749d9003943c74F17825Da2413947c22);

  constructor(
    string memory _tokenName,
    string memory _tokenSymbol,
    uint256 _cost,
    uint256 _maxSupply,
    uint256 _maxMintAmountPerTx,
    string memory _hiddenMetadataUri
  ) ERC721A(_tokenName, _tokenSymbol) {
    setCost(_cost);
    maxSupply = _maxSupply;
    setMaxMintAmountPerTx(_maxMintAmountPerTx);
    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) {
    if(_mintAmount <= freeSupply){
      require(msg.value >= 0, 'Insufficient funds!');
      freeSupply = freeSupply - _mintAmount;
    }else{
      require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
    }
    _;
  }

  function whitelistMint(uint256 _mintAmount, bytes32[] calldata _merkleProof) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    // Verify whitelist requirements
    require(whitelistMintEnabled, 'The whitelist sale is not enabled!');
    require(!whitelistClaimed[_msgSender()], 'Address already claimed!');
    bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
    require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Invalid proof!');

    whitelistClaimed[_msgSender()] = true;
    _safeMint(_msgSender(), _mintAmount);
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    require(!paused, 'The contract is paused!');

    _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 < _currentIndex) {
      TokenOwnership memory ownership = _ownerships[currentTokenId];

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

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

          ownedTokenIndex++;
        }
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

  function mintedTokens() internal view returns (uint256) {
    return totalSupply();
  }

  function freeSupplyCount() internal view returns (uint256) {
    return freeSupply;
  }

  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 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 setFreeMintSupply(uint256 _freeSupply) public onlyOwner {
    freeSupply = _freeSupply;
  }

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

  function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
    merkleRoot = _merkleRoot;
  }

  function setWhitelistMintEnabled(bool _state) public onlyOwner {
    whitelistMintEnabled = _state;
  }

  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":"uint256","name":"_cost","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"},{"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":[{"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":[],"name":"freeSupply","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":"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":"uint256","name":"_freeSupply","type":"uint256"}],"name":"setFreeMintSupply","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":"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":"bool","name":"_state","type":"bool"}],"name":"setWhitelistMintEnabled","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":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600c90805190602001906200002b929190620004cb565b5060405180602001604052806000815250600d908051906020019062000053929190620004cb565b506001601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff0219169083151502179055506000601260026101000a81548160ff02191690831515021790555061014d601355734b753135749d9003943c74f17825da2413947c22601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200010d57600080fd5b506040516200552e3803806200552e833981810160405281019062000133919062000753565b858581600290805190602001906200014d929190620004cb565b50806003908051906020019062000166929190620004cb565b5062000177620001ed60201b60201c565b60008190555050506200019f62000193620001f660201b60201c565b620001fe60201b60201c565b6001600981905550620001b884620002c460201b60201c565b82601081905550620001d0826200035d60201b60201c565b620001e181620003f660201b60201c565b50505050505062000933565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002d4620001f660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002fa620004a160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000353576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200034a90620008ad565b60405180910390fd5b80600f8190555050565b6200036d620001f660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000393620004a160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003ec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e390620008ad565b60405180910390fd5b8060118190555050565b62000406620001f660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200042c620004a160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000485576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200047c90620008ad565b60405180910390fd5b80600e90805190602001906200049d929190620004cb565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620004d990620008fe565b90600052602060002090601f016020900481019282620004fd576000855562000549565b82601f106200051857805160ff191683800117855562000549565b8280016001018555821562000549579182015b82811115620005485782518255916020019190600101906200052b565b5b5090506200055891906200055c565b5090565b5b80821115620005775760008160009055506001016200055d565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620005e48262000599565b810181811067ffffffffffffffff82111715620006065762000605620005aa565b5b80604052505050565b60006200061b6200057b565b9050620006298282620005d9565b919050565b600067ffffffffffffffff8211156200064c576200064b620005aa565b5b620006578262000599565b9050602081019050919050565b60005b838110156200068457808201518184015260208101905062000667565b8381111562000694576000848401525b50505050565b6000620006b1620006ab846200062e565b6200060f565b905082815260208101848484011115620006d057620006cf62000594565b5b620006dd84828562000664565b509392505050565b600082601f830112620006fd57620006fc6200058f565b5b81516200070f8482602086016200069a565b91505092915050565b6000819050919050565b6200072d8162000718565b81146200073957600080fd5b50565b6000815190506200074d8162000722565b92915050565b60008060008060008060c0878903121562000773576200077262000585565b5b600087015167ffffffffffffffff8111156200079457620007936200058a565b5b620007a289828a01620006e5565b965050602087015167ffffffffffffffff811115620007c657620007c56200058a565b5b620007d489828a01620006e5565b9550506040620007e789828a016200073c565b9450506060620007fa89828a016200073c565b93505060806200080d89828a016200073c565b92505060a087015167ffffffffffffffff8111156200083157620008306200058a565b5b6200083f89828a01620006e5565b9150509295509295509295565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620008956020836200084c565b9150620008a2826200085d565b602082019050919050565b60006020820190508181036000830152620008c88162000886565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200091757607f821691505b6020821081036200092d576200092c620008cf565b5b50919050565b614beb80620009436000396000f3fe6080604052600436106102675760003560e01c806370a0823111610144578063b767a098116100b6578063d5abeb011161007a578063d5abeb01146108d8578063db4bec4414610903578063e0a8085314610940578063e985e9c514610969578063efbd73f4146109a6578063f2fde38b146109cf57610267565b8063b767a09814610804578063b88d4fde1461082d578063c4c39ed514610856578063c87b56dd1461087f578063d2cab056146108bc57610267565b806394354fd01161010857806394354fd01461071557806395d89b4114610740578063a0712d681461076b578063a22cb46514610787578063a45ba8e7146107b0578063b071401b146107db57610267565b806370a0823114610644578063715018a6146106815780637cb64759146106985780637ec4a659146106c15780638da5cb5b146106ea57610267565b80633ccfd60b116101dd57806351830227116101a157806351830227146105305780635503a0e81461055b5780635c975abb1461058657806362b99ad4146105b15780636352211e146105dc5780636caede3d1461061957610267565b80633ccfd60b1461046157806342842e0e14610478578063438b6300146104a157806344a0d68a146104de5780634fdd43cb1461050757610267565b806316ba10e01161022f57806316ba10e01461036557806316c38b3c1461038e57806318160ddd146103b757806323b872dd146103e257806324a6ab0c1461040b5780632eb4a7ab1461043657610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b31461031157806313faede61461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e91906138bc565b6109f8565b6040516102a09190613904565b60405180910390f35b3480156102b557600080fd5b506102be610ada565b6040516102cb91906139b8565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613a10565b610b6c565b6040516103089190613a7e565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613ac5565b610be8565b005b34801561034657600080fd5b5061034f610cf2565b60405161035c9190613b14565b60405180910390f35b34801561037157600080fd5b5061038c60048036038101906103879190613c64565b610cf8565b005b34801561039a57600080fd5b506103b560048036038101906103b09190613cd9565b610d8e565b005b3480156103c357600080fd5b506103cc610e27565b6040516103d99190613b14565b60405180910390f35b3480156103ee57600080fd5b5061040960048036038101906104049190613d06565b610e3e565b005b34801561041757600080fd5b50610420610e4e565b60405161042d9190613b14565b60405180910390f35b34801561044257600080fd5b5061044b610e54565b6040516104589190613d72565b60405180910390f35b34801561046d57600080fd5b50610476610e5a565b005b34801561048457600080fd5b5061049f600480360381019061049a9190613d06565b610fab565b005b3480156104ad57600080fd5b506104c860048036038101906104c39190613d8d565b610fcb565b6040516104d59190613e78565b60405180910390f35b3480156104ea57600080fd5b5061050560048036038101906105009190613a10565b6111de565b005b34801561051357600080fd5b5061052e60048036038101906105299190613c64565b611264565b005b34801561053c57600080fd5b506105456112fa565b6040516105529190613904565b60405180910390f35b34801561056757600080fd5b5061057061130d565b60405161057d91906139b8565b60405180910390f35b34801561059257600080fd5b5061059b61139b565b6040516105a89190613904565b60405180910390f35b3480156105bd57600080fd5b506105c66113ae565b6040516105d391906139b8565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613a10565b61143c565b6040516106109190613a7e565b60405180910390f35b34801561062557600080fd5b5061062e611452565b60405161063b9190613904565b60405180910390f35b34801561065057600080fd5b5061066b60048036038101906106669190613d8d565b611465565b6040516106789190613b14565b60405180910390f35b34801561068d57600080fd5b50610696611534565b005b3480156106a457600080fd5b506106bf60048036038101906106ba9190613ec6565b6115bc565b005b3480156106cd57600080fd5b506106e860048036038101906106e39190613c64565b611642565b005b3480156106f657600080fd5b506106ff6116d8565b60405161070c9190613a7e565b60405180910390f35b34801561072157600080fd5b5061072a611702565b6040516107379190613b14565b60405180910390f35b34801561074c57600080fd5b50610755611708565b60405161076291906139b8565b60405180910390f35b61078560048036038101906107809190613a10565b61179a565b005b34801561079357600080fd5b506107ae60048036038101906107a99190613ef3565b611961565b005b3480156107bc57600080fd5b506107c5611ad8565b6040516107d291906139b8565b60405180910390f35b3480156107e757600080fd5b5061080260048036038101906107fd9190613a10565b611b66565b005b34801561081057600080fd5b5061082b60048036038101906108269190613cd9565b611bec565b005b34801561083957600080fd5b50610854600480360381019061084f9190613fd4565b611c85565b005b34801561086257600080fd5b5061087d60048036038101906108789190613a10565b611d01565b005b34801561088b57600080fd5b506108a660048036038101906108a19190613a10565b611d87565b6040516108b391906139b8565b60405180910390f35b6108d660048036038101906108d191906140b7565b611edf565b005b3480156108e457600080fd5b506108ed61225a565b6040516108fa9190613b14565b60405180910390f35b34801561090f57600080fd5b5061092a60048036038101906109259190613d8d565b612260565b6040516109379190613904565b60405180910390f35b34801561094c57600080fd5b5061096760048036038101906109629190613cd9565b612280565b005b34801561097557600080fd5b50610990600480360381019061098b9190614117565b612319565b60405161099d9190613904565b60405180910390f35b3480156109b257600080fd5b506109cd60048036038101906109c89190614157565b6123ad565b005b3480156109db57600080fd5b506109f660048036038101906109f19190613d8d565b6124e1565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ac357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ad35750610ad2826125d8565b5b9050919050565b606060028054610ae9906141c6565b80601f0160208091040260200160405190810160405280929190818152602001828054610b15906141c6565b8015610b625780601f10610b3757610100808354040283529160200191610b62565b820191906000526020600020905b815481529060010190602001808311610b4557829003601f168201915b5050505050905090565b6000610b7782612642565b610bad576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bf38261143c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c5a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c79612690565b73ffffffffffffffffffffffffffffffffffffffff1614158015610cab5750610ca981610ca4612690565b612319565b155b15610ce2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ced838383612698565b505050565b600f5481565b610d00612690565b73ffffffffffffffffffffffffffffffffffffffff16610d1e6116d8565b73ffffffffffffffffffffffffffffffffffffffff1614610d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6b90614243565b60405180910390fd5b80600d9080519060200190610d8a92919061376a565b5050565b610d96612690565b73ffffffffffffffffffffffffffffffffffffffff16610db46116d8565b73ffffffffffffffffffffffffffffffffffffffff1614610e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0190614243565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b6000610e3161274a565b6001546000540303905090565b610e49838383612753565b505050565b60135481565b600a5481565b610e62612690565b73ffffffffffffffffffffffffffffffffffffffff16610e806116d8565b73ffffffffffffffffffffffffffffffffffffffff1614610ed6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecd90614243565b60405180910390fd5b600260095403610f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f12906142af565b60405180910390fd5b60026009819055506000610f2d6116d8565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f5090614300565b60006040518083038185875af1925050503d8060008114610f8d576040519150601f19603f3d011682016040523d82523d6000602084013e610f92565b606091505b5050905080610fa057600080fd5b506001600981905550565b610fc683838360405180602001604052806000815250611c85565b505050565b60606000610fd883611465565b905060008167ffffffffffffffff811115610ff657610ff5613b39565b5b6040519080825280602002602001820160405280156110245781602001602082028036833780820191505090505b509050600061103161274a565b90506000805b8482108015611047575060005483105b156111d1576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516111bd57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461115a57806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111bc57838584815181106111a1576111a0614315565b5b60200260200101818152505082806111b890614373565b9350505b5b83806111c890614373565b94505050611037565b8395505050505050919050565b6111e6612690565b73ffffffffffffffffffffffffffffffffffffffff166112046116d8565b73ffffffffffffffffffffffffffffffffffffffff161461125a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125190614243565b60405180910390fd5b80600f8190555050565b61126c612690565b73ffffffffffffffffffffffffffffffffffffffff1661128a6116d8565b73ffffffffffffffffffffffffffffffffffffffff16146112e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d790614243565b60405180910390fd5b80600e90805190602001906112f692919061376a565b5050565b601260029054906101000a900460ff1681565b600d805461131a906141c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611346906141c6565b80156113935780601f1061136857610100808354040283529160200191611393565b820191906000526020600020905b81548152906001019060200180831161137657829003601f168201915b505050505081565b601260009054906101000a900460ff1681565b600c80546113bb906141c6565b80601f01602080910402602001604051908101604052809291908181526020018280546113e7906141c6565b80156114345780601f1061140957610100808354040283529160200191611434565b820191906000526020600020905b81548152906001019060200180831161141757829003601f168201915b505050505081565b600061144782612c07565b600001519050919050565b601260019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114cc576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61153c612690565b73ffffffffffffffffffffffffffffffffffffffff1661155a6116d8565b73ffffffffffffffffffffffffffffffffffffffff16146115b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a790614243565b60405180910390fd5b6115ba6000612e96565b565b6115c4612690565b73ffffffffffffffffffffffffffffffffffffffff166115e26116d8565b73ffffffffffffffffffffffffffffffffffffffff1614611638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162f90614243565b60405180910390fd5b80600a8190555050565b61164a612690565b73ffffffffffffffffffffffffffffffffffffffff166116686116d8565b73ffffffffffffffffffffffffffffffffffffffff16146116be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b590614243565b60405180910390fd5b80600c90805190602001906116d492919061376a565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b606060038054611717906141c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611743906141c6565b80156117905780601f1061176557610100808354040283529160200191611790565b820191906000526020600020905b81548152906001019060200180831161177357829003601f168201915b5050505050905090565b806000811180156117ad57506011548111155b6117ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e390614407565b60405180910390fd5b601054816117f8610e27565b6118029190614427565b1115611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a906144c9565b60405180910390fd5b8160135481116118aa576000341015611891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188890614535565b60405180910390fd5b8060135461189f9190614555565b6013819055506118fb565b80600f546118b89190614589565b3410156118fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f190614535565b60405180910390fd5b5b601260009054906101000a900460ff161561194b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119429061462f565b60405180910390fd5b61195c611956612690565b84612f5c565b505050565b611969612690565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119cd576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119da612690565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a87612690565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611acc9190613904565b60405180910390a35050565b600e8054611ae5906141c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611b11906141c6565b8015611b5e5780601f10611b3357610100808354040283529160200191611b5e565b820191906000526020600020905b815481529060010190602001808311611b4157829003601f168201915b505050505081565b611b6e612690565b73ffffffffffffffffffffffffffffffffffffffff16611b8c6116d8565b73ffffffffffffffffffffffffffffffffffffffff1614611be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd990614243565b60405180910390fd5b8060118190555050565b611bf4612690565b73ffffffffffffffffffffffffffffffffffffffff16611c126116d8565b73ffffffffffffffffffffffffffffffffffffffff1614611c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5f90614243565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b611c90848484612753565b611caf8373ffffffffffffffffffffffffffffffffffffffff16612f7a565b8015611cc45750611cc284848484612f9d565b155b15611cfb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611d09612690565b73ffffffffffffffffffffffffffffffffffffffff16611d276116d8565b73ffffffffffffffffffffffffffffffffffffffff1614611d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7490614243565b60405180910390fd5b8060138190555050565b6060611d9282612642565b611dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc8906146c1565b60405180910390fd5b60001515601260029054906101000a900460ff16151503611e7e57600e8054611df9906141c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611e25906141c6565b8015611e725780601f10611e4757610100808354040283529160200191611e72565b820191906000526020600020905b815481529060010190602001808311611e5557829003601f168201915b50505050509050611eda565b6000611e886130ed565b90506000815111611ea85760405180602001604052806000815250611ed6565b80611eb28461317f565b600d604051602001611ec6939291906147b1565b6040516020818303038152906040525b9150505b919050565b82600081118015611ef257506011548111155b611f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2890614407565b60405180910390fd5b60105481611f3d610e27565b611f479190614427565b1115611f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7f906144c9565b60405180910390fd5b836013548111611fef576000341015611fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcd90614535565b60405180910390fd5b80601354611fe49190614555565b601381905550612040565b80600f54611ffd9190614589565b34101561203f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203690614535565b60405180910390fd5b5b601260019054906101000a900460ff1661208f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208690614854565b60405180910390fd5b600b600061209b612690565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612123576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211a906148c0565b60405180910390fd5b600061212d612690565b60405160200161213d9190614928565b6040516020818303038152906040528051906020012090506121a3858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a54836132df565b6121e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d99061498f565b60405180910390fd5b6001600b60006121f0612690565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061225261224c612690565b87612f5c565b505050505050565b60105481565b600b6020528060005260406000206000915054906101000a900460ff1681565b612288612690565b73ffffffffffffffffffffffffffffffffffffffff166122a66116d8565b73ffffffffffffffffffffffffffffffffffffffff16146122fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f390614243565b60405180910390fd5b80601260026101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156123c057506011548111155b6123ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f690614407565b60405180910390fd5b6010548161240b610e27565b6124159190614427565b1115612456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244d906144c9565b60405180910390fd5b61245e612690565b73ffffffffffffffffffffffffffffffffffffffff1661247c6116d8565b73ffffffffffffffffffffffffffffffffffffffff16146124d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c990614243565b60405180910390fd5b6124dc8284612f5c565b505050565b6124e9612690565b73ffffffffffffffffffffffffffffffffffffffff166125076116d8565b73ffffffffffffffffffffffffffffffffffffffff161461255d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255490614243565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c390614a21565b60405180910390fd5b6125d581612e96565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161264d61274a565b1115801561265c575060005482105b8015612689575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061275e82612c07565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127c9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166127ea612690565b73ffffffffffffffffffffffffffffffffffffffff161480612819575061281885612813612690565b612319565b5b8061285e5750612827612690565b73ffffffffffffffffffffffffffffffffffffffff1661284684610b6c565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612897576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036128fd576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61290a85858560016132f6565b61291660008487612698565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612b95576000548214612b9457878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c0085858560016132fc565b5050505050565b612c0f6137f0565b600082905080612c1d61274a565b11158015612c2c575060005481105b15612e5f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612e5d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d41578092505050612e91565b5b600115612e5c57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e57578092505050612e91565b612d42565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612f76828260405180602001604052806000815250613302565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fc3612690565b8786866040518563ffffffff1660e01b8152600401612fe59493929190614a96565b6020604051808303816000875af192505050801561302157506040513d601f19601f8201168201806040525081019061301e9190614af7565b60015b61309a573d8060008114613051576040519150601f19603f3d011682016040523d82523d6000602084013e613056565b606091505b506000815103613092576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546130fc906141c6565b80601f0160208091040260200160405190810160405280929190818152602001828054613128906141c6565b80156131755780601f1061314a57610100808354040283529160200191613175565b820191906000526020600020905b81548152906001019060200180831161315857829003601f168201915b5050505050905090565b6060600082036131c6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132da565b600082905060005b600082146131f85780806131e190614373565b915050600a826131f19190614b53565b91506131ce565b60008167ffffffffffffffff81111561321457613213613b39565b5b6040519080825280601f01601f1916602001820160405280156132465781602001600182028036833780820191505090505b5090505b600085146132d35760018261325f9190614555565b9150600a8561326e9190614b84565b603061327a9190614427565b60f81b8183815181106132905761328f614315565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132cc9190614b53565b945061324a565b8093505050505b919050565b6000826132ec8584613314565b1490509392505050565b50505050565b50505050565b61330f8383836001613389565b505050565b60008082905060005b845181101561337e57600085828151811061333b5761333a614315565b5b6020026020010151905080831161335d576133568382613753565b925061336a565b6133678184613753565b92505b50808061337690614373565b91505061331d565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036133f5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000840361342f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61343c60008683876132f6565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561360657506136058773ffffffffffffffffffffffffffffffffffffffff16612f7a565b5b156136cb575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461367b6000888480600101955088612f9d565b6136b1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80820361360c5782600054146136c657600080fd5b613736565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036136cc575b81600081905550505061374c60008683876132fc565b5050505050565b600082600052816020526040600020905092915050565b828054613776906141c6565b90600052602060002090601f01602090048101928261379857600085556137df565b82601f106137b157805160ff19168380011785556137df565b828001600101855582156137df579182015b828111156137de5782518255916020019190600101906137c3565b5b5090506137ec9190613833565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561384c576000816000905550600101613834565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61389981613864565b81146138a457600080fd5b50565b6000813590506138b681613890565b92915050565b6000602082840312156138d2576138d161385a565b5b60006138e0848285016138a7565b91505092915050565b60008115159050919050565b6138fe816138e9565b82525050565b600060208201905061391960008301846138f5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561395957808201518184015260208101905061393e565b83811115613968576000848401525b50505050565b6000601f19601f8301169050919050565b600061398a8261391f565b613994818561392a565b93506139a481856020860161393b565b6139ad8161396e565b840191505092915050565b600060208201905081810360008301526139d2818461397f565b905092915050565b6000819050919050565b6139ed816139da565b81146139f857600080fd5b50565b600081359050613a0a816139e4565b92915050565b600060208284031215613a2657613a2561385a565b5b6000613a34848285016139fb565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613a6882613a3d565b9050919050565b613a7881613a5d565b82525050565b6000602082019050613a936000830184613a6f565b92915050565b613aa281613a5d565b8114613aad57600080fd5b50565b600081359050613abf81613a99565b92915050565b60008060408385031215613adc57613adb61385a565b5b6000613aea85828601613ab0565b9250506020613afb858286016139fb565b9150509250929050565b613b0e816139da565b82525050565b6000602082019050613b296000830184613b05565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b718261396e565b810181811067ffffffffffffffff82111715613b9057613b8f613b39565b5b80604052505050565b6000613ba3613850565b9050613baf8282613b68565b919050565b600067ffffffffffffffff821115613bcf57613bce613b39565b5b613bd88261396e565b9050602081019050919050565b82818337600083830152505050565b6000613c07613c0284613bb4565b613b99565b905082815260208101848484011115613c2357613c22613b34565b5b613c2e848285613be5565b509392505050565b600082601f830112613c4b57613c4a613b2f565b5b8135613c5b848260208601613bf4565b91505092915050565b600060208284031215613c7a57613c7961385a565b5b600082013567ffffffffffffffff811115613c9857613c9761385f565b5b613ca484828501613c36565b91505092915050565b613cb6816138e9565b8114613cc157600080fd5b50565b600081359050613cd381613cad565b92915050565b600060208284031215613cef57613cee61385a565b5b6000613cfd84828501613cc4565b91505092915050565b600080600060608486031215613d1f57613d1e61385a565b5b6000613d2d86828701613ab0565b9350506020613d3e86828701613ab0565b9250506040613d4f868287016139fb565b9150509250925092565b6000819050919050565b613d6c81613d59565b82525050565b6000602082019050613d876000830184613d63565b92915050565b600060208284031215613da357613da261385a565b5b6000613db184828501613ab0565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613def816139da565b82525050565b6000613e018383613de6565b60208301905092915050565b6000602082019050919050565b6000613e2582613dba565b613e2f8185613dc5565b9350613e3a83613dd6565b8060005b83811015613e6b578151613e528882613df5565b9750613e5d83613e0d565b925050600181019050613e3e565b5085935050505092915050565b60006020820190508181036000830152613e928184613e1a565b905092915050565b613ea381613d59565b8114613eae57600080fd5b50565b600081359050613ec081613e9a565b92915050565b600060208284031215613edc57613edb61385a565b5b6000613eea84828501613eb1565b91505092915050565b60008060408385031215613f0a57613f0961385a565b5b6000613f1885828601613ab0565b9250506020613f2985828601613cc4565b9150509250929050565b600067ffffffffffffffff821115613f4e57613f4d613b39565b5b613f578261396e565b9050602081019050919050565b6000613f77613f7284613f33565b613b99565b905082815260208101848484011115613f9357613f92613b34565b5b613f9e848285613be5565b509392505050565b600082601f830112613fbb57613fba613b2f565b5b8135613fcb848260208601613f64565b91505092915050565b60008060008060808587031215613fee57613fed61385a565b5b6000613ffc87828801613ab0565b945050602061400d87828801613ab0565b935050604061401e878288016139fb565b925050606085013567ffffffffffffffff81111561403f5761403e61385f565b5b61404b87828801613fa6565b91505092959194509250565b600080fd5b600080fd5b60008083601f84011261407757614076613b2f565b5b8235905067ffffffffffffffff81111561409457614093614057565b5b6020830191508360208202830111156140b0576140af61405c565b5b9250929050565b6000806000604084860312156140d0576140cf61385a565b5b60006140de868287016139fb565b935050602084013567ffffffffffffffff8111156140ff576140fe61385f565b5b61410b86828701614061565b92509250509250925092565b6000806040838503121561412e5761412d61385a565b5b600061413c85828601613ab0565b925050602061414d85828601613ab0565b9150509250929050565b6000806040838503121561416e5761416d61385a565b5b600061417c858286016139fb565b925050602061418d85828601613ab0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806141de57607f821691505b6020821081036141f1576141f0614197565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061422d60208361392a565b9150614238826141f7565b602082019050919050565b6000602082019050818103600083015261425c81614220565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614299601f8361392a565b91506142a482614263565b602082019050919050565b600060208201905081810360008301526142c88161428c565b9050919050565b600081905092915050565b50565b60006142ea6000836142cf565b91506142f5826142da565b600082019050919050565b600061430b826142dd565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061437e826139da565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036143b0576143af614344565b5b600182019050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006143f160148361392a565b91506143fc826143bb565b602082019050919050565b60006020820190508181036000830152614420816143e4565b9050919050565b6000614432826139da565b915061443d836139da565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561447257614471614344565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006144b360148361392a565b91506144be8261447d565b602082019050919050565b600060208201905081810360008301526144e2816144a6565b9050919050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b600061451f60138361392a565b915061452a826144e9565b602082019050919050565b6000602082019050818103600083015261454e81614512565b9050919050565b6000614560826139da565b915061456b836139da565b92508282101561457e5761457d614344565b5b828203905092915050565b6000614594826139da565b915061459f836139da565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145d8576145d7614344565b5b828202905092915050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b600061461960178361392a565b9150614624826145e3565b602082019050919050565b600060208201905081810360008301526146488161460c565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006146ab602f8361392a565b91506146b68261464f565b604082019050919050565b600060208201905081810360008301526146da8161469e565b9050919050565b600081905092915050565b60006146f78261391f565b61470181856146e1565b935061471181856020860161393b565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461473f816141c6565b61474981866146e1565b945060018216600081146147645760018114614775576147a8565b60ff198316865281860193506147a8565b61477e8561471d565b60005b838110156147a057815481890152600182019150602081019050614781565b838801955050505b50505092915050565b60006147bd82866146ec565b91506147c982856146ec565b91506147d58284614732565b9150819050949350505050565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b600061483e60228361392a565b9150614849826147e2565b604082019050919050565b6000602082019050818103600083015261486d81614831565b9050919050565b7f4164647265737320616c726561647920636c61696d6564210000000000000000600082015250565b60006148aa60188361392a565b91506148b582614874565b602082019050919050565b600060208201905081810360008301526148d98161489d565b9050919050565b60008160601b9050919050565b60006148f8826148e0565b9050919050565b600061490a826148ed565b9050919050565b61492261491d82613a5d565b6148ff565b82525050565b60006149348284614911565b60148201915081905092915050565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b6000614979600e8361392a565b915061498482614943565b602082019050919050565b600060208201905081810360008301526149a88161496c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a0b60268361392a565b9150614a16826149af565b604082019050919050565b60006020820190508181036000830152614a3a816149fe565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614a6882614a41565b614a728185614a4c565b9350614a8281856020860161393b565b614a8b8161396e565b840191505092915050565b6000608082019050614aab6000830187613a6f565b614ab86020830186613a6f565b614ac56040830185613b05565b8181036060830152614ad78184614a5d565b905095945050505050565b600081519050614af181613890565b92915050565b600060208284031215614b0d57614b0c61385a565b5b6000614b1b84828501614ae2565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614b5e826139da565b9150614b69836139da565b925082614b7957614b78614b24565b5b828204905092915050565b6000614b8f826139da565b9150614b9a836139da565b925082614baa57614ba9614b24565b5b82820690509291505056fea2646970667358221220dec057d0bf058b824544e6bdf31486eaec5c2d0bf3d2d4d7ff824157cc61490564736f6c634300080e003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000002386f26fc1000000000000000000000000000000000000000000000000000000000000000008ab000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000a54696e79416c70616361000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006544e59414c5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102675760003560e01c806370a0823111610144578063b767a098116100b6578063d5abeb011161007a578063d5abeb01146108d8578063db4bec4414610903578063e0a8085314610940578063e985e9c514610969578063efbd73f4146109a6578063f2fde38b146109cf57610267565b8063b767a09814610804578063b88d4fde1461082d578063c4c39ed514610856578063c87b56dd1461087f578063d2cab056146108bc57610267565b806394354fd01161010857806394354fd01461071557806395d89b4114610740578063a0712d681461076b578063a22cb46514610787578063a45ba8e7146107b0578063b071401b146107db57610267565b806370a0823114610644578063715018a6146106815780637cb64759146106985780637ec4a659146106c15780638da5cb5b146106ea57610267565b80633ccfd60b116101dd57806351830227116101a157806351830227146105305780635503a0e81461055b5780635c975abb1461058657806362b99ad4146105b15780636352211e146105dc5780636caede3d1461061957610267565b80633ccfd60b1461046157806342842e0e14610478578063438b6300146104a157806344a0d68a146104de5780634fdd43cb1461050757610267565b806316ba10e01161022f57806316ba10e01461036557806316c38b3c1461038e57806318160ddd146103b757806323b872dd146103e257806324a6ab0c1461040b5780632eb4a7ab1461043657610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b31461031157806313faede61461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e91906138bc565b6109f8565b6040516102a09190613904565b60405180910390f35b3480156102b557600080fd5b506102be610ada565b6040516102cb91906139b8565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613a10565b610b6c565b6040516103089190613a7e565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613ac5565b610be8565b005b34801561034657600080fd5b5061034f610cf2565b60405161035c9190613b14565b60405180910390f35b34801561037157600080fd5b5061038c60048036038101906103879190613c64565b610cf8565b005b34801561039a57600080fd5b506103b560048036038101906103b09190613cd9565b610d8e565b005b3480156103c357600080fd5b506103cc610e27565b6040516103d99190613b14565b60405180910390f35b3480156103ee57600080fd5b5061040960048036038101906104049190613d06565b610e3e565b005b34801561041757600080fd5b50610420610e4e565b60405161042d9190613b14565b60405180910390f35b34801561044257600080fd5b5061044b610e54565b6040516104589190613d72565b60405180910390f35b34801561046d57600080fd5b50610476610e5a565b005b34801561048457600080fd5b5061049f600480360381019061049a9190613d06565b610fab565b005b3480156104ad57600080fd5b506104c860048036038101906104c39190613d8d565b610fcb565b6040516104d59190613e78565b60405180910390f35b3480156104ea57600080fd5b5061050560048036038101906105009190613a10565b6111de565b005b34801561051357600080fd5b5061052e60048036038101906105299190613c64565b611264565b005b34801561053c57600080fd5b506105456112fa565b6040516105529190613904565b60405180910390f35b34801561056757600080fd5b5061057061130d565b60405161057d91906139b8565b60405180910390f35b34801561059257600080fd5b5061059b61139b565b6040516105a89190613904565b60405180910390f35b3480156105bd57600080fd5b506105c66113ae565b6040516105d391906139b8565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613a10565b61143c565b6040516106109190613a7e565b60405180910390f35b34801561062557600080fd5b5061062e611452565b60405161063b9190613904565b60405180910390f35b34801561065057600080fd5b5061066b60048036038101906106669190613d8d565b611465565b6040516106789190613b14565b60405180910390f35b34801561068d57600080fd5b50610696611534565b005b3480156106a457600080fd5b506106bf60048036038101906106ba9190613ec6565b6115bc565b005b3480156106cd57600080fd5b506106e860048036038101906106e39190613c64565b611642565b005b3480156106f657600080fd5b506106ff6116d8565b60405161070c9190613a7e565b60405180910390f35b34801561072157600080fd5b5061072a611702565b6040516107379190613b14565b60405180910390f35b34801561074c57600080fd5b50610755611708565b60405161076291906139b8565b60405180910390f35b61078560048036038101906107809190613a10565b61179a565b005b34801561079357600080fd5b506107ae60048036038101906107a99190613ef3565b611961565b005b3480156107bc57600080fd5b506107c5611ad8565b6040516107d291906139b8565b60405180910390f35b3480156107e757600080fd5b5061080260048036038101906107fd9190613a10565b611b66565b005b34801561081057600080fd5b5061082b60048036038101906108269190613cd9565b611bec565b005b34801561083957600080fd5b50610854600480360381019061084f9190613fd4565b611c85565b005b34801561086257600080fd5b5061087d60048036038101906108789190613a10565b611d01565b005b34801561088b57600080fd5b506108a660048036038101906108a19190613a10565b611d87565b6040516108b391906139b8565b60405180910390f35b6108d660048036038101906108d191906140b7565b611edf565b005b3480156108e457600080fd5b506108ed61225a565b6040516108fa9190613b14565b60405180910390f35b34801561090f57600080fd5b5061092a60048036038101906109259190613d8d565b612260565b6040516109379190613904565b60405180910390f35b34801561094c57600080fd5b5061096760048036038101906109629190613cd9565b612280565b005b34801561097557600080fd5b50610990600480360381019061098b9190614117565b612319565b60405161099d9190613904565b60405180910390f35b3480156109b257600080fd5b506109cd60048036038101906109c89190614157565b6123ad565b005b3480156109db57600080fd5b506109f660048036038101906109f19190613d8d565b6124e1565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ac357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ad35750610ad2826125d8565b5b9050919050565b606060028054610ae9906141c6565b80601f0160208091040260200160405190810160405280929190818152602001828054610b15906141c6565b8015610b625780601f10610b3757610100808354040283529160200191610b62565b820191906000526020600020905b815481529060010190602001808311610b4557829003601f168201915b5050505050905090565b6000610b7782612642565b610bad576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bf38261143c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c5a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c79612690565b73ffffffffffffffffffffffffffffffffffffffff1614158015610cab5750610ca981610ca4612690565b612319565b155b15610ce2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ced838383612698565b505050565b600f5481565b610d00612690565b73ffffffffffffffffffffffffffffffffffffffff16610d1e6116d8565b73ffffffffffffffffffffffffffffffffffffffff1614610d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6b90614243565b60405180910390fd5b80600d9080519060200190610d8a92919061376a565b5050565b610d96612690565b73ffffffffffffffffffffffffffffffffffffffff16610db46116d8565b73ffffffffffffffffffffffffffffffffffffffff1614610e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0190614243565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b6000610e3161274a565b6001546000540303905090565b610e49838383612753565b505050565b60135481565b600a5481565b610e62612690565b73ffffffffffffffffffffffffffffffffffffffff16610e806116d8565b73ffffffffffffffffffffffffffffffffffffffff1614610ed6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecd90614243565b60405180910390fd5b600260095403610f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f12906142af565b60405180910390fd5b60026009819055506000610f2d6116d8565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f5090614300565b60006040518083038185875af1925050503d8060008114610f8d576040519150601f19603f3d011682016040523d82523d6000602084013e610f92565b606091505b5050905080610fa057600080fd5b506001600981905550565b610fc683838360405180602001604052806000815250611c85565b505050565b60606000610fd883611465565b905060008167ffffffffffffffff811115610ff657610ff5613b39565b5b6040519080825280602002602001820160405280156110245781602001602082028036833780820191505090505b509050600061103161274a565b90506000805b8482108015611047575060005483105b156111d1576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516111bd57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461115a57806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111bc57838584815181106111a1576111a0614315565b5b60200260200101818152505082806111b890614373565b9350505b5b83806111c890614373565b94505050611037565b8395505050505050919050565b6111e6612690565b73ffffffffffffffffffffffffffffffffffffffff166112046116d8565b73ffffffffffffffffffffffffffffffffffffffff161461125a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125190614243565b60405180910390fd5b80600f8190555050565b61126c612690565b73ffffffffffffffffffffffffffffffffffffffff1661128a6116d8565b73ffffffffffffffffffffffffffffffffffffffff16146112e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d790614243565b60405180910390fd5b80600e90805190602001906112f692919061376a565b5050565b601260029054906101000a900460ff1681565b600d805461131a906141c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611346906141c6565b80156113935780601f1061136857610100808354040283529160200191611393565b820191906000526020600020905b81548152906001019060200180831161137657829003601f168201915b505050505081565b601260009054906101000a900460ff1681565b600c80546113bb906141c6565b80601f01602080910402602001604051908101604052809291908181526020018280546113e7906141c6565b80156114345780601f1061140957610100808354040283529160200191611434565b820191906000526020600020905b81548152906001019060200180831161141757829003601f168201915b505050505081565b600061144782612c07565b600001519050919050565b601260019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114cc576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61153c612690565b73ffffffffffffffffffffffffffffffffffffffff1661155a6116d8565b73ffffffffffffffffffffffffffffffffffffffff16146115b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a790614243565b60405180910390fd5b6115ba6000612e96565b565b6115c4612690565b73ffffffffffffffffffffffffffffffffffffffff166115e26116d8565b73ffffffffffffffffffffffffffffffffffffffff1614611638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162f90614243565b60405180910390fd5b80600a8190555050565b61164a612690565b73ffffffffffffffffffffffffffffffffffffffff166116686116d8565b73ffffffffffffffffffffffffffffffffffffffff16146116be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b590614243565b60405180910390fd5b80600c90805190602001906116d492919061376a565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b606060038054611717906141c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611743906141c6565b80156117905780601f1061176557610100808354040283529160200191611790565b820191906000526020600020905b81548152906001019060200180831161177357829003601f168201915b5050505050905090565b806000811180156117ad57506011548111155b6117ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e390614407565b60405180910390fd5b601054816117f8610e27565b6118029190614427565b1115611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a906144c9565b60405180910390fd5b8160135481116118aa576000341015611891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188890614535565b60405180910390fd5b8060135461189f9190614555565b6013819055506118fb565b80600f546118b89190614589565b3410156118fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f190614535565b60405180910390fd5b5b601260009054906101000a900460ff161561194b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119429061462f565b60405180910390fd5b61195c611956612690565b84612f5c565b505050565b611969612690565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119cd576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119da612690565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a87612690565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611acc9190613904565b60405180910390a35050565b600e8054611ae5906141c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611b11906141c6565b8015611b5e5780601f10611b3357610100808354040283529160200191611b5e565b820191906000526020600020905b815481529060010190602001808311611b4157829003601f168201915b505050505081565b611b6e612690565b73ffffffffffffffffffffffffffffffffffffffff16611b8c6116d8565b73ffffffffffffffffffffffffffffffffffffffff1614611be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd990614243565b60405180910390fd5b8060118190555050565b611bf4612690565b73ffffffffffffffffffffffffffffffffffffffff16611c126116d8565b73ffffffffffffffffffffffffffffffffffffffff1614611c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5f90614243565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b611c90848484612753565b611caf8373ffffffffffffffffffffffffffffffffffffffff16612f7a565b8015611cc45750611cc284848484612f9d565b155b15611cfb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611d09612690565b73ffffffffffffffffffffffffffffffffffffffff16611d276116d8565b73ffffffffffffffffffffffffffffffffffffffff1614611d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7490614243565b60405180910390fd5b8060138190555050565b6060611d9282612642565b611dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc8906146c1565b60405180910390fd5b60001515601260029054906101000a900460ff16151503611e7e57600e8054611df9906141c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611e25906141c6565b8015611e725780601f10611e4757610100808354040283529160200191611e72565b820191906000526020600020905b815481529060010190602001808311611e5557829003601f168201915b50505050509050611eda565b6000611e886130ed565b90506000815111611ea85760405180602001604052806000815250611ed6565b80611eb28461317f565b600d604051602001611ec6939291906147b1565b6040516020818303038152906040525b9150505b919050565b82600081118015611ef257506011548111155b611f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2890614407565b60405180910390fd5b60105481611f3d610e27565b611f479190614427565b1115611f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7f906144c9565b60405180910390fd5b836013548111611fef576000341015611fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcd90614535565b60405180910390fd5b80601354611fe49190614555565b601381905550612040565b80600f54611ffd9190614589565b34101561203f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203690614535565b60405180910390fd5b5b601260019054906101000a900460ff1661208f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208690614854565b60405180910390fd5b600b600061209b612690565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612123576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211a906148c0565b60405180910390fd5b600061212d612690565b60405160200161213d9190614928565b6040516020818303038152906040528051906020012090506121a3858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a54836132df565b6121e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d99061498f565b60405180910390fd5b6001600b60006121f0612690565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061225261224c612690565b87612f5c565b505050505050565b60105481565b600b6020528060005260406000206000915054906101000a900460ff1681565b612288612690565b73ffffffffffffffffffffffffffffffffffffffff166122a66116d8565b73ffffffffffffffffffffffffffffffffffffffff16146122fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f390614243565b60405180910390fd5b80601260026101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156123c057506011548111155b6123ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f690614407565b60405180910390fd5b6010548161240b610e27565b6124159190614427565b1115612456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244d906144c9565b60405180910390fd5b61245e612690565b73ffffffffffffffffffffffffffffffffffffffff1661247c6116d8565b73ffffffffffffffffffffffffffffffffffffffff16146124d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c990614243565b60405180910390fd5b6124dc8284612f5c565b505050565b6124e9612690565b73ffffffffffffffffffffffffffffffffffffffff166125076116d8565b73ffffffffffffffffffffffffffffffffffffffff161461255d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255490614243565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c390614a21565b60405180910390fd5b6125d581612e96565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161264d61274a565b1115801561265c575060005482105b8015612689575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061275e82612c07565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127c9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166127ea612690565b73ffffffffffffffffffffffffffffffffffffffff161480612819575061281885612813612690565b612319565b5b8061285e5750612827612690565b73ffffffffffffffffffffffffffffffffffffffff1661284684610b6c565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612897576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036128fd576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61290a85858560016132f6565b61291660008487612698565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612b95576000548214612b9457878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c0085858560016132fc565b5050505050565b612c0f6137f0565b600082905080612c1d61274a565b11158015612c2c575060005481105b15612e5f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612e5d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d41578092505050612e91565b5b600115612e5c57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e57578092505050612e91565b612d42565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612f76828260405180602001604052806000815250613302565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fc3612690565b8786866040518563ffffffff1660e01b8152600401612fe59493929190614a96565b6020604051808303816000875af192505050801561302157506040513d601f19601f8201168201806040525081019061301e9190614af7565b60015b61309a573d8060008114613051576040519150601f19603f3d011682016040523d82523d6000602084013e613056565b606091505b506000815103613092576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546130fc906141c6565b80601f0160208091040260200160405190810160405280929190818152602001828054613128906141c6565b80156131755780601f1061314a57610100808354040283529160200191613175565b820191906000526020600020905b81548152906001019060200180831161315857829003601f168201915b5050505050905090565b6060600082036131c6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132da565b600082905060005b600082146131f85780806131e190614373565b915050600a826131f19190614b53565b91506131ce565b60008167ffffffffffffffff81111561321457613213613b39565b5b6040519080825280601f01601f1916602001820160405280156132465781602001600182028036833780820191505090505b5090505b600085146132d35760018261325f9190614555565b9150600a8561326e9190614b84565b603061327a9190614427565b60f81b8183815181106132905761328f614315565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132cc9190614b53565b945061324a565b8093505050505b919050565b6000826132ec8584613314565b1490509392505050565b50505050565b50505050565b61330f8383836001613389565b505050565b60008082905060005b845181101561337e57600085828151811061333b5761333a614315565b5b6020026020010151905080831161335d576133568382613753565b925061336a565b6133678184613753565b92505b50808061337690614373565b91505061331d565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036133f5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000840361342f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61343c60008683876132f6565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561360657506136058773ffffffffffffffffffffffffffffffffffffffff16612f7a565b5b156136cb575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461367b6000888480600101955088612f9d565b6136b1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80820361360c5782600054146136c657600080fd5b613736565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036136cc575b81600081905550505061374c60008683876132fc565b5050505050565b600082600052816020526040600020905092915050565b828054613776906141c6565b90600052602060002090601f01602090048101928261379857600085556137df565b82601f106137b157805160ff19168380011785556137df565b828001600101855582156137df579182015b828111156137de5782518255916020019190600101906137c3565b5b5090506137ec9190613833565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561384c576000816000905550600101613834565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61389981613864565b81146138a457600080fd5b50565b6000813590506138b681613890565b92915050565b6000602082840312156138d2576138d161385a565b5b60006138e0848285016138a7565b91505092915050565b60008115159050919050565b6138fe816138e9565b82525050565b600060208201905061391960008301846138f5565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561395957808201518184015260208101905061393e565b83811115613968576000848401525b50505050565b6000601f19601f8301169050919050565b600061398a8261391f565b613994818561392a565b93506139a481856020860161393b565b6139ad8161396e565b840191505092915050565b600060208201905081810360008301526139d2818461397f565b905092915050565b6000819050919050565b6139ed816139da565b81146139f857600080fd5b50565b600081359050613a0a816139e4565b92915050565b600060208284031215613a2657613a2561385a565b5b6000613a34848285016139fb565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613a6882613a3d565b9050919050565b613a7881613a5d565b82525050565b6000602082019050613a936000830184613a6f565b92915050565b613aa281613a5d565b8114613aad57600080fd5b50565b600081359050613abf81613a99565b92915050565b60008060408385031215613adc57613adb61385a565b5b6000613aea85828601613ab0565b9250506020613afb858286016139fb565b9150509250929050565b613b0e816139da565b82525050565b6000602082019050613b296000830184613b05565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b718261396e565b810181811067ffffffffffffffff82111715613b9057613b8f613b39565b5b80604052505050565b6000613ba3613850565b9050613baf8282613b68565b919050565b600067ffffffffffffffff821115613bcf57613bce613b39565b5b613bd88261396e565b9050602081019050919050565b82818337600083830152505050565b6000613c07613c0284613bb4565b613b99565b905082815260208101848484011115613c2357613c22613b34565b5b613c2e848285613be5565b509392505050565b600082601f830112613c4b57613c4a613b2f565b5b8135613c5b848260208601613bf4565b91505092915050565b600060208284031215613c7a57613c7961385a565b5b600082013567ffffffffffffffff811115613c9857613c9761385f565b5b613ca484828501613c36565b91505092915050565b613cb6816138e9565b8114613cc157600080fd5b50565b600081359050613cd381613cad565b92915050565b600060208284031215613cef57613cee61385a565b5b6000613cfd84828501613cc4565b91505092915050565b600080600060608486031215613d1f57613d1e61385a565b5b6000613d2d86828701613ab0565b9350506020613d3e86828701613ab0565b9250506040613d4f868287016139fb565b9150509250925092565b6000819050919050565b613d6c81613d59565b82525050565b6000602082019050613d876000830184613d63565b92915050565b600060208284031215613da357613da261385a565b5b6000613db184828501613ab0565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613def816139da565b82525050565b6000613e018383613de6565b60208301905092915050565b6000602082019050919050565b6000613e2582613dba565b613e2f8185613dc5565b9350613e3a83613dd6565b8060005b83811015613e6b578151613e528882613df5565b9750613e5d83613e0d565b925050600181019050613e3e565b5085935050505092915050565b60006020820190508181036000830152613e928184613e1a565b905092915050565b613ea381613d59565b8114613eae57600080fd5b50565b600081359050613ec081613e9a565b92915050565b600060208284031215613edc57613edb61385a565b5b6000613eea84828501613eb1565b91505092915050565b60008060408385031215613f0a57613f0961385a565b5b6000613f1885828601613ab0565b9250506020613f2985828601613cc4565b9150509250929050565b600067ffffffffffffffff821115613f4e57613f4d613b39565b5b613f578261396e565b9050602081019050919050565b6000613f77613f7284613f33565b613b99565b905082815260208101848484011115613f9357613f92613b34565b5b613f9e848285613be5565b509392505050565b600082601f830112613fbb57613fba613b2f565b5b8135613fcb848260208601613f64565b91505092915050565b60008060008060808587031215613fee57613fed61385a565b5b6000613ffc87828801613ab0565b945050602061400d87828801613ab0565b935050604061401e878288016139fb565b925050606085013567ffffffffffffffff81111561403f5761403e61385f565b5b61404b87828801613fa6565b91505092959194509250565b600080fd5b600080fd5b60008083601f84011261407757614076613b2f565b5b8235905067ffffffffffffffff81111561409457614093614057565b5b6020830191508360208202830111156140b0576140af61405c565b5b9250929050565b6000806000604084860312156140d0576140cf61385a565b5b60006140de868287016139fb565b935050602084013567ffffffffffffffff8111156140ff576140fe61385f565b5b61410b86828701614061565b92509250509250925092565b6000806040838503121561412e5761412d61385a565b5b600061413c85828601613ab0565b925050602061414d85828601613ab0565b9150509250929050565b6000806040838503121561416e5761416d61385a565b5b600061417c858286016139fb565b925050602061418d85828601613ab0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806141de57607f821691505b6020821081036141f1576141f0614197565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061422d60208361392a565b9150614238826141f7565b602082019050919050565b6000602082019050818103600083015261425c81614220565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614299601f8361392a565b91506142a482614263565b602082019050919050565b600060208201905081810360008301526142c88161428c565b9050919050565b600081905092915050565b50565b60006142ea6000836142cf565b91506142f5826142da565b600082019050919050565b600061430b826142dd565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061437e826139da565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036143b0576143af614344565b5b600182019050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006143f160148361392a565b91506143fc826143bb565b602082019050919050565b60006020820190508181036000830152614420816143e4565b9050919050565b6000614432826139da565b915061443d836139da565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561447257614471614344565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006144b360148361392a565b91506144be8261447d565b602082019050919050565b600060208201905081810360008301526144e2816144a6565b9050919050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b600061451f60138361392a565b915061452a826144e9565b602082019050919050565b6000602082019050818103600083015261454e81614512565b9050919050565b6000614560826139da565b915061456b836139da565b92508282101561457e5761457d614344565b5b828203905092915050565b6000614594826139da565b915061459f836139da565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145d8576145d7614344565b5b828202905092915050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b600061461960178361392a565b9150614624826145e3565b602082019050919050565b600060208201905081810360008301526146488161460c565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006146ab602f8361392a565b91506146b68261464f565b604082019050919050565b600060208201905081810360008301526146da8161469e565b9050919050565b600081905092915050565b60006146f78261391f565b61470181856146e1565b935061471181856020860161393b565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461473f816141c6565b61474981866146e1565b945060018216600081146147645760018114614775576147a8565b60ff198316865281860193506147a8565b61477e8561471d565b60005b838110156147a057815481890152600182019150602081019050614781565b838801955050505b50505092915050565b60006147bd82866146ec565b91506147c982856146ec565b91506147d58284614732565b9150819050949350505050565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b600061483e60228361392a565b9150614849826147e2565b604082019050919050565b6000602082019050818103600083015261486d81614831565b9050919050565b7f4164647265737320616c726561647920636c61696d6564210000000000000000600082015250565b60006148aa60188361392a565b91506148b582614874565b602082019050919050565b600060208201905081810360008301526148d98161489d565b9050919050565b60008160601b9050919050565b60006148f8826148e0565b9050919050565b600061490a826148ed565b9050919050565b61492261491d82613a5d565b6148ff565b82525050565b60006149348284614911565b60148201915081905092915050565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b6000614979600e8361392a565b915061498482614943565b602082019050919050565b600060208201905081810360008301526149a88161496c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a0b60268361392a565b9150614a16826149af565b604082019050919050565b60006020820190508181036000830152614a3a816149fe565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614a6882614a41565b614a728185614a4c565b9350614a8281856020860161393b565b614a8b8161396e565b840191505092915050565b6000608082019050614aab6000830187613a6f565b614ab86020830186613a6f565b614ac56040830185613b05565b8181036060830152614ad78184614a5d565b905095945050505050565b600081519050614af181613890565b92915050565b600060208284031215614b0d57614b0c61385a565b5b6000614b1b84828501614ae2565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614b5e826139da565b9150614b69836139da565b925082614b7957614b78614b24565b5b828204905092915050565b6000614b8f826139da565b9150614b9a836139da565b925082614baa57614ba9614b24565b5b82820690509291505056fea2646970667358221220dec057d0bf058b824544e6bdf31486eaec5c2d0bf3d2d4d7ff824157cc61490564736f6c634300080e0033

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000002386f26fc1000000000000000000000000000000000000000000000000000000000000000008ab000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000a54696e79416c70616361000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006544e59414c5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): TinyAlpaca
Arg [1] : _tokenSymbol (string): TNYALP
Arg [2] : _cost (uint256): 10000000000000000
Arg [3] : _maxSupply (uint256): 2219
Arg [4] : _maxMintAmountPerTx (uint256): 10
Arg [5] : _hiddenMetadataUri (string):

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [3] : 00000000000000000000000000000000000000000000000000000000000008ab
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [7] : 54696e79416c7061636100000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [9] : 544e59414c500000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

49950:5504:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32120:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35233:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36736:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36299:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50238:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54593:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54807:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31369:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37601:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50439:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50047:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55105:236;;;;;;;;;;;;;:::i;:::-;;37842:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52465:833;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54133:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54349:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50406:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50165;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50331:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50132:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35041:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50361:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32489:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9878:103;;;;;;;;;;;;;:::i;:::-;;54890:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54487:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9227:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50291:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35402:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52084:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37012:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50198:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54213:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54994:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38098:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54699:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53595:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51496:582;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50262:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50077:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54046:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37370:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52304:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10136:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32120:305;32222:4;32274:25;32259:40;;;:11;:40;;;;:105;;;;32331:33;32316:48;;;:11;:48;;;;32259:105;:158;;;;32381:36;32405:11;32381:23;:36::i;:::-;32259:158;32239:178;;32120:305;;;:::o;35233:100::-;35287:13;35320:5;35313:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35233:100;:::o;36736:204::-;36804:7;36829:16;36837:7;36829;:16::i;:::-;36824:64;;36854:34;;;;;;;;;;;;;;36824:64;36908:15;:24;36924:7;36908:24;;;;;;;;;;;;;;;;;;;;;36901:31;;36736:204;;;:::o;36299:371::-;36372:13;36388:24;36404:7;36388:15;:24::i;:::-;36372:40;;36433:5;36427:11;;:2;:11;;;36423:48;;36447:24;;;;;;;;;;;;;;36423:48;36504:5;36488:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;36514:37;36531:5;36538:12;:10;:12::i;:::-;36514:16;:37::i;:::-;36513:38;36488:63;36484:138;;;36575:35;;;;;;;;;;;;;;36484:138;36634:28;36643:2;36647:7;36656:5;36634:8;:28::i;:::-;36361:309;36299:371;;:::o;50238:19::-;;;;:::o;54593:100::-;9458:12;:10;:12::i;:::-;9447:23;;:7;:5;:7::i;:::-;:23;;;9439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54677:10:::1;54665:9;:22;;;;;;;;;;;;:::i;:::-;;54593:100:::0;:::o;54807:77::-;9458:12;:10;:12::i;:::-;9447:23;;:7;:5;:7::i;:::-;:23;;;9439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54872:6:::1;54863;;:15;;;;;;;;;;;;;;;;;;54807:77:::0;:::o;31369:303::-;31413:7;31638:15;:13;:15::i;:::-;31623:12;;31607:13;;:28;:46;31600:53;;31369:303;:::o;37601:170::-;37735:28;37745:4;37751:2;37755:7;37735:9;:28::i;:::-;37601:170;;;:::o;50439:31::-;;;;:::o;50047:25::-;;;;:::o;55105:236::-;9458:12;:10;:12::i;:::-;9447:23;;:7;:5;:7::i;:::-;:23;;;9439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1:::1;2410:7;;:19:::0;2402:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;55163:7:::2;55184;:5;:7::i;:::-;55176:21;;55205;55176:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55162:69;;;55246:2;55238:11;;;::::0;::::2;;55155:186;1768:1:::1;2722:7;:22;;;;55105:236::o:0;37842:185::-;37980:39;37997:4;38003:2;38007:7;37980:39;;;;;;;;;;;;:16;:39::i;:::-;37842:185;;;:::o;52465:833::-;52525:16;52550:23;52576:17;52586:6;52576:9;:17::i;:::-;52550:43;;52600:30;52647:15;52633:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52600:63;;52670:22;52695:15;:13;:15::i;:::-;52670:40;;52717:23;52751:26;52786:478;52811:15;52793;:33;:67;;;;;52847:13;;52830:14;:30;52793:67;52786:478;;;52871:31;52905:11;:27;52917:14;52905:27;;;;;;;;;;;52871:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52948:9;:16;;;52943:287;;53007:1;52981:28;;:9;:14;;;:28;;;52977:94;;53045:9;:14;;;53024:35;;52977:94;53109:6;53087:28;;:18;:28;;;53083:138;;53163:14;53130:13;53144:15;53130:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;53192:17;;;;;:::i;:::-;;;;53083:138;52943:287;53240:16;;;;;:::i;:::-;;;;52862:402;52786:478;;;53279:13;53272:20;;;;;;;52465:833;;;:::o;54133:74::-;9458:12;:10;:12::i;:::-;9447:23;;:7;:5;:7::i;:::-;:23;;;9439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54196:5:::1;54189:4;:12;;;;54133:74:::0;:::o;54349:132::-;9458:12;:10;:12::i;:::-;9447:23;;:7;:5;:7::i;:::-;:23;;;9439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54457:18:::1;54437:17;:38;;;;;;;;;;;;:::i;:::-;;54349:132:::0;:::o;50406:28::-;;;;;;;;;;;;;:::o;50165:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50331:25::-;;;;;;;;;;;;;:::o;50132:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35041:125::-;35105:7;35132:21;35145:7;35132:12;:21::i;:::-;:26;;;35125:33;;35041:125;;;:::o;50361:40::-;;;;;;;;;;;;;:::o;32489:206::-;32553:7;32594:1;32577:19;;:5;:19;;;32573:60;;32605:28;;;;;;;;;;;;;;32573:60;32659:12;:19;32672:5;32659:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;32651:36;;32644:43;;32489:206;;;:::o;9878:103::-;9458:12;:10;:12::i;:::-;9447:23;;:7;:5;:7::i;:::-;:23;;;9439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9943:30:::1;9970:1;9943:18;:30::i;:::-;9878:103::o:0;54890:98::-;9458:12;:10;:12::i;:::-;9447:23;;:7;:5;:7::i;:::-;:23;;;9439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54971:11:::1;54958:10;:24;;;;54890:98:::0;:::o;54487:100::-;9458:12;:10;:12::i;:::-;9447:23;;:7;:5;:7::i;:::-;:23;;;9439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54571:10:::1;54559:9;:22;;;;;;;;;;;;:::i;:::-;;54487:100:::0;:::o;9227:87::-;9273:7;9300:6;;;;;;;;;;;9293:13;;9227:87;:::o;50291:33::-;;;;:::o;35402:104::-;35458:13;35491:7;35484:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35402:104;:::o;52084:212::-;52149:11;51035:1;51021:11;:15;:52;;;;;51055:18;;51040:11;:33;;51021:52;51013:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;51144:9;;51129:11;51113:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;51105:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;52182:11:::1;51273:10;;51258:11;:25;51255:222;;51314:1;51301:9;:14;;51293:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;51374:11;51361:10;;:24;;;;:::i;:::-;51348:10;:37;;;;51255:222;;;51434:11;51427:4;;:18;;;;:::i;:::-;51414:9;:31;;51406:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;51255:222;52211:6:::2;;;;;;;;;;;52210:7;52202:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;52254:36;52264:12;:10;:12::i;:::-;52278:11;52254:9;:36::i;:::-;51185:1:::1;52084:212:::0;;:::o;37012:287::-;37123:12;:10;:12::i;:::-;37111:24;;:8;:24;;;37107:54;;37144:17;;;;;;;;;;;;;;37107:54;37219:8;37174:18;:32;37193:12;:10;:12::i;:::-;37174:32;;;;;;;;;;;;;;;:42;37207:8;37174:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;37272:8;37243:48;;37258:12;:10;:12::i;:::-;37243:48;;;37282:8;37243:48;;;;;;:::i;:::-;;;;;;;;37012:287;;:::o;50198:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54213:130::-;9458:12;:10;:12::i;:::-;9447:23;;:7;:5;:7::i;:::-;:23;;;9439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54318:19:::1;54297:18;:40;;;;54213:130:::0;:::o;54994:105::-;9458:12;:10;:12::i;:::-;9447:23;;:7;:5;:7::i;:::-;:23;;;9439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55087:6:::1;55064:20;;:29;;;;;;;;;;;;;;;;;;54994:105:::0;:::o;38098:369::-;38265:28;38275:4;38281:2;38285:7;38265:9;:28::i;:::-;38308:15;:2;:13;;;:15::i;:::-;:76;;;;;38328:56;38359:4;38365:2;38369:7;38378:5;38328:30;:56::i;:::-;38327:57;38308:76;38304:156;;;38408:40;;;;;;;;;;;;;;38304:156;38098:369;;;;:::o;54699:102::-;9458:12;:10;:12::i;:::-;9447:23;;:7;:5;:7::i;:::-;:23;;;9439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54784:11:::1;54771:10;:24;;;;54699:102:::0;:::o;53595:445::-;53669:13;53699:17;53707:8;53699:7;:17::i;:::-;53691:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;53793:5;53781:17;;:8;;;;;;;;;;;:17;;;53777:64;;53816:17;53809:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53777:64;53849:28;53880:10;:8;:10::i;:::-;53849:41;;53935:1;53910:14;53904:28;:32;:130;;;;;;;;;;;;;;;;;53972:14;53988:19;:8;:17;:19::i;:::-;54009:9;53955:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53904:130;53897:137;;;53595:445;;;;:::o;51496:582::-;51603:11;51035:1;51021:11;:15;:52;;;;;51055:18;;51040:11;:33;;51021:52;51013:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;51144:9;;51129:11;51113:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;51105:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;51636:11:::1;51273:10;;51258:11;:25;51255:222;;51314:1;51301:9;:14;;51293:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;51374:11;51361:10;;:24;;;;:::i;:::-;51348:10;:37;;;;51255:222;;;51434:11;51427:4;;:18;;;;:::i;:::-;51414:9;:31;;51406:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;51255:222;51702:20:::2;;;;;;;;;;;51694:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;51777:16;:30;51794:12;:10;:12::i;:::-;51777:30;;;;;;;;;;;;;;;;;;;;;;;;;51776:31;51768:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51843:12;51885;:10;:12::i;:::-;51868:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;51858:41;;;;;;51843:56;;51914:50;51933:12;;51914:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51947:10;;51959:4;51914:18;:50::i;:::-;51906:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;52025:4;51992:16;:30;52009:12;:10;:12::i;:::-;51992:30;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;52036:36;52046:12;:10;:12::i;:::-;52060:11;52036:9;:36::i;:::-;51649:429;51185:1:::1;51496:582:::0;;;;:::o;50262:24::-;;;;:::o;50077:48::-;;;;;;;;;;;;;;;;;;;;;;:::o;54046:81::-;9458:12;:10;:12::i;:::-;9447:23;;:7;:5;:7::i;:::-;:23;;;9439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54115:6:::1;54104:8;;:17;;;;;;;;;;;;;;;;;;54046:81:::0;:::o;37370:164::-;37467:4;37491:18;:25;37510:5;37491:25;;;;;;;;;;;;;;;:35;37517:8;37491:35;;;;;;;;;;;;;;;;;;;;;;;;;37484:42;;37370:164;;;;:::o;52304:155::-;52390:11;51035:1;51021:11;:15;:52;;;;;51055:18;;51040:11;:33;;51021:52;51013:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;51144:9;;51129:11;51113:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;51105:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;9458:12:::1;:10;:12::i;:::-;9447:23;;:7;:5;:7::i;:::-;:23;;;9439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52420:33:::2;52430:9;52441:11;52420:9;:33::i;:::-;52304:155:::0;;;:::o;10136:201::-;9458:12;:10;:12::i;:::-;9447:23;;:7;:5;:7::i;:::-;:23;;;9439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10245:1:::1;10225:22;;:8;:22;;::::0;10217:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;10301:28;10320:8;10301:18;:28::i;:::-;10136:201:::0;:::o;22011:157::-;22096:4;22135:25;22120:40;;;:11;:40;;;;22113:47;;22011:157;;;:::o;38722:174::-;38779:4;38822:7;38803:15;:13;:15::i;:::-;:26;;:53;;;;;38843:13;;38833:7;:23;38803:53;:85;;;;;38861:11;:20;38873:7;38861:20;;;;;;;;;;;:27;;;;;;;;;;;;38860:28;38803:85;38796:92;;38722:174;;;:::o;7951:98::-;8004:7;8031:10;8024:17;;7951:98;:::o;46879:196::-;47021:2;46994:15;:24;47010:7;46994:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47059:7;47055:2;47039:28;;47048:5;47039:28;;;;;;;;;;;;46879:196;;;:::o;53304:95::-;53369:7;53392:1;53385:8;;53304:95;:::o;41822:2130::-;41937:35;41975:21;41988:7;41975:12;:21::i;:::-;41937:59;;42035:4;42013:26;;:13;:18;;;:26;;;42009:67;;42048:28;;;;;;;;;;;;;;42009:67;42089:22;42131:4;42115:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;42152:36;42169:4;42175:12;:10;:12::i;:::-;42152:16;:36::i;:::-;42115:73;:126;;;;42229:12;:10;:12::i;:::-;42205:36;;:20;42217:7;42205:11;:20::i;:::-;:36;;;42115:126;42089:153;;42260:17;42255:66;;42286:35;;;;;;;;;;;;;;42255:66;42350:1;42336:16;;:2;:16;;;42332:52;;42361:23;;;;;;;;;;;;;;42332:52;42397:43;42419:4;42425:2;42429:7;42438:1;42397:21;:43::i;:::-;42505:35;42522:1;42526:7;42535:4;42505:8;:35::i;:::-;42866:1;42836:12;:18;42849:4;42836:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42910:1;42882:12;:16;42895:2;42882:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42928:31;42962:11;:20;42974:7;42962:20;;;;;;;;;;;42928:54;;43013:2;42997:8;:13;;;:18;;;;;;;;;;;;;;;;;;43063:15;43030:8;:23;;;:49;;;;;;;;;;;;;;;;;;43331:19;43363:1;43353:7;:11;43331:33;;43379:31;43413:11;:24;43425:11;43413:24;;;;;;;;;;;43379:58;;43481:1;43456:27;;:8;:13;;;;;;;;;;;;:27;;;43452:384;;43666:13;;43651:11;:28;43647:174;;43720:4;43704:8;:13;;;:20;;;;;;;;;;;;;;;;;;43773:13;:28;;;43747:8;:23;;;:54;;;;;;;;;;;;;;;;;;43647:174;43452:384;42811:1036;;;43883:7;43879:2;43864:27;;43873:4;43864:27;;;;;;;;;;;;43902:42;43923:4;43929:2;43933:7;43942:1;43902:20;:42::i;:::-;41926:2026;;41822:2130;;;:::o;33870:1109::-;33932:21;;:::i;:::-;33966:12;33981:7;33966:22;;34049:4;34030:15;:13;:15::i;:::-;:23;;:47;;;;;34064:13;;34057:4;:20;34030:47;34026:886;;;34098:31;34132:11;:17;34144:4;34132:17;;;;;;;;;;;34098:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34173:9;:16;;;34168:729;;34244:1;34218:28;;:9;:14;;;:28;;;34214:101;;34282:9;34275:16;;;;;;34214:101;34617:261;34624:4;34617:261;;;34657:6;;;;;;;;34702:11;:17;34714:4;34702:17;;;;;;;;;;;34690:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34776:1;34750:28;;:9;:14;;;:28;;;34746:109;;34818:9;34811:16;;;;;;34746:109;34617:261;;;34168:729;34079:833;34026:886;34940:31;;;;;;;;;;;;;;33870:1109;;;;:::o;10497:191::-;10571:16;10590:6;;;;;;;;;;;10571:25;;10616:8;10607:6;;:17;;;;;;;;;;;;;;;;;;10671:8;10640:40;;10661:8;10640:40;;;;;;;;;;;;10560:128;10497:191;:::o;38904:104::-;38973:27;38983:2;38987:8;38973:27;;;;;;;;;;;;:9;:27::i;:::-;38904:104;;:::o;11928:326::-;11988:4;12245:1;12223:7;:19;;;:23;12216:30;;11928:326;;;:::o;47567:667::-;47730:4;47767:2;47751:36;;;47788:12;:10;:12::i;:::-;47802:4;47808:7;47817:5;47751:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;47747:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48002:1;47985:6;:13;:18;47981:235;;48031:40;;;;;;;;;;;;;;47981:235;48174:6;48168:13;48159:6;48155:2;48151:15;48144:38;47747:480;47880:45;;;47870:55;;;:6;:55;;;;47863:62;;;47567:667;;;;;;:::o;55347:104::-;55407:13;55436:9;55429:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55347:104;:::o;5513:723::-;5569:13;5799:1;5790:5;:10;5786:53;;5817:10;;;;;;;;;;;;;;;;;;;;;5786:53;5849:12;5864:5;5849:20;;5880:14;5905:78;5920:1;5912:4;:9;5905:78;;5938:8;;;;;:::i;:::-;;;;5969:2;5961:10;;;;;:::i;:::-;;;5905:78;;;5993:19;6025:6;6015:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5993:39;;6043:154;6059:1;6050:5;:10;6043:154;;6087:1;6077:11;;;;;:::i;:::-;;;6154:2;6146:5;:10;;;;:::i;:::-;6133:2;:24;;;;:::i;:::-;6120:39;;6103:6;6110;6103:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6183:2;6174:11;;;;;:::i;:::-;;;6043:154;;;6221:6;6207:21;;;;;5513:723;;;;:::o;3682:190::-;3807:4;3860;3831:25;3844:5;3851:4;3831:12;:25::i;:::-;:33;3824:40;;3682:190;;;;;:::o;48882:159::-;;;;;:::o;49700:158::-;;;;;:::o;39371:163::-;39494:32;39500:2;39504:8;39514:5;39521:4;39494:5;:32::i;:::-;39371:163;;;:::o;4234:675::-;4317:7;4337:20;4360:4;4337:27;;4380:9;4375:497;4399:5;:12;4395:1;:16;4375:497;;;4433:20;4456:5;4462:1;4456:8;;;;;;;;:::i;:::-;;;;;;;;4433:31;;4499:12;4483;:28;4479:382;;4626:42;4641:12;4655;4626:14;:42::i;:::-;4611:57;;4479:382;;;4803:42;4818:12;4832;4803:14;:42::i;:::-;4788:57;;4479:382;4418:454;4413:3;;;;;:::i;:::-;;;;4375:497;;;;4889:12;4882:19;;;4234:675;;;;:::o;39793:1775::-;39932:20;39955:13;;39932:36;;39997:1;39983:16;;:2;:16;;;39979:48;;40008:19;;;;;;;;;;;;;;39979:48;40054:1;40042:8;:13;40038:44;;40064:18;;;;;;;;;;;;;;40038:44;40095:61;40125:1;40129:2;40133:12;40147:8;40095:21;:61::i;:::-;40468:8;40433:12;:16;40446:2;40433:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40532:8;40492:12;:16;40505:2;40492:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40591:2;40558:11;:25;40570:12;40558:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;40658:15;40608:11;:25;40620:12;40608:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;40691:20;40714:12;40691:35;;40741:11;40770:8;40755:12;:23;40741:37;;40799:4;:23;;;;;40807:15;:2;:13;;;:15::i;:::-;40799:23;40795:641;;;40843:314;40899:12;40895:2;40874:38;;40891:1;40874:38;;;;;;;;;;;;40940:69;40979:1;40983:2;40987:14;;;;;;41003:5;40940:30;:69::i;:::-;40935:174;;41045:40;;;;;;;;;;;;;;40935:174;41152:3;41136:12;:19;40843:314;;41238:12;41221:13;;:29;41217:43;;41252:8;;;41217:43;40795:641;;;41301:120;41357:14;;;;;;41353:2;41332:40;;41349:1;41332:40;;;;;;;;;;;;41416:3;41400:12;:19;41301:120;;40795:641;41466:12;41450:13;:28;;;;40408:1082;;41500:60;41529:1;41533:2;41537:12;41551:8;41500:20;:60::i;:::-;39921:1647;39793:1775;;;;:::o;4917:224::-;4985:13;5048:1;5042:4;5035:15;5077:1;5071:4;5064:15;5118:4;5112;5102:21;5093:30;;4917:224;;;;:::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:117::-;15135:1;15132;15125:12;15149:117;15258:1;15255;15248:12;15289:568;15362:8;15372:6;15422:3;15415:4;15407:6;15403:17;15399:27;15389:122;;15430:79;;:::i;:::-;15389:122;15543:6;15530:20;15520:30;;15573:18;15565:6;15562:30;15559:117;;;15595:79;;:::i;:::-;15559:117;15709:4;15701:6;15697:17;15685:29;;15763:3;15755:4;15747:6;15743:17;15733:8;15729:32;15726:41;15723:128;;;15770:79;;:::i;:::-;15723:128;15289:568;;;;;:::o;15863:704::-;15958:6;15966;15974;16023:2;16011:9;16002:7;15998:23;15994:32;15991:119;;;16029:79;;:::i;:::-;15991:119;16149:1;16174:53;16219:7;16210:6;16199:9;16195:22;16174:53;:::i;:::-;16164:63;;16120:117;16304:2;16293:9;16289:18;16276:32;16335:18;16327:6;16324:30;16321:117;;;16357:79;;:::i;:::-;16321:117;16470:80;16542:7;16533:6;16522:9;16518:22;16470:80;:::i;:::-;16452:98;;;;16247:313;15863:704;;;;;:::o;16573:474::-;16641:6;16649;16698:2;16686:9;16677:7;16673:23;16669:32;16666:119;;;16704:79;;:::i;:::-;16666:119;16824:1;16849:53;16894:7;16885:6;16874:9;16870:22;16849:53;:::i;:::-;16839:63;;16795:117;16951:2;16977:53;17022:7;17013:6;17002:9;16998:22;16977:53;:::i;:::-;16967:63;;16922:118;16573:474;;;;;:::o;17053:::-;17121:6;17129;17178:2;17166:9;17157:7;17153:23;17149:32;17146:119;;;17184:79;;:::i;:::-;17146:119;17304:1;17329:53;17374:7;17365:6;17354:9;17350:22;17329:53;:::i;:::-;17319:63;;17275:117;17431:2;17457:53;17502:7;17493:6;17482:9;17478:22;17457:53;:::i;:::-;17447:63;;17402:118;17053:474;;;;;:::o;17533:180::-;17581:77;17578:1;17571:88;17678:4;17675:1;17668:15;17702:4;17699:1;17692:15;17719:320;17763:6;17800:1;17794:4;17790:12;17780:22;;17847:1;17841:4;17837:12;17868:18;17858:81;;17924:4;17916:6;17912:17;17902:27;;17858:81;17986:2;17978:6;17975:14;17955:18;17952:38;17949:84;;18005:18;;:::i;:::-;17949:84;17770:269;17719:320;;;:::o;18045:182::-;18185:34;18181:1;18173:6;18169:14;18162:58;18045:182;:::o;18233:366::-;18375:3;18396:67;18460:2;18455:3;18396:67;:::i;:::-;18389:74;;18472:93;18561:3;18472:93;:::i;:::-;18590:2;18585:3;18581:12;18574:19;;18233:366;;;:::o;18605:419::-;18771:4;18809:2;18798:9;18794:18;18786:26;;18858:9;18852:4;18848:20;18844:1;18833:9;18829:17;18822:47;18886:131;19012:4;18886:131;:::i;:::-;18878:139;;18605:419;;;:::o;19030:181::-;19170:33;19166:1;19158:6;19154:14;19147:57;19030:181;:::o;19217:366::-;19359:3;19380:67;19444:2;19439:3;19380:67;:::i;:::-;19373:74;;19456:93;19545:3;19456:93;:::i;:::-;19574:2;19569:3;19565:12;19558:19;;19217:366;;;:::o;19589:419::-;19755:4;19793:2;19782:9;19778:18;19770:26;;19842:9;19836:4;19832:20;19828:1;19817:9;19813:17;19806:47;19870:131;19996:4;19870:131;:::i;:::-;19862:139;;19589:419;;;:::o;20014:147::-;20115:11;20152:3;20137:18;;20014:147;;;;:::o;20167:114::-;;:::o;20287:398::-;20446:3;20467:83;20548:1;20543:3;20467:83;:::i;:::-;20460:90;;20559:93;20648:3;20559:93;:::i;:::-;20677:1;20672:3;20668:11;20661:18;;20287:398;;;:::o;20691:379::-;20875:3;20897:147;21040:3;20897:147;:::i;:::-;20890:154;;21061:3;21054:10;;20691:379;;;:::o;21076:180::-;21124:77;21121:1;21114:88;21221:4;21218:1;21211:15;21245:4;21242:1;21235:15;21262:180;21310:77;21307:1;21300:88;21407:4;21404:1;21397:15;21431:4;21428:1;21421:15;21448:233;21487:3;21510:24;21528:5;21510:24;:::i;:::-;21501:33;;21556:66;21549:5;21546:77;21543:103;;21626:18;;:::i;:::-;21543:103;21673:1;21666:5;21662:13;21655:20;;21448:233;;;:::o;21687:170::-;21827:22;21823:1;21815:6;21811:14;21804:46;21687:170;:::o;21863:366::-;22005:3;22026:67;22090:2;22085:3;22026:67;:::i;:::-;22019:74;;22102:93;22191:3;22102:93;:::i;:::-;22220:2;22215:3;22211:12;22204:19;;21863:366;;;:::o;22235:419::-;22401:4;22439:2;22428:9;22424:18;22416:26;;22488:9;22482:4;22478:20;22474:1;22463:9;22459:17;22452:47;22516:131;22642:4;22516:131;:::i;:::-;22508:139;;22235:419;;;:::o;22660:305::-;22700:3;22719:20;22737:1;22719:20;:::i;:::-;22714:25;;22753:20;22771:1;22753:20;:::i;:::-;22748:25;;22907:1;22839:66;22835:74;22832:1;22829:81;22826:107;;;22913:18;;:::i;:::-;22826:107;22957:1;22954;22950:9;22943:16;;22660:305;;;;:::o;22971:170::-;23111:22;23107:1;23099:6;23095:14;23088:46;22971:170;:::o;23147:366::-;23289:3;23310:67;23374:2;23369:3;23310:67;:::i;:::-;23303:74;;23386:93;23475:3;23386:93;:::i;:::-;23504:2;23499:3;23495:12;23488:19;;23147:366;;;:::o;23519:419::-;23685:4;23723:2;23712:9;23708:18;23700:26;;23772:9;23766:4;23762:20;23758:1;23747:9;23743:17;23736:47;23800:131;23926:4;23800:131;:::i;:::-;23792:139;;23519:419;;;:::o;23944:169::-;24084:21;24080:1;24072:6;24068:14;24061:45;23944:169;:::o;24119:366::-;24261:3;24282:67;24346:2;24341:3;24282:67;:::i;:::-;24275:74;;24358:93;24447:3;24358:93;:::i;:::-;24476:2;24471:3;24467:12;24460:19;;24119:366;;;:::o;24491:419::-;24657:4;24695:2;24684:9;24680:18;24672:26;;24744:9;24738:4;24734:20;24730:1;24719:9;24715:17;24708:47;24772:131;24898:4;24772:131;:::i;:::-;24764:139;;24491:419;;;:::o;24916:191::-;24956:4;24976:20;24994:1;24976:20;:::i;:::-;24971:25;;25010:20;25028:1;25010:20;:::i;:::-;25005:25;;25049:1;25046;25043:8;25040:34;;;25054:18;;:::i;:::-;25040:34;25099:1;25096;25092:9;25084:17;;24916:191;;;;:::o;25113:348::-;25153:7;25176:20;25194:1;25176:20;:::i;:::-;25171:25;;25210:20;25228:1;25210:20;:::i;:::-;25205:25;;25398:1;25330:66;25326:74;25323:1;25320:81;25315:1;25308:9;25301:17;25297:105;25294:131;;;25405:18;;:::i;:::-;25294:131;25453:1;25450;25446:9;25435:20;;25113:348;;;;:::o;25467:173::-;25607:25;25603:1;25595:6;25591:14;25584:49;25467:173;:::o;25646:366::-;25788:3;25809:67;25873:2;25868:3;25809:67;:::i;:::-;25802:74;;25885:93;25974:3;25885:93;:::i;:::-;26003:2;25998:3;25994:12;25987:19;;25646:366;;;:::o;26018:419::-;26184:4;26222:2;26211:9;26207:18;26199:26;;26271:9;26265:4;26261:20;26257:1;26246:9;26242:17;26235:47;26299:131;26425:4;26299:131;:::i;:::-;26291:139;;26018:419;;;:::o;26443:234::-;26583:34;26579:1;26571:6;26567:14;26560:58;26652:17;26647:2;26639:6;26635:15;26628:42;26443:234;:::o;26683:366::-;26825:3;26846:67;26910:2;26905:3;26846:67;:::i;:::-;26839:74;;26922:93;27011:3;26922:93;:::i;:::-;27040:2;27035:3;27031:12;27024:19;;26683:366;;;:::o;27055:419::-;27221:4;27259:2;27248:9;27244:18;27236:26;;27308:9;27302:4;27298:20;27294:1;27283:9;27279:17;27272:47;27336:131;27462:4;27336:131;:::i;:::-;27328:139;;27055:419;;;:::o;27480:148::-;27582:11;27619:3;27604:18;;27480:148;;;;:::o;27634:377::-;27740:3;27768:39;27801:5;27768:39;:::i;:::-;27823:89;27905:6;27900:3;27823:89;:::i;:::-;27816:96;;27921:52;27966:6;27961:3;27954:4;27947:5;27943:16;27921:52;:::i;:::-;27998:6;27993:3;27989:16;27982:23;;27744:267;27634:377;;;;:::o;28017:141::-;28066:4;28089:3;28081:11;;28112:3;28109:1;28102:14;28146:4;28143:1;28133:18;28125:26;;28017:141;;;:::o;28188:845::-;28291:3;28328:5;28322:12;28357:36;28383:9;28357:36;:::i;:::-;28409:89;28491:6;28486:3;28409:89;:::i;:::-;28402:96;;28529:1;28518:9;28514:17;28545:1;28540:137;;;;28691:1;28686:341;;;;28507:520;;28540:137;28624:4;28620:9;28609;28605:25;28600:3;28593:38;28660:6;28655:3;28651:16;28644:23;;28540:137;;28686:341;28753:38;28785:5;28753:38;:::i;:::-;28813:1;28827:154;28841:6;28838:1;28835:13;28827:154;;;28915:7;28909:14;28905:1;28900:3;28896:11;28889:35;28965:1;28956:7;28952:15;28941:26;;28863:4;28860:1;28856:12;28851:17;;28827:154;;;29010:6;29005:3;29001:16;28994:23;;28693:334;;28507:520;;28295:738;;28188:845;;;;:::o;29039:589::-;29264:3;29286:95;29377:3;29368:6;29286:95;:::i;:::-;29279:102;;29398:95;29489:3;29480:6;29398:95;:::i;:::-;29391:102;;29510:92;29598:3;29589:6;29510:92;:::i;:::-;29503:99;;29619:3;29612:10;;29039:589;;;;;;:::o;29634:221::-;29774:34;29770:1;29762:6;29758:14;29751:58;29843:4;29838:2;29830:6;29826:15;29819:29;29634:221;:::o;29861:366::-;30003:3;30024:67;30088:2;30083:3;30024:67;:::i;:::-;30017:74;;30100:93;30189:3;30100:93;:::i;:::-;30218:2;30213:3;30209:12;30202:19;;29861:366;;;:::o;30233:419::-;30399:4;30437:2;30426:9;30422:18;30414:26;;30486:9;30480:4;30476:20;30472:1;30461:9;30457:17;30450:47;30514:131;30640:4;30514:131;:::i;:::-;30506:139;;30233:419;;;:::o;30658:174::-;30798:26;30794:1;30786:6;30782:14;30775:50;30658:174;:::o;30838:366::-;30980:3;31001:67;31065:2;31060:3;31001:67;:::i;:::-;30994:74;;31077:93;31166:3;31077:93;:::i;:::-;31195:2;31190:3;31186:12;31179:19;;30838:366;;;:::o;31210:419::-;31376:4;31414:2;31403:9;31399:18;31391:26;;31463:9;31457:4;31453:20;31449:1;31438:9;31434:17;31427:47;31491:131;31617:4;31491:131;:::i;:::-;31483:139;;31210:419;;;:::o;31635:94::-;31668:8;31716:5;31712:2;31708:14;31687:35;;31635:94;;;:::o;31735:::-;31774:7;31803:20;31817:5;31803:20;:::i;:::-;31792:31;;31735:94;;;:::o;31835:100::-;31874:7;31903:26;31923:5;31903:26;:::i;:::-;31892:37;;31835:100;;;:::o;31941:157::-;32046:45;32066:24;32084:5;32066:24;:::i;:::-;32046:45;:::i;:::-;32041:3;32034:58;31941:157;;:::o;32104:256::-;32216:3;32231:75;32302:3;32293:6;32231:75;:::i;:::-;32331:2;32326:3;32322:12;32315:19;;32351:3;32344:10;;32104:256;;;;:::o;32366:164::-;32506:16;32502:1;32494:6;32490:14;32483:40;32366:164;:::o;32536:366::-;32678:3;32699:67;32763:2;32758:3;32699:67;:::i;:::-;32692:74;;32775:93;32864:3;32775:93;:::i;:::-;32893:2;32888:3;32884:12;32877:19;;32536:366;;;:::o;32908:419::-;33074:4;33112:2;33101:9;33097:18;33089:26;;33161:9;33155:4;33151:20;33147:1;33136:9;33132:17;33125:47;33189:131;33315:4;33189:131;:::i;:::-;33181:139;;32908:419;;;:::o;33333:225::-;33473:34;33469:1;33461:6;33457:14;33450:58;33542:8;33537:2;33529:6;33525:15;33518:33;33333:225;:::o;33564:366::-;33706:3;33727:67;33791:2;33786:3;33727:67;:::i;:::-;33720:74;;33803:93;33892:3;33803:93;:::i;:::-;33921:2;33916:3;33912:12;33905:19;;33564:366;;;:::o;33936:419::-;34102:4;34140:2;34129:9;34125:18;34117:26;;34189:9;34183:4;34179:20;34175:1;34164:9;34160:17;34153:47;34217:131;34343:4;34217:131;:::i;:::-;34209:139;;33936:419;;;:::o;34361:98::-;34412:6;34446:5;34440:12;34430:22;;34361:98;;;:::o;34465:168::-;34548:11;34582:6;34577:3;34570:19;34622:4;34617:3;34613:14;34598:29;;34465:168;;;;:::o;34639:360::-;34725:3;34753:38;34785:5;34753:38;:::i;:::-;34807:70;34870:6;34865:3;34807:70;:::i;:::-;34800:77;;34886:52;34931:6;34926:3;34919:4;34912:5;34908:16;34886:52;:::i;:::-;34963:29;34985:6;34963:29;:::i;:::-;34958:3;34954:39;34947:46;;34729:270;34639:360;;;;:::o;35005:640::-;35200:4;35238:3;35227:9;35223:19;35215:27;;35252:71;35320:1;35309:9;35305:17;35296:6;35252:71;:::i;:::-;35333:72;35401:2;35390:9;35386:18;35377:6;35333:72;:::i;:::-;35415;35483:2;35472:9;35468:18;35459:6;35415:72;:::i;:::-;35534:9;35528:4;35524:20;35519:2;35508:9;35504:18;35497:48;35562:76;35633:4;35624:6;35562:76;:::i;:::-;35554:84;;35005:640;;;;;;;:::o;35651:141::-;35707:5;35738:6;35732:13;35723:22;;35754:32;35780:5;35754:32;:::i;:::-;35651:141;;;;:::o;35798:349::-;35867:6;35916:2;35904:9;35895:7;35891:23;35887:32;35884:119;;;35922:79;;:::i;:::-;35884:119;36042:1;36067:63;36122:7;36113:6;36102:9;36098:22;36067:63;:::i;:::-;36057:73;;36013:127;35798:349;;;;:::o;36153:180::-;36201:77;36198:1;36191:88;36298:4;36295:1;36288:15;36322:4;36319:1;36312:15;36339:185;36379:1;36396:20;36414:1;36396:20;:::i;:::-;36391:25;;36430:20;36448:1;36430:20;:::i;:::-;36425:25;;36469:1;36459:35;;36474:18;;:::i;:::-;36459:35;36516:1;36513;36509:9;36504:14;;36339:185;;;;:::o;36530:176::-;36562:1;36579:20;36597:1;36579:20;:::i;:::-;36574:25;;36613:20;36631:1;36613:20;:::i;:::-;36608:25;;36652:1;36642:35;;36657:18;;:::i;:::-;36642:35;36698:1;36695;36691:9;36686:14;;36530:176;;;;:::o

Swarm Source

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