ETH Price: $3,492.69 (+3.61%)
Gas: 4 Gwei

Token

GobinWillDoIt (GBWD)
 

Overview

Max Total Supply

5,000 GBWD

Holders

1,906

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 GBWD
0x7e91d8f68ac6d5955412e9e4d8962137685f562d
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:
GobinWillDoIt

Compiler Version
v0.8.12+commit.f00d7308

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

// SPDX-License-Identifier: MIT


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/no.sol



pragma solidity >=0.8.9 <0.9.0;




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

  using Strings for uint256;

  string public uriPrefix = 'ipfs://QmY782yrtLupzm3QfGpf1KSxzGJwqCgZ1QEDHTrDjfTR1b/';
  string public uriSuffix = '.json';
  
  uint256 public cost;
  uint256 public price = 0.0055 ether;
  uint256 public maxSupply = 5000;
  uint256 public maxPerWallet  = 15;
  uint256 public totalFree = 1500;
  uint256 public maxMintAmountPerTx = 5;
  uint256 public maxPerFree = 3;
  uint256 public maxPerFreeWallet = 3;

  constructor() ERC721A("GobinWillDoIt", "GBWD") {
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function withdraw() public onlyOwner nonReentrant {
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
  }

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

Contract Security Audit

Contract ABI

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

60806040526040518060600160405280603681526020016200441360369139600a90805190602001906200003592919062000277565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90805190602001906200008392919062000277565b5066138a388a43c000600d55611388600e55600f80556105dc601055600560115560036012556003601355348015620000bb57600080fd5b506040518060400160405280600d81526020017f476f62696e57696c6c446f4974000000000000000000000000000000000000008152506040518060400160405280600481526020017f474257440000000000000000000000000000000000000000000000000000000081525081600290805190602001906200014092919062000277565b5080600390805190602001906200015992919062000277565b506200016a620001a060201b60201c565b60008190555050506200019262000186620001a960201b60201c565b620001b160201b60201c565b60016009819055506200038c565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002859062000356565b90600052602060002090601f016020900481019282620002a95760008555620002f5565b82601f10620002c457805160ff1916838001178555620002f5565b82800160010185558215620002f5579182015b82811115620002f4578251825591602001919060010190620002d7565b5b50905062000304919062000308565b5090565b5b808211156200032357600081600090555060010162000309565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200036f57607f821691505b6020821081141562000386576200038562000327565b5b50919050565b614077806200039c6000396000f3fe60806040526004361061023b5760003560e01c8063715018a61161012e578063b88d4fde116100ab578063e268e4d31161006f578063e268e4d31461083e578063e945971c14610867578063e985e9c514610890578063efbd73f4146108cd578063f2fde38b146108f65761023b565b8063b88d4fde14610745578063c7c39ffc1461076e578063c87b56dd14610799578063d5abeb01146107d6578063dc33e681146108015761023b565b8063a035b1fe116100f2578063a035b1fe14610681578063a0712d68146106ac578063a09fa941146106c8578063a22cb465146106f3578063b071401b1461071c5761023b565b8063715018a6146105c05780637ec4a659146105d75780638da5cb5b1461060057806394354fd01461062b57806395d89b41146106565761023b565b806342842e0e116101bc5780635e85d3a3116101805780635e85d3a3146104c957806362b99ad4146104f25780636352211e1461051d5780636f8b44b01461055a57806370a08231146105835761023b565b806342842e0e146103f857806344a0d68a14610421578063453c23101461044a5780635503a0e814610475578063563aaf11146104a05761023b565b806316ba10e01161020357806316ba10e01461033957806318160ddd1461036257806323b872dd1461038d578063333e44e6146103b65780633ccfd60b146103e15761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806313faede61461030e575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061306f565b61091f565b60405161027491906130b7565b60405180910390f35b34801561028957600080fd5b50610292610a01565b60405161029f919061316b565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906131c3565b610a93565b6040516102dc9190613231565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613278565b610b0f565b005b34801561031a57600080fd5b50610323610c1a565b60405161033091906132c7565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190613417565b610c20565b005b34801561036e57600080fd5b50610377610cb6565b60405161038491906132c7565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af9190613460565b610ccd565b005b3480156103c257600080fd5b506103cb610cdd565b6040516103d891906132c7565b60405180910390f35b3480156103ed57600080fd5b506103f6610ce3565b005b34801561040457600080fd5b5061041f600480360381019061041a9190613460565b610e35565b005b34801561042d57600080fd5b50610448600480360381019061044391906131c3565b610e55565b005b34801561045657600080fd5b5061045f610edb565b60405161046c91906132c7565b60405180910390f35b34801561048157600080fd5b5061048a610ee1565b604051610497919061316b565b60405180910390f35b3480156104ac57600080fd5b506104c760048036038101906104c291906131c3565b610f6f565b005b3480156104d557600080fd5b506104f060048036038101906104eb91906131c3565b610ff5565b005b3480156104fe57600080fd5b5061050761107b565b604051610514919061316b565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f91906131c3565b611109565b6040516105519190613231565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c91906131c3565b61111f565b005b34801561058f57600080fd5b506105aa60048036038101906105a591906134b3565b6111a5565b6040516105b791906132c7565b60405180910390f35b3480156105cc57600080fd5b506105d5611275565b005b3480156105e357600080fd5b506105fe60048036038101906105f99190613417565b6112fd565b005b34801561060c57600080fd5b50610615611393565b6040516106229190613231565b60405180910390f35b34801561063757600080fd5b506106406113bd565b60405161064d91906132c7565b60405180910390f35b34801561066257600080fd5b5061066b6113c3565b604051610678919061316b565b60405180910390f35b34801561068d57600080fd5b50610696611455565b6040516106a391906132c7565b60405180910390f35b6106c660048036038101906106c191906131c3565b61145b565b005b3480156106d457600080fd5b506106dd6116a8565b6040516106ea91906132c7565b60405180910390f35b3480156106ff57600080fd5b5061071a6004803603810190610715919061350c565b6116ae565b005b34801561072857600080fd5b50610743600480360381019061073e91906131c3565b611826565b005b34801561075157600080fd5b5061076c600480360381019061076791906135ed565b6118ac565b005b34801561077a57600080fd5b50610783611928565b60405161079091906132c7565b60405180910390f35b3480156107a557600080fd5b506107c060048036038101906107bb91906131c3565b61192e565b6040516107cd919061316b565b60405180910390f35b3480156107e257600080fd5b506107eb6119d8565b6040516107f891906132c7565b60405180910390f35b34801561080d57600080fd5b50610828600480360381019061082391906134b3565b6119de565b60405161083591906132c7565b60405180910390f35b34801561084a57600080fd5b50610865600480360381019061086091906131c3565b6119f0565b005b34801561087357600080fd5b5061088e600480360381019061088991906131c3565b611a76565b005b34801561089c57600080fd5b506108b760048036038101906108b29190613670565b611afc565b6040516108c491906130b7565b60405180910390f35b3480156108d957600080fd5b506108f460048036038101906108ef91906136b0565b611b90565b005b34801561090257600080fd5b5061091d600480360381019061091891906134b3565b611cc4565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ea57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109fa57506109f982611dbc565b5b9050919050565b606060028054610a109061371f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3c9061371f565b8015610a895780601f10610a5e57610100808354040283529160200191610a89565b820191906000526020600020905b815481529060010190602001808311610a6c57829003601f168201915b5050505050905090565b6000610a9e82611e26565b610ad4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1a82611109565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b82576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba1611e74565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bd35750610bd181610bcc611e74565b611afc565b155b15610c0a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c15838383611e7c565b505050565b600c5481565b610c28611e74565b73ffffffffffffffffffffffffffffffffffffffff16610c46611393565b73ffffffffffffffffffffffffffffffffffffffff1614610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c939061379d565b60405180910390fd5b80600b9080519060200190610cb2929190612f1d565b5050565b6000610cc0611f2e565b6001546000540303905090565b610cd8838383611f37565b505050565b60105481565b610ceb611e74565b73ffffffffffffffffffffffffffffffffffffffff16610d09611393565b73ffffffffffffffffffffffffffffffffffffffff1614610d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d569061379d565b60405180910390fd5b60026009541415610da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9c90613809565b60405180910390fd5b60026009819055506000610db7611393565b73ffffffffffffffffffffffffffffffffffffffff1647604051610dda9061385a565b60006040518083038185875af1925050503d8060008114610e17576040519150601f19603f3d011682016040523d82523d6000602084013e610e1c565b606091505b5050905080610e2a57600080fd5b506001600981905550565b610e50838383604051806020016040528060008152506118ac565b505050565b610e5d611e74565b73ffffffffffffffffffffffffffffffffffffffff16610e7b611393565b73ffffffffffffffffffffffffffffffffffffffff1614610ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec89061379d565b60405180910390fd5b80600d8190555050565b600f5481565b600b8054610eee9061371f565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1a9061371f565b8015610f675780601f10610f3c57610100808354040283529160200191610f67565b820191906000526020600020905b815481529060010190602001808311610f4a57829003601f168201915b505050505081565b610f77611e74565b73ffffffffffffffffffffffffffffffffffffffff16610f95611393565b73ffffffffffffffffffffffffffffffffffffffff1614610feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe29061379d565b60405180910390fd5b8060108190555050565b610ffd611e74565b73ffffffffffffffffffffffffffffffffffffffff1661101b611393565b73ffffffffffffffffffffffffffffffffffffffff1614611071576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110689061379d565b60405180910390fd5b8060138190555050565b600a80546110889061371f565b80601f01602080910402602001604051908101604052809291908181526020018280546110b49061371f565b80156111015780601f106110d657610100808354040283529160200191611101565b820191906000526020600020905b8154815290600101906020018083116110e457829003601f168201915b505050505081565b6000611114826123ed565b600001519050919050565b611127611e74565b73ffffffffffffffffffffffffffffffffffffffff16611145611393565b73ffffffffffffffffffffffffffffffffffffffff161461119b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111929061379d565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561120d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61127d611e74565b73ffffffffffffffffffffffffffffffffffffffff1661129b611393565b73ffffffffffffffffffffffffffffffffffffffff16146112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e89061379d565b60405180910390fd5b6112fb600061267c565b565b611305611e74565b73ffffffffffffffffffffffffffffffffffffffff16611323611393565b73ffffffffffffffffffffffffffffffffffffffff1614611379576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113709061379d565b60405180910390fd5b80600a908051906020019061138f929190612f1d565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b6060600380546113d29061371f565b80601f01602080910402602001604051908101604052809291908181526020018280546113fe9061371f565b801561144b5780601f106114205761010080835404028352916020019161144b565b820191906000526020600020905b81548152906001019060200180831161142e57829003601f168201915b5050505050905090565b600d5481565b8060008111801561146e57506011548111155b6114ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a4906138bb565b60405180910390fd5b600e54816114b9610cb6565b6114c3919061390a565b1115611504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fb906139ac565b60405180910390fd5b8180600c5461151391906139cc565b341015611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c90613a72565b60405180910390fd5b600d54600c81905550600160105461156d919061390a565b83611576610cb6565b611580919061390a565b101561163a576000600c8190555060125483111580156115a257506000600c54145b6115e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d890613ade565b60405180910390fd5b601354836115ee336119de565b6115f8919061390a565b1115611639576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163090613b70565b60405180910390fd5b5b600f5483611647336119de565b611651919061390a565b1115611692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168990613bdc565b60405180910390fd5b6116a361169d611e74565b84612742565b505050565b60135481565b6116b6611e74565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561171b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611728611e74565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117d5611e74565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161181a91906130b7565b60405180910390a35050565b61182e611e74565b73ffffffffffffffffffffffffffffffffffffffff1661184c611393565b73ffffffffffffffffffffffffffffffffffffffff16146118a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118999061379d565b60405180910390fd5b8060118190555050565b6118b7848484611f37565b6118d68373ffffffffffffffffffffffffffffffffffffffff16612760565b80156118eb57506118e984848484612783565b155b15611922576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60125481565b606061193982611e26565b611978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196f90613c6e565b60405180910390fd5b60006119826128d4565b905060008151116119a257604051806020016040528060008152506119d0565b806119ac84612966565b600b6040516020016119c093929190613d5e565b6040516020818303038152906040525b915050919050565b600e5481565b60006119e982612ac7565b9050919050565b6119f8611e74565b73ffffffffffffffffffffffffffffffffffffffff16611a16611393565b73ffffffffffffffffffffffffffffffffffffffff1614611a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a639061379d565b60405180910390fd5b80600f8190555050565b611a7e611e74565b73ffffffffffffffffffffffffffffffffffffffff16611a9c611393565b73ffffffffffffffffffffffffffffffffffffffff1614611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae99061379d565b60405180910390fd5b8060128190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611ba357506011548111155b611be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd9906138bb565b60405180910390fd5b600e5481611bee610cb6565b611bf8919061390a565b1115611c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c30906139ac565b60405180910390fd5b611c41611e74565b73ffffffffffffffffffffffffffffffffffffffff16611c5f611393565b73ffffffffffffffffffffffffffffffffffffffff1614611cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cac9061379d565b60405180910390fd5b611cbf8284612742565b505050565b611ccc611e74565b73ffffffffffffffffffffffffffffffffffffffff16611cea611393565b73ffffffffffffffffffffffffffffffffffffffff1614611d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d379061379d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da790613e01565b60405180910390fd5b611db98161267c565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611e31611f2e565b11158015611e40575060005482105b8015611e6d575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611f42826123ed565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fad576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611fce611e74565b73ffffffffffffffffffffffffffffffffffffffff161480611ffd5750611ffc85611ff7611e74565b611afc565b5b80612042575061200b611e74565b73ffffffffffffffffffffffffffffffffffffffff1661202a84610a93565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061207b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120e2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120ef8585856001612b31565b6120fb60008487611e7c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561237b57600054821461237a57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123e68585856001612b37565b5050505050565b6123f5612fa3565b600082905080612403611f2e565b11158015612412575060005481105b15612645576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161264357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612527578092505050612677565b5b60011561264257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461263d578092505050612677565b612528565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61275c828260405180602001604052806000815250612b3d565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127a9611e74565b8786866040518563ffffffff1660e01b81526004016127cb9493929190613e76565b6020604051808303816000875af192505050801561280757506040513d601f19601f820116820180604052508101906128049190613ed7565b60015b612881573d8060008114612837576040519150601f19603f3d011682016040523d82523d6000602084013e61283c565b606091505b50600081511415612879576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546128e39061371f565b80601f016020809104026020016040519081016040528092919081815260200182805461290f9061371f565b801561295c5780601f106129315761010080835404028352916020019161295c565b820191906000526020600020905b81548152906001019060200180831161293f57829003601f168201915b5050505050905090565b606060008214156129ae576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ac2565b600082905060005b600082146129e05780806129c990613f04565b915050600a826129d99190613f7c565b91506129b6565b60008167ffffffffffffffff8111156129fc576129fb6132ec565b5b6040519080825280601f01601f191660200182016040528015612a2e5781602001600182028036833780820191505090505b5090505b60008514612abb57600182612a479190613fad565b9150600a85612a569190613fe1565b6030612a62919061390a565b60f81b818381518110612a7857612a77614012565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ab49190613f7c565b9450612a32565b8093505050505b919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b612b4a8383836001612b4f565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612bbc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612bf7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c046000868387612b31565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612dce5750612dcd8773ffffffffffffffffffffffffffffffffffffffff16612760565b5b15612e94575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e436000888480600101955088612783565b612e79576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612dd4578260005414612e8f57600080fd5b612f00565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612e95575b816000819055505050612f166000868387612b37565b5050505050565b828054612f299061371f565b90600052602060002090601f016020900481019282612f4b5760008555612f92565b82601f10612f6457805160ff1916838001178555612f92565b82800160010185558215612f92579182015b82811115612f91578251825591602001919060010190612f76565b5b509050612f9f9190612fe6565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612fff576000816000905550600101612fe7565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61304c81613017565b811461305757600080fd5b50565b60008135905061306981613043565b92915050565b6000602082840312156130855761308461300d565b5b60006130938482850161305a565b91505092915050565b60008115159050919050565b6130b18161309c565b82525050565b60006020820190506130cc60008301846130a8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561310c5780820151818401526020810190506130f1565b8381111561311b576000848401525b50505050565b6000601f19601f8301169050919050565b600061313d826130d2565b61314781856130dd565b93506131578185602086016130ee565b61316081613121565b840191505092915050565b600060208201905081810360008301526131858184613132565b905092915050565b6000819050919050565b6131a08161318d565b81146131ab57600080fd5b50565b6000813590506131bd81613197565b92915050565b6000602082840312156131d9576131d861300d565b5b60006131e7848285016131ae565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061321b826131f0565b9050919050565b61322b81613210565b82525050565b60006020820190506132466000830184613222565b92915050565b61325581613210565b811461326057600080fd5b50565b6000813590506132728161324c565b92915050565b6000806040838503121561328f5761328e61300d565b5b600061329d85828601613263565b92505060206132ae858286016131ae565b9150509250929050565b6132c18161318d565b82525050565b60006020820190506132dc60008301846132b8565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61332482613121565b810181811067ffffffffffffffff82111715613343576133426132ec565b5b80604052505050565b6000613356613003565b9050613362828261331b565b919050565b600067ffffffffffffffff821115613382576133816132ec565b5b61338b82613121565b9050602081019050919050565b82818337600083830152505050565b60006133ba6133b584613367565b61334c565b9050828152602081018484840111156133d6576133d56132e7565b5b6133e1848285613398565b509392505050565b600082601f8301126133fe576133fd6132e2565b5b813561340e8482602086016133a7565b91505092915050565b60006020828403121561342d5761342c61300d565b5b600082013567ffffffffffffffff81111561344b5761344a613012565b5b613457848285016133e9565b91505092915050565b6000806000606084860312156134795761347861300d565b5b600061348786828701613263565b935050602061349886828701613263565b92505060406134a9868287016131ae565b9150509250925092565b6000602082840312156134c9576134c861300d565b5b60006134d784828501613263565b91505092915050565b6134e98161309c565b81146134f457600080fd5b50565b600081359050613506816134e0565b92915050565b600080604083850312156135235761352261300d565b5b600061353185828601613263565b9250506020613542858286016134f7565b9150509250929050565b600067ffffffffffffffff821115613567576135666132ec565b5b61357082613121565b9050602081019050919050565b600061359061358b8461354c565b61334c565b9050828152602081018484840111156135ac576135ab6132e7565b5b6135b7848285613398565b509392505050565b600082601f8301126135d4576135d36132e2565b5b81356135e484826020860161357d565b91505092915050565b600080600080608085870312156136075761360661300d565b5b600061361587828801613263565b945050602061362687828801613263565b9350506040613637878288016131ae565b925050606085013567ffffffffffffffff81111561365857613657613012565b5b613664878288016135bf565b91505092959194509250565b600080604083850312156136875761368661300d565b5b600061369585828601613263565b92505060206136a685828601613263565b9150509250929050565b600080604083850312156136c7576136c661300d565b5b60006136d5858286016131ae565b92505060206136e685828601613263565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061373757607f821691505b6020821081141561374b5761374a6136f0565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137876020836130dd565b915061379282613751565b602082019050919050565b600060208201905081810360008301526137b68161377a565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006137f3601f836130dd565b91506137fe826137bd565b602082019050919050565b60006020820190508181036000830152613822816137e6565b9050919050565b600081905092915050565b50565b6000613844600083613829565b915061384f82613834565b600082019050919050565b600061386582613837565b9150819050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006138a56014836130dd565b91506138b08261386f565b602082019050919050565b600060208201905081810360008301526138d481613898565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139158261318d565b91506139208361318d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613955576139546138db565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006139966014836130dd565b91506139a182613960565b602082019050919050565b600060208201905081810360008301526139c581613989565b9050919050565b60006139d78261318d565b91506139e28361318d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a1b57613a1a6138db565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613a5c6013836130dd565b9150613a6782613a26565b602082019050919050565b60006020820190508181036000830152613a8b81613a4f565b9050919050565b7f546f6f206d616e792046726565206d696e747321000000000000000000000000600082015250565b6000613ac86014836130dd565b9150613ad382613a92565b602082019050919050565b60006020820190508181036000830152613af781613abb565b9050919050565b7f46726565206d696e74206c696d697420686173206265656e207265616368656460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b5a6021836130dd565b9150613b6582613afe565b604082019050919050565b60006020820190508181036000830152613b8981613b4d565b9050919050565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b6000613bc66014836130dd565b9150613bd182613b90565b602082019050919050565b60006020820190508181036000830152613bf581613bb9565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613c58602f836130dd565b9150613c6382613bfc565b604082019050919050565b60006020820190508181036000830152613c8781613c4b565b9050919050565b600081905092915050565b6000613ca4826130d2565b613cae8185613c8e565b9350613cbe8185602086016130ee565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613cec8161371f565b613cf68186613c8e565b94506001821660008114613d115760018114613d2257613d55565b60ff19831686528186019350613d55565b613d2b85613cca565b60005b83811015613d4d57815481890152600182019150602081019050613d2e565b838801955050505b50505092915050565b6000613d6a8286613c99565b9150613d768285613c99565b9150613d828284613cdf565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613deb6026836130dd565b9150613df682613d8f565b604082019050919050565b60006020820190508181036000830152613e1a81613dde565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613e4882613e21565b613e528185613e2c565b9350613e628185602086016130ee565b613e6b81613121565b840191505092915050565b6000608082019050613e8b6000830187613222565b613e986020830186613222565b613ea560408301856132b8565b8181036060830152613eb78184613e3d565b905095945050505050565b600081519050613ed181613043565b92915050565b600060208284031215613eed57613eec61300d565b5b6000613efb84828501613ec2565b91505092915050565b6000613f0f8261318d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f4257613f416138db565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f878261318d565b9150613f928361318d565b925082613fa257613fa1613f4d565b5b828204905092915050565b6000613fb88261318d565b9150613fc38361318d565b925082821015613fd657613fd56138db565b5b828203905092915050565b6000613fec8261318d565b9150613ff78361318d565b92508261400757614006613f4d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122072d7b2f4208d070caaafdd57f59e4bfac795c6997ca2c969f21a537cb28f9da164736f6c634300080c0033697066733a2f2f516d593738327972744c75707a6d335166477066314b53787a474a777143675a31514544485472446a66545231622f

Deployed Bytecode

0x60806040526004361061023b5760003560e01c8063715018a61161012e578063b88d4fde116100ab578063e268e4d31161006f578063e268e4d31461083e578063e945971c14610867578063e985e9c514610890578063efbd73f4146108cd578063f2fde38b146108f65761023b565b8063b88d4fde14610745578063c7c39ffc1461076e578063c87b56dd14610799578063d5abeb01146107d6578063dc33e681146108015761023b565b8063a035b1fe116100f2578063a035b1fe14610681578063a0712d68146106ac578063a09fa941146106c8578063a22cb465146106f3578063b071401b1461071c5761023b565b8063715018a6146105c05780637ec4a659146105d75780638da5cb5b1461060057806394354fd01461062b57806395d89b41146106565761023b565b806342842e0e116101bc5780635e85d3a3116101805780635e85d3a3146104c957806362b99ad4146104f25780636352211e1461051d5780636f8b44b01461055a57806370a08231146105835761023b565b806342842e0e146103f857806344a0d68a14610421578063453c23101461044a5780635503a0e814610475578063563aaf11146104a05761023b565b806316ba10e01161020357806316ba10e01461033957806318160ddd1461036257806323b872dd1461038d578063333e44e6146103b65780633ccfd60b146103e15761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806313faede61461030e575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061306f565b61091f565b60405161027491906130b7565b60405180910390f35b34801561028957600080fd5b50610292610a01565b60405161029f919061316b565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906131c3565b610a93565b6040516102dc9190613231565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613278565b610b0f565b005b34801561031a57600080fd5b50610323610c1a565b60405161033091906132c7565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190613417565b610c20565b005b34801561036e57600080fd5b50610377610cb6565b60405161038491906132c7565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af9190613460565b610ccd565b005b3480156103c257600080fd5b506103cb610cdd565b6040516103d891906132c7565b60405180910390f35b3480156103ed57600080fd5b506103f6610ce3565b005b34801561040457600080fd5b5061041f600480360381019061041a9190613460565b610e35565b005b34801561042d57600080fd5b50610448600480360381019061044391906131c3565b610e55565b005b34801561045657600080fd5b5061045f610edb565b60405161046c91906132c7565b60405180910390f35b34801561048157600080fd5b5061048a610ee1565b604051610497919061316b565b60405180910390f35b3480156104ac57600080fd5b506104c760048036038101906104c291906131c3565b610f6f565b005b3480156104d557600080fd5b506104f060048036038101906104eb91906131c3565b610ff5565b005b3480156104fe57600080fd5b5061050761107b565b604051610514919061316b565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f91906131c3565b611109565b6040516105519190613231565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c91906131c3565b61111f565b005b34801561058f57600080fd5b506105aa60048036038101906105a591906134b3565b6111a5565b6040516105b791906132c7565b60405180910390f35b3480156105cc57600080fd5b506105d5611275565b005b3480156105e357600080fd5b506105fe60048036038101906105f99190613417565b6112fd565b005b34801561060c57600080fd5b50610615611393565b6040516106229190613231565b60405180910390f35b34801561063757600080fd5b506106406113bd565b60405161064d91906132c7565b60405180910390f35b34801561066257600080fd5b5061066b6113c3565b604051610678919061316b565b60405180910390f35b34801561068d57600080fd5b50610696611455565b6040516106a391906132c7565b60405180910390f35b6106c660048036038101906106c191906131c3565b61145b565b005b3480156106d457600080fd5b506106dd6116a8565b6040516106ea91906132c7565b60405180910390f35b3480156106ff57600080fd5b5061071a6004803603810190610715919061350c565b6116ae565b005b34801561072857600080fd5b50610743600480360381019061073e91906131c3565b611826565b005b34801561075157600080fd5b5061076c600480360381019061076791906135ed565b6118ac565b005b34801561077a57600080fd5b50610783611928565b60405161079091906132c7565b60405180910390f35b3480156107a557600080fd5b506107c060048036038101906107bb91906131c3565b61192e565b6040516107cd919061316b565b60405180910390f35b3480156107e257600080fd5b506107eb6119d8565b6040516107f891906132c7565b60405180910390f35b34801561080d57600080fd5b50610828600480360381019061082391906134b3565b6119de565b60405161083591906132c7565b60405180910390f35b34801561084a57600080fd5b50610865600480360381019061086091906131c3565b6119f0565b005b34801561087357600080fd5b5061088e600480360381019061088991906131c3565b611a76565b005b34801561089c57600080fd5b506108b760048036038101906108b29190613670565b611afc565b6040516108c491906130b7565b60405180910390f35b3480156108d957600080fd5b506108f460048036038101906108ef91906136b0565b611b90565b005b34801561090257600080fd5b5061091d600480360381019061091891906134b3565b611cc4565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ea57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109fa57506109f982611dbc565b5b9050919050565b606060028054610a109061371f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3c9061371f565b8015610a895780601f10610a5e57610100808354040283529160200191610a89565b820191906000526020600020905b815481529060010190602001808311610a6c57829003601f168201915b5050505050905090565b6000610a9e82611e26565b610ad4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1a82611109565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b82576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba1611e74565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bd35750610bd181610bcc611e74565b611afc565b155b15610c0a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c15838383611e7c565b505050565b600c5481565b610c28611e74565b73ffffffffffffffffffffffffffffffffffffffff16610c46611393565b73ffffffffffffffffffffffffffffffffffffffff1614610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c939061379d565b60405180910390fd5b80600b9080519060200190610cb2929190612f1d565b5050565b6000610cc0611f2e565b6001546000540303905090565b610cd8838383611f37565b505050565b60105481565b610ceb611e74565b73ffffffffffffffffffffffffffffffffffffffff16610d09611393565b73ffffffffffffffffffffffffffffffffffffffff1614610d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d569061379d565b60405180910390fd5b60026009541415610da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9c90613809565b60405180910390fd5b60026009819055506000610db7611393565b73ffffffffffffffffffffffffffffffffffffffff1647604051610dda9061385a565b60006040518083038185875af1925050503d8060008114610e17576040519150601f19603f3d011682016040523d82523d6000602084013e610e1c565b606091505b5050905080610e2a57600080fd5b506001600981905550565b610e50838383604051806020016040528060008152506118ac565b505050565b610e5d611e74565b73ffffffffffffffffffffffffffffffffffffffff16610e7b611393565b73ffffffffffffffffffffffffffffffffffffffff1614610ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec89061379d565b60405180910390fd5b80600d8190555050565b600f5481565b600b8054610eee9061371f565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1a9061371f565b8015610f675780601f10610f3c57610100808354040283529160200191610f67565b820191906000526020600020905b815481529060010190602001808311610f4a57829003601f168201915b505050505081565b610f77611e74565b73ffffffffffffffffffffffffffffffffffffffff16610f95611393565b73ffffffffffffffffffffffffffffffffffffffff1614610feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe29061379d565b60405180910390fd5b8060108190555050565b610ffd611e74565b73ffffffffffffffffffffffffffffffffffffffff1661101b611393565b73ffffffffffffffffffffffffffffffffffffffff1614611071576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110689061379d565b60405180910390fd5b8060138190555050565b600a80546110889061371f565b80601f01602080910402602001604051908101604052809291908181526020018280546110b49061371f565b80156111015780601f106110d657610100808354040283529160200191611101565b820191906000526020600020905b8154815290600101906020018083116110e457829003601f168201915b505050505081565b6000611114826123ed565b600001519050919050565b611127611e74565b73ffffffffffffffffffffffffffffffffffffffff16611145611393565b73ffffffffffffffffffffffffffffffffffffffff161461119b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111929061379d565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561120d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61127d611e74565b73ffffffffffffffffffffffffffffffffffffffff1661129b611393565b73ffffffffffffffffffffffffffffffffffffffff16146112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e89061379d565b60405180910390fd5b6112fb600061267c565b565b611305611e74565b73ffffffffffffffffffffffffffffffffffffffff16611323611393565b73ffffffffffffffffffffffffffffffffffffffff1614611379576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113709061379d565b60405180910390fd5b80600a908051906020019061138f929190612f1d565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b6060600380546113d29061371f565b80601f01602080910402602001604051908101604052809291908181526020018280546113fe9061371f565b801561144b5780601f106114205761010080835404028352916020019161144b565b820191906000526020600020905b81548152906001019060200180831161142e57829003601f168201915b5050505050905090565b600d5481565b8060008111801561146e57506011548111155b6114ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a4906138bb565b60405180910390fd5b600e54816114b9610cb6565b6114c3919061390a565b1115611504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fb906139ac565b60405180910390fd5b8180600c5461151391906139cc565b341015611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c90613a72565b60405180910390fd5b600d54600c81905550600160105461156d919061390a565b83611576610cb6565b611580919061390a565b101561163a576000600c8190555060125483111580156115a257506000600c54145b6115e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d890613ade565b60405180910390fd5b601354836115ee336119de565b6115f8919061390a565b1115611639576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163090613b70565b60405180910390fd5b5b600f5483611647336119de565b611651919061390a565b1115611692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168990613bdc565b60405180910390fd5b6116a361169d611e74565b84612742565b505050565b60135481565b6116b6611e74565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561171b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611728611e74565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117d5611e74565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161181a91906130b7565b60405180910390a35050565b61182e611e74565b73ffffffffffffffffffffffffffffffffffffffff1661184c611393565b73ffffffffffffffffffffffffffffffffffffffff16146118a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118999061379d565b60405180910390fd5b8060118190555050565b6118b7848484611f37565b6118d68373ffffffffffffffffffffffffffffffffffffffff16612760565b80156118eb57506118e984848484612783565b155b15611922576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60125481565b606061193982611e26565b611978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196f90613c6e565b60405180910390fd5b60006119826128d4565b905060008151116119a257604051806020016040528060008152506119d0565b806119ac84612966565b600b6040516020016119c093929190613d5e565b6040516020818303038152906040525b915050919050565b600e5481565b60006119e982612ac7565b9050919050565b6119f8611e74565b73ffffffffffffffffffffffffffffffffffffffff16611a16611393565b73ffffffffffffffffffffffffffffffffffffffff1614611a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a639061379d565b60405180910390fd5b80600f8190555050565b611a7e611e74565b73ffffffffffffffffffffffffffffffffffffffff16611a9c611393565b73ffffffffffffffffffffffffffffffffffffffff1614611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae99061379d565b60405180910390fd5b8060128190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611ba357506011548111155b611be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd9906138bb565b60405180910390fd5b600e5481611bee610cb6565b611bf8919061390a565b1115611c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c30906139ac565b60405180910390fd5b611c41611e74565b73ffffffffffffffffffffffffffffffffffffffff16611c5f611393565b73ffffffffffffffffffffffffffffffffffffffff1614611cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cac9061379d565b60405180910390fd5b611cbf8284612742565b505050565b611ccc611e74565b73ffffffffffffffffffffffffffffffffffffffff16611cea611393565b73ffffffffffffffffffffffffffffffffffffffff1614611d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d379061379d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da790613e01565b60405180910390fd5b611db98161267c565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611e31611f2e565b11158015611e40575060005482105b8015611e6d575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611f42826123ed565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fad576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611fce611e74565b73ffffffffffffffffffffffffffffffffffffffff161480611ffd5750611ffc85611ff7611e74565b611afc565b5b80612042575061200b611e74565b73ffffffffffffffffffffffffffffffffffffffff1661202a84610a93565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061207b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120e2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120ef8585856001612b31565b6120fb60008487611e7c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561237b57600054821461237a57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123e68585856001612b37565b5050505050565b6123f5612fa3565b600082905080612403611f2e565b11158015612412575060005481105b15612645576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161264357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612527578092505050612677565b5b60011561264257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461263d578092505050612677565b612528565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61275c828260405180602001604052806000815250612b3d565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127a9611e74565b8786866040518563ffffffff1660e01b81526004016127cb9493929190613e76565b6020604051808303816000875af192505050801561280757506040513d601f19601f820116820180604052508101906128049190613ed7565b60015b612881573d8060008114612837576040519150601f19603f3d011682016040523d82523d6000602084013e61283c565b606091505b50600081511415612879576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546128e39061371f565b80601f016020809104026020016040519081016040528092919081815260200182805461290f9061371f565b801561295c5780601f106129315761010080835404028352916020019161295c565b820191906000526020600020905b81548152906001019060200180831161293f57829003601f168201915b5050505050905090565b606060008214156129ae576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ac2565b600082905060005b600082146129e05780806129c990613f04565b915050600a826129d99190613f7c565b91506129b6565b60008167ffffffffffffffff8111156129fc576129fb6132ec565b5b6040519080825280601f01601f191660200182016040528015612a2e5781602001600182028036833780820191505090505b5090505b60008514612abb57600182612a479190613fad565b9150600a85612a569190613fe1565b6030612a62919061390a565b60f81b818381518110612a7857612a77614012565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ab49190613f7c565b9450612a32565b8093505050505b919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b612b4a8383836001612b4f565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612bbc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612bf7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c046000868387612b31565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612dce5750612dcd8773ffffffffffffffffffffffffffffffffffffffff16612760565b5b15612e94575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e436000888480600101955088612783565b612e79576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612dd4578260005414612e8f57600080fd5b612f00565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612e95575b816000819055505050612f166000868387612b37565b5050505050565b828054612f299061371f565b90600052602060002090601f016020900481019282612f4b5760008555612f92565b82601f10612f6457805160ff1916838001178555612f92565b82800160010185558215612f92579182015b82811115612f91578251825591602001919060010190612f76565b5b509050612f9f9190612fe6565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612fff576000816000905550600101612fe7565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61304c81613017565b811461305757600080fd5b50565b60008135905061306981613043565b92915050565b6000602082840312156130855761308461300d565b5b60006130938482850161305a565b91505092915050565b60008115159050919050565b6130b18161309c565b82525050565b60006020820190506130cc60008301846130a8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561310c5780820151818401526020810190506130f1565b8381111561311b576000848401525b50505050565b6000601f19601f8301169050919050565b600061313d826130d2565b61314781856130dd565b93506131578185602086016130ee565b61316081613121565b840191505092915050565b600060208201905081810360008301526131858184613132565b905092915050565b6000819050919050565b6131a08161318d565b81146131ab57600080fd5b50565b6000813590506131bd81613197565b92915050565b6000602082840312156131d9576131d861300d565b5b60006131e7848285016131ae565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061321b826131f0565b9050919050565b61322b81613210565b82525050565b60006020820190506132466000830184613222565b92915050565b61325581613210565b811461326057600080fd5b50565b6000813590506132728161324c565b92915050565b6000806040838503121561328f5761328e61300d565b5b600061329d85828601613263565b92505060206132ae858286016131ae565b9150509250929050565b6132c18161318d565b82525050565b60006020820190506132dc60008301846132b8565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61332482613121565b810181811067ffffffffffffffff82111715613343576133426132ec565b5b80604052505050565b6000613356613003565b9050613362828261331b565b919050565b600067ffffffffffffffff821115613382576133816132ec565b5b61338b82613121565b9050602081019050919050565b82818337600083830152505050565b60006133ba6133b584613367565b61334c565b9050828152602081018484840111156133d6576133d56132e7565b5b6133e1848285613398565b509392505050565b600082601f8301126133fe576133fd6132e2565b5b813561340e8482602086016133a7565b91505092915050565b60006020828403121561342d5761342c61300d565b5b600082013567ffffffffffffffff81111561344b5761344a613012565b5b613457848285016133e9565b91505092915050565b6000806000606084860312156134795761347861300d565b5b600061348786828701613263565b935050602061349886828701613263565b92505060406134a9868287016131ae565b9150509250925092565b6000602082840312156134c9576134c861300d565b5b60006134d784828501613263565b91505092915050565b6134e98161309c565b81146134f457600080fd5b50565b600081359050613506816134e0565b92915050565b600080604083850312156135235761352261300d565b5b600061353185828601613263565b9250506020613542858286016134f7565b9150509250929050565b600067ffffffffffffffff821115613567576135666132ec565b5b61357082613121565b9050602081019050919050565b600061359061358b8461354c565b61334c565b9050828152602081018484840111156135ac576135ab6132e7565b5b6135b7848285613398565b509392505050565b600082601f8301126135d4576135d36132e2565b5b81356135e484826020860161357d565b91505092915050565b600080600080608085870312156136075761360661300d565b5b600061361587828801613263565b945050602061362687828801613263565b9350506040613637878288016131ae565b925050606085013567ffffffffffffffff81111561365857613657613012565b5b613664878288016135bf565b91505092959194509250565b600080604083850312156136875761368661300d565b5b600061369585828601613263565b92505060206136a685828601613263565b9150509250929050565b600080604083850312156136c7576136c661300d565b5b60006136d5858286016131ae565b92505060206136e685828601613263565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061373757607f821691505b6020821081141561374b5761374a6136f0565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137876020836130dd565b915061379282613751565b602082019050919050565b600060208201905081810360008301526137b68161377a565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006137f3601f836130dd565b91506137fe826137bd565b602082019050919050565b60006020820190508181036000830152613822816137e6565b9050919050565b600081905092915050565b50565b6000613844600083613829565b915061384f82613834565b600082019050919050565b600061386582613837565b9150819050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006138a56014836130dd565b91506138b08261386f565b602082019050919050565b600060208201905081810360008301526138d481613898565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139158261318d565b91506139208361318d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613955576139546138db565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006139966014836130dd565b91506139a182613960565b602082019050919050565b600060208201905081810360008301526139c581613989565b9050919050565b60006139d78261318d565b91506139e28361318d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a1b57613a1a6138db565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613a5c6013836130dd565b9150613a6782613a26565b602082019050919050565b60006020820190508181036000830152613a8b81613a4f565b9050919050565b7f546f6f206d616e792046726565206d696e747321000000000000000000000000600082015250565b6000613ac86014836130dd565b9150613ad382613a92565b602082019050919050565b60006020820190508181036000830152613af781613abb565b9050919050565b7f46726565206d696e74206c696d697420686173206265656e207265616368656460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b5a6021836130dd565b9150613b6582613afe565b604082019050919050565b60006020820190508181036000830152613b8981613b4d565b9050919050565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b6000613bc66014836130dd565b9150613bd182613b90565b602082019050919050565b60006020820190508181036000830152613bf581613bb9565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613c58602f836130dd565b9150613c6382613bfc565b604082019050919050565b60006020820190508181036000830152613c8781613c4b565b9050919050565b600081905092915050565b6000613ca4826130d2565b613cae8185613c8e565b9350613cbe8185602086016130ee565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613cec8161371f565b613cf68186613c8e565b94506001821660008114613d115760018114613d2257613d55565b60ff19831686528186019350613d55565b613d2b85613cca565b60005b83811015613d4d57815481890152600182019150602081019050613d2e565b838801955050505b50505092915050565b6000613d6a8286613c99565b9150613d768285613c99565b9150613d828284613cdf565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613deb6026836130dd565b9150613df682613d8f565b604082019050919050565b60006020820190508181036000830152613e1a81613dde565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613e4882613e21565b613e528185613e2c565b9350613e628185602086016130ee565b613e6b81613121565b840191505092915050565b6000608082019050613e8b6000830187613222565b613e986020830186613222565b613ea560408301856132b8565b8181036060830152613eb78184613e3d565b905095945050505050565b600081519050613ed181613043565b92915050565b600060208284031215613eed57613eec61300d565b5b6000613efb84828501613ec2565b91505092915050565b6000613f0f8261318d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f4257613f416138db565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f878261318d565b9150613f928361318d565b925082613fa257613fa1613f4d565b5b828204905092915050565b6000613fb88261318d565b9150613fc38361318d565b925082821015613fd657613fd56138db565b5b828203905092915050565b6000613fec8261318d565b9150613ff78361318d565b92508261400757614006613f4d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122072d7b2f4208d070caaafdd57f59e4bfac795c6997ca2c969f21a537cb28f9da164736f6c634300080c0033

Deployed Bytecode Sourcemap

47549:3499:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29701:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32814:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34317:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33880:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47777:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50679:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28950:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35182:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47915:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50785:150;;;;;;;;;;;;;:::i;:::-;;35423:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49711:75;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47877:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47735;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50108:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50309:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47648:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32622:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49792:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30070:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7459:103;;;;;;;;;;;;;:::i;:::-;;50573:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6808:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47951:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32983:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47801:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48505:543;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48027:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34593:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50437:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35679:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47993:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49332:373;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47841:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49217:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49996:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49892:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34951:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49056:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7717:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29701:305;29803:4;29855:25;29840:40;;;:11;:40;;;;:105;;;;29912:33;29897:48;;;:11;:48;;;;29840:105;:158;;;;29962:36;29986:11;29962:23;:36::i;:::-;29840:158;29820:178;;29701:305;;;:::o;32814:100::-;32868:13;32901:5;32894:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32814:100;:::o;34317:204::-;34385:7;34410:16;34418:7;34410;:16::i;:::-;34405:64;;34435:34;;;;;;;;;;;;;;34405:64;34489:15;:24;34505:7;34489:24;;;;;;;;;;;;;;;;;;;;;34482:31;;34317:204;;;:::o;33880:371::-;33953:13;33969:24;33985:7;33969:15;:24::i;:::-;33953:40;;34014:5;34008:11;;:2;:11;;;34004:48;;;34028:24;;;;;;;;;;;;;;34004:48;34085:5;34069:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;34095:37;34112:5;34119:12;:10;:12::i;:::-;34095:16;:37::i;:::-;34094:38;34069:63;34065:138;;;34156:35;;;;;;;;;;;;;;34065:138;34215:28;34224:2;34228:7;34237:5;34215:8;:28::i;:::-;33942:309;33880:371;;:::o;47777:19::-;;;;:::o;50679:100::-;7039:12;:10;:12::i;:::-;7028:23;;:7;:5;:7::i;:::-;:23;;;7020:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50763:10:::1;50751:9;:22;;;;;;;;;;;;:::i;:::-;;50679:100:::0;:::o;28950:303::-;28994:7;29219:15;:13;:15::i;:::-;29204:12;;29188:13;;:28;:46;29181:53;;28950:303;:::o;35182:170::-;35316:28;35326:4;35332:2;35336:7;35316:9;:28::i;:::-;35182:170;;;:::o;47915:31::-;;;;:::o;50785:150::-;7039:12;:10;:12::i;:::-;7028:23;;:7;:5;:7::i;:::-;:23;;;7020:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1782:1:::1;2380:7;;:19;;2372:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1782:1;2513:7;:18;;;;50843:7:::2;50864;:5;:7::i;:::-;50856:21;;50885;50856:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50842:69;;;50926:2;50918:11;;;::::0;::::2;;50835:100;1738:1:::1;2692:7;:22;;;;50785:150::o:0;35423:185::-;35561:39;35578:4;35584:2;35588:7;35561:39;;;;;;;;;;;;:16;:39::i;:::-;35423:185;;;:::o;49711:75::-;7039:12;:10;:12::i;:::-;7028:23;;:7;:5;:7::i;:::-;:23;;;7020:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49775:5:::1;49767;:13;;;;49711:75:::0;:::o;47877:33::-;;;;:::o;47735:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50108:94::-;7039:12;:10;:12::i;:::-;7028:23;;:7;:5;:7::i;:::-;:23;;;7020:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50186:10:::1;50174:9;:22;;;;50108:94:::0;:::o;50309:122::-;7039:12;:10;:12::i;:::-;7028:23;;:7;:5;:7::i;:::-;:23;;;7020:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50408:17:::1;50389:16;:36;;;;50309:122:::0;:::o;47648:82::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32622:125::-;32686:7;32713:21;32726:7;32713:12;:21::i;:::-;:26;;;32706:33;;32622:125;;;:::o;49792:94::-;7039:12;:10;:12::i;:::-;7028:23;;:7;:5;:7::i;:::-;:23;;;7020:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49870:10:::1;49858:9;:22;;;;49792:94:::0;:::o;30070:206::-;30134:7;30175:1;30158:19;;:5;:19;;;30154:60;;;30186:28;;;;;;;;;;;;;;30154:60;30240:12;:19;30253:5;30240:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30232:36;;30225:43;;30070:206;;;:::o;7459:103::-;7039:12;:10;:12::i;:::-;7028:23;;:7;:5;:7::i;:::-;:23;;;7020:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7524:30:::1;7551:1;7524:18;:30::i;:::-;7459:103::o:0;50573:100::-;7039:12;:10;:12::i;:::-;7028:23;;:7;:5;:7::i;:::-;:23;;;7020:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50657:10:::1;50645:9;:22;;;;;;;;;;;;:::i;:::-;;50573:100:::0;:::o;6808:87::-;6854:7;6881:6;;;;;;;;;;;6874:13;;6808:87;:::o;47951:37::-;;;;:::o;32983:104::-;33039:13;33072:7;33065:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32983:104;:::o;47801:35::-;;;;:::o;48505:543::-;48570:11;48202:1;48188:11;:15;:52;;;;;48222:18;;48207:11;:33;;48188:52;48180:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;48311:9;;48296:11;48280:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;48272:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48603:11:::1;48450;48443:4;;:18;;;;:::i;:::-;48430:9;:31;;48422:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;48630:5:::2;;48623:4;:12;;;;48687:1;48675:9;;:13;;;;:::i;:::-;48661:11;48645:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:43;48642:265;;;48706:1;48699:4;:8;;;;48739:10;;48724:11;:25;;:38;;;;;48761:1;48753:4;;:9;48724:38;48716:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;48846:16;;48831:11;48804:24;48817:10;48804:12;:24::i;:::-;:38;;;;:::i;:::-;:58;;48796:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;48642:265;48963:12;;48948:11;48921:24;48934:10;48921:12;:24::i;:::-;:38;;;;:::i;:::-;:54;;48913:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;49006:36;49016:12;:10;:12::i;:::-;49030:11;49006:9;:36::i;:::-;48352:1:::1;48505:543:::0;;:::o;48027:35::-;;;;:::o;34593:287::-;34704:12;:10;:12::i;:::-;34692:24;;:8;:24;;;34688:54;;;34725:17;;;;;;;;;;;;;;34688:54;34800:8;34755:18;:32;34774:12;:10;:12::i;:::-;34755:32;;;;;;;;;;;;;;;:42;34788:8;34755:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34853:8;34824:48;;34839:12;:10;:12::i;:::-;34824:48;;;34863:8;34824:48;;;;;;:::i;:::-;;;;;;;;34593:287;;:::o;50437:130::-;7039:12;:10;:12::i;:::-;7028:23;;:7;:5;:7::i;:::-;:23;;;7020:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50542:19:::1;50521:18;:40;;;;50437:130:::0;:::o;35679:369::-;35846:28;35856:4;35862:2;35866:7;35846:9;:28::i;:::-;35889:15;:2;:13;;;:15::i;:::-;:76;;;;;35909:56;35940:4;35946:2;35950:7;35959:5;35909:30;:56::i;:::-;35908:57;35889:76;35885:156;;;35989:40;;;;;;;;;;;;;;35885:156;35679:369;;;;:::o;47993:29::-;;;;:::o;49332:373::-;49406:13;49436:17;49444:8;49436:7;:17::i;:::-;49428:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;49514:28;49545:10;:8;:10::i;:::-;49514:41;;49600:1;49575:14;49569:28;:32;:130;;;;;;;;;;;;;;;;;49637:14;49653:19;:8;:17;:19::i;:::-;49674:9;49620:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49569:130;49562:137;;;49332:373;;;:::o;47841:31::-;;;;:::o;49217:107::-;49275:7;49298:20;49312:5;49298:13;:20::i;:::-;49291:27;;49217:107;;;:::o;49996:106::-;7039:12;:10;:12::i;:::-;7028:23;;:7;:5;:7::i;:::-;:23;;;7020:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50083:13:::1;50068:12;:28;;;;49996:106:::0;:::o;49892:98::-;7039:12;:10;:12::i;:::-;7028:23;;:7;:5;:7::i;:::-;:23;;;7020:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49973:11:::1;49960:10;:24;;;;49892:98:::0;:::o;34951:164::-;35048:4;35072:18;:25;35091:5;35072:25;;;;;;;;;;;;;;;:35;35098:8;35072:35;;;;;;;;;;;;;;;;;;;;;;;;;35065:42;;34951:164;;;;:::o;49056:155::-;49142:11;48202:1;48188:11;:15;:52;;;;;48222:18;;48207:11;:33;;48188:52;48180:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;48311:9;;48296:11;48280:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;48272:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7039:12:::1;:10;:12::i;:::-;7028:23;;:7;:5;:7::i;:::-;:23;;;7020:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49172:33:::2;49182:9;49193:11;49172:9;:33::i;:::-;49056:155:::0;;;:::o;7717:201::-;7039:12;:10;:12::i;:::-;7028:23;;:7;:5;:7::i;:::-;:23;;;7020:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7826:1:::1;7806:22;;:8;:22;;;;7798:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7882:28;7901:8;7882:18;:28::i;:::-;7717:201:::0;:::o;19592:157::-;19677:4;19716:25;19701:40;;;:11;:40;;;;19694:47;;19592:157;;;:::o;36303:174::-;36360:4;36403:7;36384:15;:13;:15::i;:::-;:26;;:53;;;;;36424:13;;36414:7;:23;36384:53;:85;;;;;36442:11;:20;36454:7;36442:20;;;;;;;;;;;:27;;;;;;;;;;;;36441:28;36384:85;36377:92;;36303:174;;;:::o;5532:98::-;5585:7;5612:10;5605:17;;5532:98;:::o;44460:196::-;44602:2;44575:15;:24;44591:7;44575:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44640:7;44636:2;44620:28;;44629:5;44620:28;;;;;;;;;;;;44460:196;;;:::o;50208:95::-;50273:7;50296:1;50289:8;;50208:95;:::o;39403:2130::-;39518:35;39556:21;39569:7;39556:12;:21::i;:::-;39518:59;;39616:4;39594:26;;:13;:18;;;:26;;;39590:67;;39629:28;;;;;;;;;;;;;;39590:67;39670:22;39712:4;39696:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;39733:36;39750:4;39756:12;:10;:12::i;:::-;39733:16;:36::i;:::-;39696:73;:126;;;;39810:12;:10;:12::i;:::-;39786:36;;:20;39798:7;39786:11;:20::i;:::-;:36;;;39696:126;39670:153;;39841:17;39836:66;;39867:35;;;;;;;;;;;;;;39836:66;39931:1;39917:16;;:2;:16;;;39913:52;;;39942:23;;;;;;;;;;;;;;39913:52;39978:43;40000:4;40006:2;40010:7;40019:1;39978:21;:43::i;:::-;40086:35;40103:1;40107:7;40116:4;40086:8;:35::i;:::-;40447:1;40417:12;:18;40430:4;40417:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40491:1;40463:12;:16;40476:2;40463:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40509:31;40543:11;:20;40555:7;40543:20;;;;;;;;;;;40509:54;;40594:2;40578:8;:13;;;:18;;;;;;;;;;;;;;;;;;40644:15;40611:8;:23;;;:49;;;;;;;;;;;;;;;;;;40912:19;40944:1;40934:7;:11;40912:33;;40960:31;40994:11;:24;41006:11;40994:24;;;;;;;;;;;40960:58;;41062:1;41037:27;;:8;:13;;;;;;;;;;;;:27;;;41033:384;;;41247:13;;41232:11;:28;41228:174;;41301:4;41285:8;:13;;;:20;;;;;;;;;;;;;;;;;;41354:13;:28;;;41328:8;:23;;;:54;;;;;;;;;;;;;;;;;;41228:174;41033:384;40392:1036;;;41464:7;41460:2;41445:27;;41454:4;41445:27;;;;;;;;;;;;41483:42;41504:4;41510:2;41514:7;41523:1;41483:20;:42::i;:::-;39507:2026;;39403:2130;;;:::o;31451:1109::-;31513:21;;:::i;:::-;31547:12;31562:7;31547:22;;31630:4;31611:15;:13;:15::i;:::-;:23;;:47;;;;;31645:13;;31638:4;:20;31611:47;31607:886;;;31679:31;31713:11;:17;31725:4;31713:17;;;;;;;;;;;31679:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31754:9;:16;;;31749:729;;31825:1;31799:28;;:9;:14;;;:28;;;31795:101;;31863:9;31856:16;;;;;;31795:101;32198:261;32205:4;32198:261;;;32238:6;;;;;;;;32283:11;:17;32295:4;32283:17;;;;;;;;;;;32271:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32357:1;32331:28;;:9;:14;;;:28;;;32327:109;;32399:9;32392:16;;;;;;32327:109;32198:261;;;31749:729;31660:833;31607:886;32521:31;;;;;;;;;;;;;;31451:1109;;;;:::o;8078:191::-;8152:16;8171:6;;;;;;;;;;;8152:25;;8197:8;8188:6;;:17;;;;;;;;;;;;;;;;;;8252:8;8221:40;;8242:8;8221:40;;;;;;;;;;;;8141:128;8078:191;:::o;36485:104::-;36554:27;36564:2;36568:8;36554:27;;;;;;;;;;;;:9;:27::i;:::-;36485:104;;:::o;9509:326::-;9569:4;9826:1;9804:7;:19;;;:23;9797:30;;9509:326;;;:::o;45148:667::-;45311:4;45348:2;45332:36;;;45369:12;:10;:12::i;:::-;45383:4;45389:7;45398:5;45332:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45328:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45583:1;45566:6;:13;:18;45562:235;;;45612:40;;;;;;;;;;;;;;45562:235;45755:6;45749:13;45740:6;45736:2;45732:15;45725:38;45328:480;45461:45;;;45451:55;;;:6;:55;;;;45444:62;;;45148:667;;;;;;:::o;50941:104::-;51001:13;51030:9;51023:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50941:104;:::o;3094:723::-;3150:13;3380:1;3371:5;:10;3367:53;;;3398:10;;;;;;;;;;;;;;;;;;;;;3367:53;3430:12;3445:5;3430:20;;3461:14;3486:78;3501:1;3493:4;:9;3486:78;;3519:8;;;;;:::i;:::-;;;;3550:2;3542:10;;;;;:::i;:::-;;;3486:78;;;3574:19;3606:6;3596:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3574:39;;3624:154;3640:1;3631:5;:10;3624:154;;3668:1;3658:11;;;;;:::i;:::-;;;3735:2;3727:5;:10;;;;:::i;:::-;3714:2;:24;;;;:::i;:::-;3701:39;;3684:6;3691;3684:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3764:2;3755:11;;;;;:::i;:::-;;;3624:154;;;3802:6;3788:21;;;;;3094:723;;;;:::o;30358:137::-;30419:7;30454:12;:19;30467:5;30454:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;30446:41;;30439:48;;30358:137;;;:::o;46463:159::-;;;;;:::o;47281:158::-;;;;;:::o;36952:163::-;37075:32;37081:2;37085:8;37095:5;37102:4;37075:5;:32::i;:::-;36952:163;;;:::o;37374:1775::-;37513:20;37536:13;;37513:36;;37578:1;37564:16;;:2;:16;;;37560:48;;;37589:19;;;;;;;;;;;;;;37560:48;37635:1;37623:8;:13;37619:44;;;37645:18;;;;;;;;;;;;;;37619:44;37676:61;37706:1;37710:2;37714:12;37728:8;37676:21;:61::i;:::-;38049:8;38014:12;:16;38027:2;38014:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38113:8;38073:12;:16;38086:2;38073:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38172:2;38139:11;:25;38151:12;38139:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38239:15;38189:11;:25;38201:12;38189:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38272:20;38295:12;38272:35;;38322:11;38351:8;38336:12;:23;38322:37;;38380:4;:23;;;;;38388:15;:2;:13;;;:15::i;:::-;38380:23;38376:641;;;38424:314;38480:12;38476:2;38455:38;;38472:1;38455:38;;;;;;;;;;;;38521:69;38560:1;38564:2;38568:14;;;;;;38584:5;38521:30;:69::i;:::-;38516:174;;38626:40;;;;;;;;;;;;;;38516:174;38733:3;38717:12;:19;;38424:314;;38819:12;38802:13;;:29;38798:43;;38833:8;;;38798:43;38376:641;;;38882:120;38938:14;;;;;;38934:2;38913:40;;38930:1;38913:40;;;;;;;;;;;;38997:3;38981:12;:19;;38882:120;;38376:641;39047:12;39031:13;:28;;;;37989:1082;;39081:60;39110:1;39114:2;39118:12;39132:8;39081:20;:60::i;:::-;37502:1647;37374:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:619::-;7988:6;7996;8004;8053:2;8041:9;8032:7;8028:23;8024:32;8021:119;;;8059:79;;:::i;:::-;8021:119;8179:1;8204:53;8249:7;8240:6;8229:9;8225:22;8204:53;:::i;:::-;8194:63;;8150:117;8306:2;8332:53;8377:7;8368:6;8357:9;8353:22;8332:53;:::i;:::-;8322:63;;8277:118;8434:2;8460:53;8505:7;8496:6;8485:9;8481:22;8460:53;:::i;:::-;8450:63;;8405:118;7911:619;;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:::-;12189:6;12197;12246:2;12234:9;12225:7;12221:23;12217:32;12214:119;;;12252:79;;:::i;:::-;12214:119;12372:1;12397:53;12442:7;12433:6;12422:9;12418:22;12397:53;:::i;:::-;12387:63;;12343:117;12499:2;12525:53;12570:7;12561:6;12550:9;12546:22;12525:53;:::i;:::-;12515:63;;12470:118;12121:474;;;;;:::o;12601:180::-;12649:77;12646:1;12639:88;12746:4;12743:1;12736:15;12770:4;12767:1;12760:15;12787:320;12831:6;12868:1;12862:4;12858:12;12848:22;;12915:1;12909:4;12905:12;12936:18;12926:81;;12992:4;12984:6;12980:17;12970:27;;12926:81;13054:2;13046:6;13043:14;13023:18;13020:38;13017:84;;;13073:18;;:::i;:::-;13017:84;12838:269;12787:320;;;:::o;13113:182::-;13253:34;13249:1;13241:6;13237:14;13230:58;13113:182;:::o;13301:366::-;13443:3;13464:67;13528:2;13523:3;13464:67;:::i;:::-;13457:74;;13540:93;13629:3;13540:93;:::i;:::-;13658:2;13653:3;13649:12;13642:19;;13301:366;;;:::o;13673:419::-;13839:4;13877:2;13866:9;13862:18;13854:26;;13926:9;13920:4;13916:20;13912:1;13901:9;13897:17;13890:47;13954:131;14080:4;13954:131;:::i;:::-;13946:139;;13673:419;;;:::o;14098:181::-;14238:33;14234:1;14226:6;14222:14;14215:57;14098:181;:::o;14285:366::-;14427:3;14448:67;14512:2;14507:3;14448:67;:::i;:::-;14441:74;;14524:93;14613:3;14524:93;:::i;:::-;14642:2;14637:3;14633:12;14626:19;;14285:366;;;:::o;14657:419::-;14823:4;14861:2;14850:9;14846:18;14838:26;;14910:9;14904:4;14900:20;14896:1;14885:9;14881:17;14874:47;14938:131;15064:4;14938:131;:::i;:::-;14930:139;;14657:419;;;:::o;15082:147::-;15183:11;15220:3;15205:18;;15082:147;;;;:::o;15235:114::-;;:::o;15355:398::-;15514:3;15535:83;15616:1;15611:3;15535:83;:::i;:::-;15528:90;;15627:93;15716:3;15627:93;:::i;:::-;15745:1;15740:3;15736:11;15729:18;;15355:398;;;:::o;15759:379::-;15943:3;15965:147;16108:3;15965:147;:::i;:::-;15958:154;;16129:3;16122:10;;15759:379;;;:::o;16144:170::-;16284:22;16280:1;16272:6;16268:14;16261:46;16144:170;:::o;16320:366::-;16462:3;16483:67;16547:2;16542:3;16483:67;:::i;:::-;16476:74;;16559:93;16648:3;16559:93;:::i;:::-;16677:2;16672:3;16668:12;16661:19;;16320:366;;;:::o;16692:419::-;16858:4;16896:2;16885:9;16881:18;16873:26;;16945:9;16939:4;16935:20;16931:1;16920:9;16916:17;16909:47;16973:131;17099:4;16973:131;:::i;:::-;16965:139;;16692:419;;;:::o;17117:180::-;17165:77;17162:1;17155:88;17262:4;17259:1;17252:15;17286:4;17283:1;17276:15;17303:305;17343:3;17362:20;17380:1;17362:20;:::i;:::-;17357:25;;17396:20;17414:1;17396:20;:::i;:::-;17391:25;;17550:1;17482:66;17478:74;17475:1;17472:81;17469:107;;;17556:18;;:::i;:::-;17469:107;17600:1;17597;17593:9;17586:16;;17303:305;;;;:::o;17614:170::-;17754:22;17750:1;17742:6;17738:14;17731:46;17614:170;:::o;17790:366::-;17932:3;17953:67;18017:2;18012:3;17953:67;:::i;:::-;17946:74;;18029:93;18118:3;18029:93;:::i;:::-;18147:2;18142:3;18138:12;18131:19;;17790:366;;;:::o;18162:419::-;18328:4;18366:2;18355:9;18351:18;18343:26;;18415:9;18409:4;18405:20;18401:1;18390:9;18386:17;18379:47;18443:131;18569:4;18443:131;:::i;:::-;18435:139;;18162:419;;;:::o;18587:348::-;18627:7;18650:20;18668:1;18650:20;:::i;:::-;18645:25;;18684:20;18702:1;18684:20;:::i;:::-;18679:25;;18872:1;18804:66;18800:74;18797:1;18794:81;18789:1;18782:9;18775:17;18771:105;18768:131;;;18879:18;;:::i;:::-;18768:131;18927:1;18924;18920:9;18909:20;;18587:348;;;;:::o;18941:169::-;19081:21;19077:1;19069:6;19065:14;19058:45;18941:169;:::o;19116:366::-;19258:3;19279:67;19343:2;19338:3;19279:67;:::i;:::-;19272:74;;19355:93;19444:3;19355:93;:::i;:::-;19473:2;19468:3;19464:12;19457:19;;19116:366;;;:::o;19488:419::-;19654:4;19692:2;19681:9;19677:18;19669:26;;19741:9;19735:4;19731:20;19727:1;19716:9;19712:17;19705:47;19769:131;19895:4;19769:131;:::i;:::-;19761:139;;19488:419;;;:::o;19913:170::-;20053:22;20049:1;20041:6;20037:14;20030:46;19913:170;:::o;20089:366::-;20231:3;20252:67;20316:2;20311:3;20252:67;:::i;:::-;20245:74;;20328:93;20417:3;20328:93;:::i;:::-;20446:2;20441:3;20437:12;20430:19;;20089:366;;;:::o;20461:419::-;20627:4;20665:2;20654:9;20650:18;20642:26;;20714:9;20708:4;20704:20;20700:1;20689:9;20685:17;20678:47;20742:131;20868:4;20742:131;:::i;:::-;20734:139;;20461:419;;;:::o;20886:220::-;21026:34;21022:1;21014:6;21010:14;21003:58;21095:3;21090:2;21082:6;21078:15;21071:28;20886:220;:::o;21112:366::-;21254:3;21275:67;21339:2;21334:3;21275:67;:::i;:::-;21268:74;;21351:93;21440:3;21351:93;:::i;:::-;21469:2;21464:3;21460:12;21453:19;;21112:366;;;:::o;21484:419::-;21650:4;21688:2;21677:9;21673:18;21665:26;;21737:9;21731:4;21727:20;21723:1;21712:9;21708:17;21701:47;21765:131;21891:4;21765:131;:::i;:::-;21757:139;;21484:419;;;:::o;21909:170::-;22049:22;22045:1;22037:6;22033:14;22026:46;21909:170;:::o;22085:366::-;22227:3;22248:67;22312:2;22307:3;22248:67;:::i;:::-;22241:74;;22324:93;22413:3;22324:93;:::i;:::-;22442:2;22437:3;22433:12;22426:19;;22085:366;;;:::o;22457:419::-;22623:4;22661:2;22650:9;22646:18;22638:26;;22710:9;22704:4;22700:20;22696:1;22685:9;22681:17;22674:47;22738:131;22864:4;22738:131;:::i;:::-;22730:139;;22457:419;;;:::o;22882:234::-;23022:34;23018:1;23010:6;23006:14;22999:58;23091:17;23086:2;23078:6;23074:15;23067:42;22882:234;:::o;23122:366::-;23264:3;23285:67;23349:2;23344:3;23285:67;:::i;:::-;23278:74;;23361:93;23450:3;23361:93;:::i;:::-;23479:2;23474:3;23470:12;23463:19;;23122:366;;;:::o;23494:419::-;23660:4;23698:2;23687:9;23683:18;23675:26;;23747:9;23741:4;23737:20;23733:1;23722:9;23718:17;23711:47;23775:131;23901:4;23775:131;:::i;:::-;23767:139;;23494:419;;;:::o;23919:148::-;24021:11;24058:3;24043:18;;23919:148;;;;:::o;24073:377::-;24179:3;24207:39;24240:5;24207:39;:::i;:::-;24262:89;24344:6;24339:3;24262:89;:::i;:::-;24255:96;;24360:52;24405:6;24400:3;24393:4;24386:5;24382:16;24360:52;:::i;:::-;24437:6;24432:3;24428:16;24421:23;;24183:267;24073:377;;;;:::o;24456:141::-;24505:4;24528:3;24520:11;;24551:3;24548:1;24541:14;24585:4;24582:1;24572:18;24564:26;;24456:141;;;:::o;24627:845::-;24730:3;24767:5;24761:12;24796:36;24822:9;24796:36;:::i;:::-;24848:89;24930:6;24925:3;24848:89;:::i;:::-;24841:96;;24968:1;24957:9;24953:17;24984:1;24979:137;;;;25130:1;25125:341;;;;24946:520;;24979:137;25063:4;25059:9;25048;25044:25;25039:3;25032:38;25099:6;25094:3;25090:16;25083:23;;24979:137;;25125:341;25192:38;25224:5;25192:38;:::i;:::-;25252:1;25266:154;25280:6;25277:1;25274:13;25266:154;;;25354:7;25348:14;25344:1;25339:3;25335:11;25328:35;25404:1;25395:7;25391:15;25380:26;;25302:4;25299:1;25295:12;25290:17;;25266:154;;;25449:6;25444:3;25440:16;25433:23;;25132:334;;24946:520;;24734:738;;24627:845;;;;:::o;25478:589::-;25703:3;25725:95;25816:3;25807:6;25725:95;:::i;:::-;25718:102;;25837:95;25928:3;25919:6;25837:95;:::i;:::-;25830:102;;25949:92;26037:3;26028:6;25949:92;:::i;:::-;25942:99;;26058:3;26051:10;;25478:589;;;;;;:::o;26073:225::-;26213:34;26209:1;26201:6;26197:14;26190:58;26282:8;26277:2;26269:6;26265:15;26258:33;26073:225;:::o;26304:366::-;26446:3;26467:67;26531:2;26526:3;26467:67;:::i;:::-;26460:74;;26543:93;26632:3;26543:93;:::i;:::-;26661:2;26656:3;26652:12;26645:19;;26304:366;;;:::o;26676:419::-;26842:4;26880:2;26869:9;26865:18;26857:26;;26929:9;26923:4;26919:20;26915:1;26904:9;26900:17;26893:47;26957:131;27083:4;26957:131;:::i;:::-;26949:139;;26676:419;;;:::o;27101:98::-;27152:6;27186:5;27180:12;27170:22;;27101:98;;;:::o;27205:168::-;27288:11;27322:6;27317:3;27310:19;27362:4;27357:3;27353:14;27338:29;;27205:168;;;;:::o;27379:360::-;27465:3;27493:38;27525:5;27493:38;:::i;:::-;27547:70;27610:6;27605:3;27547:70;:::i;:::-;27540:77;;27626:52;27671:6;27666:3;27659:4;27652:5;27648:16;27626:52;:::i;:::-;27703:29;27725:6;27703:29;:::i;:::-;27698:3;27694:39;27687:46;;27469:270;27379:360;;;;:::o;27745:640::-;27940:4;27978:3;27967:9;27963:19;27955:27;;27992:71;28060:1;28049:9;28045:17;28036:6;27992:71;:::i;:::-;28073:72;28141:2;28130:9;28126:18;28117:6;28073:72;:::i;:::-;28155;28223:2;28212:9;28208:18;28199:6;28155:72;:::i;:::-;28274:9;28268:4;28264:20;28259:2;28248:9;28244:18;28237:48;28302:76;28373:4;28364:6;28302:76;:::i;:::-;28294:84;;27745:640;;;;;;;:::o;28391:141::-;28447:5;28478:6;28472:13;28463:22;;28494:32;28520:5;28494:32;:::i;:::-;28391:141;;;;:::o;28538:349::-;28607:6;28656:2;28644:9;28635:7;28631:23;28627:32;28624:119;;;28662:79;;:::i;:::-;28624:119;28782:1;28807:63;28862:7;28853:6;28842:9;28838:22;28807:63;:::i;:::-;28797:73;;28753:127;28538:349;;;;:::o;28893:233::-;28932:3;28955:24;28973:5;28955:24;:::i;:::-;28946:33;;29001:66;28994:5;28991:77;28988:103;;;29071:18;;:::i;:::-;28988:103;29118:1;29111:5;29107:13;29100:20;;28893:233;;;:::o;29132:180::-;29180:77;29177:1;29170:88;29277:4;29274:1;29267:15;29301:4;29298:1;29291:15;29318:185;29358:1;29375:20;29393:1;29375:20;:::i;:::-;29370:25;;29409:20;29427:1;29409:20;:::i;:::-;29404:25;;29448:1;29438:35;;29453:18;;:::i;:::-;29438:35;29495:1;29492;29488:9;29483:14;;29318:185;;;;:::o;29509:191::-;29549:4;29569:20;29587:1;29569:20;:::i;:::-;29564:25;;29603:20;29621:1;29603:20;:::i;:::-;29598:25;;29642:1;29639;29636:8;29633:34;;;29647:18;;:::i;:::-;29633:34;29692:1;29689;29685:9;29677:17;;29509:191;;;;:::o;29706:176::-;29738:1;29755:20;29773:1;29755:20;:::i;:::-;29750:25;;29789:20;29807:1;29789:20;:::i;:::-;29784:25;;29828:1;29818:35;;29833:18;;:::i;:::-;29818:35;29874:1;29871;29867:9;29862:14;;29706:176;;;;:::o;29888:180::-;29936:77;29933:1;29926:88;30033:4;30030:1;30023:15;30057:4;30054:1;30047:15

Swarm Source

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