ETH Price: $3,034.73 (+2.55%)
Gas: 2 Gwei

Token

Degen Killers (DGKLRS)
 

Overview

Max Total Supply

161 DGKLRS

Holders

82

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
canttrustwallet.eth
Balance
2 DGKLRS
0xd8d85a9091460fc84f6cc54cf65f30012e2b29ec
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:
Degen_Killers

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: GPL-3.0

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;







/**
 * @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, IERC721A {
    using Address for address;
    using Strings for uint256;

    // 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 override 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) if (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) if(!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()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

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

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

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

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

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

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

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

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

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

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/MonsterMe.sol



//Developer : FazelPejmanfar , Twitter :@Pejmanfarfazel



pragma solidity >=0.7.0 <0.9.0;





contract Degen_Killers is ERC721A, Ownable, ReentrancyGuard {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.0025 ether;
  uint256 public maxSupply = 666;
  uint256 public MaxperWallet = 3;
  bool public paused = false;

  constructor(

  ) ERC721A("Degen Killers", "DGKLRS") {
    setBaseURI("ipfs://QmXAogrxrZUFRhevfFpVHb8CjYu39qcVnjqXzhEiGqR83s/");
  }

  // internal
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }
      function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

  // public
  function mint(uint256 tokens) public payable nonReentrant {
    require(!paused, "Oops contract is paused");
    uint256 supply = totalSupply();
    require(tokens > 0, "Need to mint at least 1 NFT");
    require(tokens <= MaxperWallet, "Max mint amount per tx exceeded");
    require(supply + tokens <= maxSupply, "We Soldout");
    require(_numberMinted(_msgSender()) + tokens <= MaxperWallet, "Max NFT Per Wallet exceeded");
    require(msg.value >= cost * tokens, "Insufficient funds");

      _safeMint(_msgSender(), tokens);
    
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721AMetadata: URI query for nonexistent token"
    );

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";
  }

    function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

  //only owner
  function setMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWallet = _limit;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

    function setMaxsupply(uint256 _newsupply) public onlyOwner {
    maxSupply = _newsupply;
  }

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

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }

 
  function withdraw() public payable onlyOwner nonReentrant {
    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
    require(success);
  }
}

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"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MaxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setMaxsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b9080519060200190620000519291906200034b565b506608e1bc9bf04000600c5561029a600d556003600e556000600f60006101000a81548160ff0219169083151502179055503480156200009057600080fd5b506040518060400160405280600d81526020017f446567656e204b696c6c657273000000000000000000000000000000000000008152506040518060400160405280600681526020017f44474b4c525300000000000000000000000000000000000000000000000000008152508160029080519060200190620001159291906200034b565b5080600390805190602001906200012e9291906200034b565b506200013f6200019f60201b60201c565b6000819055505050620001676200015b620001a860201b60201c565b620001b060201b60201c565b6001600981905550620001996040518060600160405280603681526020016200409b603691396200027660201b60201c565b620004e3565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000286620001a860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002ac6200032160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000305576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002fc9062000422565b60405180910390fd5b80600a90805190602001906200031d9291906200034b565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003599062000455565b90600052602060002090601f0160209004810192826200037d5760008555620003c9565b82601f106200039857805160ff1916838001178555620003c9565b82800160010185558215620003c9579182015b82811115620003c8578251825591602001919060010190620003ab565b5b509050620003d89190620003dc565b5090565b5b80821115620003f7576000816000905550600101620003dd565b5090565b60006200040a60208362000444565b91506200041782620004ba565b602082019050919050565b600060208201905081810360008301526200043d81620003fb565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200046e57607f821691505b602082108114156200048557620004846200048b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613ba880620004f36000396000f3fe6080604052600436106101e35760003560e01c806370a0823111610102578063c668286211610095578063dc33e68111610064578063dc33e6811461069e578063e268e4d3146106db578063e985e9c514610704578063f2fde38b14610741576101e3565b8063c6682862146105e2578063c87b56dd1461060d578063d5abeb011461064a578063da3ef23f14610675576101e3565b8063a0712d68116100d1578063a0712d6814610549578063a22cb46514610565578063b88d4fde1461058e578063bd7a1998146105b7576101e3565b806370a082311461049f578063715018a6146104dc5780638da5cb5b146104f357806395d89b411461051e576101e3565b806323b872dd1161017a57806355f804b31161014957806355f804b3146103e35780635c975abb1461040c5780636352211e146104375780636c0360eb14610474576101e3565b806323b872dd1461035e5780633ccfd60b1461038757806342842e0e1461039157806344a0d68a146103ba576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806313faede6146102df578063149835a01461030a57806318160ddd14610333576101e3565b806301ffc9a7146101e857806302329a291461022557806306fdde031461024e578063081812fc14610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612ea6565b61076a565b60405161021c91906132f3565b60405180910390f35b34801561023157600080fd5b5061024c60048036038101906102479190612e79565b61084c565b005b34801561025a57600080fd5b506102636108e5565b604051610270919061330e565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b9190612f49565b610977565b6040516102ad919061328c565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d89190612e39565b6109f3565b005b3480156102eb57600080fd5b506102f4610af8565b6040516103019190613470565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c9190612f49565b610afe565b005b34801561033f57600080fd5b50610348610b84565b6040516103559190613470565b60405180910390f35b34801561036a57600080fd5b5061038560048036038101906103809190612d23565b610b9b565b005b61038f610bab565b005b34801561039d57600080fd5b506103b860048036038101906103b39190612d23565b610cf6565b005b3480156103c657600080fd5b506103e160048036038101906103dc9190612f49565b610d16565b005b3480156103ef57600080fd5b5061040a60048036038101906104059190612f00565b610d9c565b005b34801561041857600080fd5b50610421610e32565b60405161042e91906132f3565b60405180910390f35b34801561044357600080fd5b5061045e60048036038101906104599190612f49565b610e45565b60405161046b919061328c565b60405180910390f35b34801561048057600080fd5b50610489610e5b565b604051610496919061330e565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c19190612cb6565b610ee9565b6040516104d39190613470565b60405180910390f35b3480156104e857600080fd5b506104f1610fb9565b005b3480156104ff57600080fd5b50610508611041565b604051610515919061328c565b60405180910390f35b34801561052a57600080fd5b5061053361106b565b604051610540919061330e565b60405180910390f35b610563600480360381019061055e9190612f49565b6110fd565b005b34801561057157600080fd5b5061058c60048036038101906105879190612df9565b61134b565b005b34801561059a57600080fd5b506105b560048036038101906105b09190612d76565b6114c3565b005b3480156105c357600080fd5b506105cc61153b565b6040516105d99190613470565b60405180910390f35b3480156105ee57600080fd5b506105f7611541565b604051610604919061330e565b60405180910390f35b34801561061957600080fd5b50610634600480360381019061062f9190612f49565b6115cf565b604051610641919061330e565b60405180910390f35b34801561065657600080fd5b5061065f611679565b60405161066c9190613470565b60405180910390f35b34801561068157600080fd5b5061069c60048036038101906106979190612f00565b61167f565b005b3480156106aa57600080fd5b506106c560048036038101906106c09190612cb6565b611715565b6040516106d29190613470565b60405180910390f35b3480156106e757600080fd5b5061070260048036038101906106fd9190612f49565b611727565b005b34801561071057600080fd5b5061072b60048036038101906107269190612ce3565b6117ad565b60405161073891906132f3565b60405180910390f35b34801561074d57600080fd5b5061076860048036038101906107639190612cb6565b611841565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610845575061084482611939565b5b9050919050565b6108546119a3565b73ffffffffffffffffffffffffffffffffffffffff16610872611041565b73ffffffffffffffffffffffffffffffffffffffff16146108c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bf906133d0565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6060600280546108f490613740565b80601f016020809104026020016040519081016040528092919081815260200182805461092090613740565b801561096d5780601f106109425761010080835404028352916020019161096d565b820191906000526020600020905b81548152906001019060200180831161095057829003601f168201915b5050505050905090565b6000610982826119ab565b6109b8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109fe82610e45565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a66576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a856119a3565b73ffffffffffffffffffffffffffffffffffffffff1614610ae857610ab181610aac6119a3565b6117ad565b610ae7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610af38383836119f9565b505050565b600c5481565b610b066119a3565b73ffffffffffffffffffffffffffffffffffffffff16610b24611041565b73ffffffffffffffffffffffffffffffffffffffff1614610b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b71906133d0565b60405180910390fd5b80600d8190555050565b6000610b8e611aab565b6001546000540303905090565b610ba6838383611ab4565b505050565b610bb36119a3565b73ffffffffffffffffffffffffffffffffffffffff16610bd1611041565b73ffffffffffffffffffffffffffffffffffffffff1614610c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1e906133d0565b60405180910390fd5b60026009541415610c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6490613410565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610c9b90613277565b60006040518083038185875af1925050503d8060008114610cd8576040519150601f19603f3d011682016040523d82523d6000602084013e610cdd565b606091505b5050905080610ceb57600080fd5b506001600981905550565b610d11838383604051806020016040528060008152506114c3565b505050565b610d1e6119a3565b73ffffffffffffffffffffffffffffffffffffffff16610d3c611041565b73ffffffffffffffffffffffffffffffffffffffff1614610d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d89906133d0565b60405180910390fd5b80600c8190555050565b610da46119a3565b73ffffffffffffffffffffffffffffffffffffffff16610dc2611041565b73ffffffffffffffffffffffffffffffffffffffff1614610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f906133d0565b60405180910390fd5b80600a9080519060200190610e2e929190612a87565b5050565b600f60009054906101000a900460ff1681565b6000610e5082611f6a565b600001519050919050565b600a8054610e6890613740565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9490613740565b8015610ee15780601f10610eb657610100808354040283529160200191610ee1565b820191906000526020600020905b815481529060010190602001808311610ec457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f51576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fc16119a3565b73ffffffffffffffffffffffffffffffffffffffff16610fdf611041565b73ffffffffffffffffffffffffffffffffffffffff1614611035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102c906133d0565b60405180910390fd5b61103f60006121f5565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461107a90613740565b80601f01602080910402602001604051908101604052809291908181526020018280546110a690613740565b80156110f35780601f106110c8576101008083540402835291602001916110f3565b820191906000526020600020905b8154815290600101906020018083116110d657829003601f168201915b5050505050905090565b60026009541415611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90613410565b60405180910390fd5b6002600981905550600f60009054906101000a900460ff161561119b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119290613450565b60405180910390fd5b60006111a5610b84565b9050600082116111ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e190613430565b60405180910390fd5b600e5482111561122f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611226906133b0565b60405180910390fd5b600d54828261123e9190613575565b111561127f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127690613370565b60405180910390fd5b600e548261129361128e6119a3565b6122bb565b61129d9190613575565b11156112de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d5906133f0565b60405180910390fd5b81600c546112ec91906135fc565b34101561132e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132590613390565b60405180910390fd5b61133f6113396119a3565b83612325565b50600160098190555050565b6113536119a3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113b8576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113c56119a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114726119a3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114b791906132f3565b60405180910390a35050565b6114ce848484611ab4565b6114ed8373ffffffffffffffffffffffffffffffffffffffff16612343565b15611535576114fe84848484612366565b611534576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600e5481565b600b805461154e90613740565b80601f016020809104026020016040519081016040528092919081815260200182805461157a90613740565b80156115c75780601f1061159c576101008083540402835291602001916115c7565b820191906000526020600020905b8154815290600101906020018083116115aa57829003601f168201915b505050505081565b60606115da826119ab565b611619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161090613330565b60405180910390fd5b60006116236124c6565b905060008151116116435760405180602001604052806000815250611671565b8061164d84612558565b600b60405160200161166193929190613246565b6040516020818303038152906040525b915050919050565b600d5481565b6116876119a3565b73ffffffffffffffffffffffffffffffffffffffff166116a5611041565b73ffffffffffffffffffffffffffffffffffffffff16146116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f2906133d0565b60405180910390fd5b80600b9080519060200190611711929190612a87565b5050565b6000611720826122bb565b9050919050565b61172f6119a3565b73ffffffffffffffffffffffffffffffffffffffff1661174d611041565b73ffffffffffffffffffffffffffffffffffffffff16146117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a906133d0565b60405180910390fd5b80600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118496119a3565b73ffffffffffffffffffffffffffffffffffffffff16611867611041565b73ffffffffffffffffffffffffffffffffffffffff16146118bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b4906133d0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561192d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192490613350565b60405180910390fd5b611936816121f5565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816119b6611aab565b111580156119c5575060005482105b80156119f2575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611abf82611f6a565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b2a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b4b6119a3565b73ffffffffffffffffffffffffffffffffffffffff161480611b7a5750611b7985611b746119a3565b6117ad565b5b80611bbf5750611b886119a3565b73ffffffffffffffffffffffffffffffffffffffff16611ba784610977565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611bf8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c5f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c6c85858560016126b9565b611c78600084876119f9565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611ef8576000548214611ef757878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f6385858560016126bf565b5050505050565b611f72612b0d565b600082905080611f80611aab565b116121be576000548110156121bd576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516121bb57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461209f5780925050506121f0565b5b6001156121ba57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121b55780925050506121f0565b6120a0565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61233f8282604051806020016040528060008152506126c5565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261238c6119a3565b8786866040518563ffffffff1660e01b81526004016123ae94939291906132a7565b602060405180830381600087803b1580156123c857600080fd5b505af19250505080156123f957506040513d601f19601f820116820180604052508101906123f69190612ed3565b60015b612473573d8060008114612429576040519150601f19603f3d011682016040523d82523d6000602084013e61242e565b606091505b5060008151141561246b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546124d590613740565b80601f016020809104026020016040519081016040528092919081815260200182805461250190613740565b801561254e5780601f106125235761010080835404028352916020019161254e565b820191906000526020600020905b81548152906001019060200180831161253157829003601f168201915b5050505050905090565b606060008214156125a0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126b4565b600082905060005b600082146125d25780806125bb906137a3565b915050600a826125cb91906135cb565b91506125a8565b60008167ffffffffffffffff8111156125ee576125ed6138d9565b5b6040519080825280601f01601f1916602001820160405280156126205781602001600182028036833780820191505090505b5090505b600085146126ad576001826126399190613656565b9150600a8561264891906137ec565b60306126549190613575565b60f81b81838151811061266a576126696138aa565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126a691906135cb565b9450612624565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612732576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561276d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61277a60008583866126b9565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000848201905061293b8673ffffffffffffffffffffffffffffffffffffffff16612343565b15612a00575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129b06000878480600101955087612366565b6129e6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106129415782600054146129fb57600080fd5b612a6b565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612a01575b816000819055505050612a8160008583866126bf565b50505050565b828054612a9390613740565b90600052602060002090601f016020900481019282612ab55760008555612afc565b82601f10612ace57805160ff1916838001178555612afc565b82800160010185558215612afc579182015b82811115612afb578251825591602001919060010190612ae0565b5b509050612b099190612b50565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612b69576000816000905550600101612b51565b5090565b6000612b80612b7b846134b0565b61348b565b905082815260208101848484011115612b9c57612b9b61390d565b5b612ba78482856136fe565b509392505050565b6000612bc2612bbd846134e1565b61348b565b905082815260208101848484011115612bde57612bdd61390d565b5b612be98482856136fe565b509392505050565b600081359050612c0081613b16565b92915050565b600081359050612c1581613b2d565b92915050565b600081359050612c2a81613b44565b92915050565b600081519050612c3f81613b44565b92915050565b600082601f830112612c5a57612c59613908565b5b8135612c6a848260208601612b6d565b91505092915050565b600082601f830112612c8857612c87613908565b5b8135612c98848260208601612baf565b91505092915050565b600081359050612cb081613b5b565b92915050565b600060208284031215612ccc57612ccb613917565b5b6000612cda84828501612bf1565b91505092915050565b60008060408385031215612cfa57612cf9613917565b5b6000612d0885828601612bf1565b9250506020612d1985828601612bf1565b9150509250929050565b600080600060608486031215612d3c57612d3b613917565b5b6000612d4a86828701612bf1565b9350506020612d5b86828701612bf1565b9250506040612d6c86828701612ca1565b9150509250925092565b60008060008060808587031215612d9057612d8f613917565b5b6000612d9e87828801612bf1565b9450506020612daf87828801612bf1565b9350506040612dc087828801612ca1565b925050606085013567ffffffffffffffff811115612de157612de0613912565b5b612ded87828801612c45565b91505092959194509250565b60008060408385031215612e1057612e0f613917565b5b6000612e1e85828601612bf1565b9250506020612e2f85828601612c06565b9150509250929050565b60008060408385031215612e5057612e4f613917565b5b6000612e5e85828601612bf1565b9250506020612e6f85828601612ca1565b9150509250929050565b600060208284031215612e8f57612e8e613917565b5b6000612e9d84828501612c06565b91505092915050565b600060208284031215612ebc57612ebb613917565b5b6000612eca84828501612c1b565b91505092915050565b600060208284031215612ee957612ee8613917565b5b6000612ef784828501612c30565b91505092915050565b600060208284031215612f1657612f15613917565b5b600082013567ffffffffffffffff811115612f3457612f33613912565b5b612f4084828501612c73565b91505092915050565b600060208284031215612f5f57612f5e613917565b5b6000612f6d84828501612ca1565b91505092915050565b612f7f8161368a565b82525050565b612f8e8161369c565b82525050565b6000612f9f82613527565b612fa9818561353d565b9350612fb981856020860161370d565b612fc28161391c565b840191505092915050565b6000612fd882613532565b612fe28185613559565b9350612ff281856020860161370d565b612ffb8161391c565b840191505092915050565b600061301182613532565b61301b818561356a565b935061302b81856020860161370d565b80840191505092915050565b6000815461304481613740565b61304e818661356a565b94506001821660008114613069576001811461307a576130ad565b60ff198316865281860193506130ad565b61308385613512565b60005b838110156130a557815481890152600182019150602081019050613086565b838801955050505b50505092915050565b60006130c3603083613559565b91506130ce8261392d565b604082019050919050565b60006130e6602683613559565b91506130f18261397c565b604082019050919050565b6000613109600a83613559565b9150613114826139cb565b602082019050919050565b600061312c601283613559565b9150613137826139f4565b602082019050919050565b600061314f601f83613559565b915061315a82613a1d565b602082019050919050565b6000613172602083613559565b915061317d82613a46565b602082019050919050565b600061319560008361354e565b91506131a082613a6f565b600082019050919050565b60006131b8601b83613559565b91506131c382613a72565b602082019050919050565b60006131db601f83613559565b91506131e682613a9b565b602082019050919050565b60006131fe601b83613559565b915061320982613ac4565b602082019050919050565b6000613221601783613559565b915061322c82613aed565b602082019050919050565b613240816136f4565b82525050565b60006132528286613006565b915061325e8285613006565b915061326a8284613037565b9150819050949350505050565b600061328282613188565b9150819050919050565b60006020820190506132a16000830184612f76565b92915050565b60006080820190506132bc6000830187612f76565b6132c96020830186612f76565b6132d66040830185613237565b81810360608301526132e88184612f94565b905095945050505050565b60006020820190506133086000830184612f85565b92915050565b600060208201905081810360008301526133288184612fcd565b905092915050565b60006020820190508181036000830152613349816130b6565b9050919050565b60006020820190508181036000830152613369816130d9565b9050919050565b60006020820190508181036000830152613389816130fc565b9050919050565b600060208201905081810360008301526133a98161311f565b9050919050565b600060208201905081810360008301526133c981613142565b9050919050565b600060208201905081810360008301526133e981613165565b9050919050565b60006020820190508181036000830152613409816131ab565b9050919050565b60006020820190508181036000830152613429816131ce565b9050919050565b60006020820190508181036000830152613449816131f1565b9050919050565b6000602082019050818103600083015261346981613214565b9050919050565b60006020820190506134856000830184613237565b92915050565b60006134956134a6565b90506134a18282613772565b919050565b6000604051905090565b600067ffffffffffffffff8211156134cb576134ca6138d9565b5b6134d48261391c565b9050602081019050919050565b600067ffffffffffffffff8211156134fc576134fb6138d9565b5b6135058261391c565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613580826136f4565b915061358b836136f4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135c0576135bf61381d565b5b828201905092915050565b60006135d6826136f4565b91506135e1836136f4565b9250826135f1576135f061384c565b5b828204905092915050565b6000613607826136f4565b9150613612836136f4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561364b5761364a61381d565b5b828202905092915050565b6000613661826136f4565b915061366c836136f4565b92508282101561367f5761367e61381d565b5b828203905092915050565b6000613695826136d4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561372b578082015181840152602081019050613710565b8381111561373a576000848401525b50505050565b6000600282049050600182168061375857607f821691505b6020821081141561376c5761376b61387b565b5b50919050565b61377b8261391c565b810181811067ffffffffffffffff8211171561379a576137996138d9565b5b80604052505050565b60006137ae826136f4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137e1576137e061381d565b5b600182019050919050565b60006137f7826136f4565b9150613802836136f4565b9250826138125761381161384c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f576520536f6c646f757400000000000000000000000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4d6178206d696e7420616d6f756e742070657220747820657863656564656400600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f4d6178204e4654205065722057616c6c65742065786365656465640000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b7f4f6f707320636f6e747261637420697320706175736564000000000000000000600082015250565b613b1f8161368a565b8114613b2a57600080fd5b50565b613b368161369c565b8114613b4157600080fd5b50565b613b4d816136a8565b8114613b5857600080fd5b50565b613b64816136f4565b8114613b6f57600080fd5b5056fea2646970667358221220b8dad3d50ce8ace9df45fce7b292f32da8904c064373056a23b07be32b7fc4f564736f6c63430008070033697066733a2f2f516d58416f677278725a55465268657666467056486238436a597533397163566e6a71587a6845694771523833732f

Deployed Bytecode

0x6080604052600436106101e35760003560e01c806370a0823111610102578063c668286211610095578063dc33e68111610064578063dc33e6811461069e578063e268e4d3146106db578063e985e9c514610704578063f2fde38b14610741576101e3565b8063c6682862146105e2578063c87b56dd1461060d578063d5abeb011461064a578063da3ef23f14610675576101e3565b8063a0712d68116100d1578063a0712d6814610549578063a22cb46514610565578063b88d4fde1461058e578063bd7a1998146105b7576101e3565b806370a082311461049f578063715018a6146104dc5780638da5cb5b146104f357806395d89b411461051e576101e3565b806323b872dd1161017a57806355f804b31161014957806355f804b3146103e35780635c975abb1461040c5780636352211e146104375780636c0360eb14610474576101e3565b806323b872dd1461035e5780633ccfd60b1461038757806342842e0e1461039157806344a0d68a146103ba576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806313faede6146102df578063149835a01461030a57806318160ddd14610333576101e3565b806301ffc9a7146101e857806302329a291461022557806306fdde031461024e578063081812fc14610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612ea6565b61076a565b60405161021c91906132f3565b60405180910390f35b34801561023157600080fd5b5061024c60048036038101906102479190612e79565b61084c565b005b34801561025a57600080fd5b506102636108e5565b604051610270919061330e565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b9190612f49565b610977565b6040516102ad919061328c565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d89190612e39565b6109f3565b005b3480156102eb57600080fd5b506102f4610af8565b6040516103019190613470565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c9190612f49565b610afe565b005b34801561033f57600080fd5b50610348610b84565b6040516103559190613470565b60405180910390f35b34801561036a57600080fd5b5061038560048036038101906103809190612d23565b610b9b565b005b61038f610bab565b005b34801561039d57600080fd5b506103b860048036038101906103b39190612d23565b610cf6565b005b3480156103c657600080fd5b506103e160048036038101906103dc9190612f49565b610d16565b005b3480156103ef57600080fd5b5061040a60048036038101906104059190612f00565b610d9c565b005b34801561041857600080fd5b50610421610e32565b60405161042e91906132f3565b60405180910390f35b34801561044357600080fd5b5061045e60048036038101906104599190612f49565b610e45565b60405161046b919061328c565b60405180910390f35b34801561048057600080fd5b50610489610e5b565b604051610496919061330e565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c19190612cb6565b610ee9565b6040516104d39190613470565b60405180910390f35b3480156104e857600080fd5b506104f1610fb9565b005b3480156104ff57600080fd5b50610508611041565b604051610515919061328c565b60405180910390f35b34801561052a57600080fd5b5061053361106b565b604051610540919061330e565b60405180910390f35b610563600480360381019061055e9190612f49565b6110fd565b005b34801561057157600080fd5b5061058c60048036038101906105879190612df9565b61134b565b005b34801561059a57600080fd5b506105b560048036038101906105b09190612d76565b6114c3565b005b3480156105c357600080fd5b506105cc61153b565b6040516105d99190613470565b60405180910390f35b3480156105ee57600080fd5b506105f7611541565b604051610604919061330e565b60405180910390f35b34801561061957600080fd5b50610634600480360381019061062f9190612f49565b6115cf565b604051610641919061330e565b60405180910390f35b34801561065657600080fd5b5061065f611679565b60405161066c9190613470565b60405180910390f35b34801561068157600080fd5b5061069c60048036038101906106979190612f00565b61167f565b005b3480156106aa57600080fd5b506106c560048036038101906106c09190612cb6565b611715565b6040516106d29190613470565b60405180910390f35b3480156106e757600080fd5b5061070260048036038101906106fd9190612f49565b611727565b005b34801561071057600080fd5b5061072b60048036038101906107269190612ce3565b6117ad565b60405161073891906132f3565b60405180910390f35b34801561074d57600080fd5b5061076860048036038101906107639190612cb6565b611841565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610845575061084482611939565b5b9050919050565b6108546119a3565b73ffffffffffffffffffffffffffffffffffffffff16610872611041565b73ffffffffffffffffffffffffffffffffffffffff16146108c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bf906133d0565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6060600280546108f490613740565b80601f016020809104026020016040519081016040528092919081815260200182805461092090613740565b801561096d5780601f106109425761010080835404028352916020019161096d565b820191906000526020600020905b81548152906001019060200180831161095057829003601f168201915b5050505050905090565b6000610982826119ab565b6109b8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109fe82610e45565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a66576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a856119a3565b73ffffffffffffffffffffffffffffffffffffffff1614610ae857610ab181610aac6119a3565b6117ad565b610ae7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610af38383836119f9565b505050565b600c5481565b610b066119a3565b73ffffffffffffffffffffffffffffffffffffffff16610b24611041565b73ffffffffffffffffffffffffffffffffffffffff1614610b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b71906133d0565b60405180910390fd5b80600d8190555050565b6000610b8e611aab565b6001546000540303905090565b610ba6838383611ab4565b505050565b610bb36119a3565b73ffffffffffffffffffffffffffffffffffffffff16610bd1611041565b73ffffffffffffffffffffffffffffffffffffffff1614610c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1e906133d0565b60405180910390fd5b60026009541415610c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6490613410565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610c9b90613277565b60006040518083038185875af1925050503d8060008114610cd8576040519150601f19603f3d011682016040523d82523d6000602084013e610cdd565b606091505b5050905080610ceb57600080fd5b506001600981905550565b610d11838383604051806020016040528060008152506114c3565b505050565b610d1e6119a3565b73ffffffffffffffffffffffffffffffffffffffff16610d3c611041565b73ffffffffffffffffffffffffffffffffffffffff1614610d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d89906133d0565b60405180910390fd5b80600c8190555050565b610da46119a3565b73ffffffffffffffffffffffffffffffffffffffff16610dc2611041565b73ffffffffffffffffffffffffffffffffffffffff1614610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f906133d0565b60405180910390fd5b80600a9080519060200190610e2e929190612a87565b5050565b600f60009054906101000a900460ff1681565b6000610e5082611f6a565b600001519050919050565b600a8054610e6890613740565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9490613740565b8015610ee15780601f10610eb657610100808354040283529160200191610ee1565b820191906000526020600020905b815481529060010190602001808311610ec457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f51576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fc16119a3565b73ffffffffffffffffffffffffffffffffffffffff16610fdf611041565b73ffffffffffffffffffffffffffffffffffffffff1614611035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102c906133d0565b60405180910390fd5b61103f60006121f5565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461107a90613740565b80601f01602080910402602001604051908101604052809291908181526020018280546110a690613740565b80156110f35780601f106110c8576101008083540402835291602001916110f3565b820191906000526020600020905b8154815290600101906020018083116110d657829003601f168201915b5050505050905090565b60026009541415611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90613410565b60405180910390fd5b6002600981905550600f60009054906101000a900460ff161561119b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119290613450565b60405180910390fd5b60006111a5610b84565b9050600082116111ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e190613430565b60405180910390fd5b600e5482111561122f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611226906133b0565b60405180910390fd5b600d54828261123e9190613575565b111561127f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127690613370565b60405180910390fd5b600e548261129361128e6119a3565b6122bb565b61129d9190613575565b11156112de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d5906133f0565b60405180910390fd5b81600c546112ec91906135fc565b34101561132e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132590613390565b60405180910390fd5b61133f6113396119a3565b83612325565b50600160098190555050565b6113536119a3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113b8576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113c56119a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114726119a3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114b791906132f3565b60405180910390a35050565b6114ce848484611ab4565b6114ed8373ffffffffffffffffffffffffffffffffffffffff16612343565b15611535576114fe84848484612366565b611534576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600e5481565b600b805461154e90613740565b80601f016020809104026020016040519081016040528092919081815260200182805461157a90613740565b80156115c75780601f1061159c576101008083540402835291602001916115c7565b820191906000526020600020905b8154815290600101906020018083116115aa57829003601f168201915b505050505081565b60606115da826119ab565b611619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161090613330565b60405180910390fd5b60006116236124c6565b905060008151116116435760405180602001604052806000815250611671565b8061164d84612558565b600b60405160200161166193929190613246565b6040516020818303038152906040525b915050919050565b600d5481565b6116876119a3565b73ffffffffffffffffffffffffffffffffffffffff166116a5611041565b73ffffffffffffffffffffffffffffffffffffffff16146116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f2906133d0565b60405180910390fd5b80600b9080519060200190611711929190612a87565b5050565b6000611720826122bb565b9050919050565b61172f6119a3565b73ffffffffffffffffffffffffffffffffffffffff1661174d611041565b73ffffffffffffffffffffffffffffffffffffffff16146117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a906133d0565b60405180910390fd5b80600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118496119a3565b73ffffffffffffffffffffffffffffffffffffffff16611867611041565b73ffffffffffffffffffffffffffffffffffffffff16146118bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b4906133d0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561192d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192490613350565b60405180910390fd5b611936816121f5565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816119b6611aab565b111580156119c5575060005482105b80156119f2575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611abf82611f6a565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b2a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b4b6119a3565b73ffffffffffffffffffffffffffffffffffffffff161480611b7a5750611b7985611b746119a3565b6117ad565b5b80611bbf5750611b886119a3565b73ffffffffffffffffffffffffffffffffffffffff16611ba784610977565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611bf8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c5f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c6c85858560016126b9565b611c78600084876119f9565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611ef8576000548214611ef757878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f6385858560016126bf565b5050505050565b611f72612b0d565b600082905080611f80611aab565b116121be576000548110156121bd576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516121bb57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461209f5780925050506121f0565b5b6001156121ba57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121b55780925050506121f0565b6120a0565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61233f8282604051806020016040528060008152506126c5565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261238c6119a3565b8786866040518563ffffffff1660e01b81526004016123ae94939291906132a7565b602060405180830381600087803b1580156123c857600080fd5b505af19250505080156123f957506040513d601f19601f820116820180604052508101906123f69190612ed3565b60015b612473573d8060008114612429576040519150601f19603f3d011682016040523d82523d6000602084013e61242e565b606091505b5060008151141561246b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546124d590613740565b80601f016020809104026020016040519081016040528092919081815260200182805461250190613740565b801561254e5780601f106125235761010080835404028352916020019161254e565b820191906000526020600020905b81548152906001019060200180831161253157829003601f168201915b5050505050905090565b606060008214156125a0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126b4565b600082905060005b600082146125d25780806125bb906137a3565b915050600a826125cb91906135cb565b91506125a8565b60008167ffffffffffffffff8111156125ee576125ed6138d9565b5b6040519080825280601f01601f1916602001820160405280156126205781602001600182028036833780820191505090505b5090505b600085146126ad576001826126399190613656565b9150600a8561264891906137ec565b60306126549190613575565b60f81b81838151811061266a576126696138aa565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126a691906135cb565b9450612624565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612732576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561276d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61277a60008583866126b9565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000848201905061293b8673ffffffffffffffffffffffffffffffffffffffff16612343565b15612a00575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129b06000878480600101955087612366565b6129e6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106129415782600054146129fb57600080fd5b612a6b565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612a01575b816000819055505050612a8160008583866126bf565b50505050565b828054612a9390613740565b90600052602060002090601f016020900481019282612ab55760008555612afc565b82601f10612ace57805160ff1916838001178555612afc565b82800160010185558215612afc579182015b82811115612afb578251825591602001919060010190612ae0565b5b509050612b099190612b50565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612b69576000816000905550600101612b51565b5090565b6000612b80612b7b846134b0565b61348b565b905082815260208101848484011115612b9c57612b9b61390d565b5b612ba78482856136fe565b509392505050565b6000612bc2612bbd846134e1565b61348b565b905082815260208101848484011115612bde57612bdd61390d565b5b612be98482856136fe565b509392505050565b600081359050612c0081613b16565b92915050565b600081359050612c1581613b2d565b92915050565b600081359050612c2a81613b44565b92915050565b600081519050612c3f81613b44565b92915050565b600082601f830112612c5a57612c59613908565b5b8135612c6a848260208601612b6d565b91505092915050565b600082601f830112612c8857612c87613908565b5b8135612c98848260208601612baf565b91505092915050565b600081359050612cb081613b5b565b92915050565b600060208284031215612ccc57612ccb613917565b5b6000612cda84828501612bf1565b91505092915050565b60008060408385031215612cfa57612cf9613917565b5b6000612d0885828601612bf1565b9250506020612d1985828601612bf1565b9150509250929050565b600080600060608486031215612d3c57612d3b613917565b5b6000612d4a86828701612bf1565b9350506020612d5b86828701612bf1565b9250506040612d6c86828701612ca1565b9150509250925092565b60008060008060808587031215612d9057612d8f613917565b5b6000612d9e87828801612bf1565b9450506020612daf87828801612bf1565b9350506040612dc087828801612ca1565b925050606085013567ffffffffffffffff811115612de157612de0613912565b5b612ded87828801612c45565b91505092959194509250565b60008060408385031215612e1057612e0f613917565b5b6000612e1e85828601612bf1565b9250506020612e2f85828601612c06565b9150509250929050565b60008060408385031215612e5057612e4f613917565b5b6000612e5e85828601612bf1565b9250506020612e6f85828601612ca1565b9150509250929050565b600060208284031215612e8f57612e8e613917565b5b6000612e9d84828501612c06565b91505092915050565b600060208284031215612ebc57612ebb613917565b5b6000612eca84828501612c1b565b91505092915050565b600060208284031215612ee957612ee8613917565b5b6000612ef784828501612c30565b91505092915050565b600060208284031215612f1657612f15613917565b5b600082013567ffffffffffffffff811115612f3457612f33613912565b5b612f4084828501612c73565b91505092915050565b600060208284031215612f5f57612f5e613917565b5b6000612f6d84828501612ca1565b91505092915050565b612f7f8161368a565b82525050565b612f8e8161369c565b82525050565b6000612f9f82613527565b612fa9818561353d565b9350612fb981856020860161370d565b612fc28161391c565b840191505092915050565b6000612fd882613532565b612fe28185613559565b9350612ff281856020860161370d565b612ffb8161391c565b840191505092915050565b600061301182613532565b61301b818561356a565b935061302b81856020860161370d565b80840191505092915050565b6000815461304481613740565b61304e818661356a565b94506001821660008114613069576001811461307a576130ad565b60ff198316865281860193506130ad565b61308385613512565b60005b838110156130a557815481890152600182019150602081019050613086565b838801955050505b50505092915050565b60006130c3603083613559565b91506130ce8261392d565b604082019050919050565b60006130e6602683613559565b91506130f18261397c565b604082019050919050565b6000613109600a83613559565b9150613114826139cb565b602082019050919050565b600061312c601283613559565b9150613137826139f4565b602082019050919050565b600061314f601f83613559565b915061315a82613a1d565b602082019050919050565b6000613172602083613559565b915061317d82613a46565b602082019050919050565b600061319560008361354e565b91506131a082613a6f565b600082019050919050565b60006131b8601b83613559565b91506131c382613a72565b602082019050919050565b60006131db601f83613559565b91506131e682613a9b565b602082019050919050565b60006131fe601b83613559565b915061320982613ac4565b602082019050919050565b6000613221601783613559565b915061322c82613aed565b602082019050919050565b613240816136f4565b82525050565b60006132528286613006565b915061325e8285613006565b915061326a8284613037565b9150819050949350505050565b600061328282613188565b9150819050919050565b60006020820190506132a16000830184612f76565b92915050565b60006080820190506132bc6000830187612f76565b6132c96020830186612f76565b6132d66040830185613237565b81810360608301526132e88184612f94565b905095945050505050565b60006020820190506133086000830184612f85565b92915050565b600060208201905081810360008301526133288184612fcd565b905092915050565b60006020820190508181036000830152613349816130b6565b9050919050565b60006020820190508181036000830152613369816130d9565b9050919050565b60006020820190508181036000830152613389816130fc565b9050919050565b600060208201905081810360008301526133a98161311f565b9050919050565b600060208201905081810360008301526133c981613142565b9050919050565b600060208201905081810360008301526133e981613165565b9050919050565b60006020820190508181036000830152613409816131ab565b9050919050565b60006020820190508181036000830152613429816131ce565b9050919050565b60006020820190508181036000830152613449816131f1565b9050919050565b6000602082019050818103600083015261346981613214565b9050919050565b60006020820190506134856000830184613237565b92915050565b60006134956134a6565b90506134a18282613772565b919050565b6000604051905090565b600067ffffffffffffffff8211156134cb576134ca6138d9565b5b6134d48261391c565b9050602081019050919050565b600067ffffffffffffffff8211156134fc576134fb6138d9565b5b6135058261391c565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613580826136f4565b915061358b836136f4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135c0576135bf61381d565b5b828201905092915050565b60006135d6826136f4565b91506135e1836136f4565b9250826135f1576135f061384c565b5b828204905092915050565b6000613607826136f4565b9150613612836136f4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561364b5761364a61381d565b5b828202905092915050565b6000613661826136f4565b915061366c836136f4565b92508282101561367f5761367e61381d565b5b828203905092915050565b6000613695826136d4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561372b578082015181840152602081019050613710565b8381111561373a576000848401525b50505050565b6000600282049050600182168061375857607f821691505b6020821081141561376c5761376b61387b565b5b50919050565b61377b8261391c565b810181811067ffffffffffffffff8211171561379a576137996138d9565b5b80604052505050565b60006137ae826136f4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137e1576137e061381d565b5b600182019050919050565b60006137f7826136f4565b9150613802836136f4565b9250826138125761381161384c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f576520536f6c646f757400000000000000000000000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4d6178206d696e7420616d6f756e742070657220747820657863656564656400600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f4d6178204e4654205065722057616c6c65742065786365656465640000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b7f4f6f707320636f6e747261637420697320706175736564000000000000000000600082015250565b613b1f8161368a565b8114613b2a57600080fd5b50565b613b368161369c565b8114613b4157600080fd5b50565b613b4d816136a8565b8114613b5857600080fd5b50565b613b64816136f4565b8114613b6f57600080fd5b5056fea2646970667358221220b8dad3d50ce8ace9df45fce7b292f32da8904c064373056a23b07be32b7fc4f564736f6c63430008070033

Deployed Bytecode Sourcemap

50303:2588:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31343:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52635:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34458:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35962:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35524:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50468:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52303:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30583:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36827:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52717:171;;;:::i;:::-;;37068:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52215:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52403:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50578:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34266:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50400:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31712:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7528:103;;;;;;;;;;;;;:::i;:::-;;6877:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34627:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50998:550;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36238:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37324:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50542:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50426:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51554:424;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50507:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52507:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51986:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52115:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36596:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7786:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31343:305;31445:4;31497:25;31482:40;;;:11;:40;;;;:105;;;;31554:33;31539:48;;;:11;:48;;;;31482:105;:158;;;;31604:36;31628:11;31604:23;:36::i;:::-;31482:158;31462:178;;31343:305;;;:::o;52635:73::-;7108:12;:10;:12::i;:::-;7097:23;;:7;:5;:7::i;:::-;:23;;;7089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52696:6:::1;52687;;:15;;;;;;;;;;;;;;;;;;52635:73:::0;:::o;34458:100::-;34512:13;34545:5;34538:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34458:100;:::o;35962:204::-;36030:7;36055:16;36063:7;36055;:16::i;:::-;36050:64;;36080:34;;;;;;;;;;;;;;36050:64;36134:15;:24;36150:7;36134:24;;;;;;;;;;;;;;;;;;;;;36127:31;;35962:204;;;:::o;35524:372::-;35597:13;35613:24;35629:7;35613:15;:24::i;:::-;35597:40;;35658:5;35652:11;;:2;:11;;;35648:48;;;35672:24;;;;;;;;;;;;;;35648:48;35729:5;35713:21;;:12;:10;:12::i;:::-;:21;;;35709:139;;35740:37;35757:5;35764:12;:10;:12::i;:::-;35740:16;:37::i;:::-;35736:112;;35801:35;;;;;;;;;;;;;;35736:112;35709:139;35860:28;35869:2;35873:7;35882:5;35860:8;:28::i;:::-;35586:310;35524:372;;:::o;50468:34::-;;;;:::o;52303:94::-;7108:12;:10;:12::i;:::-;7097:23;;:7;:5;:7::i;:::-;:23;;;7089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52381:10:::1;52369:9;:22;;;;52303:94:::0;:::o;30583:312::-;30636:7;30861:15;:13;:15::i;:::-;30846:12;;30830:13;;:28;:46;30823:53;;30583:312;:::o;36827:170::-;36961:28;36971:4;36977:2;36981:7;36961:9;:28::i;:::-;36827:170;;;:::o;52717:171::-;7108:12;:10;:12::i;:::-;7097:23;;:7;:5;:7::i;:::-;:23;;;7089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1851:1:::1;2449:7;;:19;;2441:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1851:1;2582:7;:18;;;;52783:12:::2;52809:10;52801:24;;52833:21;52801:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52782:77;;;52874:7;52866:16;;;::::0;::::2;;52775:113;1807:1:::1;2761:7;:22;;;;52717:171::o:0;37068:185::-;37206:39;37223:4;37229:2;37233:7;37206:39;;;;;;;;;;;;:16;:39::i;:::-;37068:185;;;:::o;52215:80::-;7108:12;:10;:12::i;:::-;7097:23;;:7;:5;:7::i;:::-;:23;;;7089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52281:8:::1;52274:4;:15;;;;52215:80:::0;:::o;52403:98::-;7108:12;:10;:12::i;:::-;7097:23;;:7;:5;:7::i;:::-;:23;;;7089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52484:11:::1;52474:7;:21;;;;;;;;;;;;:::i;:::-;;52403:98:::0;:::o;50578:26::-;;;;;;;;;;;;;:::o;34266:125::-;34330:7;34357:21;34370:7;34357:12;:21::i;:::-;:26;;;34350:33;;34266:125;;;:::o;50400:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31712:206::-;31776:7;31817:1;31800:19;;:5;:19;;;31796:60;;;31828:28;;;;;;;;;;;;;;31796:60;31882:12;:19;31895:5;31882:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;31874:36;;31867:43;;31712:206;;;:::o;7528:103::-;7108:12;:10;:12::i;:::-;7097:23;;:7;:5;:7::i;:::-;:23;;;7089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7593:30:::1;7620:1;7593:18;:30::i;:::-;7528:103::o:0;6877:87::-;6923:7;6950:6;;;;;;;;;;;6943:13;;6877:87;:::o;34627:104::-;34683:13;34716:7;34709:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34627:104;:::o;50998:550::-;1851:1;2449:7;;:19;;2441:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1851:1;2582:7;:18;;;;51072:6:::1;;;;;;;;;;;51071:7;51063:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;51113:14;51130:13;:11;:13::i;:::-;51113:30;;51167:1;51158:6;:10;51150:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;51225:12;;51215:6;:22;;51207:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;51307:9;;51297:6;51288;:15;;;;:::i;:::-;:28;;51280:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;51386:12;;51376:6;51346:27;51360:12;:10;:12::i;:::-;51346:13;:27::i;:::-;:36;;;;:::i;:::-;:52;;51338:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;51465:6;51458:4;;:13;;;;:::i;:::-;51445:9;:26;;51437:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;51505:31;51515:12;:10;:12::i;:::-;51529:6;51505:9;:31::i;:::-;51056:492;1807:1:::0;2761:7;:22;;;;50998:550;:::o;36238:287::-;36349:12;:10;:12::i;:::-;36337:24;;:8;:24;;;36333:54;;;36370:17;;;;;;;;;;;;;;36333:54;36445:8;36400:18;:32;36419:12;:10;:12::i;:::-;36400:32;;;;;;;;;;;;;;;:42;36433:8;36400:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;36498:8;36469:48;;36484:12;:10;:12::i;:::-;36469:48;;;36508:8;36469:48;;;;;;:::i;:::-;;;;;;;;36238:287;;:::o;37324:370::-;37491:28;37501:4;37507:2;37511:7;37491:9;:28::i;:::-;37534:15;:2;:13;;;:15::i;:::-;37530:157;;;37555:56;37586:4;37592:2;37596:7;37605:5;37555:30;:56::i;:::-;37551:136;;37635:40;;;;;;;;;;;;;;37551:136;37530:157;37324:370;;;;:::o;50542:31::-;;;;:::o;50426:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51554:424::-;51652:13;51693:16;51701:7;51693;:16::i;:::-;51677:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;51784:28;51815:10;:8;:10::i;:::-;51784:41;;51870:1;51845:14;51839:28;:32;:133;;;;;;;;;;;;;;;;;51907:14;51923:18;:7;:16;:18::i;:::-;51943:13;51890:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51839:133;51832:140;;;51554:424;;;:::o;50507:30::-;;;;:::o;52507:122::-;7108:12;:10;:12::i;:::-;7097:23;;:7;:5;:7::i;:::-;:23;;;7089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52606:17:::1;52590:13;:33;;;;;;;;;;;;:::i;:::-;;52507:122:::0;:::o;51986:107::-;52044:7;52067:20;52081:5;52067:13;:20::i;:::-;52060:27;;51986:107;;;:::o;52115:92::-;7108:12;:10;:12::i;:::-;7097:23;;:7;:5;:7::i;:::-;:23;;;7089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52195:6:::1;52180:12;:21;;;;52115:92:::0;:::o;36596:164::-;36693:4;36717:18;:25;36736:5;36717:25;;;;;;;;;;;;;;;:35;36743:8;36717:35;;;;;;;;;;;;;;;;;;;;;;;;;36710:42;;36596:164;;;;:::o;7786:201::-;7108:12;:10;:12::i;:::-;7097:23;;:7;:5;:7::i;:::-;:23;;;7089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7895:1:::1;7875:22;;:8;:22;;;;7867:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7951:28;7970:8;7951:18;:28::i;:::-;7786:201:::0;:::o;19684:157::-;19769:4;19808:25;19793:40;;;:11;:40;;;;19786:47;;19684:157;;;:::o;5601:98::-;5654:7;5681:10;5674:17;;5601:98;:::o;37949:174::-;38006:4;38049:7;38030:15;:13;:15::i;:::-;:26;;:53;;;;;38070:13;;38060:7;:23;38030:53;:85;;;;;38088:11;:20;38100:7;38088:20;;;;;;;;;;;:27;;;;;;;;;;;;38087:28;38030:85;38023:92;;37949:174;;;:::o;47171:196::-;47313:2;47286:15;:24;47302:7;47286:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47351:7;47347:2;47331:28;;47340:5;47331:28;;;;;;;;;;;;47171:196;;;:::o;50878:101::-;50943:7;50970:1;50963:8;;50878:101;:::o;42119:2130::-;42234:35;42272:21;42285:7;42272:12;:21::i;:::-;42234:59;;42332:4;42310:26;;:13;:18;;;:26;;;42306:67;;42345:28;;;;;;;;;;;;;;42306:67;42386:22;42428:4;42412:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;42449:36;42466:4;42472:12;:10;:12::i;:::-;42449:16;:36::i;:::-;42412:73;:126;;;;42526:12;:10;:12::i;:::-;42502:36;;:20;42514:7;42502:11;:20::i;:::-;:36;;;42412:126;42386:153;;42557:17;42552:66;;42583:35;;;;;;;;;;;;;;42552:66;42647:1;42633:16;;:2;:16;;;42629:52;;;42658:23;;;;;;;;;;;;;;42629:52;42694:43;42716:4;42722:2;42726:7;42735:1;42694:21;:43::i;:::-;42802:35;42819:1;42823:7;42832:4;42802:8;:35::i;:::-;43163:1;43133:12;:18;43146:4;43133:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43207:1;43179:12;:16;43192:2;43179:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43225:31;43259:11;:20;43271:7;43259:20;;;;;;;;;;;43225:54;;43310:2;43294:8;:13;;;:18;;;;;;;;;;;;;;;;;;43360:15;43327:8;:23;;;:49;;;;;;;;;;;;;;;;;;43628:19;43660:1;43650:7;:11;43628:33;;43676:31;43710:11;:24;43722:11;43710:24;;;;;;;;;;;43676:58;;43778:1;43753:27;;:8;:13;;;;;;;;;;;;:27;;;43749:384;;;43963:13;;43948:11;:28;43944:174;;44017:4;44001:8;:13;;;:20;;;;;;;;;;;;;;;;;;44070:13;:28;;;44044:8;:23;;;:54;;;;;;;;;;;;;;;;;;43944:174;43749:384;43108:1036;;;44180:7;44176:2;44161:27;;44170:4;44161:27;;;;;;;;;;;;44199:42;44220:4;44226:2;44230:7;44239:1;44199:20;:42::i;:::-;42223:2026;;42119:2130;;;:::o;33093:1111::-;33155:21;;:::i;:::-;33189:12;33204:7;33189:22;;33272:4;33253:15;:13;:15::i;:::-;:23;33249:888;;33289:13;;33282:4;:20;33278:859;;;33323:31;33357:11;:17;33369:4;33357:17;;;;;;;;;;;33323:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33398:9;:16;;;33393:729;;33469:1;33443:28;;:9;:14;;;:28;;;33439:101;;33507:9;33500:16;;;;;;33439:101;33842:261;33849:4;33842:261;;;33882:6;;;;;;;;33927:11;:17;33939:4;33927:17;;;;;;;;;;;33915:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34001:1;33975:28;;:9;:14;;;:28;;;33971:109;;34043:9;34036:16;;;;;;33971:109;33842:261;;;33393:729;33304:833;33278:859;33249:888;34165:31;;;;;;;;;;;;;;33093:1111;;;;:::o;8147:191::-;8221:16;8240:6;;;;;;;;;;;8221:25;;8266:8;8257:6;;:17;;;;;;;;;;;;;;;;;;8321:8;8290:40;;8311:8;8290:40;;;;;;;;;;;;8210:128;8147:191;:::o;32000:137::-;32061:7;32096:12;:19;32109:5;32096:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;32088:41;;32081:48;;32000:137;;;:::o;38207:104::-;38276:27;38286:2;38290:8;38276:27;;;;;;;;;;;;:9;:27::i;:::-;38207:104;;:::o;9578:326::-;9638:4;9895:1;9873:7;:19;;;:23;9866:30;;9578:326;;;:::o;47859:667::-;48022:4;48059:2;48043:36;;;48080:12;:10;:12::i;:::-;48094:4;48100:7;48109:5;48043:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48039:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48294:1;48277:6;:13;:18;48273:235;;;48323:40;;;;;;;;;;;;;;48273:235;48466:6;48460:13;48451:6;48447:2;48443:15;48436:38;48039:480;48172:45;;;48162:55;;;:6;:55;;;;48155:62;;;47859:667;;;;;;:::o;50768:102::-;50828:13;50857:7;50850:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50768:102;:::o;3163:723::-;3219:13;3449:1;3440:5;:10;3436:53;;;3467:10;;;;;;;;;;;;;;;;;;;;;3436:53;3499:12;3514:5;3499:20;;3530:14;3555:78;3570:1;3562:4;:9;3555:78;;3588:8;;;;;:::i;:::-;;;;3619:2;3611:10;;;;;:::i;:::-;;;3555:78;;;3643:19;3675:6;3665:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3643:39;;3693:154;3709:1;3700:5;:10;3693:154;;3737:1;3727:11;;;;;:::i;:::-;;;3804:2;3796:5;:10;;;;:::i;:::-;3783:2;:24;;;;:::i;:::-;3770:39;;3753:6;3760;3753:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3833:2;3824:11;;;;;:::i;:::-;;;3693:154;;;3871:6;3857:21;;;;;3163:723;;;;:::o;49174:159::-;;;;;:::o;49992:158::-;;;;;:::o;38684:1749::-;38807:20;38830:13;;38807:36;;38872:1;38858:16;;:2;:16;;;38854:48;;;38883:19;;;;;;;;;;;;;;38854:48;38929:1;38917:8;:13;38913:44;;;38939:18;;;;;;;;;;;;;;38913:44;38970:61;39000:1;39004:2;39008:12;39022:8;38970:21;:61::i;:::-;39343:8;39308:12;:16;39321:2;39308:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39407:8;39367:12;:16;39380:2;39367:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39466:2;39433:11;:25;39445:12;39433:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;39533:15;39483:11;:25;39495:12;39483:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;39566:20;39589:12;39566:35;;39616:11;39645:8;39630:12;:23;39616:37;;39674:15;:2;:13;;;:15::i;:::-;39670:631;;;39710:313;39766:12;39762:2;39741:38;;39758:1;39741:38;;;;;;;;;;;;39807:69;39846:1;39850:2;39854:14;;;;;;39870:5;39807:30;:69::i;:::-;39802:174;;39912:40;;;;;;;;;;;;;;39802:174;40018:3;40003:12;:18;39710:313;;40104:12;40087:13;;:29;40083:43;;40118:8;;;40083:43;39670:631;;;40167:119;40223:14;;;;;;40219:2;40198:40;;40215:1;40198:40;;;;;;;;;;;;40281:3;40266:12;:18;40167:119;;39670:631;40331:12;40315:13;:28;;;;39283:1072;;40365:60;40394:1;40398:2;40402:12;40416:8;40365:20;:60::i;:::-;38796:1637;38684:1749;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8869:845::-;8972:3;9009:5;9003:12;9038:36;9064:9;9038:36;:::i;:::-;9090:89;9172:6;9167:3;9090:89;:::i;:::-;9083:96;;9210:1;9199:9;9195:17;9226:1;9221:137;;;;9372:1;9367:341;;;;9188:520;;9221:137;9305:4;9301:9;9290;9286:25;9281:3;9274:38;9341:6;9336:3;9332:16;9325:23;;9221:137;;9367:341;9434:38;9466:5;9434:38;:::i;:::-;9494:1;9508:154;9522:6;9519:1;9516:13;9508:154;;;9596:7;9590:14;9586:1;9581:3;9577:11;9570:35;9646:1;9637:7;9633:15;9622:26;;9544:4;9541:1;9537:12;9532:17;;9508:154;;;9691:6;9686:3;9682:16;9675:23;;9374:334;;9188:520;;8976:738;;8869:845;;;;:::o;9720:366::-;9862:3;9883:67;9947:2;9942:3;9883:67;:::i;:::-;9876:74;;9959:93;10048:3;9959:93;:::i;:::-;10077:2;10072:3;10068:12;10061:19;;9720:366;;;:::o;10092:::-;10234:3;10255:67;10319:2;10314:3;10255:67;:::i;:::-;10248:74;;10331:93;10420:3;10331:93;:::i;:::-;10449:2;10444:3;10440:12;10433:19;;10092:366;;;:::o;10464:::-;10606:3;10627:67;10691:2;10686:3;10627:67;:::i;:::-;10620:74;;10703:93;10792:3;10703:93;:::i;:::-;10821:2;10816:3;10812:12;10805:19;;10464:366;;;:::o;10836:::-;10978:3;10999:67;11063:2;11058:3;10999:67;:::i;:::-;10992:74;;11075:93;11164:3;11075:93;:::i;:::-;11193:2;11188:3;11184:12;11177:19;;10836:366;;;:::o;11208:::-;11350:3;11371:67;11435:2;11430:3;11371:67;:::i;:::-;11364:74;;11447:93;11536:3;11447:93;:::i;:::-;11565:2;11560:3;11556:12;11549:19;;11208:366;;;:::o;11580:::-;11722:3;11743:67;11807:2;11802:3;11743:67;:::i;:::-;11736:74;;11819:93;11908:3;11819:93;:::i;:::-;11937:2;11932:3;11928:12;11921:19;;11580:366;;;:::o;11952:398::-;12111:3;12132:83;12213:1;12208:3;12132:83;:::i;:::-;12125:90;;12224:93;12313:3;12224:93;:::i;:::-;12342:1;12337:3;12333:11;12326:18;;11952:398;;;:::o;12356:366::-;12498:3;12519:67;12583:2;12578:3;12519:67;:::i;:::-;12512:74;;12595:93;12684:3;12595:93;:::i;:::-;12713:2;12708:3;12704:12;12697:19;;12356:366;;;:::o;12728:::-;12870:3;12891:67;12955:2;12950:3;12891:67;:::i;:::-;12884:74;;12967:93;13056:3;12967:93;:::i;:::-;13085:2;13080:3;13076:12;13069:19;;12728:366;;;:::o;13100:::-;13242:3;13263:67;13327:2;13322:3;13263:67;:::i;:::-;13256:74;;13339:93;13428:3;13339:93;:::i;:::-;13457:2;13452:3;13448:12;13441:19;;13100:366;;;:::o;13472:::-;13614:3;13635:67;13699:2;13694:3;13635:67;:::i;:::-;13628:74;;13711:93;13800:3;13711:93;:::i;:::-;13829:2;13824:3;13820:12;13813:19;;13472:366;;;:::o;13844:118::-;13931:24;13949:5;13931:24;:::i;:::-;13926:3;13919:37;13844:118;;:::o;13968:589::-;14193:3;14215:95;14306:3;14297:6;14215:95;:::i;:::-;14208:102;;14327:95;14418:3;14409:6;14327:95;:::i;:::-;14320:102;;14439:92;14527:3;14518:6;14439:92;:::i;:::-;14432:99;;14548:3;14541:10;;13968:589;;;;;;:::o;14563:379::-;14747:3;14769:147;14912:3;14769:147;:::i;:::-;14762:154;;14933:3;14926:10;;14563:379;;;:::o;14948:222::-;15041:4;15079:2;15068:9;15064:18;15056:26;;15092:71;15160:1;15149:9;15145:17;15136:6;15092:71;:::i;:::-;14948:222;;;;:::o;15176:640::-;15371:4;15409:3;15398:9;15394:19;15386:27;;15423:71;15491:1;15480:9;15476:17;15467:6;15423:71;:::i;:::-;15504:72;15572:2;15561:9;15557:18;15548:6;15504:72;:::i;:::-;15586;15654:2;15643:9;15639:18;15630:6;15586:72;:::i;:::-;15705:9;15699:4;15695:20;15690:2;15679:9;15675:18;15668:48;15733:76;15804:4;15795:6;15733:76;:::i;:::-;15725:84;;15176:640;;;;;;;:::o;15822:210::-;15909:4;15947:2;15936:9;15932:18;15924:26;;15960:65;16022:1;16011:9;16007:17;15998:6;15960:65;:::i;:::-;15822:210;;;;:::o;16038:313::-;16151:4;16189:2;16178:9;16174:18;16166:26;;16238:9;16232:4;16228:20;16224:1;16213:9;16209:17;16202:47;16266:78;16339:4;16330:6;16266:78;:::i;:::-;16258:86;;16038:313;;;;:::o;16357:419::-;16523:4;16561:2;16550:9;16546:18;16538:26;;16610:9;16604:4;16600:20;16596:1;16585:9;16581:17;16574:47;16638:131;16764:4;16638:131;:::i;:::-;16630:139;;16357:419;;;:::o;16782:::-;16948:4;16986:2;16975:9;16971:18;16963:26;;17035:9;17029:4;17025:20;17021:1;17010:9;17006:17;16999:47;17063:131;17189:4;17063:131;:::i;:::-;17055:139;;16782:419;;;:::o;17207:::-;17373:4;17411:2;17400:9;17396:18;17388:26;;17460:9;17454:4;17450:20;17446:1;17435:9;17431:17;17424:47;17488:131;17614:4;17488:131;:::i;:::-;17480:139;;17207:419;;;:::o;17632:::-;17798:4;17836:2;17825:9;17821:18;17813:26;;17885:9;17879:4;17875:20;17871:1;17860:9;17856:17;17849:47;17913:131;18039:4;17913:131;:::i;:::-;17905:139;;17632:419;;;:::o;18057:::-;18223:4;18261:2;18250:9;18246:18;18238:26;;18310:9;18304:4;18300:20;18296:1;18285:9;18281:17;18274:47;18338:131;18464:4;18338:131;:::i;:::-;18330:139;;18057:419;;;:::o;18482:::-;18648:4;18686:2;18675:9;18671:18;18663:26;;18735:9;18729:4;18725:20;18721:1;18710:9;18706:17;18699:47;18763:131;18889:4;18763:131;:::i;:::-;18755:139;;18482:419;;;:::o;18907:::-;19073:4;19111:2;19100:9;19096:18;19088:26;;19160:9;19154:4;19150:20;19146:1;19135:9;19131:17;19124:47;19188:131;19314:4;19188:131;:::i;:::-;19180:139;;18907:419;;;:::o;19332:::-;19498:4;19536:2;19525:9;19521:18;19513:26;;19585:9;19579:4;19575:20;19571:1;19560:9;19556:17;19549:47;19613:131;19739:4;19613:131;:::i;:::-;19605:139;;19332:419;;;:::o;19757:::-;19923:4;19961:2;19950:9;19946:18;19938:26;;20010:9;20004:4;20000:20;19996:1;19985:9;19981:17;19974:47;20038:131;20164:4;20038:131;:::i;:::-;20030:139;;19757:419;;;:::o;20182:::-;20348:4;20386:2;20375:9;20371:18;20363:26;;20435:9;20429:4;20425:20;20421:1;20410:9;20406:17;20399:47;20463:131;20589:4;20463:131;:::i;:::-;20455:139;;20182:419;;;:::o;20607:222::-;20700:4;20738:2;20727:9;20723:18;20715:26;;20751:71;20819:1;20808:9;20804:17;20795:6;20751:71;:::i;:::-;20607:222;;;;:::o;20835:129::-;20869:6;20896:20;;:::i;:::-;20886:30;;20925:33;20953:4;20945:6;20925:33;:::i;:::-;20835:129;;;:::o;20970:75::-;21003:6;21036:2;21030:9;21020:19;;20970:75;:::o;21051:307::-;21112:4;21202:18;21194:6;21191:30;21188:56;;;21224:18;;:::i;:::-;21188:56;21262:29;21284:6;21262:29;:::i;:::-;21254:37;;21346:4;21340;21336:15;21328:23;;21051:307;;;:::o;21364:308::-;21426:4;21516:18;21508:6;21505:30;21502:56;;;21538:18;;:::i;:::-;21502:56;21576:29;21598:6;21576:29;:::i;:::-;21568:37;;21660:4;21654;21650:15;21642:23;;21364:308;;;:::o;21678:141::-;21727:4;21750:3;21742:11;;21773:3;21770:1;21763:14;21807:4;21804:1;21794:18;21786:26;;21678:141;;;:::o;21825:98::-;21876:6;21910:5;21904:12;21894:22;;21825:98;;;:::o;21929:99::-;21981:6;22015:5;22009:12;21999:22;;21929:99;;;:::o;22034:168::-;22117:11;22151:6;22146:3;22139:19;22191:4;22186:3;22182:14;22167:29;;22034:168;;;;:::o;22208:147::-;22309:11;22346:3;22331:18;;22208:147;;;;:::o;22361:169::-;22445:11;22479:6;22474:3;22467:19;22519:4;22514:3;22510:14;22495:29;;22361:169;;;;:::o;22536:148::-;22638:11;22675:3;22660:18;;22536:148;;;;:::o;22690:305::-;22730:3;22749:20;22767:1;22749:20;:::i;:::-;22744:25;;22783:20;22801:1;22783:20;:::i;:::-;22778:25;;22937:1;22869:66;22865:74;22862:1;22859:81;22856:107;;;22943:18;;:::i;:::-;22856:107;22987:1;22984;22980:9;22973:16;;22690:305;;;;:::o;23001:185::-;23041:1;23058:20;23076:1;23058:20;:::i;:::-;23053:25;;23092:20;23110:1;23092:20;:::i;:::-;23087:25;;23131:1;23121:35;;23136:18;;:::i;:::-;23121:35;23178:1;23175;23171:9;23166:14;;23001:185;;;;:::o;23192:348::-;23232:7;23255:20;23273:1;23255:20;:::i;:::-;23250:25;;23289:20;23307:1;23289:20;:::i;:::-;23284:25;;23477:1;23409:66;23405:74;23402:1;23399:81;23394:1;23387:9;23380:17;23376:105;23373:131;;;23484:18;;:::i;:::-;23373:131;23532:1;23529;23525:9;23514:20;;23192:348;;;;:::o;23546:191::-;23586:4;23606:20;23624:1;23606:20;:::i;:::-;23601:25;;23640:20;23658:1;23640:20;:::i;:::-;23635:25;;23679:1;23676;23673:8;23670:34;;;23684:18;;:::i;:::-;23670:34;23729:1;23726;23722:9;23714:17;;23546:191;;;;:::o;23743:96::-;23780:7;23809:24;23827:5;23809:24;:::i;:::-;23798:35;;23743:96;;;:::o;23845:90::-;23879:7;23922:5;23915:13;23908:21;23897:32;;23845:90;;;:::o;23941:149::-;23977:7;24017:66;24010:5;24006:78;23995:89;;23941:149;;;:::o;24096:126::-;24133:7;24173:42;24166:5;24162:54;24151:65;;24096:126;;;:::o;24228:77::-;24265:7;24294:5;24283:16;;24228:77;;;:::o;24311:154::-;24395:6;24390:3;24385;24372:30;24457:1;24448:6;24443:3;24439:16;24432:27;24311:154;;;:::o;24471:307::-;24539:1;24549:113;24563:6;24560:1;24557:13;24549:113;;;24648:1;24643:3;24639:11;24633:18;24629:1;24624:3;24620:11;24613:39;24585:2;24582:1;24578:10;24573:15;;24549:113;;;24680:6;24677:1;24674:13;24671:101;;;24760:1;24751:6;24746:3;24742:16;24735:27;24671:101;24520:258;24471:307;;;:::o;24784:320::-;24828:6;24865:1;24859:4;24855:12;24845:22;;24912:1;24906:4;24902:12;24933:18;24923:81;;24989:4;24981:6;24977:17;24967:27;;24923:81;25051:2;25043:6;25040:14;25020:18;25017:38;25014:84;;;25070:18;;:::i;:::-;25014:84;24835:269;24784:320;;;:::o;25110:281::-;25193:27;25215:4;25193:27;:::i;:::-;25185:6;25181:40;25323:6;25311:10;25308:22;25287:18;25275:10;25272:34;25269:62;25266:88;;;25334:18;;:::i;:::-;25266:88;25374:10;25370:2;25363:22;25153:238;25110:281;;:::o;25397:233::-;25436:3;25459:24;25477:5;25459:24;:::i;:::-;25450:33;;25505:66;25498:5;25495:77;25492:103;;;25575:18;;:::i;:::-;25492:103;25622:1;25615:5;25611:13;25604:20;;25397:233;;;:::o;25636:176::-;25668:1;25685:20;25703:1;25685:20;:::i;:::-;25680:25;;25719:20;25737:1;25719:20;:::i;:::-;25714:25;;25758:1;25748:35;;25763:18;;:::i;:::-;25748:35;25804:1;25801;25797:9;25792:14;;25636:176;;;;:::o;25818:180::-;25866:77;25863:1;25856:88;25963:4;25960:1;25953:15;25987:4;25984:1;25977:15;26004:180;26052:77;26049:1;26042:88;26149:4;26146:1;26139:15;26173:4;26170:1;26163:15;26190:180;26238:77;26235:1;26228:88;26335:4;26332:1;26325:15;26359:4;26356:1;26349:15;26376:180;26424:77;26421:1;26414:88;26521:4;26518:1;26511:15;26545:4;26542:1;26535:15;26562:180;26610:77;26607:1;26600:88;26707:4;26704:1;26697:15;26731:4;26728:1;26721:15;26748:117;26857:1;26854;26847:12;26871:117;26980:1;26977;26970:12;26994:117;27103:1;27100;27093:12;27117:117;27226:1;27223;27216:12;27240:102;27281:6;27332:2;27328:7;27323:2;27316:5;27312:14;27308:28;27298:38;;27240:102;;;:::o;27348:235::-;27488:34;27484:1;27476:6;27472:14;27465:58;27557:18;27552:2;27544:6;27540:15;27533:43;27348:235;:::o;27589:225::-;27729:34;27725:1;27717:6;27713:14;27706:58;27798:8;27793:2;27785:6;27781:15;27774:33;27589:225;:::o;27820:160::-;27960:12;27956:1;27948:6;27944:14;27937:36;27820:160;:::o;27986:168::-;28126:20;28122:1;28114:6;28110:14;28103:44;27986:168;:::o;28160:181::-;28300:33;28296:1;28288:6;28284:14;28277:57;28160:181;:::o;28347:182::-;28487:34;28483:1;28475:6;28471:14;28464:58;28347:182;:::o;28535:114::-;;:::o;28655:177::-;28795:29;28791:1;28783:6;28779:14;28772:53;28655:177;:::o;28838:181::-;28978:33;28974:1;28966:6;28962:14;28955:57;28838:181;:::o;29025:177::-;29165:29;29161:1;29153:6;29149:14;29142:53;29025:177;:::o;29208:173::-;29348:25;29344:1;29336:6;29332:14;29325:49;29208:173;:::o;29387:122::-;29460:24;29478:5;29460:24;:::i;:::-;29453:5;29450:35;29440:63;;29499:1;29496;29489:12;29440:63;29387:122;:::o;29515:116::-;29585:21;29600:5;29585:21;:::i;:::-;29578:5;29575:32;29565:60;;29621:1;29618;29611:12;29565:60;29515:116;:::o;29637:120::-;29709:23;29726:5;29709:23;:::i;:::-;29702:5;29699:34;29689:62;;29747:1;29744;29737:12;29689:62;29637:120;:::o;29763:122::-;29836:24;29854:5;29836:24;:::i;:::-;29829:5;29826:35;29816:63;;29875:1;29872;29865:12;29816:63;29763:122;:::o

Swarm Source

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