ETH Price: $3,393.20 (+4.46%)
Gas: 3 Gwei

Token

MoonBear Official (MBO)
 

Overview

Max Total Supply

3,000 MBO

Holders

993

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
*0x没想到你第一个文件直接把excel和exe连起来了.eth
Balance
3 MBO
0x254bfd20fe4a9fc6b62ac7589063d3228b8ce3e6
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MoonBearOfficial

Compiler Version
v0.8.11+commit.d7f03943

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-25
*/

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

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

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

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

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

// 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: 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 1;
    }

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        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 (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 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) 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;

            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 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/GossamerGods.sol



pragma solidity ^0.8.0;





contract MoonBearOfficial is ERC721A, Ownable, ReentrancyGuard {
  using Address for address;
  using Strings for uint;


  string  public  baseTokenURI = "ipfs://QmYEaSXYHexBfj4saBC4dSnCnThdKFDrcWU45RmErU7sGL/";
  uint256  public  maxSupply = 3000;
  uint256 public  MAX_MINTS_PER_TX = 5;
  uint256 public  PUBLIC_SALE_PRICE = 0.004 ether;
  uint256 public  NUM_FREE_MINTS = 1000;
  uint256 public  MAX_FREE_PER_WALLET = 3;
  uint256 public freeNFTAlreadyMinted = 0;
  bool public isPublicSaleActive = true;

  constructor(

  ) ERC721A("MoonBear Official", "MBO") {

  }


  function mint(uint256 numberOfTokens)
      external
      payable
  {
    require(isPublicSaleActive, "Public sale is not open");
    require(totalSupply() + numberOfTokens < maxSupply + 1, "No more");

    if(freeNFTAlreadyMinted + numberOfTokens > NUM_FREE_MINTS){
        require(
            (PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value,
            "Incorrect ETH value sent"
        );
    } else {
        if (balanceOf(msg.sender) + numberOfTokens > MAX_FREE_PER_WALLET) {
        require(
            (PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value,
            "Incorrect ETH value sent"
        );
        require(
            numberOfTokens <= MAX_MINTS_PER_TX,
            "Max mints per transaction exceeded"
        );
        } else {
            require(
                numberOfTokens <= MAX_FREE_PER_WALLET,
                "Max mints per transaction exceeded"
            );
            freeNFTAlreadyMinted += numberOfTokens;
        }
    }
    _safeMint(msg.sender, numberOfTokens);
  }

  function setBaseURI(string memory baseURI)
    public
    onlyOwner
  {
    baseTokenURI = baseURI;
  }

  function treasuryMint(uint quantity)
    public
    onlyOwner
  {
    require(
      quantity > 0,
      "Invalid mint amount"
    );
    require(
      totalSupply() + quantity <= maxSupply,
      "Maximum supply exceeded"
    );
    _safeMint(msg.sender, quantity);
  }

  function withdraw()
    public
    onlyOwner
    nonReentrant
  {
    Address.sendValue(payable(msg.sender), address(this).balance);
  }

  function tokenURI(uint _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    return string(abi.encodePacked(baseTokenURI, "/", _tokenId.toString(), ".json"));
  }

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

  function setIsPublicSaleActive(bool _isPublicSaleActive)
      external
      onlyOwner
  {
      isPublicSaleActive = _isPublicSaleActive;
  }

  function setNumFreeMints(uint256 _numfreemints)
      external
      onlyOwner
  {
      NUM_FREE_MINTS = _numfreemints;
  }

  function setSalePrice(uint256 _price)
      external
      onlyOwner
  {
      PUBLIC_SALE_PRICE = _price;
  }

  function setMaxLimitPerTransaction(uint256 _limit)
      external
      onlyOwner
  {
      MAX_MINTS_PER_TX = _limit;
  }

  function setFreeLimitPerWallet(uint256 _limit)
      external
      onlyOwner
  {
      MAX_FREE_PER_WALLET = _limit;
  }
}

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":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeNFTAlreadyMinted","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":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setFreeLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060600160405280603681526020016200410d60369139600a90805190602001906200003592919062000240565b50610bb8600b556005600c55660e35fa931a0000600d556103e8600e556003600f5560006010556001601160006101000a81548160ff0219169083151502179055503480156200008457600080fd5b506040518060400160405280601181526020017f4d6f6f6e42656172204f6666696369616c0000000000000000000000000000008152506040518060400160405280600381526020017f4d424f000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200010992919062000240565b5080600390805190602001906200012292919062000240565b50620001336200016960201b60201c565b60008190555050506200015b6200014f6200017260201b60201c565b6200017a60201b60201c565b600160098190555062000355565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024e906200031f565b90600052602060002090601f016020900481019282620002725760008555620002be565b82601f106200028d57805160ff1916838001178555620002be565b82800160010185558215620002be579182015b82811115620002bd578251825591602001919060010190620002a0565b5b509050620002cd9190620002d1565b5090565b5b80821115620002ec576000816000905550600101620002d2565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200033857607f821691505b602082108114156200034f576200034e620002f0565b5b50919050565b613da880620003656000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063d547cfb71161006f578063d547cfb7146106ea578063d5abeb0114610715578063e985e9c514610740578063efdc77881461077d578063f2fde38b146107a6576101f9565b8063a22cb46514610630578063b88d4fde14610659578063c6a91b4214610682578063c87b56dd146106ad576101f9565b8063982d669e116100dc578063982d669e1461059557806398710d1e146105c05780639e9fcffc146105eb578063a0712d6814610614576101f9565b806370a08231146104eb578063715018a6146105285780638da5cb5b1461053f57806395d89b411461056a576101f9565b8063193ad7b41161019057806328cad13d1161015f57806328cad13d1461041c5780633ccfd60b1461044557806342842e0e1461045c57806355f804b3146104855780636352211e146104ae576101f9565b8063193ad7b4146103745780631e84c4131461039f578063202f298a146103ca57806323b872dd146103f3576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce5780630a00ae83146102f757806318160ddd146103205780631919fed71461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b57806307e89ec014610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612c14565b6107cf565b6040516102329190612c5c565b60405180910390f35b34801561024757600080fd5b506102506108b1565b60405161025d9190612d10565b60405180910390f35b34801561027257600080fd5b5061027b610943565b6040516102889190612d4b565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b39190612d92565b610949565b6040516102c59190612e00565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f09190612e47565b6109c5565b005b34801561030357600080fd5b5061031e60048036038101906103199190612d92565b610ad0565b005b34801561032c57600080fd5b50610335610b56565b6040516103429190612d4b565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d9190612d92565b610b6d565b005b34801561038057600080fd5b50610389610bf3565b6040516103969190612d4b565b60405180910390f35b3480156103ab57600080fd5b506103b4610bf9565b6040516103c19190612c5c565b60405180910390f35b3480156103d657600080fd5b506103f160048036038101906103ec9190612d92565b610c0c565b005b3480156103ff57600080fd5b5061041a60048036038101906104159190612e87565b610c92565b005b34801561042857600080fd5b50610443600480360381019061043e9190612f06565b610ca2565b005b34801561045157600080fd5b5061045a610d3b565b005b34801561046857600080fd5b50610483600480360381019061047e9190612e87565b610e19565b005b34801561049157600080fd5b506104ac60048036038101906104a79190613068565b610e39565b005b3480156104ba57600080fd5b506104d560048036038101906104d09190612d92565b610ecf565b6040516104e29190612e00565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d91906130b1565b610ee5565b60405161051f9190612d4b565b60405180910390f35b34801561053457600080fd5b5061053d610fb5565b005b34801561054b57600080fd5b5061055461103d565b6040516105619190612e00565b60405180910390f35b34801561057657600080fd5b5061057f611067565b60405161058c9190612d10565b60405180910390f35b3480156105a157600080fd5b506105aa6110f9565b6040516105b79190612d4b565b60405180910390f35b3480156105cc57600080fd5b506105d56110ff565b6040516105e29190612d4b565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190612d92565b611105565b005b61062e60048036038101906106299190612d92565b61118b565b005b34801561063c57600080fd5b50610657600480360381019061065291906130de565b6113cc565b005b34801561066557600080fd5b50610680600480360381019061067b91906131bf565b611544565b005b34801561068e57600080fd5b506106976115c0565b6040516106a49190612d4b565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf9190612d92565b6115c6565b6040516106e19190612d10565b60405180910390f35b3480156106f657600080fd5b506106ff611642565b60405161070c9190612d10565b60405180910390f35b34801561072157600080fd5b5061072a6116d0565b6040516107379190612d4b565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190613242565b6116d6565b6040516107749190612c5c565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f9190612d92565b61176a565b005b3480156107b257600080fd5b506107cd60048036038101906107c891906130b1565b61188d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108aa57506108a982611985565b5b9050919050565b6060600280546108c0906132b1565b80601f01602080910402602001604051908101604052809291908181526020018280546108ec906132b1565b80156109395780601f1061090e57610100808354040283529160200191610939565b820191906000526020600020905b81548152906001019060200180831161091c57829003601f168201915b5050505050905090565b600d5481565b6000610954826119ef565b61098a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109d082610ecf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a38576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a57611a3d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a895750610a8781610a82611a3d565b6116d6565b155b15610ac0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610acb838383611a45565b505050565b610ad8611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610af661103d565b73ffffffffffffffffffffffffffffffffffffffff1614610b4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b439061332f565b60405180910390fd5b80600e8190555050565b6000610b60611af7565b6001546000540303905090565b610b75611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610b9361103d565b73ffffffffffffffffffffffffffffffffffffffff1614610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be09061332f565b60405180910390fd5b80600d8190555050565b60105481565b601160009054906101000a900460ff1681565b610c14611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610c3261103d565b73ffffffffffffffffffffffffffffffffffffffff1614610c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7f9061332f565b60405180910390fd5b80600f8190555050565b610c9d838383611b00565b505050565b610caa611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610cc861103d565b73ffffffffffffffffffffffffffffffffffffffff1614610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d159061332f565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b610d43611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610d6161103d565b73ffffffffffffffffffffffffffffffffffffffff1614610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae9061332f565b60405180910390fd5b60026009541415610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df49061339b565b60405180910390fd5b6002600981905550610e0f3347611fb6565b6001600981905550565b610e3483838360405180602001604052806000815250611544565b505050565b610e41611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610e5f61103d565b73ffffffffffffffffffffffffffffffffffffffff1614610eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eac9061332f565b60405180910390fd5b80600a9080519060200190610ecb929190612ac2565b5050565b6000610eda826120aa565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f4d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fbd611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610fdb61103d565b73ffffffffffffffffffffffffffffffffffffffff1614611031576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110289061332f565b60405180910390fd5b61103b6000612339565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611076906132b1565b80601f01602080910402602001604051908101604052809291908181526020018280546110a2906132b1565b80156110ef5780601f106110c4576101008083540402835291602001916110ef565b820191906000526020600020905b8154815290600101906020018083116110d257829003601f168201915b5050505050905090565b600e5481565b600f5481565b61110d611a3d565b73ffffffffffffffffffffffffffffffffffffffff1661112b61103d565b73ffffffffffffffffffffffffffffffffffffffff1614611181576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111789061332f565b60405180910390fd5b80600c8190555050565b601160009054906101000a900460ff166111da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d190613407565b60405180910390fd5b6001600b546111e99190613456565b816111f2610b56565b6111fc9190613456565b1061123c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611233906134f8565b60405180910390fd5b600e548160105461124d9190613456565b11156112a8573481600d546112629190613518565b11156112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a906135be565b60405180910390fd5b6113bf565b600f54816112b533610ee5565b6112bf9190613456565b111561135f573481600d546112d49190613518565b1115611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130c906135be565b60405180910390fd5b600c5481111561135a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135190613650565b60405180910390fd5b6113be565b600f548111156113a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139b90613650565b60405180910390fd5b80601060008282546113b69190613456565b925050819055505b5b6113c933826123ff565b50565b6113d4611a3d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611439576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611446611a3d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114f3611a3d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115389190612c5c565b60405180910390a35050565b61154f848484611b00565b61156e8373ffffffffffffffffffffffffffffffffffffffff1661241d565b8015611583575061158184848484612440565b155b156115ba576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c5481565b60606115d1826119ef565b611610576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611607906136e2565b60405180910390fd5b600a61161b83612591565b60405160200161162c92919061386a565b6040516020818303038152906040529050919050565b600a805461164f906132b1565b80601f016020809104026020016040519081016040528092919081815260200182805461167b906132b1565b80156116c85780601f1061169d576101008083540402835291602001916116c8565b820191906000526020600020905b8154815290600101906020018083116116ab57829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611772611a3d565b73ffffffffffffffffffffffffffffffffffffffff1661179061103d565b73ffffffffffffffffffffffffffffffffffffffff16146117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd9061332f565b60405180910390fd5b60008111611829576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611820906138f0565b60405180910390fd5b600b5481611835610b56565b61183f9190613456565b1115611880576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118779061395c565b60405180910390fd5b61188a33826123ff565b50565b611895611a3d565b73ffffffffffffffffffffffffffffffffffffffff166118b361103d565b73ffffffffffffffffffffffffffffffffffffffff1614611909576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119009061332f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611979576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611970906139ee565b60405180910390fd5b61198281612339565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816119fa611af7565b11158015611a09575060005482105b8015611a36575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611b0b826120aa565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b76576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b97611a3d565b73ffffffffffffffffffffffffffffffffffffffff161480611bc65750611bc585611bc0611a3d565b6116d6565b5b80611c0b5750611bd4611a3d565b73ffffffffffffffffffffffffffffffffffffffff16611bf384610949565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c44576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cab576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cb885858560016126f2565b611cc460008487611a45565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f44576000548214611f4357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611faf85858560016126f8565b5050505050565b80471015611ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff090613a5a565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161201f90613aab565b60006040518083038185875af1925050503d806000811461205c576040519150601f19603f3d011682016040523d82523d6000602084013e612061565b606091505b50509050806120a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209c90613b32565b60405180910390fd5b505050565b6120b2612b48565b6000829050806120c0611af7565b111580156120cf575060005481105b15612302576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161230057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121e4578092505050612334565b5b6001156122ff57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122fa578092505050612334565b6121e5565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124198282604051806020016040528060008152506126fe565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612466611a3d565b8786866040518563ffffffff1660e01b81526004016124889493929190613ba7565b6020604051808303816000875af19250505080156124c457506040513d601f19601f820116820180604052508101906124c19190613c08565b60015b61253e573d80600081146124f4576040519150601f19603f3d011682016040523d82523d6000602084013e6124f9565b606091505b50600081511415612536576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156125d9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126ed565b600082905060005b6000821461260b5780806125f490613c35565b915050600a826126049190613cad565b91506125e1565b60008167ffffffffffffffff81111561262757612626612f3d565b5b6040519080825280601f01601f1916602001820160405280156126595781602001600182028036833780820191505090505b5090505b600085146126e6576001826126729190613cde565b9150600a856126819190613d12565b603061268d9190613456565b60f81b8183815181106126a3576126a2613d43565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126df9190613cad565b945061265d565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561276b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156127a6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127b360008583866126f2565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506129748673ffffffffffffffffffffffffffffffffffffffff1661241d565b15612a3a575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129e96000878480600101955087612440565b612a1f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561297a578260005414612a3557600080fd5b612aa6565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612a3b575b816000819055505050612abc60008583866126f8565b50505050565b828054612ace906132b1565b90600052602060002090601f016020900481019282612af05760008555612b37565b82601f10612b0957805160ff1916838001178555612b37565b82800160010185558215612b37579182015b82811115612b36578251825591602001919060010190612b1b565b5b509050612b449190612b8b565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612ba4576000816000905550600101612b8c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612bf181612bbc565b8114612bfc57600080fd5b50565b600081359050612c0e81612be8565b92915050565b600060208284031215612c2a57612c29612bb2565b5b6000612c3884828501612bff565b91505092915050565b60008115159050919050565b612c5681612c41565b82525050565b6000602082019050612c716000830184612c4d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612cb1578082015181840152602081019050612c96565b83811115612cc0576000848401525b50505050565b6000601f19601f8301169050919050565b6000612ce282612c77565b612cec8185612c82565b9350612cfc818560208601612c93565b612d0581612cc6565b840191505092915050565b60006020820190508181036000830152612d2a8184612cd7565b905092915050565b6000819050919050565b612d4581612d32565b82525050565b6000602082019050612d606000830184612d3c565b92915050565b612d6f81612d32565b8114612d7a57600080fd5b50565b600081359050612d8c81612d66565b92915050565b600060208284031215612da857612da7612bb2565b5b6000612db684828501612d7d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612dea82612dbf565b9050919050565b612dfa81612ddf565b82525050565b6000602082019050612e156000830184612df1565b92915050565b612e2481612ddf565b8114612e2f57600080fd5b50565b600081359050612e4181612e1b565b92915050565b60008060408385031215612e5e57612e5d612bb2565b5b6000612e6c85828601612e32565b9250506020612e7d85828601612d7d565b9150509250929050565b600080600060608486031215612ea057612e9f612bb2565b5b6000612eae86828701612e32565b9350506020612ebf86828701612e32565b9250506040612ed086828701612d7d565b9150509250925092565b612ee381612c41565b8114612eee57600080fd5b50565b600081359050612f0081612eda565b92915050565b600060208284031215612f1c57612f1b612bb2565b5b6000612f2a84828501612ef1565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f7582612cc6565b810181811067ffffffffffffffff82111715612f9457612f93612f3d565b5b80604052505050565b6000612fa7612ba8565b9050612fb38282612f6c565b919050565b600067ffffffffffffffff821115612fd357612fd2612f3d565b5b612fdc82612cc6565b9050602081019050919050565b82818337600083830152505050565b600061300b61300684612fb8565b612f9d565b90508281526020810184848401111561302757613026612f38565b5b613032848285612fe9565b509392505050565b600082601f83011261304f5761304e612f33565b5b813561305f848260208601612ff8565b91505092915050565b60006020828403121561307e5761307d612bb2565b5b600082013567ffffffffffffffff81111561309c5761309b612bb7565b5b6130a88482850161303a565b91505092915050565b6000602082840312156130c7576130c6612bb2565b5b60006130d584828501612e32565b91505092915050565b600080604083850312156130f5576130f4612bb2565b5b600061310385828601612e32565b925050602061311485828601612ef1565b9150509250929050565b600067ffffffffffffffff82111561313957613138612f3d565b5b61314282612cc6565b9050602081019050919050565b600061316261315d8461311e565b612f9d565b90508281526020810184848401111561317e5761317d612f38565b5b613189848285612fe9565b509392505050565b600082601f8301126131a6576131a5612f33565b5b81356131b684826020860161314f565b91505092915050565b600080600080608085870312156131d9576131d8612bb2565b5b60006131e787828801612e32565b94505060206131f887828801612e32565b935050604061320987828801612d7d565b925050606085013567ffffffffffffffff81111561322a57613229612bb7565b5b61323687828801613191565b91505092959194509250565b6000806040838503121561325957613258612bb2565b5b600061326785828601612e32565b925050602061327885828601612e32565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132c957607f821691505b602082108114156132dd576132dc613282565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613319602083612c82565b9150613324826132e3565b602082019050919050565b600060208201905081810360008301526133488161330c565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613385601f83612c82565b91506133908261334f565b602082019050919050565b600060208201905081810360008301526133b481613378565b9050919050565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b60006133f1601783612c82565b91506133fc826133bb565b602082019050919050565b60006020820190508181036000830152613420816133e4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061346182612d32565b915061346c83612d32565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134a1576134a0613427565b5b828201905092915050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b60006134e2600783612c82565b91506134ed826134ac565b602082019050919050565b60006020820190508181036000830152613511816134d5565b9050919050565b600061352382612d32565b915061352e83612d32565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561356757613566613427565b5b828202905092915050565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b60006135a8601883612c82565b91506135b382613572565b602082019050919050565b600060208201905081810360008301526135d78161359b565b9050919050565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b600061363a602283612c82565b9150613645826135de565b604082019050919050565b600060208201905081810360008301526136698161362d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006136cc602f83612c82565b91506136d782613670565b604082019050919050565b600060208201905081810360008301526136fb816136bf565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461372f816132b1565b6137398186613702565b94506001821660008114613754576001811461376557613798565b60ff19831686528186019350613798565b61376e8561370d565b60005b8381101561379057815481890152600182019150602081019050613771565b838801955050505b50505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b60006137d7600183613702565b91506137e2826137a1565b600182019050919050565b60006137f882612c77565b6138028185613702565b9350613812818560208601612c93565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613854600583613702565b915061385f8261381e565b600582019050919050565b60006138768285613722565b9150613881826137ca565b915061388d82846137ed565b915061389882613847565b91508190509392505050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b60006138da601383612c82565b91506138e5826138a4565b602082019050919050565b60006020820190508181036000830152613909816138cd565b9050919050565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b6000613946601783612c82565b915061395182613910565b602082019050919050565b6000602082019050818103600083015261397581613939565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006139d8602683612c82565b91506139e38261397c565b604082019050919050565b60006020820190508181036000830152613a07816139cb565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613a44601d83612c82565b9150613a4f82613a0e565b602082019050919050565b60006020820190508181036000830152613a7381613a37565b9050919050565b600081905092915050565b50565b6000613a95600083613a7a565b9150613aa082613a85565b600082019050919050565b6000613ab682613a88565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613b1c603a83612c82565b9150613b2782613ac0565b604082019050919050565b60006020820190508181036000830152613b4b81613b0f565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613b7982613b52565b613b838185613b5d565b9350613b93818560208601612c93565b613b9c81612cc6565b840191505092915050565b6000608082019050613bbc6000830187612df1565b613bc96020830186612df1565b613bd66040830185612d3c565b8181036060830152613be88184613b6e565b905095945050505050565b600081519050613c0281612be8565b92915050565b600060208284031215613c1e57613c1d612bb2565b5b6000613c2c84828501613bf3565b91505092915050565b6000613c4082612d32565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c7357613c72613427565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613cb882612d32565b9150613cc383612d32565b925082613cd357613cd2613c7e565b5b828204905092915050565b6000613ce982612d32565b9150613cf483612d32565b925082821015613d0757613d06613427565b5b828203905092915050565b6000613d1d82612d32565b9150613d2883612d32565b925082613d3857613d37613c7e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220ee3f39da83cd564120dd21c37298f8aeae32b361d035090fb17d23365595467a64736f6c634300080b0033697066733a2f2f516d59456153585948657842666a34736142433464536e436e5468644b4644726357553435526d4572553773474c2f

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063d547cfb71161006f578063d547cfb7146106ea578063d5abeb0114610715578063e985e9c514610740578063efdc77881461077d578063f2fde38b146107a6576101f9565b8063a22cb46514610630578063b88d4fde14610659578063c6a91b4214610682578063c87b56dd146106ad576101f9565b8063982d669e116100dc578063982d669e1461059557806398710d1e146105c05780639e9fcffc146105eb578063a0712d6814610614576101f9565b806370a08231146104eb578063715018a6146105285780638da5cb5b1461053f57806395d89b411461056a576101f9565b8063193ad7b41161019057806328cad13d1161015f57806328cad13d1461041c5780633ccfd60b1461044557806342842e0e1461045c57806355f804b3146104855780636352211e146104ae576101f9565b8063193ad7b4146103745780631e84c4131461039f578063202f298a146103ca57806323b872dd146103f3576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce5780630a00ae83146102f757806318160ddd146103205780631919fed71461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b57806307e89ec014610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612c14565b6107cf565b6040516102329190612c5c565b60405180910390f35b34801561024757600080fd5b506102506108b1565b60405161025d9190612d10565b60405180910390f35b34801561027257600080fd5b5061027b610943565b6040516102889190612d4b565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b39190612d92565b610949565b6040516102c59190612e00565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f09190612e47565b6109c5565b005b34801561030357600080fd5b5061031e60048036038101906103199190612d92565b610ad0565b005b34801561032c57600080fd5b50610335610b56565b6040516103429190612d4b565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d9190612d92565b610b6d565b005b34801561038057600080fd5b50610389610bf3565b6040516103969190612d4b565b60405180910390f35b3480156103ab57600080fd5b506103b4610bf9565b6040516103c19190612c5c565b60405180910390f35b3480156103d657600080fd5b506103f160048036038101906103ec9190612d92565b610c0c565b005b3480156103ff57600080fd5b5061041a60048036038101906104159190612e87565b610c92565b005b34801561042857600080fd5b50610443600480360381019061043e9190612f06565b610ca2565b005b34801561045157600080fd5b5061045a610d3b565b005b34801561046857600080fd5b50610483600480360381019061047e9190612e87565b610e19565b005b34801561049157600080fd5b506104ac60048036038101906104a79190613068565b610e39565b005b3480156104ba57600080fd5b506104d560048036038101906104d09190612d92565b610ecf565b6040516104e29190612e00565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d91906130b1565b610ee5565b60405161051f9190612d4b565b60405180910390f35b34801561053457600080fd5b5061053d610fb5565b005b34801561054b57600080fd5b5061055461103d565b6040516105619190612e00565b60405180910390f35b34801561057657600080fd5b5061057f611067565b60405161058c9190612d10565b60405180910390f35b3480156105a157600080fd5b506105aa6110f9565b6040516105b79190612d4b565b60405180910390f35b3480156105cc57600080fd5b506105d56110ff565b6040516105e29190612d4b565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190612d92565b611105565b005b61062e60048036038101906106299190612d92565b61118b565b005b34801561063c57600080fd5b50610657600480360381019061065291906130de565b6113cc565b005b34801561066557600080fd5b50610680600480360381019061067b91906131bf565b611544565b005b34801561068e57600080fd5b506106976115c0565b6040516106a49190612d4b565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf9190612d92565b6115c6565b6040516106e19190612d10565b60405180910390f35b3480156106f657600080fd5b506106ff611642565b60405161070c9190612d10565b60405180910390f35b34801561072157600080fd5b5061072a6116d0565b6040516107379190612d4b565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190613242565b6116d6565b6040516107749190612c5c565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f9190612d92565b61176a565b005b3480156107b257600080fd5b506107cd60048036038101906107c891906130b1565b61188d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108aa57506108a982611985565b5b9050919050565b6060600280546108c0906132b1565b80601f01602080910402602001604051908101604052809291908181526020018280546108ec906132b1565b80156109395780601f1061090e57610100808354040283529160200191610939565b820191906000526020600020905b81548152906001019060200180831161091c57829003601f168201915b5050505050905090565b600d5481565b6000610954826119ef565b61098a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109d082610ecf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a38576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a57611a3d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a895750610a8781610a82611a3d565b6116d6565b155b15610ac0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610acb838383611a45565b505050565b610ad8611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610af661103d565b73ffffffffffffffffffffffffffffffffffffffff1614610b4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b439061332f565b60405180910390fd5b80600e8190555050565b6000610b60611af7565b6001546000540303905090565b610b75611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610b9361103d565b73ffffffffffffffffffffffffffffffffffffffff1614610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be09061332f565b60405180910390fd5b80600d8190555050565b60105481565b601160009054906101000a900460ff1681565b610c14611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610c3261103d565b73ffffffffffffffffffffffffffffffffffffffff1614610c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7f9061332f565b60405180910390fd5b80600f8190555050565b610c9d838383611b00565b505050565b610caa611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610cc861103d565b73ffffffffffffffffffffffffffffffffffffffff1614610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d159061332f565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b610d43611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610d6161103d565b73ffffffffffffffffffffffffffffffffffffffff1614610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae9061332f565b60405180910390fd5b60026009541415610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df49061339b565b60405180910390fd5b6002600981905550610e0f3347611fb6565b6001600981905550565b610e3483838360405180602001604052806000815250611544565b505050565b610e41611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610e5f61103d565b73ffffffffffffffffffffffffffffffffffffffff1614610eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eac9061332f565b60405180910390fd5b80600a9080519060200190610ecb929190612ac2565b5050565b6000610eda826120aa565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f4d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fbd611a3d565b73ffffffffffffffffffffffffffffffffffffffff16610fdb61103d565b73ffffffffffffffffffffffffffffffffffffffff1614611031576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110289061332f565b60405180910390fd5b61103b6000612339565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611076906132b1565b80601f01602080910402602001604051908101604052809291908181526020018280546110a2906132b1565b80156110ef5780601f106110c4576101008083540402835291602001916110ef565b820191906000526020600020905b8154815290600101906020018083116110d257829003601f168201915b5050505050905090565b600e5481565b600f5481565b61110d611a3d565b73ffffffffffffffffffffffffffffffffffffffff1661112b61103d565b73ffffffffffffffffffffffffffffffffffffffff1614611181576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111789061332f565b60405180910390fd5b80600c8190555050565b601160009054906101000a900460ff166111da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d190613407565b60405180910390fd5b6001600b546111e99190613456565b816111f2610b56565b6111fc9190613456565b1061123c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611233906134f8565b60405180910390fd5b600e548160105461124d9190613456565b11156112a8573481600d546112629190613518565b11156112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a906135be565b60405180910390fd5b6113bf565b600f54816112b533610ee5565b6112bf9190613456565b111561135f573481600d546112d49190613518565b1115611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130c906135be565b60405180910390fd5b600c5481111561135a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135190613650565b60405180910390fd5b6113be565b600f548111156113a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139b90613650565b60405180910390fd5b80601060008282546113b69190613456565b925050819055505b5b6113c933826123ff565b50565b6113d4611a3d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611439576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611446611a3d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114f3611a3d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115389190612c5c565b60405180910390a35050565b61154f848484611b00565b61156e8373ffffffffffffffffffffffffffffffffffffffff1661241d565b8015611583575061158184848484612440565b155b156115ba576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c5481565b60606115d1826119ef565b611610576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611607906136e2565b60405180910390fd5b600a61161b83612591565b60405160200161162c92919061386a565b6040516020818303038152906040529050919050565b600a805461164f906132b1565b80601f016020809104026020016040519081016040528092919081815260200182805461167b906132b1565b80156116c85780601f1061169d576101008083540402835291602001916116c8565b820191906000526020600020905b8154815290600101906020018083116116ab57829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611772611a3d565b73ffffffffffffffffffffffffffffffffffffffff1661179061103d565b73ffffffffffffffffffffffffffffffffffffffff16146117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd9061332f565b60405180910390fd5b60008111611829576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611820906138f0565b60405180910390fd5b600b5481611835610b56565b61183f9190613456565b1115611880576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118779061395c565b60405180910390fd5b61188a33826123ff565b50565b611895611a3d565b73ffffffffffffffffffffffffffffffffffffffff166118b361103d565b73ffffffffffffffffffffffffffffffffffffffff1614611909576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119009061332f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611979576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611970906139ee565b60405180910390fd5b61198281612339565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816119fa611af7565b11158015611a09575060005482105b8015611a36575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611b0b826120aa565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b76576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b97611a3d565b73ffffffffffffffffffffffffffffffffffffffff161480611bc65750611bc585611bc0611a3d565b6116d6565b5b80611c0b5750611bd4611a3d565b73ffffffffffffffffffffffffffffffffffffffff16611bf384610949565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c44576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cab576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cb885858560016126f2565b611cc460008487611a45565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f44576000548214611f4357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611faf85858560016126f8565b5050505050565b80471015611ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff090613a5a565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161201f90613aab565b60006040518083038185875af1925050503d806000811461205c576040519150601f19603f3d011682016040523d82523d6000602084013e612061565b606091505b50509050806120a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209c90613b32565b60405180910390fd5b505050565b6120b2612b48565b6000829050806120c0611af7565b111580156120cf575060005481105b15612302576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161230057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121e4578092505050612334565b5b6001156122ff57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122fa578092505050612334565b6121e5565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124198282604051806020016040528060008152506126fe565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612466611a3d565b8786866040518563ffffffff1660e01b81526004016124889493929190613ba7565b6020604051808303816000875af19250505080156124c457506040513d601f19601f820116820180604052508101906124c19190613c08565b60015b61253e573d80600081146124f4576040519150601f19603f3d011682016040523d82523d6000602084013e6124f9565b606091505b50600081511415612536576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156125d9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126ed565b600082905060005b6000821461260b5780806125f490613c35565b915050600a826126049190613cad565b91506125e1565b60008167ffffffffffffffff81111561262757612626612f3d565b5b6040519080825280601f01601f1916602001820160405280156126595781602001600182028036833780820191505090505b5090505b600085146126e6576001826126729190613cde565b9150600a856126819190613d12565b603061268d9190613456565b60f81b8183815181106126a3576126a2613d43565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126df9190613cad565b945061265d565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561276b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156127a6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127b360008583866126f2565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506129748673ffffffffffffffffffffffffffffffffffffffff1661241d565b15612a3a575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129e96000878480600101955087612440565b612a1f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561297a578260005414612a3557600080fd5b612aa6565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612a3b575b816000819055505050612abc60008583866126f8565b50505050565b828054612ace906132b1565b90600052602060002090601f016020900481019282612af05760008555612b37565b82601f10612b0957805160ff1916838001178555612b37565b82800160010185558215612b37579182015b82811115612b36578251825591602001919060010190612b1b565b5b509050612b449190612b8b565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612ba4576000816000905550600101612b8c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612bf181612bbc565b8114612bfc57600080fd5b50565b600081359050612c0e81612be8565b92915050565b600060208284031215612c2a57612c29612bb2565b5b6000612c3884828501612bff565b91505092915050565b60008115159050919050565b612c5681612c41565b82525050565b6000602082019050612c716000830184612c4d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612cb1578082015181840152602081019050612c96565b83811115612cc0576000848401525b50505050565b6000601f19601f8301169050919050565b6000612ce282612c77565b612cec8185612c82565b9350612cfc818560208601612c93565b612d0581612cc6565b840191505092915050565b60006020820190508181036000830152612d2a8184612cd7565b905092915050565b6000819050919050565b612d4581612d32565b82525050565b6000602082019050612d606000830184612d3c565b92915050565b612d6f81612d32565b8114612d7a57600080fd5b50565b600081359050612d8c81612d66565b92915050565b600060208284031215612da857612da7612bb2565b5b6000612db684828501612d7d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612dea82612dbf565b9050919050565b612dfa81612ddf565b82525050565b6000602082019050612e156000830184612df1565b92915050565b612e2481612ddf565b8114612e2f57600080fd5b50565b600081359050612e4181612e1b565b92915050565b60008060408385031215612e5e57612e5d612bb2565b5b6000612e6c85828601612e32565b9250506020612e7d85828601612d7d565b9150509250929050565b600080600060608486031215612ea057612e9f612bb2565b5b6000612eae86828701612e32565b9350506020612ebf86828701612e32565b9250506040612ed086828701612d7d565b9150509250925092565b612ee381612c41565b8114612eee57600080fd5b50565b600081359050612f0081612eda565b92915050565b600060208284031215612f1c57612f1b612bb2565b5b6000612f2a84828501612ef1565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f7582612cc6565b810181811067ffffffffffffffff82111715612f9457612f93612f3d565b5b80604052505050565b6000612fa7612ba8565b9050612fb38282612f6c565b919050565b600067ffffffffffffffff821115612fd357612fd2612f3d565b5b612fdc82612cc6565b9050602081019050919050565b82818337600083830152505050565b600061300b61300684612fb8565b612f9d565b90508281526020810184848401111561302757613026612f38565b5b613032848285612fe9565b509392505050565b600082601f83011261304f5761304e612f33565b5b813561305f848260208601612ff8565b91505092915050565b60006020828403121561307e5761307d612bb2565b5b600082013567ffffffffffffffff81111561309c5761309b612bb7565b5b6130a88482850161303a565b91505092915050565b6000602082840312156130c7576130c6612bb2565b5b60006130d584828501612e32565b91505092915050565b600080604083850312156130f5576130f4612bb2565b5b600061310385828601612e32565b925050602061311485828601612ef1565b9150509250929050565b600067ffffffffffffffff82111561313957613138612f3d565b5b61314282612cc6565b9050602081019050919050565b600061316261315d8461311e565b612f9d565b90508281526020810184848401111561317e5761317d612f38565b5b613189848285612fe9565b509392505050565b600082601f8301126131a6576131a5612f33565b5b81356131b684826020860161314f565b91505092915050565b600080600080608085870312156131d9576131d8612bb2565b5b60006131e787828801612e32565b94505060206131f887828801612e32565b935050604061320987828801612d7d565b925050606085013567ffffffffffffffff81111561322a57613229612bb7565b5b61323687828801613191565b91505092959194509250565b6000806040838503121561325957613258612bb2565b5b600061326785828601612e32565b925050602061327885828601612e32565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132c957607f821691505b602082108114156132dd576132dc613282565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613319602083612c82565b9150613324826132e3565b602082019050919050565b600060208201905081810360008301526133488161330c565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613385601f83612c82565b91506133908261334f565b602082019050919050565b600060208201905081810360008301526133b481613378565b9050919050565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b60006133f1601783612c82565b91506133fc826133bb565b602082019050919050565b60006020820190508181036000830152613420816133e4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061346182612d32565b915061346c83612d32565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134a1576134a0613427565b5b828201905092915050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b60006134e2600783612c82565b91506134ed826134ac565b602082019050919050565b60006020820190508181036000830152613511816134d5565b9050919050565b600061352382612d32565b915061352e83612d32565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561356757613566613427565b5b828202905092915050565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b60006135a8601883612c82565b91506135b382613572565b602082019050919050565b600060208201905081810360008301526135d78161359b565b9050919050565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b600061363a602283612c82565b9150613645826135de565b604082019050919050565b600060208201905081810360008301526136698161362d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006136cc602f83612c82565b91506136d782613670565b604082019050919050565b600060208201905081810360008301526136fb816136bf565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461372f816132b1565b6137398186613702565b94506001821660008114613754576001811461376557613798565b60ff19831686528186019350613798565b61376e8561370d565b60005b8381101561379057815481890152600182019150602081019050613771565b838801955050505b50505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b60006137d7600183613702565b91506137e2826137a1565b600182019050919050565b60006137f882612c77565b6138028185613702565b9350613812818560208601612c93565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613854600583613702565b915061385f8261381e565b600582019050919050565b60006138768285613722565b9150613881826137ca565b915061388d82846137ed565b915061389882613847565b91508190509392505050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b60006138da601383612c82565b91506138e5826138a4565b602082019050919050565b60006020820190508181036000830152613909816138cd565b9050919050565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b6000613946601783612c82565b915061395182613910565b602082019050919050565b6000602082019050818103600083015261397581613939565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006139d8602683612c82565b91506139e38261397c565b604082019050919050565b60006020820190508181036000830152613a07816139cb565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613a44601d83612c82565b9150613a4f82613a0e565b602082019050919050565b60006020820190508181036000830152613a7381613a37565b9050919050565b600081905092915050565b50565b6000613a95600083613a7a565b9150613aa082613a85565b600082019050919050565b6000613ab682613a88565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613b1c603a83612c82565b9150613b2782613ac0565b604082019050919050565b60006020820190508181036000830152613b4b81613b0f565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613b7982613b52565b613b838185613b5d565b9350613b93818560208601612c93565b613b9c81612cc6565b840191505092915050565b6000608082019050613bbc6000830187612df1565b613bc96020830186612df1565b613bd66040830185612d3c565b8181036060830152613be88184613b6e565b905095945050505050565b600081519050613c0281612be8565b92915050565b600060208284031215613c1e57613c1d612bb2565b5b6000613c2c84828501613bf3565b91505092915050565b6000613c4082612d32565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c7357613c72613427565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613cb882612d32565b9150613cc383612d32565b925082613cd357613cd2613c7e565b5b828204905092915050565b6000613ce982612d32565b9150613cf483612d32565b925082821015613d0757613d06613427565b5b828203905092915050565b6000613d1d82612d32565b9150613d2883612d32565b925082613d3857613d37613c7e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220ee3f39da83cd564120dd21c37298f8aeae32b361d035090fb17d23365595467a64736f6c634300080b0033

Deployed Bytecode Sourcemap

48930:3335:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30040:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33153:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49230:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34656:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34219:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51747:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29289:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51882:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49368:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49412:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52136:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35521:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51593:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50986:142;;;;;;;;;;;;;:::i;:::-;;35762:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50582:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32961:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30409:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7806:103;;;;;;;;;;;;;:::i;:::-;;7155:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33322:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49282:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49324:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52003:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49528:1048;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34932:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36018:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49189:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51134:312;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49059:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49151:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35290:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50696:284;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8064:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30040:305;30142:4;30194:25;30179:40;;;:11;:40;;;;:105;;;;30251:33;30236:48;;;:11;:48;;;;30179:105;:158;;;;30301:36;30325:11;30301:23;:36::i;:::-;30179:158;30159:178;;30040:305;;;:::o;33153:100::-;33207:13;33240:5;33233:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33153:100;:::o;49230:47::-;;;;:::o;34656:204::-;34724:7;34749:16;34757:7;34749;:16::i;:::-;34744:64;;34774:34;;;;;;;;;;;;;;34744:64;34828:15;:24;34844:7;34828:24;;;;;;;;;;;;;;;;;;;;;34821:31;;34656:204;;;:::o;34219:371::-;34292:13;34308:24;34324:7;34308:15;:24::i;:::-;34292:40;;34353:5;34347:11;;:2;:11;;;34343:48;;;34367:24;;;;;;;;;;;;;;34343:48;34424:5;34408:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;34434:37;34451:5;34458:12;:10;:12::i;:::-;34434:16;:37::i;:::-;34433:38;34408:63;34404:138;;;34495:35;;;;;;;;;;;;;;34404:138;34554:28;34563:2;34567:7;34576:5;34554:8;:28::i;:::-;34281:309;34219:371;;:::o;51747:129::-;7386:12;:10;:12::i;:::-;7375:23;;:7;:5;:7::i;:::-;:23;;;7367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51857:13:::1;51840:14;:30;;;;51747:129:::0;:::o;29289:303::-;29333:7;29558:15;:13;:15::i;:::-;29543:12;;29527:13;;:28;:46;29520:53;;29289:303;:::o;51882:115::-;7386:12;:10;:12::i;:::-;7375:23;;:7;:5;:7::i;:::-;:23;;;7367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51985:6:::1;51965:17;:26;;;;51882:115:::0;:::o;49368:39::-;;;;:::o;49412:37::-;;;;;;;;;;;;;:::o;52136:126::-;7386:12;:10;:12::i;:::-;7375:23;;:7;:5;:7::i;:::-;:23;;;7367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52250:6:::1;52228:19;:28;;;;52136:126:::0;:::o;35521:170::-;35655:28;35665:4;35671:2;35675:7;35655:9;:28::i;:::-;35521:170;;;:::o;51593:148::-;7386:12;:10;:12::i;:::-;7375:23;;:7;:5;:7::i;:::-;:23;;;7367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51716:19:::1;51695:18;;:40;;;;;;;;;;;;;;;;;;51593:148:::0;:::o;50986:142::-;7386:12;:10;:12::i;:::-;7375:23;;:7;:5;:7::i;:::-;:23;;;7367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2129:1:::1;2727:7;;:19;;2719:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;2129:1;2860:7;:18;;;;51061:61:::2;51087:10;51100:21;51061:17;:61::i;:::-;2085:1:::1;3039:7;:22;;;;50986:142::o:0;35762:185::-;35900:39;35917:4;35923:2;35927:7;35900:39;;;;;;;;;;;;:16;:39::i;:::-;35762:185;;;:::o;50582:108::-;7386:12;:10;:12::i;:::-;7375:23;;:7;:5;:7::i;:::-;:23;;;7367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50677:7:::1;50662:12;:22;;;;;;;;;;;;:::i;:::-;;50582:108:::0;:::o;32961:125::-;33025:7;33052:21;33065:7;33052:12;:21::i;:::-;:26;;;33045:33;;32961:125;;;:::o;30409:206::-;30473:7;30514:1;30497:19;;:5;:19;;;30493:60;;;30525:28;;;;;;;;;;;;;;30493:60;30579:12;:19;30592:5;30579:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30571:36;;30564:43;;30409:206;;;:::o;7806:103::-;7386:12;:10;:12::i;:::-;7375:23;;:7;:5;:7::i;:::-;:23;;;7367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7871:30:::1;7898:1;7871:18;:30::i;:::-;7806:103::o:0;7155:87::-;7201:7;7228:6;;;;;;;;;;;7221:13;;7155:87;:::o;33322:104::-;33378:13;33411:7;33404:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33322:104;:::o;49282:37::-;;;;:::o;49324:39::-;;;;:::o;52003:127::-;7386:12;:10;:12::i;:::-;7375:23;;:7;:5;:7::i;:::-;:23;;;7367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52118:6:::1;52099:16;:25;;;;52003:127:::0;:::o;49528:1048::-;49615:18;;;;;;;;;;;49607:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;49721:1;49709:9;;:13;;;;:::i;:::-;49692:14;49676:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:46;49668:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49786:14;;49769;49746:20;;:37;;;;:::i;:::-;:54;49743:784;;;49874:9;49855:14;49835:17;;:34;;;;:::i;:::-;49834:49;;49812:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;49743:784;;;50005:19;;49988:14;49964:21;49974:10;49964:9;:21::i;:::-;:38;;;;:::i;:::-;:60;49960:560;;;50099:9;50080:14;50060:17;;:34;;;;:::i;:::-;50059:49;;50037:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;50211:16;;50193:14;:34;;50171:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;49960:560;;;50366:19;;50348:14;:37;;50322:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;50494:14;50470:20;;:38;;;;;;;:::i;:::-;;;;;;;;49960:560;49743:784;50533:37;50543:10;50555:14;50533:9;:37::i;:::-;49528:1048;:::o;34932:287::-;35043:12;:10;:12::i;:::-;35031:24;;:8;:24;;;35027:54;;;35064:17;;;;;;;;;;;;;;35027:54;35139:8;35094:18;:32;35113:12;:10;:12::i;:::-;35094:32;;;;;;;;;;;;;;;:42;35127:8;35094:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;35192:8;35163:48;;35178:12;:10;:12::i;:::-;35163:48;;;35202:8;35163:48;;;;;;:::i;:::-;;;;;;;;34932:287;;:::o;36018:369::-;36185:28;36195:4;36201:2;36205:7;36185:9;:28::i;:::-;36228:15;:2;:13;;;:15::i;:::-;:76;;;;;36248:56;36279:4;36285:2;36289:7;36298:5;36248:30;:56::i;:::-;36247:57;36228:76;36224:156;;;36328:40;;;;;;;;;;;;;;36224:156;36018:369;;;;:::o;49189:36::-;;;;:::o;51134:312::-;51230:13;51271:17;51279:8;51271:7;:17::i;:::-;51255:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;51391:12;51410:19;:8;:17;:19::i;:::-;51374:65;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51360:80;;51134:312;;;:::o;49059:87::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49151:33::-;;;;:::o;35290:164::-;35387:4;35411:18;:25;35430:5;35411:25;;;;;;;;;;;;;;;:35;35437:8;35411:35;;;;;;;;;;;;;;;;;;;;;;;;;35404:42;;35290:164;;;;:::o;50696:284::-;7386:12;:10;:12::i;:::-;7375:23;;:7;:5;:7::i;:::-;:23;;;7367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50797:1:::1;50786:8;:12;50770:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;50886:9;;50874:8;50858:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;50842:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;50943:31;50953:10;50965:8;50943:9;:31::i;:::-;50696:284:::0;:::o;8064:201::-;7386:12;:10;:12::i;:::-;7375:23;;:7;:5;:7::i;:::-;:23;;;7367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8173:1:::1;8153:22;;:8;:22;;;;8145:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;8229:28;8248:8;8229:18;:28::i;:::-;8064:201:::0;:::o;19939:157::-;20024:4;20063:25;20048:40;;;:11;:40;;;;20041:47;;19939:157;;;:::o;36642:174::-;36699:4;36742:7;36723:15;:13;:15::i;:::-;:26;;:53;;;;;36763:13;;36753:7;:23;36723:53;:85;;;;;36781:11;:20;36793:7;36781:20;;;;;;;;;;;:27;;;;;;;;;;;;36780:28;36723:85;36716:92;;36642:174;;;:::o;5879:98::-;5932:7;5959:10;5952:17;;5879:98;:::o;45868:196::-;46010:2;45983:15;:24;45999:7;45983:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;46048:7;46044:2;46028:28;;46037:5;46028:28;;;;;;;;;;;;45868:196;;;:::o;29063:92::-;29119:7;29146:1;29139:8;;29063:92;:::o;40816:2130::-;40931:35;40969:21;40982:7;40969:12;:21::i;:::-;40931:59;;41029:4;41007:26;;:13;:18;;;:26;;;41003:67;;41042:28;;;;;;;;;;;;;;41003:67;41083:22;41125:4;41109:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;41146:36;41163:4;41169:12;:10;:12::i;:::-;41146:16;:36::i;:::-;41109:73;:126;;;;41223:12;:10;:12::i;:::-;41199:36;;:20;41211:7;41199:11;:20::i;:::-;:36;;;41109:126;41083:153;;41254:17;41249:66;;41280:35;;;;;;;;;;;;;;41249:66;41344:1;41330:16;;:2;:16;;;41326:52;;;41355:23;;;;;;;;;;;;;;41326:52;41391:43;41413:4;41419:2;41423:7;41432:1;41391:21;:43::i;:::-;41499:35;41516:1;41520:7;41529:4;41499:8;:35::i;:::-;41860:1;41830:12;:18;41843:4;41830:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41904:1;41876:12;:16;41889:2;41876:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41922:31;41956:11;:20;41968:7;41956:20;;;;;;;;;;;41922:54;;42007:2;41991:8;:13;;;:18;;;;;;;;;;;;;;;;;;42057:15;42024:8;:23;;;:49;;;;;;;;;;;;;;;;;;42325:19;42357:1;42347:7;:11;42325:33;;42373:31;42407:11;:24;42419:11;42407:24;;;;;;;;;;;42373:58;;42475:1;42450:27;;:8;:13;;;;;;;;;;;;:27;;;42446:384;;;42660:13;;42645:11;:28;42641:174;;42714:4;42698:8;:13;;;:20;;;;;;;;;;;;;;;;;;42767:13;:28;;;42741:8;:23;;;:54;;;;;;;;;;;;;;;;;;42641:174;42446:384;41805:1036;;;42877:7;42873:2;42858:27;;42867:4;42858:27;;;;;;;;;;;;42896:42;42917:4;42923:2;42927:7;42936:1;42896:20;:42::i;:::-;40920:2026;;40816:2130;;;:::o;11117:317::-;11232:6;11207:21;:31;;11199:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11286:12;11304:9;:14;;11326:6;11304:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11285:52;;;11356:7;11348:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;11188:246;11117:317;;:::o;31790:1109::-;31852:21;;:::i;:::-;31886:12;31901:7;31886:22;;31969:4;31950:15;:13;:15::i;:::-;:23;;:47;;;;;31984:13;;31977:4;:20;31950:47;31946:886;;;32018:31;32052:11;:17;32064:4;32052:17;;;;;;;;;;;32018:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32093:9;:16;;;32088:729;;32164:1;32138:28;;:9;:14;;;:28;;;32134:101;;32202:9;32195:16;;;;;;32134:101;32537:261;32544:4;32537:261;;;32577:6;;;;;;;;32622:11;:17;32634:4;32622:17;;;;;;;;;;;32610:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32696:1;32670:28;;:9;:14;;;:28;;;32666:109;;32738:9;32731:16;;;;;;32666:109;32537:261;;;32088:729;31999:833;31946:886;32860:31;;;;;;;;;;;;;;31790:1109;;;;:::o;8425:191::-;8499:16;8518:6;;;;;;;;;;;8499:25;;8544:8;8535:6;;:17;;;;;;;;;;;;;;;;;;8599:8;8568:40;;8589:8;8568:40;;;;;;;;;;;;8488:128;8425:191;:::o;36900:104::-;36969:27;36979:2;36983:8;36969:27;;;;;;;;;;;;:9;:27::i;:::-;36900:104;;:::o;9856:326::-;9916:4;10173:1;10151:7;:19;;;:23;10144:30;;9856:326;;;:::o;46556:667::-;46719:4;46756:2;46740:36;;;46777:12;:10;:12::i;:::-;46791:4;46797:7;46806:5;46740:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46736:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46991:1;46974:6;:13;:18;46970:235;;;47020:40;;;;;;;;;;;;;;46970:235;47163:6;47157:13;47148:6;47144:2;47140:15;47133:38;46736:480;46869:45;;;46859:55;;;:6;:55;;;;46852:62;;;46556:667;;;;;;:::o;3441:723::-;3497:13;3727:1;3718:5;:10;3714:53;;;3745:10;;;;;;;;;;;;;;;;;;;;;3714:53;3777:12;3792:5;3777:20;;3808:14;3833:78;3848:1;3840:4;:9;3833:78;;3866:8;;;;;:::i;:::-;;;;3897:2;3889:10;;;;;:::i;:::-;;;3833:78;;;3921:19;3953:6;3943:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3921:39;;3971:154;3987:1;3978:5;:10;3971:154;;4015:1;4005:11;;;;;:::i;:::-;;;4082:2;4074:5;:10;;;;:::i;:::-;4061:2;:24;;;;:::i;:::-;4048:39;;4031:6;4038;4031:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;4111:2;4102:11;;;;;:::i;:::-;;;3971:154;;;4149:6;4135:21;;;;;3441:723;;;;:::o;47871:159::-;;;;;:::o;48689:158::-;;;;;:::o;37378:1751::-;37501:20;37524:13;;37501:36;;37566:1;37552:16;;:2;:16;;;37548:48;;;37577:19;;;;;;;;;;;;;;37548:48;37623:1;37611:8;:13;37607:44;;;37633:18;;;;;;;;;;;;;;37607:44;37664:61;37694:1;37698:2;37702:12;37716:8;37664:21;:61::i;:::-;38037:8;38002:12;:16;38015:2;38002:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38101:8;38061:12;:16;38074:2;38061:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38160:2;38127:11;:25;38139:12;38127:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38227:15;38177:11;:25;38189:12;38177:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38260:20;38283:12;38260:35;;38310:11;38339:8;38324:12;:23;38310:37;;38368:15;:2;:13;;;:15::i;:::-;38364:633;;;38404:314;38460:12;38456:2;38435:38;;38452:1;38435:38;;;;;;;;;;;;38501:69;38540:1;38544:2;38548:14;;;;;;38564:5;38501:30;:69::i;:::-;38496:174;;38606:40;;;;;;;;;;;;;;38496:174;38713:3;38697:12;:19;;38404:314;;38799:12;38782:13;;:29;38778:43;;38813:8;;;38778:43;38364:633;;;38862:120;38918:14;;;;;;38914:2;38893:40;;38910:1;38893:40;;;;;;;;;;;;38977:3;38961:12;:19;;38862:120;;38364:633;39027:12;39011:13;:28;;;;37977:1074;;39061:60;39090:1;39094:2;39098:12;39112:8;39061:20;:60::i;:::-;37490:1639;37378:1751;;;:::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:118::-;3078:24;3096:5;3078:24;:::i;:::-;3073:3;3066:37;2991:118;;:::o;3115:222::-;3208:4;3246:2;3235:9;3231:18;3223:26;;3259:71;3327:1;3316:9;3312:17;3303:6;3259:71;:::i;:::-;3115:222;;;;:::o;3343:122::-;3416:24;3434:5;3416:24;:::i;:::-;3409:5;3406:35;3396:63;;3455:1;3452;3445:12;3396:63;3343:122;:::o;3471:139::-;3517:5;3555:6;3542:20;3533:29;;3571:33;3598:5;3571:33;:::i;:::-;3471:139;;;;:::o;3616:329::-;3675:6;3724:2;3712:9;3703:7;3699:23;3695:32;3692:119;;;3730:79;;:::i;:::-;3692:119;3850:1;3875:53;3920:7;3911:6;3900:9;3896:22;3875:53;:::i;:::-;3865:63;;3821:117;3616:329;;;;:::o;3951:126::-;3988:7;4028:42;4021:5;4017:54;4006:65;;3951:126;;;:::o;4083:96::-;4120:7;4149:24;4167:5;4149:24;:::i;:::-;4138:35;;4083:96;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:116::-;5985:21;6000:5;5985:21;:::i;:::-;5978:5;5975:32;5965:60;;6021:1;6018;6011:12;5965:60;5915:116;:::o;6037:133::-;6080:5;6118:6;6105:20;6096:29;;6134:30;6158:5;6134:30;:::i;:::-;6037:133;;;;:::o;6176:323::-;6232:6;6281:2;6269:9;6260:7;6256:23;6252:32;6249:119;;;6287:79;;:::i;:::-;6249:119;6407:1;6432:50;6474:7;6465:6;6454:9;6450:22;6432:50;:::i;:::-;6422:60;;6378:114;6176:323;;;;:::o;6505:117::-;6614:1;6611;6604:12;6628:117;6737:1;6734;6727:12;6751:180;6799:77;6796:1;6789:88;6896:4;6893:1;6886:15;6920:4;6917:1;6910:15;6937:281;7020:27;7042:4;7020:27;:::i;:::-;7012:6;7008:40;7150:6;7138:10;7135:22;7114:18;7102:10;7099:34;7096:62;7093:88;;;7161:18;;:::i;:::-;7093:88;7201:10;7197:2;7190:22;6980:238;6937:281;;:::o;7224:129::-;7258:6;7285:20;;:::i;:::-;7275:30;;7314:33;7342:4;7334:6;7314:33;:::i;:::-;7224:129;;;:::o;7359:308::-;7421:4;7511:18;7503:6;7500:30;7497:56;;;7533:18;;:::i;:::-;7497:56;7571:29;7593:6;7571:29;:::i;:::-;7563:37;;7655:4;7649;7645:15;7637:23;;7359:308;;;:::o;7673:154::-;7757:6;7752:3;7747;7734:30;7819:1;7810:6;7805:3;7801:16;7794:27;7673:154;;;:::o;7833:412::-;7911:5;7936:66;7952:49;7994:6;7952:49;:::i;:::-;7936:66;:::i;:::-;7927:75;;8025:6;8018:5;8011:21;8063:4;8056:5;8052:16;8101:3;8092:6;8087:3;8083:16;8080:25;8077:112;;;8108:79;;:::i;:::-;8077:112;8198:41;8232:6;8227:3;8222;8198:41;:::i;:::-;7917:328;7833:412;;;;;:::o;8265:340::-;8321:5;8370:3;8363:4;8355:6;8351:17;8347:27;8337:122;;8378:79;;:::i;:::-;8337:122;8495:6;8482:20;8520:79;8595:3;8587:6;8580:4;8572:6;8568:17;8520:79;:::i;:::-;8511:88;;8327:278;8265:340;;;;:::o;8611:509::-;8680:6;8729:2;8717:9;8708:7;8704:23;8700:32;8697:119;;;8735:79;;:::i;:::-;8697:119;8883:1;8872:9;8868:17;8855:31;8913:18;8905:6;8902:30;8899:117;;;8935:79;;:::i;:::-;8899:117;9040:63;9095:7;9086:6;9075:9;9071:22;9040:63;:::i;:::-;9030:73;;8826:287;8611:509;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:180::-;12498:77;12495:1;12488:88;12595:4;12592:1;12585:15;12619:4;12616:1;12609:15;12636:320;12680:6;12717:1;12711:4;12707:12;12697:22;;12764:1;12758:4;12754:12;12785:18;12775:81;;12841:4;12833:6;12829:17;12819:27;;12775:81;12903:2;12895:6;12892:14;12872:18;12869:38;12866:84;;;12922:18;;:::i;:::-;12866:84;12687:269;12636:320;;;:::o;12962:182::-;13102:34;13098:1;13090:6;13086:14;13079:58;12962:182;:::o;13150:366::-;13292:3;13313:67;13377:2;13372:3;13313:67;:::i;:::-;13306:74;;13389:93;13478:3;13389:93;:::i;:::-;13507:2;13502:3;13498:12;13491:19;;13150:366;;;:::o;13522:419::-;13688:4;13726:2;13715:9;13711:18;13703:26;;13775:9;13769:4;13765:20;13761:1;13750:9;13746:17;13739:47;13803:131;13929:4;13803:131;:::i;:::-;13795:139;;13522:419;;;:::o;13947:181::-;14087:33;14083:1;14075:6;14071:14;14064:57;13947:181;:::o;14134:366::-;14276:3;14297:67;14361:2;14356:3;14297:67;:::i;:::-;14290:74;;14373:93;14462:3;14373:93;:::i;:::-;14491:2;14486:3;14482:12;14475:19;;14134:366;;;:::o;14506:419::-;14672:4;14710:2;14699:9;14695:18;14687:26;;14759:9;14753:4;14749:20;14745:1;14734:9;14730:17;14723:47;14787:131;14913:4;14787:131;:::i;:::-;14779:139;;14506:419;;;:::o;14931:173::-;15071:25;15067:1;15059:6;15055:14;15048:49;14931:173;:::o;15110:366::-;15252:3;15273:67;15337:2;15332:3;15273:67;:::i;:::-;15266:74;;15349:93;15438:3;15349:93;:::i;:::-;15467:2;15462:3;15458:12;15451:19;;15110:366;;;:::o;15482:419::-;15648:4;15686:2;15675:9;15671:18;15663:26;;15735:9;15729:4;15725:20;15721:1;15710:9;15706:17;15699:47;15763:131;15889:4;15763:131;:::i;:::-;15755:139;;15482:419;;;:::o;15907:180::-;15955:77;15952:1;15945:88;16052:4;16049:1;16042:15;16076:4;16073:1;16066:15;16093:305;16133:3;16152:20;16170:1;16152:20;:::i;:::-;16147:25;;16186:20;16204:1;16186:20;:::i;:::-;16181:25;;16340:1;16272:66;16268:74;16265:1;16262:81;16259:107;;;16346:18;;:::i;:::-;16259:107;16390:1;16387;16383:9;16376:16;;16093:305;;;;:::o;16404:157::-;16544:9;16540:1;16532:6;16528:14;16521:33;16404:157;:::o;16567:365::-;16709:3;16730:66;16794:1;16789:3;16730:66;:::i;:::-;16723:73;;16805:93;16894:3;16805:93;:::i;:::-;16923:2;16918:3;16914:12;16907:19;;16567:365;;;:::o;16938:419::-;17104:4;17142:2;17131:9;17127:18;17119:26;;17191:9;17185:4;17181:20;17177:1;17166:9;17162:17;17155:47;17219:131;17345:4;17219:131;:::i;:::-;17211:139;;16938:419;;;:::o;17363:348::-;17403:7;17426:20;17444:1;17426:20;:::i;:::-;17421:25;;17460:20;17478:1;17460:20;:::i;:::-;17455:25;;17648:1;17580:66;17576:74;17573:1;17570:81;17565:1;17558:9;17551:17;17547:105;17544:131;;;17655:18;;:::i;:::-;17544:131;17703:1;17700;17696:9;17685:20;;17363:348;;;;:::o;17717:174::-;17857:26;17853:1;17845:6;17841:14;17834:50;17717:174;:::o;17897:366::-;18039:3;18060:67;18124:2;18119:3;18060:67;:::i;:::-;18053:74;;18136:93;18225:3;18136:93;:::i;:::-;18254:2;18249:3;18245:12;18238:19;;17897:366;;;:::o;18269:419::-;18435:4;18473:2;18462:9;18458:18;18450:26;;18522:9;18516:4;18512:20;18508:1;18497:9;18493:17;18486:47;18550:131;18676:4;18550:131;:::i;:::-;18542:139;;18269:419;;;:::o;18694:221::-;18834:34;18830:1;18822:6;18818:14;18811:58;18903:4;18898:2;18890:6;18886:15;18879:29;18694:221;:::o;18921:366::-;19063:3;19084:67;19148:2;19143:3;19084:67;:::i;:::-;19077:74;;19160:93;19249:3;19160:93;:::i;:::-;19278:2;19273:3;19269:12;19262:19;;18921:366;;;:::o;19293:419::-;19459:4;19497:2;19486:9;19482:18;19474:26;;19546:9;19540:4;19536:20;19532:1;19521:9;19517:17;19510:47;19574:131;19700:4;19574:131;:::i;:::-;19566:139;;19293:419;;;:::o;19718:234::-;19858:34;19854:1;19846:6;19842:14;19835:58;19927:17;19922:2;19914:6;19910:15;19903:42;19718:234;:::o;19958:366::-;20100:3;20121:67;20185:2;20180:3;20121:67;:::i;:::-;20114:74;;20197:93;20286:3;20197:93;:::i;:::-;20315:2;20310:3;20306:12;20299:19;;19958:366;;;:::o;20330:419::-;20496:4;20534:2;20523:9;20519:18;20511:26;;20583:9;20577:4;20573:20;20569:1;20558:9;20554:17;20547:47;20611:131;20737:4;20611:131;:::i;:::-;20603:139;;20330:419;;;:::o;20755:148::-;20857:11;20894:3;20879:18;;20755:148;;;;:::o;20909:141::-;20958:4;20981:3;20973:11;;21004:3;21001:1;20994:14;21038:4;21035:1;21025:18;21017:26;;20909:141;;;:::o;21080:845::-;21183:3;21220:5;21214:12;21249:36;21275:9;21249:36;:::i;:::-;21301:89;21383:6;21378:3;21301:89;:::i;:::-;21294:96;;21421:1;21410:9;21406:17;21437:1;21432:137;;;;21583:1;21578:341;;;;21399:520;;21432:137;21516:4;21512:9;21501;21497:25;21492:3;21485:38;21552:6;21547:3;21543:16;21536:23;;21432:137;;21578:341;21645:38;21677:5;21645:38;:::i;:::-;21705:1;21719:154;21733:6;21730:1;21727:13;21719:154;;;21807:7;21801:14;21797:1;21792:3;21788:11;21781:35;21857:1;21848:7;21844:15;21833:26;;21755:4;21752:1;21748:12;21743:17;;21719:154;;;21902:6;21897:3;21893:16;21886:23;;21585:334;;21399:520;;21187:738;;21080:845;;;;:::o;21931:151::-;22071:3;22067:1;22059:6;22055:14;22048:27;21931:151;:::o;22088:400::-;22248:3;22269:84;22351:1;22346:3;22269:84;:::i;:::-;22262:91;;22362:93;22451:3;22362:93;:::i;:::-;22480:1;22475:3;22471:11;22464:18;;22088:400;;;:::o;22494:377::-;22600:3;22628:39;22661:5;22628:39;:::i;:::-;22683:89;22765:6;22760:3;22683:89;:::i;:::-;22676:96;;22781:52;22826:6;22821:3;22814:4;22807:5;22803:16;22781:52;:::i;:::-;22858:6;22853:3;22849:16;22842:23;;22604:267;22494:377;;;;:::o;22877:155::-;23017:7;23013:1;23005:6;23001:14;22994:31;22877:155;:::o;23038:400::-;23198:3;23219:84;23301:1;23296:3;23219:84;:::i;:::-;23212:91;;23312:93;23401:3;23312:93;:::i;:::-;23430:1;23425:3;23421:11;23414:18;;23038:400;;;:::o;23444:961::-;23823:3;23845:92;23933:3;23924:6;23845:92;:::i;:::-;23838:99;;23954:148;24098:3;23954:148;:::i;:::-;23947:155;;24119:95;24210:3;24201:6;24119:95;:::i;:::-;24112:102;;24231:148;24375:3;24231:148;:::i;:::-;24224:155;;24396:3;24389:10;;23444:961;;;;;:::o;24411:169::-;24551:21;24547:1;24539:6;24535:14;24528:45;24411:169;:::o;24586:366::-;24728:3;24749:67;24813:2;24808:3;24749:67;:::i;:::-;24742:74;;24825:93;24914:3;24825:93;:::i;:::-;24943:2;24938:3;24934:12;24927:19;;24586:366;;;:::o;24958:419::-;25124:4;25162:2;25151:9;25147:18;25139:26;;25211:9;25205:4;25201:20;25197:1;25186:9;25182:17;25175:47;25239:131;25365:4;25239:131;:::i;:::-;25231:139;;24958:419;;;:::o;25383:173::-;25523:25;25519:1;25511:6;25507:14;25500:49;25383:173;:::o;25562:366::-;25704:3;25725:67;25789:2;25784:3;25725:67;:::i;:::-;25718:74;;25801:93;25890:3;25801:93;:::i;:::-;25919:2;25914:3;25910:12;25903:19;;25562:366;;;:::o;25934:419::-;26100:4;26138:2;26127:9;26123:18;26115:26;;26187:9;26181:4;26177:20;26173:1;26162:9;26158:17;26151:47;26215:131;26341:4;26215:131;:::i;:::-;26207:139;;25934:419;;;:::o;26359:225::-;26499:34;26495:1;26487:6;26483:14;26476:58;26568:8;26563:2;26555:6;26551:15;26544:33;26359:225;:::o;26590:366::-;26732:3;26753:67;26817:2;26812:3;26753:67;:::i;:::-;26746:74;;26829:93;26918:3;26829:93;:::i;:::-;26947:2;26942:3;26938:12;26931:19;;26590:366;;;:::o;26962:419::-;27128:4;27166:2;27155:9;27151:18;27143:26;;27215:9;27209:4;27205:20;27201:1;27190:9;27186:17;27179:47;27243:131;27369:4;27243:131;:::i;:::-;27235:139;;26962:419;;;:::o;27387:179::-;27527:31;27523:1;27515:6;27511:14;27504:55;27387:179;:::o;27572:366::-;27714:3;27735:67;27799:2;27794:3;27735:67;:::i;:::-;27728:74;;27811:93;27900:3;27811:93;:::i;:::-;27929:2;27924:3;27920:12;27913:19;;27572:366;;;:::o;27944:419::-;28110:4;28148:2;28137:9;28133:18;28125:26;;28197:9;28191:4;28187:20;28183:1;28172:9;28168:17;28161:47;28225:131;28351:4;28225:131;:::i;:::-;28217:139;;27944:419;;;:::o;28369:147::-;28470:11;28507:3;28492:18;;28369:147;;;;:::o;28522:114::-;;:::o;28642:398::-;28801:3;28822:83;28903:1;28898:3;28822:83;:::i;:::-;28815:90;;28914:93;29003:3;28914:93;:::i;:::-;29032:1;29027:3;29023:11;29016:18;;28642:398;;;:::o;29046:379::-;29230:3;29252:147;29395:3;29252:147;:::i;:::-;29245:154;;29416:3;29409:10;;29046:379;;;:::o;29431:245::-;29571:34;29567:1;29559:6;29555:14;29548:58;29640:28;29635:2;29627:6;29623:15;29616:53;29431:245;:::o;29682:366::-;29824:3;29845:67;29909:2;29904:3;29845:67;:::i;:::-;29838:74;;29921:93;30010:3;29921:93;:::i;:::-;30039:2;30034:3;30030:12;30023:19;;29682:366;;;:::o;30054:419::-;30220:4;30258:2;30247:9;30243:18;30235:26;;30307:9;30301:4;30297:20;30293:1;30282:9;30278:17;30271:47;30335:131;30461:4;30335:131;:::i;:::-;30327:139;;30054:419;;;:::o;30479:98::-;30530:6;30564:5;30558:12;30548:22;;30479:98;;;:::o;30583:168::-;30666:11;30700:6;30695:3;30688:19;30740:4;30735:3;30731:14;30716:29;;30583:168;;;;:::o;30757:360::-;30843:3;30871:38;30903:5;30871:38;:::i;:::-;30925:70;30988:6;30983:3;30925:70;:::i;:::-;30918:77;;31004:52;31049:6;31044:3;31037:4;31030:5;31026:16;31004:52;:::i;:::-;31081:29;31103:6;31081:29;:::i;:::-;31076:3;31072:39;31065:46;;30847:270;30757:360;;;;:::o;31123:640::-;31318:4;31356:3;31345:9;31341:19;31333:27;;31370:71;31438:1;31427:9;31423:17;31414:6;31370:71;:::i;:::-;31451:72;31519:2;31508:9;31504:18;31495:6;31451:72;:::i;:::-;31533;31601:2;31590:9;31586:18;31577:6;31533:72;:::i;:::-;31652:9;31646:4;31642:20;31637:2;31626:9;31622:18;31615:48;31680:76;31751:4;31742:6;31680:76;:::i;:::-;31672:84;;31123:640;;;;;;;:::o;31769:141::-;31825:5;31856:6;31850:13;31841:22;;31872:32;31898:5;31872:32;:::i;:::-;31769:141;;;;:::o;31916:349::-;31985:6;32034:2;32022:9;32013:7;32009:23;32005:32;32002:119;;;32040:79;;:::i;:::-;32002:119;32160:1;32185:63;32240:7;32231:6;32220:9;32216:22;32185:63;:::i;:::-;32175:73;;32131:127;31916:349;;;;:::o;32271:233::-;32310:3;32333:24;32351:5;32333:24;:::i;:::-;32324:33;;32379:66;32372:5;32369:77;32366:103;;;32449:18;;:::i;:::-;32366:103;32496:1;32489:5;32485:13;32478:20;;32271:233;;;:::o;32510:180::-;32558:77;32555:1;32548:88;32655:4;32652:1;32645:15;32679:4;32676:1;32669:15;32696:185;32736:1;32753:20;32771:1;32753:20;:::i;:::-;32748:25;;32787:20;32805:1;32787:20;:::i;:::-;32782:25;;32826:1;32816:35;;32831:18;;:::i;:::-;32816:35;32873:1;32870;32866:9;32861:14;;32696:185;;;;:::o;32887:191::-;32927:4;32947:20;32965:1;32947:20;:::i;:::-;32942:25;;32981:20;32999:1;32981:20;:::i;:::-;32976:25;;33020:1;33017;33014:8;33011:34;;;33025:18;;:::i;:::-;33011:34;33070:1;33067;33063:9;33055:17;;32887:191;;;;:::o;33084:176::-;33116:1;33133:20;33151:1;33133:20;:::i;:::-;33128:25;;33167:20;33185:1;33167:20;:::i;:::-;33162:25;;33206:1;33196:35;;33211:18;;:::i;:::-;33196:35;33252:1;33249;33245:9;33240:14;;33084:176;;;;:::o;33266:180::-;33314:77;33311:1;33304:88;33411:4;33408:1;33401:15;33435:4;33432:1;33425:15

Swarm Source

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