ETH Price: $3,081.65 (-6.72%)
Gas: 13 Gwei

Token

Ogretown (OG)
 

Overview

Max Total Supply

5,555 OG

Holders

1,179

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 OG
0xad122da81dd9c2849256a9e0ade3704583d59fb1
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:
Ogretown

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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


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

pragma solidity ^0.8.0;


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

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

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

// File: ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;









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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), 'ERC721A: balance query for the zero address');
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * 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) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @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) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

        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);
        require(to != owner, 'ERC721A: approval to current owner');

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            'ERC721A: approve caller is not owner nor approved for all'
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), 'ERC721A: approved query for nonexistent token');

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: approve to caller');

        _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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

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

    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;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            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);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @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 address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            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('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: goblintownai-contract.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());
    }
}

// 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() {
        _setOwner(_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 {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

//newerc.sol
pragma solidity ^0.8.0;


contract Ogretown is ERC721A, Ownable, Pausable, ReentrancyGuard {
    using Strings for uint256;
    string public baseURI;
    uint256 public cost = 0.008 ether;
    uint256 public maxSupply = 5555;
    uint256 public maxFree = 4555;
    uint256 public maxperAddressFreeLimit = 5;
    uint256 public maxperAddressPublicMint = 20;
    bool public saleIsActive = false;

    mapping(address => uint256) public addressFreeMintedBalance;

    constructor() ERC721A("Ogretown", "OG") {
        setBaseURI("ipfs://ipfs://welkumtoogretownkekweysyyessarrghgh/");

    }

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

    function MintF(uint256 _mintAmount) public payable nonReentrant{
		uint256 s = totalSupply();
        uint256 addressFreeMintedCount = addressFreeMintedBalance[msg.sender];
        require(saleIsActive, "Sale not active Ogre, don't be like stoopid elf");
        require(addressFreeMintedCount + _mintAmount <= maxperAddressFreeLimit, "max NFT per address exceeded, don't be greedy Ogre!");
		require(_mintAmount > 0, "Cant mint 0" );
		require(s + _mintAmount <= maxFree, "Cant go over supply" );
		for (uint256 i = 0; i < _mintAmount; ++i) {
            addressFreeMintedBalance[msg.sender]++;

		}
        _safeMint(msg.sender, _mintAmount);
		delete s;
        delete addressFreeMintedCount;
	}


    function mint(uint256 _mintAmount) public payable nonReentrant {
        uint256 s = totalSupply();
        require(saleIsActive, "Sale not active Ogre, don't be like stoopid elf");
        require(_mintAmount > 0, "Cant mint 0");
        require(_mintAmount <= maxperAddressPublicMint, "Cant mint more then maxmint" );
        require(s + _mintAmount <= maxSupply, "Cant go over supply");
        require(msg.value >= cost * _mintAmount);
        _safeMint(msg.sender, _mintAmount);
        delete s;
    }

    function gift(uint256[] calldata quantity, address[] calldata recipient)
        external
        onlyOwner
    {
        require(
            quantity.length == recipient.length,
            "Provide quantities and recipients"
        );
        uint256 totalQuantity = 0;
        uint256 s = totalSupply();
        for (uint256 i = 0; i < quantity.length; ++i) {
            totalQuantity += quantity[i];
        }
        require(s + totalQuantity <= maxSupply, "Too many");
        delete totalQuantity;
        for (uint256 i = 0; i < recipient.length; ++i) {
            _safeMint(recipient[i], quantity[i]);
        }
        delete s;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(tokenId), "ERC721Metadata: Nonexistent token");
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ".json"))
                : "";
    }

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

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

    function setmaxSupply(uint256 _newMaxSupply) public onlyOwner {
        require(_newMaxSupply <= maxSupply, "Cannot increase max supply");
        maxSupply = _newMaxSupply;
    }
     function setmaxFreeSupply(uint256 _newMaxFreeSupply) public onlyOwner {
               maxFree = _newMaxFreeSupply;
    }

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

    function setMaxperAddressPublicMint(uint256 _amount) public onlyOwner {
        maxperAddressPublicMint = _amount;
    }

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

    function withdrawAny(uint256 _amount) public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{value: _amount}("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"MintF","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressFreeMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxperAddressFreeLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxperAddressPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxperAddressFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxperAddressPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxFreeSupply","type":"uint256"}],"name":"setmaxFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawAny","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052661c6bf526340000600a556115b3600b556111cb600c556005600d556014600e55600f805460ff191690553480156200003c57600080fd5b50604080518082018252600881526727b3b932ba37bbb760c11b6020808301918252835180850190945260028452614f4760f01b9084015281519192916200008791600191620001c4565b5080516200009d906002906020840190620001c4565b505050620000ba620000b4620000f760201b60201c565b620000fb565b6007805460ff60a01b19169055600160085560408051606081019091526032808252620000f1919062002c7560208301396200014d565b620002dc565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000157620000f7565b6001600160a01b03166200016a620001b5565b6001600160a01b0316146200019c5760405162461bcd60e51b815260040162000193906200026a565b60405180910390fd5b8051620001b1906009906020840190620001c4565b5050565b6007546001600160a01b031690565b828054620001d2906200029f565b90600052602060002090601f016020900481019282620001f6576000855562000241565b82601f106200021157805160ff191683800117855562000241565b8280016001018555821562000241579182015b828111156200024157825182559160200191906001019062000224565b506200024f92915062000253565b5090565b5b808211156200024f576000815560010162000254565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600281046001821680620002b457607f821691505b60208210811415620002d657634e487b7160e01b600052602260045260246000fd5b50919050565b61298980620002ec6000396000f3fe60806040526004361061023b5760003560e01c80636352211e1161012e578063a22cb465116100ab578063d903910b1161006f578063d903910b1461061e578063dc4e66b514610631578063e985e9c514610651578063eb8d244414610671578063f2fde38b146106865761023b565b8063a22cb46514610589578063b88d4fde146105a9578063bde12d73146105c9578063c87b56dd146105e9578063d5abeb01146106095761023b565b80637c6b172d116100f25780637c6b172d1461050c5780638da5cb5b1461052c57806395d89b411461054157806396ea3a4714610556578063a0712d68146105765761023b565b80636352211e1461048f5780636c0360eb146104af57806370a08231146104c4578063715018a6146104e457806377ad99f0146104f95761023b565b806334918dfd116101bc578063485a68a311610180578063485a68a3146104105780634f6ccce71461042557806355f804b31461044557806356569a1d146104655780635c975abb1461047a5761023b565b806334918dfd1461039e57806334c8fd75146103b35780633ccfd60b146103c857806342842e0e146103d057806344a0d68a146103f05761023b565b806313faede61161020357806313faede61461030757806318160ddd14610329578063228025e81461033e57806323b872dd1461035e5780632f745c591461037e5761023b565b806301ffc9a714610240578063022d67dd1461027657806306fdde0314610298578063081812fc146102ba578063095ea7b3146102e7575b600080fd5b34801561024c57600080fd5b5061026061025b366004611f8b565b6106a6565b60405161026d91906120e0565b60405180910390f35b34801561028257600080fd5b50610296610291366004612009565b610709565b005b3480156102a457600080fd5b506102ad610756565b60405161026d91906120eb565b3480156102c657600080fd5b506102da6102d5366004612009565b6107e8565b60405161026d919061208f565b3480156102f357600080fd5b50610296610302366004611ef9565b61082b565b34801561031357600080fd5b5061031c6108c4565b60405161026d91906127fa565b34801561033557600080fd5b5061031c6108ca565b34801561034a57600080fd5b50610296610359366004612009565b6108d0565b34801561036a57600080fd5b50610296610379366004611e0b565b610936565b34801561038a57600080fd5b5061031c610399366004611ef9565b610941565b3480156103aa57600080fd5b50610296610a2c565b3480156103bf57600080fd5b5061031c610a7f565b610296610a85565b3480156103dc57600080fd5b506102966103eb366004611e0b565b610b30565b3480156103fc57600080fd5b5061029661040b366004612009565b610b4b565b34801561041c57600080fd5b5061031c610b8f565b34801561043157600080fd5b5061031c610440366004612009565b610b95565b34801561045157600080fd5b50610296610460366004611fc3565b610bc1565b34801561047157600080fd5b5061031c610c17565b34801561048657600080fd5b50610260610c1d565b34801561049b57600080fd5b506102da6104aa366004612009565b610c2d565b3480156104bb57600080fd5b506102ad610c3f565b3480156104d057600080fd5b5061031c6104df366004611dbf565b610ccd565b3480156104f057600080fd5b50610296610d1a565b610296610507366004612009565b610d65565b34801561051857600080fd5b5061031c610527366004611dbf565b610e0d565b34801561053857600080fd5b506102da610e1f565b34801561054d57600080fd5b506102ad610e2e565b34801561056257600080fd5b50610296610571366004611f22565b610e3d565b610296610584366004612009565b610faf565b34801561059557600080fd5b506102966105a4366004611ebf565b6110a0565b3480156105b557600080fd5b506102966105c4366004611e46565b61116e565b3480156105d557600080fd5b506102966105e4366004612009565b6111a7565b3480156105f557600080fd5b506102ad610604366004612009565b6111eb565b34801561061557600080fd5b5061031c61126e565b61029661062c366004612009565b611274565b34801561063d57600080fd5b5061029661064c366004612009565b6113a3565b34801561065d57600080fd5b5061026061066c366004611dd9565b6113e7565b34801561067d57600080fd5b50610260611415565b34801561069257600080fd5b506102966106a1366004611dbf565b61141e565b60006001600160e01b031982166380ac58cd60e01b14806106d757506001600160e01b03198216635b5e139f60e01b145b806106f257506001600160e01b0319821663780e9d6360e01b145b8061070157506107018261148c565b90505b919050565b6107116114a5565b6001600160a01b0316610722610e1f565b6001600160a01b0316146107515760405162461bcd60e51b815260040161074890612473565b60405180910390fd5b600e55565b60606001805461076590612891565b80601f016020809104026020016040519081016040528092919081815260200182805461079190612891565b80156107de5780601f106107b3576101008083540402835291602001916107de565b820191906000526020600020905b8154815290600101906020018083116107c157829003601f168201915b5050505050905090565b60006107f3826114a9565b61080f5760405162461bcd60e51b8152600401610748906127ad565b506000908152600560205260409020546001600160a01b031690565b600061083682610c2d565b9050806001600160a01b0316836001600160a01b0316141561086a5760405162461bcd60e51b815260040161074890612531565b806001600160a01b031661087c6114a5565b6001600160a01b0316148061089857506108988161066c6114a5565b6108b45760405162461bcd60e51b8152600401610748906122ff565b6108bf8383836114b0565b505050565b600a5481565b60005490565b6108d86114a5565b6001600160a01b03166108e9610e1f565b6001600160a01b03161461090f5760405162461bcd60e51b815260040161074890612473565b600b548111156109315760405162461bcd60e51b81526004016107489061235c565b600b55565b6108bf83838361150c565b600061094c83610ccd565b821061096a5760405162461bcd60e51b8152600401610748906120fe565b60006109746108ca565b905060008060005b83811015610a0d576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109cf57805192505b876001600160a01b0316836001600160a01b03161415610a0457868414156109fd57509350610a2692505050565b6001909301925b5060010161097c565b5060405162461bcd60e51b815260040161074890612728565b92915050565b610a346114a5565b6001600160a01b0316610a45610e1f565b6001600160a01b031614610a6b5760405162461bcd60e51b815260040161074890612473565b600f805460ff19811660ff90911615179055565b600e5481565b610a8d6114a5565b6001600160a01b0316610a9e610e1f565b6001600160a01b031614610ac45760405162461bcd60e51b815260040161074890612473565b6000336001600160a01b031647604051610add9061208c565b60006040518083038185875af1925050503d8060008114610b1a576040519150601f19603f3d011682016040523d82523d6000602084013e610b1f565b606091505b5050905080610b2d57600080fd5b50565b6108bf8383836040518060200160405280600081525061116e565b610b536114a5565b6001600160a01b0316610b64610e1f565b6001600160a01b031614610b8a5760405162461bcd60e51b815260040161074890612473565b600a55565b600c5481565b6000610b9f6108ca565b8210610bbd5760405162461bcd60e51b815260040161074890612236565b5090565b610bc96114a5565b6001600160a01b0316610bda610e1f565b6001600160a01b031614610c005760405162461bcd60e51b815260040161074890612473565b8051610c13906009906020840190611c3d565b5050565b600d5481565b600754600160a01b900460ff1690565b6000610c3882611779565b5192915050565b60098054610c4c90612891565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7890612891565b8015610cc55780601f10610c9a57610100808354040283529160200191610cc5565b820191906000526020600020905b815481529060010190602001808311610ca857829003601f168201915b505050505081565b60006001600160a01b038216610cf55760405162461bcd60e51b815260040161074890612393565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610d226114a5565b6001600160a01b0316610d33610e1f565b6001600160a01b031614610d595760405162461bcd60e51b815260040161074890612473565b610d636000611801565b565b610d6d6114a5565b6001600160a01b0316610d7e610e1f565b6001600160a01b031614610da45760405162461bcd60e51b815260040161074890612473565b6000336001600160a01b031682604051610dbd9061208c565b60006040518083038185875af1925050503d8060008114610dfa576040519150601f19603f3d011682016040523d82523d6000602084013e610dff565b606091505b5050905080610c1357600080fd5b60106020526000908152604090205481565b6007546001600160a01b031690565b60606002805461076590612891565b610e456114a5565b6001600160a01b0316610e56610e1f565b6001600160a01b031614610e7c5760405162461bcd60e51b815260040161074890612473565b828114610e9b5760405162461bcd60e51b8152600401610748906122be565b600080610ea66108ca565b905060005b85811015610ef757868682818110610ed357634e487b7160e01b600052603260045260246000fd5b9050602002013583610ee59190612803565b9250610ef0816128cc565b9050610eab565b50600b54610f058383612803565b1115610f235760405162461bcd60e51b815260040161074890612451565b6000915060005b83811015610fa657610f96858583818110610f5557634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610f6a9190611dbf565b888884818110610f8a57634e487b7160e01b600052603260045260246000fd5b90506020020135611853565b610f9f816128cc565b9050610f2a565b50505050505050565b60026008541415610fd25760405162461bcd60e51b815260040161074890612776565b60026008556000610fe16108ca565b600f5490915060ff166110065760405162461bcd60e51b815260040161074890612691565b600082116110265760405162461bcd60e51b815260040161074890612140565b600e548211156110485760405162461bcd60e51b8152600401610748906125c6565b600b546110558383612803565b11156110735760405162461bcd60e51b8152600401610748906123de565b81600a54611081919061282f565b34101561108d57600080fd5b6110973383611853565b50506001600855565b6110a86114a5565b6001600160a01b0316826001600160a01b031614156110d95760405162461bcd60e51b8152600401610748906124a8565b80600660006110e66114a5565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561112a6114a5565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161116291906120e0565b60405180910390a35050565b61117984848461150c565b6111858484848461186d565b6111a15760405162461bcd60e51b815260040161074890612573565b50505050565b6111af6114a5565b6001600160a01b03166111c0610e1f565b6001600160a01b0316146111e65760405162461bcd60e51b815260040161074890612473565b600c55565b60606111f6826114a9565b6112125760405162461bcd60e51b815260040161074890612165565b600061121c611989565b9050600081511161123c5760405180602001604052806000815250611267565b8061124684611998565b60405160200161125792919061204d565b6040516020818303038152906040525b9392505050565b600b5481565b600260085414156112975760405162461bcd60e51b815260040161074890612776565b600260085560006112a66108ca565b33600090815260106020526040902054600f549192509060ff166112dc5760405162461bcd60e51b815260040161074890612691565b600d546112e98483612803565b11156113075760405162461bcd60e51b8152600401610748906125fd565b600083116113275760405162461bcd60e51b815260040161074890612140565b600c546113348484612803565b11156113525760405162461bcd60e51b8152600401610748906123de565b60005b8381101561138e57336000908152601060205260408120805491611378836128cc565b919050555080611387906128cc565b9050611355565b506113993384611853565b5050600160085550565b6113ab6114a5565b6001600160a01b03166113bc610e1f565b6001600160a01b0316146113e25760405162461bcd60e51b815260040161074890612473565b600d55565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b600f5460ff1681565b6114266114a5565b6001600160a01b0316611437610e1f565b6001600160a01b03161461145d5760405162461bcd60e51b815260040161074890612473565b6001600160a01b0381166114835760405162461bcd60e51b8152600401610748906121a6565b610b2d81611801565b6001600160e01b031981166301ffc9a760e01b14919050565b3390565b6000541190565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061151782611779565b9050600081600001516001600160a01b03166115316114a5565b6001600160a01b0316148061156657506115496114a5565b6001600160a01b031661155b846107e8565b6001600160a01b0316145b8061157a5750815161157a9061066c6114a5565b9050806115995760405162461bcd60e51b8152600401610748906124df565b846001600160a01b031682600001516001600160a01b0316146115ce5760405162461bcd60e51b81526004016107489061240b565b6001600160a01b0384166115f45760405162461bcd60e51b815260040161074890612279565b61160185858560016111a1565b61161160008484600001516114b0565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160a01b03191690911767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff1602179055908601808352912054909116611723576116c5816114a9565b15611723578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b0267ffffffffffffffff60a01b196001600160a01b039094166001600160a01b031990931692909217929092161790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461177285858560016111a1565b5050505050565b611781611cbd565b61178a826114a9565b6117a65760405162461bcd60e51b8152600401610748906121ec565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156117f75791506107049050565b50600019016117a8565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c13828260405180602001604052806000815250611ab3565b6000611881846001600160a01b0316611ac0565b1561197d57836001600160a01b031663150b7a0261189d6114a5565b8786866040518563ffffffff1660e01b81526004016118bf94939291906120a3565b602060405180830381600087803b1580156118d957600080fd5b505af1925050508015611909575060408051601f3d908101601f1916820190925261190691810190611fa7565b60015b611963573d808015611937576040519150601f19603f3d011682016040523d82523d6000602084013e61193c565b606091505b50805161195b5760405162461bcd60e51b815260040161074890612573565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611981565b5060015b949350505050565b60606009805461076590612891565b6060816119bd57506040805180820190915260018152600360fc1b6020820152610704565b8160005b81156119e757806119d1816128cc565b91506119e09050600a8361281b565b91506119c1565b60008167ffffffffffffffff811115611a1057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a3a576020820181803683370190505b5090505b841561198157611a4f60018361284e565b9150611a5c600a866128e7565b611a67906030612803565b60f81b818381518110611a8a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611aac600a8661281b565b9450611a3e565b6108bf8383836001611acf565b6001600160a01b03163b151590565b6000546001600160a01b038516611af85760405162461bcd60e51b815260040161074890612650565b83611b155760405162461bcd60e51b8152600401610748906126e0565b611b2260008683876111a1565b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160801b039182168b01821617808216600160801b9182900483168c01909216021790558483526003909152812080546001600160a01b03191690921767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790915581905b85811015611c2b5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611c1f57611c03600088848861186d565b611c1f5760405162461bcd60e51b815260040161074890612573565b60019182019101611bb0565b506000908155611772908683876111a1565b828054611c4990612891565b90600052602060002090601f016020900481019282611c6b5760008555611cb1565b82601f10611c8457805160ff1916838001178555611cb1565b82800160010185558215611cb1579182015b82811115611cb1578251825591602001919060010190611c96565b50610bbd929150611cd4565b604080518082019091526000808252602082015290565b5b80821115610bbd5760008155600101611cd5565b600067ffffffffffffffff80841115611d0457611d04612927565b604051601f8501601f19908116603f01168101908282118183101715611d2c57611d2c612927565b81604052809350858152868686011115611d4557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461070457600080fd5b60008083601f840112611d87578081fd5b50813567ffffffffffffffff811115611d9e578182fd5b6020830191508360208083028501011115611db857600080fd5b9250929050565b600060208284031215611dd0578081fd5b61126782611d5f565b60008060408385031215611deb578081fd5b611df483611d5f565b9150611e0260208401611d5f565b90509250929050565b600080600060608486031215611e1f578081fd5b611e2884611d5f565b9250611e3660208501611d5f565b9150604084013590509250925092565b60008060008060808587031215611e5b578081fd5b611e6485611d5f565b9350611e7260208601611d5f565b925060408501359150606085013567ffffffffffffffff811115611e94578182fd5b8501601f81018713611ea4578182fd5b611eb387823560208401611ce9565b91505092959194509250565b60008060408385031215611ed1578182fd5b611eda83611d5f565b915060208301358015158114611eee578182fd5b809150509250929050565b60008060408385031215611f0b578182fd5b611f1483611d5f565b946020939093013593505050565b60008060008060408587031215611f37578384fd5b843567ffffffffffffffff80821115611f4e578586fd5b611f5a88838901611d76565b90965094506020870135915080821115611f72578384fd5b50611f7f87828801611d76565b95989497509550505050565b600060208284031215611f9c578081fd5b81356112678161293d565b600060208284031215611fb8578081fd5b81516112678161293d565b600060208284031215611fd4578081fd5b813567ffffffffffffffff811115611fea578182fd5b8201601f81018413611ffa578182fd5b61198184823560208401611ce9565b60006020828403121561201a578081fd5b5035919050565b60008151808452612039816020860160208601612865565b601f01601f19169290920160200192915050565b6000835161205f818460208801612865565b835190830190612073818360208801612865565b64173539b7b760d91b9101908152600501949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120d690830184612021565b9695505050505050565b901515815260200190565b6000602082526112676020830184612021565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252600b908201526a043616e74206d696e7420360ac1b604082015260600190565b60208082526021908201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656040820152603760f91b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526021908201527f50726f76696465207175616e74697469657320616e6420726563697069656e746040820152607360f81b606082015260800190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252601a908201527f43616e6e6f7420696e637265617365206d617820737570706c79000000000000604082015260600190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526013908201527243616e7420676f206f76657220737570706c7960681b604082015260600190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b602080825260089082015267546f6f206d616e7960c01b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601b908201527f43616e74206d696e74206d6f7265207468656e206d61786d696e740000000000604082015260600190565b60208082526033908201527f6d6178204e46542070657220616464726573732065786365656465642c20646f6040820152726e277420626520677265656479204f6772652160681b606082015260800190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252602f908201527f53616c65206e6f7420616374697665204f6772652c20646f6e2774206265206c60408201526e34b5b29039ba37b7b834b21032b63360891b606082015260800190565b60208082526028908201527f455243373231413a207175616e74697479206d75737420626520677265617465604082015267072207468616e20360c41b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b90815260200190565b60008219821115612816576128166128fb565b500190565b60008261282a5761282a612911565b500490565b6000816000190483118215151615612849576128496128fb565b500290565b600082821015612860576128606128fb565b500390565b60005b83811015612880578181015183820152602001612868565b838111156111a15750506000910152565b6002810460018216806128a557607f821691505b602082108114156128c657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128e0576128e06128fb565b5060010190565b6000826128f6576128f6612911565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b2d57600080fdfea264697066735822122036ba58ce6bc9c5efa68bf5873b2fb80112c23684214c38e9b70b5e6756346d4464736f6c63430008010033697066733a2f2f697066733a2f2f77656c6b756d746f6f677265746f776e6b656b776579737979657373617272676867682f

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80636352211e1161012e578063a22cb465116100ab578063d903910b1161006f578063d903910b1461061e578063dc4e66b514610631578063e985e9c514610651578063eb8d244414610671578063f2fde38b146106865761023b565b8063a22cb46514610589578063b88d4fde146105a9578063bde12d73146105c9578063c87b56dd146105e9578063d5abeb01146106095761023b565b80637c6b172d116100f25780637c6b172d1461050c5780638da5cb5b1461052c57806395d89b411461054157806396ea3a4714610556578063a0712d68146105765761023b565b80636352211e1461048f5780636c0360eb146104af57806370a08231146104c4578063715018a6146104e457806377ad99f0146104f95761023b565b806334918dfd116101bc578063485a68a311610180578063485a68a3146104105780634f6ccce71461042557806355f804b31461044557806356569a1d146104655780635c975abb1461047a5761023b565b806334918dfd1461039e57806334c8fd75146103b35780633ccfd60b146103c857806342842e0e146103d057806344a0d68a146103f05761023b565b806313faede61161020357806313faede61461030757806318160ddd14610329578063228025e81461033e57806323b872dd1461035e5780632f745c591461037e5761023b565b806301ffc9a714610240578063022d67dd1461027657806306fdde0314610298578063081812fc146102ba578063095ea7b3146102e7575b600080fd5b34801561024c57600080fd5b5061026061025b366004611f8b565b6106a6565b60405161026d91906120e0565b60405180910390f35b34801561028257600080fd5b50610296610291366004612009565b610709565b005b3480156102a457600080fd5b506102ad610756565b60405161026d91906120eb565b3480156102c657600080fd5b506102da6102d5366004612009565b6107e8565b60405161026d919061208f565b3480156102f357600080fd5b50610296610302366004611ef9565b61082b565b34801561031357600080fd5b5061031c6108c4565b60405161026d91906127fa565b34801561033557600080fd5b5061031c6108ca565b34801561034a57600080fd5b50610296610359366004612009565b6108d0565b34801561036a57600080fd5b50610296610379366004611e0b565b610936565b34801561038a57600080fd5b5061031c610399366004611ef9565b610941565b3480156103aa57600080fd5b50610296610a2c565b3480156103bf57600080fd5b5061031c610a7f565b610296610a85565b3480156103dc57600080fd5b506102966103eb366004611e0b565b610b30565b3480156103fc57600080fd5b5061029661040b366004612009565b610b4b565b34801561041c57600080fd5b5061031c610b8f565b34801561043157600080fd5b5061031c610440366004612009565b610b95565b34801561045157600080fd5b50610296610460366004611fc3565b610bc1565b34801561047157600080fd5b5061031c610c17565b34801561048657600080fd5b50610260610c1d565b34801561049b57600080fd5b506102da6104aa366004612009565b610c2d565b3480156104bb57600080fd5b506102ad610c3f565b3480156104d057600080fd5b5061031c6104df366004611dbf565b610ccd565b3480156104f057600080fd5b50610296610d1a565b610296610507366004612009565b610d65565b34801561051857600080fd5b5061031c610527366004611dbf565b610e0d565b34801561053857600080fd5b506102da610e1f565b34801561054d57600080fd5b506102ad610e2e565b34801561056257600080fd5b50610296610571366004611f22565b610e3d565b610296610584366004612009565b610faf565b34801561059557600080fd5b506102966105a4366004611ebf565b6110a0565b3480156105b557600080fd5b506102966105c4366004611e46565b61116e565b3480156105d557600080fd5b506102966105e4366004612009565b6111a7565b3480156105f557600080fd5b506102ad610604366004612009565b6111eb565b34801561061557600080fd5b5061031c61126e565b61029661062c366004612009565b611274565b34801561063d57600080fd5b5061029661064c366004612009565b6113a3565b34801561065d57600080fd5b5061026061066c366004611dd9565b6113e7565b34801561067d57600080fd5b50610260611415565b34801561069257600080fd5b506102966106a1366004611dbf565b61141e565b60006001600160e01b031982166380ac58cd60e01b14806106d757506001600160e01b03198216635b5e139f60e01b145b806106f257506001600160e01b0319821663780e9d6360e01b145b8061070157506107018261148c565b90505b919050565b6107116114a5565b6001600160a01b0316610722610e1f565b6001600160a01b0316146107515760405162461bcd60e51b815260040161074890612473565b60405180910390fd5b600e55565b60606001805461076590612891565b80601f016020809104026020016040519081016040528092919081815260200182805461079190612891565b80156107de5780601f106107b3576101008083540402835291602001916107de565b820191906000526020600020905b8154815290600101906020018083116107c157829003601f168201915b5050505050905090565b60006107f3826114a9565b61080f5760405162461bcd60e51b8152600401610748906127ad565b506000908152600560205260409020546001600160a01b031690565b600061083682610c2d565b9050806001600160a01b0316836001600160a01b0316141561086a5760405162461bcd60e51b815260040161074890612531565b806001600160a01b031661087c6114a5565b6001600160a01b0316148061089857506108988161066c6114a5565b6108b45760405162461bcd60e51b8152600401610748906122ff565b6108bf8383836114b0565b505050565b600a5481565b60005490565b6108d86114a5565b6001600160a01b03166108e9610e1f565b6001600160a01b03161461090f5760405162461bcd60e51b815260040161074890612473565b600b548111156109315760405162461bcd60e51b81526004016107489061235c565b600b55565b6108bf83838361150c565b600061094c83610ccd565b821061096a5760405162461bcd60e51b8152600401610748906120fe565b60006109746108ca565b905060008060005b83811015610a0d576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109cf57805192505b876001600160a01b0316836001600160a01b03161415610a0457868414156109fd57509350610a2692505050565b6001909301925b5060010161097c565b5060405162461bcd60e51b815260040161074890612728565b92915050565b610a346114a5565b6001600160a01b0316610a45610e1f565b6001600160a01b031614610a6b5760405162461bcd60e51b815260040161074890612473565b600f805460ff19811660ff90911615179055565b600e5481565b610a8d6114a5565b6001600160a01b0316610a9e610e1f565b6001600160a01b031614610ac45760405162461bcd60e51b815260040161074890612473565b6000336001600160a01b031647604051610add9061208c565b60006040518083038185875af1925050503d8060008114610b1a576040519150601f19603f3d011682016040523d82523d6000602084013e610b1f565b606091505b5050905080610b2d57600080fd5b50565b6108bf8383836040518060200160405280600081525061116e565b610b536114a5565b6001600160a01b0316610b64610e1f565b6001600160a01b031614610b8a5760405162461bcd60e51b815260040161074890612473565b600a55565b600c5481565b6000610b9f6108ca565b8210610bbd5760405162461bcd60e51b815260040161074890612236565b5090565b610bc96114a5565b6001600160a01b0316610bda610e1f565b6001600160a01b031614610c005760405162461bcd60e51b815260040161074890612473565b8051610c13906009906020840190611c3d565b5050565b600d5481565b600754600160a01b900460ff1690565b6000610c3882611779565b5192915050565b60098054610c4c90612891565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7890612891565b8015610cc55780601f10610c9a57610100808354040283529160200191610cc5565b820191906000526020600020905b815481529060010190602001808311610ca857829003601f168201915b505050505081565b60006001600160a01b038216610cf55760405162461bcd60e51b815260040161074890612393565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610d226114a5565b6001600160a01b0316610d33610e1f565b6001600160a01b031614610d595760405162461bcd60e51b815260040161074890612473565b610d636000611801565b565b610d6d6114a5565b6001600160a01b0316610d7e610e1f565b6001600160a01b031614610da45760405162461bcd60e51b815260040161074890612473565b6000336001600160a01b031682604051610dbd9061208c565b60006040518083038185875af1925050503d8060008114610dfa576040519150601f19603f3d011682016040523d82523d6000602084013e610dff565b606091505b5050905080610c1357600080fd5b60106020526000908152604090205481565b6007546001600160a01b031690565b60606002805461076590612891565b610e456114a5565b6001600160a01b0316610e56610e1f565b6001600160a01b031614610e7c5760405162461bcd60e51b815260040161074890612473565b828114610e9b5760405162461bcd60e51b8152600401610748906122be565b600080610ea66108ca565b905060005b85811015610ef757868682818110610ed357634e487b7160e01b600052603260045260246000fd5b9050602002013583610ee59190612803565b9250610ef0816128cc565b9050610eab565b50600b54610f058383612803565b1115610f235760405162461bcd60e51b815260040161074890612451565b6000915060005b83811015610fa657610f96858583818110610f5557634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610f6a9190611dbf565b888884818110610f8a57634e487b7160e01b600052603260045260246000fd5b90506020020135611853565b610f9f816128cc565b9050610f2a565b50505050505050565b60026008541415610fd25760405162461bcd60e51b815260040161074890612776565b60026008556000610fe16108ca565b600f5490915060ff166110065760405162461bcd60e51b815260040161074890612691565b600082116110265760405162461bcd60e51b815260040161074890612140565b600e548211156110485760405162461bcd60e51b8152600401610748906125c6565b600b546110558383612803565b11156110735760405162461bcd60e51b8152600401610748906123de565b81600a54611081919061282f565b34101561108d57600080fd5b6110973383611853565b50506001600855565b6110a86114a5565b6001600160a01b0316826001600160a01b031614156110d95760405162461bcd60e51b8152600401610748906124a8565b80600660006110e66114a5565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561112a6114a5565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161116291906120e0565b60405180910390a35050565b61117984848461150c565b6111858484848461186d565b6111a15760405162461bcd60e51b815260040161074890612573565b50505050565b6111af6114a5565b6001600160a01b03166111c0610e1f565b6001600160a01b0316146111e65760405162461bcd60e51b815260040161074890612473565b600c55565b60606111f6826114a9565b6112125760405162461bcd60e51b815260040161074890612165565b600061121c611989565b9050600081511161123c5760405180602001604052806000815250611267565b8061124684611998565b60405160200161125792919061204d565b6040516020818303038152906040525b9392505050565b600b5481565b600260085414156112975760405162461bcd60e51b815260040161074890612776565b600260085560006112a66108ca565b33600090815260106020526040902054600f549192509060ff166112dc5760405162461bcd60e51b815260040161074890612691565b600d546112e98483612803565b11156113075760405162461bcd60e51b8152600401610748906125fd565b600083116113275760405162461bcd60e51b815260040161074890612140565b600c546113348484612803565b11156113525760405162461bcd60e51b8152600401610748906123de565b60005b8381101561138e57336000908152601060205260408120805491611378836128cc565b919050555080611387906128cc565b9050611355565b506113993384611853565b5050600160085550565b6113ab6114a5565b6001600160a01b03166113bc610e1f565b6001600160a01b0316146113e25760405162461bcd60e51b815260040161074890612473565b600d55565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b600f5460ff1681565b6114266114a5565b6001600160a01b0316611437610e1f565b6001600160a01b03161461145d5760405162461bcd60e51b815260040161074890612473565b6001600160a01b0381166114835760405162461bcd60e51b8152600401610748906121a6565b610b2d81611801565b6001600160e01b031981166301ffc9a760e01b14919050565b3390565b6000541190565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061151782611779565b9050600081600001516001600160a01b03166115316114a5565b6001600160a01b0316148061156657506115496114a5565b6001600160a01b031661155b846107e8565b6001600160a01b0316145b8061157a5750815161157a9061066c6114a5565b9050806115995760405162461bcd60e51b8152600401610748906124df565b846001600160a01b031682600001516001600160a01b0316146115ce5760405162461bcd60e51b81526004016107489061240b565b6001600160a01b0384166115f45760405162461bcd60e51b815260040161074890612279565b61160185858560016111a1565b61161160008484600001516114b0565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160a01b03191690911767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff1602179055908601808352912054909116611723576116c5816114a9565b15611723578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b0267ffffffffffffffff60a01b196001600160a01b039094166001600160a01b031990931692909217929092161790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461177285858560016111a1565b5050505050565b611781611cbd565b61178a826114a9565b6117a65760405162461bcd60e51b8152600401610748906121ec565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156117f75791506107049050565b50600019016117a8565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c13828260405180602001604052806000815250611ab3565b6000611881846001600160a01b0316611ac0565b1561197d57836001600160a01b031663150b7a0261189d6114a5565b8786866040518563ffffffff1660e01b81526004016118bf94939291906120a3565b602060405180830381600087803b1580156118d957600080fd5b505af1925050508015611909575060408051601f3d908101601f1916820190925261190691810190611fa7565b60015b611963573d808015611937576040519150601f19603f3d011682016040523d82523d6000602084013e61193c565b606091505b50805161195b5760405162461bcd60e51b815260040161074890612573565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611981565b5060015b949350505050565b60606009805461076590612891565b6060816119bd57506040805180820190915260018152600360fc1b6020820152610704565b8160005b81156119e757806119d1816128cc565b91506119e09050600a8361281b565b91506119c1565b60008167ffffffffffffffff811115611a1057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a3a576020820181803683370190505b5090505b841561198157611a4f60018361284e565b9150611a5c600a866128e7565b611a67906030612803565b60f81b818381518110611a8a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611aac600a8661281b565b9450611a3e565b6108bf8383836001611acf565b6001600160a01b03163b151590565b6000546001600160a01b038516611af85760405162461bcd60e51b815260040161074890612650565b83611b155760405162461bcd60e51b8152600401610748906126e0565b611b2260008683876111a1565b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160801b039182168b01821617808216600160801b9182900483168c01909216021790558483526003909152812080546001600160a01b03191690921767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790915581905b85811015611c2b5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611c1f57611c03600088848861186d565b611c1f5760405162461bcd60e51b815260040161074890612573565b60019182019101611bb0565b506000908155611772908683876111a1565b828054611c4990612891565b90600052602060002090601f016020900481019282611c6b5760008555611cb1565b82601f10611c8457805160ff1916838001178555611cb1565b82800160010185558215611cb1579182015b82811115611cb1578251825591602001919060010190611c96565b50610bbd929150611cd4565b604080518082019091526000808252602082015290565b5b80821115610bbd5760008155600101611cd5565b600067ffffffffffffffff80841115611d0457611d04612927565b604051601f8501601f19908116603f01168101908282118183101715611d2c57611d2c612927565b81604052809350858152868686011115611d4557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461070457600080fd5b60008083601f840112611d87578081fd5b50813567ffffffffffffffff811115611d9e578182fd5b6020830191508360208083028501011115611db857600080fd5b9250929050565b600060208284031215611dd0578081fd5b61126782611d5f565b60008060408385031215611deb578081fd5b611df483611d5f565b9150611e0260208401611d5f565b90509250929050565b600080600060608486031215611e1f578081fd5b611e2884611d5f565b9250611e3660208501611d5f565b9150604084013590509250925092565b60008060008060808587031215611e5b578081fd5b611e6485611d5f565b9350611e7260208601611d5f565b925060408501359150606085013567ffffffffffffffff811115611e94578182fd5b8501601f81018713611ea4578182fd5b611eb387823560208401611ce9565b91505092959194509250565b60008060408385031215611ed1578182fd5b611eda83611d5f565b915060208301358015158114611eee578182fd5b809150509250929050565b60008060408385031215611f0b578182fd5b611f1483611d5f565b946020939093013593505050565b60008060008060408587031215611f37578384fd5b843567ffffffffffffffff80821115611f4e578586fd5b611f5a88838901611d76565b90965094506020870135915080821115611f72578384fd5b50611f7f87828801611d76565b95989497509550505050565b600060208284031215611f9c578081fd5b81356112678161293d565b600060208284031215611fb8578081fd5b81516112678161293d565b600060208284031215611fd4578081fd5b813567ffffffffffffffff811115611fea578182fd5b8201601f81018413611ffa578182fd5b61198184823560208401611ce9565b60006020828403121561201a578081fd5b5035919050565b60008151808452612039816020860160208601612865565b601f01601f19169290920160200192915050565b6000835161205f818460208801612865565b835190830190612073818360208801612865565b64173539b7b760d91b9101908152600501949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120d690830184612021565b9695505050505050565b901515815260200190565b6000602082526112676020830184612021565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252600b908201526a043616e74206d696e7420360ac1b604082015260600190565b60208082526021908201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656040820152603760f91b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526021908201527f50726f76696465207175616e74697469657320616e6420726563697069656e746040820152607360f81b606082015260800190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252601a908201527f43616e6e6f7420696e637265617365206d617820737570706c79000000000000604082015260600190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526013908201527243616e7420676f206f76657220737570706c7960681b604082015260600190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b602080825260089082015267546f6f206d616e7960c01b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601b908201527f43616e74206d696e74206d6f7265207468656e206d61786d696e740000000000604082015260600190565b60208082526033908201527f6d6178204e46542070657220616464726573732065786365656465642c20646f6040820152726e277420626520677265656479204f6772652160681b606082015260800190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252602f908201527f53616c65206e6f7420616374697665204f6772652c20646f6e2774206265206c60408201526e34b5b29039ba37b7b834b21032b63360891b606082015260800190565b60208082526028908201527f455243373231413a207175616e74697479206d75737420626520677265617465604082015267072207468616e20360c41b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b90815260200190565b60008219821115612816576128166128fb565b500190565b60008261282a5761282a612911565b500490565b6000816000190483118215151615612849576128496128fb565b500290565b600082821015612860576128606128fb565b500390565b60005b83811015612880578181015183820152602001612868565b838111156111a15750506000910152565b6002810460018216806128a557607f821691505b602082108114156128c657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128e0576128e06128fb565b5060010190565b6000826128f6576128f6612911565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b2d57600080fdfea264697066735822122036ba58ce6bc9c5efa68bf5873b2fb80112c23684214c38e9b70b5e6756346d4464736f6c63430008010033

Deployed Bytecode Sourcemap

45192:4328:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24869:372;;;;;;;;;;-1:-1:-1;24869:372:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48891:122;;;;;;;;;;-1:-1:-1;48891:122:0;;;;;:::i;:::-;;:::i;:::-;;26755:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28317:214::-;;;;;;;;;;-1:-1:-1;28317:214:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;27838:413::-;;;;;;;;;;-1:-1:-1;27838:413:0;;;;;:::i;:::-;;:::i;45324:33::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23126:100::-;;;;;;;;;;;;;:::i;48459:182::-;;;;;;;;;;-1:-1:-1;48459:182:0;;;;;:::i;:::-;;:::i;29193:162::-;;;;;;;;;;-1:-1:-1;29193:162:0;;;;;:::i;:::-;;:::i;23790:1007::-;;;;;;;;;;-1:-1:-1;23790:1007:0;;;;;:::i;:::-;;:::i;48268:89::-;;;;;;;;;;;;;:::i;45486:43::-;;;;;;;;;;;;;:::i;49145:192::-;;;:::i;29426:177::-;;;;;;;;;;-1:-1:-1;29426:177:0;;;;;:::i;:::-;;:::i;48365:86::-;;;;;;;;;;-1:-1:-1;48365:86:0;;;;;:::i;:::-;;:::i;45402:29::-;;;;;;;;;;;;;:::i;23303:187::-;;;;;;;;;;-1:-1:-1;23303:187:0;;;;;:::i;:::-;;:::i;48779:104::-;;;;;;;;;;-1:-1:-1;48779:104:0;;;;;:::i;:::-;;:::i;45438:41::-;;;;;;;;;;;;;:::i;39043:86::-;;;;;;;;;;;;;:::i;26564:124::-;;;;;;;;;;-1:-1:-1;26564:124:0;;;;;:::i;:::-;;:::i;45296:21::-;;;;;;;;;;;;;:::i;25305:221::-;;;;;;;;;;-1:-1:-1;25305:221:0;;;;;:::i;:::-;;:::i;41860:94::-;;;;;;;;;;;;;:::i;49345:172::-;;;;;;:::i;:::-;;:::i;45577:59::-;;;;;;;;;;-1:-1:-1;45577:59:0;;;;;:::i;:::-;;:::i;41209:87::-;;;;;;;;;;;;;:::i;26924:104::-;;;;;;;;;;;;;:::i;47140:667::-;;;;;;;;;;-1:-1:-1;47140:667:0;;;;;:::i;:::-;;:::i;46616:516::-;;;;;;:::i;:::-;;:::i;28603:288::-;;;;;;;;;;-1:-1:-1;28603:288:0;;;;;:::i;:::-;;:::i;29674:355::-;;;;;;;;;;-1:-1:-1;29674:355:0;;;;;:::i;:::-;;:::i;48648:123::-;;;;;;;;;;-1:-1:-1;48648:123:0;;;;;:::i;:::-;;:::i;47815:445::-;;;;;;;;;;-1:-1:-1;47815:445:0;;;;;:::i;:::-;;:::i;45364:31::-;;;;;;;;;;;;;:::i;45894:712::-;;;;;;:::i;:::-;;:::i;49021:118::-;;;;;;;;;;-1:-1:-1;49021:118:0;;;;;:::i;:::-;;:::i;28962:164::-;;;;;;;;;;-1:-1:-1;28962:164:0;;;;;:::i;:::-;;:::i;45536:32::-;;;;;;;;;;;;;:::i;42109:229::-;;;;;;;;;;-1:-1:-1;42109:229:0;;;;;:::i;:::-;;:::i;24869:372::-;24971:4;-1:-1:-1;;;;;;25008:40:0;;-1:-1:-1;;;25008:40:0;;:105;;-1:-1:-1;;;;;;;25065:48:0;;-1:-1:-1;;;25065:48:0;25008:105;:172;;;-1:-1:-1;;;;;;;25130:50:0;;-1:-1:-1;;;25130:50:0;25008:172;:225;;;;25197:36;25221:11;25197:23;:36::i;:::-;24988:245;;24869:372;;;;:::o;48891:122::-;41440:12;:10;:12::i;:::-;-1:-1:-1;;;;;41429:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41429:23:0;;41421:68;;;;-1:-1:-1;;;41421:68:0;;;;;;;:::i;:::-;;;;;;;;;48972:23:::1;:33:::0;48891:122::o;26755:100::-;26809:13;26842:5;26835:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26755:100;:::o;28317:214::-;28385:7;28413:16;28421:7;28413;:16::i;:::-;28405:74;;;;-1:-1:-1;;;28405:74:0;;;;;;;:::i;:::-;-1:-1:-1;28499:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28499:24:0;;28317:214::o;27838:413::-;27911:13;27927:24;27943:7;27927:15;:24::i;:::-;27911:40;;27976:5;-1:-1:-1;;;;;27970:11:0;:2;-1:-1:-1;;;;;27970:11:0;;;27962:58;;;;-1:-1:-1;;;27962:58:0;;;;;;;:::i;:::-;28071:5;-1:-1:-1;;;;;28055:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;28055:21:0;;:62;;;;28080:37;28097:5;28104:12;:10;:12::i;28080:37::-;28033:169;;;;-1:-1:-1;;;28033:169:0;;;;;;;:::i;:::-;28215:28;28224:2;28228:7;28237:5;28215:8;:28::i;:::-;27838:413;;;:::o;45324:33::-;;;;:::o;23126:100::-;23179:7;23206:12;23126:100;:::o;48459:182::-;41440:12;:10;:12::i;:::-;-1:-1:-1;;;;;41429:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41429:23:0;;41421:68;;;;-1:-1:-1;;;41421:68:0;;;;;;;:::i;:::-;48557:9:::1;;48540:13;:26;;48532:65;;;;-1:-1:-1::0;;;48532:65:0::1;;;;;;;:::i;:::-;48608:9;:25:::0;48459:182::o;29193:162::-;29319:28;29329:4;29335:2;29339:7;29319:9;:28::i;23790:1007::-;23879:7;23915:16;23925:5;23915:9;:16::i;:::-;23907:5;:24;23899:71;;;;-1:-1:-1;;;23899:71:0;;;;;;;:::i;:::-;23981:22;24006:13;:11;:13::i;:::-;23981:38;;24030:19;24060:25;24249:9;24244:466;24264:14;24260:1;:18;24244:466;;;24304:31;24338:14;;;:11;:14;;;;;;;;;24304:48;;;;;;;;;-1:-1:-1;;;;;24304:48:0;;;;;-1:-1:-1;;;24304:48:0;;;;;;;;;;;;24375:28;24371:111;;24448:14;;;-1:-1:-1;24371:111:0;24525:5;-1:-1:-1;;;;;24504:26:0;:17;-1:-1:-1;;;;;24504:26:0;;24500:195;;;24574:5;24559:11;:20;24555:85;;;-1:-1:-1;24615:1:0;-1:-1:-1;24608:8:0;;-1:-1:-1;;;24608:8:0;24555:85;24662:13;;;;;24500:195;-1:-1:-1;24280:3:0;;24244:466;;;;24733:56;;-1:-1:-1;;;24733:56:0;;;;;;;:::i;23790:1007::-;;;;;:::o;48268:89::-;41440:12;:10;:12::i;:::-;-1:-1:-1;;;;;41429:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41429:23:0;;41421:68;;;;-1:-1:-1;;;41421:68:0;;;;;;;:::i;:::-;48337:12:::1;::::0;;-1:-1:-1;;48321:28:0;::::1;48337:12;::::0;;::::1;48336:13;48321:28;::::0;;48268:89::o;45486:43::-;;;;:::o;49145:192::-;41440:12;:10;:12::i;:::-;-1:-1:-1;;;;;41429:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41429:23:0;;41421:68;;;;-1:-1:-1;;;41421:68:0;;;;;;;:::i;:::-;49202:12:::1;49228:10;-1:-1:-1::0;;;;;49220:24:0::1;49266:21;49220:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49201:101;;;49321:7;49313:16;;;::::0;::::1;;41500:1;49145:192::o:0;29426:177::-;29556:39;29573:4;29579:2;29583:7;29556:39;;;;;;;;;;;;:16;:39::i;48365:86::-;41440:12;:10;:12::i;:::-;-1:-1:-1;;;;;41429:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41429:23:0;;41421:68;;;;-1:-1:-1;;;41421:68:0;;;;;;;:::i;:::-;48428:4:::1;:15:::0;48365:86::o;45402:29::-;;;;:::o;23303:187::-;23370:7;23406:13;:11;:13::i;:::-;23398:5;:21;23390:69;;;;-1:-1:-1;;;23390:69:0;;;;;;;:::i;:::-;-1:-1:-1;23477:5:0;23303:187::o;48779:104::-;41440:12;:10;:12::i;:::-;-1:-1:-1;;;;;41429:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41429:23:0;;41421:68;;;;-1:-1:-1;;;41421:68:0;;;;;;;:::i;:::-;48854:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48779:104:::0;:::o;45438:41::-;;;;:::o;39043:86::-;39114:7;;-1:-1:-1;;;39114:7:0;;;;;39043:86::o;26564:124::-;26628:7;26655:20;26667:7;26655:11;:20::i;:::-;:25;;26564:124;-1:-1:-1;;26564:124:0:o;45296:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25305:221::-;25369:7;-1:-1:-1;;;;;25397:19:0;;25389:75;;;;-1:-1:-1;;;25389:75:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;25490:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25490:27:0;;25305:221::o;41860:94::-;41440:12;:10;:12::i;:::-;-1:-1:-1;;;;;41429:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41429:23:0;;41421:68;;;;-1:-1:-1;;;41421:68:0;;;;;;;:::i;:::-;41925:21:::1;41943:1;41925:9;:21::i;:::-;41860:94::o:0;49345:172::-;41440:12;:10;:12::i;:::-;-1:-1:-1;;;;;41429:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41429:23:0;;41421:68;;;;-1:-1:-1;;;41421:68:0;;;;;;;:::i;:::-;49420:12:::1;49446:10;-1:-1:-1::0;;;;;49438:24:0::1;49470:7;49438:44;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49419:63;;;49501:7;49493:16;;;::::0;::::1;45577:59:::0;;;;;;;;;;;;;:::o;41209:87::-;41282:6;;-1:-1:-1;;;;;41282:6:0;41209:87;:::o;26924:104::-;26980:13;27013:7;27006:14;;;;;:::i;47140:667::-;41440:12;:10;:12::i;:::-;-1:-1:-1;;;;;41429:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41429:23:0;;41421:68;;;;-1:-1:-1;;;41421:68:0;;;;;;;:::i;:::-;47288:35;;::::1;47266:118;;;;-1:-1:-1::0;;;47266:118:0::1;;;;;;;:::i;:::-;47395:21;47431:9:::0;47443:13:::1;:11;:13::i;:::-;47431:25;;47472:9;47467:101;47487:19:::0;;::::1;47467:101;;;47545:8;;47554:1;47545:11;;;;;-1:-1:-1::0;;;47545:11:0::1;;;;;;;;;;;;;;;47528:28;;;;;:::i;:::-;::::0;-1:-1:-1;47508:3:0::1;::::0;::::1;:::i;:::-;;;47467:101;;;-1:-1:-1::0;47607:9:0::1;::::0;47586:17:::1;47590:13:::0;47586:1;:17:::1;:::i;:::-;:30;;47578:51;;;;-1:-1:-1::0;;;47578:51:0::1;;;;;;;:::i;:::-;47640:20;;;47676:9;47671:110;47691:20:::0;;::::1;47671:110;;;47733:36;47743:9;;47753:1;47743:12;;;;;-1:-1:-1::0;;;47743:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47757:8;;47766:1;47757:11;;;;;-1:-1:-1::0;;;47757:11:0::1;;;;;;;;;;;;;;;47733:9;:36::i;:::-;47713:3;::::0;::::1;:::i;:::-;;;47671:110;;;-1:-1:-1::0;;;;;;;47140:667:0:o;46616:516::-;44204:1;44800:7;;:19;;44792:63;;;;-1:-1:-1;;;44792:63:0;;;;;;;:::i;:::-;44204:1;44933:7;:18;46690:9:::1;46702:13;:11;:13::i;:::-;46734:12;::::0;46690:25;;-1:-1:-1;46734:12:0::1;;46726:72;;;;-1:-1:-1::0;;;46726:72:0::1;;;;;;;:::i;:::-;46831:1;46817:11;:15;46809:39;;;;-1:-1:-1::0;;;46809:39:0::1;;;;;;;:::i;:::-;46882:23;;46867:11;:38;;46859:79;;;;-1:-1:-1::0;;;46859:79:0::1;;;;;;;:::i;:::-;46976:9;::::0;46957:15:::1;46961:11:::0;46957:1;:15:::1;:::i;:::-;:28;;46949:60;;;;-1:-1:-1::0;;;46949:60:0::1;;;;;;;:::i;:::-;47048:11;47041:4;;:18;;;;:::i;:::-;47028:9;:31;;47020:40;;;::::0;::::1;;47071:34;47081:10;47093:11;47071:9;:34::i;:::-;-1:-1:-1::0;;44160:1:0;45112:7;:22;46616:516::o;28603:288::-;28710:12;:10;:12::i;:::-;-1:-1:-1;;;;;28698:24:0;:8;-1:-1:-1;;;;;28698:24:0;;;28690:63;;;;-1:-1:-1;;;28690:63:0;;;;;;;:::i;:::-;28811:8;28766:18;:32;28785:12;:10;:12::i;:::-;-1:-1:-1;;;;;28766:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;28766:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;28766:53:0;;;;;;;;;;;28850:12;:10;:12::i;:::-;-1:-1:-1;;;;;28835:48:0;;28874:8;28835:48;;;;;;:::i;:::-;;;;;;;;28603:288;;:::o;29674:355::-;29833:28;29843:4;29849:2;29853:7;29833:9;:28::i;:::-;29894:48;29917:4;29923:2;29927:7;29936:5;29894:22;:48::i;:::-;29872:149;;;;-1:-1:-1;;;29872:149:0;;;;;;;:::i;:::-;29674:355;;;;:::o;48648:123::-;41440:12;:10;:12::i;:::-;-1:-1:-1;;;;;41429:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41429:23:0;;41421:68;;;;-1:-1:-1;;;41421:68:0;;;;;;;:::i;:::-;48736:7:::1;:27:::0;48648:123::o;47815:445::-;47933:13;47972:16;47980:7;47972;:16::i;:::-;47964:62;;;;-1:-1:-1;;;47964:62:0;;;;;;;:::i;:::-;48037:28;48068:10;:8;:10::i;:::-;48037:41;;48140:1;48115:14;48109:28;:32;:143;;;;;;;;;;;;;;;;;48185:14;48201:18;:7;:16;:18::i;:::-;48168:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48109:143;48089:163;47815:445;-1:-1:-1;;;47815:445:0:o;45364:31::-;;;;:::o;45894:712::-;44204:1;44800:7;;:19;;44792:63;;;;-1:-1:-1;;;44792:63:0;;;;;;;:::i;:::-;44204:1;44933:7;:18;45962:9:::1;45974:13;:11;:13::i;:::-;46056:10;45998:30;46031:36:::0;;;:24:::1;:36;::::0;;;;;46086:12:::1;::::0;45962:25;;-1:-1:-1;46031:36:0;46086:12:::1;;46078:72;;;;-1:-1:-1::0;;;46078:72:0::1;;;;;;;:::i;:::-;46209:22;::::0;46169:36:::1;46194:11:::0;46169:22;:36:::1;:::i;:::-;:62;;46161:126;;;;-1:-1:-1::0;;;46161:126:0::1;;;;;;;:::i;:::-;46314:1;46300:11;:15;46292:40;;;;-1:-1:-1::0;;;46292:40:0::1;;;;;;;:::i;:::-;46364:7;::::0;46345:15:::1;46349:11:::0;46345:1;:15:::1;:::i;:::-;:26;;46337:59;;;;-1:-1:-1::0;;;46337:59:0::1;;;;;;;:::i;:::-;46406:9;46401:103;46425:11;46421:1;:15;46401:103;;;46483:10;46458:36;::::0;;;:24:::1;:36;::::0;;;;:38;;;::::1;::::0;::::1;:::i;:::-;;;;;;46438:3;;;;:::i;:::-;;;46401:103;;;;46514:34;46524:10;46536:11;46514:9;:34::i;:::-;-1:-1:-1::0;;44160:1:0;45112:7;:22;-1:-1:-1;45894:712:0:o;49021:118::-;41440:12;:10;:12::i;:::-;-1:-1:-1;;;;;41429:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41429:23:0;;41421:68;;;;-1:-1:-1;;;41421:68:0;;;;;;;:::i;:::-;49099:22:::1;:32:::0;49021:118::o;28962:164::-;-1:-1:-1;;;;;29083:25:0;;;29059:4;29083:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28962:164::o;45536:32::-;;;;;;:::o;42109:229::-;41440:12;:10;:12::i;:::-;-1:-1:-1;;;;;41429:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41429:23:0;;41421:68;;;;-1:-1:-1;;;41421:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42212:22:0;::::1;42190:110;;;;-1:-1:-1::0;;;42190:110:0::1;;;;;;;:::i;:::-;42311:19;42321:8;42311:9;:19::i;14389:157::-:0;-1:-1:-1;;;;;;14498:40:0;;-1:-1:-1;;;14498:40:0;14389:157;;;:::o;2836:98::-;2916:10;2836:98;:::o;30284:111::-;30341:4;30375:12;-1:-1:-1;30365:22:0;30284:111::o;35204:196::-;35319:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;35319:29:0;-1:-1:-1;;;;;35319:29:0;;;;;;;;;35364:28;;35319:24;;35364:28;;;;;;;35204:196;;;:::o;33084:2002::-;33199:35;33237:20;33249:7;33237:11;:20::i;:::-;33199:58;;33270:22;33312:13;:18;;;-1:-1:-1;;;;;33296:34:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;33296:34:0;;:87;;;;33371:12;:10;:12::i;:::-;-1:-1:-1;;;;;33347:36:0;:20;33359:7;33347:11;:20::i;:::-;-1:-1:-1;;;;;33347:36:0;;33296:87;:154;;;-1:-1:-1;33417:18:0;;33400:50;;33437:12;:10;:12::i;33400:50::-;33270:181;;33472:17;33464:80;;;;-1:-1:-1;;;33464:80:0;;;;;;;:::i;:::-;33587:4;-1:-1:-1;;;;;33565:26:0;:13;:18;;;-1:-1:-1;;;;;33565:26:0;;33557:77;;;;-1:-1:-1;;;33557:77:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33653:16:0;;33645:66;;;;-1:-1:-1;;;33645:66:0;;;;;;;:::i;:::-;33724:43;33746:4;33752:2;33756:7;33765:1;33724:21;:43::i;:::-;33832:49;33849:1;33853:7;33862:13;:18;;;33832:8;:49::i;:::-;-1:-1:-1;;;;;34177:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;34177:31:0;;;-1:-1:-1;;;;;34177:31:0;;;-1:-1:-1;;34177:31:0;;;;;;;34223:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;34223:29:0;;;;;;;;;;;;;34269:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;34269:30:0;;;;-1:-1:-1;;;;34314:61:0;-1:-1:-1;;;34359:15:0;34314:61;;;;;;34649:11;;;34679:24;;;;;:29;34649:11;;34679:29;34675:295;;34747:20;34755:11;34747:7;:20::i;:::-;34743:212;;;34824:18;;;34792:24;;;:11;:24;;;;;;;;:50;;34907:28;;;;34865:70;;-1:-1:-1;;;34865:70:0;-1:-1:-1;;;;;;;;;34792:50:0;;;-1:-1:-1;;;;;;34792:50:0;;;;;;;34865:70;;;;;;;34743:212;33084:2002;35017:7;35013:2;-1:-1:-1;;;;;34998:27:0;35007:4;-1:-1:-1;;;;;34998:27:0;;;;;;;;;;;35036:42;35057:4;35063:2;35067:7;35076:1;35036:20;:42::i;:::-;33084:2002;;;;;:::o;25965:537::-;26026:21;;:::i;:::-;26068:16;26076:7;26068;:16::i;:::-;26060:71;;;;-1:-1:-1;;;26060:71:0;;;;;;;:::i;:::-;26189:7;26169:245;26236:31;26270:17;;;:11;:17;;;;;;;;;26236:51;;;;;;;;;-1:-1:-1;;;;;26236:51:0;;;;;-1:-1:-1;;;26236:51:0;;;;;;;;;;;;26310:28;26306:93;;26370:9;-1:-1:-1;26363:16:0;;-1:-1:-1;26363:16:0;26306:93;-1:-1:-1;;;26209:6:0;26169:245;;42346:173;42421:6;;;-1:-1:-1;;;;;42438:17:0;;;-1:-1:-1;;;;;;42438:17:0;;;;;;;42471:40;;42421:6;;;42438:17;42421:6;;42471:40;;42402:16;;42471:40;42346:173;;:::o;30403:104::-;30472:27;30482:2;30486:8;30472:27;;;;;;;;;;;;:9;:27::i;35965:804::-;36120:4;36141:15;:2;-1:-1:-1;;;;;36141:13:0;;:15::i;:::-;36137:625;;;36193:2;-1:-1:-1;;;;;36177:36:0;;36214:12;:10;:12::i;:::-;36228:4;36234:7;36243:5;36177:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36177:72:0;;;;;;;;-1:-1:-1;;36177:72:0;;;;;;;;;;;;:::i;:::-;;;36173:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36423:13:0;;36419:273;;36466:61;;-1:-1:-1;;;36466:61:0;;;;;;;:::i;36419:273::-;36642:6;36636:13;36627:6;36623:2;36619:15;36612:38;36173:534;-1:-1:-1;;;;;;36300:55:0;-1:-1:-1;;;36300:55:0;;-1:-1:-1;36293:62:0;;36137:625;-1:-1:-1;36746:4:0;36137:625;35965:804;;;;;;:::o;45778:108::-;45838:13;45871:7;45864:14;;;;;:::i;398:723::-;454:13;675:10;671:53;;-1:-1:-1;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;;671:53;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;-1:-1:-1;;;900:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;-1:-1:-1;;;988:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;30870:163;30993:32;30999:2;31003:8;31013:5;31020:4;30993:5;:32::i;4283:326::-;-1:-1:-1;;;;;4578:19:0;;:23;;;4283:326::o;31292:1538::-;31431:20;31454:12;-1:-1:-1;;;;;31485:16:0;;31477:62;;;;-1:-1:-1;;;31477:62:0;;;;;;;:::i;:::-;31558:13;31550:66;;;;-1:-1:-1;;;31550:66:0;;;;;;;:::i;:::-;31629:61;31659:1;31663:2;31667:12;31681:8;31629:21;:61::i;:::-;-1:-1:-1;;;;;31968:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;31968:45:0;;-1:-1:-1;;;;;31968:45:0;;;;;;;;32028:50;;;-1:-1:-1;;;32028:50:0;;;;;;;;;;;;;;;32095:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;32095:35:0;;;;-1:-1:-1;;;;32145:66:0;-1:-1:-1;;;32195:15:0;32145:66;;;;;;;32095:25;;32280:415;32300:8;32296:1;:12;32280:415;;;32339:38;;32364:12;;-1:-1:-1;;;;;32339:38:0;;;32356:1;;32339:38;;32356:1;;32339:38;32400:4;32396:249;;;32463:59;32494:1;32498:2;32502:12;32516:5;32463:22;:59::i;:::-;32429:196;;;;-1:-1:-1;;;32429:196:0;;;;;;;:::i;:::-;32665:14;;;;;32310:3;32280:415;;;-1:-1:-1;32711:12:0;:27;;;32762:60;;32795:2;32799:12;32813:8;32762:20;:60::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:633:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;232:2;226:9;200:2;286:15;;-1:-1:-1;;282:24:1;;;308:2;278:33;274:42;262:55;;;332:18;;;352:22;;;329:46;326:2;;;378:18;;:::i;:::-;418:10;414:2;407:22;447:6;438:15;;477:6;469;462:22;517:3;508:6;503:3;499:16;496:25;493:2;;;534:1;531;524:12;493:2;584:6;579:3;572:4;564:6;560:17;547:44;639:1;632:4;623:6;615;611:19;607:30;600:41;;;;90:557;;;;;:::o;652:175::-;722:20;;-1:-1:-1;;;;;771:31:1;;761:42;;751:2;;817:1;814;807:12;832:400;;;965:3;958:4;950:6;946:17;942:27;932:2;;988:6;980;973:22;932:2;-1:-1:-1;1016:20:1;;1059:18;1048:30;;1045:2;;;1098:8;1088;1081:26;1045:2;1142:4;1134:6;1130:17;1118:29;;1205:3;1198:4;1190;1182:6;1178:17;1170:6;1166:30;1162:41;1159:50;1156:2;;;1222:1;1219;1212:12;1156:2;922:310;;;;;:::o;1237:198::-;;1349:2;1337:9;1328:7;1324:23;1320:32;1317:2;;;1370:6;1362;1355:22;1317:2;1398:31;1419:9;1398:31;:::i;1440:274::-;;;1569:2;1557:9;1548:7;1544:23;1540:32;1537:2;;;1590:6;1582;1575:22;1537:2;1618:31;1639:9;1618:31;:::i;:::-;1608:41;;1668:40;1704:2;1693:9;1689:18;1668:40;:::i;:::-;1658:50;;1527:187;;;;;:::o;1719:342::-;;;;1865:2;1853:9;1844:7;1840:23;1836:32;1833:2;;;1886:6;1878;1871:22;1833:2;1914:31;1935:9;1914:31;:::i;:::-;1904:41;;1964:40;2000:2;1989:9;1985:18;1964:40;:::i;:::-;1954:50;;2051:2;2040:9;2036:18;2023:32;2013:42;;1823:238;;;;;:::o;2066:702::-;;;;;2238:3;2226:9;2217:7;2213:23;2209:33;2206:2;;;2260:6;2252;2245:22;2206:2;2288:31;2309:9;2288:31;:::i;:::-;2278:41;;2338:40;2374:2;2363:9;2359:18;2338:40;:::i;:::-;2328:50;;2425:2;2414:9;2410:18;2397:32;2387:42;;2480:2;2469:9;2465:18;2452:32;2507:18;2499:6;2496:30;2493:2;;;2544:6;2536;2529:22;2493:2;2572:22;;2625:4;2617:13;;2613:27;-1:-1:-1;2603:2:1;;2659:6;2651;2644:22;2603:2;2687:75;2754:7;2749:2;2736:16;2731:2;2727;2723:11;2687:75;:::i;:::-;2677:85;;;2196:572;;;;;;;:::o;2773:369::-;;;2899:2;2887:9;2878:7;2874:23;2870:32;2867:2;;;2920:6;2912;2905:22;2867:2;2948:31;2969:9;2948:31;:::i;:::-;2938:41;;3029:2;3018:9;3014:18;3001:32;3076:5;3069:13;3062:21;3055:5;3052:32;3042:2;;3103:6;3095;3088:22;3042:2;3131:5;3121:15;;;2857:285;;;;;:::o;3147:266::-;;;3276:2;3264:9;3255:7;3251:23;3247:32;3244:2;;;3297:6;3289;3282:22;3244:2;3325:31;3346:9;3325:31;:::i;:::-;3315:41;3403:2;3388:18;;;;3375:32;;-1:-1:-1;;;3234:179:1:o;3418:815::-;;;;;3617:2;3605:9;3596:7;3592:23;3588:32;3585:2;;;3638:6;3630;3623:22;3585:2;3683:9;3670:23;3712:18;3753:2;3745:6;3742:14;3739:2;;;3774:6;3766;3759:22;3739:2;3818:76;3886:7;3877:6;3866:9;3862:22;3818:76;:::i;:::-;3913:8;;-1:-1:-1;3792:102:1;-1:-1:-1;4001:2:1;3986:18;;3973:32;;-1:-1:-1;4017:16:1;;;4014:2;;;4051:6;4043;4036:22;4014:2;;4095:78;4165:7;4154:8;4143:9;4139:24;4095:78;:::i;:::-;3575:658;;;;-1:-1:-1;4192:8:1;-1:-1:-1;;;;3575:658:1:o;4238:257::-;;4349:2;4337:9;4328:7;4324:23;4320:32;4317:2;;;4370:6;4362;4355:22;4317:2;4414:9;4401:23;4433:32;4459:5;4433:32;:::i;4500:261::-;;4622:2;4610:9;4601:7;4597:23;4593:32;4590:2;;;4643:6;4635;4628:22;4590:2;4680:9;4674:16;4699:32;4725:5;4699:32;:::i;4766:482::-;;4888:2;4876:9;4867:7;4863:23;4859:32;4856:2;;;4909:6;4901;4894:22;4856:2;4954:9;4941:23;4987:18;4979:6;4976:30;4973:2;;;5024:6;5016;5009:22;4973:2;5052:22;;5105:4;5097:13;;5093:27;-1:-1:-1;5083:2:1;;5139:6;5131;5124:22;5083:2;5167:75;5234:7;5229:2;5216:16;5211:2;5207;5203:11;5167:75;:::i;5253:190::-;;5365:2;5353:9;5344:7;5340:23;5336:32;5333:2;;;5386:6;5378;5371:22;5333:2;-1:-1:-1;5414:23:1;;5323:120;-1:-1:-1;5323:120:1:o;5448:259::-;;5529:5;5523:12;5556:6;5551:3;5544:19;5572:63;5628:6;5621:4;5616:3;5612:14;5605:4;5598:5;5594:16;5572:63;:::i;:::-;5689:2;5668:15;-1:-1:-1;;5664:29:1;5655:39;;;;5696:4;5651:50;;5499:208;-1:-1:-1;;5499:208:1:o;5712:637::-;;6030:6;6024:13;6046:53;6092:6;6087:3;6080:4;6072:6;6068:17;6046:53;:::i;:::-;6162:13;;6121:16;;;;6184:57;6162:13;6121:16;6218:4;6206:17;;6184:57;:::i;:::-;-1:-1:-1;;;6263:20:1;;6292:22;;;6341:1;6330:13;;6000:349;-1:-1:-1;;;;6000:349:1:o;6354:205::-;6554:3;6545:14::o;6564:203::-;-1:-1:-1;;;;;6728:32:1;;;;6710:51;;6698:2;6683:18;;6665:102::o;6772:490::-;-1:-1:-1;;;;;7041:15:1;;;7023:34;;7093:15;;7088:2;7073:18;;7066:43;7140:2;7125:18;;7118:34;;;7188:3;7183:2;7168:18;;7161:31;;;6772:490;;7209:47;;7236:19;;7228:6;7209:47;:::i;:::-;7201:55;6975:287;-1:-1:-1;;;;;;6975:287:1:o;7267:187::-;7432:14;;7425:22;7407:41;;7395:2;7380:18;;7362:92::o;7459:221::-;;7608:2;7597:9;7590:21;7628:46;7670:2;7659:9;7655:18;7647:6;7628:46;:::i;7685:398::-;7887:2;7869:21;;;7926:2;7906:18;;;7899:30;7965:34;7960:2;7945:18;;7938:62;-1:-1:-1;;;8031:2:1;8016:18;;8009:32;8073:3;8058:19;;7859:224::o;8088:335::-;8290:2;8272:21;;;8329:2;8309:18;;;8302:30;-1:-1:-1;;;8363:2:1;8348:18;;8341:41;8414:2;8399:18;;8262:161::o;8428:397::-;8630:2;8612:21;;;8669:2;8649:18;;;8642:30;8708:34;8703:2;8688:18;;8681:62;-1:-1:-1;;;8774:2:1;8759:18;;8752:31;8815:3;8800:19;;8602:223::o;8830:402::-;9032:2;9014:21;;;9071:2;9051:18;;;9044:30;9110:34;9105:2;9090:18;;9083:62;-1:-1:-1;;;9176:2:1;9161:18;;9154:36;9222:3;9207:19;;9004:228::o;9237:406::-;9439:2;9421:21;;;9478:2;9458:18;;;9451:30;9517:34;9512:2;9497:18;;9490:62;-1:-1:-1;;;9583:2:1;9568:18;;9561:40;9633:3;9618:19;;9411:232::o;9648:399::-;9850:2;9832:21;;;9889:2;9869:18;;;9862:30;9928:34;9923:2;9908:18;;9901:62;-1:-1:-1;;;9994:2:1;9979:18;;9972:33;10037:3;10022:19;;9822:225::o;10052:401::-;10254:2;10236:21;;;10293:2;10273:18;;;10266:30;10332:34;10327:2;10312:18;;10305:62;-1:-1:-1;;;10398:2:1;10383:18;;10376:35;10443:3;10428:19;;10226:227::o;10458:397::-;10660:2;10642:21;;;10699:2;10679:18;;;10672:30;10738:34;10733:2;10718:18;;10711:62;-1:-1:-1;;;10804:2:1;10789:18;;10782:31;10845:3;10830:19;;10632:223::o;10860:421::-;11062:2;11044:21;;;11101:2;11081:18;;;11074:30;11140:34;11135:2;11120:18;;11113:62;11211:27;11206:2;11191:18;;11184:55;11271:3;11256:19;;11034:247::o;11286:350::-;11488:2;11470:21;;;11527:2;11507:18;;;11500:30;11566:28;11561:2;11546:18;;11539:56;11627:2;11612:18;;11460:176::o;11641:407::-;11843:2;11825:21;;;11882:2;11862:18;;;11855:30;11921:34;11916:2;11901:18;;11894:62;-1:-1:-1;;;11987:2:1;11972:18;;11965:41;12038:3;12023:19;;11815:233::o;12053:343::-;12255:2;12237:21;;;12294:2;12274:18;;;12267:30;-1:-1:-1;;;12328:2:1;12313:18;;12306:49;12387:2;12372:18;;12227:169::o;12401:402::-;12603:2;12585:21;;;12642:2;12622:18;;;12615:30;12681:34;12676:2;12661:18;;12654:62;-1:-1:-1;;;12747:2:1;12732:18;;12725:36;12793:3;12778:19;;12575:228::o;12808:331::-;13010:2;12992:21;;;13049:1;13029:18;;;13022:29;-1:-1:-1;;;13082:2:1;13067:18;;13060:38;13130:2;13115:18;;12982:157::o;13144:356::-;13346:2;13328:21;;;13365:18;;;13358:30;13424:34;13419:2;13404:18;;13397:62;13491:2;13476:18;;13318:182::o;13505:350::-;13707:2;13689:21;;;13746:2;13726:18;;;13719:30;13785:28;13780:2;13765:18;;13758:56;13846:2;13831:18;;13679:176::o;13860:414::-;14062:2;14044:21;;;14101:2;14081:18;;;14074:30;14140:34;14135:2;14120:18;;14113:62;-1:-1:-1;;;14206:2:1;14191:18;;14184:48;14264:3;14249:19;;14034:240::o;14279:398::-;14481:2;14463:21;;;14520:2;14500:18;;;14493:30;14559:34;14554:2;14539:18;;14532:62;-1:-1:-1;;;14625:2:1;14610:18;;14603:32;14667:3;14652:19;;14453:224::o;14682:415::-;14884:2;14866:21;;;14923:2;14903:18;;;14896:30;14962:34;14957:2;14942:18;;14935:62;-1:-1:-1;;;15028:2:1;15013:18;;15006:49;15087:3;15072:19;;14856:241::o;15102:351::-;15304:2;15286:21;;;15343:2;15323:18;;;15316:30;15382:29;15377:2;15362:18;;15355:57;15444:2;15429:18;;15276:177::o;15458:415::-;15660:2;15642:21;;;15699:2;15679:18;;;15672:30;15738:34;15733:2;15718:18;;15711:62;-1:-1:-1;;;15804:2:1;15789:18;;15782:49;15863:3;15848:19;;15632:241::o;15878:397::-;16080:2;16062:21;;;16119:2;16099:18;;;16092:30;16158:34;16153:2;16138:18;;16131:62;-1:-1:-1;;;16224:2:1;16209:18;;16202:31;16265:3;16250:19;;16052:223::o;16280:411::-;16482:2;16464:21;;;16521:2;16501:18;;;16494:30;16560:34;16555:2;16540:18;;16533:62;-1:-1:-1;;;16626:2:1;16611:18;;16604:45;16681:3;16666:19;;16454:237::o;16696:404::-;16898:2;16880:21;;;16937:2;16917:18;;;16910:30;16976:34;16971:2;16956:18;;16949:62;-1:-1:-1;;;17042:2:1;17027:18;;17020:38;17090:3;17075:19;;16870:230::o;17105:410::-;17307:2;17289:21;;;17346:2;17326:18;;;17319:30;17385:34;17380:2;17365:18;;17358:62;-1:-1:-1;;;17451:2:1;17436:18;;17429:44;17505:3;17490:19;;17279:236::o;17520:355::-;17722:2;17704:21;;;17761:2;17741:18;;;17734:30;17800:33;17795:2;17780:18;;17773:61;17866:2;17851:18;;17694:181::o;18296:409::-;18498:2;18480:21;;;18537:2;18517:18;;;18510:30;18576:34;18571:2;18556:18;;18549:62;-1:-1:-1;;;18642:2:1;18627:18;;18620:43;18695:3;18680:19;;18470:235::o;18710:177::-;18856:25;;;18844:2;18829:18;;18811:76::o;18892:128::-;;18963:1;18959:6;18956:1;18953:13;18950:2;;;18969:18;;:::i;:::-;-1:-1:-1;19005:9:1;;18940:80::o;19025:120::-;;19091:1;19081:2;;19096:18;;:::i;:::-;-1:-1:-1;19130:9:1;;19071:74::o;19150:168::-;;19256:1;19252;19248:6;19244:14;19241:1;19238:21;19233:1;19226:9;19219:17;19215:45;19212:2;;;19263:18;;:::i;:::-;-1:-1:-1;19303:9:1;;19202:116::o;19323:125::-;;19391:1;19388;19385:8;19382:2;;;19396:18;;:::i;:::-;-1:-1:-1;19433:9:1;;19372:76::o;19453:258::-;19525:1;19535:113;19549:6;19546:1;19543:13;19535:113;;;19625:11;;;19619:18;19606:11;;;19599:39;19571:2;19564:10;19535:113;;;19666:6;19663:1;19660:13;19657:2;;;-1:-1:-1;;19701:1:1;19683:16;;19676:27;19506:205::o;19716:380::-;19801:1;19791:12;;19848:1;19838:12;;;19859:2;;19913:4;19905:6;19901:17;19891:27;;19859:2;19966;19958:6;19955:14;19935:18;19932:38;19929:2;;;20012:10;20007:3;20003:20;20000:1;19993:31;20047:4;20044:1;20037:15;20075:4;20072:1;20065:15;19929:2;;19771:325;;;:::o;20101:135::-;;-1:-1:-1;;20161:17:1;;20158:2;;;20181:18;;:::i;:::-;-1:-1:-1;20228:1:1;20217:13;;20148:88::o;20241:112::-;;20299:1;20289:2;;20304:18;;:::i;:::-;-1:-1:-1;20338:9:1;;20279:74::o;20358:127::-;20419:10;20414:3;20410:20;20407:1;20400:31;20450:4;20447:1;20440:15;20474:4;20471:1;20464:15;20490:127;20551:10;20546:3;20542:20;20539:1;20532:31;20582:4;20579:1;20572:15;20606:4;20603:1;20596:15;20622:127;20683:10;20678:3;20674:20;20671:1;20664:31;20714:4;20711:1;20704:15;20738:4;20735:1;20728:15;20754:133;-1:-1:-1;;;;;;20830:32:1;;20820:43;;20810:2;;20877:1;20874;20867:12

Swarm Source

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