ETH Price: $3,060.78 (+2.33%)
Gas: 4 Gwei

Token

CartoonzKi (CK)
 

Overview

Max Total Supply

7,080 CK

Holders

739

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
8 CK
0x970c21da3d93b5e94d04df8a5e024623f91183a9
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:
CartoonzKi

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-29
*/

// SPDX-License-Identifier: MIT
/** _____           _                    ______     _    _ 
  / ____|         | |                  |___  /    | |  (_)
 | |     __ _ _ __| |_ ___   ___  _ __    / /_   _| | ___ 
 | |    / _` | '__| __/ _ \ / _ \| '_ \  / /| | | | |/ / |
 | |___| (_| | |  | || (_) | (_) | | | |/ /_| |_| |   <| |
  \_____\__,_|_|   \__\___/ \___/|_| |_/_____\__,_|_|\_\_|                                                                                                             
 */
// 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/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/no.sol



pragma solidity >=0.8.9 <0.9.0;




// Smart contract for  Test
contract CartoonzKi is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;

  string public uriPrefix = 'ipfs://QmfVHzThZg4Aq3uzSyp1BzFb6nbLJTnKhKNaUy2ykqWQAF/';
  string public uriSuffix = '.json';
  string public hiddenMetadataUri;
  
  uint256 public cost;
  uint256 public price = 0.0085 ether;
  uint256 public maxSupply = 10000;
  uint256 public maxPerWallet  = 80;
  uint256 public totalFree = 1000;
  uint256 public maxMintAmountPerTx = 30;
  uint256 public maxPerFree = 8;
  uint256 public maxPerFreeWallet = 16;

  constructor() ERC721A("CartoonzKi", "CK") {
  }

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

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

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    cost = price;
    if(totalSupply() + _mintAmount < totalFree + 1) {
      cost = 0;
      require(_mintAmount <= maxPerFree && cost == 0, "Too many Free mints!");
      require(numberMinted(msg.sender) + _mintAmount <= maxPerFreeWallet,"Free mint limit has been reached!");
    }
    require(numberMinted(msg.sender) + _mintAmount <= maxPerWallet,"Too many per wallet!");
    _safeMint(_msgSender(), _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

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

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

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

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

          ownedTokenIndex++;
        }
      }

      currentTokenId++;
    }
    return ownedTokenIds;
  }

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

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

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

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

  function setMaxPerFree(uint256 _maxPerFree) public onlyOwner {
    maxPerFree = _maxPerFree;
  }

  function setMaxPerWallet(uint256 _maxPerWallet) public onlyOwner {
    maxPerWallet = _maxPerWallet;
  }

  function setTotalFree(uint256 _totalFree) public onlyOwner {
    totalFree = _totalFree;
  }

  function setMaxPerFreeWallet(uint256 _maxPerFreeWallet) public onlyOwner {
    maxPerFreeWallet = _maxPerFreeWallet;
  }

  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 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":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxPerFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerFreeWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"uint256","name":"_maxPerFree","type":"uint256"}],"name":"setMaxPerFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerFreeWallet","type":"uint256"}],"name":"setMaxPerFreeWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_totalFree","type":"uint256"}],"name":"setTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060600160405280603681526020016200481360369139600a90805190602001906200003592919062000278565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90805190602001906200008392919062000278565b50661e32b478974000600e55612710600f5560506010556103e8601155601e60125560086013556010601455348015620000bc57600080fd5b506040518060400160405280600a81526020017f436172746f6f6e7a4b69000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f434b00000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200014192919062000278565b5080600390805190602001906200015a92919062000278565b506200016b620001a160201b60201c565b60008190555050506200019362000187620001aa60201b60201c565b620001b260201b60201c565b60016009819055506200038c565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002869062000357565b90600052602060002090601f016020900481019282620002aa5760008555620002f6565b82601f10620002c557805160ff1916838001178555620002f6565b82800160010185558215620002f6579182015b82811115620002f5578251825591602001919060010190620002d8565b5b50905062000305919062000309565b5090565b5b80821115620003245760008160009055506001016200030a565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200037057607f821691505b60208210810362000386576200038562000328565b5b50919050565b614477806200039c6000396000f3fe6080604052600436106102515760003560e01c8063715018a611610139578063b071401b116100b6578063dc33e6811161007a578063dc33e6811461087f578063e268e4d3146108bc578063e945971c146108e5578063e985e9c51461090e578063efbd73f41461094b578063f2fde38b1461097457610251565b8063b071401b1461079a578063b88d4fde146107c3578063c7c39ffc146107ec578063c87b56dd14610817578063d5abeb011461085457610251565b8063a035b1fe116100fd578063a035b1fe146106d4578063a0712d68146106ff578063a09fa9411461071b578063a22cb46514610746578063a45ba8e71461076f57610251565b8063715018a6146106135780637ec4a6591461062a5780638da5cb5b1461065357806394354fd01461067e57806395d89b41146106a957610251565b806342842e0e116101d25780635503a0e8116101965780635503a0e8146104f1578063563aaf111461051c5780635e85d3a31461054557806362b99ad41461056e5780636352211e1461059957806370a08231146105d657610251565b806342842e0e1461040e578063438b63001461043757806344a0d68a14610474578063453c23101461049d5780634fdd43cb146104c857610251565b806316ba10e01161021957806316ba10e01461034f57806318160ddd1461037857806323b872dd146103a3578063333e44e6146103cc5780633ccfd60b146103f757610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806313faede614610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613391565b61099d565b60405161028a91906133d9565b60405180910390f35b34801561029f57600080fd5b506102a8610a7f565b6040516102b5919061348d565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e091906134e5565b610b11565b6040516102f29190613553565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d919061359a565b610b8d565b005b34801561033057600080fd5b50610339610c97565b60405161034691906135e9565b60405180910390f35b34801561035b57600080fd5b5061037660048036038101906103719190613739565b610c9d565b005b34801561038457600080fd5b5061038d610d33565b60405161039a91906135e9565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c59190613782565b610d4a565b005b3480156103d857600080fd5b506103e1610d5a565b6040516103ee91906135e9565b60405180910390f35b34801561040357600080fd5b5061040c610d60565b005b34801561041a57600080fd5b5061043560048036038101906104309190613782565b610eb1565b005b34801561044357600080fd5b5061045e600480360381019061045991906137d5565b610ed1565b60405161046b91906138c0565b60405180910390f35b34801561048057600080fd5b5061049b600480360381019061049691906134e5565b6110e4565b005b3480156104a957600080fd5b506104b261116a565b6040516104bf91906135e9565b60405180910390f35b3480156104d457600080fd5b506104ef60048036038101906104ea9190613739565b611170565b005b3480156104fd57600080fd5b50610506611206565b604051610513919061348d565b60405180910390f35b34801561052857600080fd5b50610543600480360381019061053e91906134e5565b611294565b005b34801561055157600080fd5b5061056c600480360381019061056791906134e5565b61131a565b005b34801561057a57600080fd5b506105836113a0565b604051610590919061348d565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb91906134e5565b61142e565b6040516105cd9190613553565b60405180910390f35b3480156105e257600080fd5b506105fd60048036038101906105f891906137d5565b611444565b60405161060a91906135e9565b60405180910390f35b34801561061f57600080fd5b50610628611513565b005b34801561063657600080fd5b50610651600480360381019061064c9190613739565b61159b565b005b34801561065f57600080fd5b50610668611631565b6040516106759190613553565b60405180910390f35b34801561068a57600080fd5b5061069361165b565b6040516106a091906135e9565b60405180910390f35b3480156106b557600080fd5b506106be611661565b6040516106cb919061348d565b60405180910390f35b3480156106e057600080fd5b506106e96116f3565b6040516106f691906135e9565b60405180910390f35b610719600480360381019061071491906134e5565b6116f9565b005b34801561072757600080fd5b50610730611946565b60405161073d91906135e9565b60405180910390f35b34801561075257600080fd5b5061076d6004803603810190610768919061390e565b61194c565b005b34801561077b57600080fd5b50610784611ac3565b604051610791919061348d565b60405180910390f35b3480156107a657600080fd5b506107c160048036038101906107bc91906134e5565b611b51565b005b3480156107cf57600080fd5b506107ea60048036038101906107e591906139ef565b611bd7565b005b3480156107f857600080fd5b50610801611c53565b60405161080e91906135e9565b60405180910390f35b34801561082357600080fd5b5061083e600480360381019061083991906134e5565b611c59565b60405161084b919061348d565b60405180910390f35b34801561086057600080fd5b50610869611d03565b60405161087691906135e9565b60405180910390f35b34801561088b57600080fd5b506108a660048036038101906108a191906137d5565b611d09565b6040516108b391906135e9565b60405180910390f35b3480156108c857600080fd5b506108e360048036038101906108de91906134e5565b611d1b565b005b3480156108f157600080fd5b5061090c600480360381019061090791906134e5565b611da1565b005b34801561091a57600080fd5b5061093560048036038101906109309190613a72565b611e27565b60405161094291906133d9565b60405180910390f35b34801561095757600080fd5b50610972600480360381019061096d9190613ab2565b611ebb565b005b34801561098057600080fd5b5061099b600480360381019061099691906137d5565b611fef565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a785750610a77826120e6565b5b9050919050565b606060028054610a8e90613b21565b80601f0160208091040260200160405190810160405280929190818152602001828054610aba90613b21565b8015610b075780601f10610adc57610100808354040283529160200191610b07565b820191906000526020600020905b815481529060010190602001808311610aea57829003601f168201915b5050505050905090565b6000610b1c82612150565b610b52576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b988261142e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bff576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c1e61219e565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c505750610c4e81610c4961219e565b611e27565b155b15610c87576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c928383836121a6565b505050565b600d5481565b610ca561219e565b73ffffffffffffffffffffffffffffffffffffffff16610cc3611631565b73ffffffffffffffffffffffffffffffffffffffff1614610d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1090613b9e565b60405180910390fd5b80600b9080519060200190610d2f92919061323f565b5050565b6000610d3d612258565b6001546000540303905090565b610d55838383612261565b505050565b60115481565b610d6861219e565b73ffffffffffffffffffffffffffffffffffffffff16610d86611631565b73ffffffffffffffffffffffffffffffffffffffff1614610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd390613b9e565b60405180910390fd5b600260095403610e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1890613c0a565b60405180910390fd5b60026009819055506000610e33611631565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e5690613c5b565b60006040518083038185875af1925050503d8060008114610e93576040519150601f19603f3d011682016040523d82523d6000602084013e610e98565b606091505b5050905080610ea657600080fd5b506001600981905550565b610ecc83838360405180602001604052806000815250611bd7565b505050565b60606000610ede83611444565b905060008167ffffffffffffffff811115610efc57610efb61360e565b5b604051908082528060200260200182016040528015610f2a5781602001602082028036833780820191505090505b5090506000610f37612258565b90506000805b8482108015610f4d575060005483105b156110d7576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516110c357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461106057806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110c257838584815181106110a7576110a6613c70565b5b60200260200101818152505082806110be90613cce565b9350505b5b83806110ce90613cce565b94505050610f3d565b8395505050505050919050565b6110ec61219e565b73ffffffffffffffffffffffffffffffffffffffff1661110a611631565b73ffffffffffffffffffffffffffffffffffffffff1614611160576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115790613b9e565b60405180910390fd5b80600e8190555050565b60105481565b61117861219e565b73ffffffffffffffffffffffffffffffffffffffff16611196611631565b73ffffffffffffffffffffffffffffffffffffffff16146111ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e390613b9e565b60405180910390fd5b80600c908051906020019061120292919061323f565b5050565b600b805461121390613b21565b80601f016020809104026020016040519081016040528092919081815260200182805461123f90613b21565b801561128c5780601f106112615761010080835404028352916020019161128c565b820191906000526020600020905b81548152906001019060200180831161126f57829003601f168201915b505050505081565b61129c61219e565b73ffffffffffffffffffffffffffffffffffffffff166112ba611631565b73ffffffffffffffffffffffffffffffffffffffff1614611310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130790613b9e565b60405180910390fd5b8060118190555050565b61132261219e565b73ffffffffffffffffffffffffffffffffffffffff16611340611631565b73ffffffffffffffffffffffffffffffffffffffff1614611396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138d90613b9e565b60405180910390fd5b8060148190555050565b600a80546113ad90613b21565b80601f01602080910402602001604051908101604052809291908181526020018280546113d990613b21565b80156114265780601f106113fb57610100808354040283529160200191611426565b820191906000526020600020905b81548152906001019060200180831161140957829003601f168201915b505050505081565b600061143982612715565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114ab576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61151b61219e565b73ffffffffffffffffffffffffffffffffffffffff16611539611631565b73ffffffffffffffffffffffffffffffffffffffff161461158f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158690613b9e565b60405180910390fd5b61159960006129a4565b565b6115a361219e565b73ffffffffffffffffffffffffffffffffffffffff166115c1611631565b73ffffffffffffffffffffffffffffffffffffffff1614611617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160e90613b9e565b60405180910390fd5b80600a908051906020019061162d92919061323f565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b60606003805461167090613b21565b80601f016020809104026020016040519081016040528092919081815260200182805461169c90613b21565b80156116e95780601f106116be576101008083540402835291602001916116e9565b820191906000526020600020905b8154815290600101906020018083116116cc57829003601f168201915b5050505050905090565b600e5481565b8060008111801561170c57506012548111155b61174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290613d62565b60405180910390fd5b600f5481611757610d33565b6117619190613d82565b11156117a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179990613e24565b60405180910390fd5b8180600d546117b19190613e44565b3410156117f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ea90613eea565b60405180910390fd5b600e54600d81905550600160115461180b9190613d82565b83611814610d33565b61181e9190613d82565b10156118d8576000600d81905550601354831115801561184057506000600d54145b61187f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187690613f56565b60405180910390fd5b6014548361188c33611d09565b6118969190613d82565b11156118d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ce90613fe8565b60405180910390fd5b5b601054836118e533611d09565b6118ef9190613d82565b1115611930576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192790614054565b60405180910390fd5b61194161193b61219e565b84612a6a565b505050565b60145481565b61195461219e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119b8576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119c561219e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a7261219e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ab791906133d9565b60405180910390a35050565b600c8054611ad090613b21565b80601f0160208091040260200160405190810160405280929190818152602001828054611afc90613b21565b8015611b495780601f10611b1e57610100808354040283529160200191611b49565b820191906000526020600020905b815481529060010190602001808311611b2c57829003601f168201915b505050505081565b611b5961219e565b73ffffffffffffffffffffffffffffffffffffffff16611b77611631565b73ffffffffffffffffffffffffffffffffffffffff1614611bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc490613b9e565b60405180910390fd5b8060128190555050565b611be2848484612261565b611c018373ffffffffffffffffffffffffffffffffffffffff16612a88565b8015611c165750611c1484848484612aab565b155b15611c4d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60135481565b6060611c6482612150565b611ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9a906140e6565b60405180910390fd5b6000611cad612bfb565b90506000815111611ccd5760405180602001604052806000815250611cfb565b80611cd784612c8d565b600b604051602001611ceb939291906141d6565b6040516020818303038152906040525b915050919050565b600f5481565b6000611d1482612ded565b9050919050565b611d2361219e565b73ffffffffffffffffffffffffffffffffffffffff16611d41611631565b73ffffffffffffffffffffffffffffffffffffffff1614611d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8e90613b9e565b60405180910390fd5b8060108190555050565b611da961219e565b73ffffffffffffffffffffffffffffffffffffffff16611dc7611631565b73ffffffffffffffffffffffffffffffffffffffff1614611e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1490613b9e565b60405180910390fd5b8060138190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611ece57506012548111155b611f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0490613d62565b60405180910390fd5b600f5481611f19610d33565b611f239190613d82565b1115611f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5b90613e24565b60405180910390fd5b611f6c61219e565b73ffffffffffffffffffffffffffffffffffffffff16611f8a611631565b73ffffffffffffffffffffffffffffffffffffffff1614611fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd790613b9e565b60405180910390fd5b611fea8284612a6a565b505050565b611ff761219e565b73ffffffffffffffffffffffffffffffffffffffff16612015611631565b73ffffffffffffffffffffffffffffffffffffffff161461206b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206290613b9e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036120da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d190614279565b60405180910390fd5b6120e3816129a4565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161215b612258565b1115801561216a575060005482105b8015612197575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061226c82612715565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122d7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166122f861219e565b73ffffffffffffffffffffffffffffffffffffffff16148061232757506123268561232161219e565b611e27565b5b8061236c575061233561219e565b73ffffffffffffffffffffffffffffffffffffffff1661235484610b11565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806123a5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361240b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124188585856001612e57565b612424600084876121a6565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036126a35760005482146126a257878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461270e8585856001612e5d565b5050505050565b61271d6132c5565b60008290508061272b612258565b1115801561273a575060005481105b1561296d576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161296b57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461284f57809250505061299f565b5b60011561296a57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461296557809250505061299f565b612850565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a84828260405180602001604052806000815250612e63565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ad161219e565b8786866040518563ffffffff1660e01b8152600401612af394939291906142ee565b6020604051808303816000875af1925050508015612b2f57506040513d601f19601f82011682018060405250810190612b2c919061434f565b60015b612ba8573d8060008114612b5f576040519150601f19603f3d011682016040523d82523d6000602084013e612b64565b606091505b506000815103612ba0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612c0a90613b21565b80601f0160208091040260200160405190810160405280929190818152602001828054612c3690613b21565b8015612c835780601f10612c5857610100808354040283529160200191612c83565b820191906000526020600020905b815481529060010190602001808311612c6657829003601f168201915b5050505050905090565b606060008203612cd4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612de8565b600082905060005b60008214612d06578080612cef90613cce565b915050600a82612cff91906143ab565b9150612cdc565b60008167ffffffffffffffff811115612d2257612d2161360e565b5b6040519080825280601f01601f191660200182016040528015612d545781602001600182028036833780820191505090505b5090505b60008514612de157600182612d6d91906143dc565b9150600a85612d7c9190614410565b6030612d889190613d82565b60f81b818381518110612d9e57612d9d613c70565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612dda91906143ab565b9450612d58565b8093505050505b919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b612e708383836001612e75565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612ee1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612f1b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612f286000868387612e57565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156130f257506130f18773ffffffffffffffffffffffffffffffffffffffff16612a88565b5b156131b7575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131676000888480600101955088612aab565b61319d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036130f85782600054146131b257600080fd5b613222565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036131b8575b8160008190555050506132386000868387612e5d565b5050505050565b82805461324b90613b21565b90600052602060002090601f01602090048101928261326d57600085556132b4565b82601f1061328657805160ff19168380011785556132b4565b828001600101855582156132b4579182015b828111156132b3578251825591602001919060010190613298565b5b5090506132c19190613308565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613321576000816000905550600101613309565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61336e81613339565b811461337957600080fd5b50565b60008135905061338b81613365565b92915050565b6000602082840312156133a7576133a661332f565b5b60006133b58482850161337c565b91505092915050565b60008115159050919050565b6133d3816133be565b82525050565b60006020820190506133ee60008301846133ca565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561342e578082015181840152602081019050613413565b8381111561343d576000848401525b50505050565b6000601f19601f8301169050919050565b600061345f826133f4565b61346981856133ff565b9350613479818560208601613410565b61348281613443565b840191505092915050565b600060208201905081810360008301526134a78184613454565b905092915050565b6000819050919050565b6134c2816134af565b81146134cd57600080fd5b50565b6000813590506134df816134b9565b92915050565b6000602082840312156134fb576134fa61332f565b5b6000613509848285016134d0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061353d82613512565b9050919050565b61354d81613532565b82525050565b60006020820190506135686000830184613544565b92915050565b61357781613532565b811461358257600080fd5b50565b6000813590506135948161356e565b92915050565b600080604083850312156135b1576135b061332f565b5b60006135bf85828601613585565b92505060206135d0858286016134d0565b9150509250929050565b6135e3816134af565b82525050565b60006020820190506135fe60008301846135da565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61364682613443565b810181811067ffffffffffffffff821117156136655761366461360e565b5b80604052505050565b6000613678613325565b9050613684828261363d565b919050565b600067ffffffffffffffff8211156136a4576136a361360e565b5b6136ad82613443565b9050602081019050919050565b82818337600083830152505050565b60006136dc6136d784613689565b61366e565b9050828152602081018484840111156136f8576136f7613609565b5b6137038482856136ba565b509392505050565b600082601f8301126137205761371f613604565b5b81356137308482602086016136c9565b91505092915050565b60006020828403121561374f5761374e61332f565b5b600082013567ffffffffffffffff81111561376d5761376c613334565b5b6137798482850161370b565b91505092915050565b60008060006060848603121561379b5761379a61332f565b5b60006137a986828701613585565b93505060206137ba86828701613585565b92505060406137cb868287016134d0565b9150509250925092565b6000602082840312156137eb576137ea61332f565b5b60006137f984828501613585565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613837816134af565b82525050565b6000613849838361382e565b60208301905092915050565b6000602082019050919050565b600061386d82613802565b613877818561380d565b93506138828361381e565b8060005b838110156138b357815161389a888261383d565b97506138a583613855565b925050600181019050613886565b5085935050505092915050565b600060208201905081810360008301526138da8184613862565b905092915050565b6138eb816133be565b81146138f657600080fd5b50565b600081359050613908816138e2565b92915050565b600080604083850312156139255761392461332f565b5b600061393385828601613585565b9250506020613944858286016138f9565b9150509250929050565b600067ffffffffffffffff8211156139695761396861360e565b5b61397282613443565b9050602081019050919050565b600061399261398d8461394e565b61366e565b9050828152602081018484840111156139ae576139ad613609565b5b6139b98482856136ba565b509392505050565b600082601f8301126139d6576139d5613604565b5b81356139e684826020860161397f565b91505092915050565b60008060008060808587031215613a0957613a0861332f565b5b6000613a1787828801613585565b9450506020613a2887828801613585565b9350506040613a39878288016134d0565b925050606085013567ffffffffffffffff811115613a5a57613a59613334565b5b613a66878288016139c1565b91505092959194509250565b60008060408385031215613a8957613a8861332f565b5b6000613a9785828601613585565b9250506020613aa885828601613585565b9150509250929050565b60008060408385031215613ac957613ac861332f565b5b6000613ad7858286016134d0565b9250506020613ae885828601613585565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b3957607f821691505b602082108103613b4c57613b4b613af2565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b886020836133ff565b9150613b9382613b52565b602082019050919050565b60006020820190508181036000830152613bb781613b7b565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613bf4601f836133ff565b9150613bff82613bbe565b602082019050919050565b60006020820190508181036000830152613c2381613be7565b9050919050565b600081905092915050565b50565b6000613c45600083613c2a565b9150613c5082613c35565b600082019050919050565b6000613c6682613c38565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613cd9826134af565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613d0b57613d0a613c9f565b5b600182019050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613d4c6014836133ff565b9150613d5782613d16565b602082019050919050565b60006020820190508181036000830152613d7b81613d3f565b9050919050565b6000613d8d826134af565b9150613d98836134af565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dcd57613dcc613c9f565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613e0e6014836133ff565b9150613e1982613dd8565b602082019050919050565b60006020820190508181036000830152613e3d81613e01565b9050919050565b6000613e4f826134af565b9150613e5a836134af565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e9357613e92613c9f565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613ed46013836133ff565b9150613edf82613e9e565b602082019050919050565b60006020820190508181036000830152613f0381613ec7565b9050919050565b7f546f6f206d616e792046726565206d696e747321000000000000000000000000600082015250565b6000613f406014836133ff565b9150613f4b82613f0a565b602082019050919050565b60006020820190508181036000830152613f6f81613f33565b9050919050565b7f46726565206d696e74206c696d697420686173206265656e207265616368656460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b6000613fd26021836133ff565b9150613fdd82613f76565b604082019050919050565b6000602082019050818103600083015261400181613fc5565b9050919050565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b600061403e6014836133ff565b915061404982614008565b602082019050919050565b6000602082019050818103600083015261406d81614031565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006140d0602f836133ff565b91506140db82614074565b604082019050919050565b600060208201905081810360008301526140ff816140c3565b9050919050565b600081905092915050565b600061411c826133f4565b6141268185614106565b9350614136818560208601613410565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461416481613b21565b61416e8186614106565b94506001821660008114614189576001811461419a576141cd565b60ff198316865281860193506141cd565b6141a385614142565b60005b838110156141c5578154818901526001820191506020810190506141a6565b838801955050505b50505092915050565b60006141e28286614111565b91506141ee8285614111565b91506141fa8284614157565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006142636026836133ff565b915061426e82614207565b604082019050919050565b6000602082019050818103600083015261429281614256565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006142c082614299565b6142ca81856142a4565b93506142da818560208601613410565b6142e381613443565b840191505092915050565b60006080820190506143036000830187613544565b6143106020830186613544565b61431d60408301856135da565b818103606083015261432f81846142b5565b905095945050505050565b60008151905061434981613365565b92915050565b6000602082840312156143655761436461332f565b5b60006143738482850161433a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143b6826134af565b91506143c1836134af565b9250826143d1576143d061437c565b5b828204905092915050565b60006143e7826134af565b91506143f2836134af565b92508282101561440557614404613c9f565b5b828203905092915050565b600061441b826134af565b9150614426836134af565b9250826144365761443561437c565b5b82820690509291505056fea2646970667358221220e48a8937428c2deaffc42ae561b2d8a5f83c868768cec77f030aad87a31f4a5464736f6c634300080e0033697066733a2f2f516d6656487a54685a6734417133757a53797031427a4662366e624c4a546e4b684b4e61557932796b71575141462f

Deployed Bytecode

0x6080604052600436106102515760003560e01c8063715018a611610139578063b071401b116100b6578063dc33e6811161007a578063dc33e6811461087f578063e268e4d3146108bc578063e945971c146108e5578063e985e9c51461090e578063efbd73f41461094b578063f2fde38b1461097457610251565b8063b071401b1461079a578063b88d4fde146107c3578063c7c39ffc146107ec578063c87b56dd14610817578063d5abeb011461085457610251565b8063a035b1fe116100fd578063a035b1fe146106d4578063a0712d68146106ff578063a09fa9411461071b578063a22cb46514610746578063a45ba8e71461076f57610251565b8063715018a6146106135780637ec4a6591461062a5780638da5cb5b1461065357806394354fd01461067e57806395d89b41146106a957610251565b806342842e0e116101d25780635503a0e8116101965780635503a0e8146104f1578063563aaf111461051c5780635e85d3a31461054557806362b99ad41461056e5780636352211e1461059957806370a08231146105d657610251565b806342842e0e1461040e578063438b63001461043757806344a0d68a14610474578063453c23101461049d5780634fdd43cb146104c857610251565b806316ba10e01161021957806316ba10e01461034f57806318160ddd1461037857806323b872dd146103a3578063333e44e6146103cc5780633ccfd60b146103f757610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806313faede614610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613391565b61099d565b60405161028a91906133d9565b60405180910390f35b34801561029f57600080fd5b506102a8610a7f565b6040516102b5919061348d565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e091906134e5565b610b11565b6040516102f29190613553565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d919061359a565b610b8d565b005b34801561033057600080fd5b50610339610c97565b60405161034691906135e9565b60405180910390f35b34801561035b57600080fd5b5061037660048036038101906103719190613739565b610c9d565b005b34801561038457600080fd5b5061038d610d33565b60405161039a91906135e9565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c59190613782565b610d4a565b005b3480156103d857600080fd5b506103e1610d5a565b6040516103ee91906135e9565b60405180910390f35b34801561040357600080fd5b5061040c610d60565b005b34801561041a57600080fd5b5061043560048036038101906104309190613782565b610eb1565b005b34801561044357600080fd5b5061045e600480360381019061045991906137d5565b610ed1565b60405161046b91906138c0565b60405180910390f35b34801561048057600080fd5b5061049b600480360381019061049691906134e5565b6110e4565b005b3480156104a957600080fd5b506104b261116a565b6040516104bf91906135e9565b60405180910390f35b3480156104d457600080fd5b506104ef60048036038101906104ea9190613739565b611170565b005b3480156104fd57600080fd5b50610506611206565b604051610513919061348d565b60405180910390f35b34801561052857600080fd5b50610543600480360381019061053e91906134e5565b611294565b005b34801561055157600080fd5b5061056c600480360381019061056791906134e5565b61131a565b005b34801561057a57600080fd5b506105836113a0565b604051610590919061348d565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb91906134e5565b61142e565b6040516105cd9190613553565b60405180910390f35b3480156105e257600080fd5b506105fd60048036038101906105f891906137d5565b611444565b60405161060a91906135e9565b60405180910390f35b34801561061f57600080fd5b50610628611513565b005b34801561063657600080fd5b50610651600480360381019061064c9190613739565b61159b565b005b34801561065f57600080fd5b50610668611631565b6040516106759190613553565b60405180910390f35b34801561068a57600080fd5b5061069361165b565b6040516106a091906135e9565b60405180910390f35b3480156106b557600080fd5b506106be611661565b6040516106cb919061348d565b60405180910390f35b3480156106e057600080fd5b506106e96116f3565b6040516106f691906135e9565b60405180910390f35b610719600480360381019061071491906134e5565b6116f9565b005b34801561072757600080fd5b50610730611946565b60405161073d91906135e9565b60405180910390f35b34801561075257600080fd5b5061076d6004803603810190610768919061390e565b61194c565b005b34801561077b57600080fd5b50610784611ac3565b604051610791919061348d565b60405180910390f35b3480156107a657600080fd5b506107c160048036038101906107bc91906134e5565b611b51565b005b3480156107cf57600080fd5b506107ea60048036038101906107e591906139ef565b611bd7565b005b3480156107f857600080fd5b50610801611c53565b60405161080e91906135e9565b60405180910390f35b34801561082357600080fd5b5061083e600480360381019061083991906134e5565b611c59565b60405161084b919061348d565b60405180910390f35b34801561086057600080fd5b50610869611d03565b60405161087691906135e9565b60405180910390f35b34801561088b57600080fd5b506108a660048036038101906108a191906137d5565b611d09565b6040516108b391906135e9565b60405180910390f35b3480156108c857600080fd5b506108e360048036038101906108de91906134e5565b611d1b565b005b3480156108f157600080fd5b5061090c600480360381019061090791906134e5565b611da1565b005b34801561091a57600080fd5b5061093560048036038101906109309190613a72565b611e27565b60405161094291906133d9565b60405180910390f35b34801561095757600080fd5b50610972600480360381019061096d9190613ab2565b611ebb565b005b34801561098057600080fd5b5061099b600480360381019061099691906137d5565b611fef565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a785750610a77826120e6565b5b9050919050565b606060028054610a8e90613b21565b80601f0160208091040260200160405190810160405280929190818152602001828054610aba90613b21565b8015610b075780601f10610adc57610100808354040283529160200191610b07565b820191906000526020600020905b815481529060010190602001808311610aea57829003601f168201915b5050505050905090565b6000610b1c82612150565b610b52576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b988261142e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bff576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c1e61219e565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c505750610c4e81610c4961219e565b611e27565b155b15610c87576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c928383836121a6565b505050565b600d5481565b610ca561219e565b73ffffffffffffffffffffffffffffffffffffffff16610cc3611631565b73ffffffffffffffffffffffffffffffffffffffff1614610d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1090613b9e565b60405180910390fd5b80600b9080519060200190610d2f92919061323f565b5050565b6000610d3d612258565b6001546000540303905090565b610d55838383612261565b505050565b60115481565b610d6861219e565b73ffffffffffffffffffffffffffffffffffffffff16610d86611631565b73ffffffffffffffffffffffffffffffffffffffff1614610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd390613b9e565b60405180910390fd5b600260095403610e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1890613c0a565b60405180910390fd5b60026009819055506000610e33611631565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e5690613c5b565b60006040518083038185875af1925050503d8060008114610e93576040519150601f19603f3d011682016040523d82523d6000602084013e610e98565b606091505b5050905080610ea657600080fd5b506001600981905550565b610ecc83838360405180602001604052806000815250611bd7565b505050565b60606000610ede83611444565b905060008167ffffffffffffffff811115610efc57610efb61360e565b5b604051908082528060200260200182016040528015610f2a5781602001602082028036833780820191505090505b5090506000610f37612258565b90506000805b8482108015610f4d575060005483105b156110d7576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516110c357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461106057806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110c257838584815181106110a7576110a6613c70565b5b60200260200101818152505082806110be90613cce565b9350505b5b83806110ce90613cce565b94505050610f3d565b8395505050505050919050565b6110ec61219e565b73ffffffffffffffffffffffffffffffffffffffff1661110a611631565b73ffffffffffffffffffffffffffffffffffffffff1614611160576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115790613b9e565b60405180910390fd5b80600e8190555050565b60105481565b61117861219e565b73ffffffffffffffffffffffffffffffffffffffff16611196611631565b73ffffffffffffffffffffffffffffffffffffffff16146111ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e390613b9e565b60405180910390fd5b80600c908051906020019061120292919061323f565b5050565b600b805461121390613b21565b80601f016020809104026020016040519081016040528092919081815260200182805461123f90613b21565b801561128c5780601f106112615761010080835404028352916020019161128c565b820191906000526020600020905b81548152906001019060200180831161126f57829003601f168201915b505050505081565b61129c61219e565b73ffffffffffffffffffffffffffffffffffffffff166112ba611631565b73ffffffffffffffffffffffffffffffffffffffff1614611310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130790613b9e565b60405180910390fd5b8060118190555050565b61132261219e565b73ffffffffffffffffffffffffffffffffffffffff16611340611631565b73ffffffffffffffffffffffffffffffffffffffff1614611396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138d90613b9e565b60405180910390fd5b8060148190555050565b600a80546113ad90613b21565b80601f01602080910402602001604051908101604052809291908181526020018280546113d990613b21565b80156114265780601f106113fb57610100808354040283529160200191611426565b820191906000526020600020905b81548152906001019060200180831161140957829003601f168201915b505050505081565b600061143982612715565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114ab576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61151b61219e565b73ffffffffffffffffffffffffffffffffffffffff16611539611631565b73ffffffffffffffffffffffffffffffffffffffff161461158f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158690613b9e565b60405180910390fd5b61159960006129a4565b565b6115a361219e565b73ffffffffffffffffffffffffffffffffffffffff166115c1611631565b73ffffffffffffffffffffffffffffffffffffffff1614611617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160e90613b9e565b60405180910390fd5b80600a908051906020019061162d92919061323f565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b60606003805461167090613b21565b80601f016020809104026020016040519081016040528092919081815260200182805461169c90613b21565b80156116e95780601f106116be576101008083540402835291602001916116e9565b820191906000526020600020905b8154815290600101906020018083116116cc57829003601f168201915b5050505050905090565b600e5481565b8060008111801561170c57506012548111155b61174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290613d62565b60405180910390fd5b600f5481611757610d33565b6117619190613d82565b11156117a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179990613e24565b60405180910390fd5b8180600d546117b19190613e44565b3410156117f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ea90613eea565b60405180910390fd5b600e54600d81905550600160115461180b9190613d82565b83611814610d33565b61181e9190613d82565b10156118d8576000600d81905550601354831115801561184057506000600d54145b61187f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187690613f56565b60405180910390fd5b6014548361188c33611d09565b6118969190613d82565b11156118d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ce90613fe8565b60405180910390fd5b5b601054836118e533611d09565b6118ef9190613d82565b1115611930576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192790614054565b60405180910390fd5b61194161193b61219e565b84612a6a565b505050565b60145481565b61195461219e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119b8576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119c561219e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a7261219e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ab791906133d9565b60405180910390a35050565b600c8054611ad090613b21565b80601f0160208091040260200160405190810160405280929190818152602001828054611afc90613b21565b8015611b495780601f10611b1e57610100808354040283529160200191611b49565b820191906000526020600020905b815481529060010190602001808311611b2c57829003601f168201915b505050505081565b611b5961219e565b73ffffffffffffffffffffffffffffffffffffffff16611b77611631565b73ffffffffffffffffffffffffffffffffffffffff1614611bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc490613b9e565b60405180910390fd5b8060128190555050565b611be2848484612261565b611c018373ffffffffffffffffffffffffffffffffffffffff16612a88565b8015611c165750611c1484848484612aab565b155b15611c4d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60135481565b6060611c6482612150565b611ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9a906140e6565b60405180910390fd5b6000611cad612bfb565b90506000815111611ccd5760405180602001604052806000815250611cfb565b80611cd784612c8d565b600b604051602001611ceb939291906141d6565b6040516020818303038152906040525b915050919050565b600f5481565b6000611d1482612ded565b9050919050565b611d2361219e565b73ffffffffffffffffffffffffffffffffffffffff16611d41611631565b73ffffffffffffffffffffffffffffffffffffffff1614611d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8e90613b9e565b60405180910390fd5b8060108190555050565b611da961219e565b73ffffffffffffffffffffffffffffffffffffffff16611dc7611631565b73ffffffffffffffffffffffffffffffffffffffff1614611e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1490613b9e565b60405180910390fd5b8060138190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611ece57506012548111155b611f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0490613d62565b60405180910390fd5b600f5481611f19610d33565b611f239190613d82565b1115611f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5b90613e24565b60405180910390fd5b611f6c61219e565b73ffffffffffffffffffffffffffffffffffffffff16611f8a611631565b73ffffffffffffffffffffffffffffffffffffffff1614611fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd790613b9e565b60405180910390fd5b611fea8284612a6a565b505050565b611ff761219e565b73ffffffffffffffffffffffffffffffffffffffff16612015611631565b73ffffffffffffffffffffffffffffffffffffffff161461206b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206290613b9e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036120da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d190614279565b60405180910390fd5b6120e3816129a4565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161215b612258565b1115801561216a575060005482105b8015612197575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061226c82612715565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122d7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166122f861219e565b73ffffffffffffffffffffffffffffffffffffffff16148061232757506123268561232161219e565b611e27565b5b8061236c575061233561219e565b73ffffffffffffffffffffffffffffffffffffffff1661235484610b11565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806123a5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361240b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124188585856001612e57565b612424600084876121a6565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036126a35760005482146126a257878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461270e8585856001612e5d565b5050505050565b61271d6132c5565b60008290508061272b612258565b1115801561273a575060005481105b1561296d576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161296b57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461284f57809250505061299f565b5b60011561296a57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461296557809250505061299f565b612850565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a84828260405180602001604052806000815250612e63565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ad161219e565b8786866040518563ffffffff1660e01b8152600401612af394939291906142ee565b6020604051808303816000875af1925050508015612b2f57506040513d601f19601f82011682018060405250810190612b2c919061434f565b60015b612ba8573d8060008114612b5f576040519150601f19603f3d011682016040523d82523d6000602084013e612b64565b606091505b506000815103612ba0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612c0a90613b21565b80601f0160208091040260200160405190810160405280929190818152602001828054612c3690613b21565b8015612c835780601f10612c5857610100808354040283529160200191612c83565b820191906000526020600020905b815481529060010190602001808311612c6657829003601f168201915b5050505050905090565b606060008203612cd4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612de8565b600082905060005b60008214612d06578080612cef90613cce565b915050600a82612cff91906143ab565b9150612cdc565b60008167ffffffffffffffff811115612d2257612d2161360e565b5b6040519080825280601f01601f191660200182016040528015612d545781602001600182028036833780820191505090505b5090505b60008514612de157600182612d6d91906143dc565b9150600a85612d7c9190614410565b6030612d889190613d82565b60f81b818381518110612d9e57612d9d613c70565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612dda91906143ab565b9450612d58565b8093505050505b919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b612e708383836001612e75565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612ee1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612f1b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612f286000868387612e57565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156130f257506130f18773ffffffffffffffffffffffffffffffffffffffff16612a88565b5b156131b7575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131676000888480600101955088612aab565b61319d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036130f85782600054146131b257600080fd5b613222565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036131b8575b8160008190555050506132386000868387612e5d565b5050505050565b82805461324b90613b21565b90600052602060002090601f01602090048101928261326d57600085556132b4565b82601f1061328657805160ff19168380011785556132b4565b828001600101855582156132b4579182015b828111156132b3578251825591602001919060010190613298565b5b5090506132c19190613308565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613321576000816000905550600101613309565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61336e81613339565b811461337957600080fd5b50565b60008135905061338b81613365565b92915050565b6000602082840312156133a7576133a661332f565b5b60006133b58482850161337c565b91505092915050565b60008115159050919050565b6133d3816133be565b82525050565b60006020820190506133ee60008301846133ca565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561342e578082015181840152602081019050613413565b8381111561343d576000848401525b50505050565b6000601f19601f8301169050919050565b600061345f826133f4565b61346981856133ff565b9350613479818560208601613410565b61348281613443565b840191505092915050565b600060208201905081810360008301526134a78184613454565b905092915050565b6000819050919050565b6134c2816134af565b81146134cd57600080fd5b50565b6000813590506134df816134b9565b92915050565b6000602082840312156134fb576134fa61332f565b5b6000613509848285016134d0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061353d82613512565b9050919050565b61354d81613532565b82525050565b60006020820190506135686000830184613544565b92915050565b61357781613532565b811461358257600080fd5b50565b6000813590506135948161356e565b92915050565b600080604083850312156135b1576135b061332f565b5b60006135bf85828601613585565b92505060206135d0858286016134d0565b9150509250929050565b6135e3816134af565b82525050565b60006020820190506135fe60008301846135da565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61364682613443565b810181811067ffffffffffffffff821117156136655761366461360e565b5b80604052505050565b6000613678613325565b9050613684828261363d565b919050565b600067ffffffffffffffff8211156136a4576136a361360e565b5b6136ad82613443565b9050602081019050919050565b82818337600083830152505050565b60006136dc6136d784613689565b61366e565b9050828152602081018484840111156136f8576136f7613609565b5b6137038482856136ba565b509392505050565b600082601f8301126137205761371f613604565b5b81356137308482602086016136c9565b91505092915050565b60006020828403121561374f5761374e61332f565b5b600082013567ffffffffffffffff81111561376d5761376c613334565b5b6137798482850161370b565b91505092915050565b60008060006060848603121561379b5761379a61332f565b5b60006137a986828701613585565b93505060206137ba86828701613585565b92505060406137cb868287016134d0565b9150509250925092565b6000602082840312156137eb576137ea61332f565b5b60006137f984828501613585565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613837816134af565b82525050565b6000613849838361382e565b60208301905092915050565b6000602082019050919050565b600061386d82613802565b613877818561380d565b93506138828361381e565b8060005b838110156138b357815161389a888261383d565b97506138a583613855565b925050600181019050613886565b5085935050505092915050565b600060208201905081810360008301526138da8184613862565b905092915050565b6138eb816133be565b81146138f657600080fd5b50565b600081359050613908816138e2565b92915050565b600080604083850312156139255761392461332f565b5b600061393385828601613585565b9250506020613944858286016138f9565b9150509250929050565b600067ffffffffffffffff8211156139695761396861360e565b5b61397282613443565b9050602081019050919050565b600061399261398d8461394e565b61366e565b9050828152602081018484840111156139ae576139ad613609565b5b6139b98482856136ba565b509392505050565b600082601f8301126139d6576139d5613604565b5b81356139e684826020860161397f565b91505092915050565b60008060008060808587031215613a0957613a0861332f565b5b6000613a1787828801613585565b9450506020613a2887828801613585565b9350506040613a39878288016134d0565b925050606085013567ffffffffffffffff811115613a5a57613a59613334565b5b613a66878288016139c1565b91505092959194509250565b60008060408385031215613a8957613a8861332f565b5b6000613a9785828601613585565b9250506020613aa885828601613585565b9150509250929050565b60008060408385031215613ac957613ac861332f565b5b6000613ad7858286016134d0565b9250506020613ae885828601613585565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b3957607f821691505b602082108103613b4c57613b4b613af2565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b886020836133ff565b9150613b9382613b52565b602082019050919050565b60006020820190508181036000830152613bb781613b7b565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613bf4601f836133ff565b9150613bff82613bbe565b602082019050919050565b60006020820190508181036000830152613c2381613be7565b9050919050565b600081905092915050565b50565b6000613c45600083613c2a565b9150613c5082613c35565b600082019050919050565b6000613c6682613c38565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613cd9826134af565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613d0b57613d0a613c9f565b5b600182019050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613d4c6014836133ff565b9150613d5782613d16565b602082019050919050565b60006020820190508181036000830152613d7b81613d3f565b9050919050565b6000613d8d826134af565b9150613d98836134af565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dcd57613dcc613c9f565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613e0e6014836133ff565b9150613e1982613dd8565b602082019050919050565b60006020820190508181036000830152613e3d81613e01565b9050919050565b6000613e4f826134af565b9150613e5a836134af565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e9357613e92613c9f565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613ed46013836133ff565b9150613edf82613e9e565b602082019050919050565b60006020820190508181036000830152613f0381613ec7565b9050919050565b7f546f6f206d616e792046726565206d696e747321000000000000000000000000600082015250565b6000613f406014836133ff565b9150613f4b82613f0a565b602082019050919050565b60006020820190508181036000830152613f6f81613f33565b9050919050565b7f46726565206d696e74206c696d697420686173206265656e207265616368656460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b6000613fd26021836133ff565b9150613fdd82613f76565b604082019050919050565b6000602082019050818103600083015261400181613fc5565b9050919050565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b600061403e6014836133ff565b915061404982614008565b602082019050919050565b6000602082019050818103600083015261406d81614031565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006140d0602f836133ff565b91506140db82614074565b604082019050919050565b600060208201905081810360008301526140ff816140c3565b9050919050565b600081905092915050565b600061411c826133f4565b6141268185614106565b9350614136818560208601613410565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461416481613b21565b61416e8186614106565b94506001821660008114614189576001811461419a576141cd565b60ff198316865281860193506141cd565b6141a385614142565b60005b838110156141c5578154818901526001820191506020810190506141a6565b838801955050505b50505092915050565b60006141e28286614111565b91506141ee8285614111565b91506141fa8284614157565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006142636026836133ff565b915061426e82614207565b604082019050919050565b6000602082019050818103600083015261429281614256565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006142c082614299565b6142ca81856142a4565b93506142da818560208601613410565b6142e381613443565b840191505092915050565b60006080820190506143036000830187613544565b6143106020830186613544565b61431d60408301856135da565b818103606083015261432f81846142b5565b905095945050505050565b60008151905061434981613365565b92915050565b6000602082840312156143655761436461332f565b5b60006143738482850161433a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143b6826134af565b91506143c1836134af565b9250826143d1576143d061437c565b5b828204905092915050565b60006143e7826134af565b91506143f2836134af565b92508282101561440557614404613c9f565b5b828203905092915050565b600061441b826134af565b9150614426836134af565b9250826144365761443561437c565b5b82820690509291505056fea2646970667358221220e48a8937428c2deaffc42ae561b2d8a5f83c868768cec77f030aad87a31f4a5464736f6c634300080e0033

Deployed Bytecode Sourcemap

48087:4405:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30239:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33352:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34855:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34418:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48348:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52123:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29488:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35720:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48487:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52229:150;;;;;;;;;;;;;:::i;:::-;;35961:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49786:831;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51218:75;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48449:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51879:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48270:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51515:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51615:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48183:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33160:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30608:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7997:103;;;;;;;;;;;;;:::i;:::-;;52017:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7346:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48523:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33521:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48372:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49074:543;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48600:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35131:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48308:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51743:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36217:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48566:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50839:373;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48412:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50724:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51403:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51299:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35489:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49625:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8255:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30239:305;30341:4;30393:25;30378:40;;;:11;:40;;;;:105;;;;30450:33;30435:48;;;:11;:48;;;;30378:105;:158;;;;30500:36;30524:11;30500:23;:36::i;:::-;30378:158;30358:178;;30239:305;;;:::o;33352:100::-;33406:13;33439:5;33432:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33352:100;:::o;34855:204::-;34923:7;34948:16;34956:7;34948;:16::i;:::-;34943:64;;34973:34;;;;;;;;;;;;;;34943:64;35027:15;:24;35043:7;35027:24;;;;;;;;;;;;;;;;;;;;;35020:31;;34855:204;;;:::o;34418:371::-;34491:13;34507:24;34523:7;34507:15;:24::i;:::-;34491:40;;34552:5;34546:11;;:2;:11;;;34542:48;;34566:24;;;;;;;;;;;;;;34542:48;34623:5;34607:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;34633:37;34650:5;34657:12;:10;:12::i;:::-;34633:16;:37::i;:::-;34632:38;34607:63;34603:138;;;34694:35;;;;;;;;;;;;;;34603:138;34753:28;34762:2;34766:7;34775:5;34753:8;:28::i;:::-;34480:309;34418:371;;:::o;48348:19::-;;;;:::o;52123:100::-;7577:12;:10;:12::i;:::-;7566:23;;:7;:5;:7::i;:::-;:23;;;7558:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52207:10:::1;52195:9;:22;;;;;;;;;;;;:::i;:::-;;52123:100:::0;:::o;29488:303::-;29532:7;29757:15;:13;:15::i;:::-;29742:12;;29726:13;;:28;:46;29719:53;;29488:303;:::o;35720:170::-;35854:28;35864:4;35870:2;35874:7;35854:9;:28::i;:::-;35720:170;;;:::o;48487:31::-;;;;:::o;52229:150::-;7577:12;:10;:12::i;:::-;7566:23;;:7;:5;:7::i;:::-;:23;;;7558:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2320:1:::1;2918:7;;:19:::0;2910:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2320:1;3051:7;:18;;;;52287:7:::2;52308;:5;:7::i;:::-;52300:21;;52329;52300:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52286:69;;;52370:2;52362:11;;;::::0;::::2;;52279:100;2276:1:::1;3230:7;:22;;;;52229:150::o:0;35961:185::-;36099:39;36116:4;36122:2;36126:7;36099:39;;;;;;;;;;;;:16;:39::i;:::-;35961:185;;;:::o;49786:831::-;49846:16;49871:23;49897:17;49907:6;49897:9;:17::i;:::-;49871:43;;49921:30;49968:15;49954:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49921:63;;49991:22;50016:15;:13;:15::i;:::-;49991:40;;50038:23;50072:26;50107:478;50132:15;50114;:33;:67;;;;;50168:13;;50151:14;:30;50114:67;50107:478;;;50192:31;50226:11;:27;50238:14;50226:27;;;;;;;;;;;50192:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50269:9;:16;;;50264:287;;50328:1;50302:28;;:9;:14;;;:28;;;50298:94;;50366:9;:14;;;50345:35;;50298:94;50430:6;50408:28;;:18;:28;;;50404:138;;50484:14;50451:13;50465:15;50451:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;50513:17;;;;;:::i;:::-;;;;50404:138;50264:287;50561:16;;;;;:::i;:::-;;;;50183:402;50107:478;;;50598:13;50591:20;;;;;;;49786:831;;;:::o;51218:75::-;7577:12;:10;:12::i;:::-;7566:23;;:7;:5;:7::i;:::-;:23;;;7558:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51282:5:::1;51274;:13;;;;51218:75:::0;:::o;48449:33::-;;;;:::o;51879:132::-;7577:12;:10;:12::i;:::-;7566:23;;:7;:5;:7::i;:::-;:23;;;7558:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51987:18:::1;51967:17;:38;;;;;;;;;;;;:::i;:::-;;51879:132:::0;:::o;48270:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51515:94::-;7577:12;:10;:12::i;:::-;7566:23;;:7;:5;:7::i;:::-;:23;;;7558:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51593:10:::1;51581:9;:22;;;;51515:94:::0;:::o;51615:122::-;7577:12;:10;:12::i;:::-;7566:23;;:7;:5;:7::i;:::-;:23;;;7558:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51714:17:::1;51695:16;:36;;;;51615:122:::0;:::o;48183:82::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33160:125::-;33224:7;33251:21;33264:7;33251:12;:21::i;:::-;:26;;;33244:33;;33160:125;;;:::o;30608:206::-;30672:7;30713:1;30696:19;;:5;:19;;;30692:60;;30724:28;;;;;;;;;;;;;;30692:60;30778:12;:19;30791:5;30778:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30770:36;;30763:43;;30608:206;;;:::o;7997:103::-;7577:12;:10;:12::i;:::-;7566:23;;:7;:5;:7::i;:::-;:23;;;7558:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8062:30:::1;8089:1;8062:18;:30::i;:::-;7997:103::o:0;52017:100::-;7577:12;:10;:12::i;:::-;7566:23;;:7;:5;:7::i;:::-;:23;;;7558:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52101:10:::1;52089:9;:22;;;;;;;;;;;;:::i;:::-;;52017:100:::0;:::o;7346:87::-;7392:7;7419:6;;;;;;;;;;;7412:13;;7346:87;:::o;48523:38::-;;;;:::o;33521:104::-;33577:13;33610:7;33603:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33521:104;:::o;48372:35::-;;;;:::o;49074:543::-;49139:11;48771:1;48757:11;:15;:52;;;;;48791:18;;48776:11;:33;;48757:52;48749:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;48880:9;;48865:11;48849:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;48841:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;49172:11:::1;49019;49012:4;;:18;;;;:::i;:::-;48999:9;:31;;48991:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;49199:5:::2;;49192:4;:12;;;;49256:1;49244:9;;:13;;;;:::i;:::-;49230:11;49214:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:43;49211:265;;;49275:1;49268:4;:8;;;;49308:10;;49293:11;:25;;:38;;;;;49330:1;49322:4;;:9;49293:38;49285:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;49415:16;;49400:11;49373:24;49386:10;49373:12;:24::i;:::-;:38;;;;:::i;:::-;:58;;49365:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;49211:265;49532:12;;49517:11;49490:24;49503:10;49490:12;:24::i;:::-;:38;;;;:::i;:::-;:54;;49482:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;49575:36;49585:12;:10;:12::i;:::-;49599:11;49575:9;:36::i;:::-;48921:1:::1;49074:543:::0;;:::o;48600:36::-;;;;:::o;35131:287::-;35242:12;:10;:12::i;:::-;35230:24;;:8;:24;;;35226:54;;35263:17;;;;;;;;;;;;;;35226:54;35338:8;35293:18;:32;35312:12;:10;:12::i;:::-;35293:32;;;;;;;;;;;;;;;:42;35326:8;35293:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;35391:8;35362:48;;35377:12;:10;:12::i;:::-;35362:48;;;35401:8;35362:48;;;;;;:::i;:::-;;;;;;;;35131:287;;:::o;48308:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51743:130::-;7577:12;:10;:12::i;:::-;7566:23;;:7;:5;:7::i;:::-;:23;;;7558:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51848:19:::1;51827:18;:40;;;;51743:130:::0;:::o;36217:369::-;36384:28;36394:4;36400:2;36404:7;36384:9;:28::i;:::-;36427:15;:2;:13;;;:15::i;:::-;:76;;;;;36447:56;36478:4;36484:2;36488:7;36497:5;36447:30;:56::i;:::-;36446:57;36427:76;36423:156;;;36527:40;;;;;;;;;;;;;;36423:156;36217:369;;;;:::o;48566:29::-;;;;:::o;50839:373::-;50913:13;50943:17;50951:8;50943:7;:17::i;:::-;50935:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;51021:28;51052:10;:8;:10::i;:::-;51021:41;;51107:1;51082:14;51076:28;:32;:130;;;;;;;;;;;;;;;;;51144:14;51160:19;:8;:17;:19::i;:::-;51181:9;51127:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51076:130;51069:137;;;50839:373;;;:::o;48412:32::-;;;;:::o;50724:107::-;50782:7;50805:20;50819:5;50805:13;:20::i;:::-;50798:27;;50724:107;;;:::o;51403:106::-;7577:12;:10;:12::i;:::-;7566:23;;:7;:5;:7::i;:::-;:23;;;7558:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51490:13:::1;51475:12;:28;;;;51403:106:::0;:::o;51299:98::-;7577:12;:10;:12::i;:::-;7566:23;;:7;:5;:7::i;:::-;:23;;;7558:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51380:11:::1;51367:10;:24;;;;51299:98:::0;:::o;35489:164::-;35586:4;35610:18;:25;35629:5;35610:25;;;;;;;;;;;;;;;:35;35636:8;35610:35;;;;;;;;;;;;;;;;;;;;;;;;;35603:42;;35489:164;;;;:::o;49625:155::-;49711:11;48771:1;48757:11;:15;:52;;;;;48791:18;;48776:11;:33;;48757:52;48749:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;48880:9;;48865:11;48849:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;48841:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7577:12:::1;:10;:12::i;:::-;7566:23;;:7;:5;:7::i;:::-;:23;;;7558:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49741:33:::2;49751:9;49762:11;49741:9;:33::i;:::-;49625:155:::0;;;:::o;8255:201::-;7577:12;:10;:12::i;:::-;7566:23;;:7;:5;:7::i;:::-;:23;;;7558:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8364:1:::1;8344:22;;:8;:22;;::::0;8336:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;8420:28;8439:8;8420:18;:28::i;:::-;8255:201:::0;:::o;20130:157::-;20215:4;20254:25;20239:40;;;:11;:40;;;;20232:47;;20130:157;;;:::o;36841:174::-;36898:4;36941:7;36922:15;:13;:15::i;:::-;:26;;:53;;;;;36962:13;;36952:7;:23;36922:53;:85;;;;;36980:11;:20;36992:7;36980:20;;;;;;;;;;;:27;;;;;;;;;;;;36979:28;36922:85;36915:92;;36841:174;;;:::o;6070:98::-;6123:7;6150:10;6143:17;;6070:98;:::o;44998:196::-;45140:2;45113:15;:24;45129:7;45113:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45178:7;45174:2;45158:28;;45167:5;45158:28;;;;;;;;;;;;44998:196;;;:::o;50623:95::-;50688:7;50711:1;50704:8;;50623:95;:::o;39941:2130::-;40056:35;40094:21;40107:7;40094:12;:21::i;:::-;40056:59;;40154:4;40132:26;;:13;:18;;;:26;;;40128:67;;40167:28;;;;;;;;;;;;;;40128:67;40208:22;40250:4;40234:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;40271:36;40288:4;40294:12;:10;:12::i;:::-;40271:16;:36::i;:::-;40234:73;:126;;;;40348:12;:10;:12::i;:::-;40324:36;;:20;40336:7;40324:11;:20::i;:::-;:36;;;40234:126;40208:153;;40379:17;40374:66;;40405:35;;;;;;;;;;;;;;40374:66;40469:1;40455:16;;:2;:16;;;40451:52;;40480:23;;;;;;;;;;;;;;40451:52;40516:43;40538:4;40544:2;40548:7;40557:1;40516:21;:43::i;:::-;40624:35;40641:1;40645:7;40654:4;40624:8;:35::i;:::-;40985:1;40955:12;:18;40968:4;40955:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41029:1;41001:12;:16;41014:2;41001:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41047:31;41081:11;:20;41093:7;41081:20;;;;;;;;;;;41047:54;;41132:2;41116:8;:13;;;:18;;;;;;;;;;;;;;;;;;41182:15;41149:8;:23;;;:49;;;;;;;;;;;;;;;;;;41450:19;41482:1;41472:7;:11;41450:33;;41498:31;41532:11;:24;41544:11;41532:24;;;;;;;;;;;41498:58;;41600:1;41575:27;;:8;:13;;;;;;;;;;;;:27;;;41571:384;;41785:13;;41770:11;:28;41766:174;;41839:4;41823:8;:13;;;:20;;;;;;;;;;;;;;;;;;41892:13;:28;;;41866:8;:23;;;:54;;;;;;;;;;;;;;;;;;41766:174;41571:384;40930:1036;;;42002:7;41998:2;41983:27;;41992:4;41983:27;;;;;;;;;;;;42021:42;42042:4;42048:2;42052:7;42061:1;42021:20;:42::i;:::-;40045:2026;;39941:2130;;;:::o;31989:1109::-;32051:21;;:::i;:::-;32085:12;32100:7;32085:22;;32168:4;32149:15;:13;:15::i;:::-;:23;;:47;;;;;32183:13;;32176:4;:20;32149:47;32145:886;;;32217:31;32251:11;:17;32263:4;32251:17;;;;;;;;;;;32217:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32292:9;:16;;;32287:729;;32363:1;32337:28;;:9;:14;;;:28;;;32333:101;;32401:9;32394:16;;;;;;32333:101;32736:261;32743:4;32736:261;;;32776:6;;;;;;;;32821:11;:17;32833:4;32821:17;;;;;;;;;;;32809:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32895:1;32869:28;;:9;:14;;;:28;;;32865:109;;32937:9;32930:16;;;;;;32865:109;32736:261;;;32287:729;32198:833;32145:886;33059:31;;;;;;;;;;;;;;31989:1109;;;;:::o;8616:191::-;8690:16;8709:6;;;;;;;;;;;8690:25;;8735:8;8726:6;;:17;;;;;;;;;;;;;;;;;;8790:8;8759:40;;8780:8;8759:40;;;;;;;;;;;;8679:128;8616:191;:::o;37023:104::-;37092:27;37102:2;37106:8;37092:27;;;;;;;;;;;;:9;:27::i;:::-;37023:104;;:::o;10047:326::-;10107:4;10364:1;10342:7;:19;;;:23;10335:30;;10047:326;;;:::o;45686:667::-;45849:4;45886:2;45870:36;;;45907:12;:10;:12::i;:::-;45921:4;45927:7;45936:5;45870:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45866:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46121:1;46104:6;:13;:18;46100:235;;46150:40;;;;;;;;;;;;;;46100:235;46293:6;46287:13;46278:6;46274:2;46270:15;46263:38;45866:480;45999:45;;;45989:55;;;:6;:55;;;;45982:62;;;45686:667;;;;;;:::o;52385:104::-;52445:13;52474:9;52467:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52385:104;:::o;3632:723::-;3688:13;3918:1;3909:5;:10;3905:53;;3936:10;;;;;;;;;;;;;;;;;;;;;3905:53;3968:12;3983:5;3968:20;;3999:14;4024:78;4039:1;4031:4;:9;4024:78;;4057:8;;;;;:::i;:::-;;;;4088:2;4080:10;;;;;:::i;:::-;;;4024:78;;;4112:19;4144:6;4134:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4112:39;;4162:154;4178:1;4169:5;:10;4162:154;;4206:1;4196:11;;;;;:::i;:::-;;;4273:2;4265:5;:10;;;;:::i;:::-;4252:2;:24;;;;:::i;:::-;4239:39;;4222:6;4229;4222:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;4302:2;4293:11;;;;;:::i;:::-;;;4162:154;;;4340:6;4326:21;;;;;3632:723;;;;:::o;30896:137::-;30957:7;30992:12;:19;31005:5;30992:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;30984:41;;30977:48;;30896:137;;;:::o;47001:159::-;;;;;:::o;47819:158::-;;;;;:::o;37490:163::-;37613:32;37619:2;37623:8;37633:5;37640:4;37613:5;:32::i;:::-;37490:163;;;:::o;37912:1775::-;38051:20;38074:13;;38051:36;;38116:1;38102:16;;:2;:16;;;38098:48;;38127:19;;;;;;;;;;;;;;38098:48;38173:1;38161:8;:13;38157:44;;38183:18;;;;;;;;;;;;;;38157:44;38214:61;38244:1;38248:2;38252:12;38266:8;38214:21;:61::i;:::-;38587:8;38552:12;:16;38565:2;38552:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38651:8;38611:12;:16;38624:2;38611:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38710:2;38677:11;:25;38689:12;38677:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38777:15;38727:11;:25;38739:12;38727:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38810:20;38833:12;38810:35;;38860:11;38889:8;38874:12;:23;38860:37;;38918:4;:23;;;;;38926:15;:2;:13;;;:15::i;:::-;38918:23;38914:641;;;38962:314;39018:12;39014:2;38993:38;;39010:1;38993:38;;;;;;;;;;;;39059:69;39098:1;39102:2;39106:14;;;;;;39122:5;39059:30;:69::i;:::-;39054:174;;39164:40;;;;;;;;;;;;;;39054:174;39271:3;39255:12;:19;38962:314;;39357:12;39340:13;;:29;39336:43;;39371:8;;;39336:43;38914:641;;;39420:120;39476:14;;;;;;39472:2;39451:40;;39468:1;39451:40;;;;;;;;;;;;39535:3;39519:12;:19;39420:120;;38914:641;39585:12;39569:13;:28;;;;38527:1082;;39619:60;39648:1;39652:2;39656:12;39670:8;39619:20;:60::i;:::-;38040:1647;37912:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:619::-;7988:6;7996;8004;8053:2;8041:9;8032:7;8028:23;8024:32;8021:119;;;8059:79;;:::i;:::-;8021:119;8179:1;8204:53;8249:7;8240:6;8229:9;8225:22;8204:53;:::i;:::-;8194:63;;8150:117;8306:2;8332:53;8377:7;8368:6;8357:9;8353:22;8332:53;:::i;:::-;8322:63;;8277:118;8434:2;8460:53;8505:7;8496:6;8485:9;8481:22;8460:53;:::i;:::-;8450:63;;8405:118;7911:619;;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:114::-;8938:6;8972:5;8966:12;8956:22;;8871:114;;;:::o;8991:184::-;9090:11;9124:6;9119:3;9112:19;9164:4;9159:3;9155:14;9140:29;;8991:184;;;;:::o;9181:132::-;9248:4;9271:3;9263:11;;9301:4;9296:3;9292:14;9284:22;;9181:132;;;:::o;9319:108::-;9396:24;9414:5;9396:24;:::i;:::-;9391:3;9384:37;9319:108;;:::o;9433:179::-;9502:10;9523:46;9565:3;9557:6;9523:46;:::i;:::-;9601:4;9596:3;9592:14;9578:28;;9433:179;;;;:::o;9618:113::-;9688:4;9720;9715:3;9711:14;9703:22;;9618:113;;;:::o;9767:732::-;9886:3;9915:54;9963:5;9915:54;:::i;:::-;9985:86;10064:6;10059:3;9985:86;:::i;:::-;9978:93;;10095:56;10145:5;10095:56;:::i;:::-;10174:7;10205:1;10190:284;10215:6;10212:1;10209:13;10190:284;;;10291:6;10285:13;10318:63;10377:3;10362:13;10318:63;:::i;:::-;10311:70;;10404:60;10457:6;10404:60;:::i;:::-;10394:70;;10250:224;10237:1;10234;10230:9;10225:14;;10190:284;;;10194:14;10490:3;10483:10;;9891:608;;;9767:732;;;;:::o;10505:373::-;10648:4;10686:2;10675:9;10671:18;10663:26;;10735:9;10729:4;10725:20;10721:1;10710:9;10706:17;10699:47;10763:108;10866:4;10857:6;10763:108;:::i;:::-;10755:116;;10505:373;;;;:::o;10884:116::-;10954:21;10969:5;10954:21;:::i;:::-;10947:5;10944:32;10934:60;;10990:1;10987;10980:12;10934:60;10884:116;:::o;11006:133::-;11049:5;11087:6;11074:20;11065:29;;11103:30;11127:5;11103:30;:::i;:::-;11006:133;;;;:::o;11145:468::-;11210:6;11218;11267:2;11255:9;11246:7;11242:23;11238:32;11235:119;;;11273:79;;:::i;:::-;11235:119;11393:1;11418:53;11463:7;11454:6;11443:9;11439:22;11418:53;:::i;:::-;11408:63;;11364:117;11520:2;11546:50;11588:7;11579:6;11568:9;11564:22;11546:50;:::i;:::-;11536:60;;11491:115;11145:468;;;;;:::o;11619:307::-;11680:4;11770:18;11762:6;11759:30;11756:56;;;11792:18;;:::i;:::-;11756:56;11830:29;11852:6;11830:29;:::i;:::-;11822:37;;11914:4;11908;11904:15;11896:23;;11619:307;;;:::o;11932:410::-;12009:5;12034:65;12050:48;12091:6;12050:48;:::i;:::-;12034:65;:::i;:::-;12025:74;;12122:6;12115:5;12108:21;12160:4;12153:5;12149:16;12198:3;12189:6;12184:3;12180:16;12177:25;12174:112;;;12205:79;;:::i;:::-;12174:112;12295:41;12329:6;12324:3;12319;12295:41;:::i;:::-;12015:327;11932:410;;;;;:::o;12361:338::-;12416:5;12465:3;12458:4;12450:6;12446:17;12442:27;12432:122;;12473:79;;:::i;:::-;12432:122;12590:6;12577:20;12615:78;12689:3;12681:6;12674:4;12666:6;12662:17;12615:78;:::i;:::-;12606:87;;12422:277;12361:338;;;;:::o;12705:943::-;12800:6;12808;12816;12824;12873:3;12861:9;12852:7;12848:23;12844:33;12841:120;;;12880:79;;:::i;:::-;12841:120;13000:1;13025:53;13070:7;13061:6;13050:9;13046:22;13025:53;:::i;:::-;13015:63;;12971:117;13127:2;13153:53;13198:7;13189:6;13178:9;13174:22;13153:53;:::i;:::-;13143:63;;13098:118;13255:2;13281:53;13326:7;13317:6;13306:9;13302:22;13281:53;:::i;:::-;13271:63;;13226:118;13411:2;13400:9;13396:18;13383:32;13442:18;13434:6;13431:30;13428:117;;;13464:79;;:::i;:::-;13428:117;13569:62;13623:7;13614:6;13603:9;13599:22;13569:62;:::i;:::-;13559:72;;13354:287;12705:943;;;;;;;:::o;13654:474::-;13722:6;13730;13779:2;13767:9;13758:7;13754:23;13750:32;13747:119;;;13785:79;;:::i;:::-;13747:119;13905:1;13930:53;13975:7;13966:6;13955:9;13951:22;13930:53;:::i;:::-;13920:63;;13876:117;14032:2;14058:53;14103:7;14094:6;14083:9;14079:22;14058:53;:::i;:::-;14048:63;;14003:118;13654:474;;;;;:::o;14134:::-;14202:6;14210;14259:2;14247:9;14238:7;14234:23;14230:32;14227:119;;;14265:79;;:::i;:::-;14227:119;14385:1;14410:53;14455:7;14446:6;14435:9;14431:22;14410:53;:::i;:::-;14400:63;;14356:117;14512:2;14538:53;14583:7;14574:6;14563:9;14559:22;14538:53;:::i;:::-;14528:63;;14483:118;14134:474;;;;;:::o;14614:180::-;14662:77;14659:1;14652:88;14759:4;14756:1;14749:15;14783:4;14780:1;14773:15;14800:320;14844:6;14881:1;14875:4;14871:12;14861:22;;14928:1;14922:4;14918:12;14949:18;14939:81;;15005:4;14997:6;14993:17;14983:27;;14939:81;15067:2;15059:6;15056:14;15036:18;15033:38;15030:84;;15086:18;;:::i;:::-;15030:84;14851:269;14800:320;;;:::o;15126:182::-;15266:34;15262:1;15254:6;15250:14;15243:58;15126:182;:::o;15314:366::-;15456:3;15477:67;15541:2;15536:3;15477:67;:::i;:::-;15470:74;;15553:93;15642:3;15553:93;:::i;:::-;15671:2;15666:3;15662:12;15655:19;;15314:366;;;:::o;15686:419::-;15852:4;15890:2;15879:9;15875:18;15867:26;;15939:9;15933:4;15929:20;15925:1;15914:9;15910:17;15903:47;15967:131;16093:4;15967:131;:::i;:::-;15959:139;;15686:419;;;:::o;16111:181::-;16251:33;16247:1;16239:6;16235:14;16228:57;16111:181;:::o;16298:366::-;16440:3;16461:67;16525:2;16520:3;16461:67;:::i;:::-;16454:74;;16537:93;16626:3;16537:93;:::i;:::-;16655:2;16650:3;16646:12;16639:19;;16298:366;;;:::o;16670:419::-;16836:4;16874:2;16863:9;16859:18;16851:26;;16923:9;16917:4;16913:20;16909:1;16898:9;16894:17;16887:47;16951:131;17077:4;16951:131;:::i;:::-;16943:139;;16670:419;;;:::o;17095:147::-;17196:11;17233:3;17218:18;;17095:147;;;;:::o;17248:114::-;;:::o;17368:398::-;17527:3;17548:83;17629:1;17624:3;17548:83;:::i;:::-;17541:90;;17640:93;17729:3;17640:93;:::i;:::-;17758:1;17753:3;17749:11;17742:18;;17368:398;;;:::o;17772:379::-;17956:3;17978:147;18121:3;17978:147;:::i;:::-;17971:154;;18142:3;18135:10;;17772:379;;;:::o;18157:180::-;18205:77;18202:1;18195:88;18302:4;18299:1;18292:15;18326:4;18323:1;18316:15;18343:180;18391:77;18388:1;18381:88;18488:4;18485:1;18478:15;18512:4;18509:1;18502:15;18529:233;18568:3;18591:24;18609:5;18591:24;:::i;:::-;18582:33;;18637:66;18630:5;18627:77;18624:103;;18707:18;;:::i;:::-;18624:103;18754:1;18747:5;18743:13;18736:20;;18529:233;;;:::o;18768:170::-;18908:22;18904:1;18896:6;18892:14;18885:46;18768:170;:::o;18944:366::-;19086:3;19107:67;19171:2;19166:3;19107:67;:::i;:::-;19100:74;;19183:93;19272:3;19183:93;:::i;:::-;19301:2;19296:3;19292:12;19285:19;;18944:366;;;:::o;19316:419::-;19482:4;19520:2;19509:9;19505:18;19497:26;;19569:9;19563:4;19559:20;19555:1;19544:9;19540:17;19533:47;19597:131;19723:4;19597:131;:::i;:::-;19589:139;;19316:419;;;:::o;19741:305::-;19781:3;19800:20;19818:1;19800:20;:::i;:::-;19795:25;;19834:20;19852:1;19834:20;:::i;:::-;19829:25;;19988:1;19920:66;19916:74;19913:1;19910:81;19907:107;;;19994:18;;:::i;:::-;19907:107;20038:1;20035;20031:9;20024:16;;19741:305;;;;:::o;20052:170::-;20192:22;20188:1;20180:6;20176:14;20169:46;20052:170;:::o;20228:366::-;20370:3;20391:67;20455:2;20450:3;20391:67;:::i;:::-;20384:74;;20467:93;20556:3;20467:93;:::i;:::-;20585:2;20580:3;20576:12;20569:19;;20228:366;;;:::o;20600:419::-;20766:4;20804:2;20793:9;20789:18;20781:26;;20853:9;20847:4;20843:20;20839:1;20828:9;20824:17;20817:47;20881:131;21007:4;20881:131;:::i;:::-;20873:139;;20600:419;;;:::o;21025:348::-;21065:7;21088:20;21106:1;21088:20;:::i;:::-;21083:25;;21122:20;21140:1;21122:20;:::i;:::-;21117:25;;21310:1;21242:66;21238:74;21235:1;21232:81;21227:1;21220:9;21213:17;21209:105;21206:131;;;21317:18;;:::i;:::-;21206:131;21365:1;21362;21358:9;21347:20;;21025:348;;;;:::o;21379:169::-;21519:21;21515:1;21507:6;21503:14;21496:45;21379:169;:::o;21554:366::-;21696:3;21717:67;21781:2;21776:3;21717:67;:::i;:::-;21710:74;;21793:93;21882:3;21793:93;:::i;:::-;21911:2;21906:3;21902:12;21895:19;;21554:366;;;:::o;21926:419::-;22092:4;22130:2;22119:9;22115:18;22107:26;;22179:9;22173:4;22169:20;22165:1;22154:9;22150:17;22143:47;22207:131;22333:4;22207:131;:::i;:::-;22199:139;;21926:419;;;:::o;22351:170::-;22491:22;22487:1;22479:6;22475:14;22468:46;22351:170;:::o;22527:366::-;22669:3;22690:67;22754:2;22749:3;22690:67;:::i;:::-;22683:74;;22766:93;22855:3;22766:93;:::i;:::-;22884:2;22879:3;22875:12;22868:19;;22527:366;;;:::o;22899:419::-;23065:4;23103:2;23092:9;23088:18;23080:26;;23152:9;23146:4;23142:20;23138:1;23127:9;23123:17;23116:47;23180:131;23306:4;23180:131;:::i;:::-;23172:139;;22899:419;;;:::o;23324:220::-;23464:34;23460:1;23452:6;23448:14;23441:58;23533:3;23528:2;23520:6;23516:15;23509:28;23324:220;:::o;23550:366::-;23692:3;23713:67;23777:2;23772:3;23713:67;:::i;:::-;23706:74;;23789:93;23878:3;23789:93;:::i;:::-;23907:2;23902:3;23898:12;23891:19;;23550:366;;;:::o;23922:419::-;24088:4;24126:2;24115:9;24111:18;24103:26;;24175:9;24169:4;24165:20;24161:1;24150:9;24146:17;24139:47;24203:131;24329:4;24203:131;:::i;:::-;24195:139;;23922:419;;;:::o;24347:170::-;24487:22;24483:1;24475:6;24471:14;24464:46;24347:170;:::o;24523:366::-;24665:3;24686:67;24750:2;24745:3;24686:67;:::i;:::-;24679:74;;24762:93;24851:3;24762:93;:::i;:::-;24880:2;24875:3;24871:12;24864:19;;24523:366;;;:::o;24895:419::-;25061:4;25099:2;25088:9;25084:18;25076:26;;25148:9;25142:4;25138:20;25134:1;25123:9;25119:17;25112:47;25176:131;25302:4;25176:131;:::i;:::-;25168:139;;24895:419;;;:::o;25320:234::-;25460:34;25456:1;25448:6;25444:14;25437:58;25529:17;25524:2;25516:6;25512:15;25505:42;25320:234;:::o;25560:366::-;25702:3;25723:67;25787:2;25782:3;25723:67;:::i;:::-;25716:74;;25799:93;25888:3;25799:93;:::i;:::-;25917:2;25912:3;25908:12;25901:19;;25560:366;;;:::o;25932:419::-;26098:4;26136:2;26125:9;26121:18;26113:26;;26185:9;26179:4;26175:20;26171:1;26160:9;26156:17;26149:47;26213:131;26339:4;26213:131;:::i;:::-;26205:139;;25932:419;;;:::o;26357:148::-;26459:11;26496:3;26481:18;;26357:148;;;;:::o;26511:377::-;26617:3;26645:39;26678:5;26645:39;:::i;:::-;26700:89;26782:6;26777:3;26700:89;:::i;:::-;26693:96;;26798:52;26843:6;26838:3;26831:4;26824:5;26820:16;26798:52;:::i;:::-;26875:6;26870:3;26866:16;26859:23;;26621:267;26511:377;;;;:::o;26894:141::-;26943:4;26966:3;26958:11;;26989:3;26986:1;26979:14;27023:4;27020:1;27010:18;27002:26;;26894:141;;;:::o;27065:845::-;27168:3;27205:5;27199:12;27234:36;27260:9;27234:36;:::i;:::-;27286:89;27368:6;27363:3;27286:89;:::i;:::-;27279:96;;27406:1;27395:9;27391:17;27422:1;27417:137;;;;27568:1;27563:341;;;;27384:520;;27417:137;27501:4;27497:9;27486;27482:25;27477:3;27470:38;27537:6;27532:3;27528:16;27521:23;;27417:137;;27563:341;27630:38;27662:5;27630:38;:::i;:::-;27690:1;27704:154;27718:6;27715:1;27712:13;27704:154;;;27792:7;27786:14;27782:1;27777:3;27773:11;27766:35;27842:1;27833:7;27829:15;27818:26;;27740:4;27737:1;27733:12;27728:17;;27704:154;;;27887:6;27882:3;27878:16;27871:23;;27570:334;;27384:520;;27172:738;;27065:845;;;;:::o;27916:589::-;28141:3;28163:95;28254:3;28245:6;28163:95;:::i;:::-;28156:102;;28275:95;28366:3;28357:6;28275:95;:::i;:::-;28268:102;;28387:92;28475:3;28466:6;28387:92;:::i;:::-;28380:99;;28496:3;28489:10;;27916:589;;;;;;:::o;28511:225::-;28651:34;28647:1;28639:6;28635:14;28628:58;28720:8;28715:2;28707:6;28703:15;28696:33;28511:225;:::o;28742:366::-;28884:3;28905:67;28969:2;28964:3;28905:67;:::i;:::-;28898:74;;28981:93;29070:3;28981:93;:::i;:::-;29099:2;29094:3;29090:12;29083:19;;28742:366;;;:::o;29114:419::-;29280:4;29318:2;29307:9;29303:18;29295:26;;29367:9;29361:4;29357:20;29353:1;29342:9;29338:17;29331:47;29395:131;29521:4;29395:131;:::i;:::-;29387:139;;29114:419;;;:::o;29539:98::-;29590:6;29624:5;29618:12;29608:22;;29539:98;;;:::o;29643:168::-;29726:11;29760:6;29755:3;29748:19;29800:4;29795:3;29791:14;29776:29;;29643:168;;;;:::o;29817:360::-;29903:3;29931:38;29963:5;29931:38;:::i;:::-;29985:70;30048:6;30043:3;29985:70;:::i;:::-;29978:77;;30064:52;30109:6;30104:3;30097:4;30090:5;30086:16;30064:52;:::i;:::-;30141:29;30163:6;30141:29;:::i;:::-;30136:3;30132:39;30125:46;;29907:270;29817:360;;;;:::o;30183:640::-;30378:4;30416:3;30405:9;30401:19;30393:27;;30430:71;30498:1;30487:9;30483:17;30474:6;30430:71;:::i;:::-;30511:72;30579:2;30568:9;30564:18;30555:6;30511:72;:::i;:::-;30593;30661:2;30650:9;30646:18;30637:6;30593:72;:::i;:::-;30712:9;30706:4;30702:20;30697:2;30686:9;30682:18;30675:48;30740:76;30811:4;30802:6;30740:76;:::i;:::-;30732:84;;30183:640;;;;;;;:::o;30829:141::-;30885:5;30916:6;30910:13;30901:22;;30932:32;30958:5;30932:32;:::i;:::-;30829:141;;;;:::o;30976:349::-;31045:6;31094:2;31082:9;31073:7;31069:23;31065:32;31062:119;;;31100:79;;:::i;:::-;31062:119;31220:1;31245:63;31300:7;31291:6;31280:9;31276:22;31245:63;:::i;:::-;31235:73;;31191:127;30976:349;;;;:::o;31331:180::-;31379:77;31376:1;31369:88;31476:4;31473:1;31466:15;31500:4;31497:1;31490:15;31517:185;31557:1;31574:20;31592:1;31574:20;:::i;:::-;31569:25;;31608:20;31626:1;31608:20;:::i;:::-;31603:25;;31647:1;31637:35;;31652:18;;:::i;:::-;31637:35;31694:1;31691;31687:9;31682:14;;31517:185;;;;:::o;31708:191::-;31748:4;31768:20;31786:1;31768:20;:::i;:::-;31763:25;;31802:20;31820:1;31802:20;:::i;:::-;31797:25;;31841:1;31838;31835:8;31832:34;;;31846:18;;:::i;:::-;31832:34;31891:1;31888;31884:9;31876:17;;31708:191;;;;:::o;31905:176::-;31937:1;31954:20;31972:1;31954:20;:::i;:::-;31949:25;;31988:20;32006:1;31988:20;:::i;:::-;31983:25;;32027:1;32017:35;;32032:18;;:::i;:::-;32017:35;32073:1;32070;32066:9;32061:14;;31905:176;;;;:::o

Swarm Source

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