ETH Price: $3,387.58 (-1.57%)
Gas: 3 Gwei

Token

LostMyColor (LMC)
 

Overview

Max Total Supply

2,888 LMC

Holders

2,455

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 LMC
0x970bccc4979d3652d8834080973b47af28fef1b8
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

LostMyColor is a NFT token

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LostMyColor

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// 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 LostMyColor is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;
  string public uriPrefix = 'ipfs://bafybeibi4x2z2wwwc6i2352cnhie5fzl3urarekuqqnffyjr5i6pu26bj4/';
  string public uriSuffix = '.json';


  uint256 public maxSupply = 5888;
  uint256 public price = 0.0045 ether;
  uint256 public cost;
  uint256 public maxPerWallet  = 5;
  uint256 public totalFree = 888;
  uint256 public maxMintAmountPerTx = 5;
  uint256 public maxPerFree = 1;
  uint256 public maxPerFreeWallet = 1;

  constructor() ERC721A("LostMyColor", "LMC") {
  }

  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, "Up to 1 free mint!");
      require(numberMinted(msg.sender) + _mintAmount <= maxPerFreeWallet,"Free mint limit has been reached,Please wait until the end of free mint to purchase!");
    }
    require(numberMinted(msg.sender) + _mintAmount <= maxPerWallet,"Up to 5 per wallet!");
    _safeMint(_msgSender(), _mintAmount);
  }
  
  function mintToAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }
  
  function setCost(uint256 _cost) public onlyOwner {
    price = _cost;
  }

  function setMaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;
  }

  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 _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }

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

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

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

  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))
        : '';
  }
}

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":[{"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":"mintToAddress","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":"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":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060800160405280604381526020016200442a60439139600a90805190602001906200003592919062000278565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90805190602001906200008392919062000278565b50611700600c55660ffcb9e57d4000600d556005600f55610378601055600560115560016012556001601355348015620000bc57600080fd5b506040518060400160405280600b81526020017f4c6f73744d79436f6c6f720000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4c4d43000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200014192919062000278565b5080600390805190602001906200015a92919062000278565b506200016b620001a160201b60201c565b60008190555050506200019362000187620001aa60201b60201c565b620001b260201b60201c565b60016009819055506200038c565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002869062000357565b90600052602060002090601f016020900481019282620002aa5760008555620002f6565b82601f10620002c557805160ff1916838001178555620002f6565b82800160010185558215620002f6579182015b82811115620002f5578251825591602001919060010190620002d8565b5b50905062000305919062000309565b5090565b5b80821115620003245760008160009055506001016200030a565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200037057607f821691505b60208210810362000386576200038562000328565b5b50919050565b61408e806200039c6000396000f3fe60806040526004361061023b5760003560e01c806370a082311161012e578063b071401b116100ab578063dc33e6811161006f578063dc33e6811461082a578063e268e4d314610867578063e945971c14610890578063e985e9c5146108b9578063f2fde38b146108f65761023b565b8063b071401b14610745578063b88d4fde1461076e578063c7c39ffc14610797578063c87b56dd146107c2578063d5abeb01146107ff5761023b565b806395d89b41116100f257806395d89b411461067f578063a035b1fe146106aa578063a0712d68146106d5578063a09fa941146106f1578063a22cb4651461071c5761023b565b806370a08231146105ac578063715018a6146105e95780637ec4a659146106005780638da5cb5b1461062957806394354fd0146106545761023b565b806342842e0e116101bc578063563aaf1111610180578063563aaf11146104c95780635e85d3a3146104f257806362b99ad41461051b5780636352211e146105465780636f8b44b0146105835761023b565b806342842e0e146103f857806344a0d68a14610421578063453c23101461044a578063512b658d146104755780635503a0e81461049e5761023b565b806316ba10e01161020357806316ba10e01461033957806318160ddd1461036257806323b872dd1461038d578063333e44e6146103b65780633ccfd60b146103e15761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806313faede61461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613062565b61091f565b60405161027491906130aa565b60405180910390f35b34801561028957600080fd5b50610292610a01565b60405161029f919061315e565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906131b6565b610a93565b6040516102dc9190613224565b60405180910390f35b3480156102f157600080fd5b5061030c6004803603810190610307919061326b565b610b0f565b005b34801561031a57600080fd5b50610323610c19565b60405161033091906132ba565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b919061340a565b610c1f565b005b34801561036e57600080fd5b50610377610cb5565b60405161038491906132ba565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af9190613453565b610ccc565b005b3480156103c257600080fd5b506103cb610cdc565b6040516103d891906132ba565b60405180910390f35b3480156103ed57600080fd5b506103f6610ce2565b005b34801561040457600080fd5b5061041f600480360381019061041a9190613453565b610e33565b005b34801561042d57600080fd5b50610448600480360381019061044391906131b6565b610e53565b005b34801561045657600080fd5b5061045f610ed9565b60405161046c91906132ba565b60405180910390f35b34801561048157600080fd5b5061049c600480360381019061049791906134a6565b610edf565b005b3480156104aa57600080fd5b506104b3611013565b6040516104c0919061315e565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb91906131b6565b6110a1565b005b3480156104fe57600080fd5b50610519600480360381019061051491906131b6565b611127565b005b34801561052757600080fd5b506105306111ad565b60405161053d919061315e565b60405180910390f35b34801561055257600080fd5b5061056d600480360381019061056891906131b6565b61123b565b60405161057a9190613224565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a591906131b6565b611251565b005b3480156105b857600080fd5b506105d360048036038101906105ce91906134e6565b6112d7565b6040516105e091906132ba565b60405180910390f35b3480156105f557600080fd5b506105fe6113a6565b005b34801561060c57600080fd5b506106276004803603810190610622919061340a565b61142e565b005b34801561063557600080fd5b5061063e6114c4565b60405161064b9190613224565b60405180910390f35b34801561066057600080fd5b506106696114ee565b60405161067691906132ba565b60405180910390f35b34801561068b57600080fd5b506106946114f4565b6040516106a1919061315e565b60405180910390f35b3480156106b657600080fd5b506106bf611586565b6040516106cc91906132ba565b60405180910390f35b6106ef60048036038101906106ea91906131b6565b61158c565b005b3480156106fd57600080fd5b506107066117d9565b60405161071391906132ba565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e919061353f565b6117df565b005b34801561075157600080fd5b5061076c600480360381019061076791906131b6565b611956565b005b34801561077a57600080fd5b5061079560048036038101906107909190613620565b6119dc565b005b3480156107a357600080fd5b506107ac611a58565b6040516107b991906132ba565b60405180910390f35b3480156107ce57600080fd5b506107e960048036038101906107e491906131b6565b611a5e565b6040516107f6919061315e565b60405180910390f35b34801561080b57600080fd5b50610814611b08565b60405161082191906132ba565b60405180910390f35b34801561083657600080fd5b50610851600480360381019061084c91906134e6565b611b0e565b60405161085e91906132ba565b60405180910390f35b34801561087357600080fd5b5061088e600480360381019061088991906131b6565b611b20565b005b34801561089c57600080fd5b506108b760048036038101906108b291906131b6565b611ba6565b005b3480156108c557600080fd5b506108e060048036038101906108db91906136a3565b611c2c565b6040516108ed91906130aa565b60405180910390f35b34801561090257600080fd5b5061091d600480360381019061091891906134e6565b611cc0565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ea57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109fa57506109f982611db7565b5b9050919050565b606060028054610a1090613712565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3c90613712565b8015610a895780601f10610a5e57610100808354040283529160200191610a89565b820191906000526020600020905b815481529060010190602001808311610a6c57829003601f168201915b5050505050905090565b6000610a9e82611e21565b610ad4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1a8261123b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b81576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba0611e6f565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bd25750610bd081610bcb611e6f565b611c2c565b155b15610c09576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c14838383611e77565b505050565b600e5481565b610c27611e6f565b73ffffffffffffffffffffffffffffffffffffffff16610c456114c4565b73ffffffffffffffffffffffffffffffffffffffff1614610c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c929061378f565b60405180910390fd5b80600b9080519060200190610cb1929190612f10565b5050565b6000610cbf611f29565b6001546000540303905090565b610cd7838383611f32565b505050565b60105481565b610cea611e6f565b73ffffffffffffffffffffffffffffffffffffffff16610d086114c4565b73ffffffffffffffffffffffffffffffffffffffff1614610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d559061378f565b60405180910390fd5b600260095403610da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9a906137fb565b60405180910390fd5b60026009819055506000610db56114c4565b73ffffffffffffffffffffffffffffffffffffffff1647604051610dd89061384c565b60006040518083038185875af1925050503d8060008114610e15576040519150601f19603f3d011682016040523d82523d6000602084013e610e1a565b606091505b5050905080610e2857600080fd5b506001600981905550565b610e4e838383604051806020016040528060008152506119dc565b505050565b610e5b611e6f565b73ffffffffffffffffffffffffffffffffffffffff16610e796114c4565b73ffffffffffffffffffffffffffffffffffffffff1614610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec69061378f565b60405180910390fd5b80600d8190555050565b600f5481565b81600081118015610ef257506011548111155b610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f28906138ad565b60405180910390fd5b600c5481610f3d610cb5565b610f4791906138fc565b1115610f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7f9061399e565b60405180910390fd5b610f90611e6f565b73ffffffffffffffffffffffffffffffffffffffff16610fae6114c4565b73ffffffffffffffffffffffffffffffffffffffff1614611004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffb9061378f565b60405180910390fd5b61100e82846123e6565b505050565b600b805461102090613712565b80601f016020809104026020016040519081016040528092919081815260200182805461104c90613712565b80156110995780601f1061106e57610100808354040283529160200191611099565b820191906000526020600020905b81548152906001019060200180831161107c57829003601f168201915b505050505081565b6110a9611e6f565b73ffffffffffffffffffffffffffffffffffffffff166110c76114c4565b73ffffffffffffffffffffffffffffffffffffffff161461111d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111149061378f565b60405180910390fd5b8060108190555050565b61112f611e6f565b73ffffffffffffffffffffffffffffffffffffffff1661114d6114c4565b73ffffffffffffffffffffffffffffffffffffffff16146111a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119a9061378f565b60405180910390fd5b8060138190555050565b600a80546111ba90613712565b80601f01602080910402602001604051908101604052809291908181526020018280546111e690613712565b80156112335780601f1061120857610100808354040283529160200191611233565b820191906000526020600020905b81548152906001019060200180831161121657829003601f168201915b505050505081565b600061124682612404565b600001519050919050565b611259611e6f565b73ffffffffffffffffffffffffffffffffffffffff166112776114c4565b73ffffffffffffffffffffffffffffffffffffffff16146112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c49061378f565b60405180910390fd5b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361133e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6113ae611e6f565b73ffffffffffffffffffffffffffffffffffffffff166113cc6114c4565b73ffffffffffffffffffffffffffffffffffffffff1614611422576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114199061378f565b60405180910390fd5b61142c6000612693565b565b611436611e6f565b73ffffffffffffffffffffffffffffffffffffffff166114546114c4565b73ffffffffffffffffffffffffffffffffffffffff16146114aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a19061378f565b60405180910390fd5b80600a90805190602001906114c0929190612f10565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b60606003805461150390613712565b80601f016020809104026020016040519081016040528092919081815260200182805461152f90613712565b801561157c5780601f106115515761010080835404028352916020019161157c565b820191906000526020600020905b81548152906001019060200180831161155f57829003601f168201915b5050505050905090565b600d5481565b8060008111801561159f57506011548111155b6115de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d5906138ad565b60405180910390fd5b600c54816115ea610cb5565b6115f491906138fc565b1115611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c9061399e565b60405180910390fd5b8180600e5461164491906139be565b341015611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d90613a64565b60405180910390fd5b600d54600e81905550600160105461169e91906138fc565b836116a7610cb5565b6116b191906138fc565b101561176b576000600e8190555060125483111580156116d357506000600e54145b611712576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170990613ad0565b60405180910390fd5b6013548361171f33611b0e565b61172991906138fc565b111561176a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176190613b88565b60405180910390fd5b5b600f548361177833611b0e565b61178291906138fc565b11156117c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ba90613bf4565b60405180910390fd5b6117d46117ce611e6f565b846123e6565b505050565b60135481565b6117e7611e6f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361184b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611858611e6f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611905611e6f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161194a91906130aa565b60405180910390a35050565b61195e611e6f565b73ffffffffffffffffffffffffffffffffffffffff1661197c6114c4565b73ffffffffffffffffffffffffffffffffffffffff16146119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c99061378f565b60405180910390fd5b8060118190555050565b6119e7848484611f32565b611a068373ffffffffffffffffffffffffffffffffffffffff16612759565b8015611a1b5750611a198484848461277c565b155b15611a52576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60125481565b6060611a6982611e21565b611aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9f90613c86565b60405180910390fd5b6000611ab26128cc565b90506000815111611ad25760405180602001604052806000815250611b00565b80611adc8461295e565b600b604051602001611af093929190613d76565b6040516020818303038152906040525b915050919050565b600c5481565b6000611b1982612abe565b9050919050565b611b28611e6f565b73ffffffffffffffffffffffffffffffffffffffff16611b466114c4565b73ffffffffffffffffffffffffffffffffffffffff1614611b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b939061378f565b60405180910390fd5b80600f8190555050565b611bae611e6f565b73ffffffffffffffffffffffffffffffffffffffff16611bcc6114c4565b73ffffffffffffffffffffffffffffffffffffffff1614611c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c199061378f565b60405180910390fd5b8060128190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cc8611e6f565b73ffffffffffffffffffffffffffffffffffffffff16611ce66114c4565b73ffffffffffffffffffffffffffffffffffffffff1614611d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d339061378f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da290613e19565b60405180910390fd5b611db481612693565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611e2c611f29565b11158015611e3b575060005482105b8015611e68575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611f3d82612404565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fa8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611fc9611e6f565b73ffffffffffffffffffffffffffffffffffffffff161480611ff85750611ff785611ff2611e6f565b611c2c565b5b8061203d5750612006611e6f565b73ffffffffffffffffffffffffffffffffffffffff1661202584610a93565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612076576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036120dc576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120e98585856001612b28565b6120f560008487611e77565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361237457600054821461237357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123df8585856001612b2e565b5050505050565b612400828260405180602001604052806000815250612b34565b5050565b61240c612f96565b60008290508061241a611f29565b11158015612429575060005481105b1561265c576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161265a57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461253e57809250505061268e565b5b60011561265957818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461265457809250505061268e565b61253f565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127a2611e6f565b8786866040518563ffffffff1660e01b81526004016127c49493929190613e8e565b6020604051808303816000875af192505050801561280057506040513d601f19601f820116820180604052508101906127fd9190613eef565b60015b612879573d8060008114612830576040519150601f19603f3d011682016040523d82523d6000602084013e612835565b606091505b506000815103612871576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546128db90613712565b80601f016020809104026020016040519081016040528092919081815260200182805461290790613712565b80156129545780601f1061292957610100808354040283529160200191612954565b820191906000526020600020905b81548152906001019060200180831161293757829003601f168201915b5050505050905090565b6060600082036129a5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ab9565b600082905060005b600082146129d75780806129c090613f1c565b915050600a826129d09190613f93565b91506129ad565b60008167ffffffffffffffff8111156129f3576129f26132df565b5b6040519080825280601f01601f191660200182016040528015612a255781602001600182028036833780820191505090505b5090505b60008514612ab257600182612a3e9190613fc4565b9150600a85612a4d9190613ff8565b6030612a5991906138fc565b60f81b818381518110612a6f57612a6e614029565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612aab9190613f93565b9450612a29565b8093505050505b919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b612b418383836001612b46565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612bb2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612bec576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bf96000868387612b28565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612dc35750612dc28773ffffffffffffffffffffffffffffffffffffffff16612759565b5b15612e88575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e38600088848060010195508861277c565b612e6e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612dc9578260005414612e8357600080fd5b612ef3565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612e89575b816000819055505050612f096000868387612b2e565b5050505050565b828054612f1c90613712565b90600052602060002090601f016020900481019282612f3e5760008555612f85565b82601f10612f5757805160ff1916838001178555612f85565b82800160010185558215612f85579182015b82811115612f84578251825591602001919060010190612f69565b5b509050612f929190612fd9565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612ff2576000816000905550600101612fda565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61303f8161300a565b811461304a57600080fd5b50565b60008135905061305c81613036565b92915050565b60006020828403121561307857613077613000565b5b60006130868482850161304d565b91505092915050565b60008115159050919050565b6130a48161308f565b82525050565b60006020820190506130bf600083018461309b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156130ff5780820151818401526020810190506130e4565b8381111561310e576000848401525b50505050565b6000601f19601f8301169050919050565b6000613130826130c5565b61313a81856130d0565b935061314a8185602086016130e1565b61315381613114565b840191505092915050565b600060208201905081810360008301526131788184613125565b905092915050565b6000819050919050565b61319381613180565b811461319e57600080fd5b50565b6000813590506131b08161318a565b92915050565b6000602082840312156131cc576131cb613000565b5b60006131da848285016131a1565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061320e826131e3565b9050919050565b61321e81613203565b82525050565b60006020820190506132396000830184613215565b92915050565b61324881613203565b811461325357600080fd5b50565b6000813590506132658161323f565b92915050565b6000806040838503121561328257613281613000565b5b600061329085828601613256565b92505060206132a1858286016131a1565b9150509250929050565b6132b481613180565b82525050565b60006020820190506132cf60008301846132ab565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61331782613114565b810181811067ffffffffffffffff82111715613336576133356132df565b5b80604052505050565b6000613349612ff6565b9050613355828261330e565b919050565b600067ffffffffffffffff821115613375576133746132df565b5b61337e82613114565b9050602081019050919050565b82818337600083830152505050565b60006133ad6133a88461335a565b61333f565b9050828152602081018484840111156133c9576133c86132da565b5b6133d484828561338b565b509392505050565b600082601f8301126133f1576133f06132d5565b5b813561340184826020860161339a565b91505092915050565b6000602082840312156134205761341f613000565b5b600082013567ffffffffffffffff81111561343e5761343d613005565b5b61344a848285016133dc565b91505092915050565b60008060006060848603121561346c5761346b613000565b5b600061347a86828701613256565b935050602061348b86828701613256565b925050604061349c868287016131a1565b9150509250925092565b600080604083850312156134bd576134bc613000565b5b60006134cb858286016131a1565b92505060206134dc85828601613256565b9150509250929050565b6000602082840312156134fc576134fb613000565b5b600061350a84828501613256565b91505092915050565b61351c8161308f565b811461352757600080fd5b50565b60008135905061353981613513565b92915050565b6000806040838503121561355657613555613000565b5b600061356485828601613256565b92505060206135758582860161352a565b9150509250929050565b600067ffffffffffffffff82111561359a576135996132df565b5b6135a382613114565b9050602081019050919050565b60006135c36135be8461357f565b61333f565b9050828152602081018484840111156135df576135de6132da565b5b6135ea84828561338b565b509392505050565b600082601f830112613607576136066132d5565b5b81356136178482602086016135b0565b91505092915050565b6000806000806080858703121561363a57613639613000565b5b600061364887828801613256565b945050602061365987828801613256565b935050604061366a878288016131a1565b925050606085013567ffffffffffffffff81111561368b5761368a613005565b5b613697878288016135f2565b91505092959194509250565b600080604083850312156136ba576136b9613000565b5b60006136c885828601613256565b92505060206136d985828601613256565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061372a57607f821691505b60208210810361373d5761373c6136e3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137796020836130d0565b915061378482613743565b602082019050919050565b600060208201905081810360008301526137a88161376c565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006137e5601f836130d0565b91506137f0826137af565b602082019050919050565b60006020820190508181036000830152613814816137d8565b9050919050565b600081905092915050565b50565b600061383660008361381b565b915061384182613826565b600082019050919050565b600061385782613829565b9150819050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006138976014836130d0565b91506138a282613861565b602082019050919050565b600060208201905081810360008301526138c68161388a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061390782613180565b915061391283613180565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613947576139466138cd565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006139886014836130d0565b915061399382613952565b602082019050919050565b600060208201905081810360008301526139b78161397b565b9050919050565b60006139c982613180565b91506139d483613180565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a0d57613a0c6138cd565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613a4e6013836130d0565b9150613a5982613a18565b602082019050919050565b60006020820190508181036000830152613a7d81613a41565b9050919050565b7f557020746f20312066726565206d696e74210000000000000000000000000000600082015250565b6000613aba6012836130d0565b9150613ac582613a84565b602082019050919050565b60006020820190508181036000830152613ae981613aad565b9050919050565b7f46726565206d696e74206c696d697420686173206265656e207265616368656460008201527f2c506c65617365207761697420756e74696c2074686520656e64206f6620667260208201527f6565206d696e7420746f20707572636861736521000000000000000000000000604082015250565b6000613b726054836130d0565b9150613b7d82613af0565b606082019050919050565b60006020820190508181036000830152613ba181613b65565b9050919050565b7f557020746f2035207065722077616c6c65742100000000000000000000000000600082015250565b6000613bde6013836130d0565b9150613be982613ba8565b602082019050919050565b60006020820190508181036000830152613c0d81613bd1565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613c70602f836130d0565b9150613c7b82613c14565b604082019050919050565b60006020820190508181036000830152613c9f81613c63565b9050919050565b600081905092915050565b6000613cbc826130c5565b613cc68185613ca6565b9350613cd68185602086016130e1565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613d0481613712565b613d0e8186613ca6565b94506001821660008114613d295760018114613d3a57613d6d565b60ff19831686528186019350613d6d565b613d4385613ce2565b60005b83811015613d6557815481890152600182019150602081019050613d46565b838801955050505b50505092915050565b6000613d828286613cb1565b9150613d8e8285613cb1565b9150613d9a8284613cf7565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e036026836130d0565b9150613e0e82613da7565b604082019050919050565b60006020820190508181036000830152613e3281613df6565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613e6082613e39565b613e6a8185613e44565b9350613e7a8185602086016130e1565b613e8381613114565b840191505092915050565b6000608082019050613ea36000830187613215565b613eb06020830186613215565b613ebd60408301856132ab565b8181036060830152613ecf8184613e55565b905095945050505050565b600081519050613ee981613036565b92915050565b600060208284031215613f0557613f04613000565b5b6000613f1384828501613eda565b91505092915050565b6000613f2782613180565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613f5957613f586138cd565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f9e82613180565b9150613fa983613180565b925082613fb957613fb8613f64565b5b828204905092915050565b6000613fcf82613180565b9150613fda83613180565b925082821015613fed57613fec6138cd565b5b828203905092915050565b600061400382613180565b915061400e83613180565b92508261401e5761401d613f64565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212208c91bb8362cceae1d3f5fe4c712cf9bd0cddb6ef2a332faeefc7549198d2cce564736f6c634300080e0033697066733a2f2f6261667962656962693478327a3277777763366932333532636e68696535667a6c3375726172656b7571716e6666796a7235693670753236626a342f

Deployed Bytecode

0x60806040526004361061023b5760003560e01c806370a082311161012e578063b071401b116100ab578063dc33e6811161006f578063dc33e6811461082a578063e268e4d314610867578063e945971c14610890578063e985e9c5146108b9578063f2fde38b146108f65761023b565b8063b071401b14610745578063b88d4fde1461076e578063c7c39ffc14610797578063c87b56dd146107c2578063d5abeb01146107ff5761023b565b806395d89b41116100f257806395d89b411461067f578063a035b1fe146106aa578063a0712d68146106d5578063a09fa941146106f1578063a22cb4651461071c5761023b565b806370a08231146105ac578063715018a6146105e95780637ec4a659146106005780638da5cb5b1461062957806394354fd0146106545761023b565b806342842e0e116101bc578063563aaf1111610180578063563aaf11146104c95780635e85d3a3146104f257806362b99ad41461051b5780636352211e146105465780636f8b44b0146105835761023b565b806342842e0e146103f857806344a0d68a14610421578063453c23101461044a578063512b658d146104755780635503a0e81461049e5761023b565b806316ba10e01161020357806316ba10e01461033957806318160ddd1461036257806323b872dd1461038d578063333e44e6146103b65780633ccfd60b146103e15761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806313faede61461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613062565b61091f565b60405161027491906130aa565b60405180910390f35b34801561028957600080fd5b50610292610a01565b60405161029f919061315e565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906131b6565b610a93565b6040516102dc9190613224565b60405180910390f35b3480156102f157600080fd5b5061030c6004803603810190610307919061326b565b610b0f565b005b34801561031a57600080fd5b50610323610c19565b60405161033091906132ba565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b919061340a565b610c1f565b005b34801561036e57600080fd5b50610377610cb5565b60405161038491906132ba565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af9190613453565b610ccc565b005b3480156103c257600080fd5b506103cb610cdc565b6040516103d891906132ba565b60405180910390f35b3480156103ed57600080fd5b506103f6610ce2565b005b34801561040457600080fd5b5061041f600480360381019061041a9190613453565b610e33565b005b34801561042d57600080fd5b50610448600480360381019061044391906131b6565b610e53565b005b34801561045657600080fd5b5061045f610ed9565b60405161046c91906132ba565b60405180910390f35b34801561048157600080fd5b5061049c600480360381019061049791906134a6565b610edf565b005b3480156104aa57600080fd5b506104b3611013565b6040516104c0919061315e565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb91906131b6565b6110a1565b005b3480156104fe57600080fd5b50610519600480360381019061051491906131b6565b611127565b005b34801561052757600080fd5b506105306111ad565b60405161053d919061315e565b60405180910390f35b34801561055257600080fd5b5061056d600480360381019061056891906131b6565b61123b565b60405161057a9190613224565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a591906131b6565b611251565b005b3480156105b857600080fd5b506105d360048036038101906105ce91906134e6565b6112d7565b6040516105e091906132ba565b60405180910390f35b3480156105f557600080fd5b506105fe6113a6565b005b34801561060c57600080fd5b506106276004803603810190610622919061340a565b61142e565b005b34801561063557600080fd5b5061063e6114c4565b60405161064b9190613224565b60405180910390f35b34801561066057600080fd5b506106696114ee565b60405161067691906132ba565b60405180910390f35b34801561068b57600080fd5b506106946114f4565b6040516106a1919061315e565b60405180910390f35b3480156106b657600080fd5b506106bf611586565b6040516106cc91906132ba565b60405180910390f35b6106ef60048036038101906106ea91906131b6565b61158c565b005b3480156106fd57600080fd5b506107066117d9565b60405161071391906132ba565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e919061353f565b6117df565b005b34801561075157600080fd5b5061076c600480360381019061076791906131b6565b611956565b005b34801561077a57600080fd5b5061079560048036038101906107909190613620565b6119dc565b005b3480156107a357600080fd5b506107ac611a58565b6040516107b991906132ba565b60405180910390f35b3480156107ce57600080fd5b506107e960048036038101906107e491906131b6565b611a5e565b6040516107f6919061315e565b60405180910390f35b34801561080b57600080fd5b50610814611b08565b60405161082191906132ba565b60405180910390f35b34801561083657600080fd5b50610851600480360381019061084c91906134e6565b611b0e565b60405161085e91906132ba565b60405180910390f35b34801561087357600080fd5b5061088e600480360381019061088991906131b6565b611b20565b005b34801561089c57600080fd5b506108b760048036038101906108b291906131b6565b611ba6565b005b3480156108c557600080fd5b506108e060048036038101906108db91906136a3565b611c2c565b6040516108ed91906130aa565b60405180910390f35b34801561090257600080fd5b5061091d600480360381019061091891906134e6565b611cc0565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ea57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109fa57506109f982611db7565b5b9050919050565b606060028054610a1090613712565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3c90613712565b8015610a895780601f10610a5e57610100808354040283529160200191610a89565b820191906000526020600020905b815481529060010190602001808311610a6c57829003601f168201915b5050505050905090565b6000610a9e82611e21565b610ad4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1a8261123b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b81576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba0611e6f565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bd25750610bd081610bcb611e6f565b611c2c565b155b15610c09576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c14838383611e77565b505050565b600e5481565b610c27611e6f565b73ffffffffffffffffffffffffffffffffffffffff16610c456114c4565b73ffffffffffffffffffffffffffffffffffffffff1614610c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c929061378f565b60405180910390fd5b80600b9080519060200190610cb1929190612f10565b5050565b6000610cbf611f29565b6001546000540303905090565b610cd7838383611f32565b505050565b60105481565b610cea611e6f565b73ffffffffffffffffffffffffffffffffffffffff16610d086114c4565b73ffffffffffffffffffffffffffffffffffffffff1614610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d559061378f565b60405180910390fd5b600260095403610da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9a906137fb565b60405180910390fd5b60026009819055506000610db56114c4565b73ffffffffffffffffffffffffffffffffffffffff1647604051610dd89061384c565b60006040518083038185875af1925050503d8060008114610e15576040519150601f19603f3d011682016040523d82523d6000602084013e610e1a565b606091505b5050905080610e2857600080fd5b506001600981905550565b610e4e838383604051806020016040528060008152506119dc565b505050565b610e5b611e6f565b73ffffffffffffffffffffffffffffffffffffffff16610e796114c4565b73ffffffffffffffffffffffffffffffffffffffff1614610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec69061378f565b60405180910390fd5b80600d8190555050565b600f5481565b81600081118015610ef257506011548111155b610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f28906138ad565b60405180910390fd5b600c5481610f3d610cb5565b610f4791906138fc565b1115610f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7f9061399e565b60405180910390fd5b610f90611e6f565b73ffffffffffffffffffffffffffffffffffffffff16610fae6114c4565b73ffffffffffffffffffffffffffffffffffffffff1614611004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffb9061378f565b60405180910390fd5b61100e82846123e6565b505050565b600b805461102090613712565b80601f016020809104026020016040519081016040528092919081815260200182805461104c90613712565b80156110995780601f1061106e57610100808354040283529160200191611099565b820191906000526020600020905b81548152906001019060200180831161107c57829003601f168201915b505050505081565b6110a9611e6f565b73ffffffffffffffffffffffffffffffffffffffff166110c76114c4565b73ffffffffffffffffffffffffffffffffffffffff161461111d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111149061378f565b60405180910390fd5b8060108190555050565b61112f611e6f565b73ffffffffffffffffffffffffffffffffffffffff1661114d6114c4565b73ffffffffffffffffffffffffffffffffffffffff16146111a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119a9061378f565b60405180910390fd5b8060138190555050565b600a80546111ba90613712565b80601f01602080910402602001604051908101604052809291908181526020018280546111e690613712565b80156112335780601f1061120857610100808354040283529160200191611233565b820191906000526020600020905b81548152906001019060200180831161121657829003601f168201915b505050505081565b600061124682612404565b600001519050919050565b611259611e6f565b73ffffffffffffffffffffffffffffffffffffffff166112776114c4565b73ffffffffffffffffffffffffffffffffffffffff16146112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c49061378f565b60405180910390fd5b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361133e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6113ae611e6f565b73ffffffffffffffffffffffffffffffffffffffff166113cc6114c4565b73ffffffffffffffffffffffffffffffffffffffff1614611422576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114199061378f565b60405180910390fd5b61142c6000612693565b565b611436611e6f565b73ffffffffffffffffffffffffffffffffffffffff166114546114c4565b73ffffffffffffffffffffffffffffffffffffffff16146114aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a19061378f565b60405180910390fd5b80600a90805190602001906114c0929190612f10565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b60606003805461150390613712565b80601f016020809104026020016040519081016040528092919081815260200182805461152f90613712565b801561157c5780601f106115515761010080835404028352916020019161157c565b820191906000526020600020905b81548152906001019060200180831161155f57829003601f168201915b5050505050905090565b600d5481565b8060008111801561159f57506011548111155b6115de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d5906138ad565b60405180910390fd5b600c54816115ea610cb5565b6115f491906138fc565b1115611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c9061399e565b60405180910390fd5b8180600e5461164491906139be565b341015611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d90613a64565b60405180910390fd5b600d54600e81905550600160105461169e91906138fc565b836116a7610cb5565b6116b191906138fc565b101561176b576000600e8190555060125483111580156116d357506000600e54145b611712576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170990613ad0565b60405180910390fd5b6013548361171f33611b0e565b61172991906138fc565b111561176a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176190613b88565b60405180910390fd5b5b600f548361177833611b0e565b61178291906138fc565b11156117c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ba90613bf4565b60405180910390fd5b6117d46117ce611e6f565b846123e6565b505050565b60135481565b6117e7611e6f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361184b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611858611e6f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611905611e6f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161194a91906130aa565b60405180910390a35050565b61195e611e6f565b73ffffffffffffffffffffffffffffffffffffffff1661197c6114c4565b73ffffffffffffffffffffffffffffffffffffffff16146119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c99061378f565b60405180910390fd5b8060118190555050565b6119e7848484611f32565b611a068373ffffffffffffffffffffffffffffffffffffffff16612759565b8015611a1b5750611a198484848461277c565b155b15611a52576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60125481565b6060611a6982611e21565b611aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9f90613c86565b60405180910390fd5b6000611ab26128cc565b90506000815111611ad25760405180602001604052806000815250611b00565b80611adc8461295e565b600b604051602001611af093929190613d76565b6040516020818303038152906040525b915050919050565b600c5481565b6000611b1982612abe565b9050919050565b611b28611e6f565b73ffffffffffffffffffffffffffffffffffffffff16611b466114c4565b73ffffffffffffffffffffffffffffffffffffffff1614611b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b939061378f565b60405180910390fd5b80600f8190555050565b611bae611e6f565b73ffffffffffffffffffffffffffffffffffffffff16611bcc6114c4565b73ffffffffffffffffffffffffffffffffffffffff1614611c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c199061378f565b60405180910390fd5b8060128190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cc8611e6f565b73ffffffffffffffffffffffffffffffffffffffff16611ce66114c4565b73ffffffffffffffffffffffffffffffffffffffff1614611d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d339061378f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da290613e19565b60405180910390fd5b611db481612693565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611e2c611f29565b11158015611e3b575060005482105b8015611e68575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611f3d82612404565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fa8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611fc9611e6f565b73ffffffffffffffffffffffffffffffffffffffff161480611ff85750611ff785611ff2611e6f565b611c2c565b5b8061203d5750612006611e6f565b73ffffffffffffffffffffffffffffffffffffffff1661202584610a93565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612076576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036120dc576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120e98585856001612b28565b6120f560008487611e77565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361237457600054821461237357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123df8585856001612b2e565b5050505050565b612400828260405180602001604052806000815250612b34565b5050565b61240c612f96565b60008290508061241a611f29565b11158015612429575060005481105b1561265c576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161265a57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461253e57809250505061268e565b5b60011561265957818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461265457809250505061268e565b61253f565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127a2611e6f565b8786866040518563ffffffff1660e01b81526004016127c49493929190613e8e565b6020604051808303816000875af192505050801561280057506040513d601f19601f820116820180604052508101906127fd9190613eef565b60015b612879573d8060008114612830576040519150601f19603f3d011682016040523d82523d6000602084013e612835565b606091505b506000815103612871576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546128db90613712565b80601f016020809104026020016040519081016040528092919081815260200182805461290790613712565b80156129545780601f1061292957610100808354040283529160200191612954565b820191906000526020600020905b81548152906001019060200180831161293757829003601f168201915b5050505050905090565b6060600082036129a5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ab9565b600082905060005b600082146129d75780806129c090613f1c565b915050600a826129d09190613f93565b91506129ad565b60008167ffffffffffffffff8111156129f3576129f26132df565b5b6040519080825280601f01601f191660200182016040528015612a255781602001600182028036833780820191505090505b5090505b60008514612ab257600182612a3e9190613fc4565b9150600a85612a4d9190613ff8565b6030612a5991906138fc565b60f81b818381518110612a6f57612a6e614029565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612aab9190613f93565b9450612a29565b8093505050505b919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b612b418383836001612b46565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612bb2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612bec576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bf96000868387612b28565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612dc35750612dc28773ffffffffffffffffffffffffffffffffffffffff16612759565b5b15612e88575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e38600088848060010195508861277c565b612e6e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612dc9578260005414612e8357600080fd5b612ef3565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612e89575b816000819055505050612f096000868387612b2e565b5050505050565b828054612f1c90613712565b90600052602060002090601f016020900481019282612f3e5760008555612f85565b82601f10612f5757805160ff1916838001178555612f85565b82800160010185558215612f85579182015b82811115612f84578251825591602001919060010190612f69565b5b509050612f929190612fd9565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612ff2576000816000905550600101612fda565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61303f8161300a565b811461304a57600080fd5b50565b60008135905061305c81613036565b92915050565b60006020828403121561307857613077613000565b5b60006130868482850161304d565b91505092915050565b60008115159050919050565b6130a48161308f565b82525050565b60006020820190506130bf600083018461309b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156130ff5780820151818401526020810190506130e4565b8381111561310e576000848401525b50505050565b6000601f19601f8301169050919050565b6000613130826130c5565b61313a81856130d0565b935061314a8185602086016130e1565b61315381613114565b840191505092915050565b600060208201905081810360008301526131788184613125565b905092915050565b6000819050919050565b61319381613180565b811461319e57600080fd5b50565b6000813590506131b08161318a565b92915050565b6000602082840312156131cc576131cb613000565b5b60006131da848285016131a1565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061320e826131e3565b9050919050565b61321e81613203565b82525050565b60006020820190506132396000830184613215565b92915050565b61324881613203565b811461325357600080fd5b50565b6000813590506132658161323f565b92915050565b6000806040838503121561328257613281613000565b5b600061329085828601613256565b92505060206132a1858286016131a1565b9150509250929050565b6132b481613180565b82525050565b60006020820190506132cf60008301846132ab565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61331782613114565b810181811067ffffffffffffffff82111715613336576133356132df565b5b80604052505050565b6000613349612ff6565b9050613355828261330e565b919050565b600067ffffffffffffffff821115613375576133746132df565b5b61337e82613114565b9050602081019050919050565b82818337600083830152505050565b60006133ad6133a88461335a565b61333f565b9050828152602081018484840111156133c9576133c86132da565b5b6133d484828561338b565b509392505050565b600082601f8301126133f1576133f06132d5565b5b813561340184826020860161339a565b91505092915050565b6000602082840312156134205761341f613000565b5b600082013567ffffffffffffffff81111561343e5761343d613005565b5b61344a848285016133dc565b91505092915050565b60008060006060848603121561346c5761346b613000565b5b600061347a86828701613256565b935050602061348b86828701613256565b925050604061349c868287016131a1565b9150509250925092565b600080604083850312156134bd576134bc613000565b5b60006134cb858286016131a1565b92505060206134dc85828601613256565b9150509250929050565b6000602082840312156134fc576134fb613000565b5b600061350a84828501613256565b91505092915050565b61351c8161308f565b811461352757600080fd5b50565b60008135905061353981613513565b92915050565b6000806040838503121561355657613555613000565b5b600061356485828601613256565b92505060206135758582860161352a565b9150509250929050565b600067ffffffffffffffff82111561359a576135996132df565b5b6135a382613114565b9050602081019050919050565b60006135c36135be8461357f565b61333f565b9050828152602081018484840111156135df576135de6132da565b5b6135ea84828561338b565b509392505050565b600082601f830112613607576136066132d5565b5b81356136178482602086016135b0565b91505092915050565b6000806000806080858703121561363a57613639613000565b5b600061364887828801613256565b945050602061365987828801613256565b935050604061366a878288016131a1565b925050606085013567ffffffffffffffff81111561368b5761368a613005565b5b613697878288016135f2565b91505092959194509250565b600080604083850312156136ba576136b9613000565b5b60006136c885828601613256565b92505060206136d985828601613256565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061372a57607f821691505b60208210810361373d5761373c6136e3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137796020836130d0565b915061378482613743565b602082019050919050565b600060208201905081810360008301526137a88161376c565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006137e5601f836130d0565b91506137f0826137af565b602082019050919050565b60006020820190508181036000830152613814816137d8565b9050919050565b600081905092915050565b50565b600061383660008361381b565b915061384182613826565b600082019050919050565b600061385782613829565b9150819050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006138976014836130d0565b91506138a282613861565b602082019050919050565b600060208201905081810360008301526138c68161388a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061390782613180565b915061391283613180565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613947576139466138cd565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006139886014836130d0565b915061399382613952565b602082019050919050565b600060208201905081810360008301526139b78161397b565b9050919050565b60006139c982613180565b91506139d483613180565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a0d57613a0c6138cd565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613a4e6013836130d0565b9150613a5982613a18565b602082019050919050565b60006020820190508181036000830152613a7d81613a41565b9050919050565b7f557020746f20312066726565206d696e74210000000000000000000000000000600082015250565b6000613aba6012836130d0565b9150613ac582613a84565b602082019050919050565b60006020820190508181036000830152613ae981613aad565b9050919050565b7f46726565206d696e74206c696d697420686173206265656e207265616368656460008201527f2c506c65617365207761697420756e74696c2074686520656e64206f6620667260208201527f6565206d696e7420746f20707572636861736521000000000000000000000000604082015250565b6000613b726054836130d0565b9150613b7d82613af0565b606082019050919050565b60006020820190508181036000830152613ba181613b65565b9050919050565b7f557020746f2035207065722077616c6c65742100000000000000000000000000600082015250565b6000613bde6013836130d0565b9150613be982613ba8565b602082019050919050565b60006020820190508181036000830152613c0d81613bd1565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613c70602f836130d0565b9150613c7b82613c14565b604082019050919050565b60006020820190508181036000830152613c9f81613c63565b9050919050565b600081905092915050565b6000613cbc826130c5565b613cc68185613ca6565b9350613cd68185602086016130e1565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613d0481613712565b613d0e8186613ca6565b94506001821660008114613d295760018114613d3a57613d6d565b60ff19831686528186019350613d6d565b613d4385613ce2565b60005b83811015613d6557815481890152600182019150602081019050613d46565b838801955050505b50505092915050565b6000613d828286613cb1565b9150613d8e8285613cb1565b9150613d9a8284613cf7565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e036026836130d0565b9150613e0e82613da7565b604082019050919050565b60006020820190508181036000830152613e3281613df6565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613e6082613e39565b613e6a8185613e44565b9350613e7a8185602086016130e1565b613e8381613114565b840191505092915050565b6000608082019050613ea36000830187613215565b613eb06020830186613215565b613ebd60408301856132ab565b8181036060830152613ecf8184613e55565b905095945050505050565b600081519050613ee981613036565b92915050565b600060208284031215613f0557613f04613000565b5b6000613f1384828501613eda565b91505092915050565b6000613f2782613180565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613f5957613f586138cd565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f9e82613180565b9150613fa983613180565b925082613fb957613fb8613f64565b5b828204905092915050565b6000613fcf82613180565b9150613fda83613180565b925082821015613fed57613fec6138cd565b5b828203905092915050565b600061400382613180565b915061400e83613180565b92508261401e5761401d613f64565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212208c91bb8362cceae1d3f5fe4c712cf9bd0cddb6ef2a332faeefc7549198d2cce564736f6c634300080e0033

Deployed Bytecode Sourcemap

47547:3550:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29699:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32812:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34315:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33878:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47860:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50349:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28948:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35180:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47921:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50455:150;;;;;;;;;;;;;:::i;:::-;;35421:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49381:75;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47884:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49106:154;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47742:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49778:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49979:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47642:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32620:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49462:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30068:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7457:103;;;;;;;;;;;;;:::i;:::-;;50243:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6806:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47956:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32981:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47820:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48507:591;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48032:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34591:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50107:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35677:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47998:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50721:373;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47784:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49266:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49666:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49562:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34949:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7715:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29699:305;29801:4;29853:25;29838:40;;;:11;:40;;;;:105;;;;29910:33;29895:48;;;:11;:48;;;;29838:105;:158;;;;29960:36;29984:11;29960:23;:36::i;:::-;29838:158;29818:178;;29699:305;;;:::o;32812:100::-;32866:13;32899:5;32892:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32812:100;:::o;34315:204::-;34383:7;34408:16;34416:7;34408;:16::i;:::-;34403:64;;34433:34;;;;;;;;;;;;;;34403:64;34487:15;:24;34503:7;34487:24;;;;;;;;;;;;;;;;;;;;;34480:31;;34315:204;;;:::o;33878:371::-;33951:13;33967:24;33983:7;33967:15;:24::i;:::-;33951:40;;34012:5;34006:11;;:2;:11;;;34002:48;;34026:24;;;;;;;;;;;;;;34002:48;34083:5;34067:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;34093:37;34110:5;34117:12;:10;:12::i;:::-;34093:16;:37::i;:::-;34092:38;34067:63;34063:138;;;34154:35;;;;;;;;;;;;;;34063:138;34213:28;34222:2;34226:7;34235:5;34213:8;:28::i;:::-;33940:309;33878:371;;:::o;47860:19::-;;;;:::o;50349:100::-;7037:12;:10;:12::i;:::-;7026:23;;:7;:5;:7::i;:::-;:23;;;7018:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50433:10:::1;50421:9;:22;;;;;;;;;;;;:::i;:::-;;50349:100:::0;:::o;28948:303::-;28992:7;29217:15;:13;:15::i;:::-;29202:12;;29186:13;;:28;:46;29179:53;;28948:303;:::o;35180:170::-;35314:28;35324:4;35330:2;35334:7;35314:9;:28::i;:::-;35180:170;;;:::o;47921:30::-;;;;:::o;50455:150::-;7037:12;:10;:12::i;:::-;7026:23;;:7;:5;:7::i;:::-;:23;;;7018:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1780:1:::1;2378:7;;:19:::0;2370:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1780:1;2511:7;:18;;;;50513:7:::2;50534;:5;:7::i;:::-;50526:21;;50555;50526:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50512:69;;;50596:2;50588:11;;;::::0;::::2;;50505:100;1736:1:::1;2690:7;:22;;;;50455:150::o:0;35421:185::-;35559:39;35576:4;35582:2;35586:7;35559:39;;;;;;;;;;;;:16;:39::i;:::-;35421:185;;;:::o;49381:75::-;7037:12;:10;:12::i;:::-;7026:23;;:7;:5;:7::i;:::-;:23;;;7018:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49445:5:::1;49437;:13;;;;49381:75:::0;:::o;47884:32::-;;;;:::o;49106:154::-;49191:11;48204:1;48190:11;:15;:52;;;;;48224:18;;48209:11;:33;;48190:52;48182:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;48313:9;;48298:11;48282:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;48274:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7037:12:::1;:10;:12::i;:::-;7026:23;;:7;:5;:7::i;:::-;:23;;;7018:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49221:33:::2;49231:9;49242:11;49221:9;:33::i;:::-;49106:154:::0;;;:::o;47742:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49778:94::-;7037:12;:10;:12::i;:::-;7026:23;;:7;:5;:7::i;:::-;:23;;;7018:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49856:10:::1;49844:9;:22;;;;49778:94:::0;:::o;49979:122::-;7037:12;:10;:12::i;:::-;7026:23;;:7;:5;:7::i;:::-;:23;;;7018:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50078:17:::1;50059:16;:36;;;;49979:122:::0;:::o;47642:95::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32620:125::-;32684:7;32711:21;32724:7;32711:12;:21::i;:::-;:26;;;32704:33;;32620:125;;;:::o;49462:94::-;7037:12;:10;:12::i;:::-;7026:23;;:7;:5;:7::i;:::-;:23;;;7018:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49540:10:::1;49528:9;:22;;;;49462:94:::0;:::o;30068:206::-;30132:7;30173:1;30156:19;;:5;:19;;;30152:60;;30184:28;;;;;;;;;;;;;;30152:60;30238:12;:19;30251:5;30238:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30230:36;;30223:43;;30068:206;;;:::o;7457:103::-;7037:12;:10;:12::i;:::-;7026:23;;:7;:5;:7::i;:::-;:23;;;7018:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7522:30:::1;7549:1;7522:18;:30::i;:::-;7457:103::o:0;50243:100::-;7037:12;:10;:12::i;:::-;7026:23;;:7;:5;:7::i;:::-;:23;;;7018:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50327:10:::1;50315:9;:22;;;;;;;;;;;;:::i;:::-;;50243:100:::0;:::o;6806:87::-;6852:7;6879:6;;;;;;;;;;;6872:13;;6806:87;:::o;47956:37::-;;;;:::o;32981:104::-;33037:13;33070:7;33063:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32981:104;:::o;47820:35::-;;;;:::o;48507:591::-;48572:11;48204:1;48190:11;:15;:52;;;;;48224:18;;48209:11;:33;;48190:52;48182:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;48313:9;;48298:11;48282:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;48274:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48605:11:::1;48452;48445:4;;:18;;;;:::i;:::-;48432:9;:31;;48424:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;48632:5:::2;;48625:4;:12;;;;48689:1;48677:9;;:13;;;;:::i;:::-;48663:11;48647:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:43;48644:314;;;48708:1;48701:4;:8;;;;48741:10;;48726:11;:25;;:38;;;;;48763:1;48755:4;;:9;48726:38;48718:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;48846:16;;48831:11;48804:24;48817:10;48804:12;:24::i;:::-;:38;;;;:::i;:::-;:58;;48796:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;48644:314;49014:12;;48999:11;48972:24;48985:10;48972:12;:24::i;:::-;:38;;;;:::i;:::-;:54;;48964:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;49056:36;49066:12;:10;:12::i;:::-;49080:11;49056:9;:36::i;:::-;48354:1:::1;48507:591:::0;;:::o;48032:35::-;;;;:::o;34591:287::-;34702:12;:10;:12::i;:::-;34690:24;;:8;:24;;;34686:54;;34723:17;;;;;;;;;;;;;;34686:54;34798:8;34753:18;:32;34772:12;:10;:12::i;:::-;34753:32;;;;;;;;;;;;;;;:42;34786:8;34753:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34851:8;34822:48;;34837:12;:10;:12::i;:::-;34822:48;;;34861:8;34822:48;;;;;;:::i;:::-;;;;;;;;34591:287;;:::o;50107:130::-;7037:12;:10;:12::i;:::-;7026:23;;:7;:5;:7::i;:::-;:23;;;7018:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50212:19:::1;50191:18;:40;;;;50107:130:::0;:::o;35677:369::-;35844:28;35854:4;35860:2;35864:7;35844:9;:28::i;:::-;35887:15;:2;:13;;;:15::i;:::-;:76;;;;;35907:56;35938:4;35944:2;35948:7;35957:5;35907:30;:56::i;:::-;35906:57;35887:76;35883:156;;;35987:40;;;;;;;;;;;;;;35883:156;35677:369;;;;:::o;47998:29::-;;;;:::o;50721:373::-;50795:13;50825:17;50833:8;50825:7;:17::i;:::-;50817:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;50903:28;50934:10;:8;:10::i;:::-;50903:41;;50989:1;50964:14;50958:28;:32;:130;;;;;;;;;;;;;;;;;51026:14;51042:19;:8;:17;:19::i;:::-;51063:9;51009:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50958:130;50951:137;;;50721:373;;;:::o;47784:31::-;;;;:::o;49266:107::-;49324:7;49347:20;49361:5;49347:13;:20::i;:::-;49340:27;;49266:107;;;:::o;49666:106::-;7037:12;:10;:12::i;:::-;7026:23;;:7;:5;:7::i;:::-;:23;;;7018:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49753:13:::1;49738:12;:28;;;;49666:106:::0;:::o;49562:98::-;7037:12;:10;:12::i;:::-;7026:23;;:7;:5;:7::i;:::-;:23;;;7018:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49643:11:::1;49630:10;:24;;;;49562:98:::0;:::o;34949:164::-;35046:4;35070:18;:25;35089:5;35070:25;;;;;;;;;;;;;;;:35;35096:8;35070:35;;;;;;;;;;;;;;;;;;;;;;;;;35063:42;;34949:164;;;;:::o;7715:201::-;7037:12;:10;:12::i;:::-;7026:23;;:7;:5;:7::i;:::-;:23;;;7018:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7824:1:::1;7804:22;;:8;:22;;::::0;7796:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;7880:28;7899:8;7880:18;:28::i;:::-;7715:201:::0;:::o;19590:157::-;19675:4;19714:25;19699:40;;;:11;:40;;;;19692:47;;19590:157;;;:::o;36301:174::-;36358:4;36401:7;36382:15;:13;:15::i;:::-;:26;;:53;;;;;36422:13;;36412:7;:23;36382:53;:85;;;;;36440:11;:20;36452:7;36440:20;;;;;;;;;;;:27;;;;;;;;;;;;36439:28;36382:85;36375:92;;36301:174;;;:::o;5530:98::-;5583:7;5610:10;5603:17;;5530:98;:::o;44458:196::-;44600:2;44573:15;:24;44589:7;44573:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44638:7;44634:2;44618:28;;44627:5;44618:28;;;;;;;;;;;;44458:196;;;:::o;49878:95::-;49943:7;49966:1;49959:8;;49878:95;:::o;39401:2130::-;39516:35;39554:21;39567:7;39554:12;:21::i;:::-;39516:59;;39614:4;39592:26;;:13;:18;;;:26;;;39588:67;;39627:28;;;;;;;;;;;;;;39588:67;39668:22;39710:4;39694:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;39731:36;39748:4;39754:12;:10;:12::i;:::-;39731:16;:36::i;:::-;39694:73;:126;;;;39808:12;:10;:12::i;:::-;39784:36;;:20;39796:7;39784:11;:20::i;:::-;:36;;;39694:126;39668:153;;39839:17;39834:66;;39865:35;;;;;;;;;;;;;;39834:66;39929:1;39915:16;;:2;:16;;;39911:52;;39940:23;;;;;;;;;;;;;;39911:52;39976:43;39998:4;40004:2;40008:7;40017:1;39976:21;:43::i;:::-;40084:35;40101:1;40105:7;40114:4;40084:8;:35::i;:::-;40445:1;40415:12;:18;40428:4;40415:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40489:1;40461:12;:16;40474:2;40461:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40507:31;40541:11;:20;40553:7;40541:20;;;;;;;;;;;40507:54;;40592:2;40576:8;:13;;;:18;;;;;;;;;;;;;;;;;;40642:15;40609:8;:23;;;:49;;;;;;;;;;;;;;;;;;40910:19;40942:1;40932:7;:11;40910:33;;40958:31;40992:11;:24;41004:11;40992:24;;;;;;;;;;;40958:58;;41060:1;41035:27;;:8;:13;;;;;;;;;;;;:27;;;41031:384;;41245:13;;41230:11;:28;41226:174;;41299:4;41283:8;:13;;;:20;;;;;;;;;;;;;;;;;;41352:13;:28;;;41326:8;:23;;;:54;;;;;;;;;;;;;;;;;;41226:174;41031:384;40390:1036;;;41462:7;41458:2;41443:27;;41452:4;41443:27;;;;;;;;;;;;41481:42;41502:4;41508:2;41512:7;41521:1;41481:20;:42::i;:::-;39505:2026;;39401:2130;;;:::o;36483:104::-;36552:27;36562:2;36566:8;36552:27;;;;;;;;;;;;:9;:27::i;:::-;36483:104;;:::o;31449:1109::-;31511:21;;:::i;:::-;31545:12;31560:7;31545:22;;31628:4;31609:15;:13;:15::i;:::-;:23;;:47;;;;;31643:13;;31636:4;:20;31609:47;31605:886;;;31677:31;31711:11;:17;31723:4;31711:17;;;;;;;;;;;31677:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31752:9;:16;;;31747:729;;31823:1;31797:28;;:9;:14;;;:28;;;31793:101;;31861:9;31854:16;;;;;;31793:101;32196:261;32203:4;32196:261;;;32236:6;;;;;;;;32281:11;:17;32293:4;32281:17;;;;;;;;;;;32269:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32355:1;32329:28;;:9;:14;;;:28;;;32325:109;;32397:9;32390:16;;;;;;32325:109;32196:261;;;31747:729;31658:833;31605:886;32519:31;;;;;;;;;;;;;;31449:1109;;;;:::o;8076:191::-;8150:16;8169:6;;;;;;;;;;;8150:25;;8195:8;8186:6;;:17;;;;;;;;;;;;;;;;;;8250:8;8219:40;;8240:8;8219:40;;;;;;;;;;;;8139:128;8076:191;:::o;9507:326::-;9567:4;9824:1;9802:7;:19;;;:23;9795:30;;9507:326;;;:::o;45146:667::-;45309:4;45346:2;45330:36;;;45367:12;:10;:12::i;:::-;45381:4;45387:7;45396:5;45330:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45326:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45581:1;45564:6;:13;:18;45560:235;;45610:40;;;;;;;;;;;;;;45560:235;45753:6;45747:13;45738:6;45734:2;45730:15;45723:38;45326:480;45459:45;;;45449:55;;;:6;:55;;;;45442:62;;;45146:667;;;;;;:::o;50611:104::-;50671:13;50700:9;50693:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50611:104;:::o;3092:723::-;3148:13;3378:1;3369:5;:10;3365:53;;3396:10;;;;;;;;;;;;;;;;;;;;;3365:53;3428:12;3443:5;3428:20;;3459:14;3484:78;3499:1;3491:4;:9;3484:78;;3517:8;;;;;:::i;:::-;;;;3548:2;3540:10;;;;;:::i;:::-;;;3484:78;;;3572:19;3604:6;3594:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3572:39;;3622:154;3638:1;3629:5;:10;3622:154;;3666:1;3656:11;;;;;:::i;:::-;;;3733:2;3725:5;:10;;;;:::i;:::-;3712:2;:24;;;;:::i;:::-;3699:39;;3682:6;3689;3682:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3762:2;3753:11;;;;;:::i;:::-;;;3622:154;;;3800:6;3786:21;;;;;3092:723;;;;:::o;30356:137::-;30417:7;30452:12;:19;30465:5;30452:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;30444:41;;30437:48;;30356:137;;;:::o;46461:159::-;;;;;:::o;47279:158::-;;;;;:::o;36950:163::-;37073:32;37079:2;37083:8;37093:5;37100:4;37073:5;:32::i;:::-;36950:163;;;:::o;37372:1775::-;37511:20;37534:13;;37511:36;;37576:1;37562:16;;:2;:16;;;37558:48;;37587:19;;;;;;;;;;;;;;37558:48;37633:1;37621:8;:13;37617:44;;37643:18;;;;;;;;;;;;;;37617:44;37674:61;37704:1;37708:2;37712:12;37726:8;37674:21;:61::i;:::-;38047:8;38012:12;:16;38025:2;38012:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38111:8;38071:12;:16;38084:2;38071:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38170:2;38137:11;:25;38149:12;38137:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38237:15;38187:11;:25;38199:12;38187:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38270:20;38293:12;38270:35;;38320:11;38349:8;38334:12;:23;38320:37;;38378:4;:23;;;;;38386:15;:2;:13;;;:15::i;:::-;38378:23;38374:641;;;38422:314;38478:12;38474:2;38453:38;;38470:1;38453:38;;;;;;;;;;;;38519:69;38558:1;38562:2;38566:14;;;;;;38582:5;38519:30;:69::i;:::-;38514:174;;38624:40;;;;;;;;;;;;;;38514:174;38731:3;38715:12;:19;38422:314;;38817:12;38800:13;;:29;38796:43;;38831:8;;;38796:43;38374:641;;;38880:120;38936:14;;;;;;38932:2;38911:40;;38928:1;38911:40;;;;;;;;;;;;38995:3;38979:12;:19;38880:120;;38374:641;39045:12;39029:13;:28;;;;37987:1082;;39079:60;39108:1;39112:2;39116:12;39130:8;39079:20;:60::i;:::-;37500:1647;37372: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:474::-;8604:6;8612;8661:2;8649:9;8640:7;8636:23;8632:32;8629:119;;;8667:79;;:::i;:::-;8629:119;8787:1;8812:53;8857:7;8848:6;8837:9;8833:22;8812:53;:::i;:::-;8802:63;;8758:117;8914:2;8940:53;8985:7;8976:6;8965:9;8961:22;8940:53;:::i;:::-;8930:63;;8885:118;8536:474;;;;;:::o;9016:329::-;9075:6;9124:2;9112:9;9103:7;9099:23;9095:32;9092:119;;;9130:79;;:::i;:::-;9092:119;9250:1;9275:53;9320:7;9311:6;9300:9;9296:22;9275:53;:::i;:::-;9265:63;;9221:117;9016:329;;;;:::o;9351:116::-;9421:21;9436:5;9421:21;:::i;:::-;9414:5;9411:32;9401:60;;9457:1;9454;9447:12;9401:60;9351:116;:::o;9473:133::-;9516:5;9554:6;9541:20;9532:29;;9570:30;9594:5;9570:30;:::i;:::-;9473:133;;;;:::o;9612:468::-;9677:6;9685;9734:2;9722:9;9713:7;9709:23;9705:32;9702:119;;;9740:79;;:::i;:::-;9702:119;9860:1;9885:53;9930:7;9921:6;9910:9;9906:22;9885:53;:::i;:::-;9875:63;;9831:117;9987:2;10013:50;10055:7;10046:6;10035:9;10031:22;10013:50;:::i;:::-;10003:60;;9958:115;9612:468;;;;;:::o;10086:307::-;10147:4;10237:18;10229:6;10226:30;10223:56;;;10259:18;;:::i;:::-;10223:56;10297:29;10319:6;10297:29;:::i;:::-;10289:37;;10381:4;10375;10371:15;10363:23;;10086:307;;;:::o;10399:410::-;10476:5;10501:65;10517:48;10558:6;10517:48;:::i;:::-;10501:65;:::i;:::-;10492:74;;10589:6;10582:5;10575:21;10627:4;10620:5;10616:16;10665:3;10656:6;10651:3;10647:16;10644:25;10641:112;;;10672:79;;:::i;:::-;10641:112;10762:41;10796:6;10791:3;10786;10762:41;:::i;:::-;10482:327;10399:410;;;;;:::o;10828:338::-;10883:5;10932:3;10925:4;10917:6;10913:17;10909:27;10899:122;;10940:79;;:::i;:::-;10899:122;11057:6;11044:20;11082:78;11156:3;11148:6;11141:4;11133:6;11129:17;11082:78;:::i;:::-;11073:87;;10889:277;10828:338;;;;:::o;11172:943::-;11267:6;11275;11283;11291;11340:3;11328:9;11319:7;11315:23;11311:33;11308:120;;;11347:79;;:::i;:::-;11308:120;11467:1;11492:53;11537:7;11528:6;11517:9;11513:22;11492:53;:::i;:::-;11482:63;;11438:117;11594:2;11620:53;11665:7;11656:6;11645:9;11641:22;11620:53;:::i;:::-;11610:63;;11565:118;11722:2;11748:53;11793:7;11784:6;11773:9;11769:22;11748:53;:::i;:::-;11738:63;;11693:118;11878:2;11867:9;11863:18;11850:32;11909:18;11901:6;11898:30;11895:117;;;11931:79;;:::i;:::-;11895:117;12036:62;12090:7;12081:6;12070:9;12066:22;12036:62;:::i;:::-;12026:72;;11821:287;11172:943;;;;;;;:::o;12121:474::-;12189:6;12197;12246:2;12234:9;12225:7;12221:23;12217:32;12214:119;;;12252:79;;:::i;:::-;12214:119;12372:1;12397:53;12442:7;12433:6;12422:9;12418:22;12397:53;:::i;:::-;12387:63;;12343:117;12499:2;12525:53;12570:7;12561:6;12550:9;12546:22;12525:53;:::i;:::-;12515:63;;12470:118;12121:474;;;;;:::o;12601:180::-;12649:77;12646:1;12639:88;12746:4;12743:1;12736:15;12770:4;12767:1;12760:15;12787:320;12831:6;12868:1;12862:4;12858:12;12848:22;;12915:1;12909:4;12905:12;12936:18;12926:81;;12992:4;12984:6;12980:17;12970:27;;12926:81;13054:2;13046:6;13043:14;13023:18;13020:38;13017:84;;13073:18;;:::i;:::-;13017:84;12838:269;12787:320;;;:::o;13113:182::-;13253:34;13249:1;13241:6;13237:14;13230:58;13113:182;:::o;13301:366::-;13443:3;13464:67;13528:2;13523:3;13464:67;:::i;:::-;13457:74;;13540:93;13629:3;13540:93;:::i;:::-;13658:2;13653:3;13649:12;13642:19;;13301:366;;;:::o;13673:419::-;13839:4;13877:2;13866:9;13862:18;13854:26;;13926:9;13920:4;13916:20;13912:1;13901:9;13897:17;13890:47;13954:131;14080:4;13954:131;:::i;:::-;13946:139;;13673:419;;;:::o;14098:181::-;14238:33;14234:1;14226:6;14222:14;14215:57;14098:181;:::o;14285:366::-;14427:3;14448:67;14512:2;14507:3;14448:67;:::i;:::-;14441:74;;14524:93;14613:3;14524:93;:::i;:::-;14642:2;14637:3;14633:12;14626:19;;14285:366;;;:::o;14657:419::-;14823:4;14861:2;14850:9;14846:18;14838:26;;14910:9;14904:4;14900:20;14896:1;14885:9;14881:17;14874:47;14938:131;15064:4;14938:131;:::i;:::-;14930:139;;14657:419;;;:::o;15082:147::-;15183:11;15220:3;15205:18;;15082:147;;;;:::o;15235:114::-;;:::o;15355:398::-;15514:3;15535:83;15616:1;15611:3;15535:83;:::i;:::-;15528:90;;15627:93;15716:3;15627:93;:::i;:::-;15745:1;15740:3;15736:11;15729:18;;15355:398;;;:::o;15759:379::-;15943:3;15965:147;16108:3;15965:147;:::i;:::-;15958:154;;16129:3;16122:10;;15759:379;;;:::o;16144:170::-;16284:22;16280:1;16272:6;16268:14;16261:46;16144:170;:::o;16320:366::-;16462:3;16483:67;16547:2;16542:3;16483:67;:::i;:::-;16476:74;;16559:93;16648:3;16559:93;:::i;:::-;16677:2;16672:3;16668:12;16661:19;;16320:366;;;:::o;16692:419::-;16858:4;16896:2;16885:9;16881:18;16873:26;;16945:9;16939:4;16935:20;16931:1;16920:9;16916:17;16909:47;16973:131;17099:4;16973:131;:::i;:::-;16965:139;;16692:419;;;:::o;17117:180::-;17165:77;17162:1;17155:88;17262:4;17259:1;17252:15;17286:4;17283:1;17276:15;17303:305;17343:3;17362:20;17380:1;17362:20;:::i;:::-;17357:25;;17396:20;17414:1;17396:20;:::i;:::-;17391:25;;17550:1;17482:66;17478:74;17475:1;17472:81;17469:107;;;17556:18;;:::i;:::-;17469:107;17600:1;17597;17593:9;17586:16;;17303:305;;;;:::o;17614:170::-;17754:22;17750:1;17742:6;17738:14;17731:46;17614:170;:::o;17790:366::-;17932:3;17953:67;18017:2;18012:3;17953:67;:::i;:::-;17946:74;;18029:93;18118:3;18029:93;:::i;:::-;18147:2;18142:3;18138:12;18131:19;;17790:366;;;:::o;18162:419::-;18328:4;18366:2;18355:9;18351:18;18343:26;;18415:9;18409:4;18405:20;18401:1;18390:9;18386:17;18379:47;18443:131;18569:4;18443:131;:::i;:::-;18435:139;;18162:419;;;:::o;18587:348::-;18627:7;18650:20;18668:1;18650:20;:::i;:::-;18645:25;;18684:20;18702:1;18684:20;:::i;:::-;18679:25;;18872:1;18804:66;18800:74;18797:1;18794:81;18789:1;18782:9;18775:17;18771:105;18768:131;;;18879:18;;:::i;:::-;18768:131;18927:1;18924;18920:9;18909:20;;18587:348;;;;:::o;18941:169::-;19081:21;19077:1;19069:6;19065:14;19058:45;18941:169;:::o;19116:366::-;19258:3;19279:67;19343:2;19338:3;19279:67;:::i;:::-;19272:74;;19355:93;19444:3;19355:93;:::i;:::-;19473:2;19468:3;19464:12;19457:19;;19116:366;;;:::o;19488:419::-;19654:4;19692:2;19681:9;19677:18;19669:26;;19741:9;19735:4;19731:20;19727:1;19716:9;19712:17;19705:47;19769:131;19895:4;19769:131;:::i;:::-;19761:139;;19488:419;;;:::o;19913:168::-;20053:20;20049:1;20041:6;20037:14;20030:44;19913:168;:::o;20087:366::-;20229:3;20250:67;20314:2;20309:3;20250:67;:::i;:::-;20243:74;;20326:93;20415:3;20326:93;:::i;:::-;20444:2;20439:3;20435:12;20428:19;;20087:366;;;:::o;20459:419::-;20625:4;20663:2;20652:9;20648:18;20640:26;;20712:9;20706:4;20702:20;20698:1;20687:9;20683:17;20676:47;20740:131;20866:4;20740:131;:::i;:::-;20732:139;;20459:419;;;:::o;20884:308::-;21024:34;21020:1;21012:6;21008:14;21001:58;21093:34;21088:2;21080:6;21076:15;21069:59;21162:22;21157:2;21149:6;21145:15;21138:47;20884:308;:::o;21198:366::-;21340:3;21361:67;21425:2;21420:3;21361:67;:::i;:::-;21354:74;;21437:93;21526:3;21437:93;:::i;:::-;21555:2;21550:3;21546:12;21539:19;;21198:366;;;:::o;21570:419::-;21736:4;21774:2;21763:9;21759:18;21751:26;;21823:9;21817:4;21813:20;21809:1;21798:9;21794:17;21787:47;21851:131;21977:4;21851:131;:::i;:::-;21843:139;;21570:419;;;:::o;21995:169::-;22135:21;22131:1;22123:6;22119:14;22112:45;21995:169;:::o;22170:366::-;22312:3;22333:67;22397:2;22392:3;22333:67;:::i;:::-;22326:74;;22409:93;22498:3;22409:93;:::i;:::-;22527:2;22522:3;22518:12;22511:19;;22170:366;;;:::o;22542:419::-;22708:4;22746:2;22735:9;22731:18;22723:26;;22795:9;22789:4;22785:20;22781:1;22770:9;22766:17;22759:47;22823:131;22949:4;22823:131;:::i;:::-;22815:139;;22542:419;;;:::o;22967:234::-;23107:34;23103:1;23095:6;23091:14;23084:58;23176:17;23171:2;23163:6;23159:15;23152:42;22967:234;:::o;23207:366::-;23349:3;23370:67;23434:2;23429:3;23370:67;:::i;:::-;23363:74;;23446:93;23535:3;23446:93;:::i;:::-;23564:2;23559:3;23555:12;23548:19;;23207:366;;;:::o;23579:419::-;23745:4;23783:2;23772:9;23768:18;23760:26;;23832:9;23826:4;23822:20;23818:1;23807:9;23803:17;23796:47;23860:131;23986:4;23860:131;:::i;:::-;23852:139;;23579:419;;;:::o;24004:148::-;24106:11;24143:3;24128:18;;24004:148;;;;:::o;24158:377::-;24264:3;24292:39;24325:5;24292:39;:::i;:::-;24347:89;24429:6;24424:3;24347:89;:::i;:::-;24340:96;;24445:52;24490:6;24485:3;24478:4;24471:5;24467:16;24445:52;:::i;:::-;24522:6;24517:3;24513:16;24506:23;;24268:267;24158:377;;;;:::o;24541:141::-;24590:4;24613:3;24605:11;;24636:3;24633:1;24626:14;24670:4;24667:1;24657:18;24649:26;;24541:141;;;:::o;24712:845::-;24815:3;24852:5;24846:12;24881:36;24907:9;24881:36;:::i;:::-;24933:89;25015:6;25010:3;24933:89;:::i;:::-;24926:96;;25053:1;25042:9;25038:17;25069:1;25064:137;;;;25215:1;25210:341;;;;25031:520;;25064:137;25148:4;25144:9;25133;25129:25;25124:3;25117:38;25184:6;25179:3;25175:16;25168:23;;25064:137;;25210:341;25277:38;25309:5;25277:38;:::i;:::-;25337:1;25351:154;25365:6;25362:1;25359:13;25351:154;;;25439:7;25433:14;25429:1;25424:3;25420:11;25413:35;25489:1;25480:7;25476:15;25465:26;;25387:4;25384:1;25380:12;25375:17;;25351:154;;;25534:6;25529:3;25525:16;25518:23;;25217:334;;25031:520;;24819:738;;24712:845;;;;:::o;25563:589::-;25788:3;25810:95;25901:3;25892:6;25810:95;:::i;:::-;25803:102;;25922:95;26013:3;26004:6;25922:95;:::i;:::-;25915:102;;26034:92;26122:3;26113:6;26034:92;:::i;:::-;26027:99;;26143:3;26136:10;;25563:589;;;;;;:::o;26158:225::-;26298:34;26294:1;26286:6;26282:14;26275:58;26367:8;26362:2;26354:6;26350:15;26343:33;26158:225;:::o;26389:366::-;26531:3;26552:67;26616:2;26611:3;26552:67;:::i;:::-;26545:74;;26628:93;26717:3;26628:93;:::i;:::-;26746:2;26741:3;26737:12;26730:19;;26389:366;;;:::o;26761:419::-;26927:4;26965:2;26954:9;26950:18;26942:26;;27014:9;27008:4;27004:20;27000:1;26989:9;26985:17;26978:47;27042:131;27168:4;27042:131;:::i;:::-;27034:139;;26761:419;;;:::o;27186:98::-;27237:6;27271:5;27265:12;27255:22;;27186:98;;;:::o;27290:168::-;27373:11;27407:6;27402:3;27395:19;27447:4;27442:3;27438:14;27423:29;;27290:168;;;;:::o;27464:360::-;27550:3;27578:38;27610:5;27578:38;:::i;:::-;27632:70;27695:6;27690:3;27632:70;:::i;:::-;27625:77;;27711:52;27756:6;27751:3;27744:4;27737:5;27733:16;27711:52;:::i;:::-;27788:29;27810:6;27788:29;:::i;:::-;27783:3;27779:39;27772:46;;27554:270;27464:360;;;;:::o;27830:640::-;28025:4;28063:3;28052:9;28048:19;28040:27;;28077:71;28145:1;28134:9;28130:17;28121:6;28077:71;:::i;:::-;28158:72;28226:2;28215:9;28211:18;28202:6;28158:72;:::i;:::-;28240;28308:2;28297:9;28293:18;28284:6;28240:72;:::i;:::-;28359:9;28353:4;28349:20;28344:2;28333:9;28329:18;28322:48;28387:76;28458:4;28449:6;28387:76;:::i;:::-;28379:84;;27830:640;;;;;;;:::o;28476:141::-;28532:5;28563:6;28557:13;28548:22;;28579:32;28605:5;28579:32;:::i;:::-;28476:141;;;;:::o;28623:349::-;28692:6;28741:2;28729:9;28720:7;28716:23;28712:32;28709:119;;;28747:79;;:::i;:::-;28709:119;28867:1;28892:63;28947:7;28938:6;28927:9;28923:22;28892:63;:::i;:::-;28882:73;;28838:127;28623:349;;;;:::o;28978:233::-;29017:3;29040:24;29058:5;29040:24;:::i;:::-;29031:33;;29086:66;29079:5;29076:77;29073:103;;29156:18;;:::i;:::-;29073:103;29203:1;29196:5;29192:13;29185:20;;28978:233;;;:::o;29217:180::-;29265:77;29262:1;29255:88;29362:4;29359:1;29352:15;29386:4;29383:1;29376:15;29403:185;29443:1;29460:20;29478:1;29460:20;:::i;:::-;29455:25;;29494:20;29512:1;29494:20;:::i;:::-;29489:25;;29533:1;29523:35;;29538:18;;:::i;:::-;29523:35;29580:1;29577;29573:9;29568:14;;29403:185;;;;:::o;29594:191::-;29634:4;29654:20;29672:1;29654:20;:::i;:::-;29649:25;;29688:20;29706:1;29688:20;:::i;:::-;29683:25;;29727:1;29724;29721:8;29718:34;;;29732:18;;:::i;:::-;29718:34;29777:1;29774;29770:9;29762:17;;29594:191;;;;:::o;29791:176::-;29823:1;29840:20;29858:1;29840:20;:::i;:::-;29835:25;;29874:20;29892:1;29874:20;:::i;:::-;29869:25;;29913:1;29903:35;;29918:18;;:::i;:::-;29903:35;29959:1;29956;29952:9;29947:14;;29791:176;;;;:::o;29973:180::-;30021:77;30018:1;30011:88;30118:4;30115:1;30108:15;30142:4;30139:1;30132:15

Swarm Source

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