ETH Price: $3,247.71 (+2.29%)
Gas: 3 Gwei

Token

Mkay Bears (MkayBears)
 

Overview

Max Total Supply

10,000 MkayBears

Holders

1,284

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 MkayBears
0xded95b2a7231881652850ea3e4cee4e43cef6567
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:
MkayBears

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

// File: contracts/MkayBears.sol


pragma solidity ^0.8.6;




contract MkayBears is ERC721, Ownable {
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;
    string _baseUri;
    string _contractUri;

    uint256 public constant MAX_SUPPLY = 10000;
    uint256 public COST = 0.01 ether;
    uint256 public MAX_FREE_MINT = 2000;
    uint256 public MAX_MINT_PER_TXN = 4;
    bool public IS_SALES_ACTIVE = false;

    constructor() ERC721("Mkay Bears", "MkayBears") {
        _contractUri = "ipfs://QmX1hpdg8b7gScE1pqP4cY1VsRC41Uq7RBZijeNUeah6pJ";
    }

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

    function mint(uint256 quantity) external payable {
        require(IS_SALES_ACTIVE, "SALE IS NOT ACTIVE");
        require(quantity <= MAX_MINT_PER_TXN, "MAX MINT REACHED");
        require(totalSupply() + quantity <= MAX_SUPPLY, "ALL BEARS HAVE BEEN SOLD");
        if (totalSupply() + quantity > MAX_FREE_MINT) {
            require(msg.value >= COST * quantity, "NOT ENOUGH ETH WAS SENT");
        }
        for (uint256 i = 0; i < quantity; i++) {
            safeMint(msg.sender);
        }
    }

    function toggleSales() external onlyOwner {
        IS_SALES_ACTIVE = !IS_SALES_ACTIVE;
    }

    function safeMint(address to) internal {
        uint256 tokenId = _tokenIdCounter.current();
        _tokenIdCounter.increment();
        _safeMint(to, tokenId);
    }

    function contractURI() public view returns (string memory) {
        return _contractUri;
    }

    function setContractURI(string memory newContractURI) external onlyOwner {
        _contractUri = newContractURI;
    }

    function setBaseURI(string memory newBaseURI) external onlyOwner {
        _baseUri = newBaseURI;
    }

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

    function setCost(uint256 NEW_COST) external onlyOwner {
        COST = NEW_COST;
    }

    function setMaxMint(uint256 NEW_MAX) external onlyOwner {
        MAX_MINT_PER_TXN = NEW_MAX;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IS_SALES_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newContractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"NEW_COST","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"NEW_MAX","type":"uint256"}],"name":"setMaxMint","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":[],"name":"toggleSales","outputs":[],"stateMutability":"nonpayable","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":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052662386f26fc10000600a556107d0600b556004600c55600d805460ff191690553480156200003157600080fd5b50604080518082018252600a8152694d6b617920426561727360b01b6020808301918252835180850190945260098452684d6b6179426561727360b81b908401528151919291620000859160009162000145565b5080516200009b90600190602084019062000145565b505050620000b8620000b2620000ef60201b60201c565b620000f3565b60405180606001604052806035815260200162001f1a603591398051620000e89160099160209091019062000145565b5062000228565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015390620001eb565b90600052602060002090601f016020900481019282620001775760008555620001c2565b82601f106200019257805160ff1916838001178555620001c2565b82800160010185558215620001c2579182015b82811115620001c2578251825591602001919060010190620001a5565b50620001d0929150620001d4565b5090565b5b80821115620001d05760008155600101620001d5565b600181811c908216806200020057607f821691505b602082108114156200022257634e487b7160e01b600052602260045260246000fd5b50919050565b611ce280620002386000396000f3fe6080604052600436106101cd5760003560e01c806370a08231116100f7578063a22cb46511610095578063dbd30ae011610064578063dbd30ae0146104e8578063e8a3d485146104fd578063e985e9c514610512578063f2fde38b1461055b57600080fd5b8063a22cb46514610472578063b88d4fde14610492578063bf8fbbd2146104b2578063c87b56dd146104c857600080fd5b80638da5cb5b116100d15780638da5cb5b1461040c578063938e3d7b1461042a57806395d89b411461044a578063a0712d681461045f57600080fd5b806370a08231146103c2578063715018a6146103e2578063853828b6146103f757600080fd5b806341cda2031161016f578063547520fe1161013e578063547520fe1461034857806355f804b3146103685780636352211e1461038857806367fd9b51146103a857600080fd5b806341cda203146102dc57806342842e0e146102f257806344a0d68a146103125780634bc44f621461033257600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd1461028357806323b872dd146102a657806332cb6b0c146102c657600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611927565b61057b565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105cd565b6040516101fe9190611a5b565b34801561023557600080fd5b506102496102443660046119aa565b61065f565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c3660046118fd565b6106f9565b005b34801561028f57600080fd5b5061029861080f565b6040519081526020016101fe565b3480156102b257600080fd5b506102816102c1366004611809565b61081f565b3480156102d257600080fd5b5061029861271081565b3480156102e857600080fd5b50610298600b5481565b3480156102fe57600080fd5b5061028161030d366004611809565b610850565b34801561031e57600080fd5b5061028161032d3660046119aa565b61086b565b34801561033e57600080fd5b50610298600c5481565b34801561035457600080fd5b506102816103633660046119aa565b61089a565b34801561037457600080fd5b50610281610383366004611961565b6108c9565b34801561039457600080fd5b506102496103a33660046119aa565b61090a565b3480156103b457600080fd5b50600d546101f29060ff1681565b3480156103ce57600080fd5b506102986103dd3660046117bb565b610981565b3480156103ee57600080fd5b50610281610a08565b34801561040357600080fd5b50610281610a3e565b34801561041857600080fd5b506006546001600160a01b0316610249565b34801561043657600080fd5b50610281610445366004611961565b610a8c565b34801561045657600080fd5b5061021c610ac9565b61028161046d3660046119aa565b610ad8565b34801561047e57600080fd5b5061028161048d3660046118c1565b610c67565b34801561049e57600080fd5b506102816104ad366004611845565b610c72565b3480156104be57600080fd5b50610298600a5481565b3480156104d457600080fd5b5061021c6104e33660046119aa565b610caa565b3480156104f457600080fd5b50610281610d85565b34801561050957600080fd5b5061021c610dc3565b34801561051e57600080fd5b506101f261052d3660046117d6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561056757600080fd5b506102816105763660046117bb565b610dd2565b60006001600160e01b031982166380ac58cd60e01b14806105ac57506001600160e01b03198216635b5e139f60e01b145b806105c757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546105dc90611bd4565b80601f016020809104026020016040519081016040528092919081815260200182805461060890611bd4565b80156106555780601f1061062a57610100808354040283529160200191610655565b820191906000526020600020905b81548152906001019060200180831161063857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106dd5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107048261090a565b9050806001600160a01b0316836001600160a01b031614156107725760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106d4565b336001600160a01b038216148061078e575061078e813361052d565b6108005760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106d4565b61080a8383610e6d565b505050565b600061081a60075490565b905090565b6108293382610edb565b6108455760405162461bcd60e51b81526004016106d490611af5565b61080a838383610fd2565b61080a83838360405180602001604052806000815250610c72565b6006546001600160a01b031633146108955760405162461bcd60e51b81526004016106d490611ac0565b600a55565b6006546001600160a01b031633146108c45760405162461bcd60e51b81526004016106d490611ac0565b600c55565b6006546001600160a01b031633146108f35760405162461bcd60e51b81526004016106d490611ac0565b8051610906906008906020840190611690565b5050565b6000818152600260205260408120546001600160a01b0316806105c75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106d4565b60006001600160a01b0382166109ec5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106d4565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610a325760405162461bcd60e51b81526004016106d490611ac0565b610a3c600061116e565b565b6006546001600160a01b03163314610a685760405162461bcd60e51b81526004016106d490611ac0565b60405133904780156108fc02916000818181858888f19350505050610a3c57600080fd5b6006546001600160a01b03163314610ab65760405162461bcd60e51b81526004016106d490611ac0565b8051610906906009906020840190611690565b6060600180546105dc90611bd4565b600d5460ff16610b1f5760405162461bcd60e51b815260206004820152601260248201527153414c45204953204e4f542041435449564560701b60448201526064016106d4565b600c54811115610b645760405162461bcd60e51b815260206004820152601060248201526f13505608135253950814915050d2115160821b60448201526064016106d4565b61271081610b7061080f565b610b7a9190611b46565b1115610bc85760405162461bcd60e51b815260206004820152601860248201527f414c4c2042454152532048415645204245454e20534f4c44000000000000000060448201526064016106d4565b600b5481610bd461080f565b610bde9190611b46565b1115610c415780600a54610bf29190611b72565b341015610c415760405162461bcd60e51b815260206004820152601760248201527f4e4f5420454e4f55474820455448205741532053454e5400000000000000000060448201526064016106d4565b60005b8181101561090657610c55336111c0565b80610c5f81611c0f565b915050610c44565b6109063383836111e5565b610c7c3383610edb565b610c985760405162461bcd60e51b81526004016106d490611af5565b610ca4848484846112b4565b50505050565b6000818152600260205260409020546060906001600160a01b0316610d295760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106d4565b6000610d336112e7565b90506000815111610d535760405180602001604052806000815250610d7e565b80610d5d846112f6565b604051602001610d6e9291906119ef565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610daf5760405162461bcd60e51b81526004016106d490611ac0565b600d805460ff19811660ff90911615179055565b6060600980546105dc90611bd4565b6006546001600160a01b03163314610dfc5760405162461bcd60e51b81526004016106d490611ac0565b6001600160a01b038116610e615760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106d4565b610e6a8161116e565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610ea28261090a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610f545760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106d4565b6000610f5f8361090a565b9050806001600160a01b0316846001600160a01b03161480610fa657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610fca5750836001600160a01b0316610fbf8461065f565b6001600160a01b0316145b949350505050565b826001600160a01b0316610fe58261090a565b6001600160a01b0316146110495760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016106d4565b6001600160a01b0382166110ab5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106d4565b6110b6600082610e6d565b6001600160a01b03831660009081526003602052604081208054600192906110df908490611b91565b90915550506001600160a01b038216600090815260036020526040812080546001929061110d908490611b46565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006111cb60075490565b90506111db600780546001019055565b61090682826113f4565b816001600160a01b0316836001600160a01b031614156112475760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106d4565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6112bf848484610fd2565b6112cb8484848461140e565b610ca45760405162461bcd60e51b81526004016106d490611a6e565b6060600880546105dc90611bd4565b60608161131a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611344578061132e81611c0f565b915061133d9050600a83611b5e565b915061131e565b60008167ffffffffffffffff81111561135f5761135f611c80565b6040519080825280601f01601f191660200182016040528015611389576020820181803683370190505b5090505b8415610fca5761139e600183611b91565b91506113ab600a86611c2a565b6113b6906030611b46565b60f81b8183815181106113cb576113cb611c6a565b60200101906001600160f81b031916908160001a9053506113ed600a86611b5e565b945061138d565b61090682826040518060200160405280600081525061151b565b60006001600160a01b0384163b1561151057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611452903390899088908890600401611a1e565b602060405180830381600087803b15801561146c57600080fd5b505af192505050801561149c575060408051601f3d908101601f1916820190925261149991810190611944565b60015b6114f6573d8080156114ca576040519150601f19603f3d011682016040523d82523d6000602084013e6114cf565b606091505b5080516114ee5760405162461bcd60e51b81526004016106d490611a6e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fca565b506001949350505050565b611525838361154e565b611532600084848461140e565b61080a5760405162461bcd60e51b81526004016106d490611a6e565b6001600160a01b0382166115a45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106d4565b6000818152600260205260409020546001600160a01b0316156116095760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106d4565b6001600160a01b0382166000908152600360205260408120805460019290611632908490611b46565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461169c90611bd4565b90600052602060002090601f0160209004810192826116be5760008555611704565b82601f106116d757805160ff1916838001178555611704565b82800160010185558215611704579182015b828111156117045782518255916020019190600101906116e9565b50611710929150611714565b5090565b5b808211156117105760008155600101611715565b600067ffffffffffffffff8084111561174457611744611c80565b604051601f8501601f19908116603f0116810190828211818310171561176c5761176c611c80565b8160405280935085815286868601111561178557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146117b657600080fd5b919050565b6000602082840312156117cd57600080fd5b610d7e8261179f565b600080604083850312156117e957600080fd5b6117f28361179f565b91506118006020840161179f565b90509250929050565b60008060006060848603121561181e57600080fd5b6118278461179f565b92506118356020850161179f565b9150604084013590509250925092565b6000806000806080858703121561185b57600080fd5b6118648561179f565b93506118726020860161179f565b925060408501359150606085013567ffffffffffffffff81111561189557600080fd5b8501601f810187136118a657600080fd5b6118b587823560208401611729565b91505092959194509250565b600080604083850312156118d457600080fd5b6118dd8361179f565b9150602083013580151581146118f257600080fd5b809150509250929050565b6000806040838503121561191057600080fd5b6119198361179f565b946020939093013593505050565b60006020828403121561193957600080fd5b8135610d7e81611c96565b60006020828403121561195657600080fd5b8151610d7e81611c96565b60006020828403121561197357600080fd5b813567ffffffffffffffff81111561198a57600080fd5b8201601f8101841361199b57600080fd5b610fca84823560208401611729565b6000602082840312156119bc57600080fd5b5035919050565b600081518084526119db816020860160208601611ba8565b601f01601f19169290920160200192915050565b60008351611a01818460208801611ba8565b835190830190611a15818360208801611ba8565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a51908301846119c3565b9695505050505050565b602081526000610d7e60208301846119c3565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611b5957611b59611c3e565b500190565b600082611b6d57611b6d611c54565b500490565b6000816000190483118215151615611b8c57611b8c611c3e565b500290565b600082821015611ba357611ba3611c3e565b500390565b60005b83811015611bc3578181015183820152602001611bab565b83811115610ca45750506000910152565b600181811c90821680611be857607f821691505b60208210811415611c0957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611c2357611c23611c3e565b5060010190565b600082611c3957611c39611c54565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e6a57600080fdfea2646970667358221220f389d2374e194c4f25256b002a6cf507ef2d58403f5ced58e7c804f13dbcba0b64736f6c63430008060033697066733a2f2f516d58316870646738623767536345317071503463593156735243343155713752425a696a654e5565616836704a

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c806370a08231116100f7578063a22cb46511610095578063dbd30ae011610064578063dbd30ae0146104e8578063e8a3d485146104fd578063e985e9c514610512578063f2fde38b1461055b57600080fd5b8063a22cb46514610472578063b88d4fde14610492578063bf8fbbd2146104b2578063c87b56dd146104c857600080fd5b80638da5cb5b116100d15780638da5cb5b1461040c578063938e3d7b1461042a57806395d89b411461044a578063a0712d681461045f57600080fd5b806370a08231146103c2578063715018a6146103e2578063853828b6146103f757600080fd5b806341cda2031161016f578063547520fe1161013e578063547520fe1461034857806355f804b3146103685780636352211e1461038857806367fd9b51146103a857600080fd5b806341cda203146102dc57806342842e0e146102f257806344a0d68a146103125780634bc44f621461033257600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd1461028357806323b872dd146102a657806332cb6b0c146102c657600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611927565b61057b565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105cd565b6040516101fe9190611a5b565b34801561023557600080fd5b506102496102443660046119aa565b61065f565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c3660046118fd565b6106f9565b005b34801561028f57600080fd5b5061029861080f565b6040519081526020016101fe565b3480156102b257600080fd5b506102816102c1366004611809565b61081f565b3480156102d257600080fd5b5061029861271081565b3480156102e857600080fd5b50610298600b5481565b3480156102fe57600080fd5b5061028161030d366004611809565b610850565b34801561031e57600080fd5b5061028161032d3660046119aa565b61086b565b34801561033e57600080fd5b50610298600c5481565b34801561035457600080fd5b506102816103633660046119aa565b61089a565b34801561037457600080fd5b50610281610383366004611961565b6108c9565b34801561039457600080fd5b506102496103a33660046119aa565b61090a565b3480156103b457600080fd5b50600d546101f29060ff1681565b3480156103ce57600080fd5b506102986103dd3660046117bb565b610981565b3480156103ee57600080fd5b50610281610a08565b34801561040357600080fd5b50610281610a3e565b34801561041857600080fd5b506006546001600160a01b0316610249565b34801561043657600080fd5b50610281610445366004611961565b610a8c565b34801561045657600080fd5b5061021c610ac9565b61028161046d3660046119aa565b610ad8565b34801561047e57600080fd5b5061028161048d3660046118c1565b610c67565b34801561049e57600080fd5b506102816104ad366004611845565b610c72565b3480156104be57600080fd5b50610298600a5481565b3480156104d457600080fd5b5061021c6104e33660046119aa565b610caa565b3480156104f457600080fd5b50610281610d85565b34801561050957600080fd5b5061021c610dc3565b34801561051e57600080fd5b506101f261052d3660046117d6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561056757600080fd5b506102816105763660046117bb565b610dd2565b60006001600160e01b031982166380ac58cd60e01b14806105ac57506001600160e01b03198216635b5e139f60e01b145b806105c757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546105dc90611bd4565b80601f016020809104026020016040519081016040528092919081815260200182805461060890611bd4565b80156106555780601f1061062a57610100808354040283529160200191610655565b820191906000526020600020905b81548152906001019060200180831161063857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106dd5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107048261090a565b9050806001600160a01b0316836001600160a01b031614156107725760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106d4565b336001600160a01b038216148061078e575061078e813361052d565b6108005760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106d4565b61080a8383610e6d565b505050565b600061081a60075490565b905090565b6108293382610edb565b6108455760405162461bcd60e51b81526004016106d490611af5565b61080a838383610fd2565b61080a83838360405180602001604052806000815250610c72565b6006546001600160a01b031633146108955760405162461bcd60e51b81526004016106d490611ac0565b600a55565b6006546001600160a01b031633146108c45760405162461bcd60e51b81526004016106d490611ac0565b600c55565b6006546001600160a01b031633146108f35760405162461bcd60e51b81526004016106d490611ac0565b8051610906906008906020840190611690565b5050565b6000818152600260205260408120546001600160a01b0316806105c75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106d4565b60006001600160a01b0382166109ec5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106d4565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610a325760405162461bcd60e51b81526004016106d490611ac0565b610a3c600061116e565b565b6006546001600160a01b03163314610a685760405162461bcd60e51b81526004016106d490611ac0565b60405133904780156108fc02916000818181858888f19350505050610a3c57600080fd5b6006546001600160a01b03163314610ab65760405162461bcd60e51b81526004016106d490611ac0565b8051610906906009906020840190611690565b6060600180546105dc90611bd4565b600d5460ff16610b1f5760405162461bcd60e51b815260206004820152601260248201527153414c45204953204e4f542041435449564560701b60448201526064016106d4565b600c54811115610b645760405162461bcd60e51b815260206004820152601060248201526f13505608135253950814915050d2115160821b60448201526064016106d4565b61271081610b7061080f565b610b7a9190611b46565b1115610bc85760405162461bcd60e51b815260206004820152601860248201527f414c4c2042454152532048415645204245454e20534f4c44000000000000000060448201526064016106d4565b600b5481610bd461080f565b610bde9190611b46565b1115610c415780600a54610bf29190611b72565b341015610c415760405162461bcd60e51b815260206004820152601760248201527f4e4f5420454e4f55474820455448205741532053454e5400000000000000000060448201526064016106d4565b60005b8181101561090657610c55336111c0565b80610c5f81611c0f565b915050610c44565b6109063383836111e5565b610c7c3383610edb565b610c985760405162461bcd60e51b81526004016106d490611af5565b610ca4848484846112b4565b50505050565b6000818152600260205260409020546060906001600160a01b0316610d295760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106d4565b6000610d336112e7565b90506000815111610d535760405180602001604052806000815250610d7e565b80610d5d846112f6565b604051602001610d6e9291906119ef565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610daf5760405162461bcd60e51b81526004016106d490611ac0565b600d805460ff19811660ff90911615179055565b6060600980546105dc90611bd4565b6006546001600160a01b03163314610dfc5760405162461bcd60e51b81526004016106d490611ac0565b6001600160a01b038116610e615760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106d4565b610e6a8161116e565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610ea28261090a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610f545760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106d4565b6000610f5f8361090a565b9050806001600160a01b0316846001600160a01b03161480610fa657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610fca5750836001600160a01b0316610fbf8461065f565b6001600160a01b0316145b949350505050565b826001600160a01b0316610fe58261090a565b6001600160a01b0316146110495760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016106d4565b6001600160a01b0382166110ab5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106d4565b6110b6600082610e6d565b6001600160a01b03831660009081526003602052604081208054600192906110df908490611b91565b90915550506001600160a01b038216600090815260036020526040812080546001929061110d908490611b46565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006111cb60075490565b90506111db600780546001019055565b61090682826113f4565b816001600160a01b0316836001600160a01b031614156112475760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106d4565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6112bf848484610fd2565b6112cb8484848461140e565b610ca45760405162461bcd60e51b81526004016106d490611a6e565b6060600880546105dc90611bd4565b60608161131a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611344578061132e81611c0f565b915061133d9050600a83611b5e565b915061131e565b60008167ffffffffffffffff81111561135f5761135f611c80565b6040519080825280601f01601f191660200182016040528015611389576020820181803683370190505b5090505b8415610fca5761139e600183611b91565b91506113ab600a86611c2a565b6113b6906030611b46565b60f81b8183815181106113cb576113cb611c6a565b60200101906001600160f81b031916908160001a9053506113ed600a86611b5e565b945061138d565b61090682826040518060200160405280600081525061151b565b60006001600160a01b0384163b1561151057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611452903390899088908890600401611a1e565b602060405180830381600087803b15801561146c57600080fd5b505af192505050801561149c575060408051601f3d908101601f1916820190925261149991810190611944565b60015b6114f6573d8080156114ca576040519150601f19603f3d011682016040523d82523d6000602084013e6114cf565b606091505b5080516114ee5760405162461bcd60e51b81526004016106d490611a6e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fca565b506001949350505050565b611525838361154e565b611532600084848461140e565b61080a5760405162461bcd60e51b81526004016106d490611a6e565b6001600160a01b0382166115a45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106d4565b6000818152600260205260409020546001600160a01b0316156116095760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106d4565b6001600160a01b0382166000908152600360205260408120805460019290611632908490611b46565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461169c90611bd4565b90600052602060002090601f0160209004810192826116be5760008555611704565b82601f106116d757805160ff1916838001178555611704565b82800160010185558215611704579182015b828111156117045782518255916020019190600101906116e9565b50611710929150611714565b5090565b5b808211156117105760008155600101611715565b600067ffffffffffffffff8084111561174457611744611c80565b604051601f8501601f19908116603f0116810190828211818310171561176c5761176c611c80565b8160405280935085815286868601111561178557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146117b657600080fd5b919050565b6000602082840312156117cd57600080fd5b610d7e8261179f565b600080604083850312156117e957600080fd5b6117f28361179f565b91506118006020840161179f565b90509250929050565b60008060006060848603121561181e57600080fd5b6118278461179f565b92506118356020850161179f565b9150604084013590509250925092565b6000806000806080858703121561185b57600080fd5b6118648561179f565b93506118726020860161179f565b925060408501359150606085013567ffffffffffffffff81111561189557600080fd5b8501601f810187136118a657600080fd5b6118b587823560208401611729565b91505092959194509250565b600080604083850312156118d457600080fd5b6118dd8361179f565b9150602083013580151581146118f257600080fd5b809150509250929050565b6000806040838503121561191057600080fd5b6119198361179f565b946020939093013593505050565b60006020828403121561193957600080fd5b8135610d7e81611c96565b60006020828403121561195657600080fd5b8151610d7e81611c96565b60006020828403121561197357600080fd5b813567ffffffffffffffff81111561198a57600080fd5b8201601f8101841361199b57600080fd5b610fca84823560208401611729565b6000602082840312156119bc57600080fd5b5035919050565b600081518084526119db816020860160208601611ba8565b601f01601f19169290920160200192915050565b60008351611a01818460208801611ba8565b835190830190611a15818360208801611ba8565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a51908301846119c3565b9695505050505050565b602081526000610d7e60208301846119c3565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611b5957611b59611c3e565b500190565b600082611b6d57611b6d611c54565b500490565b6000816000190483118215151615611b8c57611b8c611c3e565b500290565b600082821015611ba357611ba3611c3e565b500390565b60005b83811015611bc3578181015183820152602001611bab565b83811115610ca45750506000910152565b600181811c90821680611be857607f821691505b60208210811415611c0957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611c2357611c23611c3e565b5060010190565b600082611c3957611c39611c54565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e6a57600080fdfea2646970667358221220f389d2374e194c4f25256b002a6cf507ef2d58403f5ced58e7c804f13dbcba0b64736f6c63430008060033

Deployed Bytecode Sourcemap

38798:2242:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25612:305;;;;;;;;;;-1:-1:-1;25612:305:0;;;;;:::i;:::-;;:::i;:::-;;;5646:14:1;;5639:22;5621:41;;5609:2;5594:18;25612:305:0;;;;;;;;26557:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28117:221::-;;;;;;;;;;-1:-1:-1;28117:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4944:32:1;;;4926:51;;4914:2;4899:18;28117:221:0;4881:102:1;27640:411:0;;;;;;;;;;-1:-1:-1;27640:411:0;;;;;:::i;:::-;;:::i;:::-;;40603:104;;;;;;;;;;;;;:::i;:::-;;;13818:25:1;;;13806:2;13791:18;40603:104:0;13773:76:1;28867:339:0;;;;;;;;;;-1:-1:-1;28867:339:0;;;;;:::i;:::-;;:::i;38984:42::-;;;;;;;;;;;;39021:5;38984:42;;39072:35;;;;;;;;;;;;;;;;29277:185;;;;;;;;;;-1:-1:-1;29277:185:0;;;;;:::i;:::-;;:::i;40715:88::-;;;;;;;;;;-1:-1:-1;40715:88:0;;;;;:::i;:::-;;:::i;39114:35::-;;;;;;;;;;;;;;;;40811:101;;;;;;;;;;-1:-1:-1;40811:101:0;;;;;:::i;:::-;;:::i;40490:105::-;;;;;;;;;;-1:-1:-1;40490:105:0;;;;;:::i;:::-;;:::i;26251:239::-;;;;;;;;;;-1:-1:-1;26251:239:0;;;;;:::i;:::-;;:::i;39156:35::-;;;;;;;;;;-1:-1:-1;39156:35:0;;;;;;;;25981:208;;;;;;;;;;-1:-1:-1;25981:208:0;;;;;:::i;:::-;;:::i;6195:103::-;;;;;;;;;;;;;:::i;40920:117::-;;;;;;;;;;;;;:::i;5544:87::-;;;;;;;;;;-1:-1:-1;5617:6:0;;-1:-1:-1;;;;;5617:6:0;5544:87;;40361:121;;;;;;;;;;-1:-1:-1;40361:121:0;;;;;:::i;:::-;;:::i;26726:104::-;;;;;;;;;;;;;:::i;39454:511::-;;;;;;:::i;:::-;;:::i;28410:155::-;;;;;;;;;;-1:-1:-1;28410:155:0;;;;;:::i;:::-;;:::i;29533:328::-;;;;;;;;;;-1:-1:-1;29533:328:0;;;;;:::i;:::-;;:::i;39033:32::-;;;;;;;;;;;;;;;;26901:334;;;;;;;;;;-1:-1:-1;26901:334:0;;;;;:::i;:::-;;:::i;39973:95::-;;;;;;;;;;;;;:::i;40256:97::-;;;;;;;;;;;;;:::i;28636:164::-;;;;;;;;;;-1:-1:-1;28636:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28757:25:0;;;28733:4;28757:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28636:164;6453:201;;;;;;;;;;-1:-1:-1;6453:201:0;;;;;:::i;:::-;;:::i;25612:305::-;25714:4;-1:-1:-1;;;;;;25751:40:0;;-1:-1:-1;;;25751:40:0;;:105;;-1:-1:-1;;;;;;;25808:48:0;;-1:-1:-1;;;25808:48:0;25751:105;:158;;;-1:-1:-1;;;;;;;;;;18460:40:0;;;25873:36;25731:178;25612:305;-1:-1:-1;;25612:305:0:o;26557:100::-;26611:13;26644:5;26637:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26557:100;:::o;28117:221::-;28193:7;31460:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31460:16:0;28213:73;;;;-1:-1:-1;;;28213:73:0;;11167:2:1;28213:73:0;;;11149:21:1;11206:2;11186:18;;;11179:30;11245:34;11225:18;;;11218:62;-1:-1:-1;;;11296:18:1;;;11289:42;11348:19;;28213:73:0;;;;;;;;;-1:-1:-1;28306:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28306:24:0;;28117:221::o;27640:411::-;27721:13;27737:23;27752:7;27737:14;:23::i;:::-;27721:39;;27785:5;-1:-1:-1;;;;;27779:11:0;:2;-1:-1:-1;;;;;27779:11:0;;;27771:57;;;;-1:-1:-1;;;27771:57:0;;12357:2:1;27771:57:0;;;12339:21:1;12396:2;12376:18;;;12369:30;12435:34;12415:18;;;12408:62;-1:-1:-1;;;12486:18:1;;;12479:31;12527:19;;27771:57:0;12329:223:1;27771:57:0;4348:10;-1:-1:-1;;;;;27863:21:0;;;;:62;;-1:-1:-1;27888:37:0;27905:5;4348:10;28636:164;:::i;27888:37::-;27841:168;;;;-1:-1:-1;;;27841:168:0;;9560:2:1;27841:168:0;;;9542:21:1;9599:2;9579:18;;;9572:30;9638:34;9618:18;;;9611:62;9709:26;9689:18;;;9682:54;9753:19;;27841:168:0;9532:246:1;27841:168:0;28022:21;28031:2;28035:7;28022:8;:21::i;:::-;27710:341;27640:411;;:::o;40603:104::-;40647:7;40674:25;:15;964:14;;872:114;40674:25;40667:32;;40603:104;:::o;28867:339::-;29062:41;4348:10;29095:7;29062:18;:41::i;:::-;29054:103;;;;-1:-1:-1;;;29054:103:0;;;;;;;:::i;:::-;29170:28;29180:4;29186:2;29190:7;29170:9;:28::i;29277:185::-;29415:39;29432:4;29438:2;29442:7;29415:39;;;;;;;;;;;;:16;:39::i;40715:88::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;40780:4:::1;:15:::0;40715:88::o;40811:101::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;40878:16:::1;:26:::0;40811:101::o;40490:105::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;40566:21;;::::1;::::0;:8:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;40490:105:::0;:::o;26251:239::-;26323:7;26359:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26359:16:0;26394:19;26386:73;;;;-1:-1:-1;;;26386:73:0;;10396:2:1;26386:73:0;;;10378:21:1;10435:2;10415:18;;;10408:30;10474:34;10454:18;;;10447:62;-1:-1:-1;;;10525:18:1;;;10518:39;10574:19;;26386:73:0;10368:231:1;25981:208:0;26053:7;-1:-1:-1;;;;;26081:19:0;;26073:74;;;;-1:-1:-1;;;26073:74:0;;9985:2:1;26073:74:0;;;9967:21:1;10024:2;10004:18;;;9997:30;10063:34;10043:18;;;10036:62;-1:-1:-1;;;10114:18:1;;;10107:40;10164:19;;26073:74:0;9957:232:1;26073:74:0;-1:-1:-1;;;;;;26165:16:0;;;;;:9;:16;;;;;;;25981:208::o;6195:103::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;40920:117::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;40981:47:::1;::::0;40989:10:::1;::::0;41006:21:::1;40981:47:::0;::::1;;;::::0;::::1;::::0;;;41006:21;40989:10;40981:47;::::1;;;;;;40973:56;;;::::0;::::1;40361:121:::0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;40445:29;;::::1;::::0;:12:::1;::::0;:29:::1;::::0;::::1;::::0;::::1;:::i;26726:104::-:0;26782:13;26815:7;26808:14;;;;;:::i;39454:511::-;39522:15;;;;39514:46;;;;-1:-1:-1;;;39514:46:0;;6099:2:1;39514:46:0;;;6081:21:1;6138:2;6118:18;;;6111:30;-1:-1:-1;;;6157:18:1;;;6150:48;6215:18;;39514:46:0;6071:168:1;39514:46:0;39591:16;;39579:8;:28;;39571:57;;;;-1:-1:-1;;;39571:57:0;;13177:2:1;39571:57:0;;;13159:21:1;13216:2;13196:18;;;13189:30;-1:-1:-1;;;13235:18:1;;;13228:46;13291:18;;39571:57:0;13149:166:1;39571:57:0;39021:5;39663:8;39647:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;39639:75;;;;-1:-1:-1;;;39639:75:0;;6446:2:1;39639:75:0;;;6428:21:1;6485:2;6465:18;;;6458:30;6524:26;6504:18;;;6497:54;6568:18;;39639:75:0;6418:174:1;39639:75:0;39756:13;;39745:8;39729:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:40;39725:137;;;39814:8;39807:4;;:15;;;;:::i;:::-;39794:9;:28;;39786:64;;;;-1:-1:-1;;;39786:64:0;;13522:2:1;39786:64:0;;;13504:21:1;13561:2;13541:18;;;13534:30;13600:25;13580:18;;;13573:53;13643:18;;39786:64:0;13494:173:1;39786:64:0;39877:9;39872:86;39896:8;39892:1;:12;39872:86;;;39926:20;39935:10;39926:8;:20::i;:::-;39906:3;;;;:::i;:::-;;;;39872:86;;28410:155;28505:52;4348:10;28538:8;28548;28505:18;:52::i;29533:328::-;29708:41;4348:10;29741:7;29708:18;:41::i;:::-;29700:103;;;;-1:-1:-1;;;29700:103:0;;;;;;;:::i;:::-;29814:39;29828:4;29834:2;29838:7;29847:5;29814:13;:39::i;:::-;29533:328;;;;:::o;26901:334::-;31436:4;31460:16;;;:7;:16;;;;;;26974:13;;-1:-1:-1;;;;;31460:16:0;27000:76;;;;-1:-1:-1;;;27000:76:0;;11941:2:1;27000:76:0;;;11923:21:1;11980:2;11960:18;;;11953:30;12019:34;11999:18;;;11992:62;-1:-1:-1;;;12070:18:1;;;12063:45;12125:19;;27000:76:0;11913:237:1;27000:76:0;27089:21;27113:10;:8;:10::i;:::-;27089:34;;27165:1;27147:7;27141:21;:25;:86;;;;;;;;;;;;;;;;;27193:7;27202:18;:7;:16;:18::i;:::-;27176:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27141:86;27134:93;26901:334;-1:-1:-1;;;26901:334:0:o;39973:95::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;40045:15:::1;::::0;;-1:-1:-1;;40026:34:0;::::1;40045:15;::::0;;::::1;40044:16;40026:34;::::0;;39973:95::o;40256:97::-;40300:13;40333:12;40326:19;;;;;:::i;6453:201::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6542:22:0;::::1;6534:73;;;::::0;-1:-1:-1;;;6534:73:0;;7218:2:1;6534:73:0::1;::::0;::::1;7200:21:1::0;7257:2;7237:18;;;7230:30;7296:34;7276:18;;;7269:62;-1:-1:-1;;;7347:18:1;;;7340:36;7393:19;;6534:73:0::1;7190:228:1::0;6534:73:0::1;6618:28;6637:8;6618:18;:28::i;:::-;6453:201:::0;:::o;35517:174::-;35592:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35592:29:0;-1:-1:-1;;;;;35592:29:0;;;;;;;;:24;;35646:23;35592:24;35646:14;:23::i;:::-;-1:-1:-1;;;;;35637:46:0;;;;;;;;;;;35517:174;;:::o;31665:348::-;31758:4;31460:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31460:16:0;31775:73;;;;-1:-1:-1;;;31775:73:0;;9147:2:1;31775:73:0;;;9129:21:1;9186:2;9166:18;;;9159:30;9225:34;9205:18;;;9198:62;-1:-1:-1;;;9276:18:1;;;9269:42;9328:19;;31775:73:0;9119:234:1;31775:73:0;31859:13;31875:23;31890:7;31875:14;:23::i;:::-;31859:39;;31928:5;-1:-1:-1;;;;;31917:16:0;:7;-1:-1:-1;;;;;31917:16:0;;:52;;;-1:-1:-1;;;;;;28757:25:0;;;28733:4;28757:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31937:32;31917:87;;;;31997:7;-1:-1:-1;;;;;31973:31:0;:20;31985:7;31973:11;:20::i;:::-;-1:-1:-1;;;;;31973:31:0;;31917:87;31909:96;31665:348;-1:-1:-1;;;;31665:348:0:o;34774:625::-;34933:4;-1:-1:-1;;;;;34906:31:0;:23;34921:7;34906:14;:23::i;:::-;-1:-1:-1;;;;;34906:31:0;;34898:81;;;;-1:-1:-1;;;34898:81:0;;7625:2:1;34898:81:0;;;7607:21:1;7664:2;7644:18;;;7637:30;7703:34;7683:18;;;7676:62;-1:-1:-1;;;7754:18:1;;;7747:35;7799:19;;34898:81:0;7597:227:1;34898:81:0;-1:-1:-1;;;;;34998:16:0;;34990:65;;;;-1:-1:-1;;;34990:65:0;;8388:2:1;34990:65:0;;;8370:21:1;8427:2;8407:18;;;8400:30;8466:34;8446:18;;;8439:62;-1:-1:-1;;;8517:18:1;;;8510:34;8561:19;;34990:65:0;8360:226:1;34990:65:0;35172:29;35189:1;35193:7;35172:8;:29::i;:::-;-1:-1:-1;;;;;35214:15:0;;;;;;:9;:15;;;;;:20;;35233:1;;35214:15;:20;;35233:1;;35214:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35245:13:0;;;;;;:9;:13;;;;;:18;;35262:1;;35245:13;:18;;35262:1;;35245:18;:::i;:::-;;;;-1:-1:-1;;35274:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35274:21:0;-1:-1:-1;;;;;35274:21:0;;;;;;;;;35313:27;;35274:16;;35313:27;;;;;;;27710:341;27640:411;;:::o;6814:191::-;6907:6;;;-1:-1:-1;;;;;6924:17:0;;;-1:-1:-1;;;;;;6924:17:0;;;;;;;6957:40;;6907:6;;;6924:17;6907:6;;6957:40;;6888:16;;6957:40;6877:128;6814:191;:::o;40076:172::-;40126:15;40144:25;:15;964:14;;872:114;40144:25;40126:43;;40180:27;:15;1083:19;;1101:1;1083:19;;;994:127;40180:27;40218:22;40228:2;40232:7;40218:9;:22::i;35833:315::-;35988:8;-1:-1:-1;;;;;35979:17:0;:5;-1:-1:-1;;;;;35979:17:0;;;35971:55;;;;-1:-1:-1;;;35971:55:0;;8793:2:1;35971:55:0;;;8775:21:1;8832:2;8812:18;;;8805:30;8871:27;8851:18;;;8844:55;8916:18;;35971:55:0;8765:175:1;35971:55:0;-1:-1:-1;;;;;36037:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36037:46:0;;;;;;;;;;36099:41;;5621::1;;;36099::0;;5594:18:1;36099:41:0;;;;;;;35833:315;;;:::o;30743:::-;30900:28;30910:4;30916:2;30920:7;30900:9;:28::i;:::-;30947:48;30970:4;30976:2;30980:7;30989:5;30947:22;:48::i;:::-;30939:111;;;;-1:-1:-1;;;30939:111:0;;;;;;;:::i;39345:101::-;39397:13;39430:8;39423:15;;;;;:::i;1830:723::-;1886:13;2107:10;2103:53;;-1:-1:-1;;2134:10:0;;;;;;;;;;;;-1:-1:-1;;;2134:10:0;;;;;1830:723::o;2103:53::-;2181:5;2166:12;2222:78;2229:9;;2222:78;;2255:8;;;;:::i;:::-;;-1:-1:-1;2278:10:0;;-1:-1:-1;2286:2:0;2278:10;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2332:17:0;;2310:39;;2360:154;2367:10;;2360:154;;2394:11;2404:1;2394:11;;:::i;:::-;;-1:-1:-1;2463:10:0;2471:2;2463:5;:10;:::i;:::-;2450:24;;:2;:24;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2420:56:0;;;;;;;;-1:-1:-1;2491:11:0;2500:2;2491:11;;:::i;:::-;;;2360:154;;32355:110;32431:26;32441:2;32445:7;32431:26;;;;;;;;;;;;:9;:26::i;36713:799::-;36868:4;-1:-1:-1;;;;;36889:13:0;;8540:19;:23;36885:620;;36925:72;;-1:-1:-1;;;36925:72:0;;-1:-1:-1;;;;;36925:36:0;;;;;:72;;4348:10;;36976:4;;36982:7;;36991:5;;36925:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36925:72:0;;;;;;;;-1:-1:-1;;36925:72:0;;;;;;;;;;;;:::i;:::-;;;36921:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37167:13:0;;37163:272;;37210:60;;-1:-1:-1;;;37210:60:0;;;;;;;:::i;37163:272::-;37385:6;37379:13;37370:6;37366:2;37362:15;37355:38;36921:529;-1:-1:-1;;;;;;37048:51:0;-1:-1:-1;;;37048:51:0;;-1:-1:-1;37041:58:0;;36885:620;-1:-1:-1;37489:4:0;36713:799;;;;;;:::o;32692:321::-;32822:18;32828:2;32832:7;32822:5;:18::i;:::-;32873:54;32904:1;32908:2;32912:7;32921:5;32873:22;:54::i;:::-;32851:154;;;;-1:-1:-1;;;32851:154:0;;;;;;;:::i;33349:439::-;-1:-1:-1;;;;;33429:16:0;;33421:61;;;;-1:-1:-1;;;33421:61:0;;10806:2:1;33421:61:0;;;10788:21:1;;;10825:18;;;10818:30;10884:34;10864:18;;;10857:62;10936:18;;33421:61:0;10778:182:1;33421:61:0;31436:4;31460:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31460:16:0;:30;33493:58;;;;-1:-1:-1;;;33493:58:0;;8031:2:1;33493:58:0;;;8013:21:1;8070:2;8050:18;;;8043:30;8109;8089:18;;;8082:58;8157:18;;33493:58:0;8003:178:1;33493:58:0;-1:-1:-1;;;;;33622:13:0;;;;;;:9;:13;;;;;:18;;33639:1;;33622:13;:18;;33639:1;;33622:18;:::i;:::-;;;;-1:-1:-1;;33651:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33651:21:0;-1:-1:-1;;;;;33651:21:0;;;;;;;;33690:33;;33651:16;;;33690:33;;33651:16;;33690:33;40566:21:::1;40490:105:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;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:2;;;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:2;;;532:1;529;522:12;491:2;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;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;956:1;953;946:12;908:2;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:2;;;1164:1;1161;1154:12;1116:2;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1106:173;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:2;;;1446:1;1443;1436:12;1398:2;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;;1388:224;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:2;;;1806:1;1803;1796:12;1757:2;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:2;;;2076:1;2073;2066:12;2030:2;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:2:1;;2181:1;2178;2171:12;2130:2;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1747:536;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:2;;;2430:1;2427;2420:12;2382:2;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:2;;2601:1;2598;2591:12;2545:2;2624:5;2614:15;;;2372:263;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:2;;;2785:1;2782;2775:12;2737:2;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2727:167:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:2;;;3026:1;3023;3016:12;2978:2;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:2;;;3287:1;3284;3277:12;3239:2;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:2;;;3541:1;3538;3531:12;3493:2;3581:9;3568:23;3614:18;3606:6;3603:30;3600:2;;;3646:1;3643;3636:12;3600:2;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:2:1;;3751:1;3748;3741:12;3700:2;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:2;;;3986:1;3983;3976:12;3938:2;-1:-1:-1;4009:23:1;;3928:110;-1:-1:-1;3928:110: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;;4092:208;-1:-1:-1;;4092:208: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;;4492:283;-1:-1:-1;;;;4492:283:1:o;4988:488::-;-1:-1:-1;;;;;5257:15:1;;;5239:34;;5309:15;;5304:2;5289:18;;5282:43;5356:2;5341:18;;5334:34;;;5404:3;5399:2;5384:18;;5377:31;;;5182:4;;5425:45;;5450:19;;5442:6;5425:45;:::i;:::-;5417:53;5191:285;-1:-1:-1;;;;;;5191:285:1:o;5673:219::-;5822:2;5811:9;5804:21;5785:4;5842:44;5882:2;5871:9;5867:18;5859:6;5842:44;:::i;6597:414::-;6799:2;6781:21;;;6838:2;6818:18;;;6811:30;6877:34;6872:2;6857:18;;6850:62;-1:-1:-1;;;6943:2:1;6928:18;;6921:48;7001:3;6986:19;;6771:240::o;11378:356::-;11580:2;11562:21;;;11599:18;;;11592:30;11658:34;11653:2;11638:18;;11631:62;11725:2;11710:18;;11552:182::o;12557:413::-;12759:2;12741:21;;;12798:2;12778:18;;;12771:30;12837:34;12832:2;12817:18;;12810:62;-1:-1:-1;;;12903:2:1;12888:18;;12881:47;12960:3;12945:19;;12731:239::o;13854:128::-;13894:3;13925:1;13921:6;13918:1;13915:13;13912:2;;;13931:18;;:::i;:::-;-1:-1:-1;13967:9:1;;13902:80::o;13987:120::-;14027:1;14053;14043:2;;14058:18;;:::i;:::-;-1:-1:-1;14092:9:1;;14033:74::o;14112:168::-;14152:7;14218:1;14214;14210:6;14206:14;14203:1;14200:21;14195:1;14188:9;14181:17;14177:45;14174:2;;;14225:18;;:::i;:::-;-1:-1:-1;14265:9:1;;14164:116::o;14285:125::-;14325:4;14353:1;14350;14347:8;14344:2;;;14358:18;;:::i;:::-;-1:-1:-1;14395:9:1;;14334:76::o;14415:258::-;14487:1;14497:113;14511:6;14508:1;14505:13;14497:113;;;14587:11;;;14581:18;14568:11;;;14561:39;14533:2;14526:10;14497:113;;;14628:6;14625:1;14622:13;14619:2;;;-1:-1:-1;;14663:1:1;14645:16;;14638:27;14468:205::o;14678:380::-;14757:1;14753:12;;;;14800;;;14821:2;;14875:4;14867:6;14863:17;14853:27;;14821:2;14928;14920:6;14917:14;14897:18;14894:38;14891:2;;;14974:10;14969:3;14965:20;14962:1;14955:31;15009:4;15006:1;14999:15;15037:4;15034:1;15027:15;14891:2;;14733:325;;;:::o;15063:135::-;15102:3;-1:-1:-1;;15123:17:1;;15120:2;;;15143:18;;:::i;:::-;-1:-1:-1;15190:1:1;15179:13;;15110:88::o;15203:112::-;15235:1;15261;15251:2;;15266:18;;:::i;:::-;-1:-1:-1;15300:9:1;;15241:74::o;15320:127::-;15381:10;15376:3;15372:20;15369:1;15362:31;15412:4;15409:1;15402:15;15436:4;15433:1;15426:15;15452:127;15513:10;15508:3;15504:20;15501:1;15494:31;15544:4;15541:1;15534:15;15568:4;15565:1;15558:15;15584:127;15645:10;15640:3;15636:20;15633:1;15626:31;15676:4;15673:1;15666:15;15700:4;15697:1;15690:15;15716:127;15777:10;15772:3;15768:20;15765:1;15758:31;15808:4;15805:1;15798:15;15832:4;15829:1;15822:15;15848:131;-1:-1:-1;;;;;;15922:32:1;;15912:43;;15902:2;;15969:1;15966;15959:12

Swarm Source

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