ETH Price: $3,390.25 (+3.90%)

Token

Tasty Mfers XYZ (TMX)
 

Overview

Max Total Supply

162 TMX

Holders

28

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 TMX
0xd463475bbd405fb1d65dae76e37573a3a1fd73d6
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:
TastyMfersXYZ

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: GPL-3.0
// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

// File: fdas.sol



//Developer : FazelPejmanfar , Twitter :@Pejmanfarfazel



pragma solidity >=0.7.0 <0.9.0;





contract TastyMfersXYZ is ERC721A, Ownable {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 0.0175 ether;
  uint256 public maxSupply = 5050;
  uint256 public freeSupply = 200;
  uint256 public MaxperWallet = 10;
  uint256 public maxpertx = 10 ; // max mint per tx
  bool public paused = false;
  bool public revealed = false;

  constructor(
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721A("Tasty Mfers XYZ", "TMX") {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }

  // 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 {
    require(!paused, "TMX: oops contract is paused");
    uint256 supply = totalSupply();
    uint256 ownerTokenCount = balanceOf(_msgSender());
    require(tokens > 0, "TMX: need to mint at least 1 NFT");
    require(tokens <= maxpertx, "TMX: max mint amount per tx exceeded");
    require(supply + tokens <= maxSupply, "TMX: We Soldout");
    require(ownerTokenCount + tokens <= MaxperWallet, "TMX: Max NFT Per Wallet exceeded");
    require(msg.value >= cost * tokens, "TMX: insufficient funds");

      _safeMint(_msgSender(), tokens);
    
  }


    function freemint(uint256 tokens) public payable  {
    require(!paused, "TMX: oops contract is paused");
    uint256 supply = totalSupply();
    uint256 ownerTokenCount = balanceOf(_msgSender());
    require(ownerTokenCount + tokens <= 3, "TMX: Max NFT Per Wallet exceeded");
    require(tokens > 0, "TMX: need to mint at least 1 NFT");
    require(tokens <= 4, "TMX: max mint per Tx exceeded");
    require(supply + tokens <= freeSupply, "TMX: Whitelist MaxSupply exceeded");

      _safeMint(_msgSender(), tokens);
    
  }




  /// @dev use it for giveaway and mint for yourself
     function gift(uint256 _mintAmount, address destination) public onlyOwner {
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    uint256 supply = totalSupply();
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

      _safeMint(destination, _mintAmount);
    
  }

  


  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721AMetadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

  //only owner
  function reveal(bool _state) public onlyOwner {
      revealed = _state;
  }
  
  function setMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWallet = _limit;
  }

  function setmaxpertx(uint256 _maxpertx) public onlyOwner {
    maxpertx = _maxpertx;
  }

  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

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

    function setfreeSupply(uint256 _newsupply) public onlyOwner {
    freeSupply = _newsupply;
  }

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"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":[],"name":"freeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"freemint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":[],"name":"maxpertx","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":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setfreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxpertx","type":"uint256"}],"name":"setmaxpertx","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"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90805190602001906200005192919062000432565b50663e2c284391c000600c556113ba600d5560c8600e55600a600f55600a6010556000601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff021916908315150217905550348015620000b557600080fd5b5060405162004ca638038062004ca68339818101604052810190620000db919062000560565b6040518060400160405280600f81526020017f5461737479204d666572732058595a00000000000000000000000000000000008152506040518060400160405280600381526020017f544d58000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200015f92919062000432565b5080600390805190602001906200017892919062000432565b5062000189620001db60201b60201c565b6000819055505050620001b1620001a5620001e460201b60201c565b620001ec60201b60201c565b620001c282620002b260201b60201c565b620001d3816200035d60201b60201c565b5050620007ec565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002c2620001e460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002e86200040860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000338906200060c565b60405180910390fd5b80600990805190602001906200035992919062000432565b5050565b6200036d620001e460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003936200040860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003ec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e3906200060c565b60405180910390fd5b80600b90805190602001906200040492919062000432565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200044090620006d4565b90600052602060002090601f016020900481019282620004645760008555620004b0565b82601f106200047f57805160ff1916838001178555620004b0565b82800160010185558215620004b0579182015b82811115620004af57825182559160200191906001019062000492565b5b509050620004bf9190620004c3565b5090565b5b80821115620004de576000816000905550600101620004c4565b5090565b6000620004f9620004f38462000657565b6200062e565b905082815260208101848484011115620005185762000517620007a3565b5b620005258482856200069e565b509392505050565b600082601f8301126200054557620005446200079e565b5b815162000557848260208601620004e2565b91505092915050565b600080604083850312156200057a5762000579620007ad565b5b600083015167ffffffffffffffff8111156200059b576200059a620007a8565b5b620005a9858286016200052d565b925050602083015167ffffffffffffffff811115620005cd57620005cc620007a8565b5b620005db858286016200052d565b9150509250929050565b6000620005f46020836200068d565b91506200060182620007c3565b602082019050919050565b600060208201905081810360008301526200062781620005e5565b9050919050565b60006200063a6200064d565b90506200064882826200070a565b919050565b6000604051905090565b600067ffffffffffffffff8211156200067557620006746200076f565b5b6200068082620007b2565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620006be578082015181840152602081019050620006a1565b83811115620006ce576000848401525b50505050565b60006002820490506001821680620006ed57607f821691505b6020821081141562000704576200070362000740565b5b50919050565b6200071582620007b2565b810181811067ffffffffffffffff821117156200073757620007366200076f565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6144aa80620007fc6000396000f3fe6080604052600436106102465760003560e01c80636c0360eb11610139578063bd7a1998116100b6578063da3ef23f1161007a578063da3ef23f14610819578063e268e4d314610842578063e985e9c51461086b578063eff60110146108a8578063f2c4ce1e146108d3578063f2fde38b146108fc57610246565b8063bd7a199814610732578063c66828621461075d578063c8151d0214610788578063c87b56dd146107b1578063d5abeb01146107ee57610246565b8063940cd05b116100fd578063940cd05b1461067057806395d89b4114610699578063a0712d68146106c4578063a22cb465146106e0578063b88d4fde1461070957610246565b80636c0360eb1461059d57806370a08231146105c8578063715018a61461060557806383a076be1461061c5780638da5cb5b1461064557610246565b80631a86854f116101c757806344a0d68a1161018b57806344a0d68a146104b857806351830227146104e157806355f804b31461050c5780635c975abb146105355780636352211e1461056057610246565b80631a86854f1461040857806323b872dd1461043157806324a6ab0c1461045a5780633ccfd60b1461048557806342842e0e1461048f57610246565b8063095ea7b31161020e578063095ea7b3146103445780630fbe4fe21461036d57806313faede614610389578063149835a0146103b457806318160ddd146103dd57610246565b806301ffc9a71461024b57806302329a291461028857806306fdde03146102b1578063081812fc146102dc578063081c8c4414610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906135d8565b610925565b60405161027f9190613ace565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa91906135ab565b610a07565b005b3480156102bd57600080fd5b506102c6610aa0565b6040516102d39190613ae9565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe919061367b565b610b32565b6040516103109190613a67565b60405180910390f35b34801561032557600080fd5b5061032e610bae565b60405161033b9190613ae9565b60405180910390f35b34801561035057600080fd5b5061036b6004803603810190610366919061356b565b610c3c565b005b6103876004803603810190610382919061367b565b610d47565b005b34801561039557600080fd5b5061039e610ef3565b6040516103ab9190613cab565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d6919061367b565b610ef9565b005b3480156103e957600080fd5b506103f2610f7f565b6040516103ff9190613cab565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a919061367b565b610f96565b005b34801561043d57600080fd5b5061045860048036038101906104539190613455565b61101c565b005b34801561046657600080fd5b5061046f61102c565b60405161047c9190613cab565b60405180910390f35b61048d611032565b005b34801561049b57600080fd5b506104b660048036038101906104b19190613455565b611127565b005b3480156104c457600080fd5b506104df60048036038101906104da919061367b565b611147565b005b3480156104ed57600080fd5b506104f66111cd565b6040516105039190613ace565b60405180910390f35b34801561051857600080fd5b50610533600480360381019061052e9190613632565b6111e0565b005b34801561054157600080fd5b5061054a611276565b6040516105579190613ace565b60405180910390f35b34801561056c57600080fd5b506105876004803603810190610582919061367b565b611289565b6040516105949190613a67565b60405180910390f35b3480156105a957600080fd5b506105b261129f565b6040516105bf9190613ae9565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea91906133e8565b61132d565b6040516105fc9190613cab565b60405180910390f35b34801561061157600080fd5b5061061a6113fd565b005b34801561062857600080fd5b50610643600480360381019061063e91906136a8565b611485565b005b34801561065157600080fd5b5061065a6115af565b6040516106679190613a67565b60405180910390f35b34801561067c57600080fd5b50610697600480360381019061069291906135ab565b6115d9565b005b3480156106a557600080fd5b506106ae611672565b6040516106bb9190613ae9565b60405180910390f35b6106de60048036038101906106d9919061367b565b611704565b005b3480156106ec57600080fd5b506107076004803603810190610702919061352b565b611902565b005b34801561071557600080fd5b50610730600480360381019061072b91906134a8565b611a7a565b005b34801561073e57600080fd5b50610747611af6565b6040516107549190613cab565b60405180910390f35b34801561076957600080fd5b50610772611afc565b60405161077f9190613ae9565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa919061367b565b611b8a565b005b3480156107bd57600080fd5b506107d860048036038101906107d3919061367b565b611c10565b6040516107e59190613ae9565b60405180910390f35b3480156107fa57600080fd5b50610803611d69565b6040516108109190613cab565b60405180910390f35b34801561082557600080fd5b50610840600480360381019061083b9190613632565b611d6f565b005b34801561084e57600080fd5b506108696004803603810190610864919061367b565b611e05565b005b34801561087757600080fd5b50610892600480360381019061088d9190613415565b611e8b565b60405161089f9190613ace565b60405180910390f35b3480156108b457600080fd5b506108bd611f1f565b6040516108ca9190613cab565b60405180910390f35b3480156108df57600080fd5b506108fa60048036038101906108f59190613632565b611f25565b005b34801561090857600080fd5b50610923600480360381019061091e91906133e8565b611fbb565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109f057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0057506109ff826120b3565b5b9050919050565b610a0f61211d565b73ffffffffffffffffffffffffffffffffffffffff16610a2d6115af565b73ffffffffffffffffffffffffffffffffffffffff1614610a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7a90613c2b565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b606060028054610aaf90613f7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610adb90613f7b565b8015610b285780601f10610afd57610100808354040283529160200191610b28565b820191906000526020600020905b815481529060010190602001808311610b0b57829003601f168201915b5050505050905090565b6000610b3d82612125565b610b73576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610bbb90613f7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610be790613f7b565b8015610c345780601f10610c0957610100808354040283529160200191610c34565b820191906000526020600020905b815481529060010190602001808311610c1757829003601f168201915b505050505081565b6000610c4782611289565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610caf576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cce61211d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d005750610cfe81610cf961211d565b611e8b565b155b15610d37576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d42838383612173565b505050565b601160009054906101000a900460ff1615610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e90613b6b565b60405180910390fd5b6000610da1610f7f565b90506000610db5610db061211d565b61132d565b905060038382610dc59190613db0565b1115610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd90613c6b565b60405180910390fd5b60008311610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4090613beb565b60405180910390fd5b6004831115610e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8490613b2b565b60405180910390fd5b600e548383610e9c9190613db0565b1115610edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed490613bab565b60405180910390fd5b610eee610ee861211d565b84612225565b505050565b600c5481565b610f0161211d565b73ffffffffffffffffffffffffffffffffffffffff16610f1f6115af565b73ffffffffffffffffffffffffffffffffffffffff1614610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c90613c2b565b60405180910390fd5b80600d8190555050565b6000610f89612243565b6001546000540303905090565b610f9e61211d565b73ffffffffffffffffffffffffffffffffffffffff16610fbc6115af565b73ffffffffffffffffffffffffffffffffffffffff1614611012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100990613c2b565b60405180910390fd5b80600e8190555050565b61102783838361224c565b505050565b600e5481565b61103a61211d565b73ffffffffffffffffffffffffffffffffffffffff166110586115af565b73ffffffffffffffffffffffffffffffffffffffff16146110ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a590613c2b565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516110d490613a52565b60006040518083038185875af1925050503d8060008114611111576040519150601f19603f3d011682016040523d82523d6000602084013e611116565b606091505b505090508061112457600080fd5b50565b61114283838360405180602001604052806000815250611a7a565b505050565b61114f61211d565b73ffffffffffffffffffffffffffffffffffffffff1661116d6115af565b73ffffffffffffffffffffffffffffffffffffffff16146111c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ba90613c2b565b60405180910390fd5b80600c8190555050565b601160019054906101000a900460ff1681565b6111e861211d565b73ffffffffffffffffffffffffffffffffffffffff166112066115af565b73ffffffffffffffffffffffffffffffffffffffff161461125c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125390613c2b565b60405180910390fd5b80600990805190602001906112729291906131b9565b5050565b601160009054906101000a900460ff1681565b600061129482612702565b600001519050919050565b600980546112ac90613f7b565b80601f01602080910402602001604051908101604052809291908181526020018280546112d890613f7b565b80156113255780601f106112fa57610100808354040283529160200191611325565b820191906000526020600020905b81548152906001019060200180831161130857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611395576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61140561211d565b73ffffffffffffffffffffffffffffffffffffffff166114236115af565b73ffffffffffffffffffffffffffffffffffffffff1614611479576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147090613c2b565b60405180910390fd5b6114836000612991565b565b61148d61211d565b73ffffffffffffffffffffffffffffffffffffffff166114ab6115af565b73ffffffffffffffffffffffffffffffffffffffff1614611501576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f890613c2b565b60405180910390fd5b60008211611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b90613c8b565b60405180910390fd5b600061154e610f7f565b9050600d54838261155f9190613db0565b11156115a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159790613c0b565b60405180910390fd5b6115aa8284612225565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115e161211d565b73ffffffffffffffffffffffffffffffffffffffff166115ff6115af565b73ffffffffffffffffffffffffffffffffffffffff1614611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c90613c2b565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b60606003805461168190613f7b565b80601f01602080910402602001604051908101604052809291908181526020018280546116ad90613f7b565b80156116fa5780601f106116cf576101008083540402835291602001916116fa565b820191906000526020600020905b8154815290600101906020018083116116dd57829003601f168201915b5050505050905090565b601160009054906101000a900460ff1615611754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174b90613b6b565b60405180910390fd5b600061175e610f7f565b9050600061177261176d61211d565b61132d565b9050600083116117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae90613beb565b60405180910390fd5b6010548311156117fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f390613bcb565b60405180910390fd5b600d54838361180b9190613db0565b111561184c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184390613c4b565b60405180910390fd5b600f54838261185b9190613db0565b111561189c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189390613c6b565b60405180910390fd5b82600c546118aa9190613e37565b3410156118ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e390613b4b565b60405180910390fd5b6118fd6118f761211d565b84612225565b505050565b61190a61211d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561196f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061197c61211d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a2961211d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a6e9190613ace565b60405180910390a35050565b611a8584848461224c565b611aa48373ffffffffffffffffffffffffffffffffffffffff16612a57565b8015611ab95750611ab784848484612a7a565b155b15611af0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600f5481565b600a8054611b0990613f7b565b80601f0160208091040260200160405190810160405280929190818152602001828054611b3590613f7b565b8015611b825780601f10611b5757610100808354040283529160200191611b82565b820191906000526020600020905b815481529060010190602001808311611b6557829003601f168201915b505050505081565b611b9261211d565b73ffffffffffffffffffffffffffffffffffffffff16611bb06115af565b73ffffffffffffffffffffffffffffffffffffffff1614611c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfd90613c2b565b60405180910390fd5b8060108190555050565b6060611c1b82612125565b611c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5190613b0b565b60405180910390fd5b60001515601160019054906101000a900460ff1615151415611d0857600b8054611c8390613f7b565b80601f0160208091040260200160405190810160405280929190818152602001828054611caf90613f7b565b8015611cfc5780601f10611cd157610100808354040283529160200191611cfc565b820191906000526020600020905b815481529060010190602001808311611cdf57829003601f168201915b50505050509050611d64565b6000611d12612bda565b90506000815111611d325760405180602001604052806000815250611d60565b80611d3c84612c6c565b600a604051602001611d5093929190613a21565b6040516020818303038152906040525b9150505b919050565b600d5481565b611d7761211d565b73ffffffffffffffffffffffffffffffffffffffff16611d956115af565b73ffffffffffffffffffffffffffffffffffffffff1614611deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de290613c2b565b60405180910390fd5b80600a9080519060200190611e019291906131b9565b5050565b611e0d61211d565b73ffffffffffffffffffffffffffffffffffffffff16611e2b6115af565b73ffffffffffffffffffffffffffffffffffffffff1614611e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7890613c2b565b60405180910390fd5b80600f8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60105481565b611f2d61211d565b73ffffffffffffffffffffffffffffffffffffffff16611f4b6115af565b73ffffffffffffffffffffffffffffffffffffffff1614611fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9890613c2b565b60405180910390fd5b80600b9080519060200190611fb79291906131b9565b5050565b611fc361211d565b73ffffffffffffffffffffffffffffffffffffffff16611fe16115af565b73ffffffffffffffffffffffffffffffffffffffff1614612037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202e90613c2b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209e90613b8b565b60405180910390fd5b6120b081612991565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081612130612243565b1115801561213f575060005482105b801561216c575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61223f828260405180602001604052806000815250612dcd565b5050565b60006001905090565b600061225782612702565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122c2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166122e361211d565b73ffffffffffffffffffffffffffffffffffffffff16148061231257506123118561230c61211d565b611e8b565b5b80612357575061232061211d565b73ffffffffffffffffffffffffffffffffffffffff1661233f84610b32565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612390576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123f7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124048585856001612ddf565b61241060008487612173565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561269057600054821461268f57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126fb8585856001612de5565b5050505050565b61270a61323f565b600082905080612718612243565b11158015612727575060005481105b1561295a576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161295857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461283c57809250505061298c565b5b60011561295757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461295257809250505061298c565b61283d565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612aa061211d565b8786866040518563ffffffff1660e01b8152600401612ac29493929190613a82565b602060405180830381600087803b158015612adc57600080fd5b505af1925050508015612b0d57506040513d601f19601f82011682018060405250810190612b0a9190613605565b60015b612b87573d8060008114612b3d576040519150601f19603f3d011682016040523d82523d6000602084013e612b42565b606091505b50600081511415612b7f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054612be990613f7b565b80601f0160208091040260200160405190810160405280929190818152602001828054612c1590613f7b565b8015612c625780601f10612c3757610100808354040283529160200191612c62565b820191906000526020600020905b815481529060010190602001808311612c4557829003601f168201915b5050505050905090565b60606000821415612cb4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612dc8565b600082905060005b60008214612ce6578080612ccf90613fde565b915050600a82612cdf9190613e06565b9150612cbc565b60008167ffffffffffffffff811115612d0257612d01614114565b5b6040519080825280601f01601f191660200182016040528015612d345781602001600182028036833780820191505090505b5090505b60008514612dc157600182612d4d9190613e91565b9150600a85612d5c9190614027565b6030612d689190613db0565b60f81b818381518110612d7e57612d7d6140e5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612dba9190613e06565b9450612d38565b8093505050505b919050565b612dda8383836001612deb565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612e58576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612e93576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ea06000868387612ddf565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561306a57506130698773ffffffffffffffffffffffffffffffffffffffff16612a57565b5b15613130575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130df6000888480600101955088612a7a565b613115576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561307057826000541461312b57600080fd5b61319c565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613131575b8160008190555050506131b26000868387612de5565b5050505050565b8280546131c590613f7b565b90600052602060002090601f0160209004810192826131e7576000855561322e565b82601f1061320057805160ff191683800117855561322e565b8280016001018555821561322e579182015b8281111561322d578251825591602001919060010190613212565b5b50905061323b9190613282565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561329b576000816000905550600101613283565b5090565b60006132b26132ad84613ceb565b613cc6565b9050828152602081018484840111156132ce576132cd614148565b5b6132d9848285613f39565b509392505050565b60006132f46132ef84613d1c565b613cc6565b9050828152602081018484840111156133105761330f614148565b5b61331b848285613f39565b509392505050565b60008135905061333281614418565b92915050565b6000813590506133478161442f565b92915050565b60008135905061335c81614446565b92915050565b60008151905061337181614446565b92915050565b600082601f83011261338c5761338b614143565b5b813561339c84826020860161329f565b91505092915050565b600082601f8301126133ba576133b9614143565b5b81356133ca8482602086016132e1565b91505092915050565b6000813590506133e28161445d565b92915050565b6000602082840312156133fe576133fd614152565b5b600061340c84828501613323565b91505092915050565b6000806040838503121561342c5761342b614152565b5b600061343a85828601613323565b925050602061344b85828601613323565b9150509250929050565b60008060006060848603121561346e5761346d614152565b5b600061347c86828701613323565b935050602061348d86828701613323565b925050604061349e868287016133d3565b9150509250925092565b600080600080608085870312156134c2576134c1614152565b5b60006134d087828801613323565b94505060206134e187828801613323565b93505060406134f2878288016133d3565b925050606085013567ffffffffffffffff8111156135135761351261414d565b5b61351f87828801613377565b91505092959194509250565b6000806040838503121561354257613541614152565b5b600061355085828601613323565b925050602061356185828601613338565b9150509250929050565b6000806040838503121561358257613581614152565b5b600061359085828601613323565b92505060206135a1858286016133d3565b9150509250929050565b6000602082840312156135c1576135c0614152565b5b60006135cf84828501613338565b91505092915050565b6000602082840312156135ee576135ed614152565b5b60006135fc8482850161334d565b91505092915050565b60006020828403121561361b5761361a614152565b5b600061362984828501613362565b91505092915050565b60006020828403121561364857613647614152565b5b600082013567ffffffffffffffff8111156136665761366561414d565b5b613672848285016133a5565b91505092915050565b60006020828403121561369157613690614152565b5b600061369f848285016133d3565b91505092915050565b600080604083850312156136bf576136be614152565b5b60006136cd858286016133d3565b92505060206136de85828601613323565b9150509250929050565b6136f181613ec5565b82525050565b61370081613ed7565b82525050565b600061371182613d62565b61371b8185613d78565b935061372b818560208601613f48565b61373481614157565b840191505092915050565b600061374a82613d6d565b6137548185613d94565b9350613764818560208601613f48565b61376d81614157565b840191505092915050565b600061378382613d6d565b61378d8185613da5565b935061379d818560208601613f48565b80840191505092915050565b600081546137b681613f7b565b6137c08186613da5565b945060018216600081146137db57600181146137ec5761381f565b60ff1983168652818601935061381f565b6137f585613d4d565b60005b83811015613817578154818901526001820191506020810190506137f8565b838801955050505b50505092915050565b6000613835603083613d94565b915061384082614168565b604082019050919050565b6000613858601d83613d94565b9150613863826141b7565b602082019050919050565b600061387b601783613d94565b9150613886826141e0565b602082019050919050565b600061389e601c83613d94565b91506138a982614209565b602082019050919050565b60006138c1602683613d94565b91506138cc82614232565b604082019050919050565b60006138e4602183613d94565b91506138ef82614281565b604082019050919050565b6000613907602483613d94565b9150613912826142d0565b604082019050919050565b600061392a602083613d94565b91506139358261431f565b602082019050919050565b600061394d601683613d94565b915061395882614348565b602082019050919050565b6000613970602083613d94565b915061397b82614371565b602082019050919050565b6000613993600f83613d94565b915061399e8261439a565b602082019050919050565b60006139b6602083613d94565b91506139c1826143c3565b602082019050919050565b60006139d9600083613d89565b91506139e4826143ec565b600082019050919050565b60006139fc601b83613d94565b9150613a07826143ef565b602082019050919050565b613a1b81613f2f565b82525050565b6000613a2d8286613778565b9150613a398285613778565b9150613a4582846137a9565b9150819050949350505050565b6000613a5d826139cc565b9150819050919050565b6000602082019050613a7c60008301846136e8565b92915050565b6000608082019050613a9760008301876136e8565b613aa460208301866136e8565b613ab16040830185613a12565b8181036060830152613ac38184613706565b905095945050505050565b6000602082019050613ae360008301846136f7565b92915050565b60006020820190508181036000830152613b03818461373f565b905092915050565b60006020820190508181036000830152613b2481613828565b9050919050565b60006020820190508181036000830152613b448161384b565b9050919050565b60006020820190508181036000830152613b648161386e565b9050919050565b60006020820190508181036000830152613b8481613891565b9050919050565b60006020820190508181036000830152613ba4816138b4565b9050919050565b60006020820190508181036000830152613bc4816138d7565b9050919050565b60006020820190508181036000830152613be4816138fa565b9050919050565b60006020820190508181036000830152613c048161391d565b9050919050565b60006020820190508181036000830152613c2481613940565b9050919050565b60006020820190508181036000830152613c4481613963565b9050919050565b60006020820190508181036000830152613c6481613986565b9050919050565b60006020820190508181036000830152613c84816139a9565b9050919050565b60006020820190508181036000830152613ca4816139ef565b9050919050565b6000602082019050613cc06000830184613a12565b92915050565b6000613cd0613ce1565b9050613cdc8282613fad565b919050565b6000604051905090565b600067ffffffffffffffff821115613d0657613d05614114565b5b613d0f82614157565b9050602081019050919050565b600067ffffffffffffffff821115613d3757613d36614114565b5b613d4082614157565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613dbb82613f2f565b9150613dc683613f2f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dfb57613dfa614058565b5b828201905092915050565b6000613e1182613f2f565b9150613e1c83613f2f565b925082613e2c57613e2b614087565b5b828204905092915050565b6000613e4282613f2f565b9150613e4d83613f2f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e8657613e85614058565b5b828202905092915050565b6000613e9c82613f2f565b9150613ea783613f2f565b925082821015613eba57613eb9614058565b5b828203905092915050565b6000613ed082613f0f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f66578082015181840152602081019050613f4b565b83811115613f75576000848401525b50505050565b60006002820490506001821680613f9357607f821691505b60208210811415613fa757613fa66140b6565b5b50919050565b613fb682614157565b810181811067ffffffffffffffff82111715613fd557613fd4614114565b5b80604052505050565b6000613fe982613f2f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561401c5761401b614058565b5b600182019050919050565b600061403282613f2f565b915061403d83613f2f565b92508261404d5761404c614087565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f544d583a206d6178206d696e7420706572205478206578636565646564000000600082015250565b7f544d583a20696e73756666696369656e742066756e6473000000000000000000600082015250565b7f544d583a206f6f707320636f6e74726163742069732070617573656400000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f544d583a2057686974656c697374204d6178537570706c79206578636565646560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b7f544d583a206d6178206d696e7420616d6f756e7420706572207478206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f544d583a206e65656420746f206d696e74206174206c656173742031204e4654600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f544d583a20576520536f6c646f75740000000000000000000000000000000000600082015250565b7f544d583a204d6178204e4654205065722057616c6c6574206578636565646564600082015250565b50565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b61442181613ec5565b811461442c57600080fd5b50565b61443881613ed7565b811461444357600080fd5b50565b61444f81613ee3565b811461445a57600080fd5b50565b61446681613f2f565b811461447157600080fd5b5056fea264697066735822122027019e3d401dab8a0cb5d832b88f9d64ed957b18d60e9e23c571650960846cc964736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102465760003560e01c80636c0360eb11610139578063bd7a1998116100b6578063da3ef23f1161007a578063da3ef23f14610819578063e268e4d314610842578063e985e9c51461086b578063eff60110146108a8578063f2c4ce1e146108d3578063f2fde38b146108fc57610246565b8063bd7a199814610732578063c66828621461075d578063c8151d0214610788578063c87b56dd146107b1578063d5abeb01146107ee57610246565b8063940cd05b116100fd578063940cd05b1461067057806395d89b4114610699578063a0712d68146106c4578063a22cb465146106e0578063b88d4fde1461070957610246565b80636c0360eb1461059d57806370a08231146105c8578063715018a61461060557806383a076be1461061c5780638da5cb5b1461064557610246565b80631a86854f116101c757806344a0d68a1161018b57806344a0d68a146104b857806351830227146104e157806355f804b31461050c5780635c975abb146105355780636352211e1461056057610246565b80631a86854f1461040857806323b872dd1461043157806324a6ab0c1461045a5780633ccfd60b1461048557806342842e0e1461048f57610246565b8063095ea7b31161020e578063095ea7b3146103445780630fbe4fe21461036d57806313faede614610389578063149835a0146103b457806318160ddd146103dd57610246565b806301ffc9a71461024b57806302329a291461028857806306fdde03146102b1578063081812fc146102dc578063081c8c4414610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906135d8565b610925565b60405161027f9190613ace565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa91906135ab565b610a07565b005b3480156102bd57600080fd5b506102c6610aa0565b6040516102d39190613ae9565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe919061367b565b610b32565b6040516103109190613a67565b60405180910390f35b34801561032557600080fd5b5061032e610bae565b60405161033b9190613ae9565b60405180910390f35b34801561035057600080fd5b5061036b6004803603810190610366919061356b565b610c3c565b005b6103876004803603810190610382919061367b565b610d47565b005b34801561039557600080fd5b5061039e610ef3565b6040516103ab9190613cab565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d6919061367b565b610ef9565b005b3480156103e957600080fd5b506103f2610f7f565b6040516103ff9190613cab565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a919061367b565b610f96565b005b34801561043d57600080fd5b5061045860048036038101906104539190613455565b61101c565b005b34801561046657600080fd5b5061046f61102c565b60405161047c9190613cab565b60405180910390f35b61048d611032565b005b34801561049b57600080fd5b506104b660048036038101906104b19190613455565b611127565b005b3480156104c457600080fd5b506104df60048036038101906104da919061367b565b611147565b005b3480156104ed57600080fd5b506104f66111cd565b6040516105039190613ace565b60405180910390f35b34801561051857600080fd5b50610533600480360381019061052e9190613632565b6111e0565b005b34801561054157600080fd5b5061054a611276565b6040516105579190613ace565b60405180910390f35b34801561056c57600080fd5b506105876004803603810190610582919061367b565b611289565b6040516105949190613a67565b60405180910390f35b3480156105a957600080fd5b506105b261129f565b6040516105bf9190613ae9565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea91906133e8565b61132d565b6040516105fc9190613cab565b60405180910390f35b34801561061157600080fd5b5061061a6113fd565b005b34801561062857600080fd5b50610643600480360381019061063e91906136a8565b611485565b005b34801561065157600080fd5b5061065a6115af565b6040516106679190613a67565b60405180910390f35b34801561067c57600080fd5b50610697600480360381019061069291906135ab565b6115d9565b005b3480156106a557600080fd5b506106ae611672565b6040516106bb9190613ae9565b60405180910390f35b6106de60048036038101906106d9919061367b565b611704565b005b3480156106ec57600080fd5b506107076004803603810190610702919061352b565b611902565b005b34801561071557600080fd5b50610730600480360381019061072b91906134a8565b611a7a565b005b34801561073e57600080fd5b50610747611af6565b6040516107549190613cab565b60405180910390f35b34801561076957600080fd5b50610772611afc565b60405161077f9190613ae9565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa919061367b565b611b8a565b005b3480156107bd57600080fd5b506107d860048036038101906107d3919061367b565b611c10565b6040516107e59190613ae9565b60405180910390f35b3480156107fa57600080fd5b50610803611d69565b6040516108109190613cab565b60405180910390f35b34801561082557600080fd5b50610840600480360381019061083b9190613632565b611d6f565b005b34801561084e57600080fd5b506108696004803603810190610864919061367b565b611e05565b005b34801561087757600080fd5b50610892600480360381019061088d9190613415565b611e8b565b60405161089f9190613ace565b60405180910390f35b3480156108b457600080fd5b506108bd611f1f565b6040516108ca9190613cab565b60405180910390f35b3480156108df57600080fd5b506108fa60048036038101906108f59190613632565b611f25565b005b34801561090857600080fd5b50610923600480360381019061091e91906133e8565b611fbb565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109f057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0057506109ff826120b3565b5b9050919050565b610a0f61211d565b73ffffffffffffffffffffffffffffffffffffffff16610a2d6115af565b73ffffffffffffffffffffffffffffffffffffffff1614610a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7a90613c2b565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b606060028054610aaf90613f7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610adb90613f7b565b8015610b285780601f10610afd57610100808354040283529160200191610b28565b820191906000526020600020905b815481529060010190602001808311610b0b57829003601f168201915b5050505050905090565b6000610b3d82612125565b610b73576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610bbb90613f7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610be790613f7b565b8015610c345780601f10610c0957610100808354040283529160200191610c34565b820191906000526020600020905b815481529060010190602001808311610c1757829003601f168201915b505050505081565b6000610c4782611289565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610caf576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cce61211d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d005750610cfe81610cf961211d565b611e8b565b155b15610d37576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d42838383612173565b505050565b601160009054906101000a900460ff1615610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e90613b6b565b60405180910390fd5b6000610da1610f7f565b90506000610db5610db061211d565b61132d565b905060038382610dc59190613db0565b1115610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd90613c6b565b60405180910390fd5b60008311610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4090613beb565b60405180910390fd5b6004831115610e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8490613b2b565b60405180910390fd5b600e548383610e9c9190613db0565b1115610edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed490613bab565b60405180910390fd5b610eee610ee861211d565b84612225565b505050565b600c5481565b610f0161211d565b73ffffffffffffffffffffffffffffffffffffffff16610f1f6115af565b73ffffffffffffffffffffffffffffffffffffffff1614610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c90613c2b565b60405180910390fd5b80600d8190555050565b6000610f89612243565b6001546000540303905090565b610f9e61211d565b73ffffffffffffffffffffffffffffffffffffffff16610fbc6115af565b73ffffffffffffffffffffffffffffffffffffffff1614611012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100990613c2b565b60405180910390fd5b80600e8190555050565b61102783838361224c565b505050565b600e5481565b61103a61211d565b73ffffffffffffffffffffffffffffffffffffffff166110586115af565b73ffffffffffffffffffffffffffffffffffffffff16146110ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a590613c2b565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516110d490613a52565b60006040518083038185875af1925050503d8060008114611111576040519150601f19603f3d011682016040523d82523d6000602084013e611116565b606091505b505090508061112457600080fd5b50565b61114283838360405180602001604052806000815250611a7a565b505050565b61114f61211d565b73ffffffffffffffffffffffffffffffffffffffff1661116d6115af565b73ffffffffffffffffffffffffffffffffffffffff16146111c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ba90613c2b565b60405180910390fd5b80600c8190555050565b601160019054906101000a900460ff1681565b6111e861211d565b73ffffffffffffffffffffffffffffffffffffffff166112066115af565b73ffffffffffffffffffffffffffffffffffffffff161461125c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125390613c2b565b60405180910390fd5b80600990805190602001906112729291906131b9565b5050565b601160009054906101000a900460ff1681565b600061129482612702565b600001519050919050565b600980546112ac90613f7b565b80601f01602080910402602001604051908101604052809291908181526020018280546112d890613f7b565b80156113255780601f106112fa57610100808354040283529160200191611325565b820191906000526020600020905b81548152906001019060200180831161130857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611395576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61140561211d565b73ffffffffffffffffffffffffffffffffffffffff166114236115af565b73ffffffffffffffffffffffffffffffffffffffff1614611479576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147090613c2b565b60405180910390fd5b6114836000612991565b565b61148d61211d565b73ffffffffffffffffffffffffffffffffffffffff166114ab6115af565b73ffffffffffffffffffffffffffffffffffffffff1614611501576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f890613c2b565b60405180910390fd5b60008211611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b90613c8b565b60405180910390fd5b600061154e610f7f565b9050600d54838261155f9190613db0565b11156115a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159790613c0b565b60405180910390fd5b6115aa8284612225565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115e161211d565b73ffffffffffffffffffffffffffffffffffffffff166115ff6115af565b73ffffffffffffffffffffffffffffffffffffffff1614611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c90613c2b565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b60606003805461168190613f7b565b80601f01602080910402602001604051908101604052809291908181526020018280546116ad90613f7b565b80156116fa5780601f106116cf576101008083540402835291602001916116fa565b820191906000526020600020905b8154815290600101906020018083116116dd57829003601f168201915b5050505050905090565b601160009054906101000a900460ff1615611754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174b90613b6b565b60405180910390fd5b600061175e610f7f565b9050600061177261176d61211d565b61132d565b9050600083116117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae90613beb565b60405180910390fd5b6010548311156117fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f390613bcb565b60405180910390fd5b600d54838361180b9190613db0565b111561184c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184390613c4b565b60405180910390fd5b600f54838261185b9190613db0565b111561189c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189390613c6b565b60405180910390fd5b82600c546118aa9190613e37565b3410156118ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e390613b4b565b60405180910390fd5b6118fd6118f761211d565b84612225565b505050565b61190a61211d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561196f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061197c61211d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a2961211d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a6e9190613ace565b60405180910390a35050565b611a8584848461224c565b611aa48373ffffffffffffffffffffffffffffffffffffffff16612a57565b8015611ab95750611ab784848484612a7a565b155b15611af0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600f5481565b600a8054611b0990613f7b565b80601f0160208091040260200160405190810160405280929190818152602001828054611b3590613f7b565b8015611b825780601f10611b5757610100808354040283529160200191611b82565b820191906000526020600020905b815481529060010190602001808311611b6557829003601f168201915b505050505081565b611b9261211d565b73ffffffffffffffffffffffffffffffffffffffff16611bb06115af565b73ffffffffffffffffffffffffffffffffffffffff1614611c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfd90613c2b565b60405180910390fd5b8060108190555050565b6060611c1b82612125565b611c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5190613b0b565b60405180910390fd5b60001515601160019054906101000a900460ff1615151415611d0857600b8054611c8390613f7b565b80601f0160208091040260200160405190810160405280929190818152602001828054611caf90613f7b565b8015611cfc5780601f10611cd157610100808354040283529160200191611cfc565b820191906000526020600020905b815481529060010190602001808311611cdf57829003601f168201915b50505050509050611d64565b6000611d12612bda565b90506000815111611d325760405180602001604052806000815250611d60565b80611d3c84612c6c565b600a604051602001611d5093929190613a21565b6040516020818303038152906040525b9150505b919050565b600d5481565b611d7761211d565b73ffffffffffffffffffffffffffffffffffffffff16611d956115af565b73ffffffffffffffffffffffffffffffffffffffff1614611deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de290613c2b565b60405180910390fd5b80600a9080519060200190611e019291906131b9565b5050565b611e0d61211d565b73ffffffffffffffffffffffffffffffffffffffff16611e2b6115af565b73ffffffffffffffffffffffffffffffffffffffff1614611e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7890613c2b565b60405180910390fd5b80600f8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60105481565b611f2d61211d565b73ffffffffffffffffffffffffffffffffffffffff16611f4b6115af565b73ffffffffffffffffffffffffffffffffffffffff1614611fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9890613c2b565b60405180910390fd5b80600b9080519060200190611fb79291906131b9565b5050565b611fc361211d565b73ffffffffffffffffffffffffffffffffffffffff16611fe16115af565b73ffffffffffffffffffffffffffffffffffffffff1614612037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202e90613c2b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209e90613b8b565b60405180910390fd5b6120b081612991565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081612130612243565b1115801561213f575060005482105b801561216c575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61223f828260405180602001604052806000815250612dcd565b5050565b60006001905090565b600061225782612702565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122c2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166122e361211d565b73ffffffffffffffffffffffffffffffffffffffff16148061231257506123118561230c61211d565b611e8b565b5b80612357575061232061211d565b73ffffffffffffffffffffffffffffffffffffffff1661233f84610b32565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612390576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123f7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124048585856001612ddf565b61241060008487612173565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561269057600054821461268f57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126fb8585856001612de5565b5050505050565b61270a61323f565b600082905080612718612243565b11158015612727575060005481105b1561295a576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161295857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461283c57809250505061298c565b5b60011561295757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461295257809250505061298c565b61283d565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612aa061211d565b8786866040518563ffffffff1660e01b8152600401612ac29493929190613a82565b602060405180830381600087803b158015612adc57600080fd5b505af1925050508015612b0d57506040513d601f19601f82011682018060405250810190612b0a9190613605565b60015b612b87573d8060008114612b3d576040519150601f19603f3d011682016040523d82523d6000602084013e612b42565b606091505b50600081511415612b7f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054612be990613f7b565b80601f0160208091040260200160405190810160405280929190818152602001828054612c1590613f7b565b8015612c625780601f10612c3757610100808354040283529160200191612c62565b820191906000526020600020905b815481529060010190602001808311612c4557829003601f168201915b5050505050905090565b60606000821415612cb4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612dc8565b600082905060005b60008214612ce6578080612ccf90613fde565b915050600a82612cdf9190613e06565b9150612cbc565b60008167ffffffffffffffff811115612d0257612d01614114565b5b6040519080825280601f01601f191660200182016040528015612d345781602001600182028036833780820191505090505b5090505b60008514612dc157600182612d4d9190613e91565b9150600a85612d5c9190614027565b6030612d689190613db0565b60f81b818381518110612d7e57612d7d6140e5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612dba9190613e06565b9450612d38565b8093505050505b919050565b612dda8383836001612deb565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612e58576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612e93576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ea06000868387612ddf565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561306a57506130698773ffffffffffffffffffffffffffffffffffffffff16612a57565b5b15613130575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130df6000888480600101955088612a7a565b613115576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561307057826000541461312b57600080fd5b61319c565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613131575b8160008190555050506131b26000868387612de5565b5050505050565b8280546131c590613f7b565b90600052602060002090601f0160209004810192826131e7576000855561322e565b82601f1061320057805160ff191683800117855561322e565b8280016001018555821561322e579182015b8281111561322d578251825591602001919060010190613212565b5b50905061323b9190613282565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561329b576000816000905550600101613283565b5090565b60006132b26132ad84613ceb565b613cc6565b9050828152602081018484840111156132ce576132cd614148565b5b6132d9848285613f39565b509392505050565b60006132f46132ef84613d1c565b613cc6565b9050828152602081018484840111156133105761330f614148565b5b61331b848285613f39565b509392505050565b60008135905061333281614418565b92915050565b6000813590506133478161442f565b92915050565b60008135905061335c81614446565b92915050565b60008151905061337181614446565b92915050565b600082601f83011261338c5761338b614143565b5b813561339c84826020860161329f565b91505092915050565b600082601f8301126133ba576133b9614143565b5b81356133ca8482602086016132e1565b91505092915050565b6000813590506133e28161445d565b92915050565b6000602082840312156133fe576133fd614152565b5b600061340c84828501613323565b91505092915050565b6000806040838503121561342c5761342b614152565b5b600061343a85828601613323565b925050602061344b85828601613323565b9150509250929050565b60008060006060848603121561346e5761346d614152565b5b600061347c86828701613323565b935050602061348d86828701613323565b925050604061349e868287016133d3565b9150509250925092565b600080600080608085870312156134c2576134c1614152565b5b60006134d087828801613323565b94505060206134e187828801613323565b93505060406134f2878288016133d3565b925050606085013567ffffffffffffffff8111156135135761351261414d565b5b61351f87828801613377565b91505092959194509250565b6000806040838503121561354257613541614152565b5b600061355085828601613323565b925050602061356185828601613338565b9150509250929050565b6000806040838503121561358257613581614152565b5b600061359085828601613323565b92505060206135a1858286016133d3565b9150509250929050565b6000602082840312156135c1576135c0614152565b5b60006135cf84828501613338565b91505092915050565b6000602082840312156135ee576135ed614152565b5b60006135fc8482850161334d565b91505092915050565b60006020828403121561361b5761361a614152565b5b600061362984828501613362565b91505092915050565b60006020828403121561364857613647614152565b5b600082013567ffffffffffffffff8111156136665761366561414d565b5b613672848285016133a5565b91505092915050565b60006020828403121561369157613690614152565b5b600061369f848285016133d3565b91505092915050565b600080604083850312156136bf576136be614152565b5b60006136cd858286016133d3565b92505060206136de85828601613323565b9150509250929050565b6136f181613ec5565b82525050565b61370081613ed7565b82525050565b600061371182613d62565b61371b8185613d78565b935061372b818560208601613f48565b61373481614157565b840191505092915050565b600061374a82613d6d565b6137548185613d94565b9350613764818560208601613f48565b61376d81614157565b840191505092915050565b600061378382613d6d565b61378d8185613da5565b935061379d818560208601613f48565b80840191505092915050565b600081546137b681613f7b565b6137c08186613da5565b945060018216600081146137db57600181146137ec5761381f565b60ff1983168652818601935061381f565b6137f585613d4d565b60005b83811015613817578154818901526001820191506020810190506137f8565b838801955050505b50505092915050565b6000613835603083613d94565b915061384082614168565b604082019050919050565b6000613858601d83613d94565b9150613863826141b7565b602082019050919050565b600061387b601783613d94565b9150613886826141e0565b602082019050919050565b600061389e601c83613d94565b91506138a982614209565b602082019050919050565b60006138c1602683613d94565b91506138cc82614232565b604082019050919050565b60006138e4602183613d94565b91506138ef82614281565b604082019050919050565b6000613907602483613d94565b9150613912826142d0565b604082019050919050565b600061392a602083613d94565b91506139358261431f565b602082019050919050565b600061394d601683613d94565b915061395882614348565b602082019050919050565b6000613970602083613d94565b915061397b82614371565b602082019050919050565b6000613993600f83613d94565b915061399e8261439a565b602082019050919050565b60006139b6602083613d94565b91506139c1826143c3565b602082019050919050565b60006139d9600083613d89565b91506139e4826143ec565b600082019050919050565b60006139fc601b83613d94565b9150613a07826143ef565b602082019050919050565b613a1b81613f2f565b82525050565b6000613a2d8286613778565b9150613a398285613778565b9150613a4582846137a9565b9150819050949350505050565b6000613a5d826139cc565b9150819050919050565b6000602082019050613a7c60008301846136e8565b92915050565b6000608082019050613a9760008301876136e8565b613aa460208301866136e8565b613ab16040830185613a12565b8181036060830152613ac38184613706565b905095945050505050565b6000602082019050613ae360008301846136f7565b92915050565b60006020820190508181036000830152613b03818461373f565b905092915050565b60006020820190508181036000830152613b2481613828565b9050919050565b60006020820190508181036000830152613b448161384b565b9050919050565b60006020820190508181036000830152613b648161386e565b9050919050565b60006020820190508181036000830152613b8481613891565b9050919050565b60006020820190508181036000830152613ba4816138b4565b9050919050565b60006020820190508181036000830152613bc4816138d7565b9050919050565b60006020820190508181036000830152613be4816138fa565b9050919050565b60006020820190508181036000830152613c048161391d565b9050919050565b60006020820190508181036000830152613c2481613940565b9050919050565b60006020820190508181036000830152613c4481613963565b9050919050565b60006020820190508181036000830152613c6481613986565b9050919050565b60006020820190508181036000830152613c84816139a9565b9050919050565b60006020820190508181036000830152613ca4816139ef565b9050919050565b6000602082019050613cc06000830184613a12565b92915050565b6000613cd0613ce1565b9050613cdc8282613fad565b919050565b6000604051905090565b600067ffffffffffffffff821115613d0657613d05614114565b5b613d0f82614157565b9050602081019050919050565b600067ffffffffffffffff821115613d3757613d36614114565b5b613d4082614157565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613dbb82613f2f565b9150613dc683613f2f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dfb57613dfa614058565b5b828201905092915050565b6000613e1182613f2f565b9150613e1c83613f2f565b925082613e2c57613e2b614087565b5b828204905092915050565b6000613e4282613f2f565b9150613e4d83613f2f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e8657613e85614058565b5b828202905092915050565b6000613e9c82613f2f565b9150613ea783613f2f565b925082821015613eba57613eb9614058565b5b828203905092915050565b6000613ed082613f0f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f66578082015181840152602081019050613f4b565b83811115613f75576000848401525b50505050565b60006002820490506001821680613f9357607f821691505b60208210811415613fa757613fa66140b6565b5b50919050565b613fb682614157565b810181811067ffffffffffffffff82111715613fd557613fd4614114565b5b80604052505050565b6000613fe982613f2f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561401c5761401b614058565b5b600182019050919050565b600061403282613f2f565b915061403d83613f2f565b92508261404d5761404c614087565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f544d583a206d6178206d696e7420706572205478206578636565646564000000600082015250565b7f544d583a20696e73756666696369656e742066756e6473000000000000000000600082015250565b7f544d583a206f6f707320636f6e74726163742069732070617573656400000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f544d583a2057686974656c697374204d6178537570706c79206578636565646560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b7f544d583a206d6178206d696e7420616d6f756e7420706572207478206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f544d583a206e65656420746f206d696e74206174206c656173742031204e4654600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f544d583a20576520536f6c646f75740000000000000000000000000000000000600082015250565b7f544d583a204d6178204e4654205065722057616c6c6574206578636565646564600082015250565b50565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b61442181613ec5565b811461442c57600080fd5b50565b61443881613ed7565b811461444357600080fd5b50565b61444f81613ee3565b811461445a57600080fd5b50565b61446681613f2f565b811461447157600080fd5b5056fea264697066735822122027019e3d401dab8a0cb5d832b88f9d64ed957b18d60e9e23c571650960846cc964736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string):
Arg [1] : _initNotRevealedUri (string):

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

51925:4146:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34036:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55828:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37149:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38652:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52073:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38215:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53447:537;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52106:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55264:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33285:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55366:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39517:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52181:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55910:158;;;:::i;:::-;;39758:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55176:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52338:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55468:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52307:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36957:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52005:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34405:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11794:103;;;;;;;;;;;;;:::i;:::-;;54053:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11143:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54892:78;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37318:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52830:607;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38928:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40014:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52217:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52031:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55076:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54372:498;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52145:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55572:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54978:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39286:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52254:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55702:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12052:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34036:305;34138:4;34190:25;34175:40;;;:11;:40;;;;:105;;;;34247:33;34232:48;;;:11;:48;;;;34175:105;:158;;;;34297:36;34321:11;34297:23;:36::i;:::-;34175:158;34155:178;;34036:305;;;:::o;55828:73::-;11374:12;:10;:12::i;:::-;11363:23;;:7;:5;:7::i;:::-;:23;;;11355:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55889:6:::1;55880;;:15;;;;;;;;;;;;;;;;;;55828:73:::0;:::o;37149:100::-;37203:13;37236:5;37229:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37149:100;:::o;38652:204::-;38720:7;38745:16;38753:7;38745;:16::i;:::-;38740:64;;38770:34;;;;;;;;;;;;;;38740:64;38824:15;:24;38840:7;38824:24;;;;;;;;;;;;;;;;;;;;;38817:31;;38652:204;;;:::o;52073:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38215:371::-;38288:13;38304:24;38320:7;38304:15;:24::i;:::-;38288:40;;38349:5;38343:11;;:2;:11;;;38339:48;;;38363:24;;;;;;;;;;;;;;38339:48;38420:5;38404:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;38430:37;38447:5;38454:12;:10;:12::i;:::-;38430:16;:37::i;:::-;38429:38;38404:63;38400:138;;;38491:35;;;;;;;;;;;;;;38400:138;38550:28;38559:2;38563:7;38572:5;38550:8;:28::i;:::-;38277:309;38215:371;;:::o;53447:537::-;53513:6;;;;;;;;;;;53512:7;53504:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;53559:14;53576:13;:11;:13::i;:::-;53559:30;;53596:23;53622;53632:12;:10;:12::i;:::-;53622:9;:23::i;:::-;53596:49;;53688:1;53678:6;53660:15;:24;;;;:::i;:::-;:29;;53652:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;53750:1;53741:6;:10;53733:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;53813:1;53803:6;:11;;53795:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;53882:10;;53872:6;53863;:15;;;;:::i;:::-;:29;;53855:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;53941:31;53951:12;:10;:12::i;:::-;53965:6;53941:9;:31::i;:::-;53497:487;;53447:537;:::o;52106:34::-;;;;:::o;55264:94::-;11374:12;:10;:12::i;:::-;11363:23;;:7;:5;:7::i;:::-;:23;;;11355:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55342:10:::1;55330:9;:22;;;;55264:94:::0;:::o;33285:303::-;33329:7;33554:15;:13;:15::i;:::-;33539:12;;33523:13;;:28;:46;33516:53;;33285:303;:::o;55366:96::-;11374:12;:10;:12::i;:::-;11363:23;;:7;:5;:7::i;:::-;:23;;;11355:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55446:10:::1;55433;:23;;;;55366:96:::0;:::o;39517:170::-;39651:28;39661:4;39667:2;39671:7;39651:9;:28::i;:::-;39517:170;;;:::o;52181:31::-;;;;:::o;55910:158::-;11374:12;:10;:12::i;:::-;11363:23;;:7;:5;:7::i;:::-;:23;;;11355:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55963:12:::1;55989:10;55981:24;;56013:21;55981:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55962:77;;;56054:7;56046:16;;;::::0;::::1;;55955:113;55910:158::o:0;39758:185::-;39896:39;39913:4;39919:2;39923:7;39896:39;;;;;;;;;;;;:16;:39::i;:::-;39758:185;;;:::o;55176:80::-;11374:12;:10;:12::i;:::-;11363:23;;:7;:5;:7::i;:::-;:23;;;11355:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55242:8:::1;55235:4;:15;;;;55176:80:::0;:::o;52338:28::-;;;;;;;;;;;;;:::o;55468:98::-;11374:12;:10;:12::i;:::-;11363:23;;:7;:5;:7::i;:::-;:23;;;11355:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55549:11:::1;55539:7;:21;;;;;;;;;;;;:::i;:::-;;55468:98:::0;:::o;52307:26::-;;;;;;;;;;;;;:::o;36957:125::-;37021:7;37048:21;37061:7;37048:12;:21::i;:::-;:26;;;37041:33;;36957:125;;;:::o;52005:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34405:206::-;34469:7;34510:1;34493:19;;:5;:19;;;34489:60;;;34521:28;;;;;;;;;;;;;;34489:60;34575:12;:19;34588:5;34575:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;34567:36;;34560:43;;34405:206;;;:::o;11794:103::-;11374:12;:10;:12::i;:::-;11363:23;;:7;:5;:7::i;:::-;:23;;;11355:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11859:30:::1;11886:1;11859:18;:30::i;:::-;11794:103::o:0;54053:305::-;11374:12;:10;:12::i;:::-;11363:23;;:7;:5;:7::i;:::-;:23;;;11355:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54155:1:::1;54141:11;:15;54133:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;54195:14;54212:13;:11;:13::i;:::-;54195:30;;54264:9;;54249:11;54240:6;:20;;;;:::i;:::-;:33;;54232:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54311:35;54321:11;54334;54311:9;:35::i;:::-;54126:232;54053:305:::0;;:::o;11143:87::-;11189:7;11216:6;;;;;;;;;;;11209:13;;11143:87;:::o;54892:78::-;11374:12;:10;:12::i;:::-;11363:23;;:7;:5;:7::i;:::-;:23;;;11355:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54958:6:::1;54947:8;;:17;;;;;;;;;;;;;;;;;;54892:78:::0;:::o;37318:104::-;37374:13;37407:7;37400:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37318:104;:::o;52830:607::-;52891:6;;;;;;;;;;;52890:7;52882:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;52937:14;52954:13;:11;:13::i;:::-;52937:30;;52974:23;53000;53010:12;:10;:12::i;:::-;53000:9;:23::i;:::-;52974:49;;53047:1;53038:6;:10;53030:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;53110:8;;53100:6;:18;;53092:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;53193:9;;53183:6;53174;:15;;;;:::i;:::-;:28;;53166:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;53265:12;;53255:6;53237:15;:24;;;;:::i;:::-;:40;;53229:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;53349:6;53342:4;;:13;;;;:::i;:::-;53329:9;:26;;53321:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;53394:31;53404:12;:10;:12::i;:::-;53418:6;53394:9;:31::i;:::-;52875:562;;52830:607;:::o;38928:287::-;39039:12;:10;:12::i;:::-;39027:24;;:8;:24;;;39023:54;;;39060:17;;;;;;;;;;;;;;39023:54;39135:8;39090:18;:32;39109:12;:10;:12::i;:::-;39090:32;;;;;;;;;;;;;;;:42;39123:8;39090:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;39188:8;39159:48;;39174:12;:10;:12::i;:::-;39159:48;;;39198:8;39159:48;;;;;;:::i;:::-;;;;;;;;38928:287;;:::o;40014:369::-;40181:28;40191:4;40197:2;40201:7;40181:9;:28::i;:::-;40224:15;:2;:13;;;:15::i;:::-;:76;;;;;40244:56;40275:4;40281:2;40285:7;40294:5;40244:30;:56::i;:::-;40243:57;40224:76;40220:156;;;40324:40;;;;;;;;;;;;;;40220:156;40014:369;;;;:::o;52217:32::-;;;;:::o;52031:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55076:90::-;11374:12;:10;:12::i;:::-;11363:23;;:7;:5;:7::i;:::-;:23;;;11355:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55151:9:::1;55140:8;:20;;;;55076:90:::0;:::o;54372:498::-;54470:13;54511:16;54519:7;54511;:16::i;:::-;54495:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;54621:5;54609:17;;:8;;;;;;;;;;;:17;;;54606:62;;;54646:14;54639:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54606:62;54676:28;54707:10;:8;:10::i;:::-;54676:41;;54762:1;54737:14;54731:28;:32;:133;;;;;;;;;;;;;;;;;54799:14;54815:18;:7;:16;:18::i;:::-;54835:13;54782:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54731:133;54724:140;;;54372:498;;;;:::o;52145:31::-;;;;:::o;55572:122::-;11374:12;:10;:12::i;:::-;11363:23;;:7;:5;:7::i;:::-;:23;;;11355:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55671:17:::1;55655:13;:33;;;;;;;;;;;;:::i;:::-;;55572:122:::0;:::o;54978:92::-;11374:12;:10;:12::i;:::-;11363:23;;:7;:5;:7::i;:::-;:23;;;11355:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55058:6:::1;55043:12;:21;;;;54978:92:::0;:::o;39286:164::-;39383:4;39407:18;:25;39426:5;39407:25;;;;;;;;;;;;;;;:35;39433:8;39407:35;;;;;;;;;;;;;;;;;;;;;;;;;39400:42;;39286:164;;;;:::o;52254:28::-;;;;:::o;55702:120::-;11374:12;:10;:12::i;:::-;11363:23;;:7;:5;:7::i;:::-;:23;;;11355:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55801:15:::1;55784:14;:32;;;;;;;;;;;;:::i;:::-;;55702:120:::0;:::o;12052:201::-;11374:12;:10;:12::i;:::-;11363:23;;:7;:5;:7::i;:::-;:23;;;11355:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12161:1:::1;12141:22;;:8;:22;;;;12133:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12217:28;12236:8;12217:18;:28::i;:::-;12052:201:::0;:::o;23927:157::-;24012:4;24051:25;24036:40;;;:11;:40;;;;24029:47;;23927:157;;;:::o;9867:98::-;9920:7;9947:10;9940:17;;9867:98;:::o;40638:187::-;40695:4;40738:7;40719:15;:13;:15::i;:::-;:26;;:53;;;;;40759:13;;40749:7;:23;40719:53;:98;;;;;40790:11;:20;40802:7;40790:20;;;;;;;;;;;:27;;;;;;;;;;;;40789:28;40719:98;40712:105;;40638:187;;;:::o;48808:196::-;48950:2;48923:15;:24;48939:7;48923:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;48988:7;48984:2;48968:28;;48977:5;48968:28;;;;;;;;;;;;48808:196;;;:::o;40833:104::-;40902:27;40912:2;40916:8;40902:27;;;;;;;;;;;;:9;:27::i;:::-;40833:104;;:::o;52710:101::-;52775:7;52802:1;52795:8;;52710:101;:::o;43751:2130::-;43866:35;43904:21;43917:7;43904:12;:21::i;:::-;43866:59;;43964:4;43942:26;;:13;:18;;;:26;;;43938:67;;43977:28;;;;;;;;;;;;;;43938:67;44018:22;44060:4;44044:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;44081:36;44098:4;44104:12;:10;:12::i;:::-;44081:16;:36::i;:::-;44044:73;:126;;;;44158:12;:10;:12::i;:::-;44134:36;;:20;44146:7;44134:11;:20::i;:::-;:36;;;44044:126;44018:153;;44189:17;44184:66;;44215:35;;;;;;;;;;;;;;44184:66;44279:1;44265:16;;:2;:16;;;44261:52;;;44290:23;;;;;;;;;;;;;;44261:52;44326:43;44348:4;44354:2;44358:7;44367:1;44326:21;:43::i;:::-;44434:35;44451:1;44455:7;44464:4;44434:8;:35::i;:::-;44795:1;44765:12;:18;44778:4;44765:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44839:1;44811:12;:16;44824:2;44811:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44857:31;44891:11;:20;44903:7;44891:20;;;;;;;;;;;44857:54;;44942:2;44926:8;:13;;;:18;;;;;;;;;;;;;;;;;;44992:15;44959:8;:23;;;:49;;;;;;;;;;;;;;;;;;45260:19;45292:1;45282:7;:11;45260:33;;45308:31;45342:11;:24;45354:11;45342:24;;;;;;;;;;;45308:58;;45410:1;45385:27;;:8;:13;;;;;;;;;;;;:27;;;45381:384;;;45595:13;;45580:11;:28;45576:174;;45649:4;45633:8;:13;;;:20;;;;;;;;;;;;;;;;;;45702:13;:28;;;45676:8;:23;;;:54;;;;;;;;;;;;;;;;;;45576:174;45381:384;44740:1036;;;45812:7;45808:2;45793:27;;45802:4;45793:27;;;;;;;;;;;;45831:42;45852:4;45858:2;45862:7;45871:1;45831:20;:42::i;:::-;43855:2026;;43751:2130;;;:::o;35786:1109::-;35848:21;;:::i;:::-;35882:12;35897:7;35882:22;;35965:4;35946:15;:13;:15::i;:::-;:23;;:47;;;;;35980:13;;35973:4;:20;35946:47;35942:886;;;36014:31;36048:11;:17;36060:4;36048:17;;;;;;;;;;;36014:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36089:9;:16;;;36084:729;;36160:1;36134:28;;:9;:14;;;:28;;;36130:101;;36198:9;36191:16;;;;;;36130:101;36533:261;36540:4;36533:261;;;36573:6;;;;;;;;36618:11;:17;36630:4;36618:17;;;;;;;;;;;36606:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36692:1;36666:28;;:9;:14;;;:28;;;36662:109;;36734:9;36727:16;;;;;;36662:109;36533:261;;;36084:729;35995:833;35942:886;36856:31;;;;;;;;;;;;;;35786:1109;;;;:::o;12413:191::-;12487:16;12506:6;;;;;;;;;;;12487:25;;12532:8;12523:6;;:17;;;;;;;;;;;;;;;;;;12587:8;12556:40;;12577:8;12556:40;;;;;;;;;;;;12476:128;12413:191;:::o;13844:326::-;13904:4;14161:1;14139:7;:19;;;:23;14132:30;;13844:326;;;:::o;49496:667::-;49659:4;49696:2;49680:36;;;49717:12;:10;:12::i;:::-;49731:4;49737:7;49746:5;49680:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;49676:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49931:1;49914:6;:13;:18;49910:235;;;49960:40;;;;;;;;;;;;;;49910:235;50103:6;50097:13;50088:6;50084:2;50080:15;50073:38;49676:480;49809:45;;;49799:55;;;:6;:55;;;;49792:62;;;49496:667;;;;;;:::o;52600:102::-;52660:13;52689:7;52682:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52600:102;:::o;7429:723::-;7485:13;7715:1;7706:5;:10;7702:53;;;7733:10;;;;;;;;;;;;;;;;;;;;;7702:53;7765:12;7780:5;7765:20;;7796:14;7821:78;7836:1;7828:4;:9;7821:78;;7854:8;;;;;:::i;:::-;;;;7885:2;7877:10;;;;;:::i;:::-;;;7821:78;;;7909:19;7941:6;7931:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7909:39;;7959:154;7975:1;7966:5;:10;7959:154;;8003:1;7993:11;;;;;:::i;:::-;;;8070:2;8062:5;:10;;;;:::i;:::-;8049:2;:24;;;;:::i;:::-;8036:39;;8019:6;8026;8019:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8099:2;8090:11;;;;;:::i;:::-;;;7959:154;;;8137:6;8123:21;;;;;7429:723;;;;:::o;41300:163::-;41423:32;41429:2;41433:8;41443:5;41450:4;41423:5;:32::i;:::-;41300:163;;;:::o;50811:159::-;;;;;:::o;51629:158::-;;;;;:::o;41722:1775::-;41861:20;41884:13;;41861:36;;41926:1;41912:16;;:2;:16;;;41908:48;;;41937:19;;;;;;;;;;;;;;41908:48;41983:1;41971:8;:13;41967:44;;;41993:18;;;;;;;;;;;;;;41967:44;42024:61;42054:1;42058:2;42062:12;42076:8;42024:21;:61::i;:::-;42397:8;42362:12;:16;42375:2;42362:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42461:8;42421:12;:16;42434:2;42421:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42520:2;42487:11;:25;42499:12;42487:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;42587:15;42537:11;:25;42549:12;42537:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;42620:20;42643:12;42620:35;;42670:11;42699:8;42684:12;:23;42670:37;;42728:4;:23;;;;;42736:15;:2;:13;;;:15::i;:::-;42728:23;42724:641;;;42772:314;42828:12;42824:2;42803:38;;42820:1;42803:38;;;;;;;;;;;;42869:69;42908:1;42912:2;42916:14;;;;;;42932:5;42869:30;:69::i;:::-;42864:174;;42974:40;;;;;;;;;;;;;;42864:174;43081:3;43065:12;:19;;42772:314;;43167:12;43150:13;;:29;43146:43;;43181:8;;;43146:43;42724:641;;;43230:120;43286:14;;;;;;43282:2;43261:40;;43278:1;43261:40;;;;;;;;;;;;43345:3;43329:12;:19;;43230:120;;42724:641;43395:12;43379:13;:28;;;;42337:1082;;43429:60;43458:1;43462:2;43466:12;43480:8;43429:20;:60::i;:::-;41850:1647;41722:1775;;;;:::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:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:118::-;8054:24;8072:5;8054:24;:::i;:::-;8049:3;8042:37;7967:118;;:::o;8091:109::-;8172:21;8187:5;8172:21;:::i;:::-;8167:3;8160:34;8091:109;;:::o;8206:360::-;8292:3;8320:38;8352:5;8320:38;:::i;:::-;8374:70;8437:6;8432:3;8374:70;:::i;:::-;8367:77;;8453:52;8498:6;8493:3;8486:4;8479:5;8475:16;8453:52;:::i;:::-;8530:29;8552:6;8530:29;:::i;:::-;8525:3;8521:39;8514:46;;8296:270;8206:360;;;;:::o;8572:364::-;8660:3;8688:39;8721:5;8688:39;:::i;:::-;8743:71;8807:6;8802:3;8743:71;:::i;:::-;8736:78;;8823:52;8868:6;8863:3;8856:4;8849:5;8845:16;8823:52;:::i;:::-;8900:29;8922:6;8900:29;:::i;:::-;8895:3;8891:39;8884:46;;8664:272;8572:364;;;;:::o;8942:377::-;9048:3;9076:39;9109:5;9076:39;:::i;:::-;9131:89;9213:6;9208:3;9131:89;:::i;:::-;9124:96;;9229:52;9274:6;9269:3;9262:4;9255:5;9251:16;9229:52;:::i;:::-;9306:6;9301:3;9297:16;9290:23;;9052:267;8942:377;;;;:::o;9349:845::-;9452:3;9489:5;9483:12;9518:36;9544:9;9518:36;:::i;:::-;9570:89;9652:6;9647:3;9570:89;:::i;:::-;9563:96;;9690:1;9679:9;9675:17;9706:1;9701:137;;;;9852:1;9847:341;;;;9668:520;;9701:137;9785:4;9781:9;9770;9766:25;9761:3;9754:38;9821:6;9816:3;9812:16;9805:23;;9701:137;;9847:341;9914:38;9946:5;9914:38;:::i;:::-;9974:1;9988:154;10002:6;9999:1;9996:13;9988:154;;;10076:7;10070:14;10066:1;10061:3;10057:11;10050:35;10126:1;10117:7;10113:15;10102:26;;10024:4;10021:1;10017:12;10012:17;;9988:154;;;10171:6;10166:3;10162:16;10155:23;;9854:334;;9668:520;;9456:738;;9349:845;;;;:::o;10200:366::-;10342:3;10363:67;10427:2;10422:3;10363:67;:::i;:::-;10356:74;;10439:93;10528:3;10439:93;:::i;:::-;10557:2;10552:3;10548:12;10541:19;;10200:366;;;:::o;10572:::-;10714:3;10735:67;10799:2;10794:3;10735:67;:::i;:::-;10728:74;;10811:93;10900:3;10811:93;:::i;:::-;10929:2;10924:3;10920:12;10913:19;;10572:366;;;:::o;10944:::-;11086:3;11107:67;11171:2;11166:3;11107:67;:::i;:::-;11100:74;;11183:93;11272:3;11183:93;:::i;:::-;11301:2;11296:3;11292:12;11285:19;;10944:366;;;:::o;11316:::-;11458:3;11479:67;11543:2;11538:3;11479:67;:::i;:::-;11472:74;;11555:93;11644:3;11555:93;:::i;:::-;11673:2;11668:3;11664:12;11657:19;;11316:366;;;:::o;11688:::-;11830:3;11851:67;11915:2;11910:3;11851:67;:::i;:::-;11844:74;;11927:93;12016:3;11927:93;:::i;:::-;12045:2;12040:3;12036:12;12029:19;;11688:366;;;:::o;12060:::-;12202:3;12223:67;12287:2;12282:3;12223:67;:::i;:::-;12216:74;;12299:93;12388:3;12299:93;:::i;:::-;12417:2;12412:3;12408:12;12401:19;;12060:366;;;:::o;12432:::-;12574:3;12595:67;12659:2;12654:3;12595:67;:::i;:::-;12588:74;;12671:93;12760:3;12671:93;:::i;:::-;12789:2;12784:3;12780:12;12773:19;;12432:366;;;:::o;12804:::-;12946:3;12967:67;13031:2;13026:3;12967:67;:::i;:::-;12960:74;;13043:93;13132:3;13043:93;:::i;:::-;13161:2;13156:3;13152:12;13145:19;;12804:366;;;:::o;13176:::-;13318:3;13339:67;13403:2;13398:3;13339:67;:::i;:::-;13332:74;;13415:93;13504:3;13415:93;:::i;:::-;13533:2;13528:3;13524:12;13517:19;;13176:366;;;:::o;13548:::-;13690:3;13711:67;13775:2;13770:3;13711:67;:::i;:::-;13704:74;;13787:93;13876:3;13787:93;:::i;:::-;13905:2;13900:3;13896:12;13889:19;;13548:366;;;:::o;13920:::-;14062:3;14083:67;14147:2;14142:3;14083:67;:::i;:::-;14076:74;;14159:93;14248:3;14159:93;:::i;:::-;14277:2;14272:3;14268:12;14261:19;;13920:366;;;:::o;14292:::-;14434:3;14455:67;14519:2;14514:3;14455:67;:::i;:::-;14448:74;;14531:93;14620:3;14531:93;:::i;:::-;14649:2;14644:3;14640:12;14633:19;;14292:366;;;:::o;14664:398::-;14823:3;14844:83;14925:1;14920:3;14844:83;:::i;:::-;14837:90;;14936:93;15025:3;14936:93;:::i;:::-;15054:1;15049:3;15045:11;15038:18;;14664:398;;;:::o;15068:366::-;15210:3;15231:67;15295:2;15290:3;15231:67;:::i;:::-;15224:74;;15307:93;15396:3;15307:93;:::i;:::-;15425:2;15420:3;15416:12;15409:19;;15068:366;;;:::o;15440:118::-;15527:24;15545:5;15527:24;:::i;:::-;15522:3;15515:37;15440:118;;:::o;15564:589::-;15789:3;15811:95;15902:3;15893:6;15811:95;:::i;:::-;15804:102;;15923:95;16014:3;16005:6;15923:95;:::i;:::-;15916:102;;16035:92;16123:3;16114:6;16035:92;:::i;:::-;16028:99;;16144:3;16137:10;;15564:589;;;;;;:::o;16159:379::-;16343:3;16365:147;16508:3;16365:147;:::i;:::-;16358:154;;16529:3;16522:10;;16159:379;;;:::o;16544:222::-;16637:4;16675:2;16664:9;16660:18;16652:26;;16688:71;16756:1;16745:9;16741:17;16732:6;16688:71;:::i;:::-;16544:222;;;;:::o;16772:640::-;16967:4;17005:3;16994:9;16990:19;16982:27;;17019:71;17087:1;17076:9;17072:17;17063:6;17019:71;:::i;:::-;17100:72;17168:2;17157:9;17153:18;17144:6;17100:72;:::i;:::-;17182;17250:2;17239:9;17235:18;17226:6;17182:72;:::i;:::-;17301:9;17295:4;17291:20;17286:2;17275:9;17271:18;17264:48;17329:76;17400:4;17391:6;17329:76;:::i;:::-;17321:84;;16772:640;;;;;;;:::o;17418:210::-;17505:4;17543:2;17532:9;17528:18;17520:26;;17556:65;17618:1;17607:9;17603:17;17594:6;17556:65;:::i;:::-;17418:210;;;;:::o;17634:313::-;17747:4;17785:2;17774:9;17770:18;17762:26;;17834:9;17828:4;17824:20;17820:1;17809:9;17805:17;17798:47;17862:78;17935:4;17926:6;17862:78;:::i;:::-;17854:86;;17634:313;;;;:::o;17953:419::-;18119:4;18157:2;18146:9;18142:18;18134:26;;18206:9;18200:4;18196:20;18192:1;18181:9;18177:17;18170:47;18234:131;18360:4;18234:131;:::i;:::-;18226:139;;17953:419;;;:::o;18378:::-;18544:4;18582:2;18571:9;18567:18;18559:26;;18631:9;18625:4;18621:20;18617:1;18606:9;18602:17;18595:47;18659:131;18785:4;18659:131;:::i;:::-;18651:139;;18378:419;;;:::o;18803:::-;18969:4;19007:2;18996:9;18992:18;18984:26;;19056:9;19050:4;19046:20;19042:1;19031:9;19027:17;19020:47;19084:131;19210:4;19084:131;:::i;:::-;19076:139;;18803:419;;;:::o;19228:::-;19394:4;19432:2;19421:9;19417:18;19409:26;;19481:9;19475:4;19471:20;19467:1;19456:9;19452:17;19445:47;19509:131;19635:4;19509:131;:::i;:::-;19501:139;;19228:419;;;:::o;19653:::-;19819:4;19857:2;19846:9;19842:18;19834:26;;19906:9;19900:4;19896:20;19892:1;19881:9;19877:17;19870:47;19934:131;20060:4;19934:131;:::i;:::-;19926:139;;19653:419;;;:::o;20078:::-;20244:4;20282:2;20271:9;20267:18;20259:26;;20331:9;20325:4;20321:20;20317:1;20306:9;20302:17;20295:47;20359:131;20485:4;20359:131;:::i;:::-;20351:139;;20078:419;;;:::o;20503:::-;20669:4;20707:2;20696:9;20692:18;20684:26;;20756:9;20750:4;20746:20;20742:1;20731:9;20727:17;20720:47;20784:131;20910:4;20784:131;:::i;:::-;20776:139;;20503:419;;;:::o;20928:::-;21094:4;21132:2;21121:9;21117:18;21109:26;;21181:9;21175:4;21171:20;21167:1;21156:9;21152:17;21145:47;21209:131;21335:4;21209:131;:::i;:::-;21201:139;;20928:419;;;:::o;21353:::-;21519:4;21557:2;21546:9;21542:18;21534:26;;21606:9;21600:4;21596:20;21592:1;21581:9;21577:17;21570:47;21634:131;21760:4;21634:131;:::i;:::-;21626:139;;21353:419;;;:::o;21778:::-;21944:4;21982:2;21971:9;21967:18;21959:26;;22031:9;22025:4;22021:20;22017:1;22006:9;22002:17;21995:47;22059:131;22185:4;22059:131;:::i;:::-;22051:139;;21778:419;;;:::o;22203:::-;22369:4;22407:2;22396:9;22392:18;22384:26;;22456:9;22450:4;22446:20;22442:1;22431:9;22427:17;22420:47;22484:131;22610:4;22484:131;:::i;:::-;22476:139;;22203:419;;;:::o;22628:::-;22794:4;22832:2;22821:9;22817:18;22809:26;;22881:9;22875:4;22871:20;22867:1;22856:9;22852:17;22845:47;22909:131;23035:4;22909:131;:::i;:::-;22901:139;;22628:419;;;:::o;23053:::-;23219:4;23257:2;23246:9;23242:18;23234:26;;23306:9;23300:4;23296:20;23292:1;23281:9;23277:17;23270:47;23334:131;23460:4;23334:131;:::i;:::-;23326:139;;23053:419;;;:::o;23478:222::-;23571:4;23609:2;23598:9;23594:18;23586:26;;23622:71;23690:1;23679:9;23675:17;23666:6;23622:71;:::i;:::-;23478:222;;;;:::o;23706:129::-;23740:6;23767:20;;:::i;:::-;23757:30;;23796:33;23824:4;23816:6;23796:33;:::i;:::-;23706:129;;;:::o;23841:75::-;23874:6;23907:2;23901:9;23891:19;;23841:75;:::o;23922:307::-;23983:4;24073:18;24065:6;24062:30;24059:56;;;24095:18;;:::i;:::-;24059:56;24133:29;24155:6;24133:29;:::i;:::-;24125:37;;24217:4;24211;24207:15;24199:23;;23922:307;;;:::o;24235:308::-;24297:4;24387:18;24379:6;24376:30;24373:56;;;24409:18;;:::i;:::-;24373:56;24447:29;24469:6;24447:29;:::i;:::-;24439:37;;24531:4;24525;24521:15;24513:23;;24235:308;;;:::o;24549:141::-;24598:4;24621:3;24613:11;;24644:3;24641:1;24634:14;24678:4;24675:1;24665:18;24657:26;;24549:141;;;:::o;24696:98::-;24747:6;24781:5;24775:12;24765:22;;24696:98;;;:::o;24800:99::-;24852:6;24886:5;24880:12;24870:22;;24800:99;;;:::o;24905:168::-;24988:11;25022:6;25017:3;25010:19;25062:4;25057:3;25053:14;25038:29;;24905:168;;;;:::o;25079:147::-;25180:11;25217:3;25202:18;;25079:147;;;;:::o;25232:169::-;25316:11;25350:6;25345:3;25338:19;25390:4;25385:3;25381:14;25366:29;;25232:169;;;;:::o;25407:148::-;25509:11;25546:3;25531:18;;25407:148;;;;:::o;25561:305::-;25601:3;25620:20;25638:1;25620:20;:::i;:::-;25615:25;;25654:20;25672:1;25654:20;:::i;:::-;25649:25;;25808:1;25740:66;25736:74;25733:1;25730:81;25727:107;;;25814:18;;:::i;:::-;25727:107;25858:1;25855;25851:9;25844:16;;25561:305;;;;:::o;25872:185::-;25912:1;25929:20;25947:1;25929:20;:::i;:::-;25924:25;;25963:20;25981:1;25963:20;:::i;:::-;25958:25;;26002:1;25992:35;;26007:18;;:::i;:::-;25992:35;26049:1;26046;26042:9;26037:14;;25872:185;;;;:::o;26063:348::-;26103:7;26126:20;26144:1;26126:20;:::i;:::-;26121:25;;26160:20;26178:1;26160:20;:::i;:::-;26155:25;;26348:1;26280:66;26276:74;26273:1;26270:81;26265:1;26258:9;26251:17;26247:105;26244:131;;;26355:18;;:::i;:::-;26244:131;26403:1;26400;26396:9;26385:20;;26063:348;;;;:::o;26417:191::-;26457:4;26477:20;26495:1;26477:20;:::i;:::-;26472:25;;26511:20;26529:1;26511:20;:::i;:::-;26506:25;;26550:1;26547;26544:8;26541:34;;;26555:18;;:::i;:::-;26541:34;26600:1;26597;26593:9;26585:17;;26417:191;;;;:::o;26614:96::-;26651:7;26680:24;26698:5;26680:24;:::i;:::-;26669:35;;26614:96;;;:::o;26716:90::-;26750:7;26793:5;26786:13;26779:21;26768:32;;26716:90;;;:::o;26812:149::-;26848:7;26888:66;26881:5;26877:78;26866:89;;26812:149;;;:::o;26967:126::-;27004:7;27044:42;27037:5;27033:54;27022:65;;26967:126;;;:::o;27099:77::-;27136:7;27165:5;27154:16;;27099:77;;;:::o;27182:154::-;27266:6;27261:3;27256;27243:30;27328:1;27319:6;27314:3;27310:16;27303:27;27182:154;;;:::o;27342:307::-;27410:1;27420:113;27434:6;27431:1;27428:13;27420:113;;;27519:1;27514:3;27510:11;27504:18;27500:1;27495:3;27491:11;27484:39;27456:2;27453:1;27449:10;27444:15;;27420:113;;;27551:6;27548:1;27545:13;27542:101;;;27631:1;27622:6;27617:3;27613:16;27606:27;27542:101;27391:258;27342:307;;;:::o;27655:320::-;27699:6;27736:1;27730:4;27726:12;27716:22;;27783:1;27777:4;27773:12;27804:18;27794:81;;27860:4;27852:6;27848:17;27838:27;;27794:81;27922:2;27914:6;27911:14;27891:18;27888:38;27885:84;;;27941:18;;:::i;:::-;27885:84;27706:269;27655:320;;;:::o;27981:281::-;28064:27;28086:4;28064:27;:::i;:::-;28056:6;28052:40;28194:6;28182:10;28179:22;28158:18;28146:10;28143:34;28140:62;28137:88;;;28205:18;;:::i;:::-;28137:88;28245:10;28241:2;28234:22;28024:238;27981:281;;:::o;28268:233::-;28307:3;28330:24;28348:5;28330:24;:::i;:::-;28321:33;;28376:66;28369:5;28366:77;28363:103;;;28446:18;;:::i;:::-;28363:103;28493:1;28486:5;28482:13;28475:20;;28268:233;;;:::o;28507:176::-;28539:1;28556:20;28574:1;28556:20;:::i;:::-;28551:25;;28590:20;28608:1;28590:20;:::i;:::-;28585:25;;28629:1;28619:35;;28634:18;;:::i;:::-;28619:35;28675:1;28672;28668:9;28663:14;;28507:176;;;;:::o;28689:180::-;28737:77;28734:1;28727:88;28834:4;28831:1;28824:15;28858:4;28855:1;28848:15;28875:180;28923:77;28920:1;28913:88;29020:4;29017:1;29010:15;29044:4;29041:1;29034:15;29061:180;29109:77;29106:1;29099:88;29206:4;29203:1;29196:15;29230:4;29227:1;29220:15;29247:180;29295:77;29292:1;29285:88;29392:4;29389:1;29382:15;29416:4;29413:1;29406:15;29433:180;29481:77;29478:1;29471:88;29578:4;29575:1;29568:15;29602:4;29599:1;29592:15;29619:117;29728:1;29725;29718:12;29742:117;29851:1;29848;29841:12;29865:117;29974:1;29971;29964:12;29988:117;30097:1;30094;30087:12;30111:102;30152:6;30203:2;30199:7;30194:2;30187:5;30183:14;30179:28;30169:38;;30111:102;;;:::o;30219:235::-;30359:34;30355:1;30347:6;30343:14;30336:58;30428:18;30423:2;30415:6;30411:15;30404:43;30219:235;:::o;30460:179::-;30600:31;30596:1;30588:6;30584:14;30577:55;30460:179;:::o;30645:173::-;30785:25;30781:1;30773:6;30769:14;30762:49;30645:173;:::o;30824:178::-;30964:30;30960:1;30952:6;30948:14;30941:54;30824:178;:::o;31008:225::-;31148:34;31144:1;31136:6;31132:14;31125:58;31217:8;31212:2;31204:6;31200:15;31193:33;31008:225;:::o;31239:220::-;31379:34;31375:1;31367:6;31363:14;31356:58;31448:3;31443:2;31435:6;31431:15;31424:28;31239:220;:::o;31465:223::-;31605:34;31601:1;31593:6;31589:14;31582:58;31674:6;31669:2;31661:6;31657:15;31650:31;31465:223;:::o;31694:182::-;31834:34;31830:1;31822:6;31818:14;31811:58;31694:182;:::o;31882:172::-;32022:24;32018:1;32010:6;32006:14;31999:48;31882:172;:::o;32060:182::-;32200:34;32196:1;32188:6;32184:14;32177:58;32060:182;:::o;32248:165::-;32388:17;32384:1;32376:6;32372:14;32365:41;32248:165;:::o;32419:182::-;32559:34;32555:1;32547:6;32543:14;32536:58;32419:182;:::o;32607:114::-;;:::o;32727:177::-;32867:29;32863:1;32855:6;32851:14;32844:53;32727:177;:::o;32910:122::-;32983:24;33001:5;32983:24;:::i;:::-;32976:5;32973:35;32963:63;;33022:1;33019;33012:12;32963:63;32910:122;:::o;33038:116::-;33108:21;33123:5;33108:21;:::i;:::-;33101:5;33098:32;33088:60;;33144:1;33141;33134:12;33088:60;33038:116;:::o;33160:120::-;33232:23;33249:5;33232:23;:::i;:::-;33225:5;33222:34;33212:62;;33270:1;33267;33260:12;33212:62;33160:120;:::o;33286:122::-;33359:24;33377:5;33359:24;:::i;:::-;33352:5;33349:35;33339:63;;33398:1;33395;33388:12;33339:63;33286:122;:::o

Swarm Source

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