ETH Price: $2,680.41 (-6.09%)
Gas: 1.01 Gwei

Token

SOTA Club (SOTA)
 

Overview

Max Total Supply

20 SOTA

Holders

15

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 SOTA
0x8d5cD25F78ea81C001aD0aE8C022380A7602cF8f
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:
SotaPilotNFT

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-23
*/

// SPDX-License-Identifier: MIT
// Sources flattened with hardhat v2.7.0 https://hardhat.org

// File contracts/SotaInvestors.sol

//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)
pragma solidity ^0.8.9;

abstract contract SotaInvestors {
    function ownersOfTokens() external view virtual returns (address[] memory);
}


// File contracts/@rarible/royalties/contracts/LibPart.sol


pragma solidity ^0.8.9; 

library LibPart { 
    bytes32 public constant TYPE_HASH = keccak256("Part(address account,uint96 value)");

    struct Part { 
        address payable account;
        uint96 value; 
    }

    function hash(Part memory part) internal pure returns (bytes32) { 
        return keccak256(abi.encode(TYPE_HASH, part.account,  part.value));
    }
}


// File contracts/@rarible/royalties/contracts/impl/AbstractRoyalties.sol


pragma solidity ^0.8.9;

abstract contract AbstractRoyalties {
    mapping (uint256 => LibPart.Part[]) internal royalties;

    function _saveRoyalties(uint256 id, LibPart.Part[] memory _royalties) internal {
        uint256 totalValue;
        for (uint i = 0; i < _royalties.length; i++) {
            require(_royalties[i].account != address(0x0), "Recipient should be present");
            require(_royalties[i].value != 0, "Royalty value should be positive");
            totalValue += _royalties[i].value;
            royalties[id].push(_royalties[i]);
        }
        require(totalValue < 10000, "Royalty total value should be < 10000");
        _onRoyaltiesSet(id, _royalties);
    }

    function _updateAccount(uint256 _id, address _from, address _to) internal {
        uint length = royalties[_id].length;
        for(uint i = 0; i < length; i++) {
            if (royalties[_id][i].account == _from) {
                royalties[_id][i].account = payable(address(uint160(_to)));
            }
        }
    }

    function _onRoyaltiesSet(uint256 id, LibPart.Part[] memory _royalties) virtual internal;
}


// File contracts/@rarible/royalties/contracts/RoyaltiesV2.sol


pragma solidity ^0.8.9;

interface RoyaltiesV2 {
    event RoyaltiesSet(uint256 tokenId, LibPart.Part[] royalties);

    function getRaribleV2Royalties(uint256 id) external view returns (LibPart.Part[] memory);
}


// File contracts/@rarible/royalties/contracts/impl/RoyaltiesV2Impl.sol


pragma solidity ^0.8.9;


contract RoyaltiesV2Impl is AbstractRoyalties, RoyaltiesV2 {

    function getRaribleV2Royalties(uint256 id) override external view returns (LibPart.Part[] memory) {
        return royalties[id];
    }

    function _onRoyaltiesSet(uint256 id, LibPart.Part[] memory _royalties) override internal {
        emit RoyaltiesSet(id, _royalties);
    }
}


// File contracts/@rarible/royalties/contracts/LibRoyaltiesV2.sol


pragma solidity ^0.8.9;

library LibRoyaltiesV2 {
    /*
     * bytes4(keccak256('getRaribleV2Royalties(uint256)')) == 0xcad96cca
     */
    bytes4 constant _INTERFACE_ID_ROYALTIES = 0xcad96cca;
}


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

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

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

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

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

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

pragma solidity ^0.8.0;

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

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

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


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

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

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


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

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

pragma solidity ^0.8.0;

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

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


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

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

pragma solidity ^0.8.0;

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

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

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

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

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


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

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

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be 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 {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || 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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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


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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


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

// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

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

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

// OpenZeppelin Contracts v4.4.0 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}


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

// OpenZeppelin Contracts v4.4.0 (access/AccessControl.sol)

pragma solidity ^0.8.0;




/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}


// File contracts/SotaPilotNFT.sol

//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)

pragma solidity ^0.8.9;









contract SotaPilotNFT is ERC721Enumerable, Ownable, AccessControl, SotaInvestors, RoyaltiesV2Impl {
    using SafeMath for uint256;

    uint256 public constant MAX_SUPPLY = 49;
    uint96 public constant ROYALTIES_PERCENTAGE_BASIS_POINTS = 777; // 7.77 %

    string public baseTokenURI;
    bool public saleIsOpen = true;
    bool public authorizationRequired = false;
    uint256 public minPrice = 2.0 ether;
    uint256 public maxTokensPerMint = 5;
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");

    uint256 private immutable startingIndex;
    bytes4 private constant _INTERFACE_ID_ERC2981 = 0x2a55205a;

    event welcomeToSotaVerse(uint256 indexed id);

    constructor(string memory name, 
                string memory symbol, 
                string memory baseURI, 
                uint256 startFrom) ERC721(name, symbol) {
        startingIndex = startFrom;
        setBaseURI(baseURI);
        _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _setupRole(MINTER_ROLE, msg.sender);
    }

    function ownersOfTokens() external view override returns (address[] memory) {
        address[] memory tokenOwners = new address[](MAX_SUPPLY);

        for(uint256 i=0; i<MAX_SUPPLY; i++) {
            if(_exists(i)) {
                tokenOwners[i] = ownerOf(i);
            } else {
                tokenOwners[i] = address(0);
            }
        }

        return tokenOwners;
    }

    function tokensOfOwner(address owner) external view returns (uint[] memory) {
        uint tokenCount = balanceOf(owner);
        uint[] memory tokensId = new uint256[](tokenCount);

        for (uint i = 0; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokensId;
    }

    function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount) {
        LibPart.Part[] memory tokenRoyalties = royalties[tokenId];
        if(tokenRoyalties.length > 0) {
            return (tokenRoyalties[0].account, (salePrice * tokenRoyalties[0].value)/10000);
        }
        return (address(0), 0);
    }

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

    function setMinPrice(uint256 price) public onlyOwner {
        minPrice = price;
    }

    function setMaxTokensPerMint(uint256 maxPerMint) public onlyOwner {
        maxTokensPerMint = maxPerMint;
    }

    function setAuthorizationRequired(bool isRequired) public onlyOwner {
        authorizationRequired = isRequired;
    }

    function setAuthorizedMinters(address[] memory minters) public onlyOwner {
        for(uint256 i=0; i<minters.length; i++) {
            _setupRole(MINTER_ROLE, minters[i]);
        }
    }

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

    function mintNFT(uint256 numberOfTokens) public payable {
        uint256 totalCount = totalSupply();
        require(saleIsOpen, "Sale is not opened yet!");
        require(!authorizationRequired || hasRole(MINTER_ROLE, msg.sender), "Caller not authorized to mint!");
        require(numberOfTokens>0 && numberOfTokens<=maxTokensPerMint, "Wrong number of tokens to mint.");
        require(totalCount.add(numberOfTokens)<=MAX_SUPPLY, "Too many tokens to mint - will exceed MAX limit!");
        require(msg.value >= minPrice.mul(numberOfTokens), "Not enough ether to purchase NFT.");

        for(uint256 i=0; i<numberOfTokens; i++) {
            uint256 tokenId = totalSupply();
            uint256 sequenceId;
            sequenceId = ((tokenId + startingIndex) % MAX_SUPPLY);
            
            _safeMint(msg.sender, sequenceId);
            setRoyalties(sequenceId, payable(address(this)), ROYALTIES_PERCENTAGE_BASIS_POINTS);
            emit welcomeToSotaVerse(sequenceId);
        }
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "Nothing to withdraw.");

        (bool success, ) = msg.sender.call{value: balance}("");
        require(success, "Transfer failed.");
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721Enumerable, AccessControl) returns (bool) {
        if(interfaceId == LibRoyaltiesV2._INTERFACE_ID_ROYALTIES) {
            return true;
        }

        if(interfaceId == _INTERFACE_ID_ERC2981) {
            return true;
        }

        return super.supportsInterface(interfaceId);
    } 

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

    function setRoyalties(uint tokenId, address payable royaltiesReceipientAddress, uint96 percentageBasisPoints) private {
        LibPart.Part[] memory royalties = new LibPart.Part[](1);
        royalties[0].value = percentageBasisPoints;
        royalties[0].account = royaltiesReceipientAddress;
        _saveRoyalties(tokenId, royalties);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"uint256","name":"startFrom","type":"uint256"}],"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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"components":[{"internalType":"address payable","name":"account","type":"address"},{"internalType":"uint96","name":"value","type":"uint96"}],"indexed":false,"internalType":"struct LibPart.Part[]","name":"royalties","type":"tuple[]"}],"name":"RoyaltiesSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"welcomeToSotaVerse","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROYALTIES_PERCENTAGE_BASIS_POINTS","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"authorizationRequired","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"uint256","name":"id","type":"uint256"}],"name":"getRaribleV2Royalties","outputs":[{"components":[{"internalType":"address payable","name":"account","type":"address"},{"internalType":"uint96","name":"value","type":"uint96"}],"internalType":"struct LibPart.Part[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintNFT","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":"ownersOfTokens","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"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":"saleIsOpen","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":"bool","name":"isRequired","type":"bool"}],"name":"setAuthorizationRequired","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"minters","type":"address[]"}],"name":"setAuthorizedMinters","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerMint","type":"uint256"}],"name":"setMaxTokensPerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setMinPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a0604052600e805461ffff19166001179055671bc16d674ec80000600f5560056010553480156200003057600080fd5b5060405162003867380380620038678339810160408190526200005391620003dd565b8351849084906200006c9060009060208501906200026a565b508051620000829060019060208401906200026a565b5050506200009f62000099620000f260201b60201c565b620000f6565b6080819052620000af8262000148565b620000bc600033620001c0565b620000e87f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633620001c0565b50505050620004b3565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001a75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001bc90600d9060208401906200026a565b5050565b620001bc82826000828152600b602090815260408083206001600160a01b038516845290915290205460ff16620001bc576000828152600b602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620002263390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b828054620002789062000476565b90600052602060002090601f0160209004810192826200029c5760008555620002e7565b82601f10620002b757805160ff1916838001178555620002e7565b82800160010185558215620002e7579182015b82811115620002e7578251825591602001919060010190620002ca565b50620002f5929150620002f9565b5090565b5b80821115620002f55760008155600101620002fa565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200033857600080fd5b81516001600160401b038082111562000355576200035562000310565b604051601f8301601f19908116603f0116810190828211818310171562000380576200038062000310565b816040528381526020925086838588010111156200039d57600080fd5b600091505b83821015620003c15785820183015181830184015290820190620003a2565b83821115620003d35760008385830101525b9695505050505050565b60008060008060808587031215620003f457600080fd5b84516001600160401b03808211156200040c57600080fd5b6200041a8883890162000326565b955060208701519150808211156200043157600080fd5b6200043f8883890162000326565b945060408701519150808211156200045657600080fd5b50620004658782880162000326565b606096909601519497939650505050565b600181811c908216806200048b57607f821691505b60208210811415620004ad57634e487b7160e01b600052602260045260246000fd5b50919050565b608051613398620004cf600039600061159c01526133986000f3fe6080604052600436106102725760003560e01c80636352211e1161014f578063a22cb465116100c1578063d547cfb71161007a578063d547cfb714610788578063d66c32761461079d578063e45be8eb146107cb578063e985e9c5146107e1578063ecb0443d1461082a578063f2fde38b1461084a57600080fd5b8063a22cb465146106a7578063b88d4fde146106c7578063c87b56dd146106e7578063cad96cca14610707578063d539139314610734578063d547741f1461076857600080fd5b80638da5cb5b116101135780638da5cb5b1461060d57806391d148541461062b578063926427441461064b57806395410d2b1461065e57806395d89b411461067d578063a217fddf1461069257600080fd5b80636352211e1461056b57806370a082311461058b578063715018a6146105ab578063762cda3c146105c05780638462151c146105e057600080fd5b80632a55205a116101e857806336568abe116101ac57806336568abe146104b65780633ccfd60b146104d657806342842e0e146104eb5780634f6ccce71461050b57806355f804b31461052b5780635ea8cd121461054b57600080fd5b80632a55205a1461040d5780632f2ff15d1461044c5780632f745c591461046c57806332cb6b0c1461048c57806334918dfd146104a157600080fd5b80631211b0761161023a5780631211b07614610348578063174654711461036257806318160ddd14610386578063201a611e1461039b57806323b872dd146103bd578063248a9ca3146103dd57600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063095ea7b3146103065780630993716814610328575b600080fd5b34801561028357600080fd5b50610297610292366004612b32565b61086a565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c16108bd565b6040516102a39190612ba7565b3480156102da57600080fd5b506102ee6102e9366004612bba565b61094f565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b50610326610321366004612bef565b6109e9565b005b34801561033457600080fd5b50610326610343366004612c60565b610aff565b34801561035457600080fd5b50600e546102979060ff1681565b34801561036e57600080fd5b5061037860105481565b6040519081526020016102a3565b34801561039257600080fd5b50600854610378565b3480156103a757600080fd5b506103b0610b8e565b6040516102a39190612d0d565b3480156103c957600080fd5b506103266103d8366004612d5a565b610c6d565b3480156103e957600080fd5b506103786103f8366004612bba565b6000908152600b602052604090206001015490565b34801561041957600080fd5b5061042d610428366004612d96565b610c9e565b604080516001600160a01b0390931683526020830191909152016102a3565b34801561045857600080fd5b50610326610467366004612db8565b610da4565b34801561047857600080fd5b50610378610487366004612bef565b610dca565b34801561049857600080fd5b50610378603181565b3480156104ad57600080fd5b50610326610e60565b3480156104c257600080fd5b506103266104d1366004612db8565b610e9e565b3480156104e257600080fd5b50610326610f18565b3480156104f757600080fd5b50610326610506366004612d5a565b611012565b34801561051757600080fd5b50610378610526366004612bba565b61102d565b34801561053757600080fd5b50610326610546366004612e3c565b6110c0565b34801561055757600080fd5b50610326610566366004612bba565b6110fd565b34801561057757600080fd5b506102ee610586366004612bba565b61112c565b34801561059757600080fd5b506103786105a6366004612e85565b6111a3565b3480156105b757600080fd5b5061032661122a565b3480156105cc57600080fd5b506103266105db366004612bba565b611260565b3480156105ec57600080fd5b506106006105fb366004612e85565b61128f565b6040516102a39190612ea0565b34801561061957600080fd5b50600a546001600160a01b03166102ee565b34801561063757600080fd5b50610297610646366004612db8565b611331565b610326610659366004612bba565b61135c565b34801561066a57600080fd5b50600e5461029790610100900460ff1681565b34801561068957600080fd5b506102c1611624565b34801561069e57600080fd5b50610378600081565b3480156106b357600080fd5b506103266106c2366004612ee8565b611633565b3480156106d357600080fd5b506103266106e2366004612f12565b61163e565b3480156106f357600080fd5b506102c1610702366004612bba565b611676565b34801561071357600080fd5b50610727610722366004612bba565b611751565b6040516102a39190612fe6565b34801561074057600080fd5b506103787f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b34801561077457600080fd5b50610326610783366004612db8565b6117e0565b34801561079457600080fd5b506102c1611806565b3480156107a957600080fd5b506107b361030981565b6040516001600160601b0390911681526020016102a3565b3480156107d757600080fd5b50610378600f5481565b3480156107ed57600080fd5b506102976107fc366004612ff9565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561083657600080fd5b50610326610845366004613023565b611894565b34801561085657600080fd5b50610326610865366004612e85565b6118d8565b60006001600160e01b0319821663656cb66560e11b141561088d57506001919050565b6001600160e01b0319821663152a902d60e11b14156108ae57506001919050565b6108b782611973565b92915050565b6060600080546108cc9061303e565b80601f01602080910402602001604051908101604052809291908181526020018280546108f89061303e565b80156109455780601f1061091a57610100808354040283529160200191610945565b820191906000526020600020905b81548152906001019060200180831161092857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109cd5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109f48261112c565b9050806001600160a01b0316836001600160a01b03161415610a625760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109c4565b336001600160a01b0382161480610a7e5750610a7e81336107fc565b610af05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109c4565b610afa8383611998565b505050565b600a546001600160a01b03163314610b295760405162461bcd60e51b81526004016109c490613073565b60005b8151811015610b8a57610b787f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6838381518110610b6b57610b6b6130a8565b6020026020010151611a06565b80610b82816130d4565b915050610b2c565b5050565b604080516031808252610640820190925260609160009190602082016106208036833701905050905060005b6031811015610c67576000818152600260205260409020546001600160a01b031615610c2057610be98161112c565b828281518110610bfb57610bfb6130a8565b60200260200101906001600160a01b031690816001600160a01b031681525050610c55565b6000828281518110610c3457610c346130a8565b60200260200101906001600160a01b031690816001600160a01b0316815250505b80610c5f816130d4565b915050610bba565b50919050565b610c773382611a10565b610c935760405162461bcd60e51b81526004016109c4906130ef565b610afa838383611b07565b6000828152600c60209081526040808320805482518185028101850190935280835284938493929190849084015b82821015610d1b57600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b90046001600160601b031681830152825260019092019101610ccc565b505050509050600081511115610d945780600081518110610d3e57610d3e6130a8565b60200260200101516000015161271082600081518110610d6057610d606130a8565b6020026020010151602001516001600160601b031686610d809190613140565b610d8a9190613175565b9250925050610d9d565b60008092509250505b9250929050565b6000828152600b6020526040902060010154610dc08133611cb2565b610afa8383611d16565b6000610dd5836111a3565b8210610e375760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109c4565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610e8a5760405162461bcd60e51b81526004016109c490613073565b600e805460ff19811660ff90911615179055565b6001600160a01b0381163314610f0e5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016109c4565b610b8a8282611d9c565b600a546001600160a01b03163314610f425760405162461bcd60e51b81526004016109c490613073565b4780610f875760405162461bcd60e51b81526020600482015260146024820152732737ba3434b733903a37903bb4ba34323930bb9760611b60448201526064016109c4565b604051600090339083908381818185875af1925050503d8060008114610fc9576040519150601f19603f3d011682016040523d82523d6000602084013e610fce565b606091505b5050905080610b8a5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016109c4565b610afa8383836040518060200160405280600081525061163e565b600061103860085490565b821061109b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109c4565b600882815481106110ae576110ae6130a8565b90600052602060002001549050919050565b600a546001600160a01b031633146110ea5760405162461bcd60e51b81526004016109c490613073565b8051610b8a90600d906020840190612a83565b600a546001600160a01b031633146111275760405162461bcd60e51b81526004016109c490613073565b600f55565b6000818152600260205260408120546001600160a01b0316806108b75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109c4565b60006001600160a01b03821661120e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109c4565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112545760405162461bcd60e51b81526004016109c490613073565b61125e6000611e03565b565b600a546001600160a01b0316331461128a5760405162461bcd60e51b81526004016109c490613073565b601055565b6060600061129c836111a3565b905060008167ffffffffffffffff8111156112b9576112b9612c19565b6040519080825280602002602001820160405280156112e2578160200160208202803683370190505b50905060005b82811015611329576112fa8582610dca565b82828151811061130c5761130c6130a8565b602090810291909101015280611321816130d4565b9150506112e8565b509392505050565b6000918252600b602090815260408084206001600160a01b0393909316845291905290205460ff1690565b600061136760085490565b600e5490915060ff166113bc5760405162461bcd60e51b815260206004820152601760248201527f53616c65206973206e6f74206f70656e6564207965742100000000000000000060448201526064016109c4565b600e54610100900460ff1615806113f857506113f87f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633611331565b6114445760405162461bcd60e51b815260206004820152601e60248201527f43616c6c6572206e6f7420617574686f72697a656420746f206d696e7421000060448201526064016109c4565b60008211801561145657506010548211155b6114a25760405162461bcd60e51b815260206004820152601f60248201527f57726f6e67206e756d626572206f6620746f6b656e7320746f206d696e742e0060448201526064016109c4565b60316114ae8284611e55565b11156115155760405162461bcd60e51b815260206004820152603060248201527f546f6f206d616e7920746f6b656e7320746f206d696e74202d2077696c6c206560448201526f7863656564204d4158206c696d69742160801b60648201526084016109c4565b600f546115229083611e61565b34101561157b5760405162461bcd60e51b815260206004820152602160248201527f4e6f7420656e6f75676820657468657220746f207075726368617365204e46546044820152601760f91b60648201526084016109c4565b60005b82811015610afa57600061159160085490565b9050600060316115c17f000000000000000000000000000000000000000000000000000000000000000084613189565b6115cb91906131a1565b90506115d73382611e6d565b6115e48130610309611e87565b60405181907fa197fedfda7eb026c5dedfd78840eb9d3628630eb01b1538fbfe6a7edc245ad590600090a25050808061161c906130d4565b91505061157e565b6060600180546108cc9061303e565b610b8a338383611f35565b6116483383611a10565b6116645760405162461bcd60e51b81526004016109c4906130ef565b61167084848484612004565b50505050565b6000818152600260205260409020546060906001600160a01b03166116f55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109c4565b60006116ff612037565b9050600081511161171f576040518060200160405280600081525061174a565b8061172984612046565b60405160200161173a9291906131b5565b6040516020818303038152906040525b9392505050565b6060600c6000838152602001908152602001600020805480602002602001604051908101604052809291908181526020016000905b828210156117d557600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b90046001600160601b031681830152825260019092019101611786565b505050509050919050565b6000828152600b60205260409020600101546117fc8133611cb2565b610afa8383611d9c565b600d80546118139061303e565b80601f016020809104026020016040519081016040528092919081815260200182805461183f9061303e565b801561188c5780601f106118615761010080835404028352916020019161188c565b820191906000526020600020905b81548152906001019060200180831161186f57829003601f168201915b505050505081565b600a546001600160a01b031633146118be5760405162461bcd60e51b81526004016109c490613073565b600e80549115156101000261ff0019909216919091179055565b600a546001600160a01b031633146119025760405162461bcd60e51b81526004016109c490613073565b6001600160a01b0381166119675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109c4565b61197081611e03565b50565b60006001600160e01b03198216637965db0b60e01b14806108b757506108b782612144565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119cd8261112c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610b8a8282611d16565b6000818152600260205260408120546001600160a01b0316611a895760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109c4565b6000611a948361112c565b9050806001600160a01b0316846001600160a01b03161480611acf5750836001600160a01b0316611ac48461094f565b6001600160a01b0316145b80611aff57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b1a8261112c565b6001600160a01b031614611b825760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109c4565b6001600160a01b038216611be45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109c4565b611bef838383612169565b611bfa600082611998565b6001600160a01b0383166000908152600360205260408120805460019290611c239084906131e4565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c51908490613189565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611cbc8282611331565b610b8a57611cd4816001600160a01b03166014612221565b611cdf836020612221565b604051602001611cf09291906131fb565b60408051601f198184030181529082905262461bcd60e51b82526109c491600401612ba7565b611d208282611331565b610b8a576000828152600b602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611d583390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b611da68282611331565b15610b8a576000828152600b602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061174a8284613189565b600061174a8284613140565b610b8a8282604051806020016040528060008152506123bd565b604080516001808252818301909252600091816020015b6040805180820190915260008082526020820152815260200190600190039081611e9e5790505090508181600081518110611edb57611edb6130a8565b6020026020010151602001906001600160601b031690816001600160601b0316815250508281600081518110611f1357611f136130a8565b60209081029190910101516001600160a01b03909116905261167084826123f0565b816001600160a01b0316836001600160a01b03161415611f975760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109c4565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61200f848484611b07565b61201b8484848461260b565b6116705760405162461bcd60e51b81526004016109c490613270565b6060600d80546108cc9061303e565b60608161206a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612094578061207e816130d4565b915061208d9050600a83613175565b915061206e565b60008167ffffffffffffffff8111156120af576120af612c19565b6040519080825280601f01601f1916602001820160405280156120d9576020820181803683370190505b5090505b8415611aff576120ee6001836131e4565b91506120fb600a866131a1565b612106906030613189565b60f81b81838151811061211b5761211b6130a8565b60200101906001600160f81b031916908160001a90535061213d600a86613175565b94506120dd565b60006001600160e01b0319821663780e9d6360e01b14806108b757506108b782612718565b6001600160a01b0383166121c4576121bf81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6121e7565b816001600160a01b0316836001600160a01b0316146121e7576121e78382612768565b6001600160a01b0382166121fe57610afa81612805565b826001600160a01b0316826001600160a01b031614610afa57610afa82826128b4565b60606000612230836002613140565b61223b906002613189565b67ffffffffffffffff81111561225357612253612c19565b6040519080825280601f01601f19166020018201604052801561227d576020820181803683370190505b509050600360fc1b81600081518110612298576122986130a8565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106122c7576122c76130a8565b60200101906001600160f81b031916908160001a90535060006122eb846002613140565b6122f6906001613189565b90505b600181111561236e576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061232a5761232a6130a8565b1a60f81b828281518110612340576123406130a8565b60200101906001600160f81b031916908160001a90535060049490941c93612367816132c2565b90506122f9565b50831561174a5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016109c4565b6123c783836128f8565b6123d4600084848461260b565b610afa5760405162461bcd60e51b81526004016109c490613270565b6000805b82518110156125a15760006001600160a01b031683828151811061241a5761241a6130a8565b6020026020010151600001516001600160a01b0316141561247d5760405162461bcd60e51b815260206004820152601b60248201527f526563697069656e742073686f756c642062652070726573656e74000000000060448201526064016109c4565b82818151811061248f5761248f6130a8565b6020026020010151602001516001600160601b0316600014156124f45760405162461bcd60e51b815260206004820181905260248201527f526f79616c74792076616c75652073686f756c6420626520706f73697469766560448201526064016109c4565b828181518110612506576125066130a8565b6020026020010151602001516001600160601b0316826125269190613189565b9150600c600085815260200190815260200160002083828151811061254d5761254d6130a8565b6020908102919091018101518254600181018455600093845292829020815191909201516001600160601b0316600160a01b026001600160a01b039091161791015580612599816130d4565b9150506123f4565b5061271081106126015760405162461bcd60e51b815260206004820152602560248201527f526f79616c747920746f74616c2076616c75652073686f756c64206265203c20604482015264031303030360dc1b60648201526084016109c4565b610afa8383612a46565b60006001600160a01b0384163b1561270d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061264f9033908990889088906004016132d9565b602060405180830381600087803b15801561266957600080fd5b505af1925050508015612699575060408051601f3d908101601f1916820190925261269691810190613316565b60015b6126f3573d8080156126c7576040519150601f19603f3d011682016040523d82523d6000602084013e6126cc565b606091505b5080516126eb5760405162461bcd60e51b81526004016109c490613270565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611aff565b506001949350505050565b60006001600160e01b031982166380ac58cd60e01b148061274957506001600160e01b03198216635b5e139f60e01b145b806108b757506301ffc9a760e01b6001600160e01b03198316146108b7565b60006001612775846111a3565b61277f91906131e4565b6000838152600760205260409020549091508082146127d2576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612817906001906131e4565b6000838152600960205260408120546008805493945090928490811061283f5761283f6130a8565b906000526020600020015490508060088381548110612860576128606130a8565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061289857612898613333565b6001900381819060005260206000200160009055905550505050565b60006128bf836111a3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661294e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109c4565b6000818152600260205260409020546001600160a01b0316156129b35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109c4565b6129bf60008383612169565b6001600160a01b03821660009081526003602052604081208054600192906129e8908490613189565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b7f3fa96d7b6bcbfe71ef171666d84db3cf52fa2d1c8afdb1cc8e486177f208b7df8282604051612a77929190613349565b60405180910390a15050565b828054612a8f9061303e565b90600052602060002090601f016020900481019282612ab15760008555612af7565b82601f10612aca57805160ff1916838001178555612af7565b82800160010185558215612af7579182015b82811115612af7578251825591602001919060010190612adc565b50612b03929150612b07565b5090565b5b80821115612b035760008155600101612b08565b6001600160e01b03198116811461197057600080fd5b600060208284031215612b4457600080fd5b813561174a81612b1c565b60005b83811015612b6a578181015183820152602001612b52565b838111156116705750506000910152565b60008151808452612b93816020860160208601612b4f565b601f01601f19169290920160200192915050565b60208152600061174a6020830184612b7b565b600060208284031215612bcc57600080fd5b5035919050565b80356001600160a01b0381168114612bea57600080fd5b919050565b60008060408385031215612c0257600080fd5b612c0b83612bd3565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612c5857612c58612c19565b604052919050565b60006020808385031215612c7357600080fd5b823567ffffffffffffffff80821115612c8b57600080fd5b818501915085601f830112612c9f57600080fd5b813581811115612cb157612cb1612c19565b8060051b9150612cc2848301612c2f565b8181529183018401918481019088841115612cdc57600080fd5b938501935b83851015612d0157612cf285612bd3565b82529385019390850190612ce1565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612d4e5783516001600160a01b031683529284019291840191600101612d29565b50909695505050505050565b600080600060608486031215612d6f57600080fd5b612d7884612bd3565b9250612d8660208501612bd3565b9150604084013590509250925092565b60008060408385031215612da957600080fd5b50508035926020909101359150565b60008060408385031215612dcb57600080fd5b82359150612ddb60208401612bd3565b90509250929050565b600067ffffffffffffffff831115612dfe57612dfe612c19565b612e11601f8401601f1916602001612c2f565b9050828152838383011115612e2557600080fd5b828260208301376000602084830101529392505050565b600060208284031215612e4e57600080fd5b813567ffffffffffffffff811115612e6557600080fd5b8201601f81018413612e7657600080fd5b611aff84823560208401612de4565b600060208284031215612e9757600080fd5b61174a82612bd3565b6020808252825182820181905260009190848201906040850190845b81811015612d4e57835183529284019291840191600101612ebc565b80358015158114612bea57600080fd5b60008060408385031215612efb57600080fd5b612f0483612bd3565b9150612ddb60208401612ed8565b60008060008060808587031215612f2857600080fd5b612f3185612bd3565b9350612f3f60208601612bd3565b925060408501359150606085013567ffffffffffffffff811115612f6257600080fd5b8501601f81018713612f7357600080fd5b612f8287823560208401612de4565b91505092959194509250565b600081518084526020808501945080840160005b83811015612fdb57815180516001600160a01b031688528301516001600160601b03168388015260409096019590820190600101612fa2565b509495945050505050565b60208152600061174a6020830184612f8e565b6000806040838503121561300c57600080fd5b61301583612bd3565b9150612ddb60208401612bd3565b60006020828403121561303557600080fd5b61174a82612ed8565b600181811c9082168061305257607f821691505b60208210811415610c6757634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156130e8576130e86130be565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600081600019048311821515161561315a5761315a6130be565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826131845761318461315f565b500490565b6000821982111561319c5761319c6130be565b500190565b6000826131b0576131b061315f565b500690565b600083516131c7818460208801612b4f565b8351908301906131db818360208801612b4f565b01949350505050565b6000828210156131f6576131f66130be565b500390565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613233816017850160208801612b4f565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351613264816028840160208801612b4f565b01602801949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000816132d1576132d16130be565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061330c90830184612b7b565b9695505050505050565b60006020828403121561332857600080fd5b815161174a81612b1c565b634e487b7160e01b600052603160045260246000fd5b828152604060208201526000611aff6040830184612f8e56fea26469706673582212204ffb3397af1b0a788f37acaab6660e7277140ba93f1fb8d8104a10709482428464736f6c63430008090033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000d0000000000000000000000000000000000000000000000000000000000000009534f544120436c756200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004534f544100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f697066732e696f2f697066732f626166796265696577636736366a71716774647162687361696875797579346a70676d35626a32706c7a6163707437706f7a346c333775683666652f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102725760003560e01c80636352211e1161014f578063a22cb465116100c1578063d547cfb71161007a578063d547cfb714610788578063d66c32761461079d578063e45be8eb146107cb578063e985e9c5146107e1578063ecb0443d1461082a578063f2fde38b1461084a57600080fd5b8063a22cb465146106a7578063b88d4fde146106c7578063c87b56dd146106e7578063cad96cca14610707578063d539139314610734578063d547741f1461076857600080fd5b80638da5cb5b116101135780638da5cb5b1461060d57806391d148541461062b578063926427441461064b57806395410d2b1461065e57806395d89b411461067d578063a217fddf1461069257600080fd5b80636352211e1461056b57806370a082311461058b578063715018a6146105ab578063762cda3c146105c05780638462151c146105e057600080fd5b80632a55205a116101e857806336568abe116101ac57806336568abe146104b65780633ccfd60b146104d657806342842e0e146104eb5780634f6ccce71461050b57806355f804b31461052b5780635ea8cd121461054b57600080fd5b80632a55205a1461040d5780632f2ff15d1461044c5780632f745c591461046c57806332cb6b0c1461048c57806334918dfd146104a157600080fd5b80631211b0761161023a5780631211b07614610348578063174654711461036257806318160ddd14610386578063201a611e1461039b57806323b872dd146103bd578063248a9ca3146103dd57600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063095ea7b3146103065780630993716814610328575b600080fd5b34801561028357600080fd5b50610297610292366004612b32565b61086a565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c16108bd565b6040516102a39190612ba7565b3480156102da57600080fd5b506102ee6102e9366004612bba565b61094f565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b50610326610321366004612bef565b6109e9565b005b34801561033457600080fd5b50610326610343366004612c60565b610aff565b34801561035457600080fd5b50600e546102979060ff1681565b34801561036e57600080fd5b5061037860105481565b6040519081526020016102a3565b34801561039257600080fd5b50600854610378565b3480156103a757600080fd5b506103b0610b8e565b6040516102a39190612d0d565b3480156103c957600080fd5b506103266103d8366004612d5a565b610c6d565b3480156103e957600080fd5b506103786103f8366004612bba565b6000908152600b602052604090206001015490565b34801561041957600080fd5b5061042d610428366004612d96565b610c9e565b604080516001600160a01b0390931683526020830191909152016102a3565b34801561045857600080fd5b50610326610467366004612db8565b610da4565b34801561047857600080fd5b50610378610487366004612bef565b610dca565b34801561049857600080fd5b50610378603181565b3480156104ad57600080fd5b50610326610e60565b3480156104c257600080fd5b506103266104d1366004612db8565b610e9e565b3480156104e257600080fd5b50610326610f18565b3480156104f757600080fd5b50610326610506366004612d5a565b611012565b34801561051757600080fd5b50610378610526366004612bba565b61102d565b34801561053757600080fd5b50610326610546366004612e3c565b6110c0565b34801561055757600080fd5b50610326610566366004612bba565b6110fd565b34801561057757600080fd5b506102ee610586366004612bba565b61112c565b34801561059757600080fd5b506103786105a6366004612e85565b6111a3565b3480156105b757600080fd5b5061032661122a565b3480156105cc57600080fd5b506103266105db366004612bba565b611260565b3480156105ec57600080fd5b506106006105fb366004612e85565b61128f565b6040516102a39190612ea0565b34801561061957600080fd5b50600a546001600160a01b03166102ee565b34801561063757600080fd5b50610297610646366004612db8565b611331565b610326610659366004612bba565b61135c565b34801561066a57600080fd5b50600e5461029790610100900460ff1681565b34801561068957600080fd5b506102c1611624565b34801561069e57600080fd5b50610378600081565b3480156106b357600080fd5b506103266106c2366004612ee8565b611633565b3480156106d357600080fd5b506103266106e2366004612f12565b61163e565b3480156106f357600080fd5b506102c1610702366004612bba565b611676565b34801561071357600080fd5b50610727610722366004612bba565b611751565b6040516102a39190612fe6565b34801561074057600080fd5b506103787f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b34801561077457600080fd5b50610326610783366004612db8565b6117e0565b34801561079457600080fd5b506102c1611806565b3480156107a957600080fd5b506107b361030981565b6040516001600160601b0390911681526020016102a3565b3480156107d757600080fd5b50610378600f5481565b3480156107ed57600080fd5b506102976107fc366004612ff9565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561083657600080fd5b50610326610845366004613023565b611894565b34801561085657600080fd5b50610326610865366004612e85565b6118d8565b60006001600160e01b0319821663656cb66560e11b141561088d57506001919050565b6001600160e01b0319821663152a902d60e11b14156108ae57506001919050565b6108b782611973565b92915050565b6060600080546108cc9061303e565b80601f01602080910402602001604051908101604052809291908181526020018280546108f89061303e565b80156109455780601f1061091a57610100808354040283529160200191610945565b820191906000526020600020905b81548152906001019060200180831161092857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109cd5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109f48261112c565b9050806001600160a01b0316836001600160a01b03161415610a625760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109c4565b336001600160a01b0382161480610a7e5750610a7e81336107fc565b610af05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109c4565b610afa8383611998565b505050565b600a546001600160a01b03163314610b295760405162461bcd60e51b81526004016109c490613073565b60005b8151811015610b8a57610b787f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6838381518110610b6b57610b6b6130a8565b6020026020010151611a06565b80610b82816130d4565b915050610b2c565b5050565b604080516031808252610640820190925260609160009190602082016106208036833701905050905060005b6031811015610c67576000818152600260205260409020546001600160a01b031615610c2057610be98161112c565b828281518110610bfb57610bfb6130a8565b60200260200101906001600160a01b031690816001600160a01b031681525050610c55565b6000828281518110610c3457610c346130a8565b60200260200101906001600160a01b031690816001600160a01b0316815250505b80610c5f816130d4565b915050610bba565b50919050565b610c773382611a10565b610c935760405162461bcd60e51b81526004016109c4906130ef565b610afa838383611b07565b6000828152600c60209081526040808320805482518185028101850190935280835284938493929190849084015b82821015610d1b57600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b90046001600160601b031681830152825260019092019101610ccc565b505050509050600081511115610d945780600081518110610d3e57610d3e6130a8565b60200260200101516000015161271082600081518110610d6057610d606130a8565b6020026020010151602001516001600160601b031686610d809190613140565b610d8a9190613175565b9250925050610d9d565b60008092509250505b9250929050565b6000828152600b6020526040902060010154610dc08133611cb2565b610afa8383611d16565b6000610dd5836111a3565b8210610e375760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109c4565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610e8a5760405162461bcd60e51b81526004016109c490613073565b600e805460ff19811660ff90911615179055565b6001600160a01b0381163314610f0e5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016109c4565b610b8a8282611d9c565b600a546001600160a01b03163314610f425760405162461bcd60e51b81526004016109c490613073565b4780610f875760405162461bcd60e51b81526020600482015260146024820152732737ba3434b733903a37903bb4ba34323930bb9760611b60448201526064016109c4565b604051600090339083908381818185875af1925050503d8060008114610fc9576040519150601f19603f3d011682016040523d82523d6000602084013e610fce565b606091505b5050905080610b8a5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016109c4565b610afa8383836040518060200160405280600081525061163e565b600061103860085490565b821061109b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109c4565b600882815481106110ae576110ae6130a8565b90600052602060002001549050919050565b600a546001600160a01b031633146110ea5760405162461bcd60e51b81526004016109c490613073565b8051610b8a90600d906020840190612a83565b600a546001600160a01b031633146111275760405162461bcd60e51b81526004016109c490613073565b600f55565b6000818152600260205260408120546001600160a01b0316806108b75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109c4565b60006001600160a01b03821661120e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109c4565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112545760405162461bcd60e51b81526004016109c490613073565b61125e6000611e03565b565b600a546001600160a01b0316331461128a5760405162461bcd60e51b81526004016109c490613073565b601055565b6060600061129c836111a3565b905060008167ffffffffffffffff8111156112b9576112b9612c19565b6040519080825280602002602001820160405280156112e2578160200160208202803683370190505b50905060005b82811015611329576112fa8582610dca565b82828151811061130c5761130c6130a8565b602090810291909101015280611321816130d4565b9150506112e8565b509392505050565b6000918252600b602090815260408084206001600160a01b0393909316845291905290205460ff1690565b600061136760085490565b600e5490915060ff166113bc5760405162461bcd60e51b815260206004820152601760248201527f53616c65206973206e6f74206f70656e6564207965742100000000000000000060448201526064016109c4565b600e54610100900460ff1615806113f857506113f87f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633611331565b6114445760405162461bcd60e51b815260206004820152601e60248201527f43616c6c6572206e6f7420617574686f72697a656420746f206d696e7421000060448201526064016109c4565b60008211801561145657506010548211155b6114a25760405162461bcd60e51b815260206004820152601f60248201527f57726f6e67206e756d626572206f6620746f6b656e7320746f206d696e742e0060448201526064016109c4565b60316114ae8284611e55565b11156115155760405162461bcd60e51b815260206004820152603060248201527f546f6f206d616e7920746f6b656e7320746f206d696e74202d2077696c6c206560448201526f7863656564204d4158206c696d69742160801b60648201526084016109c4565b600f546115229083611e61565b34101561157b5760405162461bcd60e51b815260206004820152602160248201527f4e6f7420656e6f75676820657468657220746f207075726368617365204e46546044820152601760f91b60648201526084016109c4565b60005b82811015610afa57600061159160085490565b9050600060316115c17f000000000000000000000000000000000000000000000000000000000000000d84613189565b6115cb91906131a1565b90506115d73382611e6d565b6115e48130610309611e87565b60405181907fa197fedfda7eb026c5dedfd78840eb9d3628630eb01b1538fbfe6a7edc245ad590600090a25050808061161c906130d4565b91505061157e565b6060600180546108cc9061303e565b610b8a338383611f35565b6116483383611a10565b6116645760405162461bcd60e51b81526004016109c4906130ef565b61167084848484612004565b50505050565b6000818152600260205260409020546060906001600160a01b03166116f55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109c4565b60006116ff612037565b9050600081511161171f576040518060200160405280600081525061174a565b8061172984612046565b60405160200161173a9291906131b5565b6040516020818303038152906040525b9392505050565b6060600c6000838152602001908152602001600020805480602002602001604051908101604052809291908181526020016000905b828210156117d557600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b90046001600160601b031681830152825260019092019101611786565b505050509050919050565b6000828152600b60205260409020600101546117fc8133611cb2565b610afa8383611d9c565b600d80546118139061303e565b80601f016020809104026020016040519081016040528092919081815260200182805461183f9061303e565b801561188c5780601f106118615761010080835404028352916020019161188c565b820191906000526020600020905b81548152906001019060200180831161186f57829003601f168201915b505050505081565b600a546001600160a01b031633146118be5760405162461bcd60e51b81526004016109c490613073565b600e80549115156101000261ff0019909216919091179055565b600a546001600160a01b031633146119025760405162461bcd60e51b81526004016109c490613073565b6001600160a01b0381166119675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109c4565b61197081611e03565b50565b60006001600160e01b03198216637965db0b60e01b14806108b757506108b782612144565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119cd8261112c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610b8a8282611d16565b6000818152600260205260408120546001600160a01b0316611a895760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109c4565b6000611a948361112c565b9050806001600160a01b0316846001600160a01b03161480611acf5750836001600160a01b0316611ac48461094f565b6001600160a01b0316145b80611aff57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b1a8261112c565b6001600160a01b031614611b825760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109c4565b6001600160a01b038216611be45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109c4565b611bef838383612169565b611bfa600082611998565b6001600160a01b0383166000908152600360205260408120805460019290611c239084906131e4565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c51908490613189565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611cbc8282611331565b610b8a57611cd4816001600160a01b03166014612221565b611cdf836020612221565b604051602001611cf09291906131fb565b60408051601f198184030181529082905262461bcd60e51b82526109c491600401612ba7565b611d208282611331565b610b8a576000828152600b602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611d583390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b611da68282611331565b15610b8a576000828152600b602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061174a8284613189565b600061174a8284613140565b610b8a8282604051806020016040528060008152506123bd565b604080516001808252818301909252600091816020015b6040805180820190915260008082526020820152815260200190600190039081611e9e5790505090508181600081518110611edb57611edb6130a8565b6020026020010151602001906001600160601b031690816001600160601b0316815250508281600081518110611f1357611f136130a8565b60209081029190910101516001600160a01b03909116905261167084826123f0565b816001600160a01b0316836001600160a01b03161415611f975760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109c4565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61200f848484611b07565b61201b8484848461260b565b6116705760405162461bcd60e51b81526004016109c490613270565b6060600d80546108cc9061303e565b60608161206a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612094578061207e816130d4565b915061208d9050600a83613175565b915061206e565b60008167ffffffffffffffff8111156120af576120af612c19565b6040519080825280601f01601f1916602001820160405280156120d9576020820181803683370190505b5090505b8415611aff576120ee6001836131e4565b91506120fb600a866131a1565b612106906030613189565b60f81b81838151811061211b5761211b6130a8565b60200101906001600160f81b031916908160001a90535061213d600a86613175565b94506120dd565b60006001600160e01b0319821663780e9d6360e01b14806108b757506108b782612718565b6001600160a01b0383166121c4576121bf81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6121e7565b816001600160a01b0316836001600160a01b0316146121e7576121e78382612768565b6001600160a01b0382166121fe57610afa81612805565b826001600160a01b0316826001600160a01b031614610afa57610afa82826128b4565b60606000612230836002613140565b61223b906002613189565b67ffffffffffffffff81111561225357612253612c19565b6040519080825280601f01601f19166020018201604052801561227d576020820181803683370190505b509050600360fc1b81600081518110612298576122986130a8565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106122c7576122c76130a8565b60200101906001600160f81b031916908160001a90535060006122eb846002613140565b6122f6906001613189565b90505b600181111561236e576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061232a5761232a6130a8565b1a60f81b828281518110612340576123406130a8565b60200101906001600160f81b031916908160001a90535060049490941c93612367816132c2565b90506122f9565b50831561174a5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016109c4565b6123c783836128f8565b6123d4600084848461260b565b610afa5760405162461bcd60e51b81526004016109c490613270565b6000805b82518110156125a15760006001600160a01b031683828151811061241a5761241a6130a8565b6020026020010151600001516001600160a01b0316141561247d5760405162461bcd60e51b815260206004820152601b60248201527f526563697069656e742073686f756c642062652070726573656e74000000000060448201526064016109c4565b82818151811061248f5761248f6130a8565b6020026020010151602001516001600160601b0316600014156124f45760405162461bcd60e51b815260206004820181905260248201527f526f79616c74792076616c75652073686f756c6420626520706f73697469766560448201526064016109c4565b828181518110612506576125066130a8565b6020026020010151602001516001600160601b0316826125269190613189565b9150600c600085815260200190815260200160002083828151811061254d5761254d6130a8565b6020908102919091018101518254600181018455600093845292829020815191909201516001600160601b0316600160a01b026001600160a01b039091161791015580612599816130d4565b9150506123f4565b5061271081106126015760405162461bcd60e51b815260206004820152602560248201527f526f79616c747920746f74616c2076616c75652073686f756c64206265203c20604482015264031303030360dc1b60648201526084016109c4565b610afa8383612a46565b60006001600160a01b0384163b1561270d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061264f9033908990889088906004016132d9565b602060405180830381600087803b15801561266957600080fd5b505af1925050508015612699575060408051601f3d908101601f1916820190925261269691810190613316565b60015b6126f3573d8080156126c7576040519150601f19603f3d011682016040523d82523d6000602084013e6126cc565b606091505b5080516126eb5760405162461bcd60e51b81526004016109c490613270565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611aff565b506001949350505050565b60006001600160e01b031982166380ac58cd60e01b148061274957506001600160e01b03198216635b5e139f60e01b145b806108b757506301ffc9a760e01b6001600160e01b03198316146108b7565b60006001612775846111a3565b61277f91906131e4565b6000838152600760205260409020549091508082146127d2576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612817906001906131e4565b6000838152600960205260408120546008805493945090928490811061283f5761283f6130a8565b906000526020600020015490508060088381548110612860576128606130a8565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061289857612898613333565b6001900381819060005260206000200160009055905550505050565b60006128bf836111a3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661294e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109c4565b6000818152600260205260409020546001600160a01b0316156129b35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109c4565b6129bf60008383612169565b6001600160a01b03821660009081526003602052604081208054600192906129e8908490613189565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b7f3fa96d7b6bcbfe71ef171666d84db3cf52fa2d1c8afdb1cc8e486177f208b7df8282604051612a77929190613349565b60405180910390a15050565b828054612a8f9061303e565b90600052602060002090601f016020900481019282612ab15760008555612af7565b82601f10612aca57805160ff1916838001178555612af7565b82800160010185558215612af7579182015b82811115612af7578251825591602001919060010190612adc565b50612b03929150612b07565b5090565b5b80821115612b035760008155600101612b08565b6001600160e01b03198116811461197057600080fd5b600060208284031215612b4457600080fd5b813561174a81612b1c565b60005b83811015612b6a578181015183820152602001612b52565b838111156116705750506000910152565b60008151808452612b93816020860160208601612b4f565b601f01601f19169290920160200192915050565b60208152600061174a6020830184612b7b565b600060208284031215612bcc57600080fd5b5035919050565b80356001600160a01b0381168114612bea57600080fd5b919050565b60008060408385031215612c0257600080fd5b612c0b83612bd3565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612c5857612c58612c19565b604052919050565b60006020808385031215612c7357600080fd5b823567ffffffffffffffff80821115612c8b57600080fd5b818501915085601f830112612c9f57600080fd5b813581811115612cb157612cb1612c19565b8060051b9150612cc2848301612c2f565b8181529183018401918481019088841115612cdc57600080fd5b938501935b83851015612d0157612cf285612bd3565b82529385019390850190612ce1565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612d4e5783516001600160a01b031683529284019291840191600101612d29565b50909695505050505050565b600080600060608486031215612d6f57600080fd5b612d7884612bd3565b9250612d8660208501612bd3565b9150604084013590509250925092565b60008060408385031215612da957600080fd5b50508035926020909101359150565b60008060408385031215612dcb57600080fd5b82359150612ddb60208401612bd3565b90509250929050565b600067ffffffffffffffff831115612dfe57612dfe612c19565b612e11601f8401601f1916602001612c2f565b9050828152838383011115612e2557600080fd5b828260208301376000602084830101529392505050565b600060208284031215612e4e57600080fd5b813567ffffffffffffffff811115612e6557600080fd5b8201601f81018413612e7657600080fd5b611aff84823560208401612de4565b600060208284031215612e9757600080fd5b61174a82612bd3565b6020808252825182820181905260009190848201906040850190845b81811015612d4e57835183529284019291840191600101612ebc565b80358015158114612bea57600080fd5b60008060408385031215612efb57600080fd5b612f0483612bd3565b9150612ddb60208401612ed8565b60008060008060808587031215612f2857600080fd5b612f3185612bd3565b9350612f3f60208601612bd3565b925060408501359150606085013567ffffffffffffffff811115612f6257600080fd5b8501601f81018713612f7357600080fd5b612f8287823560208401612de4565b91505092959194509250565b600081518084526020808501945080840160005b83811015612fdb57815180516001600160a01b031688528301516001600160601b03168388015260409096019590820190600101612fa2565b509495945050505050565b60208152600061174a6020830184612f8e565b6000806040838503121561300c57600080fd5b61301583612bd3565b9150612ddb60208401612bd3565b60006020828403121561303557600080fd5b61174a82612ed8565b600181811c9082168061305257607f821691505b60208210811415610c6757634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156130e8576130e86130be565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600081600019048311821515161561315a5761315a6130be565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826131845761318461315f565b500490565b6000821982111561319c5761319c6130be565b500190565b6000826131b0576131b061315f565b500690565b600083516131c7818460208801612b4f565b8351908301906131db818360208801612b4f565b01949350505050565b6000828210156131f6576131f66130be565b500390565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613233816017850160208801612b4f565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351613264816028840160208801612b4f565b01602801949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000816132d1576132d16130be565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061330c90830184612b7b565b9695505050505050565b60006020828403121561332857600080fd5b815161174a81612b1c565b634e487b7160e01b600052603160045260246000fd5b828152604060208201526000611aff6040830184612f8e56fea26469706673582212204ffb3397af1b0a788f37acaab6660e7277140ba93f1fb8d8104a10709482428464736f6c63430008090033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000d0000000000000000000000000000000000000000000000000000000000000009534f544120436c756200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004534f544100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f697066732e696f2f697066732f626166796265696577636736366a71716774647162687361696875797579346a70676d35626a32706c7a6163707437706f7a346c333775683666652f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): SOTA Club
Arg [1] : symbol (string): SOTA
Arg [2] : baseURI (string): https://ipfs.io/ipfs/bafybeiewcg66jqqgtdqbhsaihuyuy4jpgm5bj2plzacpt7poz4l37uh6fe/
Arg [3] : startFrom (uint256): 13

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 534f544120436c75620000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 534f544100000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [9] : 68747470733a2f2f697066732e696f2f697066732f6261667962656965776367
Arg [10] : 36366a71716774647162687361696875797579346a70676d35626a32706c7a61
Arg [11] : 63707437706f7a346c333775683666652f000000000000000000000000000000


Deployed Bytecode Sourcemap

65441:5110:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69683:385;;;;;;;;;;-1:-1:-1;69683:385:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;69683:385:0;;;;;;;;25340:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26899:221::-;;;;;;;;;;-1:-1:-1;26899:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;26899:221:0;1528:203:1;26422:411:0;;;;;;;;;;-1:-1:-1;26422:411:0;;;;;:::i;:::-;;:::i;:::-;;68091:193;;;;;;;;;;-1:-1:-1;68091:193:0;;;;;:::i;:::-;;:::i;65741:29::-;;;;;;;;;;-1:-1:-1;65741:29:0;;;;;;;;65867:35;;;;;;;;;;;;;;;;;;;3688:25:1;;;3676:2;3661:18;65867:35:0;3542:177:1;49134:113:0;;;;;;;;;;-1:-1:-1;49222:10:0;:17;49134:113;;66498:401;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27649:339::-;;;;;;;;;;-1:-1:-1;27649:339:0;;;;;:::i;:::-;;:::i;61680:123::-;;;;;;;;;;-1:-1:-1;61680:123:0;;;;;:::i;:::-;61746:7;61773:12;;;:6;:12;;;;;:22;;;;61680:123;67251:376;;;;;;;;;;-1:-1:-1;67251:376:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;5532:32:1;;;5514:51;;5596:2;5581:18;;5574:34;;;;5487:18;67251:376:0;5340:274:1;62065:147:0;;;;;;;;;;-1:-1:-1;62065:147:0;;;;;:::i;:::-;;:::i;48802:256::-;;;;;;;;;;-1:-1:-1;48802:256:0;;;;;:::i;:::-;;:::i;65581:39::-;;;;;;;;;;;;65618:2;65581:39;;68292:85;;;;;;;;;;;;;:::i;63113:218::-;;;;;;;;;;-1:-1:-1;63113:218:0;;;;;:::i;:::-;;:::i;69411:264::-;;;;;;;;;;;;;:::i;28059:185::-;;;;;;;;;;-1:-1:-1;28059:185:0;;;;;:::i;:::-;;:::i;49324:233::-;;;;;;;;;;-1:-1:-1;49324:233:0;;;;;:::i;:::-;;:::i;67635:101::-;;;;;;;;;;-1:-1:-1;67635:101:0;;;;;:::i;:::-;;:::i;67744:88::-;;;;;;;;;;-1:-1:-1;67744:88:0;;;;;:::i;:::-;;:::i;25034:239::-;;;;;;;;;;-1:-1:-1;25034:239:0;;;;;:::i;:::-;;:::i;24764:208::-;;;;;;;;;;-1:-1:-1;24764:208:0;;;;;:::i;:::-;;:::i;38552:103::-;;;;;;;;;;;;;:::i;67840:114::-;;;;;;;;;;-1:-1:-1;67840:114:0;;;;;:::i;:::-;;:::i;66907:336::-;;;;;;;;;;-1:-1:-1;66907:336:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;37901:87::-;;;;;;;;;;-1:-1:-1;37974:6:0;;-1:-1:-1;;;;;37974:6:0;37901:87;;60565:139;;;;;;;;;;-1:-1:-1;60565:139:0;;;;;:::i;:::-;;:::i;68385:1018::-;;;;;;:::i;:::-;;:::i;65777:41::-;;;;;;;;;;-1:-1:-1;65777:41:0;;;;;;;;;;;25509:104;;;;;;;;;;;;;:::i;59656:49::-;;;;;;;;;;-1:-1:-1;59656:49:0;59701:4;59656:49;;27192:155;;;;;;;;;;-1:-1:-1;27192:155:0;;;;;:::i;:::-;;:::i;28315:328::-;;;;;;;;;;-1:-1:-1;28315:328:0;;;;;:::i;:::-;;:::i;25684:334::-;;;;;;;;;;-1:-1:-1;25684:334:0;;;;;:::i;:::-;;:::i;2563:137::-;;;;;;;;;;-1:-1:-1;2563:137:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;65909:62::-;;;;;;;;;;;;65947:24;65909:62;;62457:149;;;;;;;;;;-1:-1:-1;62457:149:0;;;;;:::i;:::-;;:::i;65708:26::-;;;;;;;;;;;;;:::i;65627:62::-;;;;;;;;;;;;65686:3;65627:62;;;;;-1:-1:-1;;;;;9732:39:1;;;9714:58;;9702:2;9687:18;65627:62:0;9570:208:1;65825:35:0;;;;;;;;;;;;;;;;27418:164;;;;;;;;;;-1:-1:-1;27418:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27539:25:0;;;27515:4;27539:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27418:164;67962:121;;;;;;;;;;-1:-1:-1;67962:121:0;;;;;:::i;:::-;;:::i;38810:201::-;;;;;;;;;;-1:-1:-1;38810:201:0;;;;;:::i;:::-;;:::i;69683:385::-;69801:4;-1:-1:-1;;;;;;69821:53:0;;-1:-1:-1;;;69821:53:0;69818:96;;;-1:-1:-1;69898:4:0;;69683:385;-1:-1:-1;69683:385:0:o;69818:96::-;-1:-1:-1;;;;;;69929:36:0;;-1:-1:-1;;;69929:36:0;69926:79;;;-1:-1:-1;69989:4:0;;69683:385;-1:-1:-1;69683:385:0:o;69926:79::-;70024:36;70048:11;70024:23;:36::i;:::-;70017:43;69683:385;-1:-1:-1;;69683:385:0:o;25340:100::-;25394:13;25427:5;25420:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25340:100;:::o;26899:221::-;26975:7;30242:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30242:16:0;26995:73;;;;-1:-1:-1;;;26995:73:0;;10820:2:1;26995:73:0;;;10802:21:1;10859:2;10839:18;;;10832:30;10898:34;10878:18;;;10871:62;-1:-1:-1;;;10949:18:1;;;10942:42;11001:19;;26995:73:0;;;;;;;;;-1:-1:-1;27088:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27088:24:0;;26899:221::o;26422:411::-;26503:13;26519:23;26534:7;26519:14;:23::i;:::-;26503:39;;26567:5;-1:-1:-1;;;;;26561:11:0;:2;-1:-1:-1;;;;;26561:11:0;;;26553:57;;;;-1:-1:-1;;;26553:57:0;;11233:2:1;26553:57:0;;;11215:21:1;11272:2;11252:18;;;11245:30;11311:34;11291:18;;;11284:62;-1:-1:-1;;;11362:18:1;;;11355:31;11403:19;;26553:57:0;11031:397:1;26553:57:0;19702:10;-1:-1:-1;;;;;26645:21:0;;;;:62;;-1:-1:-1;26670:37:0;26687:5;19702:10;27418:164;:::i;26670:37::-;26623:168;;;;-1:-1:-1;;;26623:168:0;;11635:2:1;26623:168:0;;;11617:21:1;11674:2;11654:18;;;11647:30;11713:34;11693:18;;;11686:62;11784:26;11764:18;;;11757:54;11828:19;;26623:168:0;11433:420:1;26623:168:0;26804:21;26813:2;26817:7;26804:8;:21::i;:::-;26492:341;26422:411;;:::o;68091:193::-;37974:6;;-1:-1:-1;;;;;37974:6:0;19702:10;38121:23;38113:68;;;;-1:-1:-1;;;38113:68:0;;;;;;;:::i;:::-;68179:9:::1;68175:102;68194:7;:14;68192:1;:16;68175:102;;;68230:35;65947:24;68254:7;68262:1;68254:10;;;;;;;;:::i;:::-;;;;;;;68230;:35::i;:::-;68210:3:::0;::::1;::::0;::::1;:::i;:::-;;;;68175:102;;;;68091:193:::0;:::o;66498:401::-;66616:25;;;65618:2;66616:25;;;;;;;;;66556:16;;66585:28;;66616:25;;;;;;;;;;;-1:-1:-1;66616:25:0;66585:56;;66658:9;66654:207;65618:2;66671:1;:12;66654:207;;;30218:4;30242:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30242:16:0;:30;66705:145;;66756:10;66764:1;66756:7;:10::i;:::-;66739:11;66751:1;66739:14;;;;;;;;:::i;:::-;;;;;;:27;-1:-1:-1;;;;;66739:27:0;;;-1:-1:-1;;;;;66739:27:0;;;;;66705:145;;;66832:1;66807:11;66819:1;66807:14;;;;;;;;:::i;:::-;;;;;;:27;-1:-1:-1;;;;;66807:27:0;;;-1:-1:-1;;;;;66807:27:0;;;;;66705:145;66685:3;;;;:::i;:::-;;;;66654:207;;;-1:-1:-1;66880:11:0;66498:401;-1:-1:-1;66498:401:0:o;27649:339::-;27844:41;19702:10;27877:7;27844:18;:41::i;:::-;27836:103;;;;-1:-1:-1;;;27836:103:0;;;;;;;:::i;:::-;27952:28;27962:4;27968:2;27972:7;27952:9;:28::i;67251:376::-;67331:16;67422:18;;;:9;:18;;;;;;;;67383:57;;;;;;;;;;;;;;;;;67331:16;;;;67383:57;67422:18;67383:57;67331:16;;67383:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;67383:57:0;;;;-1:-1:-1;;;67383:57:0;;-1:-1:-1;;;;;67383:57:0;;;;;;;;;;;;;;;;;;;;;;67478:1;67454:14;:21;:25;67451:136;;;67504:14;67519:1;67504:17;;;;;;;;:::i;:::-;;;;;;;:25;;;67569:5;67544:14;67559:1;67544:17;;;;;;;;:::i;:::-;;;;;;;:23;;;-1:-1:-1;;;;;67532:35:0;:9;:35;;;;:::i;:::-;67531:43;;;;:::i;:::-;67496:79;;;;;;;67451:136;67613:1;67617;67597:22;;;;;67251:376;;;;;;:::o;62065:147::-;61746:7;61773:12;;;:6;:12;;;;;:22;;;60147:30;60158:4;19702:10;60147;:30::i;:::-;62179:25:::1;62190:4;62196:7;62179:10;:25::i;48802:256::-:0;48899:7;48935:23;48952:5;48935:16;:23::i;:::-;48927:5;:31;48919:87;;;;-1:-1:-1;;;48919:87:0;;13673:2:1;48919:87:0;;;13655:21:1;13712:2;13692:18;;;13685:30;13751:34;13731:18;;;13724:62;-1:-1:-1;;;13802:18:1;;;13795:41;13853:19;;48919:87:0;13471:407:1;48919:87:0;-1:-1:-1;;;;;;49024:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;48802:256::o;68292:85::-;37974:6;;-1:-1:-1;;;;;37974:6:0;19702:10;38121:23;38113:68;;;;-1:-1:-1;;;38113:68:0;;;;;;;:::i;:::-;68359:10:::1;::::0;;-1:-1:-1;;68345:24:0;::::1;68359:10;::::0;;::::1;68358:11;68345:24;::::0;;68292:85::o;63113:218::-;-1:-1:-1;;;;;63209:23:0;;19702:10;63209:23;63201:83;;;;-1:-1:-1;;;63201:83:0;;14085:2:1;63201:83:0;;;14067:21:1;14124:2;14104:18;;;14097:30;14163:34;14143:18;;;14136:62;-1:-1:-1;;;14214:18:1;;;14207:45;14269:19;;63201:83:0;13883:411:1;63201:83:0;63297:26;63309:4;63315:7;63297:11;:26::i;69411:264::-;37974:6;;-1:-1:-1;;;;;37974:6:0;19702:10;38121:23;38113:68;;;;-1:-1:-1;;;38113:68:0;;;;;;;:::i;:::-;69477:21:::1;69517:11:::0;69509:44:::1;;;::::0;-1:-1:-1;;;69509:44:0;;14501:2:1;69509:44:0::1;::::0;::::1;14483:21:1::0;14540:2;14520:18;;;14513:30;-1:-1:-1;;;14559:18:1;;;14552:50;14619:18;;69509:44:0::1;14299:344:1::0;69509:44:0::1;69585:35;::::0;69567:12:::1;::::0;69585:10:::1;::::0;69608:7;;69567:12;69585:35;69567:12;69585:35;69608:7;69585:10;:35:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69566:54;;;69639:7;69631:36;;;::::0;-1:-1:-1;;;69631:36:0;;15060:2:1;69631:36:0::1;::::0;::::1;15042:21:1::0;15099:2;15079:18;;;15072:30;-1:-1:-1;;;15118:18:1;;;15111:46;15174:18;;69631:36:0::1;14858:340:1::0;28059:185:0;28197:39;28214:4;28220:2;28224:7;28197:39;;;;;;;;;;;;:16;:39::i;49324:233::-;49399:7;49435:30;49222:10;:17;;49134:113;49435:30;49427:5;:38;49419:95;;;;-1:-1:-1;;;49419:95:0;;15405:2:1;49419:95:0;;;15387:21:1;15444:2;15424:18;;;15417:30;15483:34;15463:18;;;15456:62;-1:-1:-1;;;15534:18:1;;;15527:42;15586:19;;49419:95:0;15203:408:1;49419:95:0;49532:10;49543:5;49532:17;;;;;;;;:::i;:::-;;;;;;;;;49525:24;;49324:233;;;:::o;67635:101::-;37974:6;;-1:-1:-1;;;;;37974:6:0;19702:10;38121:23;38113:68;;;;-1:-1:-1;;;38113:68:0;;;;;;;:::i;:::-;67706:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;67744:88::-:0;37974:6;;-1:-1:-1;;;;;37974:6:0;19702:10;38121:23;38113:68;;;;-1:-1:-1;;;38113:68:0;;;;;;;:::i;:::-;67808:8:::1;:16:::0;67744:88::o;25034:239::-;25106:7;25142:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25142:16:0;25177:19;25169:73;;;;-1:-1:-1;;;25169:73:0;;15818:2:1;25169:73:0;;;15800:21:1;15857:2;15837:18;;;15830:30;15896:34;15876:18;;;15869:62;-1:-1:-1;;;15947:18:1;;;15940:39;15996:19;;25169:73:0;15616:405:1;24764:208:0;24836:7;-1:-1:-1;;;;;24864:19:0;;24856:74;;;;-1:-1:-1;;;24856:74:0;;16228:2:1;24856:74:0;;;16210:21:1;16267:2;16247:18;;;16240:30;16306:34;16286:18;;;16279:62;-1:-1:-1;;;16357:18:1;;;16350:40;16407:19;;24856:74:0;16026:406:1;24856:74:0;-1:-1:-1;;;;;;24948:16:0;;;;;:9;:16;;;;;;;24764:208::o;38552:103::-;37974:6;;-1:-1:-1;;;;;37974:6:0;19702:10;38121:23;38113:68;;;;-1:-1:-1;;;38113:68:0;;;;;;;:::i;:::-;38617:30:::1;38644:1;38617:18;:30::i;:::-;38552:103::o:0;67840:114::-;37974:6;;-1:-1:-1;;;;;37974:6:0;19702:10;38121:23;38113:68;;;;-1:-1:-1;;;38113:68:0;;;;;;;:::i;:::-;67917:16:::1;:29:::0;67840:114::o;66907:336::-;66968:13;66994:15;67012:16;67022:5;67012:9;:16::i;:::-;66994:34;;67039:22;67078:10;67064:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;67064:25:0;;67039:50;;67107:6;67102:108;67123:10;67119:1;:14;67102:108;;;67169:29;67189:5;67196:1;67169:19;:29::i;:::-;67155:8;67164:1;67155:11;;;;;;;;:::i;:::-;;;;;;;;;;:43;67135:3;;;;:::i;:::-;;;;67102:108;;;-1:-1:-1;67227:8:0;66907:336;-1:-1:-1;;;66907:336:0:o;60565:139::-;60643:4;60667:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;60667:29:0;;;;;;;;;;;;;;;60565:139::o;68385:1018::-;68452:18;68473:13;49222:10;:17;;49134:113;68473:13;68505:10;;68452:34;;-1:-1:-1;68505:10:0;;68497:46;;;;-1:-1:-1;;;68497:46:0;;16639:2:1;68497:46:0;;;16621:21:1;16678:2;16658:18;;;16651:30;16717:25;16697:18;;;16690:53;16760:18;;68497:46:0;16437:347:1;68497:46:0;68563:21;;;;;;;68562:22;;:58;;;68588:32;65947:24;68609:10;68588:7;:32::i;:::-;68554:101;;;;-1:-1:-1;;;68554:101:0;;16991:2:1;68554:101:0;;;16973:21:1;17030:2;17010:18;;;17003:30;17069:32;17049:18;;;17042:60;17119:18;;68554:101:0;16789:354:1;68554:101:0;68689:1;68674:14;:16;:52;;;;;68710:16;;68694:14;:32;;68674:52;68666:96;;;;-1:-1:-1;;;68666:96:0;;17350:2:1;68666:96:0;;;17332:21:1;17389:2;17369:18;;;17362:30;17428:33;17408:18;;;17401:61;17479:18;;68666:96:0;17148:355:1;68666:96:0;65618:2;68781:30;:10;68796:14;68781;:30::i;:::-;:42;;68773:103;;;;-1:-1:-1;;;68773:103:0;;17710:2:1;68773:103:0;;;17692:21:1;17749:2;17729:18;;;17722:30;17788:34;17768:18;;;17761:62;-1:-1:-1;;;17839:18:1;;;17832:46;17895:19;;68773:103:0;17508:412:1;68773:103:0;68908:8;;:28;;68921:14;68908:12;:28::i;:::-;68895:9;:41;;68887:87;;;;-1:-1:-1;;;68887:87:0;;18127:2:1;68887:87:0;;;18109:21:1;18166:2;18146:18;;;18139:30;18205:34;18185:18;;;18178:62;-1:-1:-1;;;18256:18:1;;;18249:31;18297:19;;68887:87:0;17925:397:1;68887:87:0;68991:9;68987:409;69006:14;69004:1;:16;68987:409;;;69042:15;69060:13;49222:10;:17;;49134:113;69060:13;69042:31;-1:-1:-1;69088:18:0;65618:2;69136:23;69146:13;69042:31;69136:23;:::i;:::-;69135:38;;;;:::i;:::-;69121:53;;69203:33;69213:10;69225;69203:9;:33::i;:::-;69251:83;69264:10;69292:4;65686:3;69251:12;:83::i;:::-;69354:30;;69373:10;;69354:30;;;;;69027:369;;69022:3;;;;;:::i;:::-;;;;68987:409;;25509:104;25565:13;25598:7;25591:14;;;;;:::i;27192:155::-;27287:52;19702:10;27320:8;27330;27287:18;:52::i;28315:328::-;28490:41;19702:10;28523:7;28490:18;:41::i;:::-;28482:103;;;;-1:-1:-1;;;28482:103:0;;;;;;;:::i;:::-;28596:39;28610:4;28616:2;28620:7;28629:5;28596:13;:39::i;:::-;28315:328;;;;:::o;25684:334::-;30218:4;30242:16;;;:7;:16;;;;;;25757:13;;-1:-1:-1;;;;;30242:16:0;25783:76;;;;-1:-1:-1;;;25783:76:0;;18779:2:1;25783:76:0;;;18761:21:1;18818:2;18798:18;;;18791:30;18857:34;18837:18;;;18830:62;-1:-1:-1;;;18908:18:1;;;18901:45;18963:19;;25783:76:0;18577:411:1;25783:76:0;25872:21;25896:10;:8;:10::i;:::-;25872:34;;25948:1;25930:7;25924:21;:25;:86;;;;;;;;;;;;;;;;;25976:7;25985:18;:7;:16;:18::i;:::-;25959:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25924:86;25917:93;25684:334;-1:-1:-1;;;25684:334:0:o;2563:137::-;2638:21;2679:9;:13;2689:2;2679:13;;;;;;;;;;;2672:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2672:20:0;;;;-1:-1:-1;;;2672:20:0;;-1:-1:-1;;;;;2672:20:0;;;;;;;;;;;;;;;;;;;;;;2563:137;;;:::o;62457:149::-;61746:7;61773:12;;;:6;:12;;;;;:22;;;60147:30;60158:4;19702:10;60147;:30::i;:::-;62572:26:::1;62584:4;62590:7;62572:11;:26::i;65708:::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;67962:121::-;37974:6;;-1:-1:-1;;;;;37974:6:0;19702:10;38121:23;38113:68;;;;-1:-1:-1;;;38113:68:0;;;;;;;:::i;:::-;68041:21:::1;:34:::0;;;::::1;;;;-1:-1:-1::0;;68041:34:0;;::::1;::::0;;;::::1;::::0;;67962:121::o;38810:201::-;37974:6;;-1:-1:-1;;;;;37974:6:0;19702:10;38121:23;38113:68;;;;-1:-1:-1;;;38113:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38899:22:0;::::1;38891:73;;;::::0;-1:-1:-1;;;38891:73:0;;19670:2:1;38891:73:0::1;::::0;::::1;19652:21:1::0;19709:2;19689:18;;;19682:30;19748:34;19728:18;;;19721:62;-1:-1:-1;;;19799:18:1;;;19792:36;19845:19;;38891:73:0::1;19468:402:1::0;38891:73:0::1;38975:28;38994:8;38975:18;:28::i;:::-;38810:201:::0;:::o;60269:204::-;60354:4;-1:-1:-1;;;;;;60378:47:0;;-1:-1:-1;;;60378:47:0;;:87;;;60429:36;60453:11;60429:23;:36::i;34135:174::-;34210:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34210:29:0;-1:-1:-1;;;;;34210:29:0;;;;;;;;:24;;34264:23;34210:24;34264:14;:23::i;:::-;-1:-1:-1;;;;;34255:46:0;;;;;;;;;;;34135:174;;:::o;63990:112::-;64069:25;64080:4;64086:7;64069:10;:25::i;30447:348::-;30540:4;30242:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30242:16:0;30557:73;;;;-1:-1:-1;;;30557:73:0;;20077:2:1;30557:73:0;;;20059:21:1;20116:2;20096:18;;;20089:30;20155:34;20135:18;;;20128:62;-1:-1:-1;;;20206:18:1;;;20199:42;20258:19;;30557:73:0;19875:408:1;30557:73:0;30641:13;30657:23;30672:7;30657:14;:23::i;:::-;30641:39;;30710:5;-1:-1:-1;;;;;30699:16:0;:7;-1:-1:-1;;;;;30699:16:0;;:51;;;;30743:7;-1:-1:-1;;;;;30719:31:0;:20;30731:7;30719:11;:20::i;:::-;-1:-1:-1;;;;;30719:31:0;;30699:51;:87;;;-1:-1:-1;;;;;;27539:25:0;;;27515:4;27539:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30754:32;30691:96;30447:348;-1:-1:-1;;;;30447:348:0:o;33439:578::-;33598:4;-1:-1:-1;;;;;33571:31:0;:23;33586:7;33571:14;:23::i;:::-;-1:-1:-1;;;;;33571:31:0;;33563:85;;;;-1:-1:-1;;;33563:85:0;;20490:2:1;33563:85:0;;;20472:21:1;20529:2;20509:18;;;20502:30;20568:34;20548:18;;;20541:62;-1:-1:-1;;;20619:18:1;;;20612:39;20668:19;;33563:85:0;20288:405:1;33563:85:0;-1:-1:-1;;;;;33667:16:0;;33659:65;;;;-1:-1:-1;;;33659:65:0;;20900:2:1;33659:65:0;;;20882:21:1;20939:2;20919:18;;;20912:30;20978:34;20958:18;;;20951:62;-1:-1:-1;;;21029:18:1;;;21022:34;21073:19;;33659:65:0;20698:400:1;33659:65:0;33737:39;33758:4;33764:2;33768:7;33737:20;:39::i;:::-;33841:29;33858:1;33862:7;33841:8;:29::i;:::-;-1:-1:-1;;;;;33883:15:0;;;;;;:9;:15;;;;;:20;;33902:1;;33883:15;:20;;33902:1;;33883:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33914:13:0;;;;;;:9;:13;;;;;:18;;33931:1;;33914:13;:18;;33931:1;;33914:18;:::i;:::-;;;;-1:-1:-1;;33943:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33943:21:0;-1:-1:-1;;;;;33943:21:0;;;;;;;;;33982:27;;33943:16;;33982:27;;;;;;;33439:578;;;:::o;60994:497::-;61075:22;61083:4;61089:7;61075;:22::i;:::-;61070:414;;61263:41;61291:7;-1:-1:-1;;;;;61263:41:0;61301:2;61263:19;:41::i;:::-;61377:38;61405:4;61412:2;61377:19;:38::i;:::-;61168:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;61168:270:0;;;;;;;;;;-1:-1:-1;;;61114:358:0;;;;;;;:::i;64614:238::-;64698:22;64706:4;64712:7;64698;:22::i;:::-;64693:152;;64737:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;64737:29:0;;;;;;;;;:36;;-1:-1:-1;;64737:36:0;64769:4;64737:36;;;64820:12;19702:10;;19622:98;64820:12;-1:-1:-1;;;;;64793:40:0;64811:7;-1:-1:-1;;;;;64793:40:0;64805:4;64793:40;;;;;;;;;;64614:238;;:::o;64984:239::-;65068:22;65076:4;65082:7;65068;:22::i;:::-;65064:152;;;65139:5;65107:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;65107:29:0;;;;;;;;;;:37;;-1:-1:-1;;65107:37:0;;;65164:40;19702:10;;65107:12;;65164:40;;65139:5;65164:40;64984:239;;:::o;39171:191::-;39264:6;;;-1:-1:-1;;;;;39281:17:0;;;-1:-1:-1;;;;;;39281:17:0;;;;;;;39314:40;;39264:6;;;39281:17;39264:6;;39314:40;;39245:16;;39314:40;39234:128;39171:191;:::o;42237:98::-;42295:7;42322:5;42326:1;42322;:5;:::i;42975:98::-;43033:7;43060:5;43064:1;43060;:5;:::i;31137:110::-;31213:26;31223:2;31227:7;31213:26;;;;;;;;;;;;:9;:26::i;70198:350::-;70361:21;;;70380:1;70361:21;;;;;;;;;70327:31;;70361:21;;;;-1:-1:-1;;;;;;;;;;;;;;;;;70361:21:0;;;;;;;;;;;;;;;70327:55;;70414:21;70393:9;70403:1;70393:12;;;;;;;;:::i;:::-;;;;;;;:18;;:42;-1:-1:-1;;;;;70393:42:0;;;-1:-1:-1;;;;;70393:42:0;;;;;70469:26;70446:9;70456:1;70446:12;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;70446:49:0;;;;;70506:34;70521:7;70530:9;70506:14;:34::i;34451:315::-;34606:8;-1:-1:-1;;;;;34597:17:0;:5;-1:-1:-1;;;;;34597:17:0;;;34589:55;;;;-1:-1:-1;;;34589:55:0;;22226:2:1;34589:55:0;;;22208:21:1;22265:2;22245:18;;;22238:30;22304:27;22284:18;;;22277:55;22349:18;;34589:55:0;22024:349:1;34589:55:0;-1:-1:-1;;;;;34655:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;34655:46:0;;;;;;;;;;34717:41;;540::1;;;34717::0;;513:18:1;34717:41:0;;;;;;;34451:315;;;:::o;29525:::-;29682:28;29692:4;29698:2;29702:7;29682:9;:28::i;:::-;29729:48;29752:4;29758:2;29762:7;29771:5;29729:22;:48::i;:::-;29721:111;;;;-1:-1:-1;;;29721:111:0;;;;;;;:::i;70077:113::-;70137:13;70170:12;70163:19;;;;;:::i;20207:723::-;20263:13;20484:10;20480:53;;-1:-1:-1;;20511:10:0;;;;;;;;;;;;-1:-1:-1;;;20511:10:0;;;;;20207:723::o;20480:53::-;20558:5;20543:12;20599:78;20606:9;;20599:78;;20632:8;;;;:::i;:::-;;-1:-1:-1;20655:10:0;;-1:-1:-1;20663:2:0;20655:10;;:::i;:::-;;;20599:78;;;20687:19;20719:6;20709:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20709:17:0;;20687:39;;20737:154;20744:10;;20737:154;;20771:11;20781:1;20771:11;;:::i;:::-;;-1:-1:-1;20840:10:0;20848:2;20840:5;:10;:::i;:::-;20827:24;;:2;:24;:::i;:::-;20814:39;;20797:6;20804;20797:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;20797:56:0;;;;;;;;-1:-1:-1;20868:11:0;20877:2;20868:11;;:::i;:::-;;;20737:154;;48494:224;48596:4;-1:-1:-1;;;;;;48620:50:0;;-1:-1:-1;;;48620:50:0;;:90;;;48674:36;48698:11;48674:23;:36::i;50170:589::-;-1:-1:-1;;;;;50376:18:0;;50372:187;;50411:40;50443:7;51586:10;:17;;51559:24;;;;:15;:24;;;;;:44;;;51614:24;;;;;;;;;;;;51482:164;50411:40;50372:187;;;50481:2;-1:-1:-1;;;;;50473:10:0;:4;-1:-1:-1;;;;;50473:10:0;;50469:90;;50500:47;50533:4;50539:7;50500:32;:47::i;:::-;-1:-1:-1;;;;;50573:16:0;;50569:183;;50606:45;50643:7;50606:36;:45::i;50569:183::-;50679:4;-1:-1:-1;;;;;50673:10:0;:2;-1:-1:-1;;;;;50673:10:0;;50669:83;;50700:40;50728:2;50732:7;50700:27;:40::i;21508:451::-;21583:13;21609:19;21641:10;21645:6;21641:1;:10;:::i;:::-;:14;;21654:1;21641:14;:::i;:::-;21631:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21631:25:0;;21609:47;;-1:-1:-1;;;21667:6:0;21674:1;21667:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;21667:15:0;;;;;;;;;-1:-1:-1;;;21693:6:0;21700:1;21693:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;21693:15:0;;;;;;;;-1:-1:-1;21724:9:0;21736:10;21740:6;21736:1;:10;:::i;:::-;:14;;21749:1;21736:14;:::i;:::-;21724:26;;21719:135;21756:1;21752;:5;21719:135;;;-1:-1:-1;;;21804:5:0;21812:3;21804:11;21791:25;;;;;;;:::i;:::-;;;;21779:6;21786:1;21779:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;21779:37:0;;;;;;;;-1:-1:-1;21841:1:0;21831:11;;;;;21759:3;;;:::i;:::-;;;21719:135;;;-1:-1:-1;21872:10:0;;21864:55;;;;-1:-1:-1;;;21864:55:0;;23140:2:1;21864:55:0;;;23122:21:1;;;23159:18;;;23152:30;23218:34;23198:18;;;23191:62;23270:18;;21864:55:0;22938:356:1;31474:321:0;31604:18;31610:2;31614:7;31604:5;:18::i;:::-;31655:54;31686:1;31690:2;31694:7;31703:5;31655:22;:54::i;:::-;31633:154;;;;-1:-1:-1;;;31633:154:0;;;;;;;:::i;1078:576::-;1168:18;;1197:329;1218:10;:17;1214:1;:21;1197:329;;;1298:3;-1:-1:-1;;;;;1265:37:0;:10;1276:1;1265:13;;;;;;;;:::i;:::-;;;;;;;:21;;;-1:-1:-1;;;;;1265:37:0;;;1257:77;;;;-1:-1:-1;;;1257:77:0;;23501:2:1;1257:77:0;;;23483:21:1;23540:2;23520:18;;;23513:30;23579:29;23559:18;;;23552:57;23626:18;;1257:77:0;23299:351:1;1257:77:0;1357:10;1368:1;1357:13;;;;;;;;:::i;:::-;;;;;;;:19;;;-1:-1:-1;;;;;1357:24:0;1380:1;1357:24;;1349:69;;;;-1:-1:-1;;;1349:69:0;;23857:2:1;1349:69:0;;;23839:21:1;;;23876:18;;;23869:30;23935:34;23915:18;;;23908:62;23987:18;;1349:69:0;23655:356:1;1349:69:0;1447:10;1458:1;1447:13;;;;;;;;:::i;:::-;;;;;;;:19;;;-1:-1:-1;;;;;1433:33:0;;;;;;:::i;:::-;;;1481:9;:13;1491:2;1481:13;;;;;;;;;;;1500:10;1511:1;1500:13;;;;;;;;:::i;:::-;;;;;;;;;;;;1481:33;;;;;;;-1:-1:-1;1481:33:0;;;;;;;;;;;;;;-1:-1:-1;;;;;1481:33:0;-1:-1:-1;;;1481:33:0;-1:-1:-1;;;;;1481:33:0;;;;;;;1237:3;;;;:::i;:::-;;;;1197:329;;;;1557:5;1544:10;:18;1536:68;;;;-1:-1:-1;;;1536:68:0;;24218:2:1;1536:68:0;;;24200:21:1;24257:2;24237:18;;;24230:30;24296:34;24276:18;;;24269:62;-1:-1:-1;;;24347:18:1;;;24340:35;24392:19;;1536:68:0;24016:401:1;1536:68:0;1615:31;1631:2;1635:10;1615:15;:31::i;35331:799::-;35486:4;-1:-1:-1;;;;;35507:13:0;;11929:20;11977:8;35503:620;;35543:72;;-1:-1:-1;;;35543:72:0;;-1:-1:-1;;;;;35543:36:0;;;;;:72;;19702:10;;35594:4;;35600:7;;35609:5;;35543:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35543:72:0;;;;;;;;-1:-1:-1;;35543:72:0;;;;;;;;;;;;:::i;:::-;;;35539:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35785:13:0;;35781:272;;35828:60;;-1:-1:-1;;;35828:60:0;;;;;;;:::i;35781:272::-;36003:6;35997:13;35988:6;35984:2;35980:15;35973:38;35539:529;-1:-1:-1;;;;;;35666:51:0;-1:-1:-1;;;35666:51:0;;-1:-1:-1;35659:58:0;;35503:620;-1:-1:-1;36107:4:0;35331:799;;;;;;:::o;24395:305::-;24497:4;-1:-1:-1;;;;;;24534:40:0;;-1:-1:-1;;;24534:40:0;;:105;;-1:-1:-1;;;;;;;24591:48:0;;-1:-1:-1;;;24591:48:0;24534:105;:158;;;-1:-1:-1;;;;;;;;;;22944:40:0;;;24656:36;22835:157;52273:988;52539:22;52589:1;52564:22;52581:4;52564:16;:22::i;:::-;:26;;;;:::i;:::-;52601:18;52622:26;;;:17;:26;;;;;;52539:51;;-1:-1:-1;52755:28:0;;;52751:328;;-1:-1:-1;;;;;52822:18:0;;52800:19;52822:18;;;:12;:18;;;;;;;;:34;;;;;;;;;52873:30;;;;;;:44;;;52990:30;;:17;:30;;;;;:43;;;52751:328;-1:-1:-1;53175:26:0;;;;:17;:26;;;;;;;;53168:33;;;-1:-1:-1;;;;;53219:18:0;;;;;:12;:18;;;;;:34;;;;;;;53212:41;52273:988::o;53556:1079::-;53834:10;:17;53809:22;;53834:21;;53854:1;;53834:21;:::i;:::-;53866:18;53887:24;;;:15;:24;;;;;;54260:10;:26;;53809:46;;-1:-1:-1;53887:24:0;;53809:46;;54260:26;;;;;;:::i;:::-;;;;;;;;;54238:48;;54324:11;54299:10;54310;54299:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;54404:28;;;:15;:28;;;;;;;:41;;;54576:24;;;;;54569:31;54611:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;53627:1008;;;53556:1079;:::o;51060:221::-;51145:14;51162:20;51179:2;51162:16;:20::i;:::-;-1:-1:-1;;;;;51193:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;51238:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;51060:221:0:o;32131:382::-;-1:-1:-1;;;;;32211:16:0;;32203:61;;;;-1:-1:-1;;;32203:61:0;;25504:2:1;32203:61:0;;;25486:21:1;;;25523:18;;;25516:30;25582:34;25562:18;;;25555:62;25634:18;;32203:61:0;25302:356:1;32203:61:0;30218:4;30242:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30242:16:0;:30;32275:58;;;;-1:-1:-1;;;32275:58:0;;25865:2:1;32275:58:0;;;25847:21:1;25904:2;25884:18;;;25877:30;25943;25923:18;;;25916:58;25991:18;;32275:58:0;25663:352:1;32275:58:0;32346:45;32375:1;32379:2;32383:7;32346:20;:45::i;:::-;-1:-1:-1;;;;;32404:13:0;;;;;;:9;:13;;;;;:18;;32421:1;;32404:13;:18;;32421:1;;32404:18;:::i;:::-;;;;-1:-1:-1;;32433:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32433:21:0;-1:-1:-1;;;;;32433:21:0;;;;;;;;32472:33;;32433:16;;;32472:33;;32433:16;;32472:33;32131:382;;:::o;2708:141::-;2813:28;2826:2;2830:10;2813:28;;;;;;;:::i;:::-;;;;;;;;2708:141;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:127::-;2234:10;2229:3;2225:20;2222:1;2215:31;2265:4;2262:1;2255:15;2289:4;2286:1;2279:15;2305:275;2376:2;2370:9;2441:2;2422:13;;-1:-1:-1;;2418:27:1;2406:40;;2476:18;2461:34;;2497:22;;;2458:62;2455:88;;;2523:18;;:::i;:::-;2559:2;2552:22;2305:275;;-1:-1:-1;2305:275:1:o;2585:952::-;2669:6;2700:2;2743;2731:9;2722:7;2718:23;2714:32;2711:52;;;2759:1;2756;2749:12;2711:52;2799:9;2786:23;2828:18;2869:2;2861:6;2858:14;2855:34;;;2885:1;2882;2875:12;2855:34;2923:6;2912:9;2908:22;2898:32;;2968:7;2961:4;2957:2;2953:13;2949:27;2939:55;;2990:1;2987;2980:12;2939:55;3026:2;3013:16;3048:2;3044;3041:10;3038:36;;;3054:18;;:::i;:::-;3100:2;3097:1;3093:10;3083:20;;3123:28;3147:2;3143;3139:11;3123:28;:::i;:::-;3185:15;;;3255:11;;;3251:20;;;3216:12;;;;3283:19;;;3280:39;;;3315:1;3312;3305:12;3280:39;3339:11;;;;3359:148;3375:6;3370:3;3367:15;3359:148;;;3441:23;3460:3;3441:23;:::i;:::-;3429:36;;3392:12;;;;3485;;;;3359:148;;;3526:5;2585:952;-1:-1:-1;;;;;;;;2585:952:1:o;3724:658::-;3895:2;3947:21;;;4017:13;;3920:18;;;4039:22;;;3866:4;;3895:2;4118:15;;;;4092:2;4077:18;;;3866:4;4161:195;4175:6;4172:1;4169:13;4161:195;;;4240:13;;-1:-1:-1;;;;;4236:39:1;4224:52;;4331:15;;;;4296:12;;;;4272:1;4190:9;4161:195;;;-1:-1:-1;4373:3:1;;3724:658;-1:-1:-1;;;;;;3724:658:1:o;4387:328::-;4464:6;4472;4480;4533:2;4521:9;4512:7;4508:23;4504:32;4501:52;;;4549:1;4546;4539:12;4501:52;4572:29;4591:9;4572:29;:::i;:::-;4562:39;;4620:38;4654:2;4643:9;4639:18;4620:38;:::i;:::-;4610:48;;4705:2;4694:9;4690:18;4677:32;4667:42;;4387:328;;;;;:::o;5087:248::-;5155:6;5163;5216:2;5204:9;5195:7;5191:23;5187:32;5184:52;;;5232:1;5229;5222:12;5184:52;-1:-1:-1;;5255:23:1;;;5325:2;5310:18;;;5297:32;;-1:-1:-1;5087:248:1:o;5619:254::-;5687:6;5695;5748:2;5736:9;5727:7;5723:23;5719:32;5716:52;;;5764:1;5761;5754:12;5716:52;5800:9;5787:23;5777:33;;5829:38;5863:2;5852:9;5848:18;5829:38;:::i;:::-;5819:48;;5619:254;;;;;:::o;5878:407::-;5943:5;5977:18;5969:6;5966:30;5963:56;;;5999:18;;:::i;:::-;6037:57;6082:2;6061:15;;-1:-1:-1;;6057:29:1;6088:4;6053:40;6037:57;:::i;:::-;6028:66;;6117:6;6110:5;6103:21;6157:3;6148:6;6143:3;6139:16;6136:25;6133:45;;;6174:1;6171;6164:12;6133:45;6223:6;6218:3;6211:4;6204:5;6200:16;6187:43;6277:1;6270:4;6261:6;6254:5;6250:18;6246:29;6239:40;5878:407;;;;;:::o;6290:451::-;6359:6;6412:2;6400:9;6391:7;6387:23;6383:32;6380:52;;;6428:1;6425;6418:12;6380:52;6468:9;6455:23;6501:18;6493:6;6490:30;6487:50;;;6533:1;6530;6523:12;6487:50;6556:22;;6609:4;6601:13;;6597:27;-1:-1:-1;6587:55:1;;6638:1;6635;6628:12;6587:55;6661:74;6727:7;6722:2;6709:16;6704:2;6700;6696:11;6661:74;:::i;6746:186::-;6805:6;6858:2;6846:9;6837:7;6833:23;6829:32;6826:52;;;6874:1;6871;6864:12;6826:52;6897:29;6916:9;6897:29;:::i;6937:632::-;7108:2;7160:21;;;7230:13;;7133:18;;;7252:22;;;7079:4;;7108:2;7331:15;;;;7305:2;7290:18;;;7079:4;7374:169;7388:6;7385:1;7382:13;7374:169;;;7449:13;;7437:26;;7518:15;;;;7483:12;;;;7410:1;7403:9;7374:169;;7574:160;7639:20;;7695:13;;7688:21;7678:32;;7668:60;;7724:1;7721;7714:12;7739:254;7804:6;7812;7865:2;7853:9;7844:7;7840:23;7836:32;7833:52;;;7881:1;7878;7871:12;7833:52;7904:29;7923:9;7904:29;:::i;:::-;7894:39;;7952:35;7983:2;7972:9;7968:18;7952:35;:::i;7998:667::-;8093:6;8101;8109;8117;8170:3;8158:9;8149:7;8145:23;8141:33;8138:53;;;8187:1;8184;8177:12;8138:53;8210:29;8229:9;8210:29;:::i;:::-;8200:39;;8258:38;8292:2;8281:9;8277:18;8258:38;:::i;:::-;8248:48;;8343:2;8332:9;8328:18;8315:32;8305:42;;8398:2;8387:9;8383:18;8370:32;8425:18;8417:6;8414:30;8411:50;;;8457:1;8454;8447:12;8411:50;8480:22;;8533:4;8525:13;;8521:27;-1:-1:-1;8511:55:1;;8562:1;8559;8552:12;8511:55;8585:74;8651:7;8646:2;8633:16;8628:2;8624;8620:11;8585:74;:::i;:::-;8575:84;;;7998:667;;;;;;;:::o;8670:585::-;8727:3;8765:5;8759:12;8792:6;8787:3;8780:19;8818:4;8847:2;8842:3;8838:12;8831:19;;8884:2;8877:5;8873:14;8905:1;8915:315;8929:6;8926:1;8923:13;8915:315;;;8988:13;;9030:9;;-1:-1:-1;;;;;9026:35:1;9014:48;;9106:11;;9100:18;-1:-1:-1;;;;;9096:51:1;9082:12;;;9075:73;9177:4;9168:14;;;;9205:15;;;;9058:1;8944:9;8915:315;;;-1:-1:-1;9246:3:1;;8670:585;-1:-1:-1;;;;;8670:585:1:o;9260:305::-;9479:2;9468:9;9461:21;9442:4;9499:60;9555:2;9544:9;9540:18;9532:6;9499:60;:::i;9783:260::-;9851:6;9859;9912:2;9900:9;9891:7;9887:23;9883:32;9880:52;;;9928:1;9925;9918:12;9880:52;9951:29;9970:9;9951:29;:::i;:::-;9941:39;;9999:38;10033:2;10022:9;10018:18;9999:38;:::i;10048:180::-;10104:6;10157:2;10145:9;10136:7;10132:23;10128:32;10125:52;;;10173:1;10170;10163:12;10125:52;10196:26;10212:9;10196:26;:::i;10233:380::-;10312:1;10308:12;;;;10355;;;10376:61;;10430:4;10422:6;10418:17;10408:27;;10376:61;10483:2;10475:6;10472:14;10452:18;10449:38;10446:161;;;10529:10;10524:3;10520:20;10517:1;10510:31;10564:4;10561:1;10554:15;10592:4;10589:1;10582:15;11858:356;12060:2;12042:21;;;12079:18;;;12072:30;12138:34;12133:2;12118:18;;12111:62;12205:2;12190:18;;11858:356::o;12219:127::-;12280:10;12275:3;12271:20;12268:1;12261:31;12311:4;12308:1;12301:15;12335:4;12332:1;12325:15;12351:127;12412:10;12407:3;12403:20;12400:1;12393:31;12443:4;12440:1;12433:15;12467:4;12464:1;12457:15;12483:135;12522:3;-1:-1:-1;;12543:17:1;;12540:43;;;12563:18;;:::i;:::-;-1:-1:-1;12610:1:1;12599:13;;12483:135::o;12623:413::-;12825:2;12807:21;;;12864:2;12844:18;;;12837:30;12903:34;12898:2;12883:18;;12876:62;-1:-1:-1;;;12969:2:1;12954:18;;12947:47;13026:3;13011:19;;12623:413::o;13041:168::-;13081:7;13147:1;13143;13139:6;13135:14;13132:1;13129:21;13124:1;13117:9;13110:17;13106:45;13103:71;;;13154:18;;:::i;:::-;-1:-1:-1;13194:9:1;;13041:168::o;13214:127::-;13275:10;13270:3;13266:20;13263:1;13256:31;13306:4;13303:1;13296:15;13330:4;13327:1;13320:15;13346:120;13386:1;13412;13402:35;;13417:18;;:::i;:::-;-1:-1:-1;13451:9:1;;13346:120::o;18327:128::-;18367:3;18398:1;18394:6;18391:1;18388:13;18385:39;;;18404:18;;:::i;:::-;-1:-1:-1;18440:9:1;;18327:128::o;18460:112::-;18492:1;18518;18508:35;;18523:18;;:::i;:::-;-1:-1:-1;18557:9:1;;18460:112::o;18993:470::-;19172:3;19210:6;19204:13;19226:53;19272:6;19267:3;19260:4;19252:6;19248:17;19226:53;:::i;:::-;19342:13;;19301:16;;;;19364:57;19342:13;19301:16;19398:4;19386:17;;19364:57;:::i;:::-;19437:20;;18993:470;-1:-1:-1;;;;18993:470:1:o;21103:125::-;21143:4;21171:1;21168;21165:8;21162:34;;;21176:18;;:::i;:::-;-1:-1:-1;21213:9:1;;21103:125::o;21233:786::-;21644:25;21639:3;21632:38;21614:3;21699:6;21693:13;21715:62;21770:6;21765:2;21760:3;21756:12;21749:4;21741:6;21737:17;21715:62;:::i;:::-;-1:-1:-1;;;21836:2:1;21796:16;;;21828:11;;;21821:40;21886:13;;21908:63;21886:13;21957:2;21949:11;;21942:4;21930:17;;21908:63;:::i;:::-;21991:17;22010:2;21987:26;;21233:786;-1:-1:-1;;;;21233:786:1:o;22378:414::-;22580:2;22562:21;;;22619:2;22599:18;;;22592:30;22658:34;22653:2;22638:18;;22631:62;-1:-1:-1;;;22724:2:1;22709:18;;22702:48;22782:3;22767:19;;22378:414::o;22797:136::-;22836:3;22864:5;22854:39;;22873:18;;:::i;:::-;-1:-1:-1;;;22909:18:1;;22797:136::o;24422:489::-;-1:-1:-1;;;;;24691:15:1;;;24673:34;;24743:15;;24738:2;24723:18;;24716:43;24790:2;24775:18;;24768:34;;;24838:3;24833:2;24818:18;;24811:31;;;24616:4;;24859:46;;24885:19;;24877:6;24859:46;:::i;:::-;24851:54;24422:489;-1:-1:-1;;;;;;24422:489:1:o;24916:249::-;24985:6;25038:2;25026:9;25017:7;25013:23;25009:32;25006:52;;;25054:1;25051;25044:12;25006:52;25086:9;25080:16;25105:30;25129:5;25105:30;:::i;25170:127::-;25231:10;25226:3;25222:20;25219:1;25212:31;25262:4;25259:1;25252:15;25286:4;25283:1;25276:15;26020:376;26267:6;26256:9;26249:25;26310:2;26305;26294:9;26290:18;26283:30;26230:4;26330:60;26386:2;26375:9;26371:18;26363:6;26330:60;:::i

Swarm Source

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