ETH Price: $3,475.27 (-1.18%)
Gas: 5 Gwei

Token

Elderly Okay Bears (OEB)
 

Overview

Max Total Supply

1,058 OEB

Holders

329

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
4 OEB
0x253ae13B5e9d0B789e6e0e4335df8C5b48060908
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:
ElderlyOkayBears

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: contracts/ChildrenOfAsuna.sol



pragma solidity >=0.8.9 <0.9.0;





contract ElderlyOkayBears is ERC721, Ownable, ReentrancyGuard {

  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  
  uint256 public cost = 0.002 ether;
  uint256 public maxSupply = 5000;
  uint256 public maxMintAmountPerTx = 2;

  bool public paused = false;

  constructor() ERC721("Elderly Okay Bears", "OEB") {
    setUriPrefix("ipfs://QmT4h229QR98jdUTHHSgdqaZrKLewyEXe7JvirALqpC6k9/");
  }

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

  modifier mintPriceCompliance(uint256 _mintAmount) {
    if (supply.current()+_mintAmount > 500){
      require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    }
    _;
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }


  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");

    _mintLoop(msg.sender, _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _mintLoop(_receiver, _mintAmount);
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token" 
    );
    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : "";
  }


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

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

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

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

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

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

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

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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b9160099162000201565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600a9162000201565b5066071afd498d0000600b55611388600c556002600d55600e805460ff191690553480156200007857600080fd5b506040805180820182526012815271456c6465726c79204f6b617920426561727360701b60208083019182528351808501909452600384526227a2a160e91b908401528151919291620000ce9160009162000201565b508051620000e490600190602084019062000201565b50505062000101620000fb6200013360201b60201c565b62000137565b60016007819055506200012d604051806060016040528060368152602001620023ec6036913962000189565b620002e4565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001e85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001fd90600990602084019062000201565b5050565b8280546200020f90620002a7565b90600052602060002090601f0160209004810192826200023357600085556200027e565b82601f106200024e57805160ff19168380011785556200027e565b828001600101855582156200027e579182015b828111156200027e57825182559160200191906001019062000261565b506200028c92915062000290565b5090565b5b808211156200028c576000815560010162000291565b600181811c90821680620002bc57607f821691505b60208210811415620002de57634e487b7160e01b600052602260045260246000fd5b50919050565b6120f880620002f46000396000f3fe6080604052600436106101d85760003560e01c80636352211e11610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb011461051e578063e985e9c514610534578063efbd73f41461057d578063f2fde38b1461059d57600080fd5b8063a22cb4651461049e578063b071401b146104be578063b88d4fde146104de578063c87b56dd146104fe57600080fd5b80638da5cb5b116100d15780638da5cb5b1461044257806394354fd01461046057806395d89b4114610476578063a0712d681461048b57600080fd5b80636352211e146103cd57806370a08231146103ed578063715018a61461040d5780637ec4a6591461042257600080fd5b806323b872dd1161017a57806344a0d68a1161014957806344a0d68a146103695780635503a0e8146103895780635c975abb1461039e57806362b99ad4146103b857600080fd5b806323b872dd146102e75780633ccfd60b1461030757806342842e0e1461031c578063438b63001461033c57600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806313faede61461028e57806316c38b3c146102b257806318160ddd146102d257600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611a40565b6105bd565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b5061022761060f565b6040516102099190611ab5565b34801561024057600080fd5b5061025461024f366004611ac8565b6106a1565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611afd565b61073b565b005b34801561029a57600080fd5b506102a4600b5481565b604051908152602001610209565b3480156102be57600080fd5b5061028c6102cd366004611b37565b610851565b3480156102de57600080fd5b506102a461088e565b3480156102f357600080fd5b5061028c610302366004611b52565b61089e565b34801561031357600080fd5b5061028c6108cf565b34801561032857600080fd5b5061028c610337366004611b52565b6109ca565b34801561034857600080fd5b5061035c610357366004611b8e565b6109e5565b6040516102099190611ba9565b34801561037557600080fd5b5061028c610384366004611ac8565b610ac6565b34801561039557600080fd5b50610227610af5565b3480156103aa57600080fd5b50600e546101fd9060ff1681565b3480156103c457600080fd5b50610227610b83565b3480156103d957600080fd5b506102546103e8366004611ac8565b610b90565b3480156103f957600080fd5b506102a4610408366004611b8e565b610c07565b34801561041957600080fd5b5061028c610c8e565b34801561042e57600080fd5b5061028c61043d366004611c79565b610cc4565b34801561044e57600080fd5b506006546001600160a01b0316610254565b34801561046c57600080fd5b506102a4600d5481565b34801561048257600080fd5b50610227610d05565b61028c610499366004611ac8565b610d14565b3480156104aa57600080fd5b5061028c6104b9366004611cc2565b610e94565b3480156104ca57600080fd5b5061028c6104d9366004611ac8565b610e9f565b3480156104ea57600080fd5b5061028c6104f9366004611cf5565b610ece565b34801561050a57600080fd5b50610227610519366004611ac8565b610f06565b34801561052a57600080fd5b506102a4600c5481565b34801561054057600080fd5b506101fd61054f366004611d71565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561058957600080fd5b5061028c610598366004611d9b565b610fe4565b3480156105a957600080fd5b5061028c6105b8366004611b8e565b6110ca565b60006001600160e01b031982166380ac58cd60e01b14806105ee57506001600160e01b03198216635b5e139f60e01b145b8061060957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461061e90611dbe565b80601f016020809104026020016040519081016040528092919081815260200182805461064a90611dbe565b80156106975780601f1061066c57610100808354040283529160200191610697565b820191906000526020600020905b81548152906001019060200180831161067a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661071f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061074682610b90565b9050806001600160a01b0316836001600160a01b031614156107b45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610716565b336001600160a01b03821614806107d057506107d0813361054f565b6108425760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610716565b61084c8383611165565b505050565b6006546001600160a01b0316331461087b5760405162461bcd60e51b815260040161071690611df9565b600e805460ff1916911515919091179055565b600061089960085490565b905090565b6108a833826111d3565b6108c45760405162461bcd60e51b815260040161071690611e2e565b61084c8383836112ca565b6006546001600160a01b031633146108f95760405162461bcd60e51b815260040161071690611df9565b6002600754141561094c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610716565b600260075560006109656006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146109af576040519150601f19603f3d011682016040523d82523d6000602084013e6109b4565b606091505b50509050806109c257600080fd5b506001600755565b61084c83838360405180602001604052806000815250610ece565b606060006109f283610c07565b905060008167ffffffffffffffff811115610a0f57610a0f611bed565b604051908082528060200260200182016040528015610a38578160200160208202803683370190505b509050600160005b8381108015610a515750600c548211155b15610abc576000610a6183610b90565b9050866001600160a01b0316816001600160a01b03161415610aa95782848381518110610a9057610a90611e7f565b602090810291909101015281610aa581611eab565b9250505b82610ab381611eab565b93505050610a40565b5090949350505050565b6006546001600160a01b03163314610af05760405162461bcd60e51b815260040161071690611df9565b600b55565b600a8054610b0290611dbe565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2e90611dbe565b8015610b7b5780601f10610b5057610100808354040283529160200191610b7b565b820191906000526020600020905b815481529060010190602001808311610b5e57829003601f168201915b505050505081565b60098054610b0290611dbe565b6000818152600260205260408120546001600160a01b0316806106095760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610716565b60006001600160a01b038216610c725760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610716565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610cb85760405162461bcd60e51b815260040161071690611df9565b610cc26000611466565b565b6006546001600160a01b03163314610cee5760405162461bcd60e51b815260040161071690611df9565b8051610d01906009906020840190611991565b5050565b60606001805461061e90611dbe565b80600081118015610d275750600d548111155b610d6a5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610716565b600c5481610d7760085490565b610d819190611ec6565b1115610dc65760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610716565b816101f481610dd460085490565b610dde9190611ec6565b1115610e375780600b54610df29190611ede565b341015610e375760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610716565b600e5460ff1615610e8a5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610716565b61084c33846114b8565b610d013383836114f5565b6006546001600160a01b03163314610ec95760405162461bcd60e51b815260040161071690611df9565b600d55565b610ed833836111d3565b610ef45760405162461bcd60e51b815260040161071690611e2e565b610f00848484846115c4565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f855760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610716565b6000610f8f6115f7565b90506000815111610faf5760405180602001604052806000815250610fdd565b80610fb984611606565b600a604051602001610fcd93929190611efd565b6040516020818303038152906040525b9392505050565b81600081118015610ff75750600d548111155b61103a5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610716565b600c548161104760085490565b6110519190611ec6565b11156110965760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610716565b6006546001600160a01b031633146110c05760405162461bcd60e51b815260040161071690611df9565b61084c82846114b8565b6006546001600160a01b031633146110f45760405162461bcd60e51b815260040161071690611df9565b6001600160a01b0381166111595760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610716565b61116281611466565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061119a82610b90565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661124c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610716565b600061125783610b90565b9050806001600160a01b0316846001600160a01b031614806112925750836001600160a01b0316611287846106a1565b6001600160a01b0316145b806112c257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166112dd82610b90565b6001600160a01b0316146113415760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610716565b6001600160a01b0382166113a35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610716565b6113ae600082611165565b6001600160a01b03831660009081526003602052604081208054600192906113d7908490611fc1565b90915550506001600160a01b0382166000908152600360205260408120805460019290611405908490611ec6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b8181101561084c576114d1600880546001019055565b6114e3836114de60085490565b611704565b806114ed81611eab565b9150506114bb565b816001600160a01b0316836001600160a01b031614156115575760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610716565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6115cf8484846112ca565b6115db8484848461171e565b610f005760405162461bcd60e51b815260040161071690611fd8565b60606009805461061e90611dbe565b60608161162a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611654578061163e81611eab565b915061164d9050600a83612040565b915061162e565b60008167ffffffffffffffff81111561166f5761166f611bed565b6040519080825280601f01601f191660200182016040528015611699576020820181803683370190505b5090505b84156112c2576116ae600183611fc1565b91506116bb600a86612054565b6116c6906030611ec6565b60f81b8183815181106116db576116db611e7f565b60200101906001600160f81b031916908160001a9053506116fd600a86612040565b945061169d565b610d0182826040518060200160405280600081525061181c565b60006001600160a01b0384163b1561181157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611762903390899088908890600401612068565b6020604051808303816000875af192505050801561179d575060408051601f3d908101601f1916820190925261179a918101906120a5565b60015b6117f7573d8080156117cb576040519150601f19603f3d011682016040523d82523d6000602084013e6117d0565b606091505b5080516117ef5760405162461bcd60e51b815260040161071690611fd8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112c2565b506001949350505050565b611826838361184f565b611833600084848461171e565b61084c5760405162461bcd60e51b815260040161071690611fd8565b6001600160a01b0382166118a55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610716565b6000818152600260205260409020546001600160a01b03161561190a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610716565b6001600160a01b0382166000908152600360205260408120805460019290611933908490611ec6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461199d90611dbe565b90600052602060002090601f0160209004810192826119bf5760008555611a05565b82601f106119d857805160ff1916838001178555611a05565b82800160010185558215611a05579182015b82811115611a055782518255916020019190600101906119ea565b50611a11929150611a15565b5090565b5b80821115611a115760008155600101611a16565b6001600160e01b03198116811461116257600080fd5b600060208284031215611a5257600080fd5b8135610fdd81611a2a565b60005b83811015611a78578181015183820152602001611a60565b83811115610f005750506000910152565b60008151808452611aa1816020860160208601611a5d565b601f01601f19169290920160200192915050565b602081526000610fdd6020830184611a89565b600060208284031215611ada57600080fd5b5035919050565b80356001600160a01b0381168114611af857600080fd5b919050565b60008060408385031215611b1057600080fd5b611b1983611ae1565b946020939093013593505050565b80358015158114611af857600080fd5b600060208284031215611b4957600080fd5b610fdd82611b27565b600080600060608486031215611b6757600080fd5b611b7084611ae1565b9250611b7e60208501611ae1565b9150604084013590509250925092565b600060208284031215611ba057600080fd5b610fdd82611ae1565b6020808252825182820181905260009190848201906040850190845b81811015611be157835183529284019291840191600101611bc5565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c1e57611c1e611bed565b604051601f8501601f19908116603f01168101908282118183101715611c4657611c46611bed565b81604052809350858152868686011115611c5f57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c8b57600080fd5b813567ffffffffffffffff811115611ca257600080fd5b8201601f81018413611cb357600080fd5b6112c284823560208401611c03565b60008060408385031215611cd557600080fd5b611cde83611ae1565b9150611cec60208401611b27565b90509250929050565b60008060008060808587031215611d0b57600080fd5b611d1485611ae1565b9350611d2260208601611ae1565b925060408501359150606085013567ffffffffffffffff811115611d4557600080fd5b8501601f81018713611d5657600080fd5b611d6587823560208401611c03565b91505092959194509250565b60008060408385031215611d8457600080fd5b611d8d83611ae1565b9150611cec60208401611ae1565b60008060408385031215611dae57600080fd5b82359150611cec60208401611ae1565b600181811c90821680611dd257607f821691505b60208210811415611df357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415611ebf57611ebf611e95565b5060010190565b60008219821115611ed957611ed9611e95565b500190565b6000816000190483118215151615611ef857611ef8611e95565b500290565b600084516020611f108285838a01611a5d565b855191840191611f238184848a01611a5d565b8554920191600090600181811c9080831680611f4057607f831692505b858310811415611f5e57634e487b7160e01b85526022600452602485fd5b808015611f725760018114611f8357611fb0565b60ff19851688528388019550611fb0565b60008b81526020902060005b85811015611fa85781548a820152908401908801611f8f565b505083880195505b50939b9a5050505050505050505050565b600082821015611fd357611fd3611e95565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261204f5761204f61202a565b500490565b6000826120635761206361202a565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061209b90830184611a89565b9695505050505050565b6000602082840312156120b757600080fd5b8151610fdd81611a2a56fea2646970667358221220ae5a7704187d9763971c9b41151d2d5be977881fab23c996e842c5840f10f83d64736f6c634300080b0033697066733a2f2f516d543468323239515239386a645554484853676471615a724b4c657779455865374a766972414c717043366b392f

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636352211e11610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb011461051e578063e985e9c514610534578063efbd73f41461057d578063f2fde38b1461059d57600080fd5b8063a22cb4651461049e578063b071401b146104be578063b88d4fde146104de578063c87b56dd146104fe57600080fd5b80638da5cb5b116100d15780638da5cb5b1461044257806394354fd01461046057806395d89b4114610476578063a0712d681461048b57600080fd5b80636352211e146103cd57806370a08231146103ed578063715018a61461040d5780637ec4a6591461042257600080fd5b806323b872dd1161017a57806344a0d68a1161014957806344a0d68a146103695780635503a0e8146103895780635c975abb1461039e57806362b99ad4146103b857600080fd5b806323b872dd146102e75780633ccfd60b1461030757806342842e0e1461031c578063438b63001461033c57600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806313faede61461028e57806316c38b3c146102b257806318160ddd146102d257600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611a40565b6105bd565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b5061022761060f565b6040516102099190611ab5565b34801561024057600080fd5b5061025461024f366004611ac8565b6106a1565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611afd565b61073b565b005b34801561029a57600080fd5b506102a4600b5481565b604051908152602001610209565b3480156102be57600080fd5b5061028c6102cd366004611b37565b610851565b3480156102de57600080fd5b506102a461088e565b3480156102f357600080fd5b5061028c610302366004611b52565b61089e565b34801561031357600080fd5b5061028c6108cf565b34801561032857600080fd5b5061028c610337366004611b52565b6109ca565b34801561034857600080fd5b5061035c610357366004611b8e565b6109e5565b6040516102099190611ba9565b34801561037557600080fd5b5061028c610384366004611ac8565b610ac6565b34801561039557600080fd5b50610227610af5565b3480156103aa57600080fd5b50600e546101fd9060ff1681565b3480156103c457600080fd5b50610227610b83565b3480156103d957600080fd5b506102546103e8366004611ac8565b610b90565b3480156103f957600080fd5b506102a4610408366004611b8e565b610c07565b34801561041957600080fd5b5061028c610c8e565b34801561042e57600080fd5b5061028c61043d366004611c79565b610cc4565b34801561044e57600080fd5b506006546001600160a01b0316610254565b34801561046c57600080fd5b506102a4600d5481565b34801561048257600080fd5b50610227610d05565b61028c610499366004611ac8565b610d14565b3480156104aa57600080fd5b5061028c6104b9366004611cc2565b610e94565b3480156104ca57600080fd5b5061028c6104d9366004611ac8565b610e9f565b3480156104ea57600080fd5b5061028c6104f9366004611cf5565b610ece565b34801561050a57600080fd5b50610227610519366004611ac8565b610f06565b34801561052a57600080fd5b506102a4600c5481565b34801561054057600080fd5b506101fd61054f366004611d71565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561058957600080fd5b5061028c610598366004611d9b565b610fe4565b3480156105a957600080fd5b5061028c6105b8366004611b8e565b6110ca565b60006001600160e01b031982166380ac58cd60e01b14806105ee57506001600160e01b03198216635b5e139f60e01b145b8061060957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461061e90611dbe565b80601f016020809104026020016040519081016040528092919081815260200182805461064a90611dbe565b80156106975780601f1061066c57610100808354040283529160200191610697565b820191906000526020600020905b81548152906001019060200180831161067a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661071f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061074682610b90565b9050806001600160a01b0316836001600160a01b031614156107b45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610716565b336001600160a01b03821614806107d057506107d0813361054f565b6108425760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610716565b61084c8383611165565b505050565b6006546001600160a01b0316331461087b5760405162461bcd60e51b815260040161071690611df9565b600e805460ff1916911515919091179055565b600061089960085490565b905090565b6108a833826111d3565b6108c45760405162461bcd60e51b815260040161071690611e2e565b61084c8383836112ca565b6006546001600160a01b031633146108f95760405162461bcd60e51b815260040161071690611df9565b6002600754141561094c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610716565b600260075560006109656006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146109af576040519150601f19603f3d011682016040523d82523d6000602084013e6109b4565b606091505b50509050806109c257600080fd5b506001600755565b61084c83838360405180602001604052806000815250610ece565b606060006109f283610c07565b905060008167ffffffffffffffff811115610a0f57610a0f611bed565b604051908082528060200260200182016040528015610a38578160200160208202803683370190505b509050600160005b8381108015610a515750600c548211155b15610abc576000610a6183610b90565b9050866001600160a01b0316816001600160a01b03161415610aa95782848381518110610a9057610a90611e7f565b602090810291909101015281610aa581611eab565b9250505b82610ab381611eab565b93505050610a40565b5090949350505050565b6006546001600160a01b03163314610af05760405162461bcd60e51b815260040161071690611df9565b600b55565b600a8054610b0290611dbe565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2e90611dbe565b8015610b7b5780601f10610b5057610100808354040283529160200191610b7b565b820191906000526020600020905b815481529060010190602001808311610b5e57829003601f168201915b505050505081565b60098054610b0290611dbe565b6000818152600260205260408120546001600160a01b0316806106095760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610716565b60006001600160a01b038216610c725760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610716565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610cb85760405162461bcd60e51b815260040161071690611df9565b610cc26000611466565b565b6006546001600160a01b03163314610cee5760405162461bcd60e51b815260040161071690611df9565b8051610d01906009906020840190611991565b5050565b60606001805461061e90611dbe565b80600081118015610d275750600d548111155b610d6a5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610716565b600c5481610d7760085490565b610d819190611ec6565b1115610dc65760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610716565b816101f481610dd460085490565b610dde9190611ec6565b1115610e375780600b54610df29190611ede565b341015610e375760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610716565b600e5460ff1615610e8a5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610716565b61084c33846114b8565b610d013383836114f5565b6006546001600160a01b03163314610ec95760405162461bcd60e51b815260040161071690611df9565b600d55565b610ed833836111d3565b610ef45760405162461bcd60e51b815260040161071690611e2e565b610f00848484846115c4565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f855760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610716565b6000610f8f6115f7565b90506000815111610faf5760405180602001604052806000815250610fdd565b80610fb984611606565b600a604051602001610fcd93929190611efd565b6040516020818303038152906040525b9392505050565b81600081118015610ff75750600d548111155b61103a5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610716565b600c548161104760085490565b6110519190611ec6565b11156110965760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610716565b6006546001600160a01b031633146110c05760405162461bcd60e51b815260040161071690611df9565b61084c82846114b8565b6006546001600160a01b031633146110f45760405162461bcd60e51b815260040161071690611df9565b6001600160a01b0381166111595760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610716565b61116281611466565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061119a82610b90565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661124c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610716565b600061125783610b90565b9050806001600160a01b0316846001600160a01b031614806112925750836001600160a01b0316611287846106a1565b6001600160a01b0316145b806112c257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166112dd82610b90565b6001600160a01b0316146113415760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610716565b6001600160a01b0382166113a35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610716565b6113ae600082611165565b6001600160a01b03831660009081526003602052604081208054600192906113d7908490611fc1565b90915550506001600160a01b0382166000908152600360205260408120805460019290611405908490611ec6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b8181101561084c576114d1600880546001019055565b6114e3836114de60085490565b611704565b806114ed81611eab565b9150506114bb565b816001600160a01b0316836001600160a01b031614156115575760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610716565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6115cf8484846112ca565b6115db8484848461171e565b610f005760405162461bcd60e51b815260040161071690611fd8565b60606009805461061e90611dbe565b60608161162a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611654578061163e81611eab565b915061164d9050600a83612040565b915061162e565b60008167ffffffffffffffff81111561166f5761166f611bed565b6040519080825280601f01601f191660200182016040528015611699576020820181803683370190505b5090505b84156112c2576116ae600183611fc1565b91506116bb600a86612054565b6116c6906030611ec6565b60f81b8183815181106116db576116db611e7f565b60200101906001600160f81b031916908160001a9053506116fd600a86612040565b945061169d565b610d0182826040518060200160405280600081525061181c565b60006001600160a01b0384163b1561181157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611762903390899088908890600401612068565b6020604051808303816000875af192505050801561179d575060408051601f3d908101601f1916820190925261179a918101906120a5565b60015b6117f7573d8080156117cb576040519150601f19603f3d011682016040523d82523d6000602084013e6117d0565b606091505b5080516117ef5760405162461bcd60e51b815260040161071690611fd8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112c2565b506001949350505050565b611826838361184f565b611833600084848461171e565b61084c5760405162461bcd60e51b815260040161071690611fd8565b6001600160a01b0382166118a55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610716565b6000818152600260205260409020546001600160a01b03161561190a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610716565b6001600160a01b0382166000908152600360205260408120805460019290611933908490611ec6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461199d90611dbe565b90600052602060002090601f0160209004810192826119bf5760008555611a05565b82601f106119d857805160ff1916838001178555611a05565b82800160010185558215611a05579182015b82811115611a055782518255916020019190600101906119ea565b50611a11929150611a15565b5090565b5b80821115611a115760008155600101611a16565b6001600160e01b03198116811461116257600080fd5b600060208284031215611a5257600080fd5b8135610fdd81611a2a565b60005b83811015611a78578181015183820152602001611a60565b83811115610f005750506000910152565b60008151808452611aa1816020860160208601611a5d565b601f01601f19169290920160200192915050565b602081526000610fdd6020830184611a89565b600060208284031215611ada57600080fd5b5035919050565b80356001600160a01b0381168114611af857600080fd5b919050565b60008060408385031215611b1057600080fd5b611b1983611ae1565b946020939093013593505050565b80358015158114611af857600080fd5b600060208284031215611b4957600080fd5b610fdd82611b27565b600080600060608486031215611b6757600080fd5b611b7084611ae1565b9250611b7e60208501611ae1565b9150604084013590509250925092565b600060208284031215611ba057600080fd5b610fdd82611ae1565b6020808252825182820181905260009190848201906040850190845b81811015611be157835183529284019291840191600101611bc5565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c1e57611c1e611bed565b604051601f8501601f19908116603f01168101908282118183101715611c4657611c46611bed565b81604052809350858152868686011115611c5f57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c8b57600080fd5b813567ffffffffffffffff811115611ca257600080fd5b8201601f81018413611cb357600080fd5b6112c284823560208401611c03565b60008060408385031215611cd557600080fd5b611cde83611ae1565b9150611cec60208401611b27565b90509250929050565b60008060008060808587031215611d0b57600080fd5b611d1485611ae1565b9350611d2260208601611ae1565b925060408501359150606085013567ffffffffffffffff811115611d4557600080fd5b8501601f81018713611d5657600080fd5b611d6587823560208401611c03565b91505092959194509250565b60008060408385031215611d8457600080fd5b611d8d83611ae1565b9150611cec60208401611ae1565b60008060408385031215611dae57600080fd5b82359150611cec60208401611ae1565b600181811c90821680611dd257607f821691505b60208210811415611df357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415611ebf57611ebf611e95565b5060010190565b60008219821115611ed957611ed9611e95565b500190565b6000816000190483118215151615611ef857611ef8611e95565b500290565b600084516020611f108285838a01611a5d565b855191840191611f238184848a01611a5d565b8554920191600090600181811c9080831680611f4057607f831692505b858310811415611f5e57634e487b7160e01b85526022600452602485fd5b808015611f725760018114611f8357611fb0565b60ff19851688528388019550611fb0565b60008b81526020902060005b85811015611fa85781548a820152908401908801611f8f565b505083880195505b50939b9a5050505050505050505050565b600082821015611fd357611fd3611e95565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261204f5761204f61202a565b500490565b6000826120635761206361202a565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061209b90830184611a89565b9695505050505050565b6000602082840312156120b757600080fd5b8151610fdd81611a2a56fea2646970667358221220ae5a7704187d9763971c9b41151d2d5be977881fab23c996e842c5840f10f83d64736f6c634300080b0033

Deployed Bytecode Sourcemap

41571:3403:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28368:305;;;;;;;;;;-1:-1:-1;28368:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;28368:305:0;;;;;;;;29313:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30872:221::-;;;;;;;;;;-1:-1:-1;30872:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;30872:221:0;1528:203:1;30395:411:0;;;;;;;;;;-1:-1:-1;30395:411:0;;;;;:::i;:::-;;:::i;:::-;;41825:33;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;41825:33:0;2173:177:1;44418:77:0;;;;;;;;;;-1:-1:-1;44418:77:0;;;;;:::i;:::-;;:::i;42550:89::-;;;;;;;;;;;;;:::i;31622:339::-;;;;;;;;;;-1:-1:-1;31622:339:0;;;;;:::i;:::-;;:::i;44501:150::-;;;;;;;;;;;;;:::i;32032:185::-;;;;;;;;;;-1:-1:-1;32032:185:0;;;;;:::i;:::-;;:::i;43026:635::-;;;;;;;;;;-1:-1:-1;43026:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;44096:74::-;;;;;;;;;;-1:-1:-1;44096:74:0;;;;;:::i;:::-;;:::i;41783:33::-;;;;;;;;;;;;;:::i;41943:26::-;;;;;;;;;;-1:-1:-1;41943:26:0;;;;;;;;41750:28;;;;;;;;;;;;;:::i;29007:239::-;;;;;;;;;;-1:-1:-1;29007:239:0;;;;;:::i;:::-;;:::i;28737:208::-;;;;;;;;;;-1:-1:-1;28737:208:0;;;;;:::i;:::-;;:::i;8989:103::-;;;;;;;;;;;;;:::i;44312:100::-;;;;;;;;;;-1:-1:-1;44312:100:0;;;;;:::i;:::-;;:::i;8338:87::-;;;;;;;;;;-1:-1:-1;8411:6:0;;-1:-1:-1;;;;;8411:6:0;8338:87;;41899:37;;;;;;;;;;;;;;;;29482:104;;;;;;;;;;;;;:::i;42647:210::-;;;;;;:::i;:::-;;:::i;31165:155::-;;;;;;;;;;-1:-1:-1;31165:155:0;;;;;:::i;:::-;;:::i;44176:130::-;;;;;;;;;;-1:-1:-1;44176:130:0;;;;;:::i;:::-;;:::i;32288:328::-;;;;;;;;;;-1:-1:-1;32288:328:0;;;;;:::i;:::-;;:::i;43667:421::-;;;;;;;;;;-1:-1:-1;43667:421:0;;;;;:::i;:::-;;:::i;41863:31::-;;;;;;;;;;;;;;;;31391:164;;;;;;;;;;-1:-1:-1;31391:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31512:25:0;;;31488:4;31512:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31391:164;42865:155;;;;;;;;;;-1:-1:-1;42865:155:0;;;;;:::i;:::-;;:::i;9247:201::-;;;;;;;;;;-1:-1:-1;9247:201:0;;;;;:::i;:::-;;:::i;28368:305::-;28470:4;-1:-1:-1;;;;;;28507:40:0;;-1:-1:-1;;;28507:40:0;;:105;;-1:-1:-1;;;;;;;28564:48:0;;-1:-1:-1;;;28564:48:0;28507:105;:158;;;-1:-1:-1;;;;;;;;;;21231:40:0;;;28629:36;28487:178;28368:305;-1:-1:-1;;28368:305:0:o;29313:100::-;29367:13;29400:5;29393:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29313:100;:::o;30872:221::-;30948:7;34215:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34215:16:0;30968:73;;;;-1:-1:-1;;;30968:73:0;;7133:2:1;30968:73:0;;;7115:21:1;7172:2;7152:18;;;7145:30;7211:34;7191:18;;;7184:62;-1:-1:-1;;;7262:18:1;;;7255:42;7314:19;;30968:73:0;;;;;;;;;-1:-1:-1;31061:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31061:24:0;;30872:221::o;30395:411::-;30476:13;30492:23;30507:7;30492:14;:23::i;:::-;30476:39;;30540:5;-1:-1:-1;;;;;30534:11:0;:2;-1:-1:-1;;;;;30534:11:0;;;30526:57;;;;-1:-1:-1;;;30526:57:0;;7546:2:1;30526:57:0;;;7528:21:1;7585:2;7565:18;;;7558:30;7624:34;7604:18;;;7597:62;-1:-1:-1;;;7675:18:1;;;7668:31;7716:19;;30526:57:0;7344:397:1;30526:57:0;7142:10;-1:-1:-1;;;;;30618:21:0;;;;:62;;-1:-1:-1;30643:37:0;30660:5;7142:10;31391:164;:::i;30643:37::-;30596:168;;;;-1:-1:-1;;;30596:168:0;;7948:2:1;30596:168:0;;;7930:21:1;7987:2;7967:18;;;7960:30;8026:34;8006:18;;;7999:62;8097:26;8077:18;;;8070:54;8141:19;;30596:168:0;7746:420:1;30596:168:0;30777:21;30786:2;30790:7;30777:8;:21::i;:::-;30465:341;30395:411;;:::o;44418:77::-;8411:6;;-1:-1:-1;;;;;8411:6:0;7142:10;8558:23;8550:68;;;;-1:-1:-1;;;8550:68:0;;;;;;;:::i;:::-;44474:6:::1;:15:::0;;-1:-1:-1;;44474:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44418:77::o;42550:89::-;42594:7;42617:16;:6;3758:14;;3666:114;42617:16;42610:23;;42550:89;:::o;31622:339::-;31817:41;7142:10;31850:7;31817:18;:41::i;:::-;31809:103;;;;-1:-1:-1;;;31809:103:0;;;;;;;:::i;:::-;31925:28;31935:4;31941:2;31945:7;31925:9;:28::i;44501:150::-;8411:6;;-1:-1:-1;;;;;8411:6:0;7142:10;8558:23;8550:68;;;;-1:-1:-1;;;8550:68:0;;;;;;;:::i;:::-;1847:1:::1;2445:7;;:19;;2437:63;;;::::0;-1:-1:-1;;;2437:63:0;;9152:2:1;2437:63:0::1;::::0;::::1;9134:21:1::0;9191:2;9171:18;;;9164:30;9230:33;9210:18;;;9203:61;9281:18;;2437:63:0::1;8950:355:1::0;2437:63:0::1;1847:1;2578:7;:18:::0;44559:7:::2;44580;8411:6:::0;;-1:-1:-1;;;;;8411:6:0;;8338:87;44580:7:::2;-1:-1:-1::0;;;;;44572:21:0::2;44601;44572:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44558:69;;;44642:2;44634:11;;;::::0;::::2;;-1:-1:-1::0;1803:1:0::1;2757:7;:22:::0;44501:150::o;32032:185::-;32170:39;32187:4;32193:2;32197:7;32170:39;;;;;;;;;;;;:16;:39::i;43026:635::-;43101:16;43129:23;43155:17;43165:6;43155:9;:17::i;:::-;43129:43;;43179:30;43226:15;43212:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43212:30:0;-1:-1:-1;43179:63:0;-1:-1:-1;43274:1:0;43249:22;43318:309;43343:15;43325;:33;:64;;;;;43380:9;;43362:14;:27;;43325:64;43318:309;;;43400:25;43428:23;43436:14;43428:7;:23::i;:::-;43400:51;;43487:6;-1:-1:-1;;;;;43466:27:0;:17;-1:-1:-1;;;;;43466:27:0;;43462:131;;;43539:14;43506:13;43520:15;43506:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;43566:17;;;;:::i;:::-;;;;43462:131;43603:16;;;;:::i;:::-;;;;43391:236;43318:309;;;-1:-1:-1;43642:13:0;;43026:635;-1:-1:-1;;;;43026:635:0:o;44096:74::-;8411:6;;-1:-1:-1;;;;;8411:6:0;7142:10;8558:23;8550:68;;;;-1:-1:-1;;;8550:68:0;;;;;;;:::i;:::-;44152:4:::1;:12:::0;44096:74::o;41783:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41750:28::-;;;;;;;:::i;29007:239::-;29079:7;29115:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29115:16:0;29150:19;29142:73;;;;-1:-1:-1;;;29142:73:0;;10126:2:1;29142:73:0;;;10108:21:1;10165:2;10145:18;;;10138:30;10204:34;10184:18;;;10177:62;-1:-1:-1;;;10255:18:1;;;10248:39;10304:19;;29142:73:0;9924:405:1;28737:208:0;28809:7;-1:-1:-1;;;;;28837:19:0;;28829:74;;;;-1:-1:-1;;;28829:74:0;;10536:2:1;28829:74:0;;;10518:21:1;10575:2;10555:18;;;10548:30;10614:34;10594:18;;;10587:62;-1:-1:-1;;;10665:18:1;;;10658:40;10715:19;;28829:74:0;10334:406:1;28829:74:0;-1:-1:-1;;;;;;28921:16:0;;;;;:9;:16;;;;;;;28737:208::o;8989:103::-;8411:6;;-1:-1:-1;;;;;8411:6:0;7142:10;8558:23;8550:68;;;;-1:-1:-1;;;8550:68:0;;;;;;;:::i;:::-;9054:30:::1;9081:1;9054:18;:30::i;:::-;8989:103::o:0;44312:100::-;8411:6;;-1:-1:-1;;;;;8411:6:0;7142:10;8558:23;8550:68;;;;-1:-1:-1;;;8550:68:0;;;;;;;:::i;:::-;44384:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;44312:100:::0;:::o;29482:104::-;29538:13;29571:7;29564:14;;;;;:::i;42647:210::-;42712:11;42189:1;42175:11;:15;:52;;;;;42209:18;;42194:11;:33;;42175:52;42167:85;;;;-1:-1:-1;;;42167:85:0;;10947:2:1;42167:85:0;;;10929:21:1;10986:2;10966:18;;;10959:30;-1:-1:-1;;;11005:18:1;;;10998:50;11065:18;;42167:85:0;10745:344:1;42167:85:0;42301:9;;42286:11;42267:16;:6;3758:14;;3666:114;42267:16;:30;;;;:::i;:::-;:43;;42259:76;;;;-1:-1:-1;;;42259:76:0;;11429:2:1;42259:76:0;;;11411:21:1;11468:2;11448:18;;;11441:30;-1:-1:-1;;;11487:18:1;;;11480:50;11547:18;;42259:76:0;11227:344:1;42259:76:0;42745:11:::1;42447:3;42433:11;42416:16;:6;3758:14:::0;;3666:114;42416:16:::1;:28;;;;:::i;:::-;:34;42412:119;;;42488:11;42481:4;;:18;;;;:::i;:::-;42468:9;:31;;42460:63;;;::::0;-1:-1:-1;;;42460:63:0;;11951:2:1;42460:63:0::1;::::0;::::1;11933:21:1::0;11990:2;11970:18;;;11963:30;-1:-1:-1;;;12009:18:1;;;12002:49;12068:18;;42460:63:0::1;11749:343:1::0;42460:63:0::1;42774:6:::2;::::0;::::2;;42773:7;42765:43;;;::::0;-1:-1:-1;;;42765:43:0;;12299:2:1;42765:43:0::2;::::0;::::2;12281:21:1::0;12338:2;12318:18;;;12311:30;12377:25;12357:18;;;12350:53;12420:18;;42765:43:0::2;12097:347:1::0;42765:43:0::2;42817:34;42827:10;42839:11;42817:9;:34::i;31165:155::-:0;31260:52;7142:10;31293:8;31303;31260:18;:52::i;44176:130::-;8411:6;;-1:-1:-1;;;;;8411:6:0;7142:10;8558:23;8550:68;;;;-1:-1:-1;;;8550:68:0;;;;;;;:::i;:::-;44260:18:::1;:40:::0;44176:130::o;32288:328::-;32463:41;7142:10;32496:7;32463:18;:41::i;:::-;32455:103;;;;-1:-1:-1;;;32455:103:0;;;;;;;:::i;:::-;32569:39;32583:4;32589:2;32593:7;32602:5;32569:13;:39::i;:::-;32288:328;;;;:::o;43667:421::-;34191:4;34215:16;;;:7;:16;;;;;;43766:13;;-1:-1:-1;;;;;34215:16:0;43791:99;;;;-1:-1:-1;;;43791:99:0;;12651:2:1;43791:99:0;;;12633:21:1;12690:2;12670:18;;;12663:30;12729:34;12709:18;;;12702:62;-1:-1:-1;;;12780:18:1;;;12773:45;12835:19;;43791:99:0;12449:411:1;43791:99:0;43897:28;43928:10;:8;:10::i;:::-;43897:41;;43983:1;43958:14;43952:28;:32;:130;;;;;;;;;;;;;;;;;44020:14;44036:19;:8;:17;:19::i;:::-;44057:9;44003:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43952:130;43945:137;43667:421;-1:-1:-1;;;43667:421:0:o;42865:155::-;42951:11;42189:1;42175:11;:15;:52;;;;;42209:18;;42194:11;:33;;42175:52;42167:85;;;;-1:-1:-1;;;42167:85:0;;10947:2:1;42167:85:0;;;10929:21:1;10986:2;10966:18;;;10959:30;-1:-1:-1;;;11005:18:1;;;10998:50;11065:18;;42167:85:0;10745:344:1;42167:85:0;42301:9;;42286:11;42267:16;:6;3758:14;;3666:114;42267:16;:30;;;;:::i;:::-;:43;;42259:76;;;;-1:-1:-1;;;42259:76:0;;11429:2:1;42259:76:0;;;11411:21:1;11468:2;11448:18;;;11441:30;-1:-1:-1;;;11487:18:1;;;11480:50;11547:18;;42259:76:0;11227:344:1;42259:76:0;8411:6;;-1:-1:-1;;;;;8411:6:0;7142:10;8558:23:::1;8550:68;;;;-1:-1:-1::0;;;8550:68:0::1;;;;;;;:::i;:::-;42981:33:::2;42991:9;43002:11;42981:9;:33::i;9247:201::-:0;8411:6;;-1:-1:-1;;;;;8411:6:0;7142:10;8558:23;8550:68;;;;-1:-1:-1;;;8550:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9336:22:0;::::1;9328:73;;;::::0;-1:-1:-1;;;9328:73:0;;14725:2:1;9328:73:0::1;::::0;::::1;14707:21:1::0;14764:2;14744:18;;;14737:30;14803:34;14783:18;;;14776:62;-1:-1:-1;;;14854:18:1;;;14847:36;14900:19;;9328:73:0::1;14523:402:1::0;9328:73:0::1;9412:28;9431:8;9412:18;:28::i;:::-;9247:201:::0;:::o;38272:174::-;38347:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;38347:29:0;-1:-1:-1;;;;;38347:29:0;;;;;;;;:24;;38401:23;38347:24;38401:14;:23::i;:::-;-1:-1:-1;;;;;38392:46:0;;;;;;;;;;;38272:174;;:::o;34420:348::-;34513:4;34215:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34215:16:0;34530:73;;;;-1:-1:-1;;;34530:73:0;;15132:2:1;34530:73:0;;;15114:21:1;15171:2;15151:18;;;15144:30;15210:34;15190:18;;;15183:62;-1:-1:-1;;;15261:18:1;;;15254:42;15313:19;;34530:73:0;14930:408:1;34530:73:0;34614:13;34630:23;34645:7;34630:14;:23::i;:::-;34614:39;;34683:5;-1:-1:-1;;;;;34672:16:0;:7;-1:-1:-1;;;;;34672:16:0;;:51;;;;34716:7;-1:-1:-1;;;;;34692:31:0;:20;34704:7;34692:11;:20::i;:::-;-1:-1:-1;;;;;34692:31:0;;34672:51;:87;;;-1:-1:-1;;;;;;31512:25:0;;;31488:4;31512:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;34727:32;34664:96;34420:348;-1:-1:-1;;;;34420:348:0:o;37529:625::-;37688:4;-1:-1:-1;;;;;37661:31:0;:23;37676:7;37661:14;:23::i;:::-;-1:-1:-1;;;;;37661:31:0;;37653:81;;;;-1:-1:-1;;;37653:81:0;;15545:2:1;37653:81:0;;;15527:21:1;15584:2;15564:18;;;15557:30;15623:34;15603:18;;;15596:62;-1:-1:-1;;;15674:18:1;;;15667:35;15719:19;;37653:81:0;15343:401:1;37653:81:0;-1:-1:-1;;;;;37753:16:0;;37745:65;;;;-1:-1:-1;;;37745:65:0;;15951:2:1;37745:65:0;;;15933:21:1;15990:2;15970:18;;;15963:30;16029:34;16009:18;;;16002:62;-1:-1:-1;;;16080:18:1;;;16073:34;16124:19;;37745:65:0;15749:400:1;37745:65:0;37927:29;37944:1;37948:7;37927:8;:29::i;:::-;-1:-1:-1;;;;;37969:15:0;;;;;;:9;:15;;;;;:20;;37988:1;;37969:15;:20;;37988:1;;37969:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38000:13:0;;;;;;:9;:13;;;;;:18;;38017:1;;38000:13;:18;;38017:1;;38000:18;:::i;:::-;;;;-1:-1:-1;;38029:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38029:21:0;-1:-1:-1;;;;;38029:21:0;;;;;;;;;38068:27;;38029:16;;38068:27;;;;;;;30465:341;30395:411;;:::o;9608:191::-;9701:6;;;-1:-1:-1;;;;;9718:17:0;;;-1:-1:-1;;;;;;9718:17:0;;;;;;;9751:40;;9701:6;;;9718:17;9701:6;;9751:40;;9682:16;;9751:40;9671:128;9608:191;:::o;44657:204::-;44737:9;44732:124;44756:11;44752:1;:15;44732:124;;;44783:18;:6;3877:19;;3895:1;3877:19;;;3788:127;44783:18;44810:38;44820:9;44831:16;:6;3758:14;;3666:114;44831:16;44810:9;:38::i;:::-;44769:3;;;;:::i;:::-;;;;44732:124;;38588:315;38743:8;-1:-1:-1;;;;;38734:17:0;:5;-1:-1:-1;;;;;38734:17:0;;;38726:55;;;;-1:-1:-1;;;38726:55:0;;16486:2:1;38726:55:0;;;16468:21:1;16525:2;16505:18;;;16498:30;16564:27;16544:18;;;16537:55;16609:18;;38726:55:0;16284:349:1;38726:55:0;-1:-1:-1;;;;;38792:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;38792:46:0;;;;;;;;;;38854:41;;540::1;;;38854::0;;513:18:1;38854:41:0;;;;;;;38588:315;;;:::o;33498:::-;33655:28;33665:4;33671:2;33675:7;33655:9;:28::i;:::-;33702:48;33725:4;33731:2;33735:7;33744:5;33702:22;:48::i;:::-;33694:111;;;;-1:-1:-1;;;33694:111:0;;;;;;;:::i;44867:104::-;44927:13;44956:9;44949:16;;;;;:::i;4624:723::-;4680:13;4901:10;4897:53;;-1:-1:-1;;4928:10:0;;;;;;;;;;;;-1:-1:-1;;;4928:10:0;;;;;4624:723::o;4897:53::-;4975:5;4960:12;5016:78;5023:9;;5016:78;;5049:8;;;;:::i;:::-;;-1:-1:-1;5072:10:0;;-1:-1:-1;5080:2:0;5072:10;;:::i;:::-;;;5016:78;;;5104:19;5136:6;5126:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5126:17:0;;5104:39;;5154:154;5161:10;;5154:154;;5188:11;5198:1;5188:11;;:::i;:::-;;-1:-1:-1;5257:10:0;5265:2;5257:5;:10;:::i;:::-;5244:24;;:2;:24;:::i;:::-;5231:39;;5214:6;5221;5214:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;5214:56:0;;;;;;;;-1:-1:-1;5285:11:0;5294:2;5285:11;;:::i;:::-;;;5154:154;;35110:110;35186:26;35196:2;35200:7;35186:26;;;;;;;;;;;;:9;:26::i;39468:799::-;39623:4;-1:-1:-1;;;;;39644:13:0;;11334:19;:23;39640:620;;39680:72;;-1:-1:-1;;;39680:72:0;;-1:-1:-1;;;;;39680:36:0;;;;;:72;;7142:10;;39731:4;;39737:7;;39746:5;;39680:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39680:72:0;;;;;;;;-1:-1:-1;;39680:72:0;;;;;;;;;;;;:::i;:::-;;;39676:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39922:13:0;;39918:272;;39965:60;;-1:-1:-1;;;39965:60:0;;;;;;;:::i;39918:272::-;40140:6;40134:13;40125:6;40121:2;40117:15;40110:38;39676:529;-1:-1:-1;;;;;;39803:51:0;-1:-1:-1;;;39803:51:0;;-1:-1:-1;39796:58:0;;39640:620;-1:-1:-1;40244:4:0;39468:799;;;;;;:::o;35447:321::-;35577:18;35583:2;35587:7;35577:5;:18::i;:::-;35628:54;35659:1;35663:2;35667:7;35676:5;35628:22;:54::i;:::-;35606:154;;;;-1:-1:-1;;;35606:154:0;;;;;;;:::i;36104:439::-;-1:-1:-1;;;;;36184:16:0;;36176:61;;;;-1:-1:-1;;;36176:61:0;;18381:2:1;36176:61:0;;;18363:21:1;;;18400:18;;;18393:30;18459:34;18439:18;;;18432:62;18511:18;;36176:61:0;18179:356:1;36176:61:0;34191:4;34215:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34215:16:0;:30;36248:58;;;;-1:-1:-1;;;36248:58:0;;18742:2:1;36248:58:0;;;18724:21:1;18781:2;18761:18;;;18754:30;18820;18800:18;;;18793:58;18868:18;;36248:58:0;18540:352:1;36248:58:0;-1:-1:-1;;;;;36377:13:0;;;;;;:9;:13;;;;;:18;;36394:1;;36377:13;:18;;36394:1;;36377:18;:::i;:::-;;;;-1:-1:-1;;36406:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36406:21:0;-1:-1:-1;;;;;36406:21:0;;;;;;;;36445:33;;36406:16;;;36445:33;;36406:16;;36445:33;44384:22:::1;44312:100:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:160::-;2420:20;;2476:13;;2469:21;2459:32;;2449:60;;2505:1;2502;2495:12;2520:180;2576:6;2629:2;2617:9;2608:7;2604:23;2600:32;2597:52;;;2645:1;2642;2635:12;2597:52;2668:26;2684:9;2668:26;:::i;2705:328::-;2782:6;2790;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;;2938:38;2972:2;2961:9;2957:18;2938:38;:::i;:::-;2928:48;;3023:2;3012:9;3008:18;2995:32;2985:42;;2705:328;;;;;:::o;3038:186::-;3097:6;3150:2;3138:9;3129:7;3125:23;3121:32;3118:52;;;3166:1;3163;3156:12;3118:52;3189:29;3208:9;3189:29;:::i;3229:632::-;3400:2;3452:21;;;3522:13;;3425:18;;;3544:22;;;3371:4;;3400:2;3623:15;;;;3597:2;3582:18;;;3371:4;3666:169;3680:6;3677:1;3674:13;3666:169;;;3741:13;;3729:26;;3810:15;;;;3775:12;;;;3702:1;3695:9;3666:169;;;-1:-1:-1;3852:3:1;;3229:632;-1:-1:-1;;;;;;3229:632:1:o;3866:127::-;3927:10;3922:3;3918:20;3915:1;3908:31;3958:4;3955:1;3948:15;3982:4;3979:1;3972:15;3998:632;4063:5;4093:18;4134:2;4126:6;4123:14;4120:40;;;4140:18;;:::i;:::-;4215:2;4209:9;4183:2;4269:15;;-1:-1:-1;;4265:24:1;;;4291:2;4261:33;4257:42;4245:55;;;4315:18;;;4335:22;;;4312:46;4309:72;;;4361:18;;:::i;:::-;4401:10;4397:2;4390:22;4430:6;4421:15;;4460:6;4452;4445:22;4500:3;4491:6;4486:3;4482:16;4479:25;4476:45;;;4517:1;4514;4507:12;4476:45;4567:6;4562:3;4555:4;4547:6;4543:17;4530:44;4622:1;4615:4;4606:6;4598;4594:19;4590:30;4583:41;;;;3998:632;;;;;:::o;4635:451::-;4704:6;4757:2;4745:9;4736:7;4732:23;4728:32;4725:52;;;4773:1;4770;4763:12;4725:52;4813:9;4800:23;4846:18;4838:6;4835:30;4832:50;;;4878:1;4875;4868:12;4832:50;4901:22;;4954:4;4946:13;;4942:27;-1:-1:-1;4932:55:1;;4983:1;4980;4973:12;4932:55;5006:74;5072:7;5067:2;5054:16;5049:2;5045;5041:11;5006:74;:::i;5091:254::-;5156:6;5164;5217:2;5205:9;5196:7;5192:23;5188:32;5185:52;;;5233:1;5230;5223:12;5185:52;5256:29;5275:9;5256:29;:::i;:::-;5246:39;;5304:35;5335:2;5324:9;5320:18;5304:35;:::i;:::-;5294:45;;5091:254;;;;;:::o;5350:667::-;5445:6;5453;5461;5469;5522:3;5510:9;5501:7;5497:23;5493:33;5490:53;;;5539:1;5536;5529:12;5490:53;5562:29;5581:9;5562:29;:::i;:::-;5552:39;;5610:38;5644:2;5633:9;5629:18;5610:38;:::i;:::-;5600:48;;5695:2;5684:9;5680:18;5667:32;5657:42;;5750:2;5739:9;5735:18;5722:32;5777:18;5769:6;5766:30;5763:50;;;5809:1;5806;5799:12;5763:50;5832:22;;5885:4;5877:13;;5873:27;-1:-1:-1;5863:55:1;;5914:1;5911;5904:12;5863:55;5937:74;6003:7;5998:2;5985:16;5980:2;5976;5972:11;5937:74;:::i;:::-;5927:84;;;5350:667;;;;;;;:::o;6022:260::-;6090:6;6098;6151:2;6139:9;6130:7;6126:23;6122:32;6119:52;;;6167:1;6164;6157:12;6119:52;6190:29;6209:9;6190:29;:::i;:::-;6180:39;;6238:38;6272:2;6261:9;6257:18;6238:38;:::i;6287:254::-;6355:6;6363;6416:2;6404:9;6395:7;6391:23;6387:32;6384:52;;;6432:1;6429;6422:12;6384:52;6468:9;6455:23;6445:33;;6497:38;6531:2;6520:9;6516:18;6497:38;:::i;6546:380::-;6625:1;6621:12;;;;6668;;;6689:61;;6743:4;6735:6;6731:17;6721:27;;6689:61;6796:2;6788:6;6785:14;6765:18;6762:38;6759:161;;;6842:10;6837:3;6833:20;6830:1;6823:31;6877:4;6874:1;6867:15;6905:4;6902:1;6895:15;6759:161;;6546:380;;;:::o;8171:356::-;8373:2;8355:21;;;8392:18;;;8385:30;8451:34;8446:2;8431:18;;8424:62;8518:2;8503:18;;8171:356::o;8532:413::-;8734:2;8716:21;;;8773:2;8753:18;;;8746:30;8812:34;8807:2;8792:18;;8785:62;-1:-1:-1;;;8878:2:1;8863:18;;8856:47;8935:3;8920:19;;8532:413::o;9520:127::-;9581:10;9576:3;9572:20;9569:1;9562:31;9612:4;9609:1;9602:15;9636:4;9633:1;9626:15;9652:127;9713:10;9708:3;9704:20;9701:1;9694:31;9744:4;9741:1;9734:15;9768:4;9765:1;9758:15;9784:135;9823:3;-1:-1:-1;;9844:17:1;;9841:43;;;9864:18;;:::i;:::-;-1:-1:-1;9911:1:1;9900:13;;9784:135::o;11094:128::-;11134:3;11165:1;11161:6;11158:1;11155:13;11152:39;;;11171:18;;:::i;:::-;-1:-1:-1;11207:9:1;;11094:128::o;11576:168::-;11616:7;11682:1;11678;11674:6;11670:14;11667:1;11664:21;11659:1;11652:9;11645:17;11641:45;11638:71;;;11689:18;;:::i;:::-;-1:-1:-1;11729:9:1;;11576:168::o;12991:1527::-;13215:3;13253:6;13247:13;13279:4;13292:51;13336:6;13331:3;13326:2;13318:6;13314:15;13292:51;:::i;:::-;13406:13;;13365:16;;;;13428:55;13406:13;13365:16;13450:15;;;13428:55;:::i;:::-;13572:13;;13505:20;;;13545:1;;13632;13654:18;;;;13707;;;;13734:93;;13812:4;13802:8;13798:19;13786:31;;13734:93;13875:2;13865:8;13862:16;13842:18;13839:40;13836:167;;;-1:-1:-1;;;13902:33:1;;13958:4;13955:1;13948:15;13988:4;13909:3;13976:17;13836:167;14019:18;14046:110;;;;14170:1;14165:328;;;;14012:481;;14046:110;-1:-1:-1;;14081:24:1;;14067:39;;14126:20;;;;-1:-1:-1;14046:110:1;;14165:328;12938:1;12931:14;;;12975:4;12962:18;;14260:1;14274:169;14288:8;14285:1;14282:15;14274:169;;;14370:14;;14355:13;;;14348:37;14413:16;;;;14305:10;;14274:169;;;14278:3;;14474:8;14467:5;14463:20;14456:27;;14012:481;-1:-1:-1;14509:3:1;;12991:1527;-1:-1:-1;;;;;;;;;;;12991:1527:1:o;16154:125::-;16194:4;16222:1;16219;16216:8;16213:34;;;16227:18;;:::i;:::-;-1:-1:-1;16264:9:1;;16154:125::o;16638:414::-;16840:2;16822:21;;;16879:2;16859:18;;;16852:30;16918:34;16913:2;16898:18;;16891:62;-1:-1:-1;;;16984:2:1;16969:18;;16962:48;17042:3;17027:19;;16638:414::o;17057:127::-;17118:10;17113:3;17109:20;17106:1;17099:31;17149:4;17146:1;17139:15;17173:4;17170:1;17163:15;17189:120;17229:1;17255;17245:35;;17260:18;;:::i;:::-;-1:-1:-1;17294:9:1;;17189:120::o;17314:112::-;17346:1;17372;17362:35;;17377:18;;:::i;:::-;-1:-1:-1;17411:9:1;;17314:112::o;17431:489::-;-1:-1:-1;;;;;17700:15:1;;;17682:34;;17752:15;;17747:2;17732:18;;17725:43;17799:2;17784:18;;17777:34;;;17847:3;17842:2;17827:18;;17820:31;;;17625:4;;17868:46;;17894:19;;17886:6;17868:46;:::i;:::-;17860:54;17431:489;-1:-1:-1;;;;;;17431:489:1:o;17925:249::-;17994:6;18047:2;18035:9;18026:7;18022:23;18018:32;18015:52;;;18063:1;18060;18053:12;18015:52;18095:9;18089:16;18114:30;18138:5;18114:30;:::i

Swarm Source

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