ETH Price: $3,460.34 (+1.54%)
Gas: 8 Gwei

Token

 

Overview

Max Total Supply

2,047

Holders

362

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xb6b459c2aa16b718979987cb866f24c3769d25aa
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:
Poop

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: @openzeppelin/[email protected]/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/[email protected]/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/[email protected]/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/utils/Address.sol


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/[email protected]/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/[email protected]/token/ERC1155/IERC1155Receiver.sol


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

pragma solidity ^0.8.0;


/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/[email protected]/token/ERC1155/IERC1155.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/[email protected]/token/ERC1155/extensions/IERC1155MetadataURI.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

// File: @openzeppelin/[email protected]/token/ERC1155/ERC1155.sol


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

pragma solidity ^0.8.0;







/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

// File: Poop.sol


pragma solidity ^0.8.7;




contract Poop is ERC1155, Ownable, ReentrancyGuard {
    constructor() ERC1155("") {}

    uint256 public mintPrice = 0.004 ether;
    uint256 public freeMintSupply = 1666;
    uint256 public maxSupply = 6666;
    uint256 public maxAmountPerTx = 5;

    uint256 private _totalSupply = 0;

    bool public paused = true;

    function setURI(string memory newuri) external onlyOwner {
        _setURI(newuri);
    }

    function setPrice(uint256 _price) external onlyOwner {
        mintPrice = _price;
    }

    function setMaxAmountPerTx(uint256 _amount) external onlyOwner {
        maxAmountPerTx = _amount;
    }

    function setFreeMintSupply(uint256 _supply) external onlyOwner {
        freeMintSupply = _supply;
    }

    function togglePause() external onlyOwner {
        paused = !paused;
    }

    function mint(address account, uint256 amount)
        external
        payable
        nonReentrant
    {
        require( tx.origin == msg.sender, "No bots!");
        require( _totalSupply + amount <= maxSupply, "Exceeds max supply!" );
        require( amount <= maxAmountPerTx, "Exceeds max amount per tx!" );
        require( !paused, "Sale is not live!" );
        require( ( _totalSupply < freeMintSupply ) || ( msg.value >= mintPrice * amount ), "Insufficient funds!" );

        _mint(account, 1, amount, "0");
        _totalSupply += amount;
    }

    function claim(address account, uint256 amount)
        external
        onlyOwner
    {
        _mint(account, 1, amount, "0");
        _totalSupply += amount;
    }

    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply;
    }

    function withdrawAll() external onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setFreeMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","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":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052660e35fa931a00006005908155610682600655611a0a6007556008556000600955600a805460ff191660011790553480156200003f57600080fd5b506040805160208101909152600081526200005a8162000071565b5062000066336200008a565b6001600455620001bf565b805162000086906002906020840190620000dc565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000ea9062000182565b90600052602060002090601f0160209004810192826200010e576000855562000159565b82601f106200012957805160ff191683800117855562000159565b8280016001018555821562000159579182015b82811115620001595782518255916020019190600101906200013c565b50620001679291506200016b565b5090565b5b808211156200016757600081556001016200016c565b600181811c908216806200019757607f821691505b60208210811415620001b957634e487b7160e01b600052602260045260246000fd5b50919050565b611e8a80620001cf6000396000f3fe6080604052600436106101655760003560e01c80638da5cb5b116100d1578063c4c39ed51161008a578063e985e9c511610064578063e985e9c5146103f7578063f242432a14610440578063f26a981614610460578063f2fde38b1461048057600080fd5b8063c4c39ed5146103ab578063d5abeb01146103cb578063e150007e146103e157600080fd5b80638da5cb5b146102ec57806391b7f5ed14610314578063a22cb46514610334578063aad3ec9614610354578063bd85b03914610374578063c4ae31681461039657600080fd5b80634e1273f4116101235780634e1273f41461024f5780635c975abb1461027c5780636817c76c14610296578063715018a6146102ac578063853828b6146102c157806385b27c85146102d657600080fd5b8062fdd58e1461016a57806301ffc9a71461019d57806302fe5305146101cd5780630e89341c146101ef5780632eb2c2d61461021c57806340c10f191461023c575b600080fd5b34801561017657600080fd5b5061018a61018536600461184e565b6104a0565b6040519081526020015b60405180910390f35b3480156101a957600080fd5b506101bd6101b8366004611949565b610537565b6040519015158152602001610194565b3480156101d957600080fd5b506101ed6101e8366004611983565b610589565b005b3480156101fb57600080fd5b5061020f61020a3660046119d4565b6105bf565b6040516101949190611b59565b34801561022857600080fd5b506101ed610237366004611703565b610653565b6101ed61024a36600461184e565b6106ea565b34801561025b57600080fd5b5061026f61026a366004611878565b610911565b6040516101949190611b18565b34801561028857600080fd5b50600a546101bd9060ff1681565b3480156102a257600080fd5b5061018a60055481565b3480156102b857600080fd5b506101ed610a3b565b3480156102cd57600080fd5b506101ed610a71565b3480156102e257600080fd5b5061018a60085481565b3480156102f857600080fd5b506003546040516001600160a01b039091168152602001610194565b34801561032057600080fd5b506101ed61032f3660046119d4565b610abf565b34801561034057600080fd5b506101ed61034f366004611812565b610aee565b34801561036057600080fd5b506101ed61036f36600461184e565b610afd565b34801561038057600080fd5b5061018a61038f3660046119d4565b5060095490565b3480156103a257600080fd5b506101ed610b68565b3480156103b757600080fd5b506101ed6103c63660046119d4565b610ba6565b3480156103d757600080fd5b5061018a60075481565b3480156103ed57600080fd5b5061018a60065481565b34801561040357600080fd5b506101bd6104123660046116d0565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561044c57600080fd5b506101ed61045b3660046117ad565b610bd5565b34801561046c57600080fd5b506101ed61047b3660046119d4565b610c5c565b34801561048c57600080fd5b506101ed61049b3660046116b5565b610c8b565b60006001600160a01b0383166105115760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061056857506001600160e01b031982166303a24d0760e21b145b8061058357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6003546001600160a01b031633146105b35760405162461bcd60e51b815260040161050890611c43565b6105bc81610d23565b50565b6060600280546105ce90611cd3565b80601f01602080910402602001604051908101604052809291908181526020018280546105fa90611cd3565b80156106475780601f1061061c57610100808354040283529160200191610647565b820191906000526020600020905b81548152906001019060200180831161062a57829003601f168201915b50505050509050919050565b6001600160a01b03851633148061066f575061066f8533610412565b6106d65760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610508565b6106e38585858585610d36565b5050505050565b6002600454141561073d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610508565b600260045532331461077c5760405162461bcd60e51b81526020600482015260086024820152674e6f20626f74732160c01b6044820152606401610508565b6007548160095461078d9190611c9c565b11156107d15760405162461bcd60e51b815260206004820152601360248201527245786365656473206d617820737570706c792160681b6044820152606401610508565b6008548111156108235760405162461bcd60e51b815260206004820152601a60248201527f45786365656473206d617820616d6f756e7420706572207478210000000000006044820152606401610508565b600a5460ff161561086a5760405162461bcd60e51b815260206004820152601160248201527053616c65206973206e6f74206c6976652160781b6044820152606401610508565b60065460095410806108895750806005546108859190611cb4565b3410155b6108cb5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610508565b6108f182600183604051806040016040528060018152602001600360fc1b815250610f13565b80600960008282546109039190611c9c565b909155505060016004555050565b606081518351146109765760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610508565b6000835167ffffffffffffffff81111561099257610992611d82565b6040519080825280602002602001820160405280156109bb578160200160208202803683370190505b50905060005b8451811015610a3357610a068582815181106109df576109df611d6c565b60200260200101518583815181106109f9576109f9611d6c565b60200260200101516104a0565b828281518110610a1857610a18611d6c565b6020908102919091010152610a2c81611d3b565b90506109c1565b509392505050565b6003546001600160a01b03163314610a655760405162461bcd60e51b815260040161050890611c43565b610a6f6000611027565b565b6003546001600160a01b03163314610a9b5760405162461bcd60e51b815260040161050890611c43565b60405133904780156108fc02916000818181858888f19350505050610a6f57600080fd5b6003546001600160a01b03163314610ae95760405162461bcd60e51b815260040161050890611c43565b600555565b610af9338383611079565b5050565b6003546001600160a01b03163314610b275760405162461bcd60e51b815260040161050890611c43565b610b4d82600183604051806040016040528060018152602001600360fc1b815250610f13565b8060096000828254610b5f9190611c9c565b90915550505050565b6003546001600160a01b03163314610b925760405162461bcd60e51b815260040161050890611c43565b600a805460ff19811660ff90911615179055565b6003546001600160a01b03163314610bd05760405162461bcd60e51b815260040161050890611c43565b600655565b6001600160a01b038516331480610bf15750610bf18533610412565b610c4f5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610508565b6106e3858585858561115a565b6003546001600160a01b03163314610c865760405162461bcd60e51b815260040161050890611c43565b600855565b6003546001600160a01b03163314610cb55760405162461bcd60e51b815260040161050890611c43565b6001600160a01b038116610d1a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610508565b6105bc81611027565b8051610af9906002906020840190611504565b8151835114610d985760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610508565b6001600160a01b038416610dbe5760405162461bcd60e51b815260040161050890611bb4565b3360005b8451811015610ea5576000858281518110610ddf57610ddf611d6c565b602002602001015190506000858381518110610dfd57610dfd611d6c565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610e4d5760405162461bcd60e51b815260040161050890611bf9565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610e8a908490611c9c565b9250508190555050505080610e9e90611d3b565b9050610dc2565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610ef5929190611b2b565b60405180910390a4610f0b818787878787611284565b505050505050565b6001600160a01b038416610f735760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610508565b336000610f7f856113ef565b90506000610f8c856113ef565b90506000868152602081815260408083206001600160a01b038b16845290915281208054879290610fbe908490611c9c565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461101e8360008989898961143a565b50505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156110ed5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610508565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166111805760405162461bcd60e51b815260040161050890611bb4565b33600061118c856113ef565b90506000611199856113ef565b90506000868152602081815260408083206001600160a01b038c168452909152902054858110156111dc5760405162461bcd60e51b815260040161050890611bf9565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290611219908490611c9c565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611279848a8a8a8a8a61143a565b505050505050505050565b6001600160a01b0384163b15610f0b5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906112c89089908990889088908890600401611a75565b602060405180830381600087803b1580156112e257600080fd5b505af1925050508015611312575060408051601f3d908101601f1916820190925261130f91810190611966565b60015b6113bf5761131e611d98565b806308c379a014156113585750611333611db4565b8061133e575061135a565b8060405162461bcd60e51b81526004016105089190611b59565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610508565b6001600160e01b0319811663bc197c8160e01b1461101e5760405162461bcd60e51b815260040161050890611b6c565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061142957611429611d6c565b602090810291909101015292915050565b6001600160a01b0384163b15610f0b5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061147e9089908990889088908890600401611ad3565b602060405180830381600087803b15801561149857600080fd5b505af19250505080156114c8575060408051601f3d908101601f191682019092526114c591810190611966565b60015b6114d45761131e611d98565b6001600160e01b0319811663f23a6e6160e01b1461101e5760405162461bcd60e51b815260040161050890611b6c565b82805461151090611cd3565b90600052602060002090601f0160209004810192826115325760008555611578565b82601f1061154b57805160ff1916838001178555611578565b82800160010185558215611578579182015b8281111561157857825182559160200191906001019061155d565b50611584929150611588565b5090565b5b808211156115845760008155600101611589565b600067ffffffffffffffff8311156115b7576115b7611d82565b6040516115ce601f8501601f191660200182611d0e565b8091508381528484840111156115e357600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461161257600080fd5b919050565b600082601f83011261162857600080fd5b8135602061163582611c78565b6040516116428282611d0e565b8381528281019150858301600585901b8701840188101561166257600080fd5b60005b8581101561168157813584529284019290840190600101611665565b5090979650505050505050565b600082601f83011261169f57600080fd5b6116ae8383356020850161159d565b9392505050565b6000602082840312156116c757600080fd5b6116ae826115fb565b600080604083850312156116e357600080fd5b6116ec836115fb565b91506116fa602084016115fb565b90509250929050565b600080600080600060a0868803121561171b57600080fd5b611724866115fb565b9450611732602087016115fb565b9350604086013567ffffffffffffffff8082111561174f57600080fd5b61175b89838a01611617565b9450606088013591508082111561177157600080fd5b61177d89838a01611617565b9350608088013591508082111561179357600080fd5b506117a08882890161168e565b9150509295509295909350565b600080600080600060a086880312156117c557600080fd5b6117ce866115fb565b94506117dc602087016115fb565b93506040860135925060608601359150608086013567ffffffffffffffff81111561180657600080fd5b6117a08882890161168e565b6000806040838503121561182557600080fd5b61182e836115fb565b91506020830135801515811461184357600080fd5b809150509250929050565b6000806040838503121561186157600080fd5b61186a836115fb565b946020939093013593505050565b6000806040838503121561188b57600080fd5b823567ffffffffffffffff808211156118a357600080fd5b818501915085601f8301126118b757600080fd5b813560206118c482611c78565b6040516118d18282611d0e565b8381528281019150858301600585901b870184018b10156118f157600080fd5b600096505b8487101561191b57611907816115fb565b8352600196909601959183019183016118f6565b509650508601359250508082111561193257600080fd5b5061193f85828601611617565b9150509250929050565b60006020828403121561195b57600080fd5b81356116ae81611e3e565b60006020828403121561197857600080fd5b81516116ae81611e3e565b60006020828403121561199557600080fd5b813567ffffffffffffffff8111156119ac57600080fd5b8201601f810184136119bd57600080fd5b6119cc8482356020840161159d565b949350505050565b6000602082840312156119e657600080fd5b5035919050565b600081518084526020808501945080840160005b83811015611a1d57815187529582019590820190600101611a01565b509495945050505050565b6000815180845260005b81811015611a4e57602081850181015186830182015201611a32565b81811115611a60576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0386811682528516602082015260a060408201819052600090611aa1908301866119ed565b8281036060840152611ab381866119ed565b90508281036080840152611ac78185611a28565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611b0d90830184611a28565b979650505050505050565b6020815260006116ae60208301846119ed565b604081526000611b3e60408301856119ed565b8281036020840152611b5081856119ed565b95945050505050565b6020815260006116ae6020830184611a28565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff821115611c9257611c92611d82565b5060051b60200190565b60008219821115611caf57611caf611d56565b500190565b6000816000190483118215151615611cce57611cce611d56565b500290565b600181811c90821680611ce757607f821691505b60208210811415611d0857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715611d3457611d34611d82565b6040525050565b6000600019821415611d4f57611d4f611d56565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115611db15760046000803e5060005160e01c5b90565b600060443d1015611dc25790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611df257505050505090565b8285019150815181811115611e0a5750505050505090565b843d8701016020828501011115611e245750505050505090565b611e3360208286010187611d0e565b509095945050505050565b6001600160e01b0319811681146105bc57600080fdfea26469706673582212208ff473cb1c2b0ed4c9b22b25e7079d79ceba5553becbee817629132f3c063a1664736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101655760003560e01c80638da5cb5b116100d1578063c4c39ed51161008a578063e985e9c511610064578063e985e9c5146103f7578063f242432a14610440578063f26a981614610460578063f2fde38b1461048057600080fd5b8063c4c39ed5146103ab578063d5abeb01146103cb578063e150007e146103e157600080fd5b80638da5cb5b146102ec57806391b7f5ed14610314578063a22cb46514610334578063aad3ec9614610354578063bd85b03914610374578063c4ae31681461039657600080fd5b80634e1273f4116101235780634e1273f41461024f5780635c975abb1461027c5780636817c76c14610296578063715018a6146102ac578063853828b6146102c157806385b27c85146102d657600080fd5b8062fdd58e1461016a57806301ffc9a71461019d57806302fe5305146101cd5780630e89341c146101ef5780632eb2c2d61461021c57806340c10f191461023c575b600080fd5b34801561017657600080fd5b5061018a61018536600461184e565b6104a0565b6040519081526020015b60405180910390f35b3480156101a957600080fd5b506101bd6101b8366004611949565b610537565b6040519015158152602001610194565b3480156101d957600080fd5b506101ed6101e8366004611983565b610589565b005b3480156101fb57600080fd5b5061020f61020a3660046119d4565b6105bf565b6040516101949190611b59565b34801561022857600080fd5b506101ed610237366004611703565b610653565b6101ed61024a36600461184e565b6106ea565b34801561025b57600080fd5b5061026f61026a366004611878565b610911565b6040516101949190611b18565b34801561028857600080fd5b50600a546101bd9060ff1681565b3480156102a257600080fd5b5061018a60055481565b3480156102b857600080fd5b506101ed610a3b565b3480156102cd57600080fd5b506101ed610a71565b3480156102e257600080fd5b5061018a60085481565b3480156102f857600080fd5b506003546040516001600160a01b039091168152602001610194565b34801561032057600080fd5b506101ed61032f3660046119d4565b610abf565b34801561034057600080fd5b506101ed61034f366004611812565b610aee565b34801561036057600080fd5b506101ed61036f36600461184e565b610afd565b34801561038057600080fd5b5061018a61038f3660046119d4565b5060095490565b3480156103a257600080fd5b506101ed610b68565b3480156103b757600080fd5b506101ed6103c63660046119d4565b610ba6565b3480156103d757600080fd5b5061018a60075481565b3480156103ed57600080fd5b5061018a60065481565b34801561040357600080fd5b506101bd6104123660046116d0565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561044c57600080fd5b506101ed61045b3660046117ad565b610bd5565b34801561046c57600080fd5b506101ed61047b3660046119d4565b610c5c565b34801561048c57600080fd5b506101ed61049b3660046116b5565b610c8b565b60006001600160a01b0383166105115760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061056857506001600160e01b031982166303a24d0760e21b145b8061058357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6003546001600160a01b031633146105b35760405162461bcd60e51b815260040161050890611c43565b6105bc81610d23565b50565b6060600280546105ce90611cd3565b80601f01602080910402602001604051908101604052809291908181526020018280546105fa90611cd3565b80156106475780601f1061061c57610100808354040283529160200191610647565b820191906000526020600020905b81548152906001019060200180831161062a57829003601f168201915b50505050509050919050565b6001600160a01b03851633148061066f575061066f8533610412565b6106d65760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610508565b6106e38585858585610d36565b5050505050565b6002600454141561073d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610508565b600260045532331461077c5760405162461bcd60e51b81526020600482015260086024820152674e6f20626f74732160c01b6044820152606401610508565b6007548160095461078d9190611c9c565b11156107d15760405162461bcd60e51b815260206004820152601360248201527245786365656473206d617820737570706c792160681b6044820152606401610508565b6008548111156108235760405162461bcd60e51b815260206004820152601a60248201527f45786365656473206d617820616d6f756e7420706572207478210000000000006044820152606401610508565b600a5460ff161561086a5760405162461bcd60e51b815260206004820152601160248201527053616c65206973206e6f74206c6976652160781b6044820152606401610508565b60065460095410806108895750806005546108859190611cb4565b3410155b6108cb5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610508565b6108f182600183604051806040016040528060018152602001600360fc1b815250610f13565b80600960008282546109039190611c9c565b909155505060016004555050565b606081518351146109765760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610508565b6000835167ffffffffffffffff81111561099257610992611d82565b6040519080825280602002602001820160405280156109bb578160200160208202803683370190505b50905060005b8451811015610a3357610a068582815181106109df576109df611d6c565b60200260200101518583815181106109f9576109f9611d6c565b60200260200101516104a0565b828281518110610a1857610a18611d6c565b6020908102919091010152610a2c81611d3b565b90506109c1565b509392505050565b6003546001600160a01b03163314610a655760405162461bcd60e51b815260040161050890611c43565b610a6f6000611027565b565b6003546001600160a01b03163314610a9b5760405162461bcd60e51b815260040161050890611c43565b60405133904780156108fc02916000818181858888f19350505050610a6f57600080fd5b6003546001600160a01b03163314610ae95760405162461bcd60e51b815260040161050890611c43565b600555565b610af9338383611079565b5050565b6003546001600160a01b03163314610b275760405162461bcd60e51b815260040161050890611c43565b610b4d82600183604051806040016040528060018152602001600360fc1b815250610f13565b8060096000828254610b5f9190611c9c565b90915550505050565b6003546001600160a01b03163314610b925760405162461bcd60e51b815260040161050890611c43565b600a805460ff19811660ff90911615179055565b6003546001600160a01b03163314610bd05760405162461bcd60e51b815260040161050890611c43565b600655565b6001600160a01b038516331480610bf15750610bf18533610412565b610c4f5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610508565b6106e3858585858561115a565b6003546001600160a01b03163314610c865760405162461bcd60e51b815260040161050890611c43565b600855565b6003546001600160a01b03163314610cb55760405162461bcd60e51b815260040161050890611c43565b6001600160a01b038116610d1a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610508565b6105bc81611027565b8051610af9906002906020840190611504565b8151835114610d985760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610508565b6001600160a01b038416610dbe5760405162461bcd60e51b815260040161050890611bb4565b3360005b8451811015610ea5576000858281518110610ddf57610ddf611d6c565b602002602001015190506000858381518110610dfd57610dfd611d6c565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610e4d5760405162461bcd60e51b815260040161050890611bf9565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610e8a908490611c9c565b9250508190555050505080610e9e90611d3b565b9050610dc2565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610ef5929190611b2b565b60405180910390a4610f0b818787878787611284565b505050505050565b6001600160a01b038416610f735760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610508565b336000610f7f856113ef565b90506000610f8c856113ef565b90506000868152602081815260408083206001600160a01b038b16845290915281208054879290610fbe908490611c9c565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461101e8360008989898961143a565b50505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156110ed5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610508565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166111805760405162461bcd60e51b815260040161050890611bb4565b33600061118c856113ef565b90506000611199856113ef565b90506000868152602081815260408083206001600160a01b038c168452909152902054858110156111dc5760405162461bcd60e51b815260040161050890611bf9565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290611219908490611c9c565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611279848a8a8a8a8a61143a565b505050505050505050565b6001600160a01b0384163b15610f0b5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906112c89089908990889088908890600401611a75565b602060405180830381600087803b1580156112e257600080fd5b505af1925050508015611312575060408051601f3d908101601f1916820190925261130f91810190611966565b60015b6113bf5761131e611d98565b806308c379a014156113585750611333611db4565b8061133e575061135a565b8060405162461bcd60e51b81526004016105089190611b59565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610508565b6001600160e01b0319811663bc197c8160e01b1461101e5760405162461bcd60e51b815260040161050890611b6c565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061142957611429611d6c565b602090810291909101015292915050565b6001600160a01b0384163b15610f0b5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061147e9089908990889088908890600401611ad3565b602060405180830381600087803b15801561149857600080fd5b505af19250505080156114c8575060408051601f3d908101601f191682019092526114c591810190611966565b60015b6114d45761131e611d98565b6001600160e01b0319811663f23a6e6160e01b1461101e5760405162461bcd60e51b815260040161050890611b6c565b82805461151090611cd3565b90600052602060002090601f0160209004810192826115325760008555611578565b82601f1061154b57805160ff1916838001178555611578565b82800160010185558215611578579182015b8281111561157857825182559160200191906001019061155d565b50611584929150611588565b5090565b5b808211156115845760008155600101611589565b600067ffffffffffffffff8311156115b7576115b7611d82565b6040516115ce601f8501601f191660200182611d0e565b8091508381528484840111156115e357600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461161257600080fd5b919050565b600082601f83011261162857600080fd5b8135602061163582611c78565b6040516116428282611d0e565b8381528281019150858301600585901b8701840188101561166257600080fd5b60005b8581101561168157813584529284019290840190600101611665565b5090979650505050505050565b600082601f83011261169f57600080fd5b6116ae8383356020850161159d565b9392505050565b6000602082840312156116c757600080fd5b6116ae826115fb565b600080604083850312156116e357600080fd5b6116ec836115fb565b91506116fa602084016115fb565b90509250929050565b600080600080600060a0868803121561171b57600080fd5b611724866115fb565b9450611732602087016115fb565b9350604086013567ffffffffffffffff8082111561174f57600080fd5b61175b89838a01611617565b9450606088013591508082111561177157600080fd5b61177d89838a01611617565b9350608088013591508082111561179357600080fd5b506117a08882890161168e565b9150509295509295909350565b600080600080600060a086880312156117c557600080fd5b6117ce866115fb565b94506117dc602087016115fb565b93506040860135925060608601359150608086013567ffffffffffffffff81111561180657600080fd5b6117a08882890161168e565b6000806040838503121561182557600080fd5b61182e836115fb565b91506020830135801515811461184357600080fd5b809150509250929050565b6000806040838503121561186157600080fd5b61186a836115fb565b946020939093013593505050565b6000806040838503121561188b57600080fd5b823567ffffffffffffffff808211156118a357600080fd5b818501915085601f8301126118b757600080fd5b813560206118c482611c78565b6040516118d18282611d0e565b8381528281019150858301600585901b870184018b10156118f157600080fd5b600096505b8487101561191b57611907816115fb565b8352600196909601959183019183016118f6565b509650508601359250508082111561193257600080fd5b5061193f85828601611617565b9150509250929050565b60006020828403121561195b57600080fd5b81356116ae81611e3e565b60006020828403121561197857600080fd5b81516116ae81611e3e565b60006020828403121561199557600080fd5b813567ffffffffffffffff8111156119ac57600080fd5b8201601f810184136119bd57600080fd5b6119cc8482356020840161159d565b949350505050565b6000602082840312156119e657600080fd5b5035919050565b600081518084526020808501945080840160005b83811015611a1d57815187529582019590820190600101611a01565b509495945050505050565b6000815180845260005b81811015611a4e57602081850181015186830182015201611a32565b81811115611a60576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0386811682528516602082015260a060408201819052600090611aa1908301866119ed565b8281036060840152611ab381866119ed565b90508281036080840152611ac78185611a28565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611b0d90830184611a28565b979650505050505050565b6020815260006116ae60208301846119ed565b604081526000611b3e60408301856119ed565b8281036020840152611b5081856119ed565b95945050505050565b6020815260006116ae6020830184611a28565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff821115611c9257611c92611d82565b5060051b60200190565b60008219821115611caf57611caf611d56565b500190565b6000816000190483118215151615611cce57611cce611d56565b500290565b600181811c90821680611ce757607f821691505b60208210811415611d0857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715611d3457611d34611d82565b6040525050565b6000600019821415611d4f57611d4f611d56565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115611db15760046000803e5060005160e01c5b90565b600060443d1015611dc25790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611df257505050505090565b8285019150815181811115611e0a5750505050505090565b843d8701016020828501011115611e245750505050505090565b611e3360208286010187611d0e565b509095945050505050565b6001600160e01b0319811681146105bc57600080fdfea26469706673582212208ff473cb1c2b0ed4c9b22b25e7079d79ceba5553becbee817629132f3c063a1664736f6c63430008070033

Deployed Bytecode Sourcemap

41647:1845:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26211:231;;;;;;;;;;-1:-1:-1;26211:231:0;;;;;:::i;:::-;;:::i;:::-;;;17822:25:1;;;17810:2;17795:18;26211:231:0;;;;;;;;25234:310;;;;;;;;;;-1:-1:-1;25234:310:0;;;;;:::i;:::-;;:::i;:::-;;;10045:14:1;;10038:22;10020:41;;10008:2;9993:18;25234:310:0;9880:187:1;41984:91:0;;;;;;;;;;-1:-1:-1;41984:91:0;;;;;:::i;:::-;;:::i;:::-;;25955:105;;;;;;;;;;-1:-1:-1;25955:105:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;28150:442::-;;;;;;;;;;-1:-1:-1;28150:442:0;;;;;:::i;:::-;;:::i;42494:571::-;;;;;;:::i;:::-;;:::i;26608:524::-;;;;;;;;;;-1:-1:-1;26608:524:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;41950:25::-;;;;;;;;;;-1:-1:-1;41950:25:0;;;;;;;;41741:38;;;;;;;;;;;;;;;;5383:103;;;;;;;;;;;;;:::i;43370:117::-;;;;;;;;;;;;;:::i;41867:33::-;;;;;;;;;;;;;;;;4732:87;;;;;;;;;;-1:-1:-1;4805:6:0;;4732:87;;-1:-1:-1;;;;;4805:6:0;;;7686:51:1;;7674:2;7659:18;4732:87:0;7540:203:1;42083:90:0;;;;;;;;;;-1:-1:-1;42083:90:0;;;;;:::i;:::-;;:::i;27205:155::-;;;;;;;;;;-1:-1:-1;27205:155:0;;;;;:::i;:::-;;:::i;43073:172::-;;;;;;;;;;-1:-1:-1;43073:172:0;;;;;:::i;:::-;;:::i;43253:109::-;;;;;;;;;;-1:-1:-1;43253:109:0;;;;;:::i;:::-;-1:-1:-1;43342:12:0;;;43253:109;42409:77;;;;;;;;;;;;;:::i;42295:106::-;;;;;;;;;;-1:-1:-1;42295:106:0;;;;;:::i;:::-;;:::i;41829:31::-;;;;;;;;;;;;;;;;41786:36;;;;;;;;;;;;;;;;27432:168;;;;;;;;;;-1:-1:-1;27432:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;27555:27:0;;;27531:4;27555:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;27432:168;27672:401;;;;;;;;;;-1:-1:-1;27672:401:0;;;;;:::i;:::-;;:::i;42181:106::-;;;;;;;;;;-1:-1:-1;42181:106:0;;;;;:::i;:::-;;:::i;5641:201::-;;;;;;;;;;-1:-1:-1;5641:201:0;;;;;:::i;:::-;;:::i;26211:231::-;26297:7;-1:-1:-1;;;;;26325:21:0;;26317:77;;;;-1:-1:-1;;;26317:77:0;;11328:2:1;26317:77:0;;;11310:21:1;11367:2;11347:18;;;11340:30;11406:34;11386:18;;;11379:62;-1:-1:-1;;;11457:18:1;;;11450:41;11508:19;;26317:77:0;;;;;;;;;-1:-1:-1;26412:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;26412:22:0;;;;;;;;;;;;26211:231::o;25234:310::-;25336:4;-1:-1:-1;;;;;;25373:41:0;;-1:-1:-1;;;25373:41:0;;:110;;-1:-1:-1;;;;;;;25431:52:0;;-1:-1:-1;;;25431:52:0;25373:110;:163;;;-1:-1:-1;;;;;;;;;;16612:40:0;;;25500:36;25353:183;25234:310;-1:-1:-1;;25234:310:0:o;41984:91::-;4805:6;;-1:-1:-1;;;;;4805:6:0;3530:10;4952:23;4944:68;;;;-1:-1:-1;;;4944:68:0;;;;;;;:::i;:::-;42052:15:::1;42060:6;42052:7;:15::i;:::-;41984:91:::0;:::o;25955:105::-;26015:13;26048:4;26041:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25955:105;;;:::o;28150:442::-;-1:-1:-1;;;;;28383:20:0;;3530:10;28383:20;;:60;;-1:-1:-1;28407:36:0;28424:4;3530:10;27432:168;:::i;28407:36::-;28361:160;;;;-1:-1:-1;;;28361:160:0;;13666:2:1;28361:160:0;;;13648:21:1;13705:2;13685:18;;;13678:30;13744:34;13724:18;;;13717:62;-1:-1:-1;;;13795:18:1;;;13788:48;13853:19;;28361:160:0;13464:414:1;28361:160:0;28532:52;28555:4;28561:2;28565:3;28570:7;28579:4;28532:22;:52::i;:::-;28150:442;;;;;:::o;42494:571::-;1818:1;2416:7;;:19;;2408:63;;;;-1:-1:-1;;;2408:63:0;;17170:2:1;2408:63:0;;;17152:21:1;17209:2;17189:18;;;17182:30;17248:33;17228:18;;;17221:61;17299:18;;2408:63:0;16968:355:1;2408:63:0;1818:1;2549:7;:18;42623:9:::1;42636:10;42623:23;42614:45;;;::::0;-1:-1:-1;;;42614:45:0;;15203:2:1;42614:45:0::1;::::0;::::1;15185:21:1::0;15242:1;15222:18;;;15215:29;-1:-1:-1;;;15260:18:1;;;15253:38;15308:18;;42614:45:0::1;15001:331:1::0;42614:45:0::1;42704:9;;42694:6;42679:12;;:21;;;;:::i;:::-;:34;;42670:68;;;::::0;-1:-1:-1;;;42670:68:0;;12912:2:1;42670:68:0::1;::::0;::::1;12894:21:1::0;12951:2;12931:18;;;12924:30;-1:-1:-1;;;12970:18:1;;;12963:49;13029:18;;42670:68:0::1;12710:343:1::0;42670:68:0::1;42768:14;;42758:6;:24;;42749:65;;;::::0;-1:-1:-1;;;42749:65:0;;12557:2:1;42749:65:0::1;::::0;::::1;12539:21:1::0;12596:2;12576:18;;;12569:30;12635:28;12615:18;;;12608:56;12681:18;;42749:65:0::1;12355:350:1::0;42749:65:0::1;42835:6;::::0;::::1;;42834:7;42825:39;;;::::0;-1:-1:-1;;;42825:39:0;;14857:2:1;42825:39:0::1;::::0;::::1;14839:21:1::0;14896:2;14876:18;;;14869:30;-1:-1:-1;;;14915:18:1;;;14908:47;14972:18;;42825:39:0::1;14655:341:1::0;42825:39:0::1;42901:14;;42886:12;;:29;42884:72;;;;42948:6;42936:9;;:18;;;;:::i;:::-;42923:9;:31;;42884:72;42875:106;;;::::0;-1:-1:-1;;;42875:106:0;;17530:2:1;42875:106:0::1;::::0;::::1;17512:21:1::0;17569:2;17549:18;;;17542:30;-1:-1:-1;;;17588:18:1;;;17581:49;17647:18;;42875:106:0::1;17328:343:1::0;42875:106:0::1;42994:30;43000:7;43009:1;43012:6;42994:30;;;;;;;;;;;;;-1:-1:-1::0;;;42994:30:0::1;;::::0;:5:::1;:30::i;:::-;43051:6;43035:12;;:22;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;1774:1:0;2728:7;:22;-1:-1:-1;;42494:571:0:o;26608:524::-;26764:16;26825:3;:10;26806:8;:15;:29;26798:83;;;;-1:-1:-1;;;26798:83:0;;15949:2:1;26798:83:0;;;15931:21:1;15988:2;15968:18;;;15961:30;16027:34;16007:18;;;16000:62;-1:-1:-1;;;16078:18:1;;;16071:39;16127:19;;26798:83:0;15747:405:1;26798:83:0;26894:30;26941:8;:15;26927:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26927:30:0;;26894:63;;26975:9;26970:122;26994:8;:15;26990:1;:19;26970:122;;;27050:30;27060:8;27069:1;27060:11;;;;;;;;:::i;:::-;;;;;;;27073:3;27077:1;27073:6;;;;;;;;:::i;:::-;;;;;;;27050:9;:30::i;:::-;27031:13;27045:1;27031:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;27011:3;;;:::i;:::-;;;26970:122;;;-1:-1:-1;27111:13:0;26608:524;-1:-1:-1;;;26608:524:0:o;5383:103::-;4805:6;;-1:-1:-1;;;;;4805:6:0;3530:10;4952:23;4944:68;;;;-1:-1:-1;;;4944:68:0;;;;;;;:::i;:::-;5448:30:::1;5475:1;5448:18;:30::i;:::-;5383:103::o:0;43370:117::-;4805:6;;-1:-1:-1;;;;;4805:6:0;3530:10;4952:23;4944:68;;;;-1:-1:-1;;;4944:68:0;;;;;;;:::i;:::-;43431:47:::1;::::0;43439:10:::1;::::0;43456:21:::1;43431:47:::0;::::1;;;::::0;::::1;::::0;;;43456:21;43439:10;43431:47;::::1;;;;;;43423:56;;;::::0;::::1;42083:90:::0;4805:6;;-1:-1:-1;;;;;4805:6:0;3530:10;4952:23;4944:68;;;;-1:-1:-1;;;4944:68:0;;;;;;;:::i;:::-;42147:9:::1;:18:::0;42083:90::o;27205:155::-;27300:52;3530:10;27333:8;27343;27300:18;:52::i;:::-;27205:155;;:::o;43073:172::-;4805:6;;-1:-1:-1;;;;;4805:6:0;3530:10;4952:23;4944:68;;;;-1:-1:-1;;;4944:68:0;;;;;;;:::i;:::-;43174:30:::1;43180:7;43189:1;43192:6;43174:30;;;;;;;;;;;;;-1:-1:-1::0;;;43174:30:0::1;;::::0;:5:::1;:30::i;:::-;43231:6;43215:12;;:22;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;43073:172:0:o;42409:77::-;4805:6;;-1:-1:-1;;;;;4805:6:0;3530:10;4952:23;4944:68;;;;-1:-1:-1;;;4944:68:0;;;;;;;:::i;:::-;42472:6:::1;::::0;;-1:-1:-1;;42462:16:0;::::1;42472:6;::::0;;::::1;42471:7;42462:16;::::0;;42409:77::o;42295:106::-;4805:6;;-1:-1:-1;;;;;4805:6:0;3530:10;4952:23;4944:68;;;;-1:-1:-1;;;4944:68:0;;;;;;;:::i;:::-;42369:14:::1;:24:::0;42295:106::o;27672:401::-;-1:-1:-1;;;;;27880:20:0;;3530:10;27880:20;;:60;;-1:-1:-1;27904:36:0;27921:4;3530:10;27432:168;:::i;27904:36::-;27858:151;;;;-1:-1:-1;;;27858:151:0;;12147:2:1;27858:151:0;;;12129:21:1;12186:2;12166:18;;;12159:30;12225:34;12205:18;;;12198:62;-1:-1:-1;;;12276:18:1;;;12269:39;12325:19;;27858:151:0;11945:405:1;27858:151:0;28020:45;28038:4;28044:2;28048;28052:6;28060:4;28020:17;:45::i;42181:106::-;4805:6;;-1:-1:-1;;;;;4805:6:0;3530:10;4952:23;4944:68;;;;-1:-1:-1;;;4944:68:0;;;;;;;:::i;:::-;42255:14:::1;:24:::0;42181:106::o;5641:201::-;4805:6;;-1:-1:-1;;;;;4805:6:0;3530:10;4952:23;4944:68;;;;-1:-1:-1;;;4944:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5730:22:0;::::1;5722:73;;;::::0;-1:-1:-1;;;5722:73:0;;11740:2:1;5722:73:0::1;::::0;::::1;11722:21:1::0;11779:2;11759:18;;;11752:30;11818:34;11798:18;;;11791:62;-1:-1:-1;;;11869:18:1;;;11862:36;11915:19;;5722:73:0::1;11538:402:1::0;5722:73:0::1;5806:28;5825:8;5806:18;:28::i;32378:88::-:0;32445:13;;;;:4;;:13;;;;;:::i;30388:1146::-;30615:7;:14;30601:3;:10;:28;30593:81;;;;-1:-1:-1;;;30593:81:0;;16359:2:1;30593:81:0;;;16341:21:1;16398:2;16378:18;;;16371:30;16437:34;16417:18;;;16410:62;-1:-1:-1;;;16488:18:1;;;16481:38;16536:19;;30593:81:0;16157:404:1;30593:81:0;-1:-1:-1;;;;;30693:16:0;;30685:66;;;;-1:-1:-1;;;30685:66:0;;;;;;;:::i;:::-;3530:10;30764:16;30881:421;30905:3;:10;30901:1;:14;30881:421;;;30937:10;30950:3;30954:1;30950:6;;;;;;;;:::i;:::-;;;;;;;30937:19;;30971:14;30988:7;30996:1;30988:10;;;;;;;;:::i;:::-;;;;;;;;;;;;31015:19;31037:13;;;;;;;;;;-1:-1:-1;;;;;31037:19:0;;;;;;;;;;;;30988:10;;-1:-1:-1;31079:21:0;;;;31071:76;;;;-1:-1:-1;;;31071:76:0;;;;;;;:::i;:::-;31191:9;:13;;;;;;;;;;;-1:-1:-1;;;;;31191:19:0;;;;;;;;;;31213:20;;;31191:42;;31263:17;;;;;;;:27;;31213:20;;31191:9;31263:27;;31213:20;;31263:27;:::i;:::-;;;;;;;;30922:380;;;30917:3;;;;:::i;:::-;;;30881:421;;;;31349:2;-1:-1:-1;;;;;31319:47:0;31343:4;-1:-1:-1;;;;;31319:47:0;31333:8;-1:-1:-1;;;;;31319:47:0;;31353:3;31358:7;31319:47;;;;;;;:::i;:::-;;;;;;;;31451:75;31487:8;31497:4;31503:2;31507:3;31512:7;31521:4;31451:35;:75::i;:::-;30582:952;30388:1146;;;;;:::o;32852:729::-;-1:-1:-1;;;;;33005:16:0;;32997:62;;;;-1:-1:-1;;;32997:62:0;;16768:2:1;32997:62:0;;;16750:21:1;16807:2;16787:18;;;16780:30;16846:34;16826:18;;;16819:62;-1:-1:-1;;;16897:18:1;;;16890:31;16938:19;;32997:62:0;16566:397:1;32997:62:0;3530:10;33072:16;33137:21;33155:2;33137:17;:21::i;:::-;33114:44;;33169:24;33196:25;33214:6;33196:17;:25::i;:::-;33169:52;;33313:9;:13;;;;;;;;;;;-1:-1:-1;;;;;33313:17:0;;;;;;;;;:27;;33334:6;;33313:9;:27;;33334:6;;33313:27;:::i;:::-;;;;-1:-1:-1;;33356:52:0;;;18032:25:1;;;18088:2;18073:18;;18066:34;;;-1:-1:-1;;;;;33356:52:0;;;;33389:1;;33356:52;;;;;;18005:18:1;33356:52:0;;;;;;;33499:74;33530:8;33548:1;33552:2;33556;33560:6;33568:4;33499:30;:74::i;:::-;32986:595;;;32852:729;;;;:::o;6002:191::-;6095:6;;;-1:-1:-1;;;;;6112:17:0;;;-1:-1:-1;;;;;;6112:17:0;;;;;;;6145:40;;6095:6;;;6112:17;6095:6;;6145:40;;6076:16;;6145:40;6065:128;6002:191;:::o;37122:331::-;37277:8;-1:-1:-1;;;;;37268:17:0;:5;-1:-1:-1;;;;;37268:17:0;;;37260:71;;;;-1:-1:-1;;;37260:71:0;;15539:2:1;37260:71:0;;;15521:21:1;15578:2;15558:18;;;15551:30;15617:34;15597:18;;;15590:62;-1:-1:-1;;;15668:18:1;;;15661:39;15717:19;;37260:71:0;15337:405:1;37260:71:0;-1:-1:-1;;;;;37342:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;37342:46:0;;;;;;;;;;37404:41;;10020::1;;;37404::0;;9993:18:1;37404:41:0;;;;;;;37122:331;;;:::o;29056:974::-;-1:-1:-1;;;;;29244:16:0;;29236:66;;;;-1:-1:-1;;;29236:66:0;;;;;;;:::i;:::-;3530:10;29315:16;29380:21;29398:2;29380:17;:21::i;:::-;29357:44;;29412:24;29439:25;29457:6;29439:17;:25::i;:::-;29412:52;;29550:19;29572:13;;;;;;;;;;;-1:-1:-1;;;;;29572:19:0;;;;;;;;;;29610:21;;;;29602:76;;;;-1:-1:-1;;;29602:76:0;;;;;;;:::i;:::-;29714:9;:13;;;;;;;;;;;-1:-1:-1;;;;;29714:19:0;;;;;;;;;;29736:20;;;29714:42;;29778:17;;;;;;;:27;;29736:20;;29714:9;29778:27;;29736:20;;29778:27;:::i;:::-;;;;-1:-1:-1;;29823:46:0;;;18032:25:1;;;18088:2;18073:18;;18066:34;;;-1:-1:-1;;;;;29823:46:0;;;;;;;;;;;;;;18005:18:1;29823:46:0;;;;;;;29954:68;29985:8;29995:4;30001:2;30005;30009:6;30017:4;29954:30;:68::i;:::-;29225:805;;;;29056:974;;;;;:::o;40565:813::-;-1:-1:-1;;;;;40805:13:0;;7734:19;:23;40801:570;;40841:79;;-1:-1:-1;;;40841:79:0;;-1:-1:-1;;;;;40841:43:0;;;;;:79;;40885:8;;40895:4;;40901:3;;40906:7;;40915:4;;40841:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40841:79:0;;;;;;;;-1:-1:-1;;40841:79:0;;;;;;;;;;;;:::i;:::-;;;40837:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;41233:6;41226:14;;-1:-1:-1;;;41226:14:0;;;;;;;;:::i;40837:523::-;;;41282:62;;-1:-1:-1;;;41282:62:0;;10498:2:1;41282:62:0;;;10480:21:1;10537:2;10517:18;;;10510:30;10576:34;10556:18;;;10549:62;-1:-1:-1;;;10627:18:1;;;10620:50;10687:19;;41282:62:0;10296:416:1;40837:523:0;-1:-1:-1;;;;;;41002:60:0;;-1:-1:-1;;;41002:60:0;40998:159;;41087:50;;-1:-1:-1;;;41087:50:0;;;;;;;:::i;41386:198::-;41506:16;;;41520:1;41506:16;;;;;;;;;41452;;41481:22;;41506:16;;;;;;;;;;;;-1:-1:-1;41506:16:0;41481:41;;41544:7;41533:5;41539:1;41533:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;41571:5;41386:198;-1:-1:-1;;41386:198:0:o;39813:744::-;-1:-1:-1;;;;;40028:13:0;;7734:19;:23;40024:526;;40064:72;;-1:-1:-1;;;40064:72:0;;-1:-1:-1;;;;;40064:38:0;;;;;:72;;40103:8;;40113:4;;40119:2;;40123:6;;40131:4;;40064:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40064:72:0;;;;;;;;-1:-1:-1;;40064:72:0;;;;;;;;;;;;:::i;:::-;;;40060:479;;;;:::i;:::-;-1:-1:-1;;;;;;40186:55:0;;-1:-1:-1;;;40186:55:0;40182:154;;40266:50;;-1:-1:-1;;;40266:50:0;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:468:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;183:2;177:9;195:69;252:2;231:15;;-1:-1:-1;;227:29:1;258:4;223:40;177:9;195:69;:::i;:::-;282:6;273:15;;312:6;304;297:22;352:3;343:6;338:3;334:16;331:25;328:45;;;369:1;366;359:12;328:45;419:6;414:3;407:4;399:6;395:17;382:44;474:1;467:4;458:6;450;446:19;442:30;435:41;;14:468;;;;;:::o;487:173::-;555:20;;-1:-1:-1;;;;;604:31:1;;594:42;;584:70;;650:1;647;640:12;584:70;487:173;;;:::o;665:735::-;719:5;772:3;765:4;757:6;753:17;749:27;739:55;;790:1;787;780:12;739:55;826:6;813:20;852:4;875:43;915:2;875:43;:::i;:::-;947:2;941:9;959:31;987:2;979:6;959:31;:::i;:::-;1025:18;;;1059:15;;;;-1:-1:-1;1094:15:1;;;1144:1;1140:10;;;1128:23;;1124:32;;1121:41;-1:-1:-1;1118:61:1;;;1175:1;1172;1165:12;1118:61;1197:1;1207:163;1221:2;1218:1;1215:9;1207:163;;;1278:17;;1266:30;;1316:12;;;;1348;;;;1239:1;1232:9;1207:163;;;-1:-1:-1;1388:6:1;;665:735;-1:-1:-1;;;;;;;665:735:1:o;1405:220::-;1447:5;1500:3;1493:4;1485:6;1481:17;1477:27;1467:55;;1518:1;1515;1508:12;1467:55;1540:79;1615:3;1606:6;1593:20;1586:4;1578:6;1574:17;1540:79;:::i;:::-;1531:88;1405:220;-1:-1:-1;;;1405:220:1:o;1630:186::-;1689:6;1742:2;1730:9;1721:7;1717:23;1713:32;1710:52;;;1758:1;1755;1748:12;1710:52;1781:29;1800:9;1781:29;:::i;1821:260::-;1889:6;1897;1950:2;1938:9;1929:7;1925:23;1921:32;1918:52;;;1966:1;1963;1956:12;1918:52;1989:29;2008:9;1989:29;:::i;:::-;1979:39;;2037:38;2071:2;2060:9;2056:18;2037:38;:::i;:::-;2027:48;;1821:260;;;;;:::o;2086:943::-;2240:6;2248;2256;2264;2272;2325:3;2313:9;2304:7;2300:23;2296:33;2293:53;;;2342:1;2339;2332:12;2293:53;2365:29;2384:9;2365:29;:::i;:::-;2355:39;;2413:38;2447:2;2436:9;2432:18;2413:38;:::i;:::-;2403:48;;2502:2;2491:9;2487:18;2474:32;2525:18;2566:2;2558:6;2555:14;2552:34;;;2582:1;2579;2572:12;2552:34;2605:61;2658:7;2649:6;2638:9;2634:22;2605:61;:::i;:::-;2595:71;;2719:2;2708:9;2704:18;2691:32;2675:48;;2748:2;2738:8;2735:16;2732:36;;;2764:1;2761;2754:12;2732:36;2787:63;2842:7;2831:8;2820:9;2816:24;2787:63;:::i;:::-;2777:73;;2903:3;2892:9;2888:19;2875:33;2859:49;;2933:2;2923:8;2920:16;2917:36;;;2949:1;2946;2939:12;2917:36;;2972:51;3015:7;3004:8;2993:9;2989:24;2972:51;:::i;:::-;2962:61;;;2086:943;;;;;;;;:::o;3034:606::-;3138:6;3146;3154;3162;3170;3223:3;3211:9;3202:7;3198:23;3194:33;3191:53;;;3240:1;3237;3230:12;3191:53;3263:29;3282:9;3263:29;:::i;:::-;3253:39;;3311:38;3345:2;3334:9;3330:18;3311:38;:::i;:::-;3301:48;;3396:2;3385:9;3381:18;3368:32;3358:42;;3447:2;3436:9;3432:18;3419:32;3409:42;;3502:3;3491:9;3487:19;3474:33;3530:18;3522:6;3519:30;3516:50;;;3562:1;3559;3552:12;3516:50;3585:49;3626:7;3617:6;3606:9;3602:22;3585:49;:::i;3645:347::-;3710:6;3718;3771:2;3759:9;3750:7;3746:23;3742:32;3739:52;;;3787:1;3784;3777:12;3739:52;3810:29;3829:9;3810:29;:::i;:::-;3800:39;;3889:2;3878:9;3874:18;3861:32;3936:5;3929:13;3922:21;3915:5;3912:32;3902:60;;3958:1;3955;3948:12;3902:60;3981:5;3971:15;;;3645:347;;;;;:::o;3997:254::-;4065:6;4073;4126:2;4114:9;4105:7;4101:23;4097:32;4094:52;;;4142:1;4139;4132:12;4094:52;4165:29;4184:9;4165:29;:::i;:::-;4155:39;4241:2;4226:18;;;;4213:32;;-1:-1:-1;;;3997:254:1:o;4256:1219::-;4374:6;4382;4435:2;4423:9;4414:7;4410:23;4406:32;4403:52;;;4451:1;4448;4441:12;4403:52;4491:9;4478:23;4520:18;4561:2;4553:6;4550:14;4547:34;;;4577:1;4574;4567:12;4547:34;4615:6;4604:9;4600:22;4590:32;;4660:7;4653:4;4649:2;4645:13;4641:27;4631:55;;4682:1;4679;4672:12;4631:55;4718:2;4705:16;4740:4;4763:43;4803:2;4763:43;:::i;:::-;4835:2;4829:9;4847:31;4875:2;4867:6;4847:31;:::i;:::-;4913:18;;;4947:15;;;;-1:-1:-1;4982:11:1;;;5024:1;5020:10;;;5012:19;;5008:28;;5005:41;-1:-1:-1;5002:61:1;;;5059:1;5056;5049:12;5002:61;5081:1;5072:10;;5091:169;5105:2;5102:1;5099:9;5091:169;;;5162:23;5181:3;5162:23;:::i;:::-;5150:36;;5123:1;5116:9;;;;;5206:12;;;;5238;;5091:169;;;-1:-1:-1;5279:6:1;-1:-1:-1;;5323:18:1;;5310:32;;-1:-1:-1;;5354:16:1;;;5351:36;;;5383:1;5380;5373:12;5351:36;;5406:63;5461:7;5450:8;5439:9;5435:24;5406:63;:::i;:::-;5396:73;;;4256:1219;;;;;:::o;5480:245::-;5538:6;5591:2;5579:9;5570:7;5566:23;5562:32;5559:52;;;5607:1;5604;5597:12;5559:52;5646:9;5633:23;5665:30;5689:5;5665:30;:::i;5730:249::-;5799:6;5852:2;5840:9;5831:7;5827:23;5823:32;5820:52;;;5868:1;5865;5858:12;5820:52;5900:9;5894:16;5919:30;5943:5;5919:30;:::i;5984:450::-;6053:6;6106:2;6094:9;6085:7;6081:23;6077:32;6074:52;;;6122:1;6119;6112:12;6074:52;6162:9;6149:23;6195:18;6187:6;6184:30;6181:50;;;6227:1;6224;6217:12;6181:50;6250:22;;6303:4;6295:13;;6291:27;-1:-1:-1;6281:55:1;;6332:1;6329;6322:12;6281:55;6355:73;6420:7;6415:2;6402:16;6397:2;6393;6389:11;6355:73;:::i;:::-;6345:83;5984:450;-1:-1:-1;;;;5984:450:1:o;6439:180::-;6498:6;6551:2;6539:9;6530:7;6526:23;6522:32;6519:52;;;6567:1;6564;6557:12;6519:52;-1:-1:-1;6590:23:1;;6439:180;-1:-1:-1;6439:180:1:o;6624:435::-;6677:3;6715:5;6709:12;6742:6;6737:3;6730:19;6768:4;6797:2;6792:3;6788:12;6781:19;;6834:2;6827:5;6823:14;6855:1;6865:169;6879:6;6876:1;6873:13;6865:169;;;6940:13;;6928:26;;6974:12;;;;7009:15;;;;6901:1;6894:9;6865:169;;;-1:-1:-1;7050:3:1;;6624:435;-1:-1:-1;;;;;6624:435:1:o;7064:471::-;7105:3;7143:5;7137:12;7170:6;7165:3;7158:19;7195:1;7205:162;7219:6;7216:1;7213:13;7205:162;;;7281:4;7337:13;;;7333:22;;7327:29;7309:11;;;7305:20;;7298:59;7234:12;7205:162;;;7385:6;7382:1;7379:13;7376:87;;;7451:1;7444:4;7435:6;7430:3;7426:16;7422:27;7415:38;7376:87;-1:-1:-1;7517:2:1;7496:15;-1:-1:-1;;7492:29:1;7483:39;;;;7524:4;7479:50;;7064:471;-1:-1:-1;;7064:471:1:o;7748:826::-;-1:-1:-1;;;;;8145:15:1;;;8127:34;;8197:15;;8192:2;8177:18;;8170:43;8107:3;8244:2;8229:18;;8222:31;;;8070:4;;8276:57;;8313:19;;8305:6;8276:57;:::i;:::-;8381:9;8373:6;8369:22;8364:2;8353:9;8349:18;8342:50;8415:44;8452:6;8444;8415:44;:::i;:::-;8401:58;;8508:9;8500:6;8496:22;8490:3;8479:9;8475:19;8468:51;8536:32;8561:6;8553;8536:32;:::i;:::-;8528:40;7748:826;-1:-1:-1;;;;;;;;7748:826:1:o;8579:560::-;-1:-1:-1;;;;;8876:15:1;;;8858:34;;8928:15;;8923:2;8908:18;;8901:43;8975:2;8960:18;;8953:34;;;9018:2;9003:18;;8996:34;;;8838:3;9061;9046:19;;9039:32;;;8801:4;;9088:45;;9113:19;;9105:6;9088:45;:::i;:::-;9080:53;8579:560;-1:-1:-1;;;;;;;8579:560:1:o;9144:261::-;9323:2;9312:9;9305:21;9286:4;9343:56;9395:2;9384:9;9380:18;9372:6;9343:56;:::i;9410:465::-;9667:2;9656:9;9649:21;9630:4;9693:56;9745:2;9734:9;9730:18;9722:6;9693:56;:::i;:::-;9797:9;9789:6;9785:22;9780:2;9769:9;9765:18;9758:50;9825:44;9862:6;9854;9825:44;:::i;:::-;9817:52;9410:465;-1:-1:-1;;;;;9410:465:1:o;10072:219::-;10221:2;10210:9;10203:21;10184:4;10241:44;10281:2;10270:9;10266:18;10258:6;10241:44;:::i;10717:404::-;10919:2;10901:21;;;10958:2;10938:18;;;10931:30;10997:34;10992:2;10977:18;;10970:62;-1:-1:-1;;;11063:2:1;11048:18;;11041:38;11111:3;11096:19;;10717:404::o;13058:401::-;13260:2;13242:21;;;13299:2;13279:18;;;13272:30;13338:34;13333:2;13318:18;;13311:62;-1:-1:-1;;;13404:2:1;13389:18;;13382:35;13449:3;13434:19;;13058:401::o;13883:406::-;14085:2;14067:21;;;14124:2;14104:18;;;14097:30;14163:34;14158:2;14143:18;;14136:62;-1:-1:-1;;;14229:2:1;14214:18;;14207:40;14279:3;14264:19;;13883:406::o;14294:356::-;14496:2;14478:21;;;14515:18;;;14508:30;14574:34;14569:2;14554:18;;14547:62;14641:2;14626:18;;14294:356::o;18111:183::-;18171:4;18204:18;18196:6;18193:30;18190:56;;;18226:18;;:::i;:::-;-1:-1:-1;18271:1:1;18267:14;18283:4;18263:25;;18111:183::o;18299:128::-;18339:3;18370:1;18366:6;18363:1;18360:13;18357:39;;;18376:18;;:::i;:::-;-1:-1:-1;18412:9:1;;18299:128::o;18432:168::-;18472:7;18538:1;18534;18530:6;18526:14;18523:1;18520:21;18515:1;18508:9;18501:17;18497:45;18494:71;;;18545:18;;:::i;:::-;-1:-1:-1;18585:9:1;;18432:168::o;18605:380::-;18684:1;18680:12;;;;18727;;;18748:61;;18802:4;18794:6;18790:17;18780:27;;18748:61;18855:2;18847:6;18844:14;18824:18;18821:38;18818:161;;;18901:10;18896:3;18892:20;18889:1;18882:31;18936:4;18933:1;18926:15;18964:4;18961:1;18954:15;18818:161;;18605:380;;;:::o;18990:249::-;19100:2;19081:13;;-1:-1:-1;;19077:27:1;19065:40;;19135:18;19120:34;;19156:22;;;19117:62;19114:88;;;19182:18;;:::i;:::-;19218:2;19211:22;-1:-1:-1;;18990:249:1:o;19244:135::-;19283:3;-1:-1:-1;;19304:17:1;;19301:43;;;19324:18;;:::i;:::-;-1:-1:-1;19371:1:1;19360:13;;19244:135::o;19384:127::-;19445:10;19440:3;19436:20;19433:1;19426:31;19476:4;19473:1;19466:15;19500:4;19497:1;19490:15;19516:127;19577:10;19572:3;19568:20;19565:1;19558:31;19608:4;19605:1;19598:15;19632:4;19629:1;19622:15;19648:127;19709:10;19704:3;19700:20;19697:1;19690:31;19740:4;19737:1;19730:15;19764:4;19761:1;19754:15;19780:179;19815:3;19857:1;19839:16;19836:23;19833:120;;;19903:1;19900;19897;19882:23;-1:-1:-1;19940:1:1;19934:8;19929:3;19925:18;19833:120;19780:179;:::o;19964:671::-;20003:3;20045:4;20027:16;20024:26;20021:39;;;19964:671;:::o;20021:39::-;20087:2;20081:9;-1:-1:-1;;20152:16:1;20148:25;;20145:1;20081:9;20124:50;20203:4;20197:11;20227:16;20262:18;20333:2;20326:4;20318:6;20314:17;20311:25;20306:2;20298:6;20295:14;20292:45;20289:58;;;20340:5;;;;;19964:671;:::o;20289:58::-;20377:6;20371:4;20367:17;20356:28;;20413:3;20407:10;20440:2;20432:6;20429:14;20426:27;;;20446:5;;;;;;19964:671;:::o;20426:27::-;20530:2;20511:16;20505:4;20501:27;20497:36;20490:4;20481:6;20476:3;20472:16;20468:27;20465:69;20462:82;;;20537:5;;;;;;19964:671;:::o;20462:82::-;20553:57;20604:4;20595:6;20587;20583:19;20579:30;20573:4;20553:57;:::i;:::-;-1:-1:-1;20626:3:1;;19964:671;-1:-1:-1;;;;;19964:671:1:o;20640:131::-;-1:-1:-1;;;;;;20714:32:1;;20704:43;;20694:71;;20761:1;20758;20751:12

Swarm Source

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