ETH Price: $2,603.56 (-0.38%)

Token

FroggyRIBBITRIBBIT (FROGGY)
 

Overview

Max Total Supply

81 FROGGY

Holders

12

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
paandasaurus.eth
Balance
6 FROGGY
0x85737b7667aa0b3df09D5120F6C5bfD3C3f8291d
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:
FROGGYRIBBIRIBBIT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// 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/[email protected]


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



/**
 * @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/[email protected]


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

/**
 * @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/introspection/[email protected]


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



/**
 * @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/token/ERC721/[email protected]


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



/**
 * @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/[email protected]


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



/**
 * @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/token/ERC721/extensions/[email protected]


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



/**
 * @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/extensions/[email protected]


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



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

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

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


// File @openzeppelin/contracts/utils/[email protected]


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



/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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/utils/introspection/[email protected]


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



/**
 * @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 contracts/ERC721A.sol


// Creator: FROGGY


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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 1;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert('ERC721A: unable to get token of owner by index');
    }

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

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

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

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), 'ERC721A: token already minted');
        require(quantity > 0, 'ERC721A: quantity must be greater 0');

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp);
            }
        }

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

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

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

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

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

contract FROGGYRIBBIRIBBIT is ERC721A, Ownable {

    string public baseURI = "QmScJTX5AayN5L4ghwkqL9e3heTQJ1iyaaL4ynzxtDQ3Bm";
    string public contractURI = "ipfs://QmZhbSYLAPmxUkT39LFTuLhLtpQM4CK1zzA3bAeixUNwCx";
    string public constant baseExtension = ".json";

    uint256 public constant MAX_PER_TX = 10;
    uint256 public constant MAX_PER_WALLET = 10;
    uint256 public constant MAX_SUPPLY = 500;
    uint256 public constant price = 0.0069 ether;

    bool public paused = false;

    mapping(address => uint256) public addressMinted;

    constructor() ERC721A("FroggyRIBBITRIBBIT", "FROGGY") {}

    function mint(uint256 _amount) external payable {
        address _caller = _msgSender();
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply");
        require(_amount > 0, "No 0 mints");
        require(tx.origin == _caller, "No contracts");
        require(addressMinted[msg.sender] + _amount <= MAX_PER_WALLET, "Exceeds max per wallet");
        require(MAX_PER_TX >= _amount , "Excess max per paid tx");
        require(_amount * price == msg.value, "Invalid funds provided");
         addressMinted[msg.sender] += _amount;
        _safeMint(_caller, _amount);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

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

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
              baseExtension
            )
        ) : "";
    }
}

contract OwnableDelegateProxy { }
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

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":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600160005560e0604052602e608081815290620024e360a03980516200002e916008916020909101906200015f565b50604051806060016040528060358152602001620025116035913980516200005f916009916020909101906200015f565b50600a805460ff191690553480156200007757600080fd5b506040805180820182526012815271119c9bd9d9de54925090925514925090925560721b60208083019182528351808501909452600684526546524f47475960d01b908401528151919291620000d0916001916200015f565b508051620000e69060029060208401906200015f565b50505062000103620000fd6200010960201b60201c565b6200010d565b62000242565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200016d9062000205565b90600052602060002090601f016020900481019282620001915760008555620001dc565b82601f10620001ac57805160ff1916838001178555620001dc565b82800160010185558215620001dc579182015b82811115620001dc578251825591602001919060010190620001bf565b50620001ea929150620001ee565b5090565b5b80821115620001ea5760008155600101620001ef565b600181811c908216806200021a57607f821691505b602082108114156200023c57634e487b7160e01b600052602260045260246000fd5b50919050565b61229180620002526000396000f3fe6080604052600436106101e35760003560e01c80636c0360eb11610102578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610547578063f2fde38b14610590578063f43a22dc146102b9578063fa30297e146105b057600080fd5b8063b88d4fde146104c1578063c6682862146104e1578063c87b56dd14610512578063e8a3d4851461053257600080fd5b806395d89b41116100d157806395d89b411461045e578063a035b1fe14610473578063a0712d681461048e578063a22cb465146104a157600080fd5b80636c0360eb146103f657806370a082311461040b578063715018a61461042b5780638da5cb5b1461044057600080fd5b80632f745c591161017a5780634f6ccce7116101495780634f6ccce71461037c57806355f804b31461039c5780635c975abb146103bc5780636352211e146103d657600080fd5b80632f745c591461031157806332cb6b0c146103315780633ccfd60b1461034757806342842e0e1461035c57600080fd5b8063095ea7b3116101b6578063095ea7b3146102995780630f2cdd6c146102b957806318160ddd146102dc57806323b872dd146102f157600080fd5b806301ffc9a7146101e857806302329a291461021d57806306fdde031461023f578063081812fc14610261575b600080fd5b3480156101f457600080fd5b50610208610203366004611e50565b6105dd565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023d610238366004611e35565b61064a565b005b34801561024b57600080fd5b50610254610690565b6040516102149190612018565b34801561026d57600080fd5b5061028161027c366004611ed3565b610722565b6040516001600160a01b039091168152602001610214565b3480156102a557600080fd5b5061023d6102b4366004611e0b565b6107ad565b3480156102c557600080fd5b506102ce600a81565b604051908152602001610214565b3480156102e857600080fd5b506000546102ce565b3480156102fd57600080fd5b5061023d61030c366004611d29565b6108c5565b34801561031d57600080fd5b506102ce61032c366004611e0b565b6108d0565b34801561033d57600080fd5b506102ce6101f481565b34801561035357600080fd5b5061023d610a3e565b34801561036857600080fd5b5061023d610377366004611d29565b610af7565b34801561038857600080fd5b506102ce610397366004611ed3565b610b12565b3480156103a857600080fd5b5061023d6103b7366004611e8a565b610b74565b3480156103c857600080fd5b50600a546102089060ff1681565b3480156103e257600080fd5b506102816103f1366004611ed3565b610bb1565b34801561040257600080fd5b50610254610bc3565b34801561041757600080fd5b506102ce610426366004611cd4565b610c51565b34801561043757600080fd5b5061023d610ce2565b34801561044c57600080fd5b506007546001600160a01b0316610281565b34801561046a57600080fd5b50610254610d18565b34801561047f57600080fd5b506102ce6618838370f3400081565b61023d61049c366004611ed3565b610d27565b3480156104ad57600080fd5b5061023d6104bc366004611de1565b610f79565b3480156104cd57600080fd5b5061023d6104dc366004611d65565b61103e565b3480156104ed57600080fd5b5061025460405180604001604052806005815260200164173539b7b760d91b81525081565b34801561051e57600080fd5b5061025461052d366004611ed3565b611077565b34801561053e57600080fd5b50610254611143565b34801561055357600080fd5b50610208610562366004611cf6565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561059c57600080fd5b5061023d6105ab366004611cd4565b611150565b3480156105bc57600080fd5b506102ce6105cb366004611cd4565b600b6020526000908152604090205481565b60006001600160e01b031982166380ac58cd60e01b148061060e57506001600160e01b03198216635b5e139f60e01b145b8061062957506001600160e01b0319821663780e9d6360e01b145b8061064457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b0316331461067d5760405162461bcd60e51b81526004016106749061202b565b60405180910390fd5b600a805460ff1916911515919091179055565b60606001805461069f90612183565b80601f01602080910402602001604051908101604052809291908181526020018280546106cb90612183565b80156107185780601f106106ed57610100808354040283529160200191610718565b820191906000526020600020905b8154815290600101906020018083116106fb57829003601f168201915b5050505050905090565b600061072f826000541190565b6107915760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610674565b506000908152600560205260409020546001600160a01b031690565b60006107b882610bb1565b9050806001600160a01b0316836001600160a01b031614156108275760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610674565b336001600160a01b038216148061084357506108438133610562565b6108b55760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610674565b6108c08383836111eb565b505050565b6108c0838383611247565b60006108db83610c51565b82106109345760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610674565b600080549080805b838110156109de576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561098f57805192505b876001600160a01b0316836001600160a01b031614156109cb57868414156109bd5750935061064492505050565b836109c7816121be565b9450505b50806109d6816121be565b91505061093c565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610674565b6007546001600160a01b03163314610a685760405162461bcd60e51b81526004016106749061202b565b6040514790600090339083908381818185875af1925050503d8060008114610aac576040519150601f19603f3d011682016040523d82523d6000602084013e610ab1565b606091505b5050905080610af35760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b6044820152606401610674565b5050565b6108c08383836040518060200160405280600081525061103e565b600080548210610b705760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610674565b5090565b6007546001600160a01b03163314610b9e5760405162461bcd60e51b81526004016106749061202b565b8051610af3906008906020840190611ba2565b6000610bbc8261158e565b5192915050565b60088054610bd090612183565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfc90612183565b8015610c495780601f10610c1e57610100808354040283529160200191610c49565b820191906000526020600020905b815481529060010190602001808311610c2c57829003601f168201915b505050505081565b60006001600160a01b038216610cbd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610674565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610d0c5760405162461bcd60e51b81526004016106749061202b565b610d16600061166e565b565b60606002805461069f90612183565b600a54339060ff1615610d655760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b6044820152606401610674565b81610d6f60005490565b610d7991906120de565b6101f41015610dbf5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610674565b60008211610dfc5760405162461bcd60e51b815260206004820152600a6024820152694e6f2030206d696e747360b01b6044820152606401610674565b326001600160a01b03821614610e435760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b6044820152606401610674565b336000908152600b6020526040902054600a90610e619084906120de565b1115610ea85760405162461bcd60e51b8152602060048201526016602482015275115e18d959591cc81b585e081c195c881dd85b1b195d60521b6044820152606401610674565b81600a1015610ef25760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440e0c2d2c840e8f60531b6044820152606401610674565b34610f046618838370f340008461210a565b14610f4a5760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b6044820152606401610674565b336000908152600b602052604081208054849290610f699084906120de565b90915550610af3905081836116c0565b6001600160a01b038216331415610fd25760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610674565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611049848484611247565b611055848484846116da565b6110715760405162461bcd60e51b815260040161067490612060565b50505050565b6060611084826000541190565b6110c85760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610674565b6000600880546110d790612183565b9050116110f35760405180602001604052806000815250610644565b60086110fe836117e8565b60405180604001604052806005815260200164173539b7b760d91b81525060405160200161112e93929190611f34565b60405160208183030381529060405292915050565b60098054610bd090612183565b6007546001600160a01b0316331461117a5760405162461bcd60e51b81526004016106749061202b565b6001600160a01b0381166111df5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610674565b6111e88161166e565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112528261158e565b80519091506000906001600160a01b0316336001600160a01b0316148061128957503361127e84610722565b6001600160a01b0316145b8061129b5750815161129b9033610562565b9050806113055760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610674565b846001600160a01b031682600001516001600160a01b0316146113795760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610674565b6001600160a01b0384166113dd5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610674565b6113ed60008484600001516111eb565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b959092169490940217909255906114b29085906120de565b6000818152600360205260409020549091506001600160a01b0316611544576114dc816000541190565b156115445760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526115ad826000541190565b61160c5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610674565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561165b579392505050565b50806116668161216c565b91505061160e565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610af38282604051806020016040528060008152506118e6565b60006001600160a01b0384163b156117dc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061171e903390899088908890600401611fe5565b602060405180830381600087803b15801561173857600080fd5b505af1925050508015611768575060408051601f3d908101601f1916820190925261176591810190611e6d565b60015b6117c2573d808015611796576040519150601f19603f3d011682016040523d82523d6000602084013e61179b565b606091505b5080516117ba5760405162461bcd60e51b815260040161067490612060565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117e0565b5060015b949350505050565b60608161180c5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118365780611820816121be565b915061182f9050600a836120f6565b9150611810565b60008167ffffffffffffffff8111156118515761185161222f565b6040519080825280601f01601f19166020018201604052801561187b576020820181803683370190505b5090505b84156117e057611890600183612129565b915061189d600a866121d9565b6118a89060306120de565b60f81b8183815181106118bd576118bd612219565b60200101906001600160f81b031916908160001a9053506118df600a866120f6565b945061187f565b6000546001600160a01b0384166119495760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610674565b611954816000541190565b156119a15760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610674565b600083116119fd5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610674565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611a599087906120b3565b6001600160801b03168152602001858360200151611a7791906120b3565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611b975760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b5b60008884886116da565b611b775760405162461bcd60e51b815260040161067490612060565b81611b81816121be565b9250508080611b8f906121be565b915050611b0e565b506000819055611586565b828054611bae90612183565b90600052602060002090601f016020900481019282611bd05760008555611c16565b82601f10611be957805160ff1916838001178555611c16565b82800160010185558215611c16579182015b82811115611c16578251825591602001919060010190611bfb565b50610b709291505b80821115610b705760008155600101611c1e565b600067ffffffffffffffff80841115611c4d57611c4d61222f565b604051601f8501601f19908116603f01168101908282118183101715611c7557611c7561222f565b81604052809350858152868686011115611c8e57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611cbf57600080fd5b919050565b80358015158114611cbf57600080fd5b600060208284031215611ce657600080fd5b611cef82611ca8565b9392505050565b60008060408385031215611d0957600080fd5b611d1283611ca8565b9150611d2060208401611ca8565b90509250929050565b600080600060608486031215611d3e57600080fd5b611d4784611ca8565b9250611d5560208501611ca8565b9150604084013590509250925092565b60008060008060808587031215611d7b57600080fd5b611d8485611ca8565b9350611d9260208601611ca8565b925060408501359150606085013567ffffffffffffffff811115611db557600080fd5b8501601f81018713611dc657600080fd5b611dd587823560208401611c32565b91505092959194509250565b60008060408385031215611df457600080fd5b611dfd83611ca8565b9150611d2060208401611cc4565b60008060408385031215611e1e57600080fd5b611e2783611ca8565b946020939093013593505050565b600060208284031215611e4757600080fd5b611cef82611cc4565b600060208284031215611e6257600080fd5b8135611cef81612245565b600060208284031215611e7f57600080fd5b8151611cef81612245565b600060208284031215611e9c57600080fd5b813567ffffffffffffffff811115611eb357600080fd5b8201601f81018413611ec457600080fd5b6117e084823560208401611c32565b600060208284031215611ee557600080fd5b5035919050565b60008151808452611f04816020860160208601612140565b601f01601f19169290920160200192915050565b60008151611f2a818560208601612140565b9290920192915050565b600080855481600182811c915080831680611f5057607f831692505b6020808410821415611f7057634e487b7160e01b86526022600452602486fd5b818015611f845760018114611f9557611fc2565b60ff19861689528489019650611fc2565b60008c81526020902060005b86811015611fba5781548b820152908501908301611fa1565b505084890196505b505050505050611fdb611fd58287611f18565b85611f18565b9695505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fdb90830184611eec565b602081526000611cef6020830184611eec565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156120d5576120d56121ed565b01949350505050565b600082198211156120f1576120f16121ed565b500190565b60008261210557612105612203565b500490565b6000816000190483118215151615612124576121246121ed565b500290565b60008282101561213b5761213b6121ed565b500390565b60005b8381101561215b578181015183820152602001612143565b838111156110715750506000910152565b60008161217b5761217b6121ed565b506000190190565b600181811c9082168061219757607f821691505b602082108114156121b857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121d2576121d26121ed565b5060010190565b6000826121e8576121e8612203565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146111e857600080fdfea264697066735822122009909a9010f9af7ab638473c5795d42ef2f8fea755d31be40e8ed68b0478bfb564736f6c63430008070033516d53634a5458354161794e354c346768776b714c396533686554514a31697961614c34796e7a7874445133426d697066733a2f2f516d5a686253594c41506d78556b5433394c4654754c684c7470514d34434b317a7a41336241656978554e774378

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80636c0360eb11610102578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610547578063f2fde38b14610590578063f43a22dc146102b9578063fa30297e146105b057600080fd5b8063b88d4fde146104c1578063c6682862146104e1578063c87b56dd14610512578063e8a3d4851461053257600080fd5b806395d89b41116100d157806395d89b411461045e578063a035b1fe14610473578063a0712d681461048e578063a22cb465146104a157600080fd5b80636c0360eb146103f657806370a082311461040b578063715018a61461042b5780638da5cb5b1461044057600080fd5b80632f745c591161017a5780634f6ccce7116101495780634f6ccce71461037c57806355f804b31461039c5780635c975abb146103bc5780636352211e146103d657600080fd5b80632f745c591461031157806332cb6b0c146103315780633ccfd60b1461034757806342842e0e1461035c57600080fd5b8063095ea7b3116101b6578063095ea7b3146102995780630f2cdd6c146102b957806318160ddd146102dc57806323b872dd146102f157600080fd5b806301ffc9a7146101e857806302329a291461021d57806306fdde031461023f578063081812fc14610261575b600080fd5b3480156101f457600080fd5b50610208610203366004611e50565b6105dd565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023d610238366004611e35565b61064a565b005b34801561024b57600080fd5b50610254610690565b6040516102149190612018565b34801561026d57600080fd5b5061028161027c366004611ed3565b610722565b6040516001600160a01b039091168152602001610214565b3480156102a557600080fd5b5061023d6102b4366004611e0b565b6107ad565b3480156102c557600080fd5b506102ce600a81565b604051908152602001610214565b3480156102e857600080fd5b506000546102ce565b3480156102fd57600080fd5b5061023d61030c366004611d29565b6108c5565b34801561031d57600080fd5b506102ce61032c366004611e0b565b6108d0565b34801561033d57600080fd5b506102ce6101f481565b34801561035357600080fd5b5061023d610a3e565b34801561036857600080fd5b5061023d610377366004611d29565b610af7565b34801561038857600080fd5b506102ce610397366004611ed3565b610b12565b3480156103a857600080fd5b5061023d6103b7366004611e8a565b610b74565b3480156103c857600080fd5b50600a546102089060ff1681565b3480156103e257600080fd5b506102816103f1366004611ed3565b610bb1565b34801561040257600080fd5b50610254610bc3565b34801561041757600080fd5b506102ce610426366004611cd4565b610c51565b34801561043757600080fd5b5061023d610ce2565b34801561044c57600080fd5b506007546001600160a01b0316610281565b34801561046a57600080fd5b50610254610d18565b34801561047f57600080fd5b506102ce6618838370f3400081565b61023d61049c366004611ed3565b610d27565b3480156104ad57600080fd5b5061023d6104bc366004611de1565b610f79565b3480156104cd57600080fd5b5061023d6104dc366004611d65565b61103e565b3480156104ed57600080fd5b5061025460405180604001604052806005815260200164173539b7b760d91b81525081565b34801561051e57600080fd5b5061025461052d366004611ed3565b611077565b34801561053e57600080fd5b50610254611143565b34801561055357600080fd5b50610208610562366004611cf6565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561059c57600080fd5b5061023d6105ab366004611cd4565b611150565b3480156105bc57600080fd5b506102ce6105cb366004611cd4565b600b6020526000908152604090205481565b60006001600160e01b031982166380ac58cd60e01b148061060e57506001600160e01b03198216635b5e139f60e01b145b8061062957506001600160e01b0319821663780e9d6360e01b145b8061064457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b0316331461067d5760405162461bcd60e51b81526004016106749061202b565b60405180910390fd5b600a805460ff1916911515919091179055565b60606001805461069f90612183565b80601f01602080910402602001604051908101604052809291908181526020018280546106cb90612183565b80156107185780601f106106ed57610100808354040283529160200191610718565b820191906000526020600020905b8154815290600101906020018083116106fb57829003601f168201915b5050505050905090565b600061072f826000541190565b6107915760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610674565b506000908152600560205260409020546001600160a01b031690565b60006107b882610bb1565b9050806001600160a01b0316836001600160a01b031614156108275760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610674565b336001600160a01b038216148061084357506108438133610562565b6108b55760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610674565b6108c08383836111eb565b505050565b6108c0838383611247565b60006108db83610c51565b82106109345760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610674565b600080549080805b838110156109de576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561098f57805192505b876001600160a01b0316836001600160a01b031614156109cb57868414156109bd5750935061064492505050565b836109c7816121be565b9450505b50806109d6816121be565b91505061093c565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610674565b6007546001600160a01b03163314610a685760405162461bcd60e51b81526004016106749061202b565b6040514790600090339083908381818185875af1925050503d8060008114610aac576040519150601f19603f3d011682016040523d82523d6000602084013e610ab1565b606091505b5050905080610af35760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b6044820152606401610674565b5050565b6108c08383836040518060200160405280600081525061103e565b600080548210610b705760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610674565b5090565b6007546001600160a01b03163314610b9e5760405162461bcd60e51b81526004016106749061202b565b8051610af3906008906020840190611ba2565b6000610bbc8261158e565b5192915050565b60088054610bd090612183565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfc90612183565b8015610c495780601f10610c1e57610100808354040283529160200191610c49565b820191906000526020600020905b815481529060010190602001808311610c2c57829003601f168201915b505050505081565b60006001600160a01b038216610cbd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610674565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610d0c5760405162461bcd60e51b81526004016106749061202b565b610d16600061166e565b565b60606002805461069f90612183565b600a54339060ff1615610d655760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b6044820152606401610674565b81610d6f60005490565b610d7991906120de565b6101f41015610dbf5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610674565b60008211610dfc5760405162461bcd60e51b815260206004820152600a6024820152694e6f2030206d696e747360b01b6044820152606401610674565b326001600160a01b03821614610e435760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b6044820152606401610674565b336000908152600b6020526040902054600a90610e619084906120de565b1115610ea85760405162461bcd60e51b8152602060048201526016602482015275115e18d959591cc81b585e081c195c881dd85b1b195d60521b6044820152606401610674565b81600a1015610ef25760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440e0c2d2c840e8f60531b6044820152606401610674565b34610f046618838370f340008461210a565b14610f4a5760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b6044820152606401610674565b336000908152600b602052604081208054849290610f699084906120de565b90915550610af3905081836116c0565b6001600160a01b038216331415610fd25760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610674565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611049848484611247565b611055848484846116da565b6110715760405162461bcd60e51b815260040161067490612060565b50505050565b6060611084826000541190565b6110c85760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610674565b6000600880546110d790612183565b9050116110f35760405180602001604052806000815250610644565b60086110fe836117e8565b60405180604001604052806005815260200164173539b7b760d91b81525060405160200161112e93929190611f34565b60405160208183030381529060405292915050565b60098054610bd090612183565b6007546001600160a01b0316331461117a5760405162461bcd60e51b81526004016106749061202b565b6001600160a01b0381166111df5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610674565b6111e88161166e565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112528261158e565b80519091506000906001600160a01b0316336001600160a01b0316148061128957503361127e84610722565b6001600160a01b0316145b8061129b5750815161129b9033610562565b9050806113055760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610674565b846001600160a01b031682600001516001600160a01b0316146113795760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610674565b6001600160a01b0384166113dd5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610674565b6113ed60008484600001516111eb565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b959092169490940217909255906114b29085906120de565b6000818152600360205260409020549091506001600160a01b0316611544576114dc816000541190565b156115445760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526115ad826000541190565b61160c5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610674565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561165b579392505050565b50806116668161216c565b91505061160e565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610af38282604051806020016040528060008152506118e6565b60006001600160a01b0384163b156117dc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061171e903390899088908890600401611fe5565b602060405180830381600087803b15801561173857600080fd5b505af1925050508015611768575060408051601f3d908101601f1916820190925261176591810190611e6d565b60015b6117c2573d808015611796576040519150601f19603f3d011682016040523d82523d6000602084013e61179b565b606091505b5080516117ba5760405162461bcd60e51b815260040161067490612060565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117e0565b5060015b949350505050565b60608161180c5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118365780611820816121be565b915061182f9050600a836120f6565b9150611810565b60008167ffffffffffffffff8111156118515761185161222f565b6040519080825280601f01601f19166020018201604052801561187b576020820181803683370190505b5090505b84156117e057611890600183612129565b915061189d600a866121d9565b6118a89060306120de565b60f81b8183815181106118bd576118bd612219565b60200101906001600160f81b031916908160001a9053506118df600a866120f6565b945061187f565b6000546001600160a01b0384166119495760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610674565b611954816000541190565b156119a15760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610674565b600083116119fd5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610674565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611a599087906120b3565b6001600160801b03168152602001858360200151611a7791906120b3565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611b975760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b5b60008884886116da565b611b775760405162461bcd60e51b815260040161067490612060565b81611b81816121be565b9250508080611b8f906121be565b915050611b0e565b506000819055611586565b828054611bae90612183565b90600052602060002090601f016020900481019282611bd05760008555611c16565b82601f10611be957805160ff1916838001178555611c16565b82800160010185558215611c16579182015b82811115611c16578251825591602001919060010190611bfb565b50610b709291505b80821115610b705760008155600101611c1e565b600067ffffffffffffffff80841115611c4d57611c4d61222f565b604051601f8501601f19908116603f01168101908282118183101715611c7557611c7561222f565b81604052809350858152868686011115611c8e57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611cbf57600080fd5b919050565b80358015158114611cbf57600080fd5b600060208284031215611ce657600080fd5b611cef82611ca8565b9392505050565b60008060408385031215611d0957600080fd5b611d1283611ca8565b9150611d2060208401611ca8565b90509250929050565b600080600060608486031215611d3e57600080fd5b611d4784611ca8565b9250611d5560208501611ca8565b9150604084013590509250925092565b60008060008060808587031215611d7b57600080fd5b611d8485611ca8565b9350611d9260208601611ca8565b925060408501359150606085013567ffffffffffffffff811115611db557600080fd5b8501601f81018713611dc657600080fd5b611dd587823560208401611c32565b91505092959194509250565b60008060408385031215611df457600080fd5b611dfd83611ca8565b9150611d2060208401611cc4565b60008060408385031215611e1e57600080fd5b611e2783611ca8565b946020939093013593505050565b600060208284031215611e4757600080fd5b611cef82611cc4565b600060208284031215611e6257600080fd5b8135611cef81612245565b600060208284031215611e7f57600080fd5b8151611cef81612245565b600060208284031215611e9c57600080fd5b813567ffffffffffffffff811115611eb357600080fd5b8201601f81018413611ec457600080fd5b6117e084823560208401611c32565b600060208284031215611ee557600080fd5b5035919050565b60008151808452611f04816020860160208601612140565b601f01601f19169290920160200192915050565b60008151611f2a818560208601612140565b9290920192915050565b600080855481600182811c915080831680611f5057607f831692505b6020808410821415611f7057634e487b7160e01b86526022600452602486fd5b818015611f845760018114611f9557611fc2565b60ff19861689528489019650611fc2565b60008c81526020902060005b86811015611fba5781548b820152908501908301611fa1565b505084890196505b505050505050611fdb611fd58287611f18565b85611f18565b9695505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fdb90830184611eec565b602081526000611cef6020830184611eec565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156120d5576120d56121ed565b01949350505050565b600082198211156120f1576120f16121ed565b500190565b60008261210557612105612203565b500490565b6000816000190483118215151615612124576121246121ed565b500290565b60008282101561213b5761213b6121ed565b500390565b60005b8381101561215b578181015183820152602001612143565b838111156110715750506000910152565b60008161217b5761217b6121ed565b506000190190565b600181811c9082168061219757607f821691505b602082108114156121b857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121d2576121d26121ed565b5060010190565b6000826121e8576121e8612203565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146111e857600080fdfea264697066735822122009909a9010f9af7ab638473c5795d42ef2f8fea755d31be40e8ed68b0478bfb564736f6c63430008070033

Deployed Bytecode Sourcemap

38627:2060:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26639:372;;;;;;;;;;-1:-1:-1;26639:372:0;;;;;:::i;:::-;;:::i;:::-;;;7082:14:1;;7075:22;7057:41;;7045:2;7030:18;26639:372:0;;;;;;;;40125:81;;;;;;;;;;-1:-1:-1;40125:81:0;;;;;:::i;:::-;;:::i;:::-;;28266:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29827:214::-;;;;;;;;;;-1:-1:-1;29827:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6380:32:1;;;6362:51;;6350:2;6335:18;29827:214:0;6216:203:1;29348:413:0;;;;;;;;;;-1:-1:-1;29348:413:0;;;;;:::i;:::-;;:::i;38953:43::-;;;;;;;;;;;;38994:2;38953:43;;;;;18229:25:1;;;18217:2;18202:18;38953:43:0;18083:177:1;25080:100:0;;;;;;;;;;-1:-1:-1;25133:7:0;25160:12;25080:100;;30703:162;;;;;;;;;;-1:-1:-1;30703:162:0;;;;;:::i;:::-;;:::i;25744:823::-;;;;;;;;;;-1:-1:-1;25744:823:0;;;;;:::i;:::-;;:::i;39003:40::-;;;;;;;;;;;;39040:3;39003:40;;39908:209;;;;;;;;;;;;;:::i;30936:177::-;;;;;;;;;;-1:-1:-1;30936:177:0;;;;;:::i;:::-;;:::i;25257:187::-;;;;;;;;;;-1:-1:-1;25257:187:0;;;;;:::i;:::-;;:::i;40214:100::-;;;;;;;;;;-1:-1:-1;40214:100:0;;;;;:::i;:::-;;:::i;39103:26::-;;;;;;;;;;-1:-1:-1;39103:26:0;;;;;;;;28075:124;;;;;;;;;;-1:-1:-1;28075:124:0;;;;;:::i;:::-;;:::i;38683:72::-;;;;;;;;;;;;;:::i;27075:221::-;;;;;;;;;;-1:-1:-1;27075:221:0;;;;;:::i;:::-;;:::i;2626:103::-;;;;;;;;;;;;;:::i;1975:87::-;;;;;;;;;;-1:-1:-1;2048:6:0;;-1:-1:-1;;;;;2048:6:0;1975:87;;28435:104;;;;;;;;;;;;;:::i;39050:44::-;;;;;;;;;;;;39082:12;39050:44;;39259:641;;;;;;:::i;:::-;;:::i;30113:288::-;;;;;;;;;;-1:-1:-1;30113:288:0;;;;;:::i;:::-;;:::i;31184:355::-;;;;;;;;;;-1:-1:-1;31184:355:0;;;;;:::i;:::-;;:::i;38852:46::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;38852:46:0;;;;;40322:362;;;;;;;;;;-1:-1:-1;40322:362:0;;;;;:::i;:::-;;:::i;38762:83::-;;;;;;;;;;;;;:::i;30472:164::-;;;;;;;;;;-1:-1:-1;30472:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30593:25:0;;;30569:4;30593:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30472:164;2884:201;;;;;;;;;;-1:-1:-1;2884:201:0;;;;;:::i;:::-;;:::i;39138:48::-;;;;;;;;;;-1:-1:-1;39138:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;26639:372;26741:4;-1:-1:-1;;;;;;26778:40:0;;-1:-1:-1;;;26778:40:0;;:105;;-1:-1:-1;;;;;;;26835:48:0;;-1:-1:-1;;;26835:48:0;26778:105;:172;;;-1:-1:-1;;;;;;;26900:50:0;;-1:-1:-1;;;26900:50:0;26778:172;:225;;;-1:-1:-1;;;;;;;;;;23256:40:0;;;26967:36;26758:245;26639:372;-1:-1:-1;;26639:372:0:o;40125:81::-;2048:6;;-1:-1:-1;;;;;2048:6:0;796:10;2195:23;2187:68;;;;-1:-1:-1;;;2187:68:0;;;;;;;:::i;:::-;;;;;;;;;40183:6:::1;:15:::0;;-1:-1:-1;;40183:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;40125:81::o;28266:100::-;28320:13;28353:5;28346:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28266:100;:::o;29827:214::-;29895:7;29923:16;29931:7;31851:4;31885:12;-1:-1:-1;31875:22:0;31794:111;29923:16;29915:74;;;;-1:-1:-1;;;29915:74:0;;17530:2:1;29915:74:0;;;17512:21:1;17569:2;17549:18;;;17542:30;17608:34;17588:18;;;17581:62;-1:-1:-1;;;17659:18:1;;;17652:43;17712:19;;29915:74:0;17328:409:1;29915:74:0;-1:-1:-1;30009:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30009:24:0;;29827:214::o;29348:413::-;29421:13;29437:24;29453:7;29437:15;:24::i;:::-;29421:40;;29486:5;-1:-1:-1;;;;;29480:11:0;:2;-1:-1:-1;;;;;29480:11:0;;;29472:58;;;;-1:-1:-1;;;29472:58:0;;14018:2:1;29472:58:0;;;14000:21:1;14057:2;14037:18;;;14030:30;14096:34;14076:18;;;14069:62;-1:-1:-1;;;14147:18:1;;;14140:32;14189:19;;29472:58:0;13816:398:1;29472:58:0;796:10;-1:-1:-1;;;;;29565:21:0;;;;:62;;-1:-1:-1;29590:37:0;29607:5;796:10;30472:164;:::i;29590:37::-;29543:169;;;;-1:-1:-1;;;29543:169:0;;10590:2:1;29543:169:0;;;10572:21:1;10629:2;10609:18;;;10602:30;10668:34;10648:18;;;10641:62;10739:27;10719:18;;;10712:55;10784:19;;29543:169:0;10388:421:1;29543:169:0;29725:28;29734:2;29738:7;29747:5;29725:8;:28::i;:::-;29410:351;29348:413;;:::o;30703:162::-;30829:28;30839:4;30845:2;30849:7;30829:9;:28::i;25744:823::-;25833:7;25869:16;25879:5;25869:9;:16::i;:::-;25861:5;:24;25853:71;;;;-1:-1:-1;;;25853:71:0;;7535:2:1;25853:71:0;;;7517:21:1;7574:2;7554:18;;;7547:30;7613:34;7593:18;;;7586:62;-1:-1:-1;;;7664:18:1;;;7657:32;7706:19;;25853:71:0;7333:398:1;25853:71:0;25935:22;25160:12;;;25935:22;;26067:426;26091:14;26087:1;:18;26067:426;;;26127:31;26161:14;;;:11;:14;;;;;;;;;26127:48;;;;;;;;;-1:-1:-1;;;;;26127:48:0;;;;;-1:-1:-1;;;26127:48:0;;;;;;;;;;;;26194:28;26190:103;;26263:14;;;-1:-1:-1;26190:103:0;26332:5;-1:-1:-1;;;;;26311:26:0;:17;-1:-1:-1;;;;;26311:26:0;;26307:175;;;26377:5;26362:11;:20;26358:77;;;-1:-1:-1;26414:1:0;-1:-1:-1;26407:8:0;;-1:-1:-1;;;26407:8:0;26358:77;26453:13;;;;:::i;:::-;;;;26307:175;-1:-1:-1;26107:3:0;;;;:::i;:::-;;;;26067:426;;;-1:-1:-1;26503:56:0;;-1:-1:-1;;;26503:56:0;;16348:2:1;26503:56:0;;;16330:21:1;16387:2;16367:18;;;16360:30;16426:34;16406:18;;;16399:62;-1:-1:-1;;;16477:18:1;;;16470:44;16531:19;;26503:56:0;16146:410:1;39908:209:0;2048:6;;-1:-1:-1;;;;;2048:6:0;796:10;2195:23;2187:68;;;;-1:-1:-1;;;2187:68:0;;;;;;;:::i;:::-;40027:37:::1;::::0;39976:21:::1;::::0;39958:15:::1;::::0;796:10;;39976:21;;39958:15;40027:37;39958:15;40027:37;39976:21;796:10;40027:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40008:56;;;40083:7;40075:34;;;::::0;-1:-1:-1;;;40075:34:0;;16005:2:1;40075:34:0::1;::::0;::::1;15987:21:1::0;16044:2;16024:18;;;16017:30;-1:-1:-1;;;16063:18:1;;;16056:44;16117:18;;40075:34:0::1;15803:338:1::0;40075:34:0::1;39947:170;;39908:209::o:0;30936:177::-;31066:39;31083:4;31089:2;31093:7;31066:39;;;;;;;;;;;;:16;:39::i;25257:187::-;25324:7;25160:12;;25352:5;:21;25344:69;;;;-1:-1:-1;;;25344:69:0;;9780:2:1;25344:69:0;;;9762:21:1;9819:2;9799:18;;;9792:30;9858:34;9838:18;;;9831:62;-1:-1:-1;;;9909:18:1;;;9902:33;9952:19;;25344:69:0;9578:399:1;25344:69:0;-1:-1:-1;25431:5:0;25257:187::o;40214:100::-;2048:6;;-1:-1:-1;;;;;2048:6:0;796:10;2195:23;2187:68;;;;-1:-1:-1;;;2187:68:0;;;;;;;:::i;:::-;40288:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;28075:124::-:0;28139:7;28166:20;28178:7;28166:11;:20::i;:::-;:25;;28075:124;-1:-1:-1;;28075:124:0:o;38683:72::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27075:221::-;27139:7;-1:-1:-1;;;;;27167:19:0;;27159:75;;;;-1:-1:-1;;;27159:75:0;;11363:2:1;27159:75:0;;;11345:21:1;11402:2;11382:18;;;11375:30;11441:34;11421:18;;;11414:62;-1:-1:-1;;;11492:18:1;;;11485:41;11543:19;;27159:75:0;11161:407:1;27159:75:0;-1:-1:-1;;;;;;27260:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;27260:27:0;;27075:221::o;2626:103::-;2048:6;;-1:-1:-1;;;;;2048:6:0;796:10;2195:23;2187:68;;;;-1:-1:-1;;;2187:68:0;;;;;;;:::i;:::-;2691:30:::1;2718:1;2691:18;:30::i;:::-;2626:103::o:0;28435:104::-;28491:13;28524:7;28517:14;;;;;:::i;39259:641::-;39368:6;;796:10;;39368:6;;39367:7;39359:26;;;;-1:-1:-1;;;39359:26:0;;7938:2:1;39359:26:0;;;7920:21:1;7977:1;7957:18;;;7950:29;-1:-1:-1;;;7995:18:1;;;7988:36;8041:18;;39359:26:0;7736:329:1;39359:26:0;39434:7;39418:13;25133:7;25160:12;;25080:100;39418:13;:23;;;;:::i;:::-;39040:3;39404:37;;39396:68;;;;-1:-1:-1;;;39396:68:0;;11016:2:1;39396:68:0;;;10998:21:1;11055:2;11035:18;;;11028:30;-1:-1:-1;;;11074:18:1;;;11067:48;11132:18;;39396:68:0;10814:342:1;39396:68:0;39493:1;39483:7;:11;39475:34;;;;-1:-1:-1;;;39475:34:0;;9090:2:1;39475:34:0;;;9072:21:1;9129:2;9109:18;;;9102:30;-1:-1:-1;;;9148:18:1;;;9141:40;9198:18;;39475:34:0;8888:334:1;39475:34:0;39528:9;-1:-1:-1;;;;;39528:20:0;;;39520:45;;;;-1:-1:-1;;;39520:45:0;;17944:2:1;39520:45:0;;;17926:21:1;17983:2;17963:18;;;17956:30;-1:-1:-1;;;18002:18:1;;;17995:42;18054:18;;39520:45:0;17742:336:1;39520:45:0;39598:10;39584:25;;;;:13;:25;;;;;;38994:2;;39584:35;;39612:7;;39584:35;:::i;:::-;:53;;39576:88;;;;-1:-1:-1;;;39576:88:0;;16763:2:1;39576:88:0;;;16745:21:1;16802:2;16782:18;;;16775:30;-1:-1:-1;;;16821:18:1;;;16814:52;16883:18;;39576:88:0;16561:346:1;39576:88:0;39697:7;38944:2;39683:21;;39675:57;;;;-1:-1:-1;;;39675:57:0;;9429:2:1;39675:57:0;;;9411:21:1;9468:2;9448:18;;;9441:30;-1:-1:-1;;;9487:18:1;;;9480:52;9549:18;;39675:57:0;9227:346:1;39675:57:0;39770:9;39751:15;39082:12;39751:7;:15;:::i;:::-;:28;39743:63;;;;-1:-1:-1;;;39743:63:0;;13667:2:1;39743:63:0;;;13649:21:1;13706:2;13686:18;;;13679:30;-1:-1:-1;;;13725:18:1;;;13718:52;13787:18;;39743:63:0;13465:346:1;39743:63:0;39832:10;39818:25;;;;:13;:25;;;;;:36;;39847:7;;39818:25;:36;;39847:7;;39818:36;:::i;:::-;;;;-1:-1:-1;39865:27:0;;-1:-1:-1;39875:7:0;39884;39865:9;:27::i;30113:288::-;-1:-1:-1;;;;;30208:24:0;;796:10;30208:24;;30200:63;;;;-1:-1:-1;;;30200:63:0;;12893:2:1;30200:63:0;;;12875:21:1;12932:2;12912:18;;;12905:30;12971:28;12951:18;;;12944:56;13017:18;;30200:63:0;12691:350:1;30200:63:0;796:10;30276:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30276:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30276:53:0;;;;;;;;;;30345:48;;7057:41:1;;;30276:42:0;;796:10;30345:48;;7030:18:1;30345:48:0;;;;;;;30113:288;;:::o;31184:355::-;31343:28;31353:4;31359:2;31363:7;31343:9;:28::i;:::-;31404:48;31427:4;31433:2;31437:7;31446:5;31404:22;:48::i;:::-;31382:149;;;;-1:-1:-1;;;31382:149:0;;;;;;;:::i;:::-;31184:355;;;;:::o;40322:362::-;40388:13;40422:17;40430:8;31851:4;31885:12;-1:-1:-1;31875:22:0;31794:111;40422:17;40414:51;;;;-1:-1:-1;;;40414:51:0;;11775:2:1;40414:51:0;;;11757:21:1;11814:2;11794:18;;;11787:30;-1:-1:-1;;;11833:18:1;;;11826:51;11894:18;;40414:51:0;11573:345:1;40414:51:0;40507:1;40489:7;40483:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;40565:7;40589:26;40606:8;40589:16;:26::i;:::-;40632:13;;;;;;;;;;;;;-1:-1:-1;;;40632:13:0;;;40532:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40476:200;40322:362;-1:-1:-1;;40322:362:0:o;38762:83::-;;;;;;;:::i;2884:201::-;2048:6;;-1:-1:-1;;;;;2048:6:0;796:10;2195:23;2187:68;;;;-1:-1:-1;;;2187:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2973:22:0;::::1;2965:73;;;::::0;-1:-1:-1;;;2965:73:0;;8272:2:1;2965:73:0::1;::::0;::::1;8254:21:1::0;8311:2;8291:18;;;8284:30;8350:34;8330:18;;;8323:62;-1:-1:-1;;;8401:18:1;;;8394:36;8447:19;;2965:73:0::1;8070:402:1::0;2965:73:0::1;3049:28;3068:8;3049:18;:28::i;:::-;2884:201:::0;:::o;35838:196::-;35953:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;35953:29:0;-1:-1:-1;;;;;35953:29:0;;;;;;;;;35998:28;;35953:24;;35998:28;;;;;;;35838:196;;;:::o;33937:1783::-;34052:35;34090:20;34102:7;34090:11;:20::i;:::-;34165:18;;34052:58;;-1:-1:-1;34123:22:0;;-1:-1:-1;;;;;34149:34:0;796:10;-1:-1:-1;;;;;34149:34:0;;:87;;;-1:-1:-1;796:10:0;34200:20;34212:7;34200:11;:20::i;:::-;-1:-1:-1;;;;;34200:36:0;;34149:87;:154;;;-1:-1:-1;34270:18:0;;34253:50;;796:10;30472:164;:::i;34253:50::-;34123:181;;34325:17;34317:80;;;;-1:-1:-1;;;34317:80:0;;13248:2:1;34317:80:0;;;13230:21:1;13287:2;13267:18;;;13260:30;13326:34;13306:18;;;13299:62;-1:-1:-1;;;13377:18:1;;;13370:48;13435:19;;34317:80:0;13046:414:1;34317:80:0;34440:4;-1:-1:-1;;;;;34418:26:0;:13;:18;;;-1:-1:-1;;;;;34418:26:0;;34410:77;;;;-1:-1:-1;;;34410:77:0;;12125:2:1;34410:77:0;;;12107:21:1;12164:2;12144:18;;;12137:30;12203:34;12183:18;;;12176:62;-1:-1:-1;;;12254:18:1;;;12247:36;12300:19;;34410:77:0;11923:402:1;34410:77:0;-1:-1:-1;;;;;34506:16:0;;34498:66;;;;-1:-1:-1;;;34498:66:0;;10184:2:1;34498:66:0;;;10166:21:1;10223:2;10203:18;;;10196:30;10262:34;10242:18;;;10235:62;-1:-1:-1;;;10313:18:1;;;10306:35;10358:19;;34498:66:0;9982:401:1;34498:66:0;34685:49;34702:1;34706:7;34715:13;:18;;;34685:8;:49::i;:::-;-1:-1:-1;;;;;34939:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;34939:31:0;;;-1:-1:-1;;;;;34939:31:0;;;-1:-1:-1;;34939:31:0;;;;;;;34985:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;34985:29:0;;;;;;;;;;;;;35061:43;;;;;;;;;;35087:15;35061:43;;;;;;;;;;35038:20;;;:11;:20;;;;;;:66;;;;;;;;-1:-1:-1;;;;;;35038:66:0;;;;;;;-1:-1:-1;;;35038:66:0;;;;;;;;;;;;34939:18;35366:11;;35038:20;;35366:11;:::i;:::-;35433:1;35392:24;;;:11;:24;;;;;:29;35344:33;;-1:-1:-1;;;;;;35392:29:0;35388:227;;35456:20;35464:11;31851:4;31885:12;-1:-1:-1;31875:22:0;31794:111;35456:20;35452:152;;;35524:64;;;;;;;;35539:18;;-1:-1:-1;;;;;35524:64:0;;;;;;35559:28;;;;35524:64;;;;;;;;;;-1:-1:-1;35497:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;35497:91:0;-1:-1:-1;;;;;;35497:91:0;;;;;;;;;;;;35452:152;35651:7;35647:2;-1:-1:-1;;;;;35632:27:0;35641:4;-1:-1:-1;;;;;35632:27:0;;;;;;;;;;;35670:42;34041:1679;;;33937:1783;;;:::o;27541:472::-;-1:-1:-1;;;;;;;;;;;;;;;;;27644:16:0;27652:7;31851:4;31885:12;-1:-1:-1;31875:22:0;31794:111;27644:16;27636:71;;;;-1:-1:-1;;;27636:71:0;;8679:2:1;27636:71:0;;;8661:21:1;8718:2;8698:18;;;8691:30;8757:34;8737:18;;;8730:62;-1:-1:-1;;;8808:18:1;;;8801:40;8858:19;;27636:71:0;8477:406:1;27636:71:0;27740:7;27720:216;27774:31;27808:17;;;:11;:17;;;;;;;;;27774:51;;;;;;;;;-1:-1:-1;;;;;27774:51:0;;;;;-1:-1:-1;;;27774:51:0;;;;;;;;;;;;27844:28;27840:85;;27900:9;27541:472;-1:-1:-1;;;27541:472:0:o;27840:85::-;-1:-1:-1;27751:6:0;;;;:::i;:::-;;;;27720:216;;3245:191;3338:6;;;-1:-1:-1;;;;;3355:17:0;;;-1:-1:-1;;;;;;3355:17:0;;;;;;;3388:40;;3338:6;;;3355:17;3338:6;;3388:40;;3319:16;;3388:40;3308:128;3245:191;:::o;31913:104::-;31982:27;31992:2;31996:8;31982:27;;;;;;;;;;;;:9;:27::i;36599:804::-;36754:4;-1:-1:-1;;;;;36775:13:0;;15291:20;15339:8;36771:625;;36811:72;;-1:-1:-1;;;36811:72:0;;-1:-1:-1;;;;;36811:36:0;;;;;:72;;796:10;;36862:4;;36868:7;;36877:5;;36811:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36811:72:0;;;;;;;;-1:-1:-1;;36811:72:0;;;;;;;;;;;;:::i;:::-;;;36807:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37057:13:0;;37053:273;;37100:61;;-1:-1:-1;;;37100:61:0;;;;;;;:::i;37053:273::-;37276:6;37270:13;37261:6;37257:2;37253:15;37246:38;36807:534;-1:-1:-1;;;;;;36934:55:0;-1:-1:-1;;;36934:55:0;;-1:-1:-1;36927:62:0;;36771:625;-1:-1:-1;37380:4:0;36771:625;36599:804;;;;;;:::o;3789:723::-;3845:13;4066:10;4062:53;;-1:-1:-1;;4093:10:0;;;;;;;;;;;;-1:-1:-1;;;4093:10:0;;;;;3789:723::o;4062:53::-;4140:5;4125:12;4181:78;4188:9;;4181:78;;4214:8;;;;:::i;:::-;;-1:-1:-1;4237:10:0;;-1:-1:-1;4245:2:0;4237:10;;:::i;:::-;;;4181:78;;;4269:19;4301:6;4291:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4291:17:0;;4269:39;;4319:154;4326:10;;4319:154;;4353:11;4363:1;4353:11;;:::i;:::-;;-1:-1:-1;4422:10:0;4430:2;4422:5;:10;:::i;:::-;4409:24;;:2;:24;:::i;:::-;4396:39;;4379:6;4386;4379:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;4379:56:0;;;;;;;;-1:-1:-1;4450:11:0;4459:2;4450:11;;:::i;:::-;;;4319:154;;32294:1389;32417:20;32440:12;-1:-1:-1;;;;;32471:16:0;;32463:62;;;;-1:-1:-1;;;32463:62:0;;15603:2:1;32463:62:0;;;15585:21:1;15642:2;15622:18;;;15615:30;15681:34;15661:18;;;15654:62;-1:-1:-1;;;15732:18:1;;;15725:31;15773:19;;32463:62:0;15401:397:1;32463:62:0;32670:21;32678:12;31851:4;31885:12;-1:-1:-1;31875:22:0;31794:111;32670:21;32669:22;32661:64;;;;-1:-1:-1;;;32661:64:0;;15245:2:1;32661:64:0;;;15227:21:1;15284:2;15264:18;;;15257:30;15323:31;15303:18;;;15296:59;15372:18;;32661:64:0;15043:353:1;32661:64:0;32755:1;32744:8;:12;32736:60;;;;-1:-1:-1;;;32736:60:0;;14421:2:1;32736:60:0;;;14403:21:1;14460:2;14440:18;;;14433:30;14499:34;14479:18;;;14472:62;-1:-1:-1;;;14550:18:1;;;14543:33;14593:19;;32736:60:0;14219:399:1;32736:60:0;-1:-1:-1;;;;;32916:16:0;;32883:30;32916:16;;;:12;:16;;;;;;;;;32883:49;;;;;;;;;-1:-1:-1;;;;;32883:49:0;;;;;-1:-1:-1;;;32883:49:0;;;;;;;;;;;32962:135;;;;;;;;32988:19;;32883:49;;32962:135;;;32988:39;;33018:8;;32988:39;:::i;:::-;-1:-1:-1;;;;;32962:135:0;;;;;33077:8;33042:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;32962:135:0;;;;;;-1:-1:-1;;;;;32943:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;32943:154:0;;;;;;;;;;;;33136:43;;;;;;;;;;;33162:15;33136:43;;;;;;;;33108:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;33108:71:0;-1:-1:-1;;;;;;33108:71:0;;;;;;;;;;;;;;;;;;33120:12;;33240:325;33264:8;33260:1;:12;33240:325;;;33299:38;;33324:12;;-1:-1:-1;;;;;33299:38:0;;;33316:1;;33299:38;;33316:1;;33299:38;33378:59;33409:1;33413:2;33417:12;33431:5;33378:22;:59::i;:::-;33352:172;;;;-1:-1:-1;;;33352:172:0;;;;;;;:::i;:::-;33539:14;;;;:::i;:::-;;;;33274:3;;;;;:::i;:::-;;;;33240:325;;;-1:-1:-1;33577:12:0;:27;;;33615:60;31184:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;:::-;1134:39;993:186;-1:-1:-1;;;993:186:1:o;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:185::-;4604:3;4642:5;4636:12;4657:52;4702:6;4697:3;4690:4;4683:5;4679:16;4657:52;:::i;:::-;4725:16;;;;;4562:185;-1:-1:-1;;4562:185:1:o;4752:1249::-;4976:3;5005:1;5038:6;5032:13;5068:3;5090:1;5118:9;5114:2;5110:18;5100:28;;5178:2;5167:9;5163:18;5200;5190:61;;5244:4;5236:6;5232:17;5222:27;;5190:61;5270:2;5318;5310:6;5307:14;5287:18;5284:38;5281:165;;;-1:-1:-1;;;5345:33:1;;5401:4;5398:1;5391:15;5431:4;5352:3;5419:17;5281:165;5462:18;5489:104;;;;5607:1;5602:320;;;;5455:467;;5489:104;-1:-1:-1;;5522:24:1;;5510:37;;5567:16;;;;-1:-1:-1;5489:104:1;;5602:320;18338:1;18331:14;;;18375:4;18362:18;;5697:1;5711:165;5725:6;5722:1;5719:13;5711:165;;;5803:14;;5790:11;;;5783:35;5846:16;;;;5740:10;;5711:165;;;5715:3;;5905:6;5900:3;5896:16;5889:23;;5455:467;;;;;;;5938:57;5964:30;5990:3;5982:6;5964:30;:::i;:::-;5956:6;5938:57;:::i;:::-;5931:64;4752:1249;-1:-1:-1;;;;;;4752:1249:1:o;6424:488::-;-1:-1:-1;;;;;6693:15:1;;;6675:34;;6745:15;;6740:2;6725:18;;6718:43;6792:2;6777:18;;6770:34;;;6840:3;6835:2;6820:18;;6813:31;;;6618:4;;6861:45;;6886:19;;6878:6;6861:45;:::i;7109:219::-;7258:2;7247:9;7240:21;7221:4;7278:44;7318:2;7307:9;7303:18;7295:6;7278:44;:::i;12330:356::-;12532:2;12514:21;;;12551:18;;;12544:30;12610:34;12605:2;12590:18;;12583:62;12677:2;12662:18;;12330:356::o;14623:415::-;14825:2;14807:21;;;14864:2;14844:18;;;14837:30;14903:34;14898:2;14883:18;;14876:62;-1:-1:-1;;;14969:2:1;14954:18;;14947:49;15028:3;15013:19;;14623:415::o;18391:253::-;18431:3;-1:-1:-1;;;;;18520:2:1;18517:1;18513:10;18550:2;18547:1;18543:10;18581:3;18577:2;18573:12;18568:3;18565:21;18562:47;;;18589:18;;:::i;:::-;18625:13;;18391:253;-1:-1:-1;;;;18391:253:1:o;18649:128::-;18689:3;18720:1;18716:6;18713:1;18710:13;18707:39;;;18726:18;;:::i;:::-;-1:-1:-1;18762:9:1;;18649:128::o;18782:120::-;18822:1;18848;18838:35;;18853:18;;:::i;:::-;-1:-1:-1;18887:9:1;;18782:120::o;18907:168::-;18947:7;19013:1;19009;19005:6;19001:14;18998:1;18995:21;18990:1;18983:9;18976:17;18972:45;18969:71;;;19020:18;;:::i;:::-;-1:-1:-1;19060:9:1;;18907:168::o;19080:125::-;19120:4;19148:1;19145;19142:8;19139:34;;;19153:18;;:::i;:::-;-1:-1:-1;19190:9:1;;19080:125::o;19210:258::-;19282:1;19292:113;19306:6;19303:1;19300:13;19292:113;;;19382:11;;;19376:18;19363:11;;;19356:39;19328:2;19321:10;19292:113;;;19423:6;19420:1;19417:13;19414:48;;;-1:-1:-1;;19458:1:1;19440:16;;19433:27;19210:258::o;19473:136::-;19512:3;19540:5;19530:39;;19549:18;;:::i;:::-;-1:-1:-1;;;19585:18:1;;19473:136::o;19614:380::-;19693:1;19689:12;;;;19736;;;19757:61;;19811:4;19803:6;19799:17;19789:27;;19757:61;19864:2;19856:6;19853:14;19833:18;19830:38;19827:161;;;19910:10;19905:3;19901:20;19898:1;19891:31;19945:4;19942:1;19935:15;19973:4;19970:1;19963:15;19827:161;;19614:380;;;:::o;19999:135::-;20038:3;-1:-1:-1;;20059:17:1;;20056:43;;;20079:18;;:::i;:::-;-1:-1:-1;20126:1:1;20115:13;;19999:135::o;20139:112::-;20171:1;20197;20187:35;;20202:18;;:::i;:::-;-1:-1:-1;20236:9:1;;20139:112::o;20256:127::-;20317:10;20312:3;20308:20;20305:1;20298:31;20348:4;20345:1;20338:15;20372:4;20369:1;20362:15;20388:127;20449:10;20444:3;20440:20;20437:1;20430:31;20480:4;20477:1;20470:15;20504:4;20501:1;20494:15;20520:127;20581:10;20576:3;20572:20;20569:1;20562:31;20612:4;20609:1;20602:15;20636:4;20633:1;20626:15;20652:127;20713:10;20708:3;20704:20;20701:1;20694:31;20744:4;20741:1;20734:15;20768:4;20765:1;20758:15;20784:131;-1:-1:-1;;;;;;20858:32:1;;20848:43;;20838:71;;20905:1;20902;20895:12

Swarm Source

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