ETH Price: $2,452.84 (+0.46%)

Token

unicorntown (UT)
 

Overview

Max Total Supply

481 UT

Holders

194

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
cryptomirek.eth
Balance
2 UT
0x9c6e4c937b469f29ec5d790906b11aa1410e3645
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:
unicorntown

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// 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.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


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

pragma solidity ^0.8.0;


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

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

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

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



pragma solidity >=0.8.9 <0.9.0;





contract unicorntown is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;

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

  string public uriPrefix = '';
  string public uriSuffix = '.json';
  string public hiddenMetadataUri;
  
  uint256 public cost= 0.005 ether;
  uint256 public maxSupply = 6969;
  uint256 public maxMintAmountPerTx = 20;
  uint256 public constant MAX_FREE = 1;
  uint256 public MAX_PER_WALLET = 20;

  bool public paused = true;
  bool public whitelistMintEnabled = false;
  bool public revealed = false;
  mapping(address => uint) private _walletMintedCount;

  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 count) {
    require(count > 0 && count <= maxMintAmountPerTx, 'Invalid mint amount!');
    require(totalSupply() + count <= maxSupply, 'Max supply exceeded!');
    _;
  }

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

  function whitelistMint(uint256 count, bytes32[] calldata _merkleProof) public payable mintCompliance(count) mintPriceCompliance(count) {
    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(), count);
  }

  function mint(uint256 count) external payable  {
    require(!paused, 'The contract is paused!');
		require(count <= maxMintAmountPerTx,'Exceeds NFT per transaction limit');
		require(totalSupply() + count <= maxSupply,'Exceeds max supply');
    require(
            _numberMinted(msg.sender) + count <= MAX_PER_WALLET,
            "Too many for address"
        );

        uint payForCount = count;
        uint mintedSoFar = _walletMintedCount[msg.sender];
        if(mintedSoFar < MAX_FREE) {
            uint remainingFreeMints = MAX_FREE - mintedSoFar;
            if(count > remainingFreeMints) {
                payForCount = count - remainingFreeMints;
            }
            else {
                payForCount = 0;
            }
        }

		require(
			msg.value >= payForCount * cost,
			'Ether value sent is not sufficient'
		);

		_walletMintedCount[msg.sender] += count;
		_safeMint(msg.sender, count);
    // require(isContract(msg.sender) == false, "Cannot mint from a contract");
    // require(!paused, 'The contract is paused!');

    // _safeMint(_msgSender(), count);
  }
  

  function isContract(address account) internal view returns (bool) {
        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }
  
  function mintForAddress(uint256 count, address _receiver) public mintCompliance(count) onlyOwner {
    _safeMint(_receiver, count);
  }

  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 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 setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

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

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

  function mintedCount(address owner) external view returns (uint) {
        return _walletMintedCount[owner];
    }

  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":[],"name":"MAX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"mintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"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":"count","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"}]

608060405260405180602001604052806000815250600c90805190602001906200002b929190620004b1565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d908051906020019062000079929190620004b1565b506611c37937e08000600f55611b39601055601460115560146012556001601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff0219169083151502179055506000601360026101000a81548160ff021916908315150217905550348015620000f357600080fd5b50604051620057fd380380620057fd833981810160405281019062000119919062000739565b8585816002908051906020019062000133929190620004b1565b5080600390805190602001906200014c929190620004b1565b506200015d620001d360201b60201c565b60008190555050506200018562000179620001dc60201b60201c565b620001e460201b60201c565b60016009819055506200019e84620002aa60201b60201c565b82601081905550620001b6826200034360201b60201c565b620001c781620003dc60201b60201c565b5050505050506200091a565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002ba620001dc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002e06200048760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000339576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003309062000893565b60405180910390fd5b80600f8190555050565b62000353620001dc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003796200048760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003d2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003c99062000893565b60405180910390fd5b8060118190555050565b620003ec620001dc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004126200048760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200046b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004629062000893565b60405180910390fd5b80600e908051906020019062000483929190620004b1565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620004bf90620008e4565b90600052602060002090601f016020900481019282620004e357600085556200052f565b82601f10620004fe57805160ff19168380011785556200052f565b828001600101855582156200052f579182015b828111156200052e57825182559160200191906001019062000511565b5b5090506200053e919062000542565b5090565b5b808211156200055d57600081600090555060010162000543565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620005ca826200057f565b810181811067ffffffffffffffff82111715620005ec57620005eb62000590565b5b80604052505050565b60006200060162000561565b90506200060f8282620005bf565b919050565b600067ffffffffffffffff82111562000632576200063162000590565b5b6200063d826200057f565b9050602081019050919050565b60005b838110156200066a5780820151818401526020810190506200064d565b838111156200067a576000848401525b50505050565b600062000697620006918462000614565b620005f5565b905082815260208101848484011115620006b657620006b56200057a565b5b620006c38482856200064a565b509392505050565b600082601f830112620006e357620006e262000575565b5b8151620006f584826020860162000680565b91505092915050565b6000819050919050565b6200071381620006fe565b81146200071f57600080fd5b50565b600081519050620007338162000708565b92915050565b60008060008060008060c087890312156200075957620007586200056b565b5b600087015167ffffffffffffffff8111156200077a576200077962000570565b5b6200078889828a01620006cb565b965050602087015167ffffffffffffffff811115620007ac57620007ab62000570565b5b620007ba89828a01620006cb565b9550506040620007cd89828a0162000722565b9450506060620007e089828a0162000722565b9350506080620007f389828a0162000722565b92505060a087015167ffffffffffffffff81111562000817576200081662000570565b5b6200082589828a01620006cb565b9150509295509295509295565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200087b60208362000832565b9150620008888262000843565b602082019050919050565b60006020820190508181036000830152620008ae816200086c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008fd57607f821691505b60208210811415620009145762000913620008b5565b5b50919050565b614ed3806200092a6000396000f3fe6080604052600436106102725760003560e01c806370a082311161014f578063b767a098116100c1578063e0a808531161007a578063e0a8085314610922578063e985e9c51461094b578063ed6661c214610988578063efbd73f4146109b3578063f2fde38b146109dc578063fddcb5ea14610a0557610272565b8063b767a0981461080f578063b88d4fde14610838578063c87b56dd14610861578063d2cab0561461089e578063d5abeb01146108ba578063db4bec44146108e557610272565b806394354fd01161011357806394354fd01461072057806395d89b411461074b578063a0712d6814610776578063a22cb46514610792578063a45ba8e7146107bb578063b071401b146107e657610272565b806370a082311461064f578063715018a61461068c5780637cb64759146106a35780637ec4a659146106cc5780638da5cb5b146106f557610272565b80633ccfd60b116101e857806351830227116101ac578063518302271461053b5780635503a0e8146105665780635c975abb1461059157806362b99ad4146105bc5780636352211e146105e75780636caede3d1461062457610272565b80633ccfd60b1461046c57806342842e0e14610483578063438b6300146104ac57806344a0d68a146104e95780634fdd43cb1461051257610272565b806313faede61161023a57806313faede61461037057806316ba10e01461039b57806316c38b3c146103c457806318160ddd146103ed57806323b872dd146104185780632eb4a7ab1461044157610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c5780630f2cdd6c14610345575b600080fd5b34801561028357600080fd5b5061029e600480360381019061029991906139a6565b610a42565b6040516102ab91906139ee565b60405180910390f35b3480156102c057600080fd5b506102c9610b24565b6040516102d69190613aa2565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613afa565b610bb6565b6040516103139190613b68565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613baf565b610c32565b005b34801561035157600080fd5b5061035a610d3d565b6040516103679190613bfe565b60405180910390f35b34801561037c57600080fd5b50610385610d43565b6040516103929190613bfe565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd9190613d4e565b610d49565b005b3480156103d057600080fd5b506103eb60048036038101906103e69190613dc3565b610ddf565b005b3480156103f957600080fd5b50610402610e78565b60405161040f9190613bfe565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a9190613df0565b610e8f565b005b34801561044d57600080fd5b50610456610e9f565b6040516104639190613e5c565b60405180910390f35b34801561047857600080fd5b50610481610ea5565b005b34801561048f57600080fd5b506104aa60048036038101906104a59190613df0565b610ff7565b005b3480156104b857600080fd5b506104d360048036038101906104ce9190613e77565b611017565b6040516104e09190613f62565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b9190613afa565b61122b565b005b34801561051e57600080fd5b5061053960048036038101906105349190613d4e565b6112b1565b005b34801561054757600080fd5b50610550611347565b60405161055d91906139ee565b60405180910390f35b34801561057257600080fd5b5061057b61135a565b6040516105889190613aa2565b60405180910390f35b34801561059d57600080fd5b506105a66113e8565b6040516105b391906139ee565b60405180910390f35b3480156105c857600080fd5b506105d16113fb565b6040516105de9190613aa2565b60405180910390f35b3480156105f357600080fd5b5061060e60048036038101906106099190613afa565b611489565b60405161061b9190613b68565b60405180910390f35b34801561063057600080fd5b5061063961149f565b60405161064691906139ee565b60405180910390f35b34801561065b57600080fd5b5061067660048036038101906106719190613e77565b6114b2565b6040516106839190613bfe565b60405180910390f35b34801561069857600080fd5b506106a1611582565b005b3480156106af57600080fd5b506106ca60048036038101906106c59190613fb0565b61160a565b005b3480156106d857600080fd5b506106f360048036038101906106ee9190613d4e565b611690565b005b34801561070157600080fd5b5061070a611726565b6040516107179190613b68565b60405180910390f35b34801561072c57600080fd5b50610735611750565b6040516107429190613bfe565b60405180910390f35b34801561075757600080fd5b50610760611756565b60405161076d9190613aa2565b60405180910390f35b610790600480360381019061078b9190613afa565b6117e8565b005b34801561079e57600080fd5b506107b960048036038101906107b49190613fdd565b611a66565b005b3480156107c757600080fd5b506107d0611bde565b6040516107dd9190613aa2565b60405180910390f35b3480156107f257600080fd5b5061080d60048036038101906108089190613afa565b611c6c565b005b34801561081b57600080fd5b5061083660048036038101906108319190613dc3565b611cf2565b005b34801561084457600080fd5b5061085f600480360381019061085a91906140be565b611d8b565b005b34801561086d57600080fd5b5061088860048036038101906108839190613afa565b611e07565b6040516108959190613aa2565b60405180910390f35b6108b860048036038101906108b391906141a1565b611f60565b005b3480156108c657600080fd5b506108cf612274565b6040516108dc9190613bfe565b60405180910390f35b3480156108f157600080fd5b5061090c60048036038101906109079190613e77565b61227a565b60405161091991906139ee565b60405180910390f35b34801561092e57600080fd5b5061094960048036038101906109449190613dc3565b61229a565b005b34801561095757600080fd5b50610972600480360381019061096d9190614201565b612333565b60405161097f91906139ee565b60405180910390f35b34801561099457600080fd5b5061099d6123c7565b6040516109aa9190613bfe565b60405180910390f35b3480156109bf57600080fd5b506109da60048036038101906109d59190614241565b6123cc565b005b3480156109e857600080fd5b50610a0360048036038101906109fe9190613e77565b612500565b005b348015610a1157600080fd5b50610a2c6004803603810190610a279190613e77565b6125f8565b604051610a399190613bfe565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b0d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b1d5750610b1c82612641565b5b9050919050565b606060028054610b33906142b0565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5f906142b0565b8015610bac5780601f10610b8157610100808354040283529160200191610bac565b820191906000526020600020905b815481529060010190602001808311610b8f57829003601f168201915b5050505050905090565b6000610bc1826126ab565b610bf7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c3d82611489565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ca5576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cc46126f9565b73ffffffffffffffffffffffffffffffffffffffff1614158015610cf65750610cf481610cef6126f9565b612333565b155b15610d2d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d38838383612701565b505050565b60125481565b600f5481565b610d516126f9565b73ffffffffffffffffffffffffffffffffffffffff16610d6f611726565b73ffffffffffffffffffffffffffffffffffffffff1614610dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbc9061432e565b60405180910390fd5b80600d9080519060200190610ddb929190613854565b5050565b610de76126f9565b73ffffffffffffffffffffffffffffffffffffffff16610e05611726565b73ffffffffffffffffffffffffffffffffffffffff1614610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e529061432e565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b6000610e826127b3565b6001546000540303905090565b610e9a8383836127bc565b505050565b600a5481565b610ead6126f9565b73ffffffffffffffffffffffffffffffffffffffff16610ecb611726565b73ffffffffffffffffffffffffffffffffffffffff1614610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f189061432e565b60405180910390fd5b60026009541415610f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5e9061439a565b60405180910390fd5b60026009819055506000610f79611726565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f9c906143eb565b60006040518083038185875af1925050503d8060008114610fd9576040519150601f19603f3d011682016040523d82523d6000602084013e610fde565b606091505b5050905080610fec57600080fd5b506001600981905550565b61101283838360405180602001604052806000815250611d8b565b505050565b60606000611024836114b2565b905060008167ffffffffffffffff81111561104257611041613c23565b5b6040519080825280602002602001820160405280156110705781602001602082028036833780820191505090505b509050600061107d6127b3565b90506000805b8482108015611093575060005483105b1561121e576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161120a57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146111a657806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561120957838584815181106111ee576111ed614400565b5b60200260200101818152505082806112059061445e565b9350505b5b83806112159061445e565b94505050611083565b8395505050505050919050565b6112336126f9565b73ffffffffffffffffffffffffffffffffffffffff16611251611726565b73ffffffffffffffffffffffffffffffffffffffff16146112a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129e9061432e565b60405180910390fd5b80600f8190555050565b6112b96126f9565b73ffffffffffffffffffffffffffffffffffffffff166112d7611726565b73ffffffffffffffffffffffffffffffffffffffff161461132d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113249061432e565b60405180910390fd5b80600e9080519060200190611343929190613854565b5050565b601360029054906101000a900460ff1681565b600d8054611367906142b0565b80601f0160208091040260200160405190810160405280929190818152602001828054611393906142b0565b80156113e05780601f106113b5576101008083540402835291602001916113e0565b820191906000526020600020905b8154815290600101906020018083116113c357829003601f168201915b505050505081565b601360009054906101000a900460ff1681565b600c8054611408906142b0565b80601f0160208091040260200160405190810160405280929190818152602001828054611434906142b0565b80156114815780601f1061145657610100808354040283529160200191611481565b820191906000526020600020905b81548152906001019060200180831161146457829003601f168201915b505050505081565b600061149482612c72565b600001519050919050565b601360019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561151a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61158a6126f9565b73ffffffffffffffffffffffffffffffffffffffff166115a8611726565b73ffffffffffffffffffffffffffffffffffffffff16146115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f59061432e565b60405180910390fd5b6116086000612f01565b565b6116126126f9565b73ffffffffffffffffffffffffffffffffffffffff16611630611726565b73ffffffffffffffffffffffffffffffffffffffff1614611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d9061432e565b60405180910390fd5b80600a8190555050565b6116986126f9565b73ffffffffffffffffffffffffffffffffffffffff166116b6611726565b73ffffffffffffffffffffffffffffffffffffffff161461170c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117039061432e565b60405180910390fd5b80600c9080519060200190611722929190613854565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b606060038054611765906142b0565b80601f0160208091040260200160405190810160405280929190818152602001828054611791906142b0565b80156117de5780601f106117b3576101008083540402835291602001916117de565b820191906000526020600020905b8154815290600101906020018083116117c157829003601f168201915b5050505050905090565b601360009054906101000a900460ff1615611838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182f906144f3565b60405180910390fd5b60115481111561187d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187490614585565b60405180910390fd5b60105481611889610e78565b61189391906145a5565b11156118d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cb90614647565b60405180910390fd5b601254816118e133612fc7565b6118eb91906145a5565b111561192c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611923906146b3565b60405180910390fd5b60008190506000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060018110156119b157600081600161198d91906146d3565b9050808411156119aa5780846119a391906146d3565b92506119af565b600092505b505b600f54826119bf9190614707565b341015611a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f8906147d3565b60405180910390fd5b82601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a5091906145a5565b92505081905550611a613384613031565b505050565b611a6e6126f9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ad3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611ae06126f9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b8d6126f9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bd291906139ee565b60405180910390a35050565b600e8054611beb906142b0565b80601f0160208091040260200160405190810160405280929190818152602001828054611c17906142b0565b8015611c645780601f10611c3957610100808354040283529160200191611c64565b820191906000526020600020905b815481529060010190602001808311611c4757829003601f168201915b505050505081565b611c746126f9565b73ffffffffffffffffffffffffffffffffffffffff16611c92611726565b73ffffffffffffffffffffffffffffffffffffffff1614611ce8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdf9061432e565b60405180910390fd5b8060118190555050565b611cfa6126f9565b73ffffffffffffffffffffffffffffffffffffffff16611d18611726565b73ffffffffffffffffffffffffffffffffffffffff1614611d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d659061432e565b60405180910390fd5b80601360016101000a81548160ff02191690831515021790555050565b611d968484846127bc565b611db58373ffffffffffffffffffffffffffffffffffffffff1661304f565b8015611dca5750611dc884848484613072565b155b15611e01576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611e12826126ab565b611e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4890614865565b60405180910390fd5b60001515601360029054906101000a900460ff1615151415611eff57600e8054611e7a906142b0565b80601f0160208091040260200160405190810160405280929190818152602001828054611ea6906142b0565b8015611ef35780601f10611ec857610100808354040283529160200191611ef3565b820191906000526020600020905b815481529060010190602001808311611ed657829003601f168201915b50505050509050611f5b565b6000611f096131d2565b90506000815111611f295760405180602001604052806000815250611f57565b80611f3384613264565b600d604051602001611f4793929190614955565b6040516020818303038152906040525b9150505b919050565b82600081118015611f7357506011548111155b611fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa9906149d2565b60405180910390fd5b60105481611fbe610e78565b611fc891906145a5565b1115612009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200090614a3e565b60405180910390fd5b8380600f546120189190614707565b34101561205a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205190614aaa565b60405180910390fd5b601360019054906101000a900460ff166120a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a090614b3c565b60405180910390fd5b600b60006120b56126f9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561213d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213490614ba8565b60405180910390fd5b60006121476126f9565b6040516020016121579190614c10565b6040516020818303038152906040528051906020012090506121bd858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a54836133c5565b6121fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f390614c77565b60405180910390fd5b6001600b600061220a6126f9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061226c6122666126f9565b87613031565b505050505050565b60105481565b600b6020528060005260406000206000915054906101000a900460ff1681565b6122a26126f9565b73ffffffffffffffffffffffffffffffffffffffff166122c0611726565b73ffffffffffffffffffffffffffffffffffffffff1614612316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230d9061432e565b60405180910390fd5b80601360026101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600181565b816000811180156123df57506011548111155b61241e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612415906149d2565b60405180910390fd5b6010548161242a610e78565b61243491906145a5565b1115612475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246c90614a3e565b60405180910390fd5b61247d6126f9565b73ffffffffffffffffffffffffffffffffffffffff1661249b611726565b73ffffffffffffffffffffffffffffffffffffffff16146124f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e89061432e565b60405180910390fd5b6124fb8284613031565b505050565b6125086126f9565b73ffffffffffffffffffffffffffffffffffffffff16612526611726565b73ffffffffffffffffffffffffffffffffffffffff161461257c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125739061432e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e390614d09565b60405180910390fd5b6125f581612f01565b50565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816126b66127b3565b111580156126c5575060005482105b80156126f2575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006127c782612c72565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612832576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166128536126f9565b73ffffffffffffffffffffffffffffffffffffffff16148061288257506128818561287c6126f9565b612333565b5b806128c757506128906126f9565b73ffffffffffffffffffffffffffffffffffffffff166128af84610bb6565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612900576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612967576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61297485858560016133dc565b61298060008487612701565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612c00576000548214612bff57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c6b85858560016133e2565b5050505050565b612c7a6138da565b600082905080612c886127b3565b11158015612c97575060005481105b15612eca576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612ec857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612dac578092505050612efc565b5b600115612ec757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ec2578092505050612efc565b612dad565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61304b8282604051806020016040528060008152506133e8565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130986126f9565b8786866040518563ffffffff1660e01b81526004016130ba9493929190614d7e565b602060405180830381600087803b1580156130d457600080fd5b505af192505050801561310557506040513d601f19601f820116820180604052508101906131029190614ddf565b60015b61317f573d8060008114613135576040519150601f19603f3d011682016040523d82523d6000602084013e61313a565b606091505b50600081511415613177576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546131e1906142b0565b80601f016020809104026020016040519081016040528092919081815260200182805461320d906142b0565b801561325a5780601f1061322f5761010080835404028352916020019161325a565b820191906000526020600020905b81548152906001019060200180831161323d57829003601f168201915b5050505050905090565b606060008214156132ac576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506133c0565b600082905060005b600082146132de5780806132c79061445e565b915050600a826132d79190614e3b565b91506132b4565b60008167ffffffffffffffff8111156132fa576132f9613c23565b5b6040519080825280601f01601f19166020018201604052801561332c5781602001600182028036833780820191505090505b5090505b600085146133b95760018261334591906146d3565b9150600a856133549190614e6c565b603061336091906145a5565b60f81b81838151811061337657613375614400565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133b29190614e3b565b9450613330565b8093505050505b919050565b6000826133d285846133fa565b1490509392505050565b50505050565b50505050565b6133f5838383600161346f565b505050565b60008082905060005b845181101561346457600085828151811061342157613420614400565b5b602002602001015190508083116134435761343c838261383d565b9250613450565b61344d818461383d565b92505b50808061345c9061445e565b915050613403565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156134dc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613517576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61352460008683876133dc565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156136ee57506136ed8773ffffffffffffffffffffffffffffffffffffffff1661304f565b5b156137b4575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46137636000888480600101955088613072565b613799576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156136f45782600054146137af57600080fd5b613820565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156137b5575b81600081905550505061383660008683876133e2565b5050505050565b600082600052816020526040600020905092915050565b828054613860906142b0565b90600052602060002090601f01602090048101928261388257600085556138c9565b82601f1061389b57805160ff19168380011785556138c9565b828001600101855582156138c9579182015b828111156138c85782518255916020019190600101906138ad565b5b5090506138d6919061391d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561393657600081600090555060010161391e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139838161394e565b811461398e57600080fd5b50565b6000813590506139a08161397a565b92915050565b6000602082840312156139bc576139bb613944565b5b60006139ca84828501613991565b91505092915050565b60008115159050919050565b6139e8816139d3565b82525050565b6000602082019050613a0360008301846139df565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a43578082015181840152602081019050613a28565b83811115613a52576000848401525b50505050565b6000601f19601f8301169050919050565b6000613a7482613a09565b613a7e8185613a14565b9350613a8e818560208601613a25565b613a9781613a58565b840191505092915050565b60006020820190508181036000830152613abc8184613a69565b905092915050565b6000819050919050565b613ad781613ac4565b8114613ae257600080fd5b50565b600081359050613af481613ace565b92915050565b600060208284031215613b1057613b0f613944565b5b6000613b1e84828501613ae5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b5282613b27565b9050919050565b613b6281613b47565b82525050565b6000602082019050613b7d6000830184613b59565b92915050565b613b8c81613b47565b8114613b9757600080fd5b50565b600081359050613ba981613b83565b92915050565b60008060408385031215613bc657613bc5613944565b5b6000613bd485828601613b9a565b9250506020613be585828601613ae5565b9150509250929050565b613bf881613ac4565b82525050565b6000602082019050613c136000830184613bef565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613c5b82613a58565b810181811067ffffffffffffffff82111715613c7a57613c79613c23565b5b80604052505050565b6000613c8d61393a565b9050613c998282613c52565b919050565b600067ffffffffffffffff821115613cb957613cb8613c23565b5b613cc282613a58565b9050602081019050919050565b82818337600083830152505050565b6000613cf1613cec84613c9e565b613c83565b905082815260208101848484011115613d0d57613d0c613c1e565b5b613d18848285613ccf565b509392505050565b600082601f830112613d3557613d34613c19565b5b8135613d45848260208601613cde565b91505092915050565b600060208284031215613d6457613d63613944565b5b600082013567ffffffffffffffff811115613d8257613d81613949565b5b613d8e84828501613d20565b91505092915050565b613da0816139d3565b8114613dab57600080fd5b50565b600081359050613dbd81613d97565b92915050565b600060208284031215613dd957613dd8613944565b5b6000613de784828501613dae565b91505092915050565b600080600060608486031215613e0957613e08613944565b5b6000613e1786828701613b9a565b9350506020613e2886828701613b9a565b9250506040613e3986828701613ae5565b9150509250925092565b6000819050919050565b613e5681613e43565b82525050565b6000602082019050613e716000830184613e4d565b92915050565b600060208284031215613e8d57613e8c613944565b5b6000613e9b84828501613b9a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613ed981613ac4565b82525050565b6000613eeb8383613ed0565b60208301905092915050565b6000602082019050919050565b6000613f0f82613ea4565b613f198185613eaf565b9350613f2483613ec0565b8060005b83811015613f55578151613f3c8882613edf565b9750613f4783613ef7565b925050600181019050613f28565b5085935050505092915050565b60006020820190508181036000830152613f7c8184613f04565b905092915050565b613f8d81613e43565b8114613f9857600080fd5b50565b600081359050613faa81613f84565b92915050565b600060208284031215613fc657613fc5613944565b5b6000613fd484828501613f9b565b91505092915050565b60008060408385031215613ff457613ff3613944565b5b600061400285828601613b9a565b925050602061401385828601613dae565b9150509250929050565b600067ffffffffffffffff82111561403857614037613c23565b5b61404182613a58565b9050602081019050919050565b600061406161405c8461401d565b613c83565b90508281526020810184848401111561407d5761407c613c1e565b5b614088848285613ccf565b509392505050565b600082601f8301126140a5576140a4613c19565b5b81356140b584826020860161404e565b91505092915050565b600080600080608085870312156140d8576140d7613944565b5b60006140e687828801613b9a565b94505060206140f787828801613b9a565b935050604061410887828801613ae5565b925050606085013567ffffffffffffffff81111561412957614128613949565b5b61413587828801614090565b91505092959194509250565b600080fd5b600080fd5b60008083601f84011261416157614160613c19565b5b8235905067ffffffffffffffff81111561417e5761417d614141565b5b60208301915083602082028301111561419a57614199614146565b5b9250929050565b6000806000604084860312156141ba576141b9613944565b5b60006141c886828701613ae5565b935050602084013567ffffffffffffffff8111156141e9576141e8613949565b5b6141f58682870161414b565b92509250509250925092565b6000806040838503121561421857614217613944565b5b600061422685828601613b9a565b925050602061423785828601613b9a565b9150509250929050565b6000806040838503121561425857614257613944565b5b600061426685828601613ae5565b925050602061427785828601613b9a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806142c857607f821691505b602082108114156142dc576142db614281565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614318602083613a14565b9150614323826142e2565b602082019050919050565b600060208201905081810360008301526143478161430b565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614384601f83613a14565b915061438f8261434e565b602082019050919050565b600060208201905081810360008301526143b381614377565b9050919050565b600081905092915050565b50565b60006143d56000836143ba565b91506143e0826143c5565b600082019050919050565b60006143f6826143c8565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061446982613ac4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561449c5761449b61442f565b5b600182019050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006144dd601783613a14565b91506144e8826144a7565b602082019050919050565b6000602082019050818103600083015261450c816144d0565b9050919050565b7f45786365656473204e465420706572207472616e73616374696f6e206c696d6960008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b600061456f602183613a14565b915061457a82614513565b604082019050919050565b6000602082019050818103600083015261459e81614562565b9050919050565b60006145b082613ac4565b91506145bb83613ac4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145f0576145ef61442f565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000614631601283613a14565b915061463c826145fb565b602082019050919050565b6000602082019050818103600083015261466081614624565b9050919050565b7f546f6f206d616e7920666f722061646472657373000000000000000000000000600082015250565b600061469d601483613a14565b91506146a882614667565b602082019050919050565b600060208201905081810360008301526146cc81614690565b9050919050565b60006146de82613ac4565b91506146e983613ac4565b9250828210156146fc576146fb61442f565b5b828203905092915050565b600061471282613ac4565b915061471d83613ac4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147565761475561442f565b5b828202905092915050565b7f45746865722076616c75652073656e74206973206e6f7420737566666963696560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b60006147bd602283613a14565b91506147c882614761565b604082019050919050565b600060208201905081810360008301526147ec816147b0565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061484f602f83613a14565b915061485a826147f3565b604082019050919050565b6000602082019050818103600083015261487e81614842565b9050919050565b600081905092915050565b600061489b82613a09565b6148a58185614885565b93506148b5818560208601613a25565b80840191505092915050565b60008190508160005260206000209050919050565b600081546148e3816142b0565b6148ed8186614885565b9450600182166000811461490857600181146149195761494c565b60ff1983168652818601935061494c565b614922856148c1565b60005b8381101561494457815481890152600182019150602081019050614925565b838801955050505b50505092915050565b60006149618286614890565b915061496d8285614890565b915061497982846148d6565b9150819050949350505050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006149bc601483613a14565b91506149c782614986565b602082019050919050565b600060208201905081810360008301526149eb816149af565b9050919050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000614a28601483613a14565b9150614a33826149f2565b602082019050919050565b60006020820190508181036000830152614a5781614a1b565b9050919050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000614a94601383613a14565b9150614a9f82614a5e565b602082019050919050565b60006020820190508181036000830152614ac381614a87565b9050919050565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b26602283613a14565b9150614b3182614aca565b604082019050919050565b60006020820190508181036000830152614b5581614b19565b9050919050565b7f4164647265737320616c726561647920636c61696d6564210000000000000000600082015250565b6000614b92601883613a14565b9150614b9d82614b5c565b602082019050919050565b60006020820190508181036000830152614bc181614b85565b9050919050565b60008160601b9050919050565b6000614be082614bc8565b9050919050565b6000614bf282614bd5565b9050919050565b614c0a614c0582613b47565b614be7565b82525050565b6000614c1c8284614bf9565b60148201915081905092915050565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b6000614c61600e83613a14565b9150614c6c82614c2b565b602082019050919050565b60006020820190508181036000830152614c9081614c54565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614cf3602683613a14565b9150614cfe82614c97565b604082019050919050565b60006020820190508181036000830152614d2281614ce6565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614d5082614d29565b614d5a8185614d34565b9350614d6a818560208601613a25565b614d7381613a58565b840191505092915050565b6000608082019050614d936000830187613b59565b614da06020830186613b59565b614dad6040830185613bef565b8181036060830152614dbf8184614d45565b905095945050505050565b600081519050614dd98161397a565b92915050565b600060208284031215614df557614df4613944565b5b6000614e0384828501614dca565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614e4682613ac4565b9150614e5183613ac4565b925082614e6157614e60614e0c565b5b828204905092915050565b6000614e7782613ac4565b9150614e8283613ac4565b925082614e9257614e91614e0c565b5b82820690509291505056fea2646970667358221220b94ce8da4874f5fe7ce6cba2a44c2a52caa172d2e20341aa836cd592d8e911c664736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000011c37937e080000000000000000000000000000000000000000000000000000000000000001b3900000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000b756e69636f726e746f776e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000255540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102725760003560e01c806370a082311161014f578063b767a098116100c1578063e0a808531161007a578063e0a8085314610922578063e985e9c51461094b578063ed6661c214610988578063efbd73f4146109b3578063f2fde38b146109dc578063fddcb5ea14610a0557610272565b8063b767a0981461080f578063b88d4fde14610838578063c87b56dd14610861578063d2cab0561461089e578063d5abeb01146108ba578063db4bec44146108e557610272565b806394354fd01161011357806394354fd01461072057806395d89b411461074b578063a0712d6814610776578063a22cb46514610792578063a45ba8e7146107bb578063b071401b146107e657610272565b806370a082311461064f578063715018a61461068c5780637cb64759146106a35780637ec4a659146106cc5780638da5cb5b146106f557610272565b80633ccfd60b116101e857806351830227116101ac578063518302271461053b5780635503a0e8146105665780635c975abb1461059157806362b99ad4146105bc5780636352211e146105e75780636caede3d1461062457610272565b80633ccfd60b1461046c57806342842e0e14610483578063438b6300146104ac57806344a0d68a146104e95780634fdd43cb1461051257610272565b806313faede61161023a57806313faede61461037057806316ba10e01461039b57806316c38b3c146103c457806318160ddd146103ed57806323b872dd146104185780632eb4a7ab1461044157610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c5780630f2cdd6c14610345575b600080fd5b34801561028357600080fd5b5061029e600480360381019061029991906139a6565b610a42565b6040516102ab91906139ee565b60405180910390f35b3480156102c057600080fd5b506102c9610b24565b6040516102d69190613aa2565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613afa565b610bb6565b6040516103139190613b68565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613baf565b610c32565b005b34801561035157600080fd5b5061035a610d3d565b6040516103679190613bfe565b60405180910390f35b34801561037c57600080fd5b50610385610d43565b6040516103929190613bfe565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd9190613d4e565b610d49565b005b3480156103d057600080fd5b506103eb60048036038101906103e69190613dc3565b610ddf565b005b3480156103f957600080fd5b50610402610e78565b60405161040f9190613bfe565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a9190613df0565b610e8f565b005b34801561044d57600080fd5b50610456610e9f565b6040516104639190613e5c565b60405180910390f35b34801561047857600080fd5b50610481610ea5565b005b34801561048f57600080fd5b506104aa60048036038101906104a59190613df0565b610ff7565b005b3480156104b857600080fd5b506104d360048036038101906104ce9190613e77565b611017565b6040516104e09190613f62565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b9190613afa565b61122b565b005b34801561051e57600080fd5b5061053960048036038101906105349190613d4e565b6112b1565b005b34801561054757600080fd5b50610550611347565b60405161055d91906139ee565b60405180910390f35b34801561057257600080fd5b5061057b61135a565b6040516105889190613aa2565b60405180910390f35b34801561059d57600080fd5b506105a66113e8565b6040516105b391906139ee565b60405180910390f35b3480156105c857600080fd5b506105d16113fb565b6040516105de9190613aa2565b60405180910390f35b3480156105f357600080fd5b5061060e60048036038101906106099190613afa565b611489565b60405161061b9190613b68565b60405180910390f35b34801561063057600080fd5b5061063961149f565b60405161064691906139ee565b60405180910390f35b34801561065b57600080fd5b5061067660048036038101906106719190613e77565b6114b2565b6040516106839190613bfe565b60405180910390f35b34801561069857600080fd5b506106a1611582565b005b3480156106af57600080fd5b506106ca60048036038101906106c59190613fb0565b61160a565b005b3480156106d857600080fd5b506106f360048036038101906106ee9190613d4e565b611690565b005b34801561070157600080fd5b5061070a611726565b6040516107179190613b68565b60405180910390f35b34801561072c57600080fd5b50610735611750565b6040516107429190613bfe565b60405180910390f35b34801561075757600080fd5b50610760611756565b60405161076d9190613aa2565b60405180910390f35b610790600480360381019061078b9190613afa565b6117e8565b005b34801561079e57600080fd5b506107b960048036038101906107b49190613fdd565b611a66565b005b3480156107c757600080fd5b506107d0611bde565b6040516107dd9190613aa2565b60405180910390f35b3480156107f257600080fd5b5061080d60048036038101906108089190613afa565b611c6c565b005b34801561081b57600080fd5b5061083660048036038101906108319190613dc3565b611cf2565b005b34801561084457600080fd5b5061085f600480360381019061085a91906140be565b611d8b565b005b34801561086d57600080fd5b5061088860048036038101906108839190613afa565b611e07565b6040516108959190613aa2565b60405180910390f35b6108b860048036038101906108b391906141a1565b611f60565b005b3480156108c657600080fd5b506108cf612274565b6040516108dc9190613bfe565b60405180910390f35b3480156108f157600080fd5b5061090c60048036038101906109079190613e77565b61227a565b60405161091991906139ee565b60405180910390f35b34801561092e57600080fd5b5061094960048036038101906109449190613dc3565b61229a565b005b34801561095757600080fd5b50610972600480360381019061096d9190614201565b612333565b60405161097f91906139ee565b60405180910390f35b34801561099457600080fd5b5061099d6123c7565b6040516109aa9190613bfe565b60405180910390f35b3480156109bf57600080fd5b506109da60048036038101906109d59190614241565b6123cc565b005b3480156109e857600080fd5b50610a0360048036038101906109fe9190613e77565b612500565b005b348015610a1157600080fd5b50610a2c6004803603810190610a279190613e77565b6125f8565b604051610a399190613bfe565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b0d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b1d5750610b1c82612641565b5b9050919050565b606060028054610b33906142b0565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5f906142b0565b8015610bac5780601f10610b8157610100808354040283529160200191610bac565b820191906000526020600020905b815481529060010190602001808311610b8f57829003601f168201915b5050505050905090565b6000610bc1826126ab565b610bf7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c3d82611489565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ca5576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cc46126f9565b73ffffffffffffffffffffffffffffffffffffffff1614158015610cf65750610cf481610cef6126f9565b612333565b155b15610d2d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d38838383612701565b505050565b60125481565b600f5481565b610d516126f9565b73ffffffffffffffffffffffffffffffffffffffff16610d6f611726565b73ffffffffffffffffffffffffffffffffffffffff1614610dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbc9061432e565b60405180910390fd5b80600d9080519060200190610ddb929190613854565b5050565b610de76126f9565b73ffffffffffffffffffffffffffffffffffffffff16610e05611726565b73ffffffffffffffffffffffffffffffffffffffff1614610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e529061432e565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b6000610e826127b3565b6001546000540303905090565b610e9a8383836127bc565b505050565b600a5481565b610ead6126f9565b73ffffffffffffffffffffffffffffffffffffffff16610ecb611726565b73ffffffffffffffffffffffffffffffffffffffff1614610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f189061432e565b60405180910390fd5b60026009541415610f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5e9061439a565b60405180910390fd5b60026009819055506000610f79611726565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f9c906143eb565b60006040518083038185875af1925050503d8060008114610fd9576040519150601f19603f3d011682016040523d82523d6000602084013e610fde565b606091505b5050905080610fec57600080fd5b506001600981905550565b61101283838360405180602001604052806000815250611d8b565b505050565b60606000611024836114b2565b905060008167ffffffffffffffff81111561104257611041613c23565b5b6040519080825280602002602001820160405280156110705781602001602082028036833780820191505090505b509050600061107d6127b3565b90506000805b8482108015611093575060005483105b1561121e576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161120a57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146111a657806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561120957838584815181106111ee576111ed614400565b5b60200260200101818152505082806112059061445e565b9350505b5b83806112159061445e565b94505050611083565b8395505050505050919050565b6112336126f9565b73ffffffffffffffffffffffffffffffffffffffff16611251611726565b73ffffffffffffffffffffffffffffffffffffffff16146112a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129e9061432e565b60405180910390fd5b80600f8190555050565b6112b96126f9565b73ffffffffffffffffffffffffffffffffffffffff166112d7611726565b73ffffffffffffffffffffffffffffffffffffffff161461132d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113249061432e565b60405180910390fd5b80600e9080519060200190611343929190613854565b5050565b601360029054906101000a900460ff1681565b600d8054611367906142b0565b80601f0160208091040260200160405190810160405280929190818152602001828054611393906142b0565b80156113e05780601f106113b5576101008083540402835291602001916113e0565b820191906000526020600020905b8154815290600101906020018083116113c357829003601f168201915b505050505081565b601360009054906101000a900460ff1681565b600c8054611408906142b0565b80601f0160208091040260200160405190810160405280929190818152602001828054611434906142b0565b80156114815780601f1061145657610100808354040283529160200191611481565b820191906000526020600020905b81548152906001019060200180831161146457829003601f168201915b505050505081565b600061149482612c72565b600001519050919050565b601360019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561151a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61158a6126f9565b73ffffffffffffffffffffffffffffffffffffffff166115a8611726565b73ffffffffffffffffffffffffffffffffffffffff16146115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f59061432e565b60405180910390fd5b6116086000612f01565b565b6116126126f9565b73ffffffffffffffffffffffffffffffffffffffff16611630611726565b73ffffffffffffffffffffffffffffffffffffffff1614611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d9061432e565b60405180910390fd5b80600a8190555050565b6116986126f9565b73ffffffffffffffffffffffffffffffffffffffff166116b6611726565b73ffffffffffffffffffffffffffffffffffffffff161461170c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117039061432e565b60405180910390fd5b80600c9080519060200190611722929190613854565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b606060038054611765906142b0565b80601f0160208091040260200160405190810160405280929190818152602001828054611791906142b0565b80156117de5780601f106117b3576101008083540402835291602001916117de565b820191906000526020600020905b8154815290600101906020018083116117c157829003601f168201915b5050505050905090565b601360009054906101000a900460ff1615611838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182f906144f3565b60405180910390fd5b60115481111561187d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187490614585565b60405180910390fd5b60105481611889610e78565b61189391906145a5565b11156118d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cb90614647565b60405180910390fd5b601254816118e133612fc7565b6118eb91906145a5565b111561192c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611923906146b3565b60405180910390fd5b60008190506000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060018110156119b157600081600161198d91906146d3565b9050808411156119aa5780846119a391906146d3565b92506119af565b600092505b505b600f54826119bf9190614707565b341015611a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f8906147d3565b60405180910390fd5b82601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a5091906145a5565b92505081905550611a613384613031565b505050565b611a6e6126f9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ad3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611ae06126f9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b8d6126f9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bd291906139ee565b60405180910390a35050565b600e8054611beb906142b0565b80601f0160208091040260200160405190810160405280929190818152602001828054611c17906142b0565b8015611c645780601f10611c3957610100808354040283529160200191611c64565b820191906000526020600020905b815481529060010190602001808311611c4757829003601f168201915b505050505081565b611c746126f9565b73ffffffffffffffffffffffffffffffffffffffff16611c92611726565b73ffffffffffffffffffffffffffffffffffffffff1614611ce8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdf9061432e565b60405180910390fd5b8060118190555050565b611cfa6126f9565b73ffffffffffffffffffffffffffffffffffffffff16611d18611726565b73ffffffffffffffffffffffffffffffffffffffff1614611d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d659061432e565b60405180910390fd5b80601360016101000a81548160ff02191690831515021790555050565b611d968484846127bc565b611db58373ffffffffffffffffffffffffffffffffffffffff1661304f565b8015611dca5750611dc884848484613072565b155b15611e01576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611e12826126ab565b611e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4890614865565b60405180910390fd5b60001515601360029054906101000a900460ff1615151415611eff57600e8054611e7a906142b0565b80601f0160208091040260200160405190810160405280929190818152602001828054611ea6906142b0565b8015611ef35780601f10611ec857610100808354040283529160200191611ef3565b820191906000526020600020905b815481529060010190602001808311611ed657829003601f168201915b50505050509050611f5b565b6000611f096131d2565b90506000815111611f295760405180602001604052806000815250611f57565b80611f3384613264565b600d604051602001611f4793929190614955565b6040516020818303038152906040525b9150505b919050565b82600081118015611f7357506011548111155b611fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa9906149d2565b60405180910390fd5b60105481611fbe610e78565b611fc891906145a5565b1115612009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200090614a3e565b60405180910390fd5b8380600f546120189190614707565b34101561205a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205190614aaa565b60405180910390fd5b601360019054906101000a900460ff166120a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a090614b3c565b60405180910390fd5b600b60006120b56126f9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561213d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213490614ba8565b60405180910390fd5b60006121476126f9565b6040516020016121579190614c10565b6040516020818303038152906040528051906020012090506121bd858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a54836133c5565b6121fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f390614c77565b60405180910390fd5b6001600b600061220a6126f9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061226c6122666126f9565b87613031565b505050505050565b60105481565b600b6020528060005260406000206000915054906101000a900460ff1681565b6122a26126f9565b73ffffffffffffffffffffffffffffffffffffffff166122c0611726565b73ffffffffffffffffffffffffffffffffffffffff1614612316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230d9061432e565b60405180910390fd5b80601360026101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600181565b816000811180156123df57506011548111155b61241e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612415906149d2565b60405180910390fd5b6010548161242a610e78565b61243491906145a5565b1115612475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246c90614a3e565b60405180910390fd5b61247d6126f9565b73ffffffffffffffffffffffffffffffffffffffff1661249b611726565b73ffffffffffffffffffffffffffffffffffffffff16146124f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e89061432e565b60405180910390fd5b6124fb8284613031565b505050565b6125086126f9565b73ffffffffffffffffffffffffffffffffffffffff16612526611726565b73ffffffffffffffffffffffffffffffffffffffff161461257c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125739061432e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e390614d09565b60405180910390fd5b6125f581612f01565b50565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816126b66127b3565b111580156126c5575060005482105b80156126f2575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006127c782612c72565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612832576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166128536126f9565b73ffffffffffffffffffffffffffffffffffffffff16148061288257506128818561287c6126f9565b612333565b5b806128c757506128906126f9565b73ffffffffffffffffffffffffffffffffffffffff166128af84610bb6565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612900576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612967576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61297485858560016133dc565b61298060008487612701565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612c00576000548214612bff57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c6b85858560016133e2565b5050505050565b612c7a6138da565b600082905080612c886127b3565b11158015612c97575060005481105b15612eca576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612ec857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612dac578092505050612efc565b5b600115612ec757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ec2578092505050612efc565b612dad565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61304b8282604051806020016040528060008152506133e8565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130986126f9565b8786866040518563ffffffff1660e01b81526004016130ba9493929190614d7e565b602060405180830381600087803b1580156130d457600080fd5b505af192505050801561310557506040513d601f19601f820116820180604052508101906131029190614ddf565b60015b61317f573d8060008114613135576040519150601f19603f3d011682016040523d82523d6000602084013e61313a565b606091505b50600081511415613177576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546131e1906142b0565b80601f016020809104026020016040519081016040528092919081815260200182805461320d906142b0565b801561325a5780601f1061322f5761010080835404028352916020019161325a565b820191906000526020600020905b81548152906001019060200180831161323d57829003601f168201915b5050505050905090565b606060008214156132ac576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506133c0565b600082905060005b600082146132de5780806132c79061445e565b915050600a826132d79190614e3b565b91506132b4565b60008167ffffffffffffffff8111156132fa576132f9613c23565b5b6040519080825280601f01601f19166020018201604052801561332c5781602001600182028036833780820191505090505b5090505b600085146133b95760018261334591906146d3565b9150600a856133549190614e6c565b603061336091906145a5565b60f81b81838151811061337657613375614400565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133b29190614e3b565b9450613330565b8093505050505b919050565b6000826133d285846133fa565b1490509392505050565b50505050565b50505050565b6133f5838383600161346f565b505050565b60008082905060005b845181101561346457600085828151811061342157613420614400565b5b602002602001015190508083116134435761343c838261383d565b9250613450565b61344d818461383d565b92505b50808061345c9061445e565b915050613403565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156134dc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613517576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61352460008683876133dc565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156136ee57506136ed8773ffffffffffffffffffffffffffffffffffffffff1661304f565b5b156137b4575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46137636000888480600101955088613072565b613799576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156136f45782600054146137af57600080fd5b613820565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156137b5575b81600081905550505061383660008683876133e2565b5050505050565b600082600052816020526040600020905092915050565b828054613860906142b0565b90600052602060002090601f01602090048101928261388257600085556138c9565b82601f1061389b57805160ff19168380011785556138c9565b828001600101855582156138c9579182015b828111156138c85782518255916020019190600101906138ad565b5b5090506138d6919061391d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561393657600081600090555060010161391e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139838161394e565b811461398e57600080fd5b50565b6000813590506139a08161397a565b92915050565b6000602082840312156139bc576139bb613944565b5b60006139ca84828501613991565b91505092915050565b60008115159050919050565b6139e8816139d3565b82525050565b6000602082019050613a0360008301846139df565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a43578082015181840152602081019050613a28565b83811115613a52576000848401525b50505050565b6000601f19601f8301169050919050565b6000613a7482613a09565b613a7e8185613a14565b9350613a8e818560208601613a25565b613a9781613a58565b840191505092915050565b60006020820190508181036000830152613abc8184613a69565b905092915050565b6000819050919050565b613ad781613ac4565b8114613ae257600080fd5b50565b600081359050613af481613ace565b92915050565b600060208284031215613b1057613b0f613944565b5b6000613b1e84828501613ae5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b5282613b27565b9050919050565b613b6281613b47565b82525050565b6000602082019050613b7d6000830184613b59565b92915050565b613b8c81613b47565b8114613b9757600080fd5b50565b600081359050613ba981613b83565b92915050565b60008060408385031215613bc657613bc5613944565b5b6000613bd485828601613b9a565b9250506020613be585828601613ae5565b9150509250929050565b613bf881613ac4565b82525050565b6000602082019050613c136000830184613bef565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613c5b82613a58565b810181811067ffffffffffffffff82111715613c7a57613c79613c23565b5b80604052505050565b6000613c8d61393a565b9050613c998282613c52565b919050565b600067ffffffffffffffff821115613cb957613cb8613c23565b5b613cc282613a58565b9050602081019050919050565b82818337600083830152505050565b6000613cf1613cec84613c9e565b613c83565b905082815260208101848484011115613d0d57613d0c613c1e565b5b613d18848285613ccf565b509392505050565b600082601f830112613d3557613d34613c19565b5b8135613d45848260208601613cde565b91505092915050565b600060208284031215613d6457613d63613944565b5b600082013567ffffffffffffffff811115613d8257613d81613949565b5b613d8e84828501613d20565b91505092915050565b613da0816139d3565b8114613dab57600080fd5b50565b600081359050613dbd81613d97565b92915050565b600060208284031215613dd957613dd8613944565b5b6000613de784828501613dae565b91505092915050565b600080600060608486031215613e0957613e08613944565b5b6000613e1786828701613b9a565b9350506020613e2886828701613b9a565b9250506040613e3986828701613ae5565b9150509250925092565b6000819050919050565b613e5681613e43565b82525050565b6000602082019050613e716000830184613e4d565b92915050565b600060208284031215613e8d57613e8c613944565b5b6000613e9b84828501613b9a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613ed981613ac4565b82525050565b6000613eeb8383613ed0565b60208301905092915050565b6000602082019050919050565b6000613f0f82613ea4565b613f198185613eaf565b9350613f2483613ec0565b8060005b83811015613f55578151613f3c8882613edf565b9750613f4783613ef7565b925050600181019050613f28565b5085935050505092915050565b60006020820190508181036000830152613f7c8184613f04565b905092915050565b613f8d81613e43565b8114613f9857600080fd5b50565b600081359050613faa81613f84565b92915050565b600060208284031215613fc657613fc5613944565b5b6000613fd484828501613f9b565b91505092915050565b60008060408385031215613ff457613ff3613944565b5b600061400285828601613b9a565b925050602061401385828601613dae565b9150509250929050565b600067ffffffffffffffff82111561403857614037613c23565b5b61404182613a58565b9050602081019050919050565b600061406161405c8461401d565b613c83565b90508281526020810184848401111561407d5761407c613c1e565b5b614088848285613ccf565b509392505050565b600082601f8301126140a5576140a4613c19565b5b81356140b584826020860161404e565b91505092915050565b600080600080608085870312156140d8576140d7613944565b5b60006140e687828801613b9a565b94505060206140f787828801613b9a565b935050604061410887828801613ae5565b925050606085013567ffffffffffffffff81111561412957614128613949565b5b61413587828801614090565b91505092959194509250565b600080fd5b600080fd5b60008083601f84011261416157614160613c19565b5b8235905067ffffffffffffffff81111561417e5761417d614141565b5b60208301915083602082028301111561419a57614199614146565b5b9250929050565b6000806000604084860312156141ba576141b9613944565b5b60006141c886828701613ae5565b935050602084013567ffffffffffffffff8111156141e9576141e8613949565b5b6141f58682870161414b565b92509250509250925092565b6000806040838503121561421857614217613944565b5b600061422685828601613b9a565b925050602061423785828601613b9a565b9150509250929050565b6000806040838503121561425857614257613944565b5b600061426685828601613ae5565b925050602061427785828601613b9a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806142c857607f821691505b602082108114156142dc576142db614281565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614318602083613a14565b9150614323826142e2565b602082019050919050565b600060208201905081810360008301526143478161430b565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614384601f83613a14565b915061438f8261434e565b602082019050919050565b600060208201905081810360008301526143b381614377565b9050919050565b600081905092915050565b50565b60006143d56000836143ba565b91506143e0826143c5565b600082019050919050565b60006143f6826143c8565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061446982613ac4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561449c5761449b61442f565b5b600182019050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006144dd601783613a14565b91506144e8826144a7565b602082019050919050565b6000602082019050818103600083015261450c816144d0565b9050919050565b7f45786365656473204e465420706572207472616e73616374696f6e206c696d6960008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b600061456f602183613a14565b915061457a82614513565b604082019050919050565b6000602082019050818103600083015261459e81614562565b9050919050565b60006145b082613ac4565b91506145bb83613ac4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145f0576145ef61442f565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000614631601283613a14565b915061463c826145fb565b602082019050919050565b6000602082019050818103600083015261466081614624565b9050919050565b7f546f6f206d616e7920666f722061646472657373000000000000000000000000600082015250565b600061469d601483613a14565b91506146a882614667565b602082019050919050565b600060208201905081810360008301526146cc81614690565b9050919050565b60006146de82613ac4565b91506146e983613ac4565b9250828210156146fc576146fb61442f565b5b828203905092915050565b600061471282613ac4565b915061471d83613ac4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147565761475561442f565b5b828202905092915050565b7f45746865722076616c75652073656e74206973206e6f7420737566666963696560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b60006147bd602283613a14565b91506147c882614761565b604082019050919050565b600060208201905081810360008301526147ec816147b0565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061484f602f83613a14565b915061485a826147f3565b604082019050919050565b6000602082019050818103600083015261487e81614842565b9050919050565b600081905092915050565b600061489b82613a09565b6148a58185614885565b93506148b5818560208601613a25565b80840191505092915050565b60008190508160005260206000209050919050565b600081546148e3816142b0565b6148ed8186614885565b9450600182166000811461490857600181146149195761494c565b60ff1983168652818601935061494c565b614922856148c1565b60005b8381101561494457815481890152600182019150602081019050614925565b838801955050505b50505092915050565b60006149618286614890565b915061496d8285614890565b915061497982846148d6565b9150819050949350505050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006149bc601483613a14565b91506149c782614986565b602082019050919050565b600060208201905081810360008301526149eb816149af565b9050919050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000614a28601483613a14565b9150614a33826149f2565b602082019050919050565b60006020820190508181036000830152614a5781614a1b565b9050919050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000614a94601383613a14565b9150614a9f82614a5e565b602082019050919050565b60006020820190508181036000830152614ac381614a87565b9050919050565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b26602283613a14565b9150614b3182614aca565b604082019050919050565b60006020820190508181036000830152614b5581614b19565b9050919050565b7f4164647265737320616c726561647920636c61696d6564210000000000000000600082015250565b6000614b92601883613a14565b9150614b9d82614b5c565b602082019050919050565b60006020820190508181036000830152614bc181614b85565b9050919050565b60008160601b9050919050565b6000614be082614bc8565b9050919050565b6000614bf282614bd5565b9050919050565b614c0a614c0582613b47565b614be7565b82525050565b6000614c1c8284614bf9565b60148201915081905092915050565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b6000614c61600e83613a14565b9150614c6c82614c2b565b602082019050919050565b60006020820190508181036000830152614c9081614c54565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614cf3602683613a14565b9150614cfe82614c97565b604082019050919050565b60006020820190508181036000830152614d2281614ce6565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614d5082614d29565b614d5a8185614d34565b9350614d6a818560208601613a25565b614d7381613a58565b840191505092915050565b6000608082019050614d936000830187613b59565b614da06020830186613b59565b614dad6040830185613bef565b8181036060830152614dbf8184614d45565b905095945050505050565b600081519050614dd98161397a565b92915050565b600060208284031215614df557614df4613944565b5b6000614e0384828501614dca565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614e4682613ac4565b9150614e5183613ac4565b925082614e6157614e60614e0c565b5b828204905092915050565b6000614e7782613ac4565b9150614e8283613ac4565b925082614e9257614e91614e0c565b5b82820690509291505056fea2646970667358221220b94ce8da4874f5fe7ce6cba2a44c2a52caa172d2e20341aa836cd592d8e911c664736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000011c37937e080000000000000000000000000000000000000000000000000000000000000001b3900000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000b756e69636f726e746f776e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000255540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): unicorntown
Arg [1] : _tokenSymbol (string): UT
Arg [2] : _cost (uint256): 5000000000000000
Arg [3] : _maxSupply (uint256): 6969
Arg [4] : _maxMintAmountPerTx (uint256): 20
Arg [5] : _hiddenMetadataUri (string):

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000011c37937e08000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000001b39
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [7] : 756e69636f726e746f776e000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [9] : 5554000000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

50274:6127:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32446:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35559:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37062:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36625:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50724:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50567:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55612:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55718:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31695:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37927:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50371:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56138:150;;;;;;;;;;;;;:::i;:::-;;38168:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53674:833;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55152:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55368:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50840:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50489:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50765:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50456:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35367:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50795:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32815:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10174:103;;;;;;;;;;;;;:::i;:::-;;55801:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55506:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9523:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50640:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35728:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52189:1128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37338:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50527:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55232:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55905:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38424:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54614:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51663:520;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50604:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50401:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55065:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37696:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50683:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53531:137;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10432:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56016:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32446:305;32548:4;32600:25;32585:40;;;:11;:40;;;;:105;;;;32657:33;32642:48;;;:11;:48;;;;32585:105;:158;;;;32707:36;32731:11;32707:23;:36::i;:::-;32585:158;32565:178;;32446:305;;;:::o;35559:100::-;35613:13;35646:5;35639:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35559:100;:::o;37062:204::-;37130:7;37155:16;37163:7;37155;:16::i;:::-;37150:64;;37180:34;;;;;;;;;;;;;;37150:64;37234:15;:24;37250:7;37234:24;;;;;;;;;;;;;;;;;;;;;37227:31;;37062:204;;;:::o;36625:371::-;36698:13;36714:24;36730:7;36714:15;:24::i;:::-;36698:40;;36759:5;36753:11;;:2;:11;;;36749:48;;;36773:24;;;;;;;;;;;;;;36749:48;36830:5;36814:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;36840:37;36857:5;36864:12;:10;:12::i;:::-;36840:16;:37::i;:::-;36839:38;36814:63;36810:138;;;36901:35;;;;;;;;;;;;;;36810:138;36960:28;36969:2;36973:7;36982:5;36960:8;:28::i;:::-;36687:309;36625:371;;:::o;50724:34::-;;;;:::o;50567:32::-;;;;:::o;55612:100::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55696:10:::1;55684:9;:22;;;;;;;;;;;;:::i;:::-;;55612:100:::0;:::o;55718:77::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55783:6:::1;55774;;:15;;;;;;;;;;;;;;;;;;55718:77:::0;:::o;31695:303::-;31739:7;31964:15;:13;:15::i;:::-;31949:12;;31933:13;;:28;:46;31926:53;;31695:303;:::o;37927:170::-;38061:28;38071:4;38077:2;38081:7;38061:9;:28::i;:::-;37927:170;;;:::o;50371:25::-;;;;:::o;56138:150::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1:::1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;56196:7:::2;56217;:5;:7::i;:::-;56209:21;;56238;56209:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56195:69;;;56279:2;56271:11;;;::::0;::::2;;56188:100;1768:1:::1;2722:7;:22;;;;56138:150::o:0;38168:185::-;38306:39;38323:4;38329:2;38333:7;38306:39;;;;;;;;;;;;:16;:39::i;:::-;38168:185;;;:::o;53674:833::-;53734:16;53759:23;53785:17;53795:6;53785:9;:17::i;:::-;53759:43;;53809:30;53856:15;53842:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53809:63;;53879:22;53904:15;:13;:15::i;:::-;53879:40;;53926:23;53960:26;53995:478;54020:15;54002;:33;:67;;;;;54056:13;;54039:14;:30;54002:67;53995:478;;;54080:31;54114:11;:27;54126:14;54114:27;;;;;;;;;;;54080:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54157:9;:16;;;54152:287;;54216:1;54190:28;;:9;:14;;;:28;;;54186:94;;54254:9;:14;;;54233:35;;54186:94;54318:6;54296:28;;:18;:28;;;54292:138;;;54372:14;54339:13;54353:15;54339:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;54401:17;;;;;:::i;:::-;;;;54292:138;54152:287;54449:16;;;;;:::i;:::-;;;;54071:402;53995:478;;;54488:13;54481:20;;;;;;;53674:833;;;:::o;55152:74::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55215:5:::1;55208:4;:12;;;;55152:74:::0;:::o;55368:132::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55476:18:::1;55456:17;:38;;;;;;;;;;;;:::i;:::-;;55368:132:::0;:::o;50840:28::-;;;;;;;;;;;;;:::o;50489:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50765:25::-;;;;;;;;;;;;;:::o;50456:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35367:125::-;35431:7;35458:21;35471:7;35458:12;:21::i;:::-;:26;;;35451:33;;35367:125;;;:::o;50795:40::-;;;;;;;;;;;;;:::o;32815:206::-;32879:7;32920:1;32903:19;;:5;:19;;;32899:60;;;32931:28;;;;;;;;;;;;;;32899:60;32985:12;:19;32998:5;32985:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;32977:36;;32970:43;;32815:206;;;:::o;10174:103::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10239:30:::1;10266:1;10239:18;:30::i;:::-;10174:103::o:0;55801:98::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55882:11:::1;55869:10;:24;;;;55801:98:::0;:::o;55506:100::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55590:10:::1;55578:9;:22;;;;;;;;;;;;:::i;:::-;;55506:100:::0;:::o;9523:87::-;9569:7;9596:6;;;;;;;;;;;9589:13;;9523:87;:::o;50640:38::-;;;;:::o;35728:104::-;35784:13;35817:7;35810:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35728:104;:::o;52189:1128::-;52252:6;;;;;;;;;;;52251:7;52243:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;52308:18;;52299:5;:27;;52291:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;52401:9;;52392:5;52376:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;52368:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;52498:14;;52489:5;52461:25;52475:10;52461:13;:25::i;:::-;:33;;;;:::i;:::-;:51;;52439:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;52573:16;52592:5;52573:24;;52608:16;52627:18;:30;52646:10;52627:30;;;;;;;;;;;;;;;;52608:49;;50718:1;52671:11;:22;52668:291;;;52710:23;52747:11;50718:1;52736:22;;;;:::i;:::-;52710:48;;52784:18;52776:5;:26;52773:175;;;52845:18;52837:5;:26;;;;:::i;:::-;52823:40;;52773:175;;;52931:1;52917:15;;52773:175;52695:264;52668:291;53005:4;;52991:11;:18;;;;:::i;:::-;52978:9;:31;;52965:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;53097:5;53063:18;:30;53082:10;53063:30;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;53107:28;53117:10;53129:5;53107:9;:28::i;:::-;52236:1081;;52189:1128;:::o;37338:287::-;37449:12;:10;:12::i;:::-;37437:24;;:8;:24;;;37433:54;;;37470:17;;;;;;;;;;;;;;37433:54;37545:8;37500:18;:32;37519:12;:10;:12::i;:::-;37500:32;;;;;;;;;;;;;;;:42;37533:8;37500:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;37598:8;37569:48;;37584:12;:10;:12::i;:::-;37569:48;;;37608:8;37569:48;;;;;;:::i;:::-;;;;;;;;37338:287;;:::o;50527:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55232:130::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55337:19:::1;55316:18;:40;;;;55232:130:::0;:::o;55905:105::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55998:6:::1;55975:20;;:29;;;;;;;;;;;;;;;;;;55905:105:::0;:::o;38424:369::-;38591:28;38601:4;38607:2;38611:7;38591:9;:28::i;:::-;38634:15;:2;:13;;;:15::i;:::-;:76;;;;;38654:56;38685:4;38691:2;38695:7;38704:5;38654:30;:56::i;:::-;38653:57;38634:76;38630:156;;;38734:40;;;;;;;;;;;;;;38630:156;38424:369;;;;:::o;54614:445::-;54688:13;54718:17;54726:8;54718:7;:17::i;:::-;54710:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;54812:5;54800:17;;:8;;;;;;;;;;;:17;;;54796:64;;;54835:17;54828:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54796:64;54868:28;54899:10;:8;:10::i;:::-;54868:41;;54954:1;54929:14;54923:28;:32;:130;;;;;;;;;;;;;;;;;54991:14;55007:19;:8;:17;:19::i;:::-;55028:9;54974:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54923:130;54916:137;;;54614:445;;;;:::o;51663:520::-;51764:5;51384:1;51376:5;:9;:40;;;;;51398:18;;51389:5;:27;;51376:40;51368:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;51481:9;;51472:5;51456:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;51448:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;51791:5:::1;51614;51607:4;;:12;;;;:::i;:::-;51594:9;:25;;51586:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;51813:20:::2;;;;;;;;;;;51805:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;51888:16;:30;51905:12;:10;:12::i;:::-;51888:30;;;;;;;;;;;;;;;;;;;;;;;;;51887:31;51879:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51954:12;51996;:10;:12::i;:::-;51979:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;51969:41;;;;;;51954:56;;52025:50;52044:12;;52025:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52058:10;;52070:4;52025:18;:50::i;:::-;52017:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;52136:4;52103:16;:30;52120:12;:10;:12::i;:::-;52103:30;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;52147:30;52157:12;:10;:12::i;:::-;52171:5;52147:9;:30::i;:::-;51798:385;51522:1:::1;51663:520:::0;;;;:::o;50604:31::-;;;;:::o;50401:48::-;;;;;;;;;;;;;;;;;;;;;;:::o;55065:81::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55134:6:::1;55123:8;;:17;;;;;;;;;;;;;;;;;;55065:81:::0;:::o;37696:164::-;37793:4;37817:18;:25;37836:5;37817:25;;;;;;;;;;;;;;;:35;37843:8;37817:35;;;;;;;;;;;;;;;;;;;;;;;;;37810:42;;37696:164;;;;:::o;50683:36::-;50718:1;50683:36;:::o;53531:137::-;53611:5;51384:1;51376:5;:9;:40;;;;;51398:18;;51389:5;:27;;51376:40;51368:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;51481:9;;51472:5;51456:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;51448:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;9754:12:::1;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53635:27:::2;53645:9;53656:5;53635:9;:27::i;:::-;53531:137:::0;;;:::o;10432:201::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10541:1:::1;10521:22;;:8;:22;;;;10513:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10597:28;10616:8;10597:18;:28::i;:::-;10432:201:::0;:::o;56016:116::-;56075:4;56099:18;:25;56118:5;56099:25;;;;;;;;;;;;;;;;56092:32;;56016:116;;;:::o;22330:157::-;22415:4;22454:25;22439:40;;;:11;:40;;;;22432:47;;22330:157;;;:::o;39048:174::-;39105:4;39148:7;39129:15;:13;:15::i;:::-;:26;;:53;;;;;39169:13;;39159:7;:23;39129:53;:85;;;;;39187:11;:20;39199:7;39187:20;;;;;;;;;;;:27;;;;;;;;;;;;39186:28;39129:85;39122:92;;39048:174;;;:::o;8247:98::-;8300:7;8327:10;8320:17;;8247:98;:::o;47205:196::-;47347:2;47320:15;:24;47336:7;47320:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47385:7;47381:2;47365:28;;47374:5;47365:28;;;;;;;;;;;;47205:196;;;:::o;54513:95::-;54578:7;54601:1;54594:8;;54513:95;:::o;42148:2130::-;42263:35;42301:21;42314:7;42301:12;:21::i;:::-;42263:59;;42361:4;42339:26;;:13;:18;;;:26;;;42335:67;;42374:28;;;;;;;;;;;;;;42335:67;42415:22;42457:4;42441:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;42478:36;42495:4;42501:12;:10;:12::i;:::-;42478:16;:36::i;:::-;42441:73;:126;;;;42555:12;:10;:12::i;:::-;42531:36;;:20;42543:7;42531:11;:20::i;:::-;:36;;;42441:126;42415:153;;42586:17;42581:66;;42612:35;;;;;;;;;;;;;;42581:66;42676:1;42662:16;;:2;:16;;;42658:52;;;42687:23;;;;;;;;;;;;;;42658:52;42723:43;42745:4;42751:2;42755:7;42764:1;42723:21;:43::i;:::-;42831:35;42848:1;42852:7;42861:4;42831:8;:35::i;:::-;43192:1;43162:12;:18;43175:4;43162:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43236:1;43208:12;:16;43221:2;43208:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43254:31;43288:11;:20;43300:7;43288:20;;;;;;;;;;;43254:54;;43339:2;43323:8;:13;;;:18;;;;;;;;;;;;;;;;;;43389:15;43356:8;:23;;;:49;;;;;;;;;;;;;;;;;;43657:19;43689:1;43679:7;:11;43657:33;;43705:31;43739:11;:24;43751:11;43739:24;;;;;;;;;;;43705:58;;43807:1;43782:27;;:8;:13;;;;;;;;;;;;:27;;;43778:384;;;43992:13;;43977:11;:28;43973:174;;44046:4;44030:8;:13;;;:20;;;;;;;;;;;;;;;;;;44099:13;:28;;;44073:8;:23;;;:54;;;;;;;;;;;;;;;;;;43973:174;43778:384;43137:1036;;;44209:7;44205:2;44190:27;;44199:4;44190:27;;;;;;;;;;;;44228:42;44249:4;44255:2;44259:7;44268:1;44228:20;:42::i;:::-;42252:2026;;42148:2130;;;:::o;34196:1109::-;34258:21;;:::i;:::-;34292:12;34307:7;34292:22;;34375:4;34356:15;:13;:15::i;:::-;:23;;:47;;;;;34390:13;;34383:4;:20;34356:47;34352:886;;;34424:31;34458:11;:17;34470:4;34458:17;;;;;;;;;;;34424:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34499:9;:16;;;34494:729;;34570:1;34544:28;;:9;:14;;;:28;;;34540:101;;34608:9;34601:16;;;;;;34540:101;34943:261;34950:4;34943:261;;;34983:6;;;;;;;;35028:11;:17;35040:4;35028:17;;;;;;;;;;;35016:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35102:1;35076:28;;:9;:14;;;:28;;;35072:109;;35144:9;35137:16;;;;;;35072:109;34943:261;;;34494:729;34405:833;34352:886;35266:31;;;;;;;;;;;;;;34196:1109;;;;:::o;10793:191::-;10867:16;10886:6;;;;;;;;;;;10867:25;;10912:8;10903:6;;:17;;;;;;;;;;;;;;;;;;10967:8;10936:40;;10957:8;10936:40;;;;;;;;;;;;10856:128;10793:191;:::o;33103:137::-;33164:7;33199:12;:19;33212:5;33199:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;33191:41;;33184:48;;33103:137;;;:::o;39230:104::-;39299:27;39309:2;39313:8;39299:27;;;;;;;;;;;;:9;:27::i;:::-;39230:104;;:::o;12224:326::-;12284:4;12541:1;12519:7;:19;;;:23;12512:30;;12224:326;;;:::o;47893:667::-;48056:4;48093:2;48077:36;;;48114:12;:10;:12::i;:::-;48128:4;48134:7;48143:5;48077:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48073:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48328:1;48311:6;:13;:18;48307:235;;;48357:40;;;;;;;;;;;;;;48307:235;48500:6;48494:13;48485:6;48481:2;48477:15;48470:38;48073:480;48206:45;;;48196:55;;;:6;:55;;;;48189:62;;;47893:667;;;;;;:::o;56294:104::-;56354:13;56383:9;56376:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56294:104;:::o;5809:723::-;5865:13;6095:1;6086:5;:10;6082:53;;;6113:10;;;;;;;;;;;;;;;;;;;;;6082:53;6145:12;6160:5;6145:20;;6176:14;6201:78;6216:1;6208:4;:9;6201:78;;6234:8;;;;;:::i;:::-;;;;6265:2;6257:10;;;;;:::i;:::-;;;6201:78;;;6289:19;6321:6;6311:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6289:39;;6339:154;6355:1;6346:5;:10;6339:154;;6383:1;6373:11;;;;;:::i;:::-;;;6450:2;6442:5;:10;;;;:::i;:::-;6429:2;:24;;;;:::i;:::-;6416:39;;6399:6;6406;6399:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6479:2;6470:11;;;;;:::i;:::-;;;6339:154;;;6517:6;6503:21;;;;;5809:723;;;;:::o;3979:190::-;4104:4;4157;4128:25;4141:5;4148:4;4128:12;:25::i;:::-;:33;4121:40;;3979:190;;;;;:::o;49208:159::-;;;;;:::o;50026:158::-;;;;;:::o;39697:163::-;39820:32;39826:2;39830:8;39840:5;39847:4;39820:5;:32::i;:::-;39697:163;;;:::o;4530:675::-;4613:7;4633:20;4656:4;4633:27;;4676:9;4671:497;4695:5;:12;4691:1;:16;4671:497;;;4729:20;4752:5;4758:1;4752:8;;;;;;;;:::i;:::-;;;;;;;;4729:31;;4795:12;4779;:28;4775:382;;4922:42;4937:12;4951;4922:14;:42::i;:::-;4907:57;;4775:382;;;5099:42;5114:12;5128;5099:14;:42::i;:::-;5084:57;;4775:382;4714:454;4709:3;;;;;:::i;:::-;;;;4671:497;;;;5185:12;5178:19;;;4530:675;;;;:::o;40119:1775::-;40258:20;40281:13;;40258:36;;40323:1;40309:16;;:2;:16;;;40305:48;;;40334:19;;;;;;;;;;;;;;40305:48;40380:1;40368:8;:13;40364:44;;;40390:18;;;;;;;;;;;;;;40364:44;40421:61;40451:1;40455:2;40459:12;40473:8;40421:21;:61::i;:::-;40794:8;40759:12;:16;40772:2;40759:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40858:8;40818:12;:16;40831:2;40818:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40917:2;40884:11;:25;40896:12;40884:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;40984:15;40934:11;:25;40946:12;40934:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;41017:20;41040:12;41017:35;;41067:11;41096:8;41081:12;:23;41067:37;;41125:4;:23;;;;;41133:15;:2;:13;;;:15::i;:::-;41125:23;41121:641;;;41169:314;41225:12;41221:2;41200:38;;41217:1;41200:38;;;;;;;;;;;;41266:69;41305:1;41309:2;41313:14;;;;;;41329:5;41266:30;:69::i;:::-;41261:174;;41371:40;;;;;;;;;;;;;;41261:174;41478:3;41462:12;:19;;41169:314;;41564:12;41547:13;;:29;41543:43;;41578:8;;;41543:43;41121:641;;;41627:120;41683:14;;;;;;41679:2;41658:40;;41675:1;41658:40;;;;;;;;;;;;41742:3;41726:12;:19;;41627:120;;41121:641;41792:12;41776:13;:28;;;;40734:1082;;41826:60;41855:1;41859:2;41863:12;41877:8;41826:20;:60::i;:::-;40247:1647;40119:1775;;;;:::o;5213:224::-;5281:13;5344:1;5338:4;5331:15;5373:1;5367:4;5360:15;5414:4;5408;5398:21;5389:30;;5213: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:173::-;21827:25;21823:1;21815:6;21811:14;21804:49;21687:173;:::o;21866:366::-;22008:3;22029:67;22093:2;22088:3;22029:67;:::i;:::-;22022:74;;22105:93;22194:3;22105:93;:::i;:::-;22223:2;22218:3;22214:12;22207:19;;21866:366;;;:::o;22238:419::-;22404:4;22442:2;22431:9;22427:18;22419:26;;22491:9;22485:4;22481:20;22477:1;22466:9;22462:17;22455:47;22519:131;22645:4;22519:131;:::i;:::-;22511:139;;22238:419;;;:::o;22663:220::-;22803:34;22799:1;22791:6;22787:14;22780:58;22872:3;22867:2;22859:6;22855:15;22848:28;22663:220;:::o;22889:366::-;23031:3;23052:67;23116:2;23111:3;23052:67;:::i;:::-;23045:74;;23128:93;23217:3;23128:93;:::i;:::-;23246:2;23241:3;23237:12;23230:19;;22889:366;;;:::o;23261:419::-;23427:4;23465:2;23454:9;23450:18;23442:26;;23514:9;23508:4;23504:20;23500:1;23489:9;23485:17;23478:47;23542:131;23668:4;23542:131;:::i;:::-;23534:139;;23261:419;;;:::o;23686:305::-;23726:3;23745:20;23763:1;23745:20;:::i;:::-;23740:25;;23779:20;23797:1;23779:20;:::i;:::-;23774:25;;23933:1;23865:66;23861:74;23858:1;23855:81;23852:107;;;23939:18;;:::i;:::-;23852:107;23983:1;23980;23976:9;23969:16;;23686:305;;;;:::o;23997:168::-;24137:20;24133:1;24125:6;24121:14;24114:44;23997:168;:::o;24171:366::-;24313:3;24334:67;24398:2;24393:3;24334:67;:::i;:::-;24327:74;;24410:93;24499:3;24410:93;:::i;:::-;24528:2;24523:3;24519:12;24512:19;;24171:366;;;:::o;24543:419::-;24709:4;24747:2;24736:9;24732:18;24724:26;;24796:9;24790:4;24786:20;24782:1;24771:9;24767:17;24760:47;24824:131;24950:4;24824:131;:::i;:::-;24816:139;;24543:419;;;:::o;24968:170::-;25108:22;25104:1;25096:6;25092:14;25085:46;24968:170;:::o;25144:366::-;25286:3;25307:67;25371:2;25366:3;25307:67;:::i;:::-;25300:74;;25383:93;25472:3;25383:93;:::i;:::-;25501:2;25496:3;25492:12;25485:19;;25144:366;;;:::o;25516:419::-;25682:4;25720:2;25709:9;25705:18;25697:26;;25769:9;25763:4;25759:20;25755:1;25744:9;25740:17;25733:47;25797:131;25923:4;25797:131;:::i;:::-;25789:139;;25516:419;;;:::o;25941:191::-;25981:4;26001:20;26019:1;26001:20;:::i;:::-;25996:25;;26035:20;26053:1;26035:20;:::i;:::-;26030:25;;26074:1;26071;26068:8;26065:34;;;26079:18;;:::i;:::-;26065:34;26124:1;26121;26117:9;26109:17;;25941:191;;;;:::o;26138:348::-;26178:7;26201:20;26219:1;26201:20;:::i;:::-;26196:25;;26235:20;26253:1;26235:20;:::i;:::-;26230:25;;26423:1;26355:66;26351:74;26348:1;26345:81;26340:1;26333:9;26326:17;26322:105;26319:131;;;26430:18;;:::i;:::-;26319:131;26478:1;26475;26471:9;26460:20;;26138:348;;;;:::o;26492:221::-;26632:34;26628:1;26620:6;26616:14;26609:58;26701:4;26696:2;26688:6;26684:15;26677:29;26492:221;:::o;26719:366::-;26861:3;26882:67;26946:2;26941:3;26882:67;:::i;:::-;26875:74;;26958:93;27047:3;26958:93;:::i;:::-;27076:2;27071:3;27067:12;27060:19;;26719:366;;;:::o;27091:419::-;27257:4;27295:2;27284:9;27280:18;27272:26;;27344:9;27338:4;27334:20;27330:1;27319:9;27315:17;27308:47;27372:131;27498:4;27372:131;:::i;:::-;27364:139;;27091:419;;;:::o;27516:234::-;27656:34;27652:1;27644:6;27640:14;27633:58;27725:17;27720:2;27712:6;27708:15;27701:42;27516:234;:::o;27756:366::-;27898:3;27919:67;27983:2;27978:3;27919:67;:::i;:::-;27912:74;;27995:93;28084:3;27995:93;:::i;:::-;28113:2;28108:3;28104:12;28097:19;;27756:366;;;:::o;28128:419::-;28294:4;28332:2;28321:9;28317:18;28309:26;;28381:9;28375:4;28371:20;28367:1;28356:9;28352:17;28345:47;28409:131;28535:4;28409:131;:::i;:::-;28401:139;;28128:419;;;:::o;28553:148::-;28655:11;28692:3;28677:18;;28553:148;;;;:::o;28707:377::-;28813:3;28841:39;28874:5;28841:39;:::i;:::-;28896:89;28978:6;28973:3;28896:89;:::i;:::-;28889:96;;28994:52;29039:6;29034:3;29027:4;29020:5;29016:16;28994:52;:::i;:::-;29071:6;29066:3;29062:16;29055:23;;28817:267;28707:377;;;;:::o;29090:141::-;29139:4;29162:3;29154:11;;29185:3;29182:1;29175:14;29219:4;29216:1;29206:18;29198:26;;29090:141;;;:::o;29261:845::-;29364:3;29401:5;29395:12;29430:36;29456:9;29430:36;:::i;:::-;29482:89;29564:6;29559:3;29482:89;:::i;:::-;29475:96;;29602:1;29591:9;29587:17;29618:1;29613:137;;;;29764:1;29759:341;;;;29580:520;;29613:137;29697:4;29693:9;29682;29678:25;29673:3;29666:38;29733:6;29728:3;29724:16;29717:23;;29613:137;;29759:341;29826:38;29858:5;29826:38;:::i;:::-;29886:1;29900:154;29914:6;29911:1;29908:13;29900:154;;;29988:7;29982:14;29978:1;29973:3;29969:11;29962:35;30038:1;30029:7;30025:15;30014:26;;29936:4;29933:1;29929:12;29924:17;;29900:154;;;30083:6;30078:3;30074:16;30067:23;;29766:334;;29580:520;;29368:738;;29261:845;;;;:::o;30112:589::-;30337:3;30359:95;30450:3;30441:6;30359:95;:::i;:::-;30352:102;;30471:95;30562:3;30553:6;30471:95;:::i;:::-;30464:102;;30583:92;30671:3;30662:6;30583:92;:::i;:::-;30576:99;;30692:3;30685:10;;30112:589;;;;;;:::o;30707:170::-;30847:22;30843:1;30835:6;30831:14;30824:46;30707:170;:::o;30883:366::-;31025:3;31046:67;31110:2;31105:3;31046:67;:::i;:::-;31039:74;;31122:93;31211:3;31122:93;:::i;:::-;31240:2;31235:3;31231:12;31224:19;;30883:366;;;:::o;31255:419::-;31421:4;31459:2;31448:9;31444:18;31436:26;;31508:9;31502:4;31498:20;31494:1;31483:9;31479:17;31472:47;31536:131;31662:4;31536:131;:::i;:::-;31528:139;;31255:419;;;:::o;31680:170::-;31820:22;31816:1;31808:6;31804:14;31797:46;31680:170;:::o;31856:366::-;31998:3;32019:67;32083:2;32078:3;32019:67;:::i;:::-;32012:74;;32095:93;32184:3;32095:93;:::i;:::-;32213:2;32208:3;32204:12;32197:19;;31856:366;;;:::o;32228:419::-;32394:4;32432:2;32421:9;32417:18;32409:26;;32481:9;32475:4;32471:20;32467:1;32456:9;32452:17;32445:47;32509:131;32635:4;32509:131;:::i;:::-;32501:139;;32228:419;;;:::o;32653:169::-;32793:21;32789:1;32781:6;32777:14;32770:45;32653:169;:::o;32828:366::-;32970:3;32991:67;33055:2;33050:3;32991:67;:::i;:::-;32984:74;;33067:93;33156:3;33067:93;:::i;:::-;33185:2;33180:3;33176:12;33169:19;;32828:366;;;:::o;33200:419::-;33366:4;33404:2;33393:9;33389:18;33381:26;;33453:9;33447:4;33443:20;33439:1;33428:9;33424:17;33417:47;33481:131;33607:4;33481:131;:::i;:::-;33473:139;;33200:419;;;:::o;33625:221::-;33765:34;33761:1;33753:6;33749:14;33742:58;33834:4;33829:2;33821:6;33817:15;33810:29;33625:221;:::o;33852:366::-;33994:3;34015:67;34079:2;34074:3;34015:67;:::i;:::-;34008:74;;34091:93;34180:3;34091:93;:::i;:::-;34209:2;34204:3;34200:12;34193:19;;33852:366;;;:::o;34224:419::-;34390:4;34428:2;34417:9;34413:18;34405:26;;34477:9;34471:4;34467:20;34463:1;34452:9;34448:17;34441:47;34505:131;34631:4;34505:131;:::i;:::-;34497:139;;34224:419;;;:::o;34649:174::-;34789:26;34785:1;34777:6;34773:14;34766:50;34649:174;:::o;34829:366::-;34971:3;34992:67;35056:2;35051:3;34992:67;:::i;:::-;34985:74;;35068:93;35157:3;35068:93;:::i;:::-;35186:2;35181:3;35177:12;35170:19;;34829:366;;;:::o;35201:419::-;35367:4;35405:2;35394:9;35390:18;35382:26;;35454:9;35448:4;35444:20;35440:1;35429:9;35425:17;35418:47;35482:131;35608:4;35482:131;:::i;:::-;35474:139;;35201:419;;;:::o;35626:94::-;35659:8;35707:5;35703:2;35699:14;35678:35;;35626:94;;;:::o;35726:::-;35765:7;35794:20;35808:5;35794:20;:::i;:::-;35783:31;;35726:94;;;:::o;35826:100::-;35865:7;35894:26;35914:5;35894:26;:::i;:::-;35883:37;;35826:100;;;:::o;35932:157::-;36037:45;36057:24;36075:5;36057:24;:::i;:::-;36037:45;:::i;:::-;36032:3;36025:58;35932:157;;:::o;36095:256::-;36207:3;36222:75;36293:3;36284:6;36222:75;:::i;:::-;36322:2;36317:3;36313:12;36306:19;;36342:3;36335:10;;36095:256;;;;:::o;36357:164::-;36497:16;36493:1;36485:6;36481:14;36474:40;36357:164;:::o;36527:366::-;36669:3;36690:67;36754:2;36749:3;36690:67;:::i;:::-;36683:74;;36766:93;36855:3;36766:93;:::i;:::-;36884:2;36879:3;36875:12;36868:19;;36527:366;;;:::o;36899:419::-;37065:4;37103:2;37092:9;37088:18;37080:26;;37152:9;37146:4;37142:20;37138:1;37127:9;37123:17;37116:47;37180:131;37306:4;37180:131;:::i;:::-;37172:139;;36899:419;;;:::o;37324:225::-;37464:34;37460:1;37452:6;37448:14;37441:58;37533:8;37528:2;37520:6;37516:15;37509:33;37324:225;:::o;37555:366::-;37697:3;37718:67;37782:2;37777:3;37718:67;:::i;:::-;37711:74;;37794:93;37883:3;37794:93;:::i;:::-;37912:2;37907:3;37903:12;37896:19;;37555:366;;;:::o;37927:419::-;38093:4;38131:2;38120:9;38116:18;38108:26;;38180:9;38174:4;38170:20;38166:1;38155:9;38151:17;38144:47;38208:131;38334:4;38208:131;:::i;:::-;38200:139;;37927:419;;;:::o;38352:98::-;38403:6;38437:5;38431:12;38421:22;;38352:98;;;:::o;38456:168::-;38539:11;38573:6;38568:3;38561:19;38613:4;38608:3;38604:14;38589:29;;38456:168;;;;:::o;38630:360::-;38716:3;38744:38;38776:5;38744:38;:::i;:::-;38798:70;38861:6;38856:3;38798:70;:::i;:::-;38791:77;;38877:52;38922:6;38917:3;38910:4;38903:5;38899:16;38877:52;:::i;:::-;38954:29;38976:6;38954:29;:::i;:::-;38949:3;38945:39;38938:46;;38720:270;38630:360;;;;:::o;38996:640::-;39191:4;39229:3;39218:9;39214:19;39206:27;;39243:71;39311:1;39300:9;39296:17;39287:6;39243:71;:::i;:::-;39324:72;39392:2;39381:9;39377:18;39368:6;39324:72;:::i;:::-;39406;39474:2;39463:9;39459:18;39450:6;39406:72;:::i;:::-;39525:9;39519:4;39515:20;39510:2;39499:9;39495:18;39488:48;39553:76;39624:4;39615:6;39553:76;:::i;:::-;39545:84;;38996:640;;;;;;;:::o;39642:141::-;39698:5;39729:6;39723:13;39714:22;;39745:32;39771:5;39745:32;:::i;:::-;39642:141;;;;:::o;39789:349::-;39858:6;39907:2;39895:9;39886:7;39882:23;39878:32;39875:119;;;39913:79;;:::i;:::-;39875:119;40033:1;40058:63;40113:7;40104:6;40093:9;40089:22;40058:63;:::i;:::-;40048:73;;40004:127;39789:349;;;;:::o;40144:180::-;40192:77;40189:1;40182:88;40289:4;40286:1;40279:15;40313:4;40310:1;40303:15;40330:185;40370:1;40387:20;40405:1;40387:20;:::i;:::-;40382:25;;40421:20;40439:1;40421:20;:::i;:::-;40416:25;;40460:1;40450:35;;40465:18;;:::i;:::-;40450:35;40507:1;40504;40500:9;40495:14;;40330:185;;;;:::o;40521:176::-;40553:1;40570:20;40588:1;40570:20;:::i;:::-;40565:25;;40604:20;40622:1;40604:20;:::i;:::-;40599:25;;40643:1;40633:35;;40648:18;;:::i;:::-;40633:35;40689:1;40686;40682:9;40677:14;;40521:176;;;;:::o

Swarm Source

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