ETH Price: $3,087.77 (-0.02%)
Gas: 4 Gwei

Token

ABSOLUTELY DO NOT MINT (IDIOT)
 

Overview

Max Total Supply

3,743 IDIOT

Holders

1,272

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
whoops.eth
Balance
15 IDIOT
0xa5f09c6f40aa9b8f7ad70d64c42e20df1ad1f0f4
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:
DONOTMINT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-13
*/

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

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

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

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

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

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

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

    bool private _paused;

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

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

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

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

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

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

/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}

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

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

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

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

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

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

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

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

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

/**
 * 
 * If you mint this project, ur dumb <3
 * 
 * twitter.com/DoNOTMint
 * 
 */

contract DONOTMINT is
  ERC721Burnable,
  ERC721Enumerable,
  ERC721Pausable,
  Ownable
{
  using SafeMath for uint256;
  uint256 public constant MAX_IDIOTS = 8888;
  uint256 public constant PRICE = 0.08 ether;
  string public baseTokenURI = "ur_dumb://";
  
  event CreateIDIOT(uint256 indexed id);
  constructor()
  ERC721(
    "ABSOLUTELY DO NOT MINT",
    "IDIOT"
  ) {}

  function ABSOLUTELY_DO_NOT_CALL_THIS_MINT_FUNCTION_YOU_IDIOT_UR_DUMB(uint256 count)
  public
  payable {
    uint256 currentTotal = totalSupply();
    require(count > 0,
      "Count must be greater than 0");
    require(currentTotal.add(count) <= MAX_IDIOTS,
      "Requested amount exceeds what is available!");
    require(currentTotal <= MAX_IDIOTS,
      "Not enough idiots available.");
    require(msg.value >= PRICE.mul(count),
      "Incorrect price.");

    for (uint i = 0; i < count; i++) {
      uint id = totalSupply();
      _safeMint(msg.sender, id);
      emit CreateIDIOT(id);
    }
  }

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

  function setBaseURI(string memory baseURI)
  public
  onlyOwner {
    baseTokenURI = baseURI;
  }
  
  function pause()
  public
  onlyOwner {
    _pause();
  }

  function unpause()
  public
  onlyOwner {
    _unpause();
  }

  function withdrawAll()
  public
  payable
  onlyOwner {
    _widthdraw(owner(), address(this).balance);
  }

  function _widthdraw(address _address, uint256 _amount)
  private {
    (bool success, ) = _address.call{value: _amount}("");
    require(success, "Recovery failed.");
  }

  function _beforeTokenTransfer(
    address from,
    address to,
    uint256 tokenId
  )
  internal
  virtual
  override(ERC721, ERC721Enumerable, ERC721Pausable) {
    super._beforeTokenTransfer(from, to, tokenId);
  }

  function supportsInterface(bytes4 interfaceId)
  public
  view
  virtual
  override(ERC721, ERC721Enumerable)
  returns (bool) {
    return super.supportsInterface(interfaceId);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"CreateIDIOT","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"ABSOLUTELY_DO_NOT_CALL_THIS_MINT_FUNCTION_YOU_IDIOT_UR_DUMB","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"MAX_IDIOTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60c0604052600a60808190526975725f64756d623a2f2f60b01b60a09081526200002d91600b91906200012c565b503480156200003b57600080fd5b50604080518082018252601681527f4142534f4c5554454c5920444f204e4f54204d494e540000000000000000000060208083019182528351808501909452600584526412511253d560da1b9084015281519192916200009e916000916200012c565b508051620000b49060019060208401906200012c565b5050600a805460ff1916905550620000cc33620000d2565b6200020f565b600a80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013a90620001d2565b90600052602060002090601f0160209004810192826200015e5760008555620001a9565b82601f106200017957805160ff1916838001178555620001a9565b82800160010185558215620001a9579182015b82811115620001a95782518255916020019190600101906200018c565b50620001b7929150620001bb565b5090565b5b80821115620001b75760008155600101620001bc565b600181811c90821680620001e757607f821691505b602082108114156200020957634e487b7160e01b600052602260045260246000fd5b50919050565b61240c806200021f6000396000f3fe6080604052600436106101c25760003560e01c80635c975abb116100f75780638da5cb5b11610095578063c87b56dd11610064578063c87b56dd146104b3578063d547cfb7146104d3578063e985e9c5146104e8578063f2fde38b1461053157600080fd5b80638da5cb5b1461043b57806395d89b411461045e578063a22cb46514610473578063b88d4fde1461049357600080fd5b8063715018a6116100d1578063715018a6146103ed5780638456cb5914610402578063853828b6146104175780638d859f3e1461041f57600080fd5b80635c975abb146103955780636352211e146103ad57806370a08231146103cd57600080fd5b80632c1c48a31161016457806342842e0e1161013e57806342842e0e1461031557806342966c68146103355780634f6ccce71461035557806355f804b31461037557600080fd5b80632c1c48a3146102cd5780632f745c59146102e05780633f4ba83a1461030057600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd146102785780631d96c9c61461029757806323b872dd146102ad57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e236600461203b565b610551565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50610211610562565b6040516101f3919061216f565b34801561022a57600080fd5b5061023e6102393660046120be565b6105f4565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004612011565b61068e565b005b34801561028457600080fd5b506008545b6040519081526020016101f3565b3480156102a357600080fd5b506102896122b881565b3480156102b957600080fd5b506102766102c8366004611f1d565b6107a4565b6102766102db3660046120be565b6107d6565b3480156102ec57600080fd5b506102896102fb366004612011565b6109a8565b34801561030c57600080fd5b50610276610a3e565b34801561032157600080fd5b50610276610330366004611f1d565b610a78565b34801561034157600080fd5b506102766103503660046120be565b610a93565b34801561036157600080fd5b506102896103703660046120be565b610b0d565b34801561038157600080fd5b50610276610390366004612075565b610ba0565b3480156103a157600080fd5b50600a5460ff166101e7565b3480156103b957600080fd5b5061023e6103c83660046120be565b610be7565b3480156103d957600080fd5b506102896103e8366004611ecf565b610c5e565b3480156103f957600080fd5b50610276610ce5565b34801561040e57600080fd5b50610276610d1f565b610276610d57565b34801561042b57600080fd5b5061028967011c37937e08000081565b34801561044757600080fd5b50600a5461010090046001600160a01b031661023e565b34801561046a57600080fd5b50610211610da2565b34801561047f57600080fd5b5061027661048e366004611fd5565b610db1565b34801561049f57600080fd5b506102766104ae366004611f59565b610e76565b3480156104bf57600080fd5b506102116104ce3660046120be565b610eae565b3480156104df57600080fd5b50610211610f89565b3480156104f457600080fd5b506101e7610503366004611eea565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561053d57600080fd5b5061027661054c366004611ecf565b611017565b600061055c826110b5565b92915050565b606060008054610571906122e8565b80601f016020809104026020016040519081016040528092919081815260200182805461059d906122e8565b80156105ea5780601f106105bf576101008083540402835291602001916105ea565b820191906000526020600020905b8154815290600101906020018083116105cd57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106725760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061069982610be7565b9050806001600160a01b0316836001600160a01b031614156107075760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610669565b336001600160a01b038216148061072357506107238133610503565b6107955760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610669565b61079f83836110da565b505050565b6107af335b82611148565b6107cb5760405162461bcd60e51b815260040161066990612209565b61079f83838361123f565b60006107e160085490565b9050600082116108335760405162461bcd60e51b815260206004820152601c60248201527f436f756e74206d7573742062652067726561746572207468616e2030000000006044820152606401610669565b6122b861084082846113ea565b11156108a25760405162461bcd60e51b815260206004820152602b60248201527f52657175657374656420616d6f756e742065786365656473207768617420697360448201526a20617661696c61626c652160a81b6064820152608401610669565b6122b88111156108f45760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420656e6f756768206964696f747320617661696c61626c652e000000006044820152606401610669565b61090667011c37937e080000836113f6565b3410156109485760405162461bcd60e51b815260206004820152601060248201526f24b731b7b93932b1ba10383934b1b29760811b6044820152606401610669565b60005b8281101561079f57600061095e60085490565b905061096a3382611402565b60405181907f94db4ef49c6cccc7ddf4c451e99a1af95d1c2a0448a13534375206ed9161313c90600090a250806109a081612323565b91505061094b565b60006109b383610c5e565b8210610a155760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610669565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03610100909104163314610a6e5760405162461bcd60e51b8152600401610669906121d4565b610a7661141c565b565b61079f83838360405180602001604052806000815250610e76565b610a9c336107a9565b610b015760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610669565b610b0a816114af565b50565b6000610b1860085490565b8210610b7b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610669565b60088281548110610b8e57610b8e612394565b90600052602060002001549050919050565b600a546001600160a01b03610100909104163314610bd05760405162461bcd60e51b8152600401610669906121d4565b8051610be390600b906020840190611da4565b5050565b6000818152600260205260408120546001600160a01b03168061055c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610669565b60006001600160a01b038216610cc95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610669565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03610100909104163314610d155760405162461bcd60e51b8152600401610669906121d4565b610a766000611556565b600a546001600160a01b03610100909104163314610d4f5760405162461bcd60e51b8152600401610669906121d4565b610a766115b0565b600a546001600160a01b03610100909104163314610d875760405162461bcd60e51b8152600401610669906121d4565b600a54610a769061010090046001600160a01b03164761162b565b606060018054610571906122e8565b6001600160a01b038216331415610e0a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610669565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e803383611148565b610e9c5760405162461bcd60e51b815260040161066990612209565b610ea8848484846116c1565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f2d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610669565b6000610f376116f4565b90506000815111610f575760405180602001604052806000815250610f82565b80610f6184611703565b604051602001610f72929190612103565b6040516020818303038152906040525b9392505050565b600b8054610f96906122e8565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc2906122e8565b801561100f5780601f10610fe45761010080835404028352916020019161100f565b820191906000526020600020905b815481529060010190602001808311610ff257829003601f168201915b505050505081565b600a546001600160a01b036101009091041633146110475760405162461bcd60e51b8152600401610669906121d4565b6001600160a01b0381166110ac5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610669565b610b0a81611556565b60006001600160e01b0319821663780e9d6360e01b148061055c575061055c82611801565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061110f82610be7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111c15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610669565b60006111cc83610be7565b9050806001600160a01b0316846001600160a01b031614806112075750836001600160a01b03166111fc846105f4565b6001600160a01b0316145b8061123757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661125282610be7565b6001600160a01b0316146112ba5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610669565b6001600160a01b03821661131c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610669565b611327838383611851565b6113326000826110da565b6001600160a01b038316600090815260036020526040812080546001929061135b9084906122a5565b90915550506001600160a01b038216600090815260036020526040812080546001929061138990849061225a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000610f82828461225a565b6000610f828284612286565b610be382826040518060200160405280600081525061185c565b600a5460ff166114655760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610669565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60006114ba82610be7565b90506114c881600084611851565b6114d36000836110da565b6001600160a01b03811660009081526003602052604081208054600192906114fc9084906122a5565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff16156115f65760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610669565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586114923390565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611678576040519150601f19603f3d011682016040523d82523d6000602084013e61167d565b606091505b505090508061079f5760405162461bcd60e51b815260206004820152601060248201526f2932b1b7bb32b93c903330b4b632b21760811b6044820152606401610669565b6116cc84848461123f565b6116d88484848461188f565b610ea85760405162461bcd60e51b815260040161066990612182565b6060600b8054610571906122e8565b6060816117275750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611751578061173b81612323565b915061174a9050600a83612272565b915061172b565b60008167ffffffffffffffff81111561176c5761176c6123aa565b6040519080825280601f01601f191660200182016040528015611796576020820181803683370190505b5090505b8415611237576117ab6001836122a5565b91506117b8600a8661233e565b6117c390603061225a565b60f81b8183815181106117d8576117d8612394565b60200101906001600160f81b031916908160001a9053506117fa600a86612272565b945061179a565b60006001600160e01b031982166380ac58cd60e01b148061183257506001600160e01b03198216635b5e139f60e01b145b8061055c57506301ffc9a760e01b6001600160e01b031983161461055c565b61079f83838361199c565b6118668383611a0e565b611873600084848461188f565b61079f5760405162461bcd60e51b815260040161066990612182565b60006001600160a01b0384163b1561199157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118d3903390899088908890600401612132565b602060405180830381600087803b1580156118ed57600080fd5b505af192505050801561191d575060408051601f3d908101601f1916820190925261191a91810190612058565b60015b611977573d80801561194b576040519150601f19603f3d011682016040523d82523d6000602084013e611950565b606091505b50805161196f5760405162461bcd60e51b815260040161066990612182565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611237565b506001949350505050565b6119a7838383611b5c565b600a5460ff161561079f5760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b6064820152608401610669565b6001600160a01b038216611a645760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610669565b6000818152600260205260409020546001600160a01b031615611ac95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610669565b611ad560008383611851565b6001600160a01b0382166000908152600360205260408120805460019290611afe90849061225a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b038316611bb757611bb281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611bda565b816001600160a01b0316836001600160a01b031614611bda57611bda8382611c14565b6001600160a01b038216611bf15761079f81611cb1565b826001600160a01b0316826001600160a01b03161461079f5761079f8282611d60565b60006001611c2184610c5e565b611c2b91906122a5565b600083815260076020526040902054909150808214611c7e576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611cc3906001906122a5565b60008381526009602052604081205460088054939450909284908110611ceb57611ceb612394565b906000526020600020015490508060088381548110611d0c57611d0c612394565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611d4457611d4461237e565b6001900381819060005260206000200160009055905550505050565b6000611d6b83610c5e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611db0906122e8565b90600052602060002090601f016020900481019282611dd25760008555611e18565b82601f10611deb57805160ff1916838001178555611e18565b82800160010185558215611e18579182015b82811115611e18578251825591602001919060010190611dfd565b50611e24929150611e28565b5090565b5b80821115611e245760008155600101611e29565b600067ffffffffffffffff80841115611e5857611e586123aa565b604051601f8501601f19908116603f01168101908282118183101715611e8057611e806123aa565b81604052809350858152868686011115611e9957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611eca57600080fd5b919050565b600060208284031215611ee157600080fd5b610f8282611eb3565b60008060408385031215611efd57600080fd5b611f0683611eb3565b9150611f1460208401611eb3565b90509250929050565b600080600060608486031215611f3257600080fd5b611f3b84611eb3565b9250611f4960208501611eb3565b9150604084013590509250925092565b60008060008060808587031215611f6f57600080fd5b611f7885611eb3565b9350611f8660208601611eb3565b925060408501359150606085013567ffffffffffffffff811115611fa957600080fd5b8501601f81018713611fba57600080fd5b611fc987823560208401611e3d565b91505092959194509250565b60008060408385031215611fe857600080fd5b611ff183611eb3565b91506020830135801515811461200657600080fd5b809150509250929050565b6000806040838503121561202457600080fd5b61202d83611eb3565b946020939093013593505050565b60006020828403121561204d57600080fd5b8135610f82816123c0565b60006020828403121561206a57600080fd5b8151610f82816123c0565b60006020828403121561208757600080fd5b813567ffffffffffffffff81111561209e57600080fd5b8201601f810184136120af57600080fd5b61123784823560208401611e3d565b6000602082840312156120d057600080fd5b5035919050565b600081518084526120ef8160208601602086016122bc565b601f01601f19169290920160200192915050565b600083516121158184602088016122bc565b8351908301906121298183602088016122bc565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612165908301846120d7565b9695505050505050565b602081526000610f8260208301846120d7565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561226d5761226d612352565b500190565b60008261228157612281612368565b500490565b60008160001904831182151516156122a0576122a0612352565b500290565b6000828210156122b7576122b7612352565b500390565b60005b838110156122d75781810151838201526020016122bf565b83811115610ea85750506000910152565b600181811c908216806122fc57607f821691505b6020821081141561231d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561233757612337612352565b5060010190565b60008261234d5761234d612368565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b0a57600080fdfea2646970667358221220b0856b4bd1526d97043a1d967df6b820a2569dd8eb71f2ae0d84fb38a3a6288f64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80635c975abb116100f75780638da5cb5b11610095578063c87b56dd11610064578063c87b56dd146104b3578063d547cfb7146104d3578063e985e9c5146104e8578063f2fde38b1461053157600080fd5b80638da5cb5b1461043b57806395d89b411461045e578063a22cb46514610473578063b88d4fde1461049357600080fd5b8063715018a6116100d1578063715018a6146103ed5780638456cb5914610402578063853828b6146104175780638d859f3e1461041f57600080fd5b80635c975abb146103955780636352211e146103ad57806370a08231146103cd57600080fd5b80632c1c48a31161016457806342842e0e1161013e57806342842e0e1461031557806342966c68146103355780634f6ccce71461035557806355f804b31461037557600080fd5b80632c1c48a3146102cd5780632f745c59146102e05780633f4ba83a1461030057600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd146102785780631d96c9c61461029757806323b872dd146102ad57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e236600461203b565b610551565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50610211610562565b6040516101f3919061216f565b34801561022a57600080fd5b5061023e6102393660046120be565b6105f4565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004612011565b61068e565b005b34801561028457600080fd5b506008545b6040519081526020016101f3565b3480156102a357600080fd5b506102896122b881565b3480156102b957600080fd5b506102766102c8366004611f1d565b6107a4565b6102766102db3660046120be565b6107d6565b3480156102ec57600080fd5b506102896102fb366004612011565b6109a8565b34801561030c57600080fd5b50610276610a3e565b34801561032157600080fd5b50610276610330366004611f1d565b610a78565b34801561034157600080fd5b506102766103503660046120be565b610a93565b34801561036157600080fd5b506102896103703660046120be565b610b0d565b34801561038157600080fd5b50610276610390366004612075565b610ba0565b3480156103a157600080fd5b50600a5460ff166101e7565b3480156103b957600080fd5b5061023e6103c83660046120be565b610be7565b3480156103d957600080fd5b506102896103e8366004611ecf565b610c5e565b3480156103f957600080fd5b50610276610ce5565b34801561040e57600080fd5b50610276610d1f565b610276610d57565b34801561042b57600080fd5b5061028967011c37937e08000081565b34801561044757600080fd5b50600a5461010090046001600160a01b031661023e565b34801561046a57600080fd5b50610211610da2565b34801561047f57600080fd5b5061027661048e366004611fd5565b610db1565b34801561049f57600080fd5b506102766104ae366004611f59565b610e76565b3480156104bf57600080fd5b506102116104ce3660046120be565b610eae565b3480156104df57600080fd5b50610211610f89565b3480156104f457600080fd5b506101e7610503366004611eea565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561053d57600080fd5b5061027661054c366004611ecf565b611017565b600061055c826110b5565b92915050565b606060008054610571906122e8565b80601f016020809104026020016040519081016040528092919081815260200182805461059d906122e8565b80156105ea5780601f106105bf576101008083540402835291602001916105ea565b820191906000526020600020905b8154815290600101906020018083116105cd57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106725760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061069982610be7565b9050806001600160a01b0316836001600160a01b031614156107075760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610669565b336001600160a01b038216148061072357506107238133610503565b6107955760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610669565b61079f83836110da565b505050565b6107af335b82611148565b6107cb5760405162461bcd60e51b815260040161066990612209565b61079f83838361123f565b60006107e160085490565b9050600082116108335760405162461bcd60e51b815260206004820152601c60248201527f436f756e74206d7573742062652067726561746572207468616e2030000000006044820152606401610669565b6122b861084082846113ea565b11156108a25760405162461bcd60e51b815260206004820152602b60248201527f52657175657374656420616d6f756e742065786365656473207768617420697360448201526a20617661696c61626c652160a81b6064820152608401610669565b6122b88111156108f45760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420656e6f756768206964696f747320617661696c61626c652e000000006044820152606401610669565b61090667011c37937e080000836113f6565b3410156109485760405162461bcd60e51b815260206004820152601060248201526f24b731b7b93932b1ba10383934b1b29760811b6044820152606401610669565b60005b8281101561079f57600061095e60085490565b905061096a3382611402565b60405181907f94db4ef49c6cccc7ddf4c451e99a1af95d1c2a0448a13534375206ed9161313c90600090a250806109a081612323565b91505061094b565b60006109b383610c5e565b8210610a155760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610669565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03610100909104163314610a6e5760405162461bcd60e51b8152600401610669906121d4565b610a7661141c565b565b61079f83838360405180602001604052806000815250610e76565b610a9c336107a9565b610b015760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610669565b610b0a816114af565b50565b6000610b1860085490565b8210610b7b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610669565b60088281548110610b8e57610b8e612394565b90600052602060002001549050919050565b600a546001600160a01b03610100909104163314610bd05760405162461bcd60e51b8152600401610669906121d4565b8051610be390600b906020840190611da4565b5050565b6000818152600260205260408120546001600160a01b03168061055c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610669565b60006001600160a01b038216610cc95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610669565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03610100909104163314610d155760405162461bcd60e51b8152600401610669906121d4565b610a766000611556565b600a546001600160a01b03610100909104163314610d4f5760405162461bcd60e51b8152600401610669906121d4565b610a766115b0565b600a546001600160a01b03610100909104163314610d875760405162461bcd60e51b8152600401610669906121d4565b600a54610a769061010090046001600160a01b03164761162b565b606060018054610571906122e8565b6001600160a01b038216331415610e0a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610669565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e803383611148565b610e9c5760405162461bcd60e51b815260040161066990612209565b610ea8848484846116c1565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f2d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610669565b6000610f376116f4565b90506000815111610f575760405180602001604052806000815250610f82565b80610f6184611703565b604051602001610f72929190612103565b6040516020818303038152906040525b9392505050565b600b8054610f96906122e8565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc2906122e8565b801561100f5780601f10610fe45761010080835404028352916020019161100f565b820191906000526020600020905b815481529060010190602001808311610ff257829003601f168201915b505050505081565b600a546001600160a01b036101009091041633146110475760405162461bcd60e51b8152600401610669906121d4565b6001600160a01b0381166110ac5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610669565b610b0a81611556565b60006001600160e01b0319821663780e9d6360e01b148061055c575061055c82611801565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061110f82610be7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111c15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610669565b60006111cc83610be7565b9050806001600160a01b0316846001600160a01b031614806112075750836001600160a01b03166111fc846105f4565b6001600160a01b0316145b8061123757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661125282610be7565b6001600160a01b0316146112ba5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610669565b6001600160a01b03821661131c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610669565b611327838383611851565b6113326000826110da565b6001600160a01b038316600090815260036020526040812080546001929061135b9084906122a5565b90915550506001600160a01b038216600090815260036020526040812080546001929061138990849061225a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000610f82828461225a565b6000610f828284612286565b610be382826040518060200160405280600081525061185c565b600a5460ff166114655760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610669565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60006114ba82610be7565b90506114c881600084611851565b6114d36000836110da565b6001600160a01b03811660009081526003602052604081208054600192906114fc9084906122a5565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff16156115f65760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610669565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586114923390565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611678576040519150601f19603f3d011682016040523d82523d6000602084013e61167d565b606091505b505090508061079f5760405162461bcd60e51b815260206004820152601060248201526f2932b1b7bb32b93c903330b4b632b21760811b6044820152606401610669565b6116cc84848461123f565b6116d88484848461188f565b610ea85760405162461bcd60e51b815260040161066990612182565b6060600b8054610571906122e8565b6060816117275750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611751578061173b81612323565b915061174a9050600a83612272565b915061172b565b60008167ffffffffffffffff81111561176c5761176c6123aa565b6040519080825280601f01601f191660200182016040528015611796576020820181803683370190505b5090505b8415611237576117ab6001836122a5565b91506117b8600a8661233e565b6117c390603061225a565b60f81b8183815181106117d8576117d8612394565b60200101906001600160f81b031916908160001a9053506117fa600a86612272565b945061179a565b60006001600160e01b031982166380ac58cd60e01b148061183257506001600160e01b03198216635b5e139f60e01b145b8061055c57506301ffc9a760e01b6001600160e01b031983161461055c565b61079f83838361199c565b6118668383611a0e565b611873600084848461188f565b61079f5760405162461bcd60e51b815260040161066990612182565b60006001600160a01b0384163b1561199157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118d3903390899088908890600401612132565b602060405180830381600087803b1580156118ed57600080fd5b505af192505050801561191d575060408051601f3d908101601f1916820190925261191a91810190612058565b60015b611977573d80801561194b576040519150601f19603f3d011682016040523d82523d6000602084013e611950565b606091505b50805161196f5760405162461bcd60e51b815260040161066990612182565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611237565b506001949350505050565b6119a7838383611b5c565b600a5460ff161561079f5760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b6064820152608401610669565b6001600160a01b038216611a645760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610669565b6000818152600260205260409020546001600160a01b031615611ac95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610669565b611ad560008383611851565b6001600160a01b0382166000908152600360205260408120805460019290611afe90849061225a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b038316611bb757611bb281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611bda565b816001600160a01b0316836001600160a01b031614611bda57611bda8382611c14565b6001600160a01b038216611bf15761079f81611cb1565b826001600160a01b0316826001600160a01b03161461079f5761079f8282611d60565b60006001611c2184610c5e565b611c2b91906122a5565b600083815260076020526040902054909150808214611c7e576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611cc3906001906122a5565b60008381526009602052604081205460088054939450909284908110611ceb57611ceb612394565b906000526020600020015490508060088381548110611d0c57611d0c612394565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611d4457611d4461237e565b6001900381819060005260206000200160009055905550505050565b6000611d6b83610c5e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611db0906122e8565b90600052602060002090601f016020900481019282611dd25760008555611e18565b82601f10611deb57805160ff1916838001178555611e18565b82800160010185558215611e18579182015b82811115611e18578251825591602001919060010190611dfd565b50611e24929150611e28565b5090565b5b80821115611e245760008155600101611e29565b600067ffffffffffffffff80841115611e5857611e586123aa565b604051601f8501601f19908116603f01168101908282118183101715611e8057611e806123aa565b81604052809350858152868686011115611e9957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611eca57600080fd5b919050565b600060208284031215611ee157600080fd5b610f8282611eb3565b60008060408385031215611efd57600080fd5b611f0683611eb3565b9150611f1460208401611eb3565b90509250929050565b600080600060608486031215611f3257600080fd5b611f3b84611eb3565b9250611f4960208501611eb3565b9150604084013590509250925092565b60008060008060808587031215611f6f57600080fd5b611f7885611eb3565b9350611f8660208601611eb3565b925060408501359150606085013567ffffffffffffffff811115611fa957600080fd5b8501601f81018713611fba57600080fd5b611fc987823560208401611e3d565b91505092959194509250565b60008060408385031215611fe857600080fd5b611ff183611eb3565b91506020830135801515811461200657600080fd5b809150509250929050565b6000806040838503121561202457600080fd5b61202d83611eb3565b946020939093013593505050565b60006020828403121561204d57600080fd5b8135610f82816123c0565b60006020828403121561206a57600080fd5b8151610f82816123c0565b60006020828403121561208757600080fd5b813567ffffffffffffffff81111561209e57600080fd5b8201601f810184136120af57600080fd5b61123784823560208401611e3d565b6000602082840312156120d057600080fd5b5035919050565b600081518084526120ef8160208601602086016122bc565b601f01601f19169290920160200192915050565b600083516121158184602088016122bc565b8351908301906121298183602088016122bc565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612165908301846120d7565b9695505050505050565b602081526000610f8260208301846120d7565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561226d5761226d612352565b500190565b60008261228157612281612368565b500490565b60008160001904831182151516156122a0576122a0612352565b500290565b6000828210156122b7576122b7612352565b500390565b60005b838110156122d75781810151838201526020016122bf565b83811115610ea85750506000910152565b600181811c908216806122fc57607f821691505b6020821081141561231d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561233757612337612352565b5060010190565b60008261234d5761234d612368565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b0a57600080fdfea2646970667358221220b0856b4bd1526d97043a1d967df6b820a2569dd8eb71f2ae0d84fb38a3a6288f64736f6c63430008070033

Deployed Bytecode Sourcemap

52481:2122:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54412:188;;;;;;;;;;-1:-1:-1;54412:188:0;;;;;:::i;:::-;;:::i;:::-;;;5856:14:1;;5849:22;5831:41;;5819:2;5804:18;54412:188:0;;;;;;;;20786:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22345:221::-;;;;;;;;;;-1:-1:-1;22345:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5154:32:1;;;5136:51;;5124:2;5109:18;22345:221:0;4990:203:1;21868:411:0;;;;;;;;;;-1:-1:-1;21868:411:0;;;;;:::i;:::-;;:::i;:::-;;34889:113;;;;;;;;;;-1:-1:-1;34977:10:0;:17;34889:113;;;16799:25:1;;;16787:2;16772:18;34889:113:0;16653:177:1;52610:41:0;;;;;;;;;;;;52647:4;52610:41;;23235:339;;;;;;;;;;-1:-1:-1;23235:339:0;;;;;:::i;:::-;;:::i;52877:622::-;;;;;;:::i;:::-;;:::i;34557:256::-;;;;;;;;;;-1:-1:-1;34557:256:0;;;;;:::i;:::-;;:::i;53809:65::-;;;;;;;;;;;;;:::i;23645:185::-;;;;;;;;;;-1:-1:-1;23645:185:0;;;;;:::i;:::-;;:::i;32307:245::-;;;;;;;;;;-1:-1:-1;32307:245:0;;;;;:::i;:::-;;:::i;35079:233::-;;;;;;;;;;-1:-1:-1;35079:233:0;;;;;:::i;:::-;;:::i;53633:101::-;;;;;;;;;;-1:-1:-1;53633:101:0;;;;;:::i;:::-;;:::i;41380:86::-;;;;;;;;;;-1:-1:-1;41451:7:0;;;;41380:86;;20480:239;;;;;;;;;;-1:-1:-1;20480:239:0;;;;;:::i;:::-;;:::i;20210:208::-;;;;;;;;;;-1:-1:-1;20210:208:0;;;;;:::i;:::-;;:::i;44894:94::-;;;;;;;;;;;;;:::i;53742:61::-;;;;;;;;;;;;;:::i;53880:112::-;;;:::i;52656:42::-;;;;;;;;;;;;52688:10;52656:42;;44243:87;;;;;;;;;;-1:-1:-1;44316:6:0;;;;;-1:-1:-1;;;;;44316:6:0;44243:87;;20955:104;;;;;;;;;;;;;:::i;22638:295::-;;;;;;;;;;-1:-1:-1;22638:295:0;;;;;:::i;:::-;;:::i;23901:328::-;;;;;;;;;;-1:-1:-1;23901:328:0;;;;;:::i;:::-;;:::i;21130:334::-;;;;;;;;;;-1:-1:-1;21130:334:0;;;;;:::i;:::-;;:::i;52703:41::-;;;;;;;;;;;;;:::i;23004:164::-;;;;;;;;;;-1:-1:-1;23004:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23125:25:0;;;23101:4;23125:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23004:164;45143:192;;;;;;;;;;-1:-1:-1;45143:192:0;;;;;:::i;:::-;;:::i;54412:188::-;54538:4;54558:36;54582:11;54558:23;:36::i;:::-;54551:43;54412:188;-1:-1:-1;;54412:188:0:o;20786:100::-;20840:13;20873:5;20866:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20786:100;:::o;22345:221::-;22421:7;25828:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25828:16:0;22441:73;;;;-1:-1:-1;;;22441:73:0;;12546:2:1;22441:73:0;;;12528:21:1;12585:2;12565:18;;;12558:30;12624:34;12604:18;;;12597:62;-1:-1:-1;;;12675:18:1;;;12668:42;12727:19;;22441:73:0;;;;;;;;;-1:-1:-1;22534:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22534:24:0;;22345:221::o;21868:411::-;21949:13;21965:23;21980:7;21965:14;:23::i;:::-;21949:39;;22013:5;-1:-1:-1;;;;;22007:11:0;:2;-1:-1:-1;;;;;22007:11:0;;;21999:57;;;;-1:-1:-1;;;21999:57:0;;14146:2:1;21999:57:0;;;14128:21:1;14185:2;14165:18;;;14158:30;14224:34;14204:18;;;14197:62;-1:-1:-1;;;14275:18:1;;;14268:31;14316:19;;21999:57:0;13944:397:1;21999:57:0;15633:10;-1:-1:-1;;;;;22091:21:0;;;;:62;;-1:-1:-1;22116:37:0;22133:5;15633:10;23004:164;:::i;22116:37::-;22069:168;;;;-1:-1:-1;;;22069:168:0;;10527:2:1;22069:168:0;;;10509:21:1;10566:2;10546:18;;;10539:30;10605:34;10585:18;;;10578:62;10676:26;10656:18;;;10649:54;10720:19;;22069:168:0;10325:420:1;22069:168:0;22250:21;22259:2;22263:7;22250:8;:21::i;:::-;21938:341;21868:411;;:::o;23235:339::-;23430:41;15633:10;23449:12;23463:7;23430:18;:41::i;:::-;23422:103;;;;-1:-1:-1;;;23422:103:0;;;;;;;:::i;:::-;23538:28;23548:4;23554:2;23558:7;23538:9;:28::i;52877:622::-;52989:20;53012:13;34977:10;:17;;34889:113;53012:13;52989:36;;53048:1;53040:5;:9;53032:57;;;;-1:-1:-1;;;53032:57:0;;15724:2:1;53032:57:0;;;15706:21:1;15763:2;15743:18;;;15736:30;15802;15782:18;;;15775:58;15850:18;;53032:57:0;15522:352:1;53032:57:0;52647:4;53104:23;:12;53121:5;53104:16;:23::i;:::-;:37;;53096:100;;;;-1:-1:-1;;;53096:100:0;;11773:2:1;53096:100:0;;;11755:21:1;11812:2;11792:18;;;11785:30;11851:34;11831:18;;;11824:62;-1:-1:-1;;;11902:18:1;;;11895:41;11953:19;;53096:100:0;11571:407:1;53096:100:0;52647:4;53211:12;:26;;53203:74;;;;-1:-1:-1;;;53203:74:0;;16498:2:1;53203:74:0;;;16480:21:1;16537:2;16517:18;;;16510:30;16576;16556:18;;;16549:58;16624:18;;53203:74:0;16296:352:1;53203:74:0;53305:16;52688:10;53315:5;53305:9;:16::i;:::-;53292:9;:29;;53284:65;;;;-1:-1:-1;;;53284:65:0;;15379:2:1;53284:65:0;;;15361:21:1;15418:2;15398:18;;;15391:30;-1:-1:-1;;;15437:18:1;;;15430:46;15493:18;;53284:65:0;15177:340:1;53284:65:0;53363:6;53358:136;53379:5;53375:1;:9;53358:136;;;53400:7;53410:13;34977:10;:17;;34889:113;53410:13;53400:23;;53432:25;53442:10;53454:2;53432:9;:25::i;:::-;53471:15;;53483:2;;53471:15;;;;;-1:-1:-1;53386:3:0;;;;:::i;:::-;;;;53358:136;;34557:256;34654:7;34690:23;34707:5;34690:16;:23::i;:::-;34682:5;:31;34674:87;;;;-1:-1:-1;;;34674:87:0;;7070:2:1;34674:87:0;;;7052:21:1;7109:2;7089:18;;;7082:30;7148:34;7128:18;;;7121:62;-1:-1:-1;;;7199:18:1;;;7192:41;7250:19;;34674:87:0;6868:407:1;34674:87:0;-1:-1:-1;;;;;;34779:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34557:256::o;53809:65::-;44316:6;;-1:-1:-1;;;;;44316:6:0;;;;;15633:10;44463:23;44455:68;;;;-1:-1:-1;;;44455:68:0;;;;;;;:::i;:::-;53858:10:::1;:8;:10::i;:::-;53809:65::o:0;23645:185::-;23783:39;23800:4;23806:2;23810:7;23783:39;;;;;;;;;;;;:16;:39::i;32307:245::-;32425:41;15633:10;32444:12;15553:98;32425:41;32417:102;;;;-1:-1:-1;;;32417:102:0;;16081:2:1;32417:102:0;;;16063:21:1;16120:2;16100:18;;;16093:30;16159:34;16139:18;;;16132:62;-1:-1:-1;;;16210:18:1;;;16203:46;16266:19;;32417:102:0;15879:412:1;32417:102:0;32530:14;32536:7;32530:5;:14::i;:::-;32307:245;:::o;35079:233::-;35154:7;35190:30;34977:10;:17;;34889:113;35190:30;35182:5;:38;35174:95;;;;-1:-1:-1;;;35174:95:0;;14966:2:1;35174:95:0;;;14948:21:1;15005:2;14985:18;;;14978:30;15044:34;15024:18;;;15017:62;-1:-1:-1;;;15095:18:1;;;15088:42;15147:19;;35174:95:0;14764:408:1;35174:95:0;35287:10;35298:5;35287:17;;;;;;;;:::i;:::-;;;;;;;;;35280:24;;35079:233;;;:::o;53633:101::-;44316:6;;-1:-1:-1;;;;;44316:6:0;;;;;15633:10;44463:23;44455:68;;;;-1:-1:-1;;;44455:68:0;;;;;;;:::i;:::-;53706:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;53633:101:::0;:::o;20480:239::-;20552:7;20588:16;;;:7;:16;;;;;;-1:-1:-1;;;;;20588:16:0;20623:19;20615:73;;;;-1:-1:-1;;;20615:73:0;;11363:2:1;20615:73:0;;;11345:21:1;11402:2;11382:18;;;11375:30;11441:34;11421:18;;;11414:62;-1:-1:-1;;;11492:18:1;;;11485:39;11541:19;;20615:73:0;11161:405:1;20210:208:0;20282:7;-1:-1:-1;;;;;20310:19:0;;20302:74;;;;-1:-1:-1;;;20302:74:0;;10952:2:1;20302:74:0;;;10934:21:1;10991:2;10971:18;;;10964:30;11030:34;11010:18;;;11003:62;-1:-1:-1;;;11081:18:1;;;11074:40;11131:19;;20302:74:0;10750:406:1;20302:74:0;-1:-1:-1;;;;;;20394:16:0;;;;;:9;:16;;;;;;;20210:208::o;44894:94::-;44316:6;;-1:-1:-1;;;;;44316:6:0;;;;;15633:10;44463:23;44455:68;;;;-1:-1:-1;;;44455:68:0;;;;;;;:::i;:::-;44959:21:::1;44977:1;44959:9;:21::i;53742:61::-:0;44316:6;;-1:-1:-1;;;;;44316:6:0;;;;;15633:10;44463:23;44455:68;;;;-1:-1:-1;;;44455:68:0;;;;;;;:::i;:::-;53789:8:::1;:6;:8::i;53880:112::-:0;44316:6;;-1:-1:-1;;;;;44316:6:0;;;;;15633:10;44463:23;44455:68;;;;-1:-1:-1;;;44455:68:0;;;;;;;:::i;:::-;44316:6;;53944:42:::1;::::0;44316:6;;;-1:-1:-1;;;;;44316:6:0;53964:21:::1;53944:10;:42::i;20955:104::-:0;21011:13;21044:7;21037:14;;;;;:::i;22638:295::-;-1:-1:-1;;;;;22741:24:0;;15633:10;22741:24;;22733:62;;;;-1:-1:-1;;;22733:62:0;;9415:2:1;22733:62:0;;;9397:21:1;9454:2;9434:18;;;9427:30;9493:27;9473:18;;;9466:55;9538:18;;22733:62:0;9213:349:1;22733:62:0;15633:10;22808:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;22808:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;22808:53:0;;;;;;;;;;22877:48;;5831:41:1;;;22808:42:0;;15633:10;22877:48;;5804:18:1;22877:48:0;;;;;;;22638:295;;:::o;23901:328::-;24076:41;15633:10;24109:7;24076:18;:41::i;:::-;24068:103;;;;-1:-1:-1;;;24068:103:0;;;;;;;:::i;:::-;24182:39;24196:4;24202:2;24206:7;24215:5;24182:13;:39::i;:::-;23901:328;;;;:::o;21130:334::-;25804:4;25828:16;;;:7;:16;;;;;;21203:13;;-1:-1:-1;;;;;25828:16:0;21229:76;;;;-1:-1:-1;;;21229:76:0;;13730:2:1;21229:76:0;;;13712:21:1;13769:2;13749:18;;;13742:30;13808:34;13788:18;;;13781:62;-1:-1:-1;;;13859:18:1;;;13852:45;13914:19;;21229:76:0;13528:411:1;21229:76:0;21318:21;21342:10;:8;:10::i;:::-;21318:34;;21394:1;21376:7;21370:21;:25;:86;;;;;;;;;;;;;;;;;21422:7;21431:18;:7;:16;:18::i;:::-;21405:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21370:86;21363:93;21130:334;-1:-1:-1;;;21130:334:0:o;52703:41::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45143:192::-;44316:6;;-1:-1:-1;;;;;44316:6:0;;;;;15633:10;44463:23;44455:68;;;;-1:-1:-1;;;44455:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45232:22:0;::::1;45224:73;;;::::0;-1:-1:-1;;;45224:73:0;;7901:2:1;45224:73:0::1;::::0;::::1;7883:21:1::0;7940:2;7920:18;;;7913:30;7979:34;7959:18;;;7952:62;-1:-1:-1;;;8030:18:1;;;8023:36;8076:19;;45224:73:0::1;7699:402:1::0;45224:73:0::1;45308:19;45318:8;45308:9;:19::i;34249:224::-:0;34351:4;-1:-1:-1;;;;;;34375:50:0;;-1:-1:-1;;;34375:50:0;;:90;;;34429:36;34453:11;34429:23;:36::i;29721:174::-;29796:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;29796:29:0;-1:-1:-1;;;;;29796:29:0;;;;;;;;:24;;29850:23;29796:24;29850:14;:23::i;:::-;-1:-1:-1;;;;;29841:46:0;;;;;;;;;;;29721:174;;:::o;26033:348::-;26126:4;25828:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25828:16:0;26143:73;;;;-1:-1:-1;;;26143:73:0;;9769:2:1;26143:73:0;;;9751:21:1;9808:2;9788:18;;;9781:30;9847:34;9827:18;;;9820:62;-1:-1:-1;;;9898:18:1;;;9891:42;9950:19;;26143:73:0;9567:408:1;26143:73:0;26227:13;26243:23;26258:7;26243:14;:23::i;:::-;26227:39;;26296:5;-1:-1:-1;;;;;26285:16:0;:7;-1:-1:-1;;;;;26285:16:0;;:51;;;;26329:7;-1:-1:-1;;;;;26305:31:0;:20;26317:7;26305:11;:20::i;:::-;-1:-1:-1;;;;;26305:31:0;;26285:51;:87;;;-1:-1:-1;;;;;;23125:25:0;;;23101:4;23125:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;26340:32;26277:96;26033:348;-1:-1:-1;;;;26033:348:0:o;29025:578::-;29184:4;-1:-1:-1;;;;;29157:31:0;:23;29172:7;29157:14;:23::i;:::-;-1:-1:-1;;;;;29157:31:0;;29149:85;;;;-1:-1:-1;;;29149:85:0;;13320:2:1;29149:85:0;;;13302:21:1;13359:2;13339:18;;;13332:30;13398:34;13378:18;;;13371:62;-1:-1:-1;;;13449:18:1;;;13442:39;13498:19;;29149:85:0;13118:405:1;29149:85:0;-1:-1:-1;;;;;29253:16:0;;29245:65;;;;-1:-1:-1;;;29245:65:0;;9010:2:1;29245:65:0;;;8992:21:1;9049:2;9029:18;;;9022:30;9088:34;9068:18;;;9061:62;-1:-1:-1;;;9139:18:1;;;9132:34;9183:19;;29245:65:0;8808:400:1;29245:65:0;29323:39;29344:4;29350:2;29354:7;29323:20;:39::i;:::-;29427:29;29444:1;29448:7;29427:8;:29::i;:::-;-1:-1:-1;;;;;29469:15:0;;;;;;:9;:15;;;;;:20;;29488:1;;29469:15;:20;;29488:1;;29469:20;:::i;:::-;;;;-1:-1:-1;;;;;;;29500:13:0;;;;;;:9;:13;;;;;:18;;29517:1;;29500:13;:18;;29517:1;;29500:18;:::i;:::-;;;;-1:-1:-1;;29529:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29529:21:0;-1:-1:-1;;;;;29529:21:0;;;;;;;;;29568:27;;29529:16;;29568:27;;;;;;;29025:578;;;:::o;48222:98::-;48280:7;48307:5;48311:1;48307;:5;:::i;48960:98::-;49018:7;49045:5;49049:1;49045;:5;:::i;26723:110::-;26799:26;26809:2;26813:7;26799:26;;;;;;;;;;;;:9;:26::i;42439:120::-;41451:7;;;;41975:41;;;;-1:-1:-1;;;41975:41:0;;6721:2:1;41975:41:0;;;6703:21:1;6760:2;6740:18;;;6733:30;-1:-1:-1;;;6779:18:1;;;6772:50;6839:18;;41975:41:0;6519:344:1;41975:41:0;42498:7:::1;:15:::0;;-1:-1:-1;;42498:15:0::1;::::0;;42529:22:::1;15633:10:::0;42538:12:::1;42529:22;::::0;-1:-1:-1;;;;;5154:32:1;;;5136:51;;5124:2;5109:18;42529:22:0::1;;;;;;;42439:120::o:0;28328:360::-;28388:13;28404:23;28419:7;28404:14;:23::i;:::-;28388:39;;28440:48;28461:5;28476:1;28480:7;28440:20;:48::i;:::-;28529:29;28546:1;28550:7;28529:8;:29::i;:::-;-1:-1:-1;;;;;28571:16:0;;;;;;:9;:16;;;;;:21;;28591:1;;28571:16;:21;;28591:1;;28571:21;:::i;:::-;;;;-1:-1:-1;;28610:16:0;;;;:7;:16;;;;;;28603:23;;-1:-1:-1;;;;;;28603:23:0;;;28644:36;28618:7;;28610:16;-1:-1:-1;;;;;28644:36:0;;;;;28610:16;;28644:36;28377:311;28328:360;:::o;45343:173::-;45418:6;;;-1:-1:-1;;;;;45435:17:0;;;45418:6;45435:17;;;-1:-1:-1;;;;;;45435:17:0;;;;;;45468:40;;45418:6;;;;;;;;45468:40;;45399:16;;45468:40;45388:128;45343:173;:::o;42180:118::-;41451:7;;;;41705:9;41697:38;;;;-1:-1:-1;;;41697:38:0;;10182:2:1;41697:38:0;;;10164:21:1;10221:2;10201:18;;;10194:30;-1:-1:-1;;;10240:18:1;;;10233:46;10296:18;;41697:38:0;9980:340:1;41697:38:0;42240:7:::1;:14:::0;;-1:-1:-1;;42240:14:0::1;42250:4;42240:14;::::0;;42270:20:::1;42277:12;15633:10:::0;;15553:98;53998:174;54072:12;54090:8;-1:-1:-1;;;;;54090:13:0;54111:7;54090:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54071:52;;;54138:7;54130:36;;;;-1:-1:-1;;;54130:36:0;;8308:2:1;54130:36:0;;;8290:21:1;8347:2;8327:18;;;8320:30;-1:-1:-1;;;8366:18:1;;;8359:46;8422:18;;54130:36:0;8106:340:1;25111:315:0;25268:28;25278:4;25284:2;25288:7;25268:9;:28::i;:::-;25315:48;25338:4;25344:2;25348:7;25357:5;25315:22;:48::i;:::-;25307:111;;;;-1:-1:-1;;;25307:111:0;;;;;;;:::i;53505:122::-;53580:13;53609:12;53602:19;;;;;:::i;15993:723::-;16049:13;16270:10;16266:53;;-1:-1:-1;;16297:10:0;;;;;;;;;;;;-1:-1:-1;;;16297:10:0;;;;;15993:723::o;16266:53::-;16344:5;16329:12;16385:78;16392:9;;16385:78;;16418:8;;;;:::i;:::-;;-1:-1:-1;16441:10:0;;-1:-1:-1;16449:2:0;16441:10;;:::i;:::-;;;16385:78;;;16473:19;16505:6;16495:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16495:17:0;;16473:39;;16523:154;16530:10;;16523:154;;16557:11;16567:1;16557:11;;:::i;:::-;;-1:-1:-1;16626:10:0;16634:2;16626:5;:10;:::i;:::-;16613:24;;:2;:24;:::i;:::-;16600:39;;16583:6;16590;16583:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;16583:56:0;;;;;;;;-1:-1:-1;16654:11:0;16663:2;16654:11;;:::i;:::-;;;16523:154;;19841:305;19943:4;-1:-1:-1;;;;;;19980:40:0;;-1:-1:-1;;;19980:40:0;;:105;;-1:-1:-1;;;;;;;20037:48:0;;-1:-1:-1;;;20037:48:0;19980:105;:158;;;-1:-1:-1;;;;;;;;;;18559:40:0;;;20102:36;18450:157;54178:228;54355:45;54382:4;54388:2;54392:7;54355:26;:45::i;27060:321::-;27190:18;27196:2;27200:7;27190:5;:18::i;:::-;27241:54;27272:1;27276:2;27280:7;27289:5;27241:22;:54::i;:::-;27219:154;;;;-1:-1:-1;;;27219:154:0;;;;;;;:::i;30460:799::-;30615:4;-1:-1:-1;;;;;30636:13:0;;8005:20;8053:8;30632:620;;30672:72;;-1:-1:-1;;;30672:72:0;;-1:-1:-1;;;;;30672:36:0;;;;;:72;;15633:10;;30723:4;;30729:7;;30738:5;;30672:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30672:72:0;;;;;;;;-1:-1:-1;;30672:72:0;;;;;;;;;;;;:::i;:::-;;;30668:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30914:13:0;;30910:272;;30957:60;;-1:-1:-1;;;30957:60:0;;;;;;;:::i;30910:272::-;31132:6;31126:13;31117:6;31113:2;31109:15;31102:38;30668:529;-1:-1:-1;;;;;;30795:51:0;-1:-1:-1;;;30795:51:0;;-1:-1:-1;30788:58:0;;30632:620;-1:-1:-1;31236:4:0;30460:799;;;;;;:::o;43051:275::-;43195:45;43222:4;43228:2;43232:7;43195:26;:45::i;:::-;41451:7;;;;43261:9;43253:65;;;;-1:-1:-1;;;43253:65:0;;6309:2:1;43253:65:0;;;6291:21:1;6348:2;6328:18;;;6321:30;6387:34;6367:18;;;6360:62;-1:-1:-1;;;6438:18:1;;;6431:41;6489:19;;43253:65:0;6107:407:1;27717:382:0;-1:-1:-1;;;;;27797:16:0;;27789:61;;;;-1:-1:-1;;;27789:61:0;;12185:2:1;27789:61:0;;;12167:21:1;;;12204:18;;;12197:30;12263:34;12243:18;;;12236:62;12315:18;;27789:61:0;11983:356:1;27789:61:0;25804:4;25828:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25828:16:0;:30;27861:58;;;;-1:-1:-1;;;27861:58:0;;8653:2:1;27861:58:0;;;8635:21:1;8692:2;8672:18;;;8665:30;8731;8711:18;;;8704:58;8779:18;;27861:58:0;8451:352:1;27861:58:0;27932:45;27961:1;27965:2;27969:7;27932:20;:45::i;:::-;-1:-1:-1;;;;;27990:13:0;;;;;;:9;:13;;;;;:18;;28007:1;;27990:13;:18;;28007:1;;27990:18;:::i;:::-;;;;-1:-1:-1;;28019:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28019:21:0;-1:-1:-1;;;;;28019:21:0;;;;;;;;28058:33;;28019:16;;;28058:33;;28019:16;;28058:33;27717:382;;:::o;35925:589::-;-1:-1:-1;;;;;36131:18:0;;36127:187;;36166:40;36198:7;37341:10;:17;;37314:24;;;;:15;:24;;;;;:44;;;37369:24;;;;;;;;;;;;37237:164;36166:40;36127:187;;;36236:2;-1:-1:-1;;;;;36228:10:0;:4;-1:-1:-1;;;;;36228:10:0;;36224:90;;36255:47;36288:4;36294:7;36255:32;:47::i;:::-;-1:-1:-1;;;;;36328:16:0;;36324:183;;36361:45;36398:7;36361:36;:45::i;36324:183::-;36434:4;-1:-1:-1;;;;;36428:10:0;:2;-1:-1:-1;;;;;36428:10:0;;36424:83;;36455:40;36483:2;36487:7;36455:27;:40::i;38028:988::-;38294:22;38344:1;38319:22;38336:4;38319:16;:22::i;:::-;:26;;;;:::i;:::-;38356:18;38377:26;;;:17;:26;;;;;;38294:51;;-1:-1:-1;38510:28:0;;;38506:328;;-1:-1:-1;;;;;38577:18:0;;38555:19;38577:18;;;:12;:18;;;;;;;;:34;;;;;;;;;38628:30;;;;;;:44;;;38745:30;;:17;:30;;;;;:43;;;38506:328;-1:-1:-1;38930:26:0;;;;:17;:26;;;;;;;;38923:33;;;-1:-1:-1;;;;;38974:18:0;;;;;:12;:18;;;;;:34;;;;;;;38967:41;38028:988::o;39311:1079::-;39589:10;:17;39564:22;;39589:21;;39609:1;;39589:21;:::i;:::-;39621:18;39642:24;;;:15;:24;;;;;;40015:10;:26;;39564:46;;-1:-1:-1;39642:24:0;;39564:46;;40015:26;;;;;;:::i;:::-;;;;;;;;;39993:48;;40079:11;40054:10;40065;40054:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40159:28;;;:15;:28;;;;;;;:41;;;40331:24;;;;;40324:31;40366:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39382:1008;;;39311:1079;:::o;36815:221::-;36900:14;36917:20;36934:2;36917:16;:20::i;:::-;-1:-1:-1;;;;;36948:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;36993:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;36815:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4305:470;-1:-1:-1;;;;4305:470:1:o;5198:488::-;-1:-1:-1;;;;;5467:15:1;;;5449:34;;5519:15;;5514:2;5499:18;;5492:43;5566:2;5551:18;;5544:34;;;5614:3;5609:2;5594:18;;5587:31;;;5392:4;;5635:45;;5660:19;;5652:6;5635:45;:::i;:::-;5627:53;5198:488;-1:-1:-1;;;;;;5198:488:1:o;5883:219::-;6032:2;6021:9;6014:21;5995:4;6052:44;6092:2;6081:9;6077:18;6069:6;6052:44;:::i;7280:414::-;7482:2;7464:21;;;7521:2;7501:18;;;7494:30;7560:34;7555:2;7540:18;;7533:62;-1:-1:-1;;;7626:2:1;7611:18;;7604:48;7684:3;7669:19;;7280:414::o;12757:356::-;12959:2;12941:21;;;12978:18;;;12971:30;13037:34;13032:2;13017:18;;13010:62;13104:2;13089:18;;12757:356::o;14346:413::-;14548:2;14530:21;;;14587:2;14567:18;;;14560:30;14626:34;14621:2;14606:18;;14599:62;-1:-1:-1;;;14692:2:1;14677:18;;14670:47;14749:3;14734:19;;14346:413::o;16835:128::-;16875:3;16906:1;16902:6;16899:1;16896:13;16893:39;;;16912:18;;:::i;:::-;-1:-1:-1;16948:9:1;;16835:128::o;16968:120::-;17008:1;17034;17024:35;;17039:18;;:::i;:::-;-1:-1:-1;17073:9:1;;16968:120::o;17093:168::-;17133:7;17199:1;17195;17191:6;17187:14;17184:1;17181:21;17176:1;17169:9;17162:17;17158:45;17155:71;;;17206:18;;:::i;:::-;-1:-1:-1;17246:9:1;;17093:168::o;17266:125::-;17306:4;17334:1;17331;17328:8;17325:34;;;17339:18;;:::i;:::-;-1:-1:-1;17376:9:1;;17266:125::o;17396:258::-;17468:1;17478:113;17492:6;17489:1;17486:13;17478:113;;;17568:11;;;17562:18;17549:11;;;17542:39;17514:2;17507:10;17478:113;;;17609:6;17606:1;17603:13;17600:48;;;-1:-1:-1;;17644:1:1;17626:16;;17619:27;17396:258::o;17659:380::-;17738:1;17734:12;;;;17781;;;17802:61;;17856:4;17848:6;17844:17;17834:27;;17802:61;17909:2;17901:6;17898:14;17878:18;17875:38;17872:161;;;17955:10;17950:3;17946:20;17943:1;17936:31;17990:4;17987:1;17980:15;18018:4;18015:1;18008:15;17872:161;;17659:380;;;:::o;18044:135::-;18083:3;-1:-1:-1;;18104:17:1;;18101:43;;;18124:18;;:::i;:::-;-1:-1:-1;18171:1:1;18160:13;;18044:135::o;18184:112::-;18216:1;18242;18232:35;;18247:18;;:::i;:::-;-1:-1:-1;18281:9:1;;18184:112::o;18301:127::-;18362:10;18357:3;18353:20;18350:1;18343:31;18393:4;18390:1;18383:15;18417:4;18414:1;18407:15;18433:127;18494:10;18489:3;18485:20;18482:1;18475:31;18525:4;18522:1;18515:15;18549:4;18546:1;18539:15;18565:127;18626:10;18621:3;18617:20;18614:1;18607:31;18657:4;18654:1;18647:15;18681:4;18678:1;18671:15;18697:127;18758:10;18753:3;18749:20;18746:1;18739:31;18789:4;18786:1;18779:15;18813:4;18810:1;18803:15;18829:127;18890:10;18885:3;18881:20;18878:1;18871:31;18921:4;18918:1;18911:15;18945:4;18942:1;18935:15;18961:131;-1:-1:-1;;;;;;19035:32:1;;19025:43;;19015:71;;19082:1;19079;19072:12

Swarm Source

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