ETH Price: $3,336.31 (+2.19%)
Gas: 5 Gwei

Token

Harrys Hammer Club (HARRYS)
 

Overview

Max Total Supply

554 HARRYS

Holders

306

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
princejm.eth
Balance
1 HARRYS
0x30c13ca4632a3165f9486ebfb69be26e52e91cab
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:
HarrysContract

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-14
*/

// 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/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: @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/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: 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: @openzeppelin/contracts/security/Pausable.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// 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: HarrysContract.sol

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;





contract HarrysContract is ERC721A, Ownable, Pausable {
    using SafeMath for uint256;

    event PermanentURI(string _value, uint256 indexed _id);
    mapping(address => uint) private _mintings;

    uint public constant MAX_SUPPLY = 555;
    uint public constant PRICE = 1e15; //0.005 ETH
    uint public constant MAX_PER_MINT = 5;
    uint public constant MAX_PER_WALLET = 15;

    string public _contractBaseURI= "https://gateway.pinata.cloud/ipfs/QmVvU8tXUGsWBwY1KWBPN4cSjRxTLF5NLj6YeUYH6euq9R/";
    
    
    constructor() ERC721A("Harrys Hammer Club", "HARRYS") {
    }
    modifier callerIsUser(){
        require(tx.origin == msg.sender, "Harry's Hammer Club :: Cannot be called by a contract");
        _;
    }

    function mint(uint256 quantity) external payable callerIsUser {
        require(quantity > 0, "Harry's Hammer Club :: Quantity cannot be zero");
        uint totalMinted = totalSupply();
        require(quantity <= MAX_PER_MINT, "Harry's Hammer Club :: Cannot mint that many at once");
        require((mintedBy(msg.sender) + quantity) <= MAX_PER_WALLET, "Harry's Hammer Club :: The limit of minting per address is exceeded");
        require(totalMinted.add(quantity) < MAX_SUPPLY, "Harry's Hammer Club :: Not enough NFTs left to mint");
        require(PRICE * quantity <= msg.value, "Harry's Hammer Club :: Insufficient funds sent");

        _safeMint(msg.sender, quantity);
        lockMetadata(quantity);
        _mintings[msg.sender] += quantity;
    }

    function mintedBy(address addr) public view returns(uint) {
        return _mintings[addr];
    }

    function lockMetadata(uint256 quantity) internal {
        for (uint256 i = quantity; i > 0; i--) {
            uint256 tid = totalSupply() - i;
            emit PermanentURI(tokenURI(tid), tid);
        }
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;

        payable(msg.sender).transfer(balance);
    }

    // OpenSea metadata initialization
    function contractURI() public pure returns (string memory) {
        return "";
    }

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_value","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"PermanentURI","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_contractBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"mintedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"nonpayable","type":"function"}]

6080604052604051806080016040528060518152602001620037bb60519139600a9080519060200190620000359291906200020e565b503480156200004357600080fd5b506040518060400160405280601281526020017f4861727279732048616d6d657220436c756200000000000000000000000000008152506040518060400160405280600681526020017f48415252595300000000000000000000000000000000000000000000000000008152508160029080519060200190620000c89291906200020e565b508060039080519060200190620000e19291906200020e565b50620000f26200013b60201b60201c565b60008190555050506200011a6200010e6200014060201b60201c565b6200014860201b60201c565b6000600860146101000a81548160ff02191690831515021790555062000323565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021c90620002ed565b90600052602060002090601f0160209004810192826200024057600085556200028c565b82601f106200025b57805160ff19168380011785556200028c565b828001600101855582156200028c579182015b828111156200028b5782518255916020019190600101906200026e565b5b5090506200029b91906200029f565b5090565b5b80821115620002ba576000816000905550600101620002a0565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200030657607f821691505b602082108114156200031d576200031c620002be565b5b50919050565b61348880620003336000396000f3fe60806040526004361061019c5760003560e01c80636352211e116100ec578063a0712d681161008a578063c87b56dd11610064578063c87b56dd14610597578063e8a3d485146105d4578063e985e9c5146105ff578063f2fde38b1461063c5761019c565b8063a0712d6814610529578063a22cb46514610545578063b88d4fde1461056e5761019c565b8063715018a6116100c6578063715018a6146104915780638d859f3e146104a85780638da5cb5b146104d357806395d89b41146104fe5761019c565b80636352211e146103ec57806370a08231146104295780637101ebca146104665761019c565b806318160ddd116101595780633ccfd60b116101335780633ccfd60b146103445780633cef28d21461035b57806342842e0e146103985780635c975abb146103c15761019c565b806318160ddd146102c557806323b872dd146102f057806332cb6b0c146103195761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806309d42b301461026f5780630f2cdd6c1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612681565b610665565b6040516101d591906126c9565b60405180910390f35b3480156101ea57600080fd5b506101f3610747565b604051610200919061277d565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b91906127d5565b6107d9565b60405161023d9190612843565b60405180910390f35b34801561025257600080fd5b5061026d6004803603810190610268919061288a565b610855565b005b34801561027b57600080fd5b50610284610960565b60405161029191906128d9565b60405180910390f35b3480156102a657600080fd5b506102af610965565b6040516102bc91906128d9565b60405180910390f35b3480156102d157600080fd5b506102da61096a565b6040516102e791906128d9565b60405180910390f35b3480156102fc57600080fd5b50610317600480360381019061031291906128f4565b610981565b005b34801561032557600080fd5b5061032e610991565b60405161033b91906128d9565b60405180910390f35b34801561035057600080fd5b50610359610997565b005b34801561036757600080fd5b50610382600480360381019061037d9190612947565b610a62565b60405161038f91906128d9565b60405180910390f35b3480156103a457600080fd5b506103bf60048036038101906103ba91906128f4565b610aab565b005b3480156103cd57600080fd5b506103d6610acb565b6040516103e391906126c9565b60405180910390f35b3480156103f857600080fd5b50610413600480360381019061040e91906127d5565b610ae2565b6040516104209190612843565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b9190612947565b610af8565b60405161045d91906128d9565b60405180910390f35b34801561047257600080fd5b5061047b610bc8565b604051610488919061277d565b60405180910390f35b34801561049d57600080fd5b506104a6610c56565b005b3480156104b457600080fd5b506104bd610cde565b6040516104ca91906128d9565b60405180910390f35b3480156104df57600080fd5b506104e8610ce9565b6040516104f59190612843565b60405180910390f35b34801561050a57600080fd5b50610513610d13565b604051610520919061277d565b60405180910390f35b610543600480360381019061053e91906127d5565b610da5565b005b34801561055157600080fd5b5061056c600480360381019061056791906129a0565b611015565b005b34801561057a57600080fd5b5061059560048036038101906105909190612b15565b61118d565b005b3480156105a357600080fd5b506105be60048036038101906105b991906127d5565b611209565b6040516105cb919061277d565b60405180910390f35b3480156105e057600080fd5b506105e96112a8565b6040516105f6919061277d565b60405180910390f35b34801561060b57600080fd5b5061062660048036038101906106219190612b98565b6112bf565b60405161063391906126c9565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e9190612947565b611353565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610740575061073f8261144b565b5b9050919050565b60606002805461075690612c07565b80601f016020809104026020016040519081016040528092919081815260200182805461078290612c07565b80156107cf5780601f106107a4576101008083540402835291602001916107cf565b820191906000526020600020905b8154815290600101906020018083116107b257829003601f168201915b5050505050905090565b60006107e4826114b5565b61081a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086082610ae2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108c8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e7611503565b73ffffffffffffffffffffffffffffffffffffffff1614158015610919575061091781610912611503565b6112bf565b155b15610950576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61095b83838361150b565b505050565b600581565b600f81565b60006109746115bd565b6001546000540303905090565b61098c8383836115c2565b505050565b61022b81565b61099f611503565b73ffffffffffffffffffffffffffffffffffffffff166109bd610ce9565b73ffffffffffffffffffffffffffffffffffffffff1614610a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0a90612c85565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610a5e573d6000803e3d6000fd5b5050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ac68383836040518060200160405280600081525061118d565b505050565b6000600860149054906101000a900460ff16905090565b6000610aed82611a78565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b60576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b600a8054610bd590612c07565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0190612c07565b8015610c4e5780601f10610c2357610100808354040283529160200191610c4e565b820191906000526020600020905b815481529060010190602001808311610c3157829003601f168201915b505050505081565b610c5e611503565b73ffffffffffffffffffffffffffffffffffffffff16610c7c610ce9565b73ffffffffffffffffffffffffffffffffffffffff1614610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc990612c85565b60405180910390fd5b610cdc6000611d07565b565b66038d7ea4c6800081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610d2290612c07565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4e90612c07565b8015610d9b5780601f10610d7057610100808354040283529160200191610d9b565b820191906000526020600020905b815481529060010190602001808311610d7e57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a90612d17565b60405180910390fd5b60008111610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d90612da9565b60405180910390fd5b6000610e6061096a565b90506005821115610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d90612e3b565b60405180910390fd5b600f82610eb233610a62565b610ebc9190612e8a565b1115610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef490612f78565b60405180910390fd5b61022b610f138383611dcd90919063ffffffff16565b10610f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4a9061300a565b60405180910390fd5b348266038d7ea4c68000610f67919061302a565b1115610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f906130f6565b60405180910390fd5b610fb23383611de3565b610fbb82611e01565b81600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461100a9190612e8a565b925050819055505050565b61101d611503565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611082576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061108f611503565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661113c611503565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161118191906126c9565b60405180910390a35050565b6111988484846115c2565b6111b78373ffffffffffffffffffffffffffffffffffffffff16611e7f565b80156111cc57506111ca84848484611ea2565b155b15611203576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611214826114b5565b61124a576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611254611ff3565b905060008151141561127557604051806020016040528060008152506112a0565b8061127f84612085565b604051602001611290929190613152565b6040516020818303038152906040525b915050919050565b606060405180602001604052806000815250905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61135b611503565b73ffffffffffffffffffffffffffffffffffffffff16611379610ce9565b73ffffffffffffffffffffffffffffffffffffffff16146113cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c690612c85565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561143f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611436906131e8565b60405180910390fd5b61144881611d07565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816114c06115bd565b111580156114cf575060005482105b80156114fc575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006115cd82611a78565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611638576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611659611503565b73ffffffffffffffffffffffffffffffffffffffff161480611688575061168785611682611503565b6112bf565b5b806116cd5750611696611503565b73ffffffffffffffffffffffffffffffffffffffff166116b5846107d9565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611706576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561176d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61177a85858560016121e6565b6117866000848761150b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611a06576000548214611a0557878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a7185858560016121ec565b5050505050565b611a806125d2565b600082905080611a8e6115bd565b11158015611a9d575060005481105b15611cd0576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611cce57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611bb2578092505050611d02565b5b600115611ccd57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611cc8578092505050611d02565b611bb3565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611ddb9190612e8a565b905092915050565b611dfd8282604051806020016040528060008152506121f2565b5050565b60008190505b6000811115611e7b57600081611e1b61096a565b611e259190613208565b9050807fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b55657207611e5283611209565b604051611e5f919061277d565b60405180910390a2508080611e739061323c565b915050611e07565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ec8611503565b8786866040518563ffffffff1660e01b8152600401611eea94939291906132bb565b6020604051808303816000875af1925050508015611f2657506040513d601f19601f82011682018060405250810190611f23919061331c565b60015b611fa0573d8060008114611f56576040519150601f19603f3d011682016040523d82523d6000602084013e611f5b565b606091505b50600081511415611f98576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461200290612c07565b80601f016020809104026020016040519081016040528092919081815260200182805461202e90612c07565b801561207b5780601f106120505761010080835404028352916020019161207b565b820191906000526020600020905b81548152906001019060200180831161205e57829003601f168201915b5050505050905090565b606060008214156120cd576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121e1565b600082905060005b600082146120ff5780806120e890613349565b915050600a826120f891906133c1565b91506120d5565b60008167ffffffffffffffff81111561211b5761211a6129ea565b5b6040519080825280601f01601f19166020018201604052801561214d5781602001600182028036833780820191505090505b5090505b600085146121da576001826121669190613208565b9150600a8561217591906133f2565b60306121819190612e8a565b60f81b81838151811061219757612196613423565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121d391906133c1565b9450612151565b8093505050505b919050565b50505050565b50505050565b6121ff8383836001612204565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612271576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156122ac576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122b960008683876121e6565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561248357506124828773ffffffffffffffffffffffffffffffffffffffff16611e7f565b5b15612549575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124f86000888480600101955088611ea2565b61252e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561248957826000541461254457600080fd5b6125b5565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561254a575b8160008190555050506125cb60008683876121ec565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61265e81612629565b811461266957600080fd5b50565b60008135905061267b81612655565b92915050565b6000602082840312156126975761269661261f565b5b60006126a58482850161266c565b91505092915050565b60008115159050919050565b6126c3816126ae565b82525050565b60006020820190506126de60008301846126ba565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561271e578082015181840152602081019050612703565b8381111561272d576000848401525b50505050565b6000601f19601f8301169050919050565b600061274f826126e4565b61275981856126ef565b9350612769818560208601612700565b61277281612733565b840191505092915050565b600060208201905081810360008301526127978184612744565b905092915050565b6000819050919050565b6127b28161279f565b81146127bd57600080fd5b50565b6000813590506127cf816127a9565b92915050565b6000602082840312156127eb576127ea61261f565b5b60006127f9848285016127c0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061282d82612802565b9050919050565b61283d81612822565b82525050565b60006020820190506128586000830184612834565b92915050565b61286781612822565b811461287257600080fd5b50565b6000813590506128848161285e565b92915050565b600080604083850312156128a1576128a061261f565b5b60006128af85828601612875565b92505060206128c0858286016127c0565b9150509250929050565b6128d38161279f565b82525050565b60006020820190506128ee60008301846128ca565b92915050565b60008060006060848603121561290d5761290c61261f565b5b600061291b86828701612875565b935050602061292c86828701612875565b925050604061293d868287016127c0565b9150509250925092565b60006020828403121561295d5761295c61261f565b5b600061296b84828501612875565b91505092915050565b61297d816126ae565b811461298857600080fd5b50565b60008135905061299a81612974565b92915050565b600080604083850312156129b7576129b661261f565b5b60006129c585828601612875565b92505060206129d68582860161298b565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a2282612733565b810181811067ffffffffffffffff82111715612a4157612a406129ea565b5b80604052505050565b6000612a54612615565b9050612a608282612a19565b919050565b600067ffffffffffffffff821115612a8057612a7f6129ea565b5b612a8982612733565b9050602081019050919050565b82818337600083830152505050565b6000612ab8612ab384612a65565b612a4a565b905082815260208101848484011115612ad457612ad36129e5565b5b612adf848285612a96565b509392505050565b600082601f830112612afc57612afb6129e0565b5b8135612b0c848260208601612aa5565b91505092915050565b60008060008060808587031215612b2f57612b2e61261f565b5b6000612b3d87828801612875565b9450506020612b4e87828801612875565b9350506040612b5f878288016127c0565b925050606085013567ffffffffffffffff811115612b8057612b7f612624565b5b612b8c87828801612ae7565b91505092959194509250565b60008060408385031215612baf57612bae61261f565b5b6000612bbd85828601612875565b9250506020612bce85828601612875565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c1f57607f821691505b60208210811415612c3357612c32612bd8565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c6f6020836126ef565b9150612c7a82612c39565b602082019050919050565b60006020820190508181036000830152612c9e81612c62565b9050919050565b7f486172727927732048616d6d657220436c7562203a3a2043616e6e6f7420626560008201527f2063616c6c6564206279206120636f6e74726163740000000000000000000000602082015250565b6000612d016035836126ef565b9150612d0c82612ca5565b604082019050919050565b60006020820190508181036000830152612d3081612cf4565b9050919050565b7f486172727927732048616d6d657220436c7562203a3a205175616e746974792060008201527f63616e6e6f74206265207a65726f000000000000000000000000000000000000602082015250565b6000612d93602e836126ef565b9150612d9e82612d37565b604082019050919050565b60006020820190508181036000830152612dc281612d86565b9050919050565b7f486172727927732048616d6d657220436c7562203a3a2043616e6e6f74206d6960008201527f6e742074686174206d616e79206174206f6e6365000000000000000000000000602082015250565b6000612e256034836126ef565b9150612e3082612dc9565b604082019050919050565b60006020820190508181036000830152612e5481612e18565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e958261279f565b9150612ea08361279f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ed557612ed4612e5b565b5b828201905092915050565b7f486172727927732048616d6d657220436c7562203a3a20546865206c696d697460008201527f206f66206d696e74696e6720706572206164647265737320697320657863656560208201527f6465640000000000000000000000000000000000000000000000000000000000604082015250565b6000612f626043836126ef565b9150612f6d82612ee0565b606082019050919050565b60006020820190508181036000830152612f9181612f55565b9050919050565b7f486172727927732048616d6d657220436c7562203a3a204e6f7420656e6f756760008201527f68204e465473206c65667420746f206d696e7400000000000000000000000000602082015250565b6000612ff46033836126ef565b9150612fff82612f98565b604082019050919050565b6000602082019050818103600083015261302381612fe7565b9050919050565b60006130358261279f565b91506130408361279f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561307957613078612e5b565b5b828202905092915050565b7f486172727927732048616d6d657220436c7562203a3a20496e7375666669636960008201527f656e742066756e64732073656e74000000000000000000000000000000000000602082015250565b60006130e0602e836126ef565b91506130eb82613084565b604082019050919050565b6000602082019050818103600083015261310f816130d3565b9050919050565b600081905092915050565b600061312c826126e4565b6131368185613116565b9350613146818560208601612700565b80840191505092915050565b600061315e8285613121565b915061316a8284613121565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131d26026836126ef565b91506131dd82613176565b604082019050919050565b60006020820190508181036000830152613201816131c5565b9050919050565b60006132138261279f565b915061321e8361279f565b92508282101561323157613230612e5b565b5b828203905092915050565b60006132478261279f565b9150600082141561325b5761325a612e5b565b5b600182039050919050565b600081519050919050565b600082825260208201905092915050565b600061328d82613266565b6132978185613271565b93506132a7818560208601612700565b6132b081612733565b840191505092915050565b60006080820190506132d06000830187612834565b6132dd6020830186612834565b6132ea60408301856128ca565b81810360608301526132fc8184613282565b905095945050505050565b60008151905061331681612655565b92915050565b6000602082840312156133325761333161261f565b5b600061334084828501613307565b91505092915050565b60006133548261279f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561338757613386612e5b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006133cc8261279f565b91506133d78361279f565b9250826133e7576133e6613392565b5b828204905092915050565b60006133fd8261279f565b91506134088361279f565b92508261341857613417613392565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212201a3804b78b4b8ed9af83fef4bc3df74145ffc7dc0b3e068e9efde1613d63c4cb64736f6c634300080b003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d56765538745855477357427759314b5742504e3463536a5278544c46354e4c6a3659655559483665757139522f

Deployed Bytecode

0x60806040526004361061019c5760003560e01c80636352211e116100ec578063a0712d681161008a578063c87b56dd11610064578063c87b56dd14610597578063e8a3d485146105d4578063e985e9c5146105ff578063f2fde38b1461063c5761019c565b8063a0712d6814610529578063a22cb46514610545578063b88d4fde1461056e5761019c565b8063715018a6116100c6578063715018a6146104915780638d859f3e146104a85780638da5cb5b146104d357806395d89b41146104fe5761019c565b80636352211e146103ec57806370a08231146104295780637101ebca146104665761019c565b806318160ddd116101595780633ccfd60b116101335780633ccfd60b146103445780633cef28d21461035b57806342842e0e146103985780635c975abb146103c15761019c565b806318160ddd146102c557806323b872dd146102f057806332cb6b0c146103195761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806309d42b301461026f5780630f2cdd6c1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612681565b610665565b6040516101d591906126c9565b60405180910390f35b3480156101ea57600080fd5b506101f3610747565b604051610200919061277d565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b91906127d5565b6107d9565b60405161023d9190612843565b60405180910390f35b34801561025257600080fd5b5061026d6004803603810190610268919061288a565b610855565b005b34801561027b57600080fd5b50610284610960565b60405161029191906128d9565b60405180910390f35b3480156102a657600080fd5b506102af610965565b6040516102bc91906128d9565b60405180910390f35b3480156102d157600080fd5b506102da61096a565b6040516102e791906128d9565b60405180910390f35b3480156102fc57600080fd5b50610317600480360381019061031291906128f4565b610981565b005b34801561032557600080fd5b5061032e610991565b60405161033b91906128d9565b60405180910390f35b34801561035057600080fd5b50610359610997565b005b34801561036757600080fd5b50610382600480360381019061037d9190612947565b610a62565b60405161038f91906128d9565b60405180910390f35b3480156103a457600080fd5b506103bf60048036038101906103ba91906128f4565b610aab565b005b3480156103cd57600080fd5b506103d6610acb565b6040516103e391906126c9565b60405180910390f35b3480156103f857600080fd5b50610413600480360381019061040e91906127d5565b610ae2565b6040516104209190612843565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b9190612947565b610af8565b60405161045d91906128d9565b60405180910390f35b34801561047257600080fd5b5061047b610bc8565b604051610488919061277d565b60405180910390f35b34801561049d57600080fd5b506104a6610c56565b005b3480156104b457600080fd5b506104bd610cde565b6040516104ca91906128d9565b60405180910390f35b3480156104df57600080fd5b506104e8610ce9565b6040516104f59190612843565b60405180910390f35b34801561050a57600080fd5b50610513610d13565b604051610520919061277d565b60405180910390f35b610543600480360381019061053e91906127d5565b610da5565b005b34801561055157600080fd5b5061056c600480360381019061056791906129a0565b611015565b005b34801561057a57600080fd5b5061059560048036038101906105909190612b15565b61118d565b005b3480156105a357600080fd5b506105be60048036038101906105b991906127d5565b611209565b6040516105cb919061277d565b60405180910390f35b3480156105e057600080fd5b506105e96112a8565b6040516105f6919061277d565b60405180910390f35b34801561060b57600080fd5b5061062660048036038101906106219190612b98565b6112bf565b60405161063391906126c9565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e9190612947565b611353565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610740575061073f8261144b565b5b9050919050565b60606002805461075690612c07565b80601f016020809104026020016040519081016040528092919081815260200182805461078290612c07565b80156107cf5780601f106107a4576101008083540402835291602001916107cf565b820191906000526020600020905b8154815290600101906020018083116107b257829003601f168201915b5050505050905090565b60006107e4826114b5565b61081a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086082610ae2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108c8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e7611503565b73ffffffffffffffffffffffffffffffffffffffff1614158015610919575061091781610912611503565b6112bf565b155b15610950576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61095b83838361150b565b505050565b600581565b600f81565b60006109746115bd565b6001546000540303905090565b61098c8383836115c2565b505050565b61022b81565b61099f611503565b73ffffffffffffffffffffffffffffffffffffffff166109bd610ce9565b73ffffffffffffffffffffffffffffffffffffffff1614610a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0a90612c85565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610a5e573d6000803e3d6000fd5b5050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ac68383836040518060200160405280600081525061118d565b505050565b6000600860149054906101000a900460ff16905090565b6000610aed82611a78565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b60576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b600a8054610bd590612c07565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0190612c07565b8015610c4e5780601f10610c2357610100808354040283529160200191610c4e565b820191906000526020600020905b815481529060010190602001808311610c3157829003601f168201915b505050505081565b610c5e611503565b73ffffffffffffffffffffffffffffffffffffffff16610c7c610ce9565b73ffffffffffffffffffffffffffffffffffffffff1614610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc990612c85565b60405180910390fd5b610cdc6000611d07565b565b66038d7ea4c6800081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610d2290612c07565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4e90612c07565b8015610d9b5780601f10610d7057610100808354040283529160200191610d9b565b820191906000526020600020905b815481529060010190602001808311610d7e57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a90612d17565b60405180910390fd5b60008111610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d90612da9565b60405180910390fd5b6000610e6061096a565b90506005821115610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d90612e3b565b60405180910390fd5b600f82610eb233610a62565b610ebc9190612e8a565b1115610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef490612f78565b60405180910390fd5b61022b610f138383611dcd90919063ffffffff16565b10610f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4a9061300a565b60405180910390fd5b348266038d7ea4c68000610f67919061302a565b1115610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f906130f6565b60405180910390fd5b610fb23383611de3565b610fbb82611e01565b81600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461100a9190612e8a565b925050819055505050565b61101d611503565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611082576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061108f611503565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661113c611503565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161118191906126c9565b60405180910390a35050565b6111988484846115c2565b6111b78373ffffffffffffffffffffffffffffffffffffffff16611e7f565b80156111cc57506111ca84848484611ea2565b155b15611203576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611214826114b5565b61124a576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611254611ff3565b905060008151141561127557604051806020016040528060008152506112a0565b8061127f84612085565b604051602001611290929190613152565b6040516020818303038152906040525b915050919050565b606060405180602001604052806000815250905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61135b611503565b73ffffffffffffffffffffffffffffffffffffffff16611379610ce9565b73ffffffffffffffffffffffffffffffffffffffff16146113cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c690612c85565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561143f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611436906131e8565b60405180910390fd5b61144881611d07565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816114c06115bd565b111580156114cf575060005482105b80156114fc575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006115cd82611a78565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611638576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611659611503565b73ffffffffffffffffffffffffffffffffffffffff161480611688575061168785611682611503565b6112bf565b5b806116cd5750611696611503565b73ffffffffffffffffffffffffffffffffffffffff166116b5846107d9565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611706576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561176d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61177a85858560016121e6565b6117866000848761150b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611a06576000548214611a0557878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a7185858560016121ec565b5050505050565b611a806125d2565b600082905080611a8e6115bd565b11158015611a9d575060005481105b15611cd0576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611cce57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611bb2578092505050611d02565b5b600115611ccd57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611cc8578092505050611d02565b611bb3565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611ddb9190612e8a565b905092915050565b611dfd8282604051806020016040528060008152506121f2565b5050565b60008190505b6000811115611e7b57600081611e1b61096a565b611e259190613208565b9050807fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b55657207611e5283611209565b604051611e5f919061277d565b60405180910390a2508080611e739061323c565b915050611e07565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ec8611503565b8786866040518563ffffffff1660e01b8152600401611eea94939291906132bb565b6020604051808303816000875af1925050508015611f2657506040513d601f19601f82011682018060405250810190611f23919061331c565b60015b611fa0573d8060008114611f56576040519150601f19603f3d011682016040523d82523d6000602084013e611f5b565b606091505b50600081511415611f98576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461200290612c07565b80601f016020809104026020016040519081016040528092919081815260200182805461202e90612c07565b801561207b5780601f106120505761010080835404028352916020019161207b565b820191906000526020600020905b81548152906001019060200180831161205e57829003601f168201915b5050505050905090565b606060008214156120cd576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121e1565b600082905060005b600082146120ff5780806120e890613349565b915050600a826120f891906133c1565b91506120d5565b60008167ffffffffffffffff81111561211b5761211a6129ea565b5b6040519080825280601f01601f19166020018201604052801561214d5781602001600182028036833780820191505090505b5090505b600085146121da576001826121669190613208565b9150600a8561217591906133f2565b60306121819190612e8a565b60f81b81838151811061219757612196613423565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121d391906133c1565b9450612151565b8093505050505b919050565b50505050565b50505050565b6121ff8383836001612204565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612271576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156122ac576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122b960008683876121e6565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561248357506124828773ffffffffffffffffffffffffffffffffffffffff16611e7f565b5b15612549575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124f86000888480600101955088611ea2565b61252e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561248957826000541461254457600080fd5b6125b5565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561254a575b8160008190555050506125cb60008683876121ec565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61265e81612629565b811461266957600080fd5b50565b60008135905061267b81612655565b92915050565b6000602082840312156126975761269661261f565b5b60006126a58482850161266c565b91505092915050565b60008115159050919050565b6126c3816126ae565b82525050565b60006020820190506126de60008301846126ba565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561271e578082015181840152602081019050612703565b8381111561272d576000848401525b50505050565b6000601f19601f8301169050919050565b600061274f826126e4565b61275981856126ef565b9350612769818560208601612700565b61277281612733565b840191505092915050565b600060208201905081810360008301526127978184612744565b905092915050565b6000819050919050565b6127b28161279f565b81146127bd57600080fd5b50565b6000813590506127cf816127a9565b92915050565b6000602082840312156127eb576127ea61261f565b5b60006127f9848285016127c0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061282d82612802565b9050919050565b61283d81612822565b82525050565b60006020820190506128586000830184612834565b92915050565b61286781612822565b811461287257600080fd5b50565b6000813590506128848161285e565b92915050565b600080604083850312156128a1576128a061261f565b5b60006128af85828601612875565b92505060206128c0858286016127c0565b9150509250929050565b6128d38161279f565b82525050565b60006020820190506128ee60008301846128ca565b92915050565b60008060006060848603121561290d5761290c61261f565b5b600061291b86828701612875565b935050602061292c86828701612875565b925050604061293d868287016127c0565b9150509250925092565b60006020828403121561295d5761295c61261f565b5b600061296b84828501612875565b91505092915050565b61297d816126ae565b811461298857600080fd5b50565b60008135905061299a81612974565b92915050565b600080604083850312156129b7576129b661261f565b5b60006129c585828601612875565b92505060206129d68582860161298b565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a2282612733565b810181811067ffffffffffffffff82111715612a4157612a406129ea565b5b80604052505050565b6000612a54612615565b9050612a608282612a19565b919050565b600067ffffffffffffffff821115612a8057612a7f6129ea565b5b612a8982612733565b9050602081019050919050565b82818337600083830152505050565b6000612ab8612ab384612a65565b612a4a565b905082815260208101848484011115612ad457612ad36129e5565b5b612adf848285612a96565b509392505050565b600082601f830112612afc57612afb6129e0565b5b8135612b0c848260208601612aa5565b91505092915050565b60008060008060808587031215612b2f57612b2e61261f565b5b6000612b3d87828801612875565b9450506020612b4e87828801612875565b9350506040612b5f878288016127c0565b925050606085013567ffffffffffffffff811115612b8057612b7f612624565b5b612b8c87828801612ae7565b91505092959194509250565b60008060408385031215612baf57612bae61261f565b5b6000612bbd85828601612875565b9250506020612bce85828601612875565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c1f57607f821691505b60208210811415612c3357612c32612bd8565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c6f6020836126ef565b9150612c7a82612c39565b602082019050919050565b60006020820190508181036000830152612c9e81612c62565b9050919050565b7f486172727927732048616d6d657220436c7562203a3a2043616e6e6f7420626560008201527f2063616c6c6564206279206120636f6e74726163740000000000000000000000602082015250565b6000612d016035836126ef565b9150612d0c82612ca5565b604082019050919050565b60006020820190508181036000830152612d3081612cf4565b9050919050565b7f486172727927732048616d6d657220436c7562203a3a205175616e746974792060008201527f63616e6e6f74206265207a65726f000000000000000000000000000000000000602082015250565b6000612d93602e836126ef565b9150612d9e82612d37565b604082019050919050565b60006020820190508181036000830152612dc281612d86565b9050919050565b7f486172727927732048616d6d657220436c7562203a3a2043616e6e6f74206d6960008201527f6e742074686174206d616e79206174206f6e6365000000000000000000000000602082015250565b6000612e256034836126ef565b9150612e3082612dc9565b604082019050919050565b60006020820190508181036000830152612e5481612e18565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e958261279f565b9150612ea08361279f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ed557612ed4612e5b565b5b828201905092915050565b7f486172727927732048616d6d657220436c7562203a3a20546865206c696d697460008201527f206f66206d696e74696e6720706572206164647265737320697320657863656560208201527f6465640000000000000000000000000000000000000000000000000000000000604082015250565b6000612f626043836126ef565b9150612f6d82612ee0565b606082019050919050565b60006020820190508181036000830152612f9181612f55565b9050919050565b7f486172727927732048616d6d657220436c7562203a3a204e6f7420656e6f756760008201527f68204e465473206c65667420746f206d696e7400000000000000000000000000602082015250565b6000612ff46033836126ef565b9150612fff82612f98565b604082019050919050565b6000602082019050818103600083015261302381612fe7565b9050919050565b60006130358261279f565b91506130408361279f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561307957613078612e5b565b5b828202905092915050565b7f486172727927732048616d6d657220436c7562203a3a20496e7375666669636960008201527f656e742066756e64732073656e74000000000000000000000000000000000000602082015250565b60006130e0602e836126ef565b91506130eb82613084565b604082019050919050565b6000602082019050818103600083015261310f816130d3565b9050919050565b600081905092915050565b600061312c826126e4565b6131368185613116565b9350613146818560208601612700565b80840191505092915050565b600061315e8285613121565b915061316a8284613121565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131d26026836126ef565b91506131dd82613176565b604082019050919050565b60006020820190508181036000830152613201816131c5565b9050919050565b60006132138261279f565b915061321e8361279f565b92508282101561323157613230612e5b565b5b828203905092915050565b60006132478261279f565b9150600082141561325b5761325a612e5b565b5b600182039050919050565b600081519050919050565b600082825260208201905092915050565b600061328d82613266565b6132978185613271565b93506132a7818560208601612700565b6132b081612733565b840191505092915050565b60006080820190506132d06000830187612834565b6132dd6020830186612834565b6132ea60408301856128ca565b81810360608301526132fc8184613282565b905095945050505050565b60008151905061331681612655565b92915050565b6000602082840312156133325761333161261f565b5b600061334084828501613307565b91505092915050565b60006133548261279f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561338757613386612e5b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006133cc8261279f565b91506133d78361279f565b9250826133e7576133e6613392565b5b828204905092915050565b60006133fd8261279f565b91506134088361279f565b92508261341857613417613392565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212201a3804b78b4b8ed9af83fef4bc3df74145ffc7dc0b3e068e9efde1613d63c4cb64736f6c634300080b0033

Deployed Bytecode Sourcemap

54161:2258:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31469:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34582:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36085:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35648:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54465:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54509:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30718:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36950:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54369:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56020:142;;;;;;;;;;;;;:::i;:::-;;55689:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37191:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50346:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34390:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31838:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54558:115;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53245:103;;;;;;;;;;;;;:::i;:::-;;54413:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52594:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34751:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54911:770;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36361:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37447:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34926:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56210:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36719:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53503:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31469:305;31571:4;31623:25;31608:40;;;:11;:40;;;;:105;;;;31680:33;31665:48;;;:11;:48;;;;31608:105;:158;;;;31730:36;31754:11;31730:23;:36::i;:::-;31608:158;31588:178;;31469:305;;;:::o;34582:100::-;34636:13;34669:5;34662:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34582:100;:::o;36085:204::-;36153:7;36178:16;36186:7;36178;:16::i;:::-;36173:64;;36203:34;;;;;;;;;;;;;;36173:64;36257:15;:24;36273:7;36257:24;;;;;;;;;;;;;;;;;;;;;36250:31;;36085:204;;;:::o;35648:371::-;35721:13;35737:24;35753:7;35737:15;:24::i;:::-;35721:40;;35782:5;35776:11;;:2;:11;;;35772:48;;;35796:24;;;;;;;;;;;;;;35772:48;35853:5;35837:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;35863:37;35880:5;35887:12;:10;:12::i;:::-;35863:16;:37::i;:::-;35862:38;35837:63;35833:138;;;35924:35;;;;;;;;;;;;;;35833:138;35983:28;35992:2;35996:7;36005:5;35983:8;:28::i;:::-;35710:309;35648:371;;:::o;54465:37::-;54501:1;54465:37;:::o;54509:40::-;54547:2;54509:40;:::o;30718:303::-;30762:7;30987:15;:13;:15::i;:::-;30972:12;;30956:13;;:28;:46;30949:53;;30718:303;:::o;36950:170::-;37084:28;37094:4;37100:2;37104:7;37084:9;:28::i;:::-;36950:170;;;:::o;54369:37::-;54403:3;54369:37;:::o;56020:142::-;52825:12;:10;:12::i;:::-;52814:23;;:7;:5;:7::i;:::-;:23;;;52806:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56068:12:::1;56083:21;56068:36;;56125:10;56117:28;;:37;56146:7;56117:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;56057:105;56020:142::o:0;55689:99::-;55741:4;55765:9;:15;55775:4;55765:15;;;;;;;;;;;;;;;;55758:22;;55689:99;;;:::o;37191:185::-;37329:39;37346:4;37352:2;37356:7;37329:39;;;;;;;;;;;;:16;:39::i;:::-;37191:185;;;:::o;50346:86::-;50393:4;50417:7;;;;;;;;;;;50410:14;;50346:86;:::o;34390:125::-;34454:7;34481:21;34494:7;34481:12;:21::i;:::-;:26;;;34474:33;;34390:125;;;:::o;31838:206::-;31902:7;31943:1;31926:19;;:5;:19;;;31922:60;;;31954:28;;;;;;;;;;;;;;31922:60;32008:12;:19;32021:5;32008:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;32000:36;;31993:43;;31838:206;;;:::o;54558:115::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53245:103::-;52825:12;:10;:12::i;:::-;52814:23;;:7;:5;:7::i;:::-;:23;;;52806:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53310:30:::1;53337:1;53310:18;:30::i;:::-;53245:103::o:0;54413:33::-;54442:4;54413:33;:::o;52594:87::-;52640:7;52667:6;;;;;;;;;;;52660:13;;52594:87;:::o;34751:104::-;34807:13;34840:7;34833:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34751:104;:::o;54911:770::-;54815:10;54802:23;;:9;:23;;;54794:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;55003:1:::1;54992:8;:12;54984:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;55066:16;55085:13;:11;:13::i;:::-;55066:32;;54501:1;55117:8;:24;;55109:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;54547:2;55241:8;55218:20;55227:10;55218:8;:20::i;:::-;:31;;;;:::i;:::-;55217:51;;55209:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;54403:3;55359:25;55375:8;55359:11;:15;;:25;;;;:::i;:::-;:38;55351:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;55492:9;55480:8;54442:4;55472:16;;;;:::i;:::-;:29;;55464:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;55565:31;55575:10;55587:8;55565:9;:31::i;:::-;55607:22;55620:8;55607:12;:22::i;:::-;55665:8;55640:9;:21;55650:10;55640:21;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;54973:708;54911:770:::0;:::o;36361:287::-;36472:12;:10;:12::i;:::-;36460:24;;:8;:24;;;36456:54;;;36493:17;;;;;;;;;;;;;;36456:54;36568:8;36523:18;:32;36542:12;:10;:12::i;:::-;36523:32;;;;;;;;;;;;;;;:42;36556:8;36523:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;36621:8;36592:48;;36607:12;:10;:12::i;:::-;36592:48;;;36631:8;36592:48;;;;;;:::i;:::-;;;;;;;;36361:287;;:::o;37447:369::-;37614:28;37624:4;37630:2;37634:7;37614:9;:28::i;:::-;37657:15;:2;:13;;;:15::i;:::-;:76;;;;;37677:56;37708:4;37714:2;37718:7;37727:5;37677:30;:56::i;:::-;37676:57;37657:76;37653:156;;;37757:40;;;;;;;;;;;;;;37653:156;37447:369;;;;:::o;34926:318::-;34999:13;35030:16;35038:7;35030;:16::i;:::-;35025:59;;35055:29;;;;;;;;;;;;;;35025:59;35097:21;35121:10;:8;:10::i;:::-;35097:34;;35174:1;35155:7;35149:21;:26;;:87;;;;;;;;;;;;;;;;;35202:7;35211:18;:7;:16;:18::i;:::-;35185:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35149:87;35142:94;;;34926:318;;;:::o;56210:87::-;56254:13;56280:9;;;;;;;;;;;;;;56210:87;:::o;36719:164::-;36816:4;36840:18;:25;36859:5;36840:25;;;;;;;;;;;;;;;:35;36866:8;36840:35;;;;;;;;;;;;;;;;;;;;;;;;;36833:42;;36719:164;;;;:::o;53503:201::-;52825:12;:10;:12::i;:::-;52814:23;;:7;:5;:7::i;:::-;:23;;;52806:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53612:1:::1;53592:22;;:8;:22;;;;53584:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;53668:28;53687:8;53668:18;:28::i;:::-;53503:201:::0;:::o;13440:157::-;13525:4;13564:25;13549:40;;;:11;:40;;;;13542:47;;13440:157;;;:::o;38071:174::-;38128:4;38171:7;38152:15;:13;:15::i;:::-;:26;;:53;;;;;38192:13;;38182:7;:23;38152:53;:85;;;;;38210:11;:20;38222:7;38210:20;;;;;;;;;;;:27;;;;;;;;;;;;38209:28;38152:85;38145:92;;38071:174;;;:::o;26985:98::-;27038:7;27065:10;27058:17;;26985:98;:::o;46228:196::-;46370:2;46343:15;:24;46359:7;46343:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;46408:7;46404:2;46388:28;;46397:5;46388:28;;;;;;;;;;;;46228:196;;;:::o;30492:92::-;30548:7;30492:92;:::o;41171:2130::-;41286:35;41324:21;41337:7;41324:12;:21::i;:::-;41286:59;;41384:4;41362:26;;:13;:18;;;:26;;;41358:67;;41397:28;;;;;;;;;;;;;;41358:67;41438:22;41480:4;41464:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;41501:36;41518:4;41524:12;:10;:12::i;:::-;41501:16;:36::i;:::-;41464:73;:126;;;;41578:12;:10;:12::i;:::-;41554:36;;:20;41566:7;41554:11;:20::i;:::-;:36;;;41464:126;41438:153;;41609:17;41604:66;;41635:35;;;;;;;;;;;;;;41604:66;41699:1;41685:16;;:2;:16;;;41681:52;;;41710:23;;;;;;;;;;;;;;41681:52;41746:43;41768:4;41774:2;41778:7;41787:1;41746:21;:43::i;:::-;41854:35;41871:1;41875:7;41884:4;41854:8;:35::i;:::-;42215:1;42185:12;:18;42198:4;42185:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42259:1;42231:12;:16;42244:2;42231:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42277:31;42311:11;:20;42323:7;42311:20;;;;;;;;;;;42277:54;;42362:2;42346:8;:13;;;:18;;;;;;;;;;;;;;;;;;42412:15;42379:8;:23;;;:49;;;;;;;;;;;;;;;;;;42680:19;42712:1;42702:7;:11;42680:33;;42728:31;42762:11;:24;42774:11;42762:24;;;;;;;;;;;42728:58;;42830:1;42805:27;;:8;:13;;;;;;;;;;;;:27;;;42801:384;;;43015:13;;43000:11;:28;42996:174;;43069:4;43053:8;:13;;;:20;;;;;;;;;;;;;;;;;;43122:13;:28;;;43096:8;:23;;;:54;;;;;;;;;;;;;;;;;;42996:174;42801:384;42160:1036;;;43232:7;43228:2;43213:27;;43222:4;43213:27;;;;;;;;;;;;43251:42;43272:4;43278:2;43282:7;43291:1;43251:20;:42::i;:::-;41275:2026;;41171:2130;;;:::o;33219:1109::-;33281:21;;:::i;:::-;33315:12;33330:7;33315:22;;33398:4;33379:15;:13;:15::i;:::-;:23;;:47;;;;;33413:13;;33406:4;:20;33379:47;33375:886;;;33447:31;33481:11;:17;33493:4;33481:17;;;;;;;;;;;33447:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33522:9;:16;;;33517:729;;33593:1;33567:28;;:9;:14;;;:28;;;33563:101;;33631:9;33624:16;;;;;;33563:101;33966:261;33973:4;33966:261;;;34006:6;;;;;;;;34051:11;:17;34063:4;34051:17;;;;;;;;;;;34039:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34125:1;34099:28;;:9;:14;;;:28;;;34095:109;;34167:9;34160:16;;;;;;34095:109;33966:261;;;33517:729;33428:833;33375:886;34289:31;;;;;;;;;;;;;;33219:1109;;;;:::o;53864:191::-;53938:16;53957:6;;;;;;;;;;;53938:25;;53983:8;53974:6;;:17;;;;;;;;;;;;;;;;;;54038:8;54007:40;;54028:8;54007:40;;;;;;;;;;;;53927:128;53864:191;:::o;22141:98::-;22199:7;22230:1;22226;:5;;;;:::i;:::-;22219:12;;22141:98;;;;:::o;38253:104::-;38322:27;38332:2;38336:8;38322:27;;;;;;;;;;;;:9;:27::i;:::-;38253:104;;:::o;55796:216::-;55861:9;55873:8;55861:20;;55856:149;55887:1;55883;:5;55856:149;;;55910:11;55940:1;55924:13;:11;:13::i;:::-;:17;;;;:::i;:::-;55910:31;;55989:3;55961:32;55974:13;55983:3;55974:8;:13::i;:::-;55961:32;;;;;;:::i;:::-;;;;;;;;55895:110;55890:3;;;;;:::i;:::-;;;;55856:149;;;;55796:216;:::o;3357:326::-;3417:4;3674:1;3652:7;:19;;;:23;3645:30;;3357:326;;;:::o;46916:667::-;47079:4;47116:2;47100:36;;;47137:12;:10;:12::i;:::-;47151:4;47157:7;47166:5;47100:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;47096:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47351:1;47334:6;:13;:18;47330:235;;;47380:40;;;;;;;;;;;;;;47330:235;47523:6;47517:13;47508:6;47504:2;47500:15;47493:38;47096:480;47229:45;;;47219:55;;;:6;:55;;;;47212:62;;;46916:667;;;;;;:::o;56305:109::-;56357:13;56390:16;56383:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56305:109;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;48231:159::-;;;;;:::o;49049:158::-;;;;;:::o;38720:163::-;38843:32;38849:2;38853:8;38863:5;38870:4;38843:5;:32::i;:::-;38720:163;;;:::o;39142:1775::-;39281:20;39304:13;;39281:36;;39346:1;39332:16;;:2;:16;;;39328:48;;;39357:19;;;;;;;;;;;;;;39328:48;39403:1;39391:8;:13;39387:44;;;39413:18;;;;;;;;;;;;;;39387:44;39444:61;39474:1;39478:2;39482:12;39496:8;39444:21;:61::i;:::-;39817:8;39782:12;:16;39795:2;39782:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39881:8;39841:12;:16;39854:2;39841:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39940:2;39907:11;:25;39919:12;39907:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;40007:15;39957:11;:25;39969:12;39957:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;40040:20;40063:12;40040:35;;40090:11;40119:8;40104:12;:23;40090:37;;40148:4;:23;;;;;40156:15;:2;:13;;;:15::i;:::-;40148:23;40144:641;;;40192:314;40248:12;40244:2;40223:38;;40240:1;40223:38;;;;;;;;;;;;40289:69;40328:1;40332:2;40336:14;;;;;;40352:5;40289:30;:69::i;:::-;40284:174;;40394:40;;;;;;;;;;;;;;40284:174;40501:3;40485:12;:19;;40192:314;;40587:12;40570:13;;:29;40566:43;;40601:8;;;40566:43;40144:641;;;40650:120;40706:14;;;;;;40702:2;40681:40;;40698:1;40681:40;;;;;;;;;;;;40765:3;40749:12;:19;;40650:120;;40144:641;40815:12;40799:13;:28;;;;39757:1082;;40849:60;40878:1;40882:2;40886:12;40900:8;40849:20;:60::i;:::-;39270:1647;39142:1775;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:329::-;5974:6;6023:2;6011:9;6002:7;5998:23;5994:32;5991:119;;;6029:79;;:::i;:::-;5991:119;6149:1;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6120:117;5915:329;;;;:::o;6250:116::-;6320:21;6335:5;6320:21;:::i;:::-;6313:5;6310:32;6300:60;;6356:1;6353;6346:12;6300:60;6250:116;:::o;6372:133::-;6415:5;6453:6;6440:20;6431:29;;6469:30;6493:5;6469:30;:::i;:::-;6372:133;;;;:::o;6511:468::-;6576:6;6584;6633:2;6621:9;6612:7;6608:23;6604:32;6601:119;;;6639:79;;:::i;:::-;6601:119;6759:1;6784:53;6829:7;6820:6;6809:9;6805:22;6784:53;:::i;:::-;6774:63;;6730:117;6886:2;6912:50;6954:7;6945:6;6934:9;6930:22;6912:50;:::i;:::-;6902:60;;6857:115;6511:468;;;;;:::o;6985:117::-;7094:1;7091;7084:12;7108:117;7217:1;7214;7207:12;7231:180;7279:77;7276:1;7269:88;7376:4;7373:1;7366:15;7400:4;7397:1;7390:15;7417:281;7500:27;7522:4;7500:27;:::i;:::-;7492:6;7488:40;7630:6;7618:10;7615:22;7594:18;7582:10;7579:34;7576:62;7573:88;;;7641:18;;:::i;:::-;7573:88;7681:10;7677:2;7670:22;7460:238;7417:281;;:::o;7704:129::-;7738:6;7765:20;;:::i;:::-;7755:30;;7794:33;7822:4;7814:6;7794:33;:::i;:::-;7704:129;;;:::o;7839:307::-;7900:4;7990:18;7982:6;7979:30;7976:56;;;8012:18;;:::i;:::-;7976:56;8050:29;8072:6;8050:29;:::i;:::-;8042:37;;8134:4;8128;8124:15;8116:23;;7839:307;;;:::o;8152:154::-;8236:6;8231:3;8226;8213:30;8298:1;8289:6;8284:3;8280:16;8273:27;8152:154;;;:::o;8312:410::-;8389:5;8414:65;8430:48;8471:6;8430:48;:::i;:::-;8414:65;:::i;:::-;8405:74;;8502:6;8495:5;8488:21;8540:4;8533:5;8529:16;8578:3;8569:6;8564:3;8560:16;8557:25;8554:112;;;8585:79;;:::i;:::-;8554:112;8675:41;8709:6;8704:3;8699;8675:41;:::i;:::-;8395:327;8312:410;;;;;:::o;8741:338::-;8796:5;8845:3;8838:4;8830:6;8826:17;8822:27;8812:122;;8853:79;;:::i;:::-;8812:122;8970:6;8957:20;8995:78;9069:3;9061:6;9054:4;9046:6;9042:17;8995:78;:::i;:::-;8986:87;;8802:277;8741:338;;;;:::o;9085:943::-;9180:6;9188;9196;9204;9253:3;9241:9;9232:7;9228:23;9224:33;9221:120;;;9260:79;;:::i;:::-;9221:120;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:53;9578:7;9569:6;9558:9;9554:22;9533:53;:::i;:::-;9523:63;;9478:118;9635:2;9661:53;9706:7;9697:6;9686:9;9682:22;9661:53;:::i;:::-;9651:63;;9606:118;9791:2;9780:9;9776:18;9763:32;9822:18;9814:6;9811:30;9808:117;;;9844:79;;:::i;:::-;9808:117;9949:62;10003:7;9994:6;9983:9;9979:22;9949:62;:::i;:::-;9939:72;;9734:287;9085:943;;;;;;;:::o;10034:474::-;10102:6;10110;10159:2;10147:9;10138:7;10134:23;10130:32;10127:119;;;10165:79;;:::i;:::-;10127:119;10285:1;10310:53;10355:7;10346:6;10335:9;10331:22;10310:53;:::i;:::-;10300:63;;10256:117;10412:2;10438:53;10483:7;10474:6;10463:9;10459:22;10438:53;:::i;:::-;10428:63;;10383:118;10034:474;;;;;:::o;10514:180::-;10562:77;10559:1;10552:88;10659:4;10656:1;10649:15;10683:4;10680:1;10673:15;10700:320;10744:6;10781:1;10775:4;10771:12;10761:22;;10828:1;10822:4;10818:12;10849:18;10839:81;;10905:4;10897:6;10893:17;10883:27;;10839:81;10967:2;10959:6;10956:14;10936:18;10933:38;10930:84;;;10986:18;;:::i;:::-;10930:84;10751:269;10700:320;;;:::o;11026:182::-;11166:34;11162:1;11154:6;11150:14;11143:58;11026:182;:::o;11214:366::-;11356:3;11377:67;11441:2;11436:3;11377:67;:::i;:::-;11370:74;;11453:93;11542:3;11453:93;:::i;:::-;11571:2;11566:3;11562:12;11555:19;;11214:366;;;:::o;11586:419::-;11752:4;11790:2;11779:9;11775:18;11767:26;;11839:9;11833:4;11829:20;11825:1;11814:9;11810:17;11803:47;11867:131;11993:4;11867:131;:::i;:::-;11859:139;;11586:419;;;:::o;12011:240::-;12151:34;12147:1;12139:6;12135:14;12128:58;12220:23;12215:2;12207:6;12203:15;12196:48;12011:240;:::o;12257:366::-;12399:3;12420:67;12484:2;12479:3;12420:67;:::i;:::-;12413:74;;12496:93;12585:3;12496:93;:::i;:::-;12614:2;12609:3;12605:12;12598:19;;12257:366;;;:::o;12629:419::-;12795:4;12833:2;12822:9;12818:18;12810:26;;12882:9;12876:4;12872:20;12868:1;12857:9;12853:17;12846:47;12910:131;13036:4;12910:131;:::i;:::-;12902:139;;12629:419;;;:::o;13054:233::-;13194:34;13190:1;13182:6;13178:14;13171:58;13263:16;13258:2;13250:6;13246:15;13239:41;13054:233;:::o;13293:366::-;13435:3;13456:67;13520:2;13515:3;13456:67;:::i;:::-;13449:74;;13532:93;13621:3;13532:93;:::i;:::-;13650:2;13645:3;13641:12;13634:19;;13293:366;;;:::o;13665:419::-;13831:4;13869:2;13858:9;13854:18;13846:26;;13918:9;13912:4;13908:20;13904:1;13893:9;13889:17;13882:47;13946:131;14072:4;13946:131;:::i;:::-;13938:139;;13665:419;;;:::o;14090:239::-;14230:34;14226:1;14218:6;14214:14;14207:58;14299:22;14294:2;14286:6;14282:15;14275:47;14090:239;:::o;14335:366::-;14477:3;14498:67;14562:2;14557:3;14498:67;:::i;:::-;14491:74;;14574:93;14663:3;14574:93;:::i;:::-;14692:2;14687:3;14683:12;14676:19;;14335:366;;;:::o;14707:419::-;14873:4;14911:2;14900:9;14896:18;14888:26;;14960:9;14954:4;14950:20;14946:1;14935:9;14931:17;14924:47;14988:131;15114:4;14988:131;:::i;:::-;14980:139;;14707:419;;;:::o;15132:180::-;15180:77;15177:1;15170:88;15277:4;15274:1;15267:15;15301:4;15298:1;15291:15;15318:305;15358:3;15377:20;15395:1;15377:20;:::i;:::-;15372:25;;15411:20;15429:1;15411:20;:::i;:::-;15406:25;;15565:1;15497:66;15493:74;15490:1;15487:81;15484:107;;;15571:18;;:::i;:::-;15484:107;15615:1;15612;15608:9;15601:16;;15318:305;;;;:::o;15629:291::-;15769:34;15765:1;15757:6;15753:14;15746:58;15838:34;15833:2;15825:6;15821:15;15814:59;15907:5;15902:2;15894:6;15890:15;15883:30;15629:291;:::o;15926:366::-;16068:3;16089:67;16153:2;16148:3;16089:67;:::i;:::-;16082:74;;16165:93;16254:3;16165:93;:::i;:::-;16283:2;16278:3;16274:12;16267:19;;15926:366;;;:::o;16298:419::-;16464:4;16502:2;16491:9;16487:18;16479:26;;16551:9;16545:4;16541:20;16537:1;16526:9;16522:17;16515:47;16579:131;16705:4;16579:131;:::i;:::-;16571:139;;16298:419;;;:::o;16723:238::-;16863:34;16859:1;16851:6;16847:14;16840:58;16932:21;16927:2;16919:6;16915:15;16908:46;16723:238;:::o;16967:366::-;17109:3;17130:67;17194:2;17189:3;17130:67;:::i;:::-;17123:74;;17206:93;17295:3;17206:93;:::i;:::-;17324:2;17319:3;17315:12;17308:19;;16967:366;;;:::o;17339:419::-;17505:4;17543:2;17532:9;17528:18;17520:26;;17592:9;17586:4;17582:20;17578:1;17567:9;17563:17;17556:47;17620:131;17746:4;17620:131;:::i;:::-;17612:139;;17339:419;;;:::o;17764:348::-;17804:7;17827:20;17845:1;17827:20;:::i;:::-;17822:25;;17861:20;17879:1;17861:20;:::i;:::-;17856:25;;18049:1;17981:66;17977:74;17974:1;17971:81;17966:1;17959:9;17952:17;17948:105;17945:131;;;18056:18;;:::i;:::-;17945:131;18104:1;18101;18097:9;18086:20;;17764:348;;;;:::o;18118:233::-;18258:34;18254:1;18246:6;18242:14;18235:58;18327:16;18322:2;18314:6;18310:15;18303:41;18118:233;:::o;18357:366::-;18499:3;18520:67;18584:2;18579:3;18520:67;:::i;:::-;18513:74;;18596:93;18685:3;18596:93;:::i;:::-;18714:2;18709:3;18705:12;18698:19;;18357:366;;;:::o;18729:419::-;18895:4;18933:2;18922:9;18918:18;18910:26;;18982:9;18976:4;18972:20;18968:1;18957:9;18953:17;18946:47;19010:131;19136:4;19010:131;:::i;:::-;19002:139;;18729:419;;;:::o;19154:148::-;19256:11;19293:3;19278:18;;19154:148;;;;:::o;19308:377::-;19414:3;19442:39;19475:5;19442:39;:::i;:::-;19497:89;19579:6;19574:3;19497:89;:::i;:::-;19490:96;;19595:52;19640:6;19635:3;19628:4;19621:5;19617:16;19595:52;:::i;:::-;19672:6;19667:3;19663:16;19656:23;;19418:267;19308:377;;;;:::o;19691:435::-;19871:3;19893:95;19984:3;19975:6;19893:95;:::i;:::-;19886:102;;20005:95;20096:3;20087:6;20005:95;:::i;:::-;19998:102;;20117:3;20110:10;;19691:435;;;;;:::o;20132:225::-;20272:34;20268:1;20260:6;20256:14;20249:58;20341:8;20336:2;20328:6;20324:15;20317:33;20132:225;:::o;20363:366::-;20505:3;20526:67;20590:2;20585:3;20526:67;:::i;:::-;20519:74;;20602:93;20691:3;20602:93;:::i;:::-;20720:2;20715:3;20711:12;20704:19;;20363:366;;;:::o;20735:419::-;20901:4;20939:2;20928:9;20924:18;20916:26;;20988:9;20982:4;20978:20;20974:1;20963:9;20959:17;20952:47;21016:131;21142:4;21016:131;:::i;:::-;21008:139;;20735:419;;;:::o;21160:191::-;21200:4;21220:20;21238:1;21220:20;:::i;:::-;21215:25;;21254:20;21272:1;21254:20;:::i;:::-;21249:25;;21293:1;21290;21287:8;21284:34;;;21298:18;;:::i;:::-;21284:34;21343:1;21340;21336:9;21328:17;;21160:191;;;;:::o;21357:171::-;21396:3;21419:24;21437:5;21419:24;:::i;:::-;21410:33;;21465:4;21458:5;21455:15;21452:41;;;21473:18;;:::i;:::-;21452:41;21520:1;21513:5;21509:13;21502:20;;21357:171;;;:::o;21534:98::-;21585:6;21619:5;21613:12;21603:22;;21534:98;;;:::o;21638:168::-;21721:11;21755:6;21750:3;21743:19;21795:4;21790:3;21786:14;21771:29;;21638:168;;;;:::o;21812:360::-;21898:3;21926:38;21958:5;21926:38;:::i;:::-;21980:70;22043:6;22038:3;21980:70;:::i;:::-;21973:77;;22059:52;22104:6;22099:3;22092:4;22085:5;22081:16;22059:52;:::i;:::-;22136:29;22158:6;22136:29;:::i;:::-;22131:3;22127:39;22120:46;;21902:270;21812:360;;;;:::o;22178:640::-;22373:4;22411:3;22400:9;22396:19;22388:27;;22425:71;22493:1;22482:9;22478:17;22469:6;22425:71;:::i;:::-;22506:72;22574:2;22563:9;22559:18;22550:6;22506:72;:::i;:::-;22588;22656:2;22645:9;22641:18;22632:6;22588:72;:::i;:::-;22707:9;22701:4;22697:20;22692:2;22681:9;22677:18;22670:48;22735:76;22806:4;22797:6;22735:76;:::i;:::-;22727:84;;22178:640;;;;;;;:::o;22824:141::-;22880:5;22911:6;22905:13;22896:22;;22927:32;22953:5;22927:32;:::i;:::-;22824:141;;;;:::o;22971:349::-;23040:6;23089:2;23077:9;23068:7;23064:23;23060:32;23057:119;;;23095:79;;:::i;:::-;23057:119;23215:1;23240:63;23295:7;23286:6;23275:9;23271:22;23240:63;:::i;:::-;23230:73;;23186:127;22971:349;;;;:::o;23326:233::-;23365:3;23388:24;23406:5;23388:24;:::i;:::-;23379:33;;23434:66;23427:5;23424:77;23421:103;;;23504:18;;:::i;:::-;23421:103;23551:1;23544:5;23540:13;23533:20;;23326:233;;;:::o;23565:180::-;23613:77;23610:1;23603:88;23710:4;23707:1;23700:15;23734:4;23731:1;23724:15;23751:185;23791:1;23808:20;23826:1;23808:20;:::i;:::-;23803:25;;23842:20;23860:1;23842:20;:::i;:::-;23837:25;;23881:1;23871:35;;23886:18;;:::i;:::-;23871:35;23928:1;23925;23921:9;23916:14;;23751:185;;;;:::o;23942:176::-;23974:1;23991:20;24009:1;23991:20;:::i;:::-;23986:25;;24025:20;24043:1;24025:20;:::i;:::-;24020:25;;24064:1;24054:35;;24069:18;;:::i;:::-;24054:35;24110:1;24107;24103:9;24098:14;;23942:176;;;;:::o;24124:180::-;24172:77;24169:1;24162:88;24269:4;24266:1;24259:15;24293:4;24290:1;24283:15

Swarm Source

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