ETH Price: $3,163.01 (-8.87%)
Gas: 4 Gwei

Token

Versette (VST)
 

Overview

Max Total Supply

7,777 VST

Holders

9

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
*🖕️upayme.eth
Balance
1 VST
0x849393c5748023828c816c4f634d80cd63636803
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:
Versette

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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

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);
}

pragma solidity ^0.8.0;



/// @author 1001.digital
/// @title A token tracker that limits the token supply and increments token IDs on each new mint.
abstract contract WithLimitedSupply {
    using Counters for Counters.Counter;

    // Keeps track of how many we have minted
    Counters.Counter private _tokenCount;

    /// @dev The maximum count of tokens this token tracker will hold.
    uint256 private _totalSupply;

    /// Instanciate the contract
    /// @param totalSupply_ how many tokens this collection should hold
    constructor (uint256 totalSupply_) {
        _totalSupply = totalSupply_;
    }

    /// @dev Get the max Supply
    /// @return the maximum token count
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /// @dev Get the current token count
    /// @return the created token count
    function tokenCount() public view returns (uint256) {
        return _tokenCount.current();
    }

    /// @dev Check whether tokens are still available
    /// @return the available token count
    function availableTokenCount() public view returns (uint256) {
        return totalSupply() - tokenCount();
    }

    /// @dev Increment the token count and fetch the latest count
    /// @return the next token id
    function nextToken() internal virtual ensureAvailability returns (uint256) {
        uint256 token = _tokenCount.current();

        _tokenCount.increment();

        return token;
    }

    /// @dev Check whether another token is still available
    modifier ensureAvailability() {
        require(availableTokenCount() > 0, "No more tokens available");
        _;
    }

    /// @param amount Check whether number of tokens are still available
    /// @dev Check whether tokens are still available
    modifier ensureAvailabilityFor(uint256 amount) {
        require(availableTokenCount() >= amount, "Requested number of tokens not available");
        _;
    }
}

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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);
}

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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);
    }
}

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

pragma solidity ^0.8.0;


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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() {
        _setOwner(_msgSender());
    }

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

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

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

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

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

pragma solidity ^0.8.0;


abstract contract RandomlyAssigned is WithLimitedSupply {
    // Used for random index assignment
    mapping(uint256 => uint256) private tokenMatrix;

    // The initial token ID
    uint256 private startFrom;

    /// Instanciate the contract
    /// @param _totalSupply how many tokens this collection should hold
    /// @param _startFrom the tokenID with which to start counting
    constructor (uint256 _totalSupply, uint256 _startFrom)
        WithLimitedSupply(_totalSupply)
    {
        startFrom = _startFrom;
    }

    /// Get the next token ID
    /// @dev Randomly gets a new token ID and keeps track of the ones that are still available.
    /// @return the next token ID
    function nextToken() internal override ensureAvailability returns (uint256) {
        uint256 maxIndex = totalSupply() - tokenCount();
        uint256 random = uint256(keccak256(
            abi.encodePacked(
                msg.sender,
                block.coinbase,
                block.difficulty,
                block.gaslimit,
                block.timestamp
            )
        )) % maxIndex;

        uint256 value = 0;
        if (tokenMatrix[random] == 0) {
            // If this matrix position is empty, set the value to the generated random number.
            value = random;
        } else {
            // Otherwise, use the previously stored number from the matrix.
            value = tokenMatrix[random];
        }

        // If the last available tokenID is still unused...
        if (tokenMatrix[maxIndex - 1] == 0) {
            // ...store that ID in the current matrix position.
            tokenMatrix[random] = maxIndex - 1;
        } else {
            // ...otherwise copy over the stored number to the current matrix position.
            tokenMatrix[random] = tokenMatrix[maxIndex - 1];
        }

        // Increment counts
        super.nextToken();

        return value + startFrom;
    }
}

pragma solidity ^0.8.0;


contract Versette is ERC721, Ownable, RandomlyAssigned {
  using Strings for uint256;
  // uint256 public requested;
  uint256 public price = .05 ether;
  uint256 public currentSupply = 0;
  bool public saleIsActive = false;
  string public baseURI = "ipfs://QmPiLrS2Hx8eeV7DKk71SyFPKxBTcGUEM8HSQocW4GXS7a/";

   constructor() 
    ERC721("Versette", "VST")
    RandomlyAssigned(7777,1) // Max. 7777 NFTs available; Start counting from 1 (instead of 0)
    {}

  

  function reserve () public onlyOwner() {
       for (uint256 a = 1; a <= 77; a++) {
            mint(msg.sender);
        }
  }

  function mint (address _to)
      public
      payable
  {
      require( tokenCount() + 1 <= totalSupply(), "YOU CAN'T MINT MORE THAN MAXIMUM SUPPLY");
      require( availableTokenCount() - 1 >= 0, "YOU CAN'T MINT MORE THAN AVALABLE TOKEN COUNT"); 
      require(saleIsActive, "Sale must be active to mint");
      require( tx.origin == msg.sender, "CANNOT MINT THROUGH A CUSTOM CONTRACT");

      if (msg.sender != owner()) {  
        require( msg.value >= price);
        require( balanceOf(msg.sender) <= 1);
        require( balanceOf(_to) <= 1);
      }
      
      uint256 id = nextToken();
        _safeMint(_to, id);
        currentSupply++;
  }
  function setPrice(uint256 _newPrice) public onlyOwner() {
     price = _newPrice;
 }

 function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

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

  function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
     require(
       _exists(tokenId),
       "ERC721Metadata: URI query for nonexistant token"
     );

     string memory currentBaseURI = _baseURI();
     return bytes(currentBaseURI).length > 0
         ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ".json"))
         : "";
   }
  
  function withdraw() public payable 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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"availableTokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserve","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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":"tokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

66b1a2bc2ec50000600b556000600c55600d805460ff1916905560e06040526036608081815290620021c160a03980516200004391600e916020909101906200013b565b503480156200005157600080fd5b506040805180820182526008815267566572736574746560c01b6020808301918252835180850190945260038452621594d560ea1b908401528151611e619360019385939092620000a5916000916200013b565b508051620000bb9060019060208401906200013b565b505050620000d8620000d2620000e560201b60201c565b620000e9565b600855600a55506200021e565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014990620001e1565b90600052602060002090601f0160209004810192826200016d5760008555620001b8565b82601f106200018857805160ff1916838001178555620001b8565b82800160010185558215620001b8579182015b82811115620001b85782518255916020019190600101906200019b565b50620001c6929150620001ca565b5090565b5b80821115620001c65760008155600101620001cb565b600281046001821680620001f657607f821691505b602082108114156200021857634e487b7160e01b600052602260045260246000fd5b50919050565b611f93806200022e6000396000f3fe6080604052600436106101b75760003560e01c8063771282f6116100ec578063b88d4fde1161008a578063e14ca35311610064578063e14ca3531461045d578063e985e9c514610472578063eb8d244414610492578063f2fde38b146104a7576101b7565b8063b88d4fde14610408578063c87b56dd14610428578063cd3293de14610448576101b7565b806395d89b41116100c657806395d89b41146103a95780639f181b5e146103be578063a035b1fe146103d3578063a22cb465146103e8576101b7565b8063771282f61461035f5780638da5cb5b1461037457806391b7f5ed14610389576101b7565b80633ccfd60b116101595780636a627842116101335780636a627842146103025780636c0360eb1461031557806370a082311461032a578063715018a61461034a576101b7565b80633ccfd60b146102ba57806342842e0e146102c25780636352211e146102e2576101b7565b8063095ea7b311610195578063095ea7b31461024157806318160ddd1461026357806323b872dd1461028557806334918dfd146102a5576101b7565b806301ffc9a7146101bc57806306fdde03146101f2578063081812fc14610214575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611711565b6104c7565b6040516101e99190611858565b60405180910390f35b3480156101fe57600080fd5b5061020761050f565b6040516101e99190611863565b34801561022057600080fd5b5061023461022f366004611749565b6105a1565b6040516101e99190611807565b34801561024d57600080fd5b5061026161025c3660046116e8565b6105ed565b005b34801561026f57600080fd5b50610278610685565b6040516101e99190611e23565b34801561029157600080fd5b506102616102a03660046115a7565b61068b565b3480156102b157600080fd5b506102616106c3565b610261610716565b3480156102ce57600080fd5b506102616102dd3660046115a7565b61077b565b3480156102ee57600080fd5b506102346102fd366004611749565b610796565b61026161031036600461155b565b6107cb565b34801561032157600080fd5b50610207610903565b34801561033657600080fd5b5061027861034536600461155b565b610991565b34801561035657600080fd5b506102616109d5565b34801561036b57600080fd5b50610278610a1e565b34801561038057600080fd5b50610234610a24565b34801561039557600080fd5b506102616103a4366004611749565b610a33565b3480156103b557600080fd5b50610207610a77565b3480156103ca57600080fd5b50610278610a86565b3480156103df57600080fd5b50610278610a97565b3480156103f457600080fd5b506102616104033660046116ae565b610a9d565b34801561041457600080fd5b506102616104233660046115e2565b610b6b565b34801561043457600080fd5b50610207610443366004611749565b610baa565b34801561045457600080fd5b50610261610c2d565b34801561046957600080fd5b50610278610c95565b34801561047e57600080fd5b506101dc61048d366004611575565b610cb1565b34801561049e57600080fd5b506101dc610cdf565b3480156104b357600080fd5b506102616104c236600461155b565b610ce8565b60006001600160e01b031982166380ac58cd60e01b14806104f857506001600160e01b03198216635b5e139f60e01b145b80610507575061050782610d56565b90505b919050565b60606000805461051e90611e9b565b80601f016020809104026020016040519081016040528092919081815260200182805461054a90611e9b565b80156105975780601f1061056c57610100808354040283529160200191610597565b820191906000526020600020905b81548152906001019060200180831161057a57829003601f168201915b5050505050905090565b60006105ac82610d6f565b6105d15760405162461bcd60e51b81526004016105c890611c78565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105f882610796565b9050806001600160a01b0316836001600160a01b0316141561062c5760405162461bcd60e51b81526004016105c890611d91565b806001600160a01b031661063e610d8c565b6001600160a01b0316148061065a575061065a8161048d610d8c565b6106765760405162461bcd60e51b81526004016105c890611b0c565b6106808383610d90565b505050565b60085490565b61069c610696610d8c565b82610dfe565b6106b85760405162461bcd60e51b81526004016105c890611dd2565b610680838383610e83565b6106cb610d8c565b6001600160a01b03166106dc610a24565b6001600160a01b0316146107025760405162461bcd60e51b81526004016105c890611cc4565b600d805460ff19811660ff90911615179055565b61071e610d8c565b6001600160a01b031661072f610a24565b6001600160a01b0316146107555760405162461bcd60e51b81526004016105c890611cc4565b60405133904780156108fc02916000818181858888f1935050505061077957600080fd5b565b61068083838360405180602001604052806000815250610b6b565b6000818152600260205260408120546001600160a01b0316806105075760405162461bcd60e51b81526004016105c890611bb3565b6107d3610685565b6107db610a86565b6107e6906001611e2c565b11156108045760405162461bcd60e51b81526004016105c890611bfc565b60006001610810610c95565b61081a9190611e58565b10156108385760405162461bcd60e51b81526004016105c89061198a565b600d5460ff1661085a5760405162461bcd60e51b81526004016105c890611a89565b3233146108795760405162461bcd60e51b81526004016105c890611945565b610881610a24565b6001600160a01b0316336001600160a01b0316146108d457600b543410156108a857600080fd5b60016108b333610991565b11156108be57600080fd5b60016108c982610991565b11156108d457600080fd5b60006108de610fb0565b90506108ea82826110f7565b600c80549060006108fa83611ed6565b91905055505050565b600e805461091090611e9b565b80601f016020809104026020016040519081016040528092919081815260200182805461093c90611e9b565b80156109895780601f1061095e57610100808354040283529160200191610989565b820191906000526020600020905b81548152906001019060200180831161096c57829003601f168201915b505050505081565b60006001600160a01b0382166109b95760405162461bcd60e51b81526004016105c890611b69565b506001600160a01b031660009081526003602052604090205490565b6109dd610d8c565b6001600160a01b03166109ee610a24565b6001600160a01b031614610a145760405162461bcd60e51b81526004016105c890611cc4565b6107796000611115565b600c5481565b6006546001600160a01b031690565b610a3b610d8c565b6001600160a01b0316610a4c610a24565b6001600160a01b031614610a725760405162461bcd60e51b81526004016105c890611cc4565b600b55565b60606001805461051e90611e9b565b6000610a926007611167565b905090565b600b5481565b610aa5610d8c565b6001600160a01b0316826001600160a01b03161415610ad65760405162461bcd60e51b81526004016105c890611a1b565b8060056000610ae3610d8c565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610b27610d8c565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610b5f9190611858565b60405180910390a35050565b610b7c610b76610d8c565b83610dfe565b610b985760405162461bcd60e51b81526004016105c890611dd2565b610ba48484848461116b565b50505050565b6060610bb582610d6f565b610bd15760405162461bcd60e51b81526004016105c890611cf9565b6000610bdb61119e565b90506000815111610bfb5760405180602001604052806000815250610c26565b80610c05846111ad565b604051602001610c169291906117c8565b6040516020818303038152906040525b9392505050565b610c35610d8c565b6001600160a01b0316610c46610a24565b6001600160a01b031614610c6c5760405162461bcd60e51b81526004016105c890611cc4565b60015b604d8111610c9257610c80336107cb565b80610c8a81611ed6565b915050610c6f565b50565b6000610c9f610a86565b610ca7610685565b610a929190611e58565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600d5460ff1681565b610cf0610d8c565b6001600160a01b0316610d01610a24565b6001600160a01b031614610d275760405162461bcd60e51b81526004016105c890611cc4565b6001600160a01b038116610d4d5760405162461bcd60e51b81526004016105c8906118c8565b610c9281611115565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610dc582610796565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610e0982610d6f565b610e255760405162461bcd60e51b81526004016105c890611ac0565b6000610e3083610796565b9050806001600160a01b0316846001600160a01b03161480610e6b5750836001600160a01b0316610e60846105a1565b6001600160a01b0316145b80610e7b5750610e7b8185610cb1565b949350505050565b826001600160a01b0316610e9682610796565b6001600160a01b031614610ebc5760405162461bcd60e51b81526004016105c890611d48565b6001600160a01b038216610ee25760405162461bcd60e51b81526004016105c8906119d7565b610eed838383610680565b610ef8600082610d90565b6001600160a01b0383166000908152600360205260408120805460019290610f21908490611e58565b90915550506001600160a01b0382166000908152600360205260408120805460019290610f4f908490611e2c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080610fbb610c95565b11610fd85760405162461bcd60e51b81526004016105c890611a52565b6000610fe2610a86565b610fea610685565b610ff49190611e58565b9050600081334144454260405160200161101295949392919061178d565b6040516020818303038152906040528051906020012060001c6110359190611ef1565b60008181526009602052604081205491925090611053575080611064565b506000818152600960205260409020545b60096000611073600186611e58565b815260200190815260200160002054600014156110a957611095600184611e58565b6000838152600960205260409020556110d9565b600960006110b8600186611e58565b81526020808201929092526040908101600090812054858252600990935220555b6110e16112c8565b50600a546110ef9082611e2c565b935050505090565b611111828260405180602001604052806000815250611308565b5050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b5490565b611176848484610e83565b6111828484848461133b565b610ba45760405162461bcd60e51b81526004016105c890611876565b6060600e805461051e90611e9b565b6060816111d257506040805180820190915260018152600360fc1b602082015261050a565b8160005b81156111fc57806111e681611ed6565b91506111f59050600a83611e44565b91506111d6565b60008167ffffffffffffffff81111561122557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561124f576020820181803683370190505b5090505b8415610e7b57611264600183611e58565b9150611271600a86611ef1565b61127c906030611e2c565b60f81b81838151811061129f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506112c1600a86611e44565b9450611253565b6000806112d3610c95565b116112f05760405162461bcd60e51b81526004016105c890611a52565b60006112fc6007611167565b9050610a926007611456565b611312838361145f565b61131f600084848461133b565b6106805760405162461bcd60e51b81526004016105c890611876565b600061134f846001600160a01b031661153e565b1561144b57836001600160a01b031663150b7a0261136b610d8c565b8786866040518563ffffffff1660e01b815260040161138d949392919061181b565b602060405180830381600087803b1580156113a757600080fd5b505af19250505080156113d7575060408051601f3d908101601f191682019092526113d49181019061172d565b60015b611431573d808015611405576040519150601f19603f3d011682016040523d82523d6000602084013e61140a565b606091505b5080516114295760405162461bcd60e51b81526004016105c890611876565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e7b565b506001949350505050565b80546001019055565b6001600160a01b0382166114855760405162461bcd60e51b81526004016105c890611c43565b61148e81610d6f565b156114ab5760405162461bcd60e51b81526004016105c89061190e565b6114b760008383610680565b6001600160a01b03821660009081526003602052604081208054600192906114e0908490611e2c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b80356001600160a01b038116811461050a57600080fd5b60006020828403121561156c578081fd5b610c2682611544565b60008060408385031215611587578081fd5b61159083611544565b915061159e60208401611544565b90509250929050565b6000806000606084860312156115bb578081fd5b6115c484611544565b92506115d260208501611544565b9150604084013590509250925092565b600080600080608085870312156115f7578081fd5b61160085611544565b9350602061160f818701611544565b935060408601359250606086013567ffffffffffffffff80821115611632578384fd5b818801915088601f830112611645578384fd5b81358181111561165757611657611f31565b604051601f8201601f191681018501838111828210171561167a5761167a611f31565b60405281815283820185018b1015611690578586fd5b81858501868301379081019093019390935250939692955090935050565b600080604083850312156116c0578182fd5b6116c983611544565b9150602083013580151581146116dd578182fd5b809150509250929050565b600080604083850312156116fa578182fd5b61170383611544565b946020939093013593505050565b600060208284031215611722578081fd5b8135610c2681611f47565b60006020828403121561173e578081fd5b8151610c2681611f47565b60006020828403121561175a578081fd5b5035919050565b60008151808452611779816020860160208601611e6f565b601f01601f19169290920160200192915050565b6bffffffffffffffffffffffff19606096871b811682529490951b909316601485015260288401919091526048830152606882015260880190565b600083516117da818460208801611e6f565b8351908301906117ee818360208801611e6f565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061184e90830184611761565b9695505050505050565b901515815260200190565b600060208252610c266020830184611761565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526025908201527f43414e4e4f54204d494e54205448524f554748204120435553544f4d20434f4e60408201526415149050d560da1b606082015260800190565b6020808252602d908201527f594f552043414e2754204d494e54204d4f5245205448414e204156414c41424c60408201526c11481513d2d1538810d3d55395609a1b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526018908201527f4e6f206d6f726520746f6b656e7320617661696c61626c650000000000000000604082015260600190565b6020808252601b908201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526027908201527f594f552043414e2754204d494e54204d4f5245205448414e204d4158494d554d60408201526620535550504c5960c81b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba30b73a103a37b5b2b760891b606082015260800190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b90815260200190565b60008219821115611e3f57611e3f611f05565b500190565b600082611e5357611e53611f1b565b500490565b600082821015611e6a57611e6a611f05565b500390565b60005b83811015611e8a578181015183820152602001611e72565b83811115610ba45750506000910152565b600281046001821680611eaf57607f821691505b60208210811415611ed057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611eea57611eea611f05565b5060010190565b600082611f0057611f00611f1b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c9257600080fdfea26469706673582212200270ca0d51ae15f0adec7449d3de45e738bb901e1e5682304a9f8871c957ca7164736f6c63430008000033697066733a2f2f516d50694c72533248783865655637444b6b3731537946504b784254634755454d384853516f63573447585337612f

Deployed Bytecode

0x6080604052600436106101b75760003560e01c8063771282f6116100ec578063b88d4fde1161008a578063e14ca35311610064578063e14ca3531461045d578063e985e9c514610472578063eb8d244414610492578063f2fde38b146104a7576101b7565b8063b88d4fde14610408578063c87b56dd14610428578063cd3293de14610448576101b7565b806395d89b41116100c657806395d89b41146103a95780639f181b5e146103be578063a035b1fe146103d3578063a22cb465146103e8576101b7565b8063771282f61461035f5780638da5cb5b1461037457806391b7f5ed14610389576101b7565b80633ccfd60b116101595780636a627842116101335780636a627842146103025780636c0360eb1461031557806370a082311461032a578063715018a61461034a576101b7565b80633ccfd60b146102ba57806342842e0e146102c25780636352211e146102e2576101b7565b8063095ea7b311610195578063095ea7b31461024157806318160ddd1461026357806323b872dd1461028557806334918dfd146102a5576101b7565b806301ffc9a7146101bc57806306fdde03146101f2578063081812fc14610214575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611711565b6104c7565b6040516101e99190611858565b60405180910390f35b3480156101fe57600080fd5b5061020761050f565b6040516101e99190611863565b34801561022057600080fd5b5061023461022f366004611749565b6105a1565b6040516101e99190611807565b34801561024d57600080fd5b5061026161025c3660046116e8565b6105ed565b005b34801561026f57600080fd5b50610278610685565b6040516101e99190611e23565b34801561029157600080fd5b506102616102a03660046115a7565b61068b565b3480156102b157600080fd5b506102616106c3565b610261610716565b3480156102ce57600080fd5b506102616102dd3660046115a7565b61077b565b3480156102ee57600080fd5b506102346102fd366004611749565b610796565b61026161031036600461155b565b6107cb565b34801561032157600080fd5b50610207610903565b34801561033657600080fd5b5061027861034536600461155b565b610991565b34801561035657600080fd5b506102616109d5565b34801561036b57600080fd5b50610278610a1e565b34801561038057600080fd5b50610234610a24565b34801561039557600080fd5b506102616103a4366004611749565b610a33565b3480156103b557600080fd5b50610207610a77565b3480156103ca57600080fd5b50610278610a86565b3480156103df57600080fd5b50610278610a97565b3480156103f457600080fd5b506102616104033660046116ae565b610a9d565b34801561041457600080fd5b506102616104233660046115e2565b610b6b565b34801561043457600080fd5b50610207610443366004611749565b610baa565b34801561045457600080fd5b50610261610c2d565b34801561046957600080fd5b50610278610c95565b34801561047e57600080fd5b506101dc61048d366004611575565b610cb1565b34801561049e57600080fd5b506101dc610cdf565b3480156104b357600080fd5b506102616104c236600461155b565b610ce8565b60006001600160e01b031982166380ac58cd60e01b14806104f857506001600160e01b03198216635b5e139f60e01b145b80610507575061050782610d56565b90505b919050565b60606000805461051e90611e9b565b80601f016020809104026020016040519081016040528092919081815260200182805461054a90611e9b565b80156105975780601f1061056c57610100808354040283529160200191610597565b820191906000526020600020905b81548152906001019060200180831161057a57829003601f168201915b5050505050905090565b60006105ac82610d6f565b6105d15760405162461bcd60e51b81526004016105c890611c78565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105f882610796565b9050806001600160a01b0316836001600160a01b0316141561062c5760405162461bcd60e51b81526004016105c890611d91565b806001600160a01b031661063e610d8c565b6001600160a01b0316148061065a575061065a8161048d610d8c565b6106765760405162461bcd60e51b81526004016105c890611b0c565b6106808383610d90565b505050565b60085490565b61069c610696610d8c565b82610dfe565b6106b85760405162461bcd60e51b81526004016105c890611dd2565b610680838383610e83565b6106cb610d8c565b6001600160a01b03166106dc610a24565b6001600160a01b0316146107025760405162461bcd60e51b81526004016105c890611cc4565b600d805460ff19811660ff90911615179055565b61071e610d8c565b6001600160a01b031661072f610a24565b6001600160a01b0316146107555760405162461bcd60e51b81526004016105c890611cc4565b60405133904780156108fc02916000818181858888f1935050505061077957600080fd5b565b61068083838360405180602001604052806000815250610b6b565b6000818152600260205260408120546001600160a01b0316806105075760405162461bcd60e51b81526004016105c890611bb3565b6107d3610685565b6107db610a86565b6107e6906001611e2c565b11156108045760405162461bcd60e51b81526004016105c890611bfc565b60006001610810610c95565b61081a9190611e58565b10156108385760405162461bcd60e51b81526004016105c89061198a565b600d5460ff1661085a5760405162461bcd60e51b81526004016105c890611a89565b3233146108795760405162461bcd60e51b81526004016105c890611945565b610881610a24565b6001600160a01b0316336001600160a01b0316146108d457600b543410156108a857600080fd5b60016108b333610991565b11156108be57600080fd5b60016108c982610991565b11156108d457600080fd5b60006108de610fb0565b90506108ea82826110f7565b600c80549060006108fa83611ed6565b91905055505050565b600e805461091090611e9b565b80601f016020809104026020016040519081016040528092919081815260200182805461093c90611e9b565b80156109895780601f1061095e57610100808354040283529160200191610989565b820191906000526020600020905b81548152906001019060200180831161096c57829003601f168201915b505050505081565b60006001600160a01b0382166109b95760405162461bcd60e51b81526004016105c890611b69565b506001600160a01b031660009081526003602052604090205490565b6109dd610d8c565b6001600160a01b03166109ee610a24565b6001600160a01b031614610a145760405162461bcd60e51b81526004016105c890611cc4565b6107796000611115565b600c5481565b6006546001600160a01b031690565b610a3b610d8c565b6001600160a01b0316610a4c610a24565b6001600160a01b031614610a725760405162461bcd60e51b81526004016105c890611cc4565b600b55565b60606001805461051e90611e9b565b6000610a926007611167565b905090565b600b5481565b610aa5610d8c565b6001600160a01b0316826001600160a01b03161415610ad65760405162461bcd60e51b81526004016105c890611a1b565b8060056000610ae3610d8c565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610b27610d8c565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610b5f9190611858565b60405180910390a35050565b610b7c610b76610d8c565b83610dfe565b610b985760405162461bcd60e51b81526004016105c890611dd2565b610ba48484848461116b565b50505050565b6060610bb582610d6f565b610bd15760405162461bcd60e51b81526004016105c890611cf9565b6000610bdb61119e565b90506000815111610bfb5760405180602001604052806000815250610c26565b80610c05846111ad565b604051602001610c169291906117c8565b6040516020818303038152906040525b9392505050565b610c35610d8c565b6001600160a01b0316610c46610a24565b6001600160a01b031614610c6c5760405162461bcd60e51b81526004016105c890611cc4565b60015b604d8111610c9257610c80336107cb565b80610c8a81611ed6565b915050610c6f565b50565b6000610c9f610a86565b610ca7610685565b610a929190611e58565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600d5460ff1681565b610cf0610d8c565b6001600160a01b0316610d01610a24565b6001600160a01b031614610d275760405162461bcd60e51b81526004016105c890611cc4565b6001600160a01b038116610d4d5760405162461bcd60e51b81526004016105c8906118c8565b610c9281611115565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610dc582610796565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610e0982610d6f565b610e255760405162461bcd60e51b81526004016105c890611ac0565b6000610e3083610796565b9050806001600160a01b0316846001600160a01b03161480610e6b5750836001600160a01b0316610e60846105a1565b6001600160a01b0316145b80610e7b5750610e7b8185610cb1565b949350505050565b826001600160a01b0316610e9682610796565b6001600160a01b031614610ebc5760405162461bcd60e51b81526004016105c890611d48565b6001600160a01b038216610ee25760405162461bcd60e51b81526004016105c8906119d7565b610eed838383610680565b610ef8600082610d90565b6001600160a01b0383166000908152600360205260408120805460019290610f21908490611e58565b90915550506001600160a01b0382166000908152600360205260408120805460019290610f4f908490611e2c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080610fbb610c95565b11610fd85760405162461bcd60e51b81526004016105c890611a52565b6000610fe2610a86565b610fea610685565b610ff49190611e58565b9050600081334144454260405160200161101295949392919061178d565b6040516020818303038152906040528051906020012060001c6110359190611ef1565b60008181526009602052604081205491925090611053575080611064565b506000818152600960205260409020545b60096000611073600186611e58565b815260200190815260200160002054600014156110a957611095600184611e58565b6000838152600960205260409020556110d9565b600960006110b8600186611e58565b81526020808201929092526040908101600090812054858252600990935220555b6110e16112c8565b50600a546110ef9082611e2c565b935050505090565b611111828260405180602001604052806000815250611308565b5050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b5490565b611176848484610e83565b6111828484848461133b565b610ba45760405162461bcd60e51b81526004016105c890611876565b6060600e805461051e90611e9b565b6060816111d257506040805180820190915260018152600360fc1b602082015261050a565b8160005b81156111fc57806111e681611ed6565b91506111f59050600a83611e44565b91506111d6565b60008167ffffffffffffffff81111561122557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561124f576020820181803683370190505b5090505b8415610e7b57611264600183611e58565b9150611271600a86611ef1565b61127c906030611e2c565b60f81b81838151811061129f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506112c1600a86611e44565b9450611253565b6000806112d3610c95565b116112f05760405162461bcd60e51b81526004016105c890611a52565b60006112fc6007611167565b9050610a926007611456565b611312838361145f565b61131f600084848461133b565b6106805760405162461bcd60e51b81526004016105c890611876565b600061134f846001600160a01b031661153e565b1561144b57836001600160a01b031663150b7a0261136b610d8c565b8786866040518563ffffffff1660e01b815260040161138d949392919061181b565b602060405180830381600087803b1580156113a757600080fd5b505af19250505080156113d7575060408051601f3d908101601f191682019092526113d49181019061172d565b60015b611431573d808015611405576040519150601f19603f3d011682016040523d82523d6000602084013e61140a565b606091505b5080516114295760405162461bcd60e51b81526004016105c890611876565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e7b565b506001949350505050565b80546001019055565b6001600160a01b0382166114855760405162461bcd60e51b81526004016105c890611c43565b61148e81610d6f565b156114ab5760405162461bcd60e51b81526004016105c89061190e565b6114b760008383610680565b6001600160a01b03821660009081526003602052604081208054600192906114e0908490611e2c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b80356001600160a01b038116811461050a57600080fd5b60006020828403121561156c578081fd5b610c2682611544565b60008060408385031215611587578081fd5b61159083611544565b915061159e60208401611544565b90509250929050565b6000806000606084860312156115bb578081fd5b6115c484611544565b92506115d260208501611544565b9150604084013590509250925092565b600080600080608085870312156115f7578081fd5b61160085611544565b9350602061160f818701611544565b935060408601359250606086013567ffffffffffffffff80821115611632578384fd5b818801915088601f830112611645578384fd5b81358181111561165757611657611f31565b604051601f8201601f191681018501838111828210171561167a5761167a611f31565b60405281815283820185018b1015611690578586fd5b81858501868301379081019093019390935250939692955090935050565b600080604083850312156116c0578182fd5b6116c983611544565b9150602083013580151581146116dd578182fd5b809150509250929050565b600080604083850312156116fa578182fd5b61170383611544565b946020939093013593505050565b600060208284031215611722578081fd5b8135610c2681611f47565b60006020828403121561173e578081fd5b8151610c2681611f47565b60006020828403121561175a578081fd5b5035919050565b60008151808452611779816020860160208601611e6f565b601f01601f19169290920160200192915050565b6bffffffffffffffffffffffff19606096871b811682529490951b909316601485015260288401919091526048830152606882015260880190565b600083516117da818460208801611e6f565b8351908301906117ee818360208801611e6f565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061184e90830184611761565b9695505050505050565b901515815260200190565b600060208252610c266020830184611761565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526025908201527f43414e4e4f54204d494e54205448524f554748204120435553544f4d20434f4e60408201526415149050d560da1b606082015260800190565b6020808252602d908201527f594f552043414e2754204d494e54204d4f5245205448414e204156414c41424c60408201526c11481513d2d1538810d3d55395609a1b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526018908201527f4e6f206d6f726520746f6b656e7320617661696c61626c650000000000000000604082015260600190565b6020808252601b908201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526027908201527f594f552043414e2754204d494e54204d4f5245205448414e204d4158494d554d60408201526620535550504c5960c81b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba30b73a103a37b5b2b760891b606082015260800190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b90815260200190565b60008219821115611e3f57611e3f611f05565b500190565b600082611e5357611e53611f1b565b500490565b600082821015611e6a57611e6a611f05565b500390565b60005b83811015611e8a578181015183820152602001611e72565b83811115610ba45750506000910152565b600281046001821680611eaf57607f821691505b60208210811415611ed057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611eea57611eea611f05565b5060010190565b600082611f0057611f00611f1b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c9257600080fdfea26469706673582212200270ca0d51ae15f0adec7449d3de45e738bb901e1e5682304a9f8871c957ca7164736f6c63430008000033

Deployed Bytecode Sourcemap

39821:2115:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23437:305;;;;;;;;;;-1:-1:-1;23437:305:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24382:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25941:221::-;;;;;;;;;;-1:-1:-1;25941:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;25464:411::-;;;;;;;;;;-1:-1:-1;25464:411:0;;;;;:::i;:::-;;:::i;:::-;;2878:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26831:339::-;;;;;;;;;;-1:-1:-1;26831:339:0;;;;;:::i;:::-;;:::i;41210:89::-;;;;;;;;;;;;;:::i;41819:114::-;;;:::i;27241:185::-;;;;;;;;;;-1:-1:-1;27241:185:0;;;;;:::i;:::-;;:::i;24076:239::-;;;;;;;;;;-1:-1:-1;24076:239:0;;;;;:::i;:::-;;:::i;40440:675::-;;;;;;:::i;:::-;;:::i;40054:80::-;;;;;;;;;;;;;:::i;23806:208::-;;;;;;;;;;-1:-1:-1;23806:208:0;;;;;:::i;:::-;;:::i;37152:94::-;;;;;;;;;;;;;:::i;39980:32::-;;;;;;;;;;;;;:::i;36501:87::-;;;;;;;;;;;;;:::i;41119:86::-;;;;;;;;;;-1:-1:-1;41119:86:0;;;;;:::i;:::-;;:::i;24551:104::-;;;;;;;;;;;;;:::i;3060:99::-;;;;;;;;;;;;;:::i;39943:32::-;;;;;;;;;;;;;:::i;26234:295::-;;;;;;;;;;-1:-1:-1;26234:295:0;;;;;:::i;:::-;;:::i;27497:328::-;;;;;;;;;;-1:-1:-1;27497:328:0;;;;;:::i;:::-;;:::i;41413:398::-;;;;;;;;;;-1:-1:-1;41413:398:0;;;;;:::i;:::-;;:::i;40303:131::-;;;;;;;;;;;;;:::i;3265:115::-;;;;;;;;;;;;;:::i;26600:164::-;;;;;;;;;;-1:-1:-1;26600:164:0;;;;;:::i;:::-;;:::i;40017:32::-;;;;;;;;;;;;;:::i;37401:192::-;;;;;;;;;;-1:-1:-1;37401:192:0;;;;;:::i;:::-;;:::i;23437:305::-;23539:4;-1:-1:-1;;;;;;23576:40:0;;-1:-1:-1;;;23576:40:0;;:105;;-1:-1:-1;;;;;;;23633:48:0;;-1:-1:-1;;;23633:48:0;23576:105;:158;;;;23698:36;23722:11;23698:23;:36::i;:::-;23556:178;;23437:305;;;;:::o;24382:100::-;24436:13;24469:5;24462:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24382:100;:::o;25941:221::-;26017:7;26045:16;26053:7;26045;:16::i;:::-;26037:73;;;;-1:-1:-1;;;26037:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;26130:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26130:24:0;;25941:221::o;25464:411::-;25545:13;25561:23;25576:7;25561:14;:23::i;:::-;25545:39;;25609:5;-1:-1:-1;;;;;25603:11:0;:2;-1:-1:-1;;;;;25603:11:0;;;25595:57;;;;-1:-1:-1;;;25595:57:0;;;;;;;:::i;:::-;25703:5;-1:-1:-1;;;;;25687:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;25687:21:0;;:62;;;;25712:37;25729:5;25736:12;:10;:12::i;25712:37::-;25665:168;;;;-1:-1:-1;;;25665:168:0;;;;;;;:::i;:::-;25846:21;25855:2;25859:7;25846:8;:21::i;:::-;25464:411;;;:::o;2878:91::-;2949:12;;2878:91;:::o;26831:339::-;27026:41;27045:12;:10;:12::i;:::-;27059:7;27026:18;:41::i;:::-;27018:103;;;;-1:-1:-1;;;27018:103:0;;;;;;;:::i;:::-;27134:28;27144:4;27150:2;27154:7;27134:9;:28::i;41210:89::-;36732:12;:10;:12::i;:::-;-1:-1:-1;;;;;36721:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;36721:23:0;;36713:68;;;;-1:-1:-1;;;36713:68:0;;;;;;;:::i;:::-;41279:12:::1;::::0;;-1:-1:-1;;41263:28:0;::::1;41279:12;::::0;;::::1;41278:13;41263:28;::::0;;41210:89::o;41819:114::-;36732:12;:10;:12::i;:::-;-1:-1:-1;;;;;36721:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;36721:23:0;;36713:68;;;;-1:-1:-1;;;36713:68:0;;;;;;;:::i;:::-;41879:47:::1;::::0;41887:10:::1;::::0;41904:21:::1;41879:47:::0;::::1;;;::::0;::::1;::::0;;;41904:21;41887:10;41879:47;::::1;;;;;;41871:56;;;::::0;::::1;;41819:114::o:0;27241:185::-;27379:39;27396:4;27402:2;27406:7;27379:39;;;;;;;;;;;;:16;:39::i;24076:239::-;24148:7;24184:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24184:16:0;24219:19;24211:73;;;;-1:-1:-1;;;24211:73:0;;;;;;;:::i;40440:675::-;40538:13;:11;:13::i;:::-;40518:12;:10;:12::i;:::-;:16;;40533:1;40518:16;:::i;:::-;:33;;40509:86;;;;-1:-1:-1;;;40509:86:0;;;;;;;:::i;:::-;40642:1;40637;40613:21;:19;:21::i;:::-;:25;;;;:::i;:::-;:30;;40604:89;;;;-1:-1:-1;;;40604:89:0;;;;;;;:::i;:::-;40711:12;;;;40703:52;;;;-1:-1:-1;;;40703:52:0;;;;;;;:::i;:::-;40773:9;40786:10;40773:23;40764:74;;;;-1:-1:-1;;;40764:74:0;;;;;;;:::i;:::-;40867:7;:5;:7::i;:::-;-1:-1:-1;;;;;40853:21:0;:10;-1:-1:-1;;;;;40853:21:0;;40849:165;;40911:5;;40898:9;:18;;40889:28;;;;;;40962:1;40937:21;40947:10;40937:9;:21::i;:::-;:26;;40928:36;;;;;;41002:1;40984:14;40994:3;40984:9;:14::i;:::-;:19;;40975:29;;;;;;41030:10;41043:11;:9;:11::i;:::-;41030:24;;41065:18;41075:3;41080:2;41065:9;:18::i;:::-;41094:13;:15;;;:13;:15;;;:::i;:::-;;;;;;40440:675;;:::o;40054:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23806:208::-;23878:7;-1:-1:-1;;;;;23906:19:0;;23898:74;;;;-1:-1:-1;;;23898:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;23990:16:0;;;;;:9;:16;;;;;;;23806:208::o;37152:94::-;36732:12;:10;:12::i;:::-;-1:-1:-1;;;;;36721:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;36721:23:0;;36713:68;;;;-1:-1:-1;;;36713:68:0;;;;;;;:::i;:::-;37217:21:::1;37235:1;37217:9;:21::i;39980:32::-:0;;;;:::o;36501:87::-;36574:6;;-1:-1:-1;;;;;36574:6:0;36501:87;:::o;41119:86::-;36732:12;:10;:12::i;:::-;-1:-1:-1;;;;;36721:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;36721:23:0;;36713:68;;;;-1:-1:-1;;;36713:68:0;;;;;;;:::i;:::-;41183:5:::1;:17:::0;41119:86::o;24551:104::-;24607:13;24640:7;24633:14;;;;;:::i;3060:99::-;3103:7;3130:21;:11;:19;:21::i;:::-;3123:28;;3060:99;:::o;39943:32::-;;;;:::o;26234:295::-;26349:12;:10;:12::i;:::-;-1:-1:-1;;;;;26337:24:0;:8;-1:-1:-1;;;;;26337:24:0;;;26329:62;;;;-1:-1:-1;;;26329:62:0;;;;;;;:::i;:::-;26449:8;26404:18;:32;26423:12;:10;:12::i;:::-;-1:-1:-1;;;;;26404:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;26404:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;26404:53:0;;;;;;;;;;;26488:12;:10;:12::i;:::-;-1:-1:-1;;;;;26473:48:0;;26512:8;26473:48;;;;;;:::i;:::-;;;;;;;;26234:295;;:::o;27497:328::-;27672:41;27691:12;:10;:12::i;:::-;27705:7;27672:18;:41::i;:::-;27664:103;;;;-1:-1:-1;;;27664:103:0;;;;;;;:::i;:::-;27778:39;27792:4;27798:2;27802:7;27811:5;27778:13;:39::i;:::-;27497:328;;;;:::o;41413:398::-;41486:13;41526:16;41534:7;41526;:16::i;:::-;41509:100;;;;-1:-1:-1;;;41509:100:0;;;;;;;:::i;:::-;41619:28;41650:10;:8;:10::i;:::-;41619:41;;41706:1;41681:14;41675:28;:32;:129;;;;;;;;;;;;;;;;;41744:14;41760:18;:7;:16;:18::i;:::-;41727:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41675:129;41668:136;41413:398;-1:-1:-1;;;41413:398:0:o;40303:131::-;36732:12;:10;:12::i;:::-;-1:-1:-1;;;;;36721:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;36721:23:0;;36713:68;;;;-1:-1:-1;;;36713:68:0;;;;;;;:::i;:::-;40369:1:::1;40352:77;40377:2;40372:1;:7;40352:77;;40401:16;40406:10;40401:4;:16::i;:::-;40381:3:::0;::::1;::::0;::::1;:::i;:::-;;;;40352:77;;;;40303:131::o:0;3265:115::-;3317:7;3360:12;:10;:12::i;:::-;3344:13;:11;:13::i;:::-;:28;;;;:::i;26600:164::-;-1:-1:-1;;;;;26721:25:0;;;26697:4;26721:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26600:164::o;40017:32::-;;;;;;:::o;37401:192::-;36732:12;:10;:12::i;:::-;-1:-1:-1;;;;;36721:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;36721:23:0;;36713:68;;;;-1:-1:-1;;;36713:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37490:22:0;::::1;37482:73;;;;-1:-1:-1::0;;;37482:73:0::1;;;;;;;:::i;:::-;37566:19;37576:8;37566:9;:19::i;22017:157::-:0;-1:-1:-1;;;;;;22126:40:0;;-1:-1:-1;;;22126:40:0;22017:157;;;:::o;29335:127::-;29400:4;29424:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29424:16:0;:30;;;29335:127::o;19064:98::-;19144:10;19064:98;:::o;33317:174::-;33392:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33392:29:0;-1:-1:-1;;;;;33392:29:0;;;;;;;;:24;;33446:23;33392:24;33446:14;:23::i;:::-;-1:-1:-1;;;;;33437:46:0;;;;;;;;;;;33317:174;;:::o;29629:348::-;29722:4;29747:16;29755:7;29747;:16::i;:::-;29739:73;;;;-1:-1:-1;;;29739:73:0;;;;;;;:::i;:::-;29823:13;29839:23;29854:7;29839:14;:23::i;:::-;29823:39;;29892:5;-1:-1:-1;;;;;29881:16:0;:7;-1:-1:-1;;;;;29881:16:0;;:51;;;;29925:7;-1:-1:-1;;;;;29901:31:0;:20;29913:7;29901:11;:20::i;:::-;-1:-1:-1;;;;;29901:31:0;;29881:51;:87;;;;29936:32;29953:5;29960:7;29936:16;:32::i;:::-;29873:96;29629:348;-1:-1:-1;;;;29629:348:0:o;32621:578::-;32780:4;-1:-1:-1;;;;;32753:31:0;:23;32768:7;32753:14;:23::i;:::-;-1:-1:-1;;;;;32753:31:0;;32745:85;;;;-1:-1:-1;;;32745:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32849:16:0;;32841:65;;;;-1:-1:-1;;;32841:65:0;;;;;;;:::i;:::-;32919:39;32940:4;32946:2;32950:7;32919:20;:39::i;:::-;33023:29;33040:1;33044:7;33023:8;:29::i;:::-;-1:-1:-1;;;;;33065:15:0;;;;;;:9;:15;;;;;:20;;33084:1;;33065:15;:20;;33084:1;;33065:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33096:13:0;;;;;;:9;:13;;;;;:18;;33113:1;;33096:13;:18;;33113:1;;33096:18;:::i;:::-;;;;-1:-1:-1;;33125:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33125:21:0;-1:-1:-1;;;;;33125:21:0;;;;;;;;;33164:27;;33125:16;;33164:27;;;;;;;32621:578;;;:::o;38521:1264::-;38588:7;3824:1;3800:21;:19;:21::i;:::-;:25;3792:62;;;;-1:-1:-1;;;3792:62:0;;;;;;;:::i;:::-;38608:16:::1;38643:12;:10;:12::i;:::-;38627:13;:11;:13::i;:::-;:28;;;;:::i;:::-;38608:47;;38666:14;38925:8;38750:10;38779:14;38812:16;38847:14;38880:15;38715:195;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38691:230;;;;;;38683:239;;:250;;;;:::i;:::-;38946:13;38978:19:::0;;;:11:::1;:19;::::0;;;;;38666:267;;-1:-1:-1;38946:13:0;38974:304:::1;;-1:-1:-1::0;39123:6:0;38974:304:::1;;;-1:-1:-1::0;39247:19:0::1;::::0;;;:11:::1;:19;::::0;;;;;38974:304:::1;39355:11;:25;39367:12;39378:1;39367:8:::0;:12:::1;:::i;:::-;39355:25;;;;;;;;;;;;39384:1;39355:30;39351:331;;;39489:12;39500:1;39489:8:::0;:12:::1;:::i;:::-;39467:19;::::0;;;:11:::1;:19;::::0;;;;:34;39351:331:::1;;;39645:11;:25;39657:12;39668:1;39657:8:::0;:12:::1;:::i;:::-;39645:25:::0;;::::1;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;39645:25:0;;;;39623:19;;;:11:::1;:19:::0;;;;:47;39351:331:::1;39723:17;:15;:17::i;:::-;-1:-1:-1::0;39768:9:0::1;::::0;39760:17:::1;::::0;:5;:17:::1;:::i;:::-;39753:24;;;;;38521:1264:::0;:::o;30319:110::-;30395:26;30405:2;30409:7;30395:26;;;;;;;;;;;;:9;:26::i;:::-;30319:110;;:::o;37601:173::-;37676:6;;;-1:-1:-1;;;;;37693:17:0;;;-1:-1:-1;;;;;;37693:17:0;;;;;;;37726:40;;37676:6;;;37693:17;37676:6;;37726:40;;37657:16;;37726:40;37601:173;;:::o;793:114::-;885:14;;793:114::o;28707:315::-;28864:28;28874:4;28880:2;28884:7;28864:9;:28::i;:::-;28911:48;28934:4;28940:2;28944:7;28953:5;28911:22;:48::i;:::-;28903:111;;;;-1:-1:-1;;;28903:111:0;;;;;;;:::i;41305:102::-;41365:13;41394:7;41387:14;;;;;:::i;19531:723::-;19587:13;19808:10;19804:53;;-1:-1:-1;19835:10:0;;;;;;;;;;;;-1:-1:-1;;;19835:10:0;;;;;;19804:53;19882:5;19867:12;19923:78;19930:9;;19923:78;;19956:8;;;;:::i;:::-;;-1:-1:-1;19979:10:0;;-1:-1:-1;19987:2:0;19979:10;;:::i;:::-;;;19923:78;;;20011:19;20043:6;20033:17;;;;;;-1:-1:-1;;;20033:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20033:17:0;;20011:39;;20061:154;20068:10;;20061:154;;20095:11;20105:1;20095:11;;:::i;:::-;;-1:-1:-1;20164:10:0;20172:2;20164:5;:10;:::i;:::-;20151:24;;:2;:24;:::i;:::-;20138:39;;20121:6;20128;20121:14;;;;;;-1:-1:-1;;;20121:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;20121:56:0;;;;;;;;-1:-1:-1;20192:11:0;20201:2;20192:11;;:::i;:::-;;;20061:154;;3490:192;3556:7;3824:1;3800:21;:19;:21::i;:::-;:25;3792:62;;;;-1:-1:-1;;;3792:62:0;;;;;;;:::i;:::-;3576:13:::1;3592:21;:11;:19;:21::i;:::-;3576:37;;3626:23;:11;:21;:23::i;30656:321::-:0;30786:18;30792:2;30796:7;30786:5;:18::i;:::-;30837:54;30868:1;30872:2;30876:7;30885:5;30837:22;:54::i;:::-;30815:154;;;;-1:-1:-1;;;30815:154:0;;;;;;;:::i;34056:799::-;34211:4;34232:15;:2;-1:-1:-1;;;;;34232:13:0;;:15::i;:::-;34228:620;;;34284:2;-1:-1:-1;;;;;34268:36:0;;34305:12;:10;:12::i;:::-;34319:4;34325:7;34334:5;34268:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34268:72:0;;;;;;;;-1:-1:-1;;34268:72:0;;;;;;;;;;;;:::i;:::-;;;34264:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34510:13:0;;34506:272;;34553:60;;-1:-1:-1;;;34553:60:0;;;;;;;:::i;34506:272::-;34728:6;34722:13;34713:6;34709:2;34705:15;34698:38;34264:529;-1:-1:-1;;;;;;34391:51:0;-1:-1:-1;;;34391:51:0;;-1:-1:-1;34384:58:0;;34228:620;-1:-1:-1;34832:4:0;34056:799;;;;;;:::o;915:127::-;1004:19;;1022:1;1004:19;;;915:127::o;31313:382::-;-1:-1:-1;;;;;31393:16:0;;31385:61;;;;-1:-1:-1;;;31385:61:0;;;;;;;:::i;:::-;31466:16;31474:7;31466;:16::i;:::-;31465:17;31457:58;;;;-1:-1:-1;;;31457:58:0;;;;;;;:::i;:::-;31528:45;31557:1;31561:2;31565:7;31528:20;:45::i;:::-;-1:-1:-1;;;;;31586:13:0;;;;;;:9;:13;;;;;:18;;31603:1;;31586:13;:18;;31603:1;;31586:18;:::i;:::-;;;;-1:-1:-1;;31615:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31615:21:0;-1:-1:-1;;;;;31615:21:0;;;;;;;;31654:33;;31615:16;;;31654:33;;31615:16;;31654:33;31313:382;;:::o;11166:387::-;11489:20;11537:8;;;11166:387::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:1178::-;;;;;1195:3;1183:9;1174:7;1170:23;1166:33;1163:2;;;1217:6;1209;1202:22;1163:2;1245:31;1266:9;1245:31;:::i;:::-;1235:41;;1295:2;1316:40;1352:2;1341:9;1337:18;1316:40;:::i;:::-;1306:50;;1403:2;1392:9;1388:18;1375:32;1365:42;;1458:2;1447:9;1443:18;1430:32;1481:18;1522:2;1514:6;1511:14;1508:2;;;1543:6;1535;1528:22;1508:2;1586:6;1575:9;1571:22;1561:32;;1631:7;1624:4;1620:2;1616:13;1612:27;1602:2;;1658:6;1650;1643:22;1602:2;1699;1686:16;1721:2;1717;1714:10;1711:2;;;1727:18;;:::i;:::-;1776:2;1770:9;1845:2;1826:13;;-1:-1:-1;;1822:27:1;1810:40;;1806:49;;1870:18;;;1890:22;;;1867:46;1864:2;;;1916:18;;:::i;:::-;1952:2;1945:22;1976:18;;;2013:11;;;2009:20;;2006:33;-1:-1:-1;2003:2:1;;;2057:6;2049;2042:22;2003:2;2118;2113;2109;2105:11;2100:2;2092:6;2088:15;2075:46;2141:15;;;2137:24;;;2130:40;;;;-1:-1:-1;1153:1048:1;;;;-1:-1:-1;1153:1048:1;;-1:-1:-1;;1153:1048:1:o;2206:369::-;;;2332:2;2320:9;2311:7;2307:23;2303:32;2300:2;;;2353:6;2345;2338:22;2300:2;2381:31;2402:9;2381:31;:::i;:::-;2371:41;;2462:2;2451:9;2447:18;2434:32;2509:5;2502:13;2495:21;2488:5;2485:32;2475:2;;2536:6;2528;2521:22;2475:2;2564:5;2554:15;;;2290:285;;;;;:::o;2580:266::-;;;2709:2;2697:9;2688:7;2684:23;2680:32;2677:2;;;2730:6;2722;2715:22;2677:2;2758:31;2779:9;2758:31;:::i;:::-;2748:41;2836:2;2821:18;;;;2808:32;;-1:-1:-1;;;2667:179:1:o;2851:257::-;;2962:2;2950:9;2941:7;2937:23;2933:32;2930:2;;;2983:6;2975;2968:22;2930:2;3027:9;3014:23;3046:32;3072:5;3046:32;:::i;3113:261::-;;3235:2;3223:9;3214:7;3210:23;3206:32;3203:2;;;3256:6;3248;3241:22;3203:2;3293:9;3287:16;3312:32;3338:5;3312:32;:::i;3379:190::-;;3491:2;3479:9;3470:7;3466:23;3462:32;3459:2;;;3512:6;3504;3497:22;3459:2;-1:-1:-1;3540:23:1;;3449:120;-1:-1:-1;3449:120:1:o;3574:259::-;;3655:5;3649:12;3682:6;3677:3;3670:19;3698:63;3754:6;3747:4;3742:3;3738:14;3731:4;3724:5;3720:16;3698:63;:::i;:::-;3815:2;3794:15;-1:-1:-1;;3790:29:1;3781:39;;;;3822:4;3777:50;;3625:208;-1:-1:-1;;3625:208:1:o;3838:546::-;-1:-1:-1;;4165:2:1;4161:15;;;4157:24;;4145:37;;4216:15;;;;4212:24;;;4207:2;4198:12;;4191:46;4262:2;4253:12;;4246:28;;;;4299:2;4290:12;;4283:28;4336:3;4327:13;;4320:29;4374:3;4365:13;;4085:299::o;4389:637::-;;4707:6;4701:13;4723:53;4769:6;4764:3;4757:4;4749:6;4745:17;4723:53;:::i;:::-;4839:13;;4798:16;;;;4861:57;4839:13;4798:16;4895:4;4883:17;;4861:57;:::i;:::-;-1:-1:-1;;;4940:20:1;;4969:22;;;5018:1;5007:13;;4677:349;-1:-1:-1;;;;4677:349:1:o;5031:203::-;-1:-1:-1;;;;;5195:32:1;;;;5177:51;;5165:2;5150:18;;5132:102::o;5239:490::-;-1:-1:-1;;;;;5508:15:1;;;5490:34;;5560:15;;5555:2;5540:18;;5533:43;5607:2;5592:18;;5585:34;;;5655:3;5650:2;5635:18;;5628:31;;;5239:490;;5676:47;;5703:19;;5695:6;5676:47;:::i;:::-;5668:55;5442:287;-1:-1:-1;;;;;;5442:287:1:o;5734:187::-;5899:14;;5892:22;5874:41;;5862:2;5847:18;;5829:92::o;5926:221::-;;6075:2;6064:9;6057:21;6095:46;6137:2;6126:9;6122:18;6114:6;6095:46;:::i;6152:414::-;6354:2;6336:21;;;6393:2;6373:18;;;6366:30;6432:34;6427:2;6412:18;;6405:62;-1:-1:-1;;;6498:2:1;6483:18;;6476:48;6556:3;6541:19;;6326:240::o;6571:402::-;6773:2;6755:21;;;6812:2;6792:18;;;6785:30;6851:34;6846:2;6831:18;;6824:62;-1:-1:-1;;;6917:2:1;6902:18;;6895:36;6963:3;6948:19;;6745:228::o;6978:352::-;7180:2;7162:21;;;7219:2;7199:18;;;7192:30;7258;7253:2;7238:18;;7231:58;7321:2;7306:18;;7152:178::o;7335:401::-;7537:2;7519:21;;;7576:2;7556:18;;;7549:30;7615:34;7610:2;7595:18;;7588:62;-1:-1:-1;;;7681:2:1;7666:18;;7659:35;7726:3;7711:19;;7509:227::o;7741:409::-;7943:2;7925:21;;;7982:2;7962:18;;;7955:30;8021:34;8016:2;8001:18;;7994:62;-1:-1:-1;;;8087:2:1;8072:18;;8065:43;8140:3;8125:19;;7915:235::o;8155:400::-;8357:2;8339:21;;;8396:2;8376:18;;;8369:30;8435:34;8430:2;8415:18;;8408:62;-1:-1:-1;;;8501:2:1;8486:18;;8479:34;8545:3;8530:19;;8329:226::o;8560:349::-;8762:2;8744:21;;;8801:2;8781:18;;;8774:30;8840:27;8835:2;8820:18;;8813:55;8900:2;8885:18;;8734:175::o;8914:348::-;9116:2;9098:21;;;9155:2;9135:18;;;9128:30;9194:26;9189:2;9174:18;;9167:54;9253:2;9238:18;;9088:174::o;9267:351::-;9469:2;9451:21;;;9508:2;9488:18;;;9481:30;9547:29;9542:2;9527:18;;9520:57;9609:2;9594:18;;9441:177::o;9623:408::-;9825:2;9807:21;;;9864:2;9844:18;;;9837:30;9903:34;9898:2;9883:18;;9876:62;-1:-1:-1;;;9969:2:1;9954:18;;9947:42;10021:3;10006:19;;9797:234::o;10036:420::-;10238:2;10220:21;;;10277:2;10257:18;;;10250:30;10316:34;10311:2;10296:18;;10289:62;10387:26;10382:2;10367:18;;10360:54;10446:3;10431:19;;10210:246::o;10461:406::-;10663:2;10645:21;;;10702:2;10682:18;;;10675:30;10741:34;10736:2;10721:18;;10714:62;-1:-1:-1;;;10807:2:1;10792:18;;10785:40;10857:3;10842:19;;10635:232::o;10872:405::-;11074:2;11056:21;;;11113:2;11093:18;;;11086:30;11152:34;11147:2;11132:18;;11125:62;-1:-1:-1;;;11218:2:1;11203:18;;11196:39;11267:3;11252:19;;11046:231::o;11282:403::-;11484:2;11466:21;;;11523:2;11503:18;;;11496:30;11562:34;11557:2;11542:18;;11535:62;-1:-1:-1;;;11628:2:1;11613:18;;11606:37;11675:3;11660:19;;11456:229::o;11690:356::-;11892:2;11874:21;;;11911:18;;;11904:30;11970:34;11965:2;11950:18;;11943:62;12037:2;12022:18;;11864:182::o;12051:408::-;12253:2;12235:21;;;12292:2;12272:18;;;12265:30;12331:34;12326:2;12311:18;;12304:62;-1:-1:-1;;;12397:2:1;12382:18;;12375:42;12449:3;12434:19;;12225:234::o;12464:356::-;12666:2;12648:21;;;12685:18;;;12678:30;12744:34;12739:2;12724:18;;12717:62;12811:2;12796:18;;12638:182::o;12825:411::-;13027:2;13009:21;;;13066:2;13046:18;;;13039:30;13105:34;13100:2;13085:18;;13078:62;-1:-1:-1;;;13171:2:1;13156:18;;13149:45;13226:3;13211:19;;12999:237::o;13241:405::-;13443:2;13425:21;;;13482:2;13462:18;;;13455:30;13521:34;13516:2;13501:18;;13494:62;-1:-1:-1;;;13587:2:1;13572:18;;13565:39;13636:3;13621:19;;13415:231::o;13651:397::-;13853:2;13835:21;;;13892:2;13872:18;;;13865:30;13931:34;13926:2;13911:18;;13904:62;-1:-1:-1;;;13997:2:1;13982:18;;13975:31;14038:3;14023:19;;13825:223::o;14053:413::-;14255:2;14237:21;;;14294:2;14274:18;;;14267:30;14333:34;14328:2;14313:18;;14306:62;-1:-1:-1;;;14399:2:1;14384:18;;14377:47;14456:3;14441:19;;14227:239::o;14471:177::-;14617:25;;;14605:2;14590:18;;14572:76::o;14653:128::-;;14724:1;14720:6;14717:1;14714:13;14711:2;;;14730:18;;:::i;:::-;-1:-1:-1;14766:9:1;;14701:80::o;14786:120::-;;14852:1;14842:2;;14857:18;;:::i;:::-;-1:-1:-1;14891:9:1;;14832:74::o;14911:125::-;;14979:1;14976;14973:8;14970:2;;;14984:18;;:::i;:::-;-1:-1:-1;15021:9:1;;14960:76::o;15041:258::-;15113:1;15123:113;15137:6;15134:1;15131:13;15123:113;;;15213:11;;;15207:18;15194:11;;;15187:39;15159:2;15152:10;15123:113;;;15254:6;15251:1;15248:13;15245:2;;;-1:-1:-1;;15289:1:1;15271:16;;15264:27;15094:205::o;15304:380::-;15389:1;15379:12;;15436:1;15426:12;;;15447:2;;15501:4;15493:6;15489:17;15479:27;;15447:2;15554;15546:6;15543:14;15523:18;15520:38;15517:2;;;15600:10;15595:3;15591:20;15588:1;15581:31;15635:4;15632:1;15625:15;15663:4;15660:1;15653:15;15517:2;;15359:325;;;:::o;15689:135::-;;-1:-1:-1;;15749:17:1;;15746:2;;;15769:18;;:::i;:::-;-1:-1:-1;15816:1:1;15805:13;;15736:88::o;15829:112::-;;15887:1;15877:2;;15892:18;;:::i;:::-;-1:-1:-1;15926:9:1;;15867:74::o;15946:127::-;16007:10;16002:3;15998:20;15995:1;15988:31;16038:4;16035:1;16028:15;16062:4;16059:1;16052:15;16078:127;16139:10;16134:3;16130:20;16127:1;16120:31;16170:4;16167:1;16160:15;16194:4;16191:1;16184:15;16210:127;16271:10;16266:3;16262:20;16259:1;16252:31;16302:4;16299:1;16292:15;16326:4;16323:1;16316:15;16342:133;-1:-1:-1;;;;;;16418:32:1;;16408:43;;16398:2;;16465:1;16462;16455:12

Swarm Source

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