ETH Price: $3,443.72 (-1.07%)
Gas: 10 Gwei

Token

SQUADTS Silver M202 (SSM)
 

Overview

Max Total Supply

22 SSM

Holders

22

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 SSM
0x327555b0eeaede911208fc3c18b66c57923b84b6
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:
SquadtsM202

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-20
*/

// SPDX-License-Identifier: MIT


// File: @openzeppelin/contracts/utils/Strings.sol
// 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/Address.sol
// 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/token/ERC721/IERC721Receiver.sol
// 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/utils/introspection/IERC165.sol
// 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/utils/introspection/ERC165.sol
// 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/IERC721.sol
// 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/extensions/IERC721Metadata.sol
// 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/Context.sol
// 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/token/ERC721/ERC721.sol
// 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/Ownable.sol
// 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: contracts/SquadtsM202.sol
pragma solidity ^0.8.21;

contract SquadtsM202 is ERC721, Ownable {
    using Strings for uint256;

    string private _metaDataURL = "";
    bool public isMintActive = true;

    uint256 constant TOKEN_IDS_STARTS_AT = 1;
    uint256 constant TOKEN_MIN = 4001;
    uint256 constant TOKEN_MAX = 5000;
    uint256 tokenCount = 0;

    address constant contractAddress = 0xEEAF63F35B7c365AFf27015A9AA5d6e4b734962C;

    mapping(uint256 => bool) public tokenClaimed;
    mapping(address => bool) public walletClaimed;

    // add "metaDataURL" to our constructor
    constructor(
        string memory name,
        string memory symbol,
        string memory metaDataURL
    ) ERC721(name, symbol) {
        setMetaDataURL(metaDataURL);
    }

    // Getters & Setters
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return _metaDataURL;
    }
    function setMetaDataURL(string memory value) public onlyOwner {
        _metaDataURL = value;
    }
    function setMintActive(bool value) external onlyOwner {
        isMintActive = value;
    }
    function totalSupply() public view returns (uint256) {
        return tokenCount;
    }

    // Minting
    function mint(uint256 tokenId) external {
        require(isMintActive, "Minting is inactive");
        require(tokenId >= TOKEN_MIN, "Token is out of range");
        require(tokenId <= TOKEN_MAX, "Token is out of range");
        require(!tokenClaimed[tokenId], "Token already claimed");
        require(!walletClaimed[msg.sender], "Wallet already claimed");
        require(ERC721(contractAddress).ownerOf(tokenId) == msg.sender, "Wallet does not own token");
        uint256 supply = totalSupply();
        tokenClaimed[tokenId] = true;
        walletClaimed[msg.sender] = true;
        tokenCount += 1;
        _safeMint(msg.sender, TOKEN_IDS_STARTS_AT + supply);
    }
    function gift(address to) external onlyOwner {
        uint256 supply = totalSupply();
        walletClaimed[to] = true;
        tokenCount += 1;
        _safeMint(to, TOKEN_IDS_STARTS_AT + supply);
    }

    // Withdraw
    function withdraw() external payable onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = payable(msg.sender).call{value: balance}("");
        require(success, "Transfer failed");
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"metaDataURL","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"isMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"value","type":"string"}],"name":"setMetaDataURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setMintActive","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":"","type":"uint256"}],"name":"tokenClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60a06040525f60809081526007906200001990826200020f565b506008805460ff191660011790555f60095534801562000037575f80fd5b5060405162002009380380620020098339810160408190526200005a9162000381565b82825f6200006983826200020f565b5060016200007882826200020f565b505050620000956200008f620000a960201b60201c565b620000ad565b620000a081620000fe565b5050506200040c565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6006546001600160a01b031633146200015d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b60076200016b82826200020f565b5050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200019857607f821691505b602082108103620001b757634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200020a575f81815260208120601f850160051c81016020861015620001e55750805b601f850160051c820191505b818110156200020657828155600101620001f1565b5050505b505050565b81516001600160401b038111156200022b576200022b6200016f565b62000243816200023c845462000183565b84620001bd565b602080601f83116001811462000279575f8415620002615750858301515b5f19600386901b1c1916600185901b17855562000206565b5f85815260208120601f198616915b82811015620002a95788860151825594840194600190910190840162000288565b5085821015620002c757878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f82601f830112620002e7575f80fd5b81516001600160401b03808211156200030457620003046200016f565b604051601f8301601f19908116603f011681019082821181831017156200032f576200032f6200016f565b816040528381526020925086838588010111156200034b575f80fd5b5f91505b838210156200036e57858201830151818301840152908201906200034f565b5f93810190920192909252949350505050565b5f805f6060848603121562000394575f80fd5b83516001600160401b0380821115620003ab575f80fd5b620003b987838801620002d7565b94506020860151915080821115620003cf575f80fd5b620003dd87838801620002d7565b93506040860151915080821115620003f3575f80fd5b506200040286828701620002d7565b9150509250925092565b611bef806200041a5f395ff3fe608060405260043610610161575f3560e01c8063715018a6116100cd578063b88d4fde11610087578063cbfc4bce11610062578063cbfc4bce14610409578063e985e9c514610428578063ee1cc94414610447578063f2fde38b14610466575f80fd5b8063b88d4fde1461039d578063c25d8f4d146103bc578063c87b56dd146103ea575f80fd5b8063715018a6146102fb5780638da5cb5b1461030f57806395d89b411461032c5780639d7b9a6c14610340578063a0712d681461035f578063a22cb4651461037e575f80fd5b806336ee1d8d1161011e57806336ee1d8d1461024f5780633ccfd60b1461027d57806342842e0e146102855780635b92ac0d146102a45780636352211e146102bd57806370a08231146102dc575f80fd5b806301ffc9a71461016557806306fdde0314610199578063081812fc146101ba578063095ea7b3146101f157806318160ddd1461021257806323b872dd14610230575b5f80fd5b348015610170575f80fd5b5061018461017f3660046115f1565b610485565b60405190151581526020015b60405180910390f35b3480156101a4575f80fd5b506101ad6104d6565b6040516101909190611656565b3480156101c5575f80fd5b506101d96101d4366004611668565b610565565b6040516001600160a01b039091168152602001610190565b3480156101fc575f80fd5b5061021061020b366004611693565b6105fd565b005b34801561021d575f80fd5b506009545b604051908152602001610190565b34801561023b575f80fd5b5061021061024a3660046116bd565b610711565b34801561025a575f80fd5b50610184610269366004611668565b600a6020525f908152604090205460ff1681565b610210610742565b348015610290575f80fd5b5061021061029f3660046116bd565b6107f9565b3480156102af575f80fd5b506008546101849060ff1681565b3480156102c8575f80fd5b506101d96102d7366004611668565b610813565b3480156102e7575f80fd5b506102226102f63660046116fb565b610889565b348015610306575f80fd5b5061021061090e565b34801561031a575f80fd5b506006546001600160a01b03166101d9565b348015610337575f80fd5b506101ad610943565b34801561034b575f80fd5b5061021061035a36600461179d565b610952565b34801561036a575f80fd5b50610210610379366004611668565b610988565b348015610389575f80fd5b506102106103983660046117f6565b610c4b565b3480156103a8575f80fd5b506102106103b7366004611829565b610c56565b3480156103c7575f80fd5b506101846103d63660046116fb565b600b6020525f908152604090205460ff1681565b3480156103f5575f80fd5b506101ad610404366004611668565b610c8e565b348015610414575f80fd5b506102106104233660046116fb565b610d9c565b348015610433575f80fd5b506101846104423660046118a4565b610e21565b348015610452575f80fd5b506102106104613660046118db565b610e4e565b348015610471575f80fd5b506102106104803660046116fb565b610e8b565b5f6001600160e01b031982166380ac58cd60e01b14806104b557506001600160e01b03198216635b5e139f60e01b145b806104d057506301ffc9a760e01b6001600160e01b03198316145b92915050565b60605f80546104e4906118f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610510906118f4565b801561055b5780601f106105325761010080835404028352916020019161055b565b820191905f5260205f20905b81548152906001019060200180831161053e57829003601f168201915b5050505050905090565b5f818152600260205260408120546001600160a01b03166105e25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b505f908152600460205260409020546001600160a01b031690565b5f61060782610813565b9050806001600160a01b0316836001600160a01b0316036106745760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105d9565b336001600160a01b038216148061069057506106908133610e21565b6107025760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105d9565b61070c8383610f26565b505050565b61071b3382610f93565b6107375760405162461bcd60e51b81526004016105d99061192c565b61070c838383611068565b6006546001600160a01b0316331461076c5760405162461bcd60e51b81526004016105d99061197d565b60405147905f90339083908381818185875af1925050503d805f81146107ad576040519150601f19603f3d011682016040523d82523d5f602084013e6107b2565b606091505b50509050806107f55760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064016105d9565b5050565b61070c83838360405180602001604052805f815250610c56565b5f818152600260205260408120546001600160a01b0316806104d05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105d9565b5f6001600160a01b0382166108f35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105d9565b506001600160a01b03165f9081526003602052604090205490565b6006546001600160a01b031633146109385760405162461bcd60e51b81526004016105d99061197d565b6109415f611204565b565b6060600180546104e4906118f4565b6006546001600160a01b0316331461097c5760405162461bcd60e51b81526004016105d99061197d565b60076107f582826119ff565b60085460ff166109d05760405162461bcd60e51b81526020600482015260136024820152724d696e74696e6720697320696e61637469766560681b60448201526064016105d9565b610fa1811015610a1a5760405162461bcd60e51b8152602060048201526015602482015274546f6b656e206973206f7574206f662072616e676560581b60448201526064016105d9565b611388811115610a645760405162461bcd60e51b8152602060048201526015602482015274546f6b656e206973206f7574206f662072616e676560581b60448201526064016105d9565b5f818152600a602052604090205460ff1615610aba5760405162461bcd60e51b8152602060048201526015602482015274151bdad95b88185b1c9958591e4818db185a5b5959605a1b60448201526064016105d9565b335f908152600b602052604090205460ff1615610b125760405162461bcd60e51b815260206004820152601660248201527515d85b1b195d08185b1c9958591e4818db185a5b595960521b60448201526064016105d9565b6040516331a9108f60e11b815260048101829052339073eeaf63f35b7c365aff27015a9aa5d6e4b734962c90636352211e90602401602060405180830381865afa158015610b62573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b869190611abb565b6001600160a01b031614610bdc5760405162461bcd60e51b815260206004820152601960248201527f57616c6c657420646f6573206e6f74206f776e20746f6b656e0000000000000060448201526064016105d9565b5f610be660095490565b5f838152600a602090815260408083208054600160ff199182168117909255338552600b90935290832080549092168117909155600980549394509092909190610c31908490611aea565b909155506107f5905033610c46836001611aea565b611255565b6107f533838361126e565b610c603383610f93565b610c7c5760405162461bcd60e51b81526004016105d99061192c565b610c888484848461133b565b50505050565b5f818152600260205260409020546060906001600160a01b0316610d0c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105d9565b60078054610d19906118f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610d45906118f4565b8015610d905780601f10610d6757610100808354040283529160200191610d90565b820191905f5260205f20905b815481529060010190602001808311610d7357829003601f168201915b50505050509050919050565b6006546001600160a01b03163314610dc65760405162461bcd60e51b81526004016105d99061197d565b5f610dd060095490565b6001600160a01b0383165f908152600b60205260408120805460ff19166001908117909155600980549394509092909190610e0c908490611aea565b909155506107f5905082610c46836001611aea565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205460ff1690565b6006546001600160a01b03163314610e785760405162461bcd60e51b81526004016105d99061197d565b6008805460ff1916911515919091179055565b6006546001600160a01b03163314610eb55760405162461bcd60e51b81526004016105d99061197d565b6001600160a01b038116610f1a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105d9565b610f2381611204565b50565b5f81815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f5a82610813565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5f818152600260205260408120546001600160a01b031661100b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105d9565b5f61101583610813565b9050806001600160a01b0316846001600160a01b031614806110505750836001600160a01b031661104584610565565b6001600160a01b0316145b8061106057506110608185610e21565b949350505050565b826001600160a01b031661107b82610813565b6001600160a01b0316146110e35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105d9565b6001600160a01b0382166111455760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105d9565b61114f5f82610f26565b6001600160a01b0383165f908152600360205260408120805460019290611177908490611afd565b90915550506001600160a01b0382165f9081526003602052604081208054600192906111a4908490611aea565b90915550505f8181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6107f5828260405180602001604052805f81525061136e565b816001600160a01b0316836001600160a01b0316036112cf5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105d9565b6001600160a01b038381165f81815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611346848484611068565b611352848484846113a0565b610c885760405162461bcd60e51b81526004016105d990611b10565b611378838361149d565b6113845f8484846113a0565b61070c5760405162461bcd60e51b81526004016105d990611b10565b5f6001600160a01b0384163b1561149257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113e3903390899088908890600401611b62565b6020604051808303815f875af192505050801561141d575060408051601f3d908101601f1916820190925261141a91810190611b9e565b60015b611478573d80801561144a576040519150601f19603f3d011682016040523d82523d5f602084013e61144f565b606091505b5080515f036114705760405162461bcd60e51b81526004016105d990611b10565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611060565b506001949350505050565b6001600160a01b0382166114f35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105d9565b5f818152600260205260409020546001600160a01b0316156115575760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105d9565b6001600160a01b0382165f90815260036020526040812080546001929061157f908490611aea565b90915550505f8181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610f23575f80fd5b5f60208284031215611601575f80fd5b813561160c816115dc565b9392505050565b5f81518084525f5b818110156116375760208185018101518683018201520161161b565b505f602082860101526020601f19601f83011685010191505092915050565b602081525f61160c6020830184611613565b5f60208284031215611678575f80fd5b5035919050565b6001600160a01b0381168114610f23575f80fd5b5f80604083850312156116a4575f80fd5b82356116af8161167f565b946020939093013593505050565b5f805f606084860312156116cf575f80fd5b83356116da8161167f565b925060208401356116ea8161167f565b929592945050506040919091013590565b5f6020828403121561170b575f80fd5b813561160c8161167f565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff8084111561174457611744611716565b604051601f8501601f19908116603f0116810190828211818310171561176c5761176c611716565b81604052809350858152868686011115611784575f80fd5b858560208301375f602087830101525050509392505050565b5f602082840312156117ad575f80fd5b813567ffffffffffffffff8111156117c3575f80fd5b8201601f810184136117d3575f80fd5b6110608482356020840161172a565b803580151581146117f1575f80fd5b919050565b5f8060408385031215611807575f80fd5b82356118128161167f565b9150611820602084016117e2565b90509250929050565b5f805f806080858703121561183c575f80fd5b84356118478161167f565b935060208501356118578161167f565b925060408501359150606085013567ffffffffffffffff811115611879575f80fd5b8501601f81018713611889575f80fd5b6118988782356020840161172a565b91505092959194509250565b5f80604083850312156118b5575f80fd5b82356118c08161167f565b915060208301356118d08161167f565b809150509250929050565b5f602082840312156118eb575f80fd5b61160c826117e2565b600181811c9082168061190857607f821691505b60208210810361192657634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561070c575f81815260208120601f850160051c810160208610156119d85750805b601f850160051c820191505b818110156119f7578281556001016119e4565b505050505050565b815167ffffffffffffffff811115611a1957611a19611716565b611a2d81611a2784546118f4565b846119b2565b602080601f831160018114611a60575f8415611a495750858301515b5f19600386901b1c1916600185901b1785556119f7565b5f85815260208120601f198616915b82811015611a8e57888601518255948401946001909101908401611a6f565b5085821015611aab57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f60208284031215611acb575f80fd5b815161160c8161167f565b634e487b7160e01b5f52601160045260245ffd5b808201808211156104d0576104d0611ad6565b818103818111156104d0576104d0611ad6565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90611b9490830184611613565b9695505050505050565b5f60208284031215611bae575f80fd5b815161160c816115dc56fea26469706673582212207185f0b3b5ecbadc5f20ed5f983079180477de0bd42f09d9b45df556fdb1ca3064736f6c63430008150033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000013535155414454532053696c766572204d32303200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000353534d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d597835433664694b57353173726374774b3441617a5a6669706142663568503139357150643757577361366e0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405260043610610161575f3560e01c8063715018a6116100cd578063b88d4fde11610087578063cbfc4bce11610062578063cbfc4bce14610409578063e985e9c514610428578063ee1cc94414610447578063f2fde38b14610466575f80fd5b8063b88d4fde1461039d578063c25d8f4d146103bc578063c87b56dd146103ea575f80fd5b8063715018a6146102fb5780638da5cb5b1461030f57806395d89b411461032c5780639d7b9a6c14610340578063a0712d681461035f578063a22cb4651461037e575f80fd5b806336ee1d8d1161011e57806336ee1d8d1461024f5780633ccfd60b1461027d57806342842e0e146102855780635b92ac0d146102a45780636352211e146102bd57806370a08231146102dc575f80fd5b806301ffc9a71461016557806306fdde0314610199578063081812fc146101ba578063095ea7b3146101f157806318160ddd1461021257806323b872dd14610230575b5f80fd5b348015610170575f80fd5b5061018461017f3660046115f1565b610485565b60405190151581526020015b60405180910390f35b3480156101a4575f80fd5b506101ad6104d6565b6040516101909190611656565b3480156101c5575f80fd5b506101d96101d4366004611668565b610565565b6040516001600160a01b039091168152602001610190565b3480156101fc575f80fd5b5061021061020b366004611693565b6105fd565b005b34801561021d575f80fd5b506009545b604051908152602001610190565b34801561023b575f80fd5b5061021061024a3660046116bd565b610711565b34801561025a575f80fd5b50610184610269366004611668565b600a6020525f908152604090205460ff1681565b610210610742565b348015610290575f80fd5b5061021061029f3660046116bd565b6107f9565b3480156102af575f80fd5b506008546101849060ff1681565b3480156102c8575f80fd5b506101d96102d7366004611668565b610813565b3480156102e7575f80fd5b506102226102f63660046116fb565b610889565b348015610306575f80fd5b5061021061090e565b34801561031a575f80fd5b506006546001600160a01b03166101d9565b348015610337575f80fd5b506101ad610943565b34801561034b575f80fd5b5061021061035a36600461179d565b610952565b34801561036a575f80fd5b50610210610379366004611668565b610988565b348015610389575f80fd5b506102106103983660046117f6565b610c4b565b3480156103a8575f80fd5b506102106103b7366004611829565b610c56565b3480156103c7575f80fd5b506101846103d63660046116fb565b600b6020525f908152604090205460ff1681565b3480156103f5575f80fd5b506101ad610404366004611668565b610c8e565b348015610414575f80fd5b506102106104233660046116fb565b610d9c565b348015610433575f80fd5b506101846104423660046118a4565b610e21565b348015610452575f80fd5b506102106104613660046118db565b610e4e565b348015610471575f80fd5b506102106104803660046116fb565b610e8b565b5f6001600160e01b031982166380ac58cd60e01b14806104b557506001600160e01b03198216635b5e139f60e01b145b806104d057506301ffc9a760e01b6001600160e01b03198316145b92915050565b60605f80546104e4906118f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610510906118f4565b801561055b5780601f106105325761010080835404028352916020019161055b565b820191905f5260205f20905b81548152906001019060200180831161053e57829003601f168201915b5050505050905090565b5f818152600260205260408120546001600160a01b03166105e25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b505f908152600460205260409020546001600160a01b031690565b5f61060782610813565b9050806001600160a01b0316836001600160a01b0316036106745760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105d9565b336001600160a01b038216148061069057506106908133610e21565b6107025760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105d9565b61070c8383610f26565b505050565b61071b3382610f93565b6107375760405162461bcd60e51b81526004016105d99061192c565b61070c838383611068565b6006546001600160a01b0316331461076c5760405162461bcd60e51b81526004016105d99061197d565b60405147905f90339083908381818185875af1925050503d805f81146107ad576040519150601f19603f3d011682016040523d82523d5f602084013e6107b2565b606091505b50509050806107f55760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064016105d9565b5050565b61070c83838360405180602001604052805f815250610c56565b5f818152600260205260408120546001600160a01b0316806104d05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105d9565b5f6001600160a01b0382166108f35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105d9565b506001600160a01b03165f9081526003602052604090205490565b6006546001600160a01b031633146109385760405162461bcd60e51b81526004016105d99061197d565b6109415f611204565b565b6060600180546104e4906118f4565b6006546001600160a01b0316331461097c5760405162461bcd60e51b81526004016105d99061197d565b60076107f582826119ff565b60085460ff166109d05760405162461bcd60e51b81526020600482015260136024820152724d696e74696e6720697320696e61637469766560681b60448201526064016105d9565b610fa1811015610a1a5760405162461bcd60e51b8152602060048201526015602482015274546f6b656e206973206f7574206f662072616e676560581b60448201526064016105d9565b611388811115610a645760405162461bcd60e51b8152602060048201526015602482015274546f6b656e206973206f7574206f662072616e676560581b60448201526064016105d9565b5f818152600a602052604090205460ff1615610aba5760405162461bcd60e51b8152602060048201526015602482015274151bdad95b88185b1c9958591e4818db185a5b5959605a1b60448201526064016105d9565b335f908152600b602052604090205460ff1615610b125760405162461bcd60e51b815260206004820152601660248201527515d85b1b195d08185b1c9958591e4818db185a5b595960521b60448201526064016105d9565b6040516331a9108f60e11b815260048101829052339073eeaf63f35b7c365aff27015a9aa5d6e4b734962c90636352211e90602401602060405180830381865afa158015610b62573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b869190611abb565b6001600160a01b031614610bdc5760405162461bcd60e51b815260206004820152601960248201527f57616c6c657420646f6573206e6f74206f776e20746f6b656e0000000000000060448201526064016105d9565b5f610be660095490565b5f838152600a602090815260408083208054600160ff199182168117909255338552600b90935290832080549092168117909155600980549394509092909190610c31908490611aea565b909155506107f5905033610c46836001611aea565b611255565b6107f533838361126e565b610c603383610f93565b610c7c5760405162461bcd60e51b81526004016105d99061192c565b610c888484848461133b565b50505050565b5f818152600260205260409020546060906001600160a01b0316610d0c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105d9565b60078054610d19906118f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610d45906118f4565b8015610d905780601f10610d6757610100808354040283529160200191610d90565b820191905f5260205f20905b815481529060010190602001808311610d7357829003601f168201915b50505050509050919050565b6006546001600160a01b03163314610dc65760405162461bcd60e51b81526004016105d99061197d565b5f610dd060095490565b6001600160a01b0383165f908152600b60205260408120805460ff19166001908117909155600980549394509092909190610e0c908490611aea565b909155506107f5905082610c46836001611aea565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205460ff1690565b6006546001600160a01b03163314610e785760405162461bcd60e51b81526004016105d99061197d565b6008805460ff1916911515919091179055565b6006546001600160a01b03163314610eb55760405162461bcd60e51b81526004016105d99061197d565b6001600160a01b038116610f1a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105d9565b610f2381611204565b50565b5f81815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f5a82610813565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5f818152600260205260408120546001600160a01b031661100b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105d9565b5f61101583610813565b9050806001600160a01b0316846001600160a01b031614806110505750836001600160a01b031661104584610565565b6001600160a01b0316145b8061106057506110608185610e21565b949350505050565b826001600160a01b031661107b82610813565b6001600160a01b0316146110e35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105d9565b6001600160a01b0382166111455760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105d9565b61114f5f82610f26565b6001600160a01b0383165f908152600360205260408120805460019290611177908490611afd565b90915550506001600160a01b0382165f9081526003602052604081208054600192906111a4908490611aea565b90915550505f8181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6107f5828260405180602001604052805f81525061136e565b816001600160a01b0316836001600160a01b0316036112cf5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105d9565b6001600160a01b038381165f81815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611346848484611068565b611352848484846113a0565b610c885760405162461bcd60e51b81526004016105d990611b10565b611378838361149d565b6113845f8484846113a0565b61070c5760405162461bcd60e51b81526004016105d990611b10565b5f6001600160a01b0384163b1561149257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113e3903390899088908890600401611b62565b6020604051808303815f875af192505050801561141d575060408051601f3d908101601f1916820190925261141a91810190611b9e565b60015b611478573d80801561144a576040519150601f19603f3d011682016040523d82523d5f602084013e61144f565b606091505b5080515f036114705760405162461bcd60e51b81526004016105d990611b10565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611060565b506001949350505050565b6001600160a01b0382166114f35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105d9565b5f818152600260205260409020546001600160a01b0316156115575760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105d9565b6001600160a01b0382165f90815260036020526040812080546001929061157f908490611aea565b90915550505f8181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610f23575f80fd5b5f60208284031215611601575f80fd5b813561160c816115dc565b9392505050565b5f81518084525f5b818110156116375760208185018101518683018201520161161b565b505f602082860101526020601f19601f83011685010191505092915050565b602081525f61160c6020830184611613565b5f60208284031215611678575f80fd5b5035919050565b6001600160a01b0381168114610f23575f80fd5b5f80604083850312156116a4575f80fd5b82356116af8161167f565b946020939093013593505050565b5f805f606084860312156116cf575f80fd5b83356116da8161167f565b925060208401356116ea8161167f565b929592945050506040919091013590565b5f6020828403121561170b575f80fd5b813561160c8161167f565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff8084111561174457611744611716565b604051601f8501601f19908116603f0116810190828211818310171561176c5761176c611716565b81604052809350858152868686011115611784575f80fd5b858560208301375f602087830101525050509392505050565b5f602082840312156117ad575f80fd5b813567ffffffffffffffff8111156117c3575f80fd5b8201601f810184136117d3575f80fd5b6110608482356020840161172a565b803580151581146117f1575f80fd5b919050565b5f8060408385031215611807575f80fd5b82356118128161167f565b9150611820602084016117e2565b90509250929050565b5f805f806080858703121561183c575f80fd5b84356118478161167f565b935060208501356118578161167f565b925060408501359150606085013567ffffffffffffffff811115611879575f80fd5b8501601f81018713611889575f80fd5b6118988782356020840161172a565b91505092959194509250565b5f80604083850312156118b5575f80fd5b82356118c08161167f565b915060208301356118d08161167f565b809150509250929050565b5f602082840312156118eb575f80fd5b61160c826117e2565b600181811c9082168061190857607f821691505b60208210810361192657634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561070c575f81815260208120601f850160051c810160208610156119d85750805b601f850160051c820191505b818110156119f7578281556001016119e4565b505050505050565b815167ffffffffffffffff811115611a1957611a19611716565b611a2d81611a2784546118f4565b846119b2565b602080601f831160018114611a60575f8415611a495750858301515b5f19600386901b1c1916600185901b1785556119f7565b5f85815260208120601f198616915b82811015611a8e57888601518255948401946001909101908401611a6f565b5085821015611aab57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f60208284031215611acb575f80fd5b815161160c8161167f565b634e487b7160e01b5f52601160045260245ffd5b808201808211156104d0576104d0611ad6565b818103818111156104d0576104d0611ad6565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90611b9490830184611613565b9695505050505050565b5f60208284031215611bae575f80fd5b815161160c816115dc56fea26469706673582212207185f0b3b5ecbadc5f20ed5f983079180477de0bd42f09d9b45df556fdb1ca3064736f6c63430008150033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000013535155414454532053696c766572204d32303200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000353534d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d597835433664694b57353173726374774b3441617a5a6669706142663568503139357150643757577361366e0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): SQUADTS Silver M202
Arg [1] : symbol (string): SSM
Arg [2] : metaDataURL (string): https://ipfs.io/ipfs/QmYx5C6diKW51srctwK4AazZfipaBf5hP195qPd7WWsa6n

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [4] : 535155414454532053696c766572204d32303200000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 53534d0000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [8] : 68747470733a2f2f697066732e696f2f697066732f516d597835433664694b57
Arg [9] : 353173726374774b3441617a5a66697061426635685031393571506437575773
Arg [10] : 61366e0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

36241:2464:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21209:305;;;;;;;;;;-1:-1:-1;21209:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;21209:305:0;;;;;;;;22154:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23713:221::-;;;;;;;;;;-1:-1:-1;23713:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1594:32:1;;;1576:51;;1564:2;1549:18;23713:221:0;1430:203:1;23236:411:0;;;;;;;;;;-1:-1:-1;23236:411:0;;;;;:::i;:::-;;:::i;:::-;;37436:89;;;;;;;;;;-1:-1:-1;37507:10:0;;37436:89;;;2240:25:1;;;2228:2;2213:18;37436:89:0;2094:177:1;24463:339:0;;;;;;;;;;-1:-1:-1;24463:339:0;;;;;:::i;:::-;;:::i;36645:44::-;;;;;;;;;;-1:-1:-1;36645:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;38475:225;;;:::i;24873:185::-;;;;;;;;;;-1:-1:-1;24873:185:0;;;;;:::i;:::-;;:::i;36361:31::-;;;;;;;;;;-1:-1:-1;36361:31:0;;;;;;;;21848:239;;;;;;;;;;-1:-1:-1;21848:239:0;;;;;:::i;:::-;;:::i;21578:208::-;;;;;;;;;;-1:-1:-1;21578:208:0;;;;;:::i;:::-;;:::i;35358:103::-;;;;;;;;;;;;;:::i;34707:87::-;;;;;;;;;;-1:-1:-1;34780:6:0;;-1:-1:-1;;;;;34780:6:0;34707:87;;22323:104;;;;;;;;;;;;;:::i;37230:101::-;;;;;;;;;;-1:-1:-1;37230:101:0;;;;;:::i;:::-;;:::i;37549:686::-;;;;;;;;;;-1:-1:-1;37549:686:0;;;;;:::i;:::-;;:::i;24006:155::-;;;;;;;;;;-1:-1:-1;24006:155:0;;;;;:::i;:::-;;:::i;25129:328::-;;;;;;;;;;-1:-1:-1;25129:328:0;;;;;:::i;:::-;;:::i;36696:45::-;;;;;;;;;;-1:-1:-1;36696:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;37011:213;;;;;;;;;;-1:-1:-1;37011:213:0;;;;;:::i;:::-;;:::i;38241:209::-;;;;;;;;;;-1:-1:-1;38241:209:0;;;;;:::i;:::-;;:::i;24232:164::-;;;;;;;;;;-1:-1:-1;24232:164:0;;;;;:::i;:::-;;:::i;37337:93::-;;;;;;;;;;-1:-1:-1;37337:93:0;;;;;:::i;:::-;;:::i;35616:201::-;;;;;;;;;;-1:-1:-1;35616:201:0;;;;;:::i;:::-;;:::i;21209:305::-;21311:4;-1:-1:-1;;;;;;21348:40:0;;-1:-1:-1;;;21348:40:0;;:105;;-1:-1:-1;;;;;;;21405:48:0;;-1:-1:-1;;;21405:48:0;21348:105;:158;;;-1:-1:-1;;;;;;;;;;13220:40:0;;;21470:36;21328:178;21209:305;-1:-1:-1;;21209:305:0:o;22154:100::-;22208:13;22241:5;22234:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22154:100;:::o;23713:221::-;23789:7;27056:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27056:16:0;23809:73;;;;-1:-1:-1;;;23809:73:0;;6664:2:1;23809:73:0;;;6646:21:1;6703:2;6683:18;;;6676:30;6742:34;6722:18;;;6715:62;-1:-1:-1;;;6793:18:1;;;6786:42;6845:19;;23809:73:0;;;;;;;;;-1:-1:-1;23902:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23902:24:0;;23713:221::o;23236:411::-;23317:13;23333:23;23348:7;23333:14;:23::i;:::-;23317:39;;23381:5;-1:-1:-1;;;;;23375:11:0;:2;-1:-1:-1;;;;;23375:11:0;;23367:57;;;;-1:-1:-1;;;23367:57:0;;7077:2:1;23367:57:0;;;7059:21:1;7116:2;7096:18;;;7089:30;7155:34;7135:18;;;7128:62;-1:-1:-1;;;7206:18:1;;;7199:31;7247:19;;23367:57:0;6875:397:1;23367:57:0;19699:10;-1:-1:-1;;;;;23459:21:0;;;;:62;;-1:-1:-1;23484:37:0;23501:5;19699:10;24232:164;:::i;23484:37::-;23437:168;;;;-1:-1:-1;;;23437:168:0;;7479:2:1;23437:168:0;;;7461:21:1;7518:2;7498:18;;;7491:30;7557:34;7537:18;;;7530:62;7628:26;7608:18;;;7601:54;7672:19;;23437:168:0;7277:420:1;23437:168:0;23618:21;23627:2;23631:7;23618:8;:21::i;:::-;23306:341;23236:411;;:::o;24463:339::-;24658:41;19699:10;24691:7;24658:18;:41::i;:::-;24650:103;;;;-1:-1:-1;;;24650:103:0;;;;;;;:::i;:::-;24766:28;24776:4;24782:2;24786:7;24766:9;:28::i;38475:225::-;34780:6;;-1:-1:-1;;;;;34780:6:0;19699:10;34927:23;34919:68;;;;-1:-1:-1;;;34919:68:0;;;;;;;:::i;:::-;38602:44:::1;::::0;38551:21:::1;::::0;38533:15:::1;::::0;38610:10:::1;::::0;38551:21;;38533:15;38602:44;38533:15;38602:44;38551:21;38610:10;38602:44:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38583:63;;;38665:7;38657:35;;;::::0;-1:-1:-1;;;38657:35:0;;8893:2:1;38657:35:0::1;::::0;::::1;8875:21:1::0;8932:2;8912:18;;;8905:30;-1:-1:-1;;;8951:18:1;;;8944:45;9006:18;;38657:35:0::1;8691:339:1::0;38657:35:0::1;38522:178;;38475:225::o:0;24873:185::-;25011:39;25028:4;25034:2;25038:7;25011:39;;;;;;;;;;;;:16;:39::i;21848:239::-;21920:7;21956:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21956:16:0;;21983:73;;;;-1:-1:-1;;;21983:73:0;;9237:2:1;21983:73:0;;;9219:21:1;9276:2;9256:18;;;9249:30;9315:34;9295:18;;;9288:62;-1:-1:-1;;;9366:18:1;;;9359:39;9415:19;;21983:73:0;9035:405:1;21578:208:0;21650:7;-1:-1:-1;;;;;21678:19:0;;21670:74;;;;-1:-1:-1;;;21670:74:0;;9647:2:1;21670:74:0;;;9629:21:1;9686:2;9666:18;;;9659:30;9725:34;9705:18;;;9698:62;-1:-1:-1;;;9776:18:1;;;9769:40;9826:19;;21670:74:0;9445:406:1;21670:74:0;-1:-1:-1;;;;;;21762:16:0;;;;;:9;:16;;;;;;;21578:208::o;35358:103::-;34780:6;;-1:-1:-1;;;;;34780:6:0;19699:10;34927:23;34919:68;;;;-1:-1:-1;;;34919:68:0;;;;;;;:::i;:::-;35423:30:::1;35450:1;35423:18;:30::i;:::-;35358:103::o:0;22323:104::-;22379:13;22412:7;22405:14;;;;;:::i;37230:101::-;34780:6;;-1:-1:-1;;;;;34780:6:0;19699:10;34927:23;34919:68;;;;-1:-1:-1;;;34919:68:0;;;;;;;:::i;:::-;37303:12:::1;:20;37318:5:::0;37303:12;:20:::1;:::i;37549:686::-:0;37608:12;;;;37600:44;;;;-1:-1:-1;;;37600:44:0;;12262:2:1;37600:44:0;;;12244:21:1;12301:2;12281:18;;;12274:30;-1:-1:-1;;;12320:18:1;;;12313:49;12379:18;;37600:44:0;12060:343:1;37600:44:0;36477:4;37663:7;:20;;37655:54;;;;-1:-1:-1;;;37655:54:0;;12610:2:1;37655:54:0;;;12592:21:1;12649:2;12629:18;;;12622:30;-1:-1:-1;;;12668:18:1;;;12661:51;12729:18;;37655:54:0;12408:345:1;37655:54:0;36517:4;37728:7;:20;;37720:54;;;;-1:-1:-1;;;37720:54:0;;12610:2:1;37720:54:0;;;12592:21:1;12649:2;12629:18;;;12622:30;-1:-1:-1;;;12668:18:1;;;12661:51;12729:18;;37720:54:0;12408:345:1;37720:54:0;37794:21;;;;:12;:21;;;;;;;;37793:22;37785:56;;;;-1:-1:-1;;;37785:56:0;;12960:2:1;37785:56:0;;;12942:21:1;12999:2;12979:18;;;12972:30;-1:-1:-1;;;13018:18:1;;;13011:51;13079:18;;37785:56:0;12758:345:1;37785:56:0;37875:10;37861:25;;;;:13;:25;;;;;;;;37860:26;37852:61;;;;-1:-1:-1;;;37852:61:0;;13310:2:1;37852:61:0;;;13292:21:1;13349:2;13329:18;;;13322:30;-1:-1:-1;;;13368:18:1;;;13361:52;13430:18;;37852:61:0;13108:346:1;37852:61:0;37932:40;;-1:-1:-1;;;37932:40:0;;;;;2240:25:1;;;37976:10:0;;36594:42;;37932:31;;2213:18:1;;37932:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;37932:54:0;;37924:92;;;;-1:-1:-1;;;37924:92:0;;13917:2:1;37924:92:0;;;13899:21:1;13956:2;13936:18;;;13929:30;13995:27;13975:18;;;13968:55;14040:18;;37924:92:0;13715:349:1;37924:92:0;38027:14;38044:13;37507:10;;;37436:89;38044:13;38068:21;;;;:12;:21;;;;;;;;:28;;38092:4;-1:-1:-1;;38068:28:0;;;;;;;;38121:10;38107:25;;:13;:25;;;;;;:32;;;;;;;;;;38150:10;:15;;38027:30;;-1:-1:-1;38092:4:0;;38150:10;;38068:21;38150:15;;38092:4;;38150:15;:::i;:::-;;;;-1:-1:-1;38176:51:0;;-1:-1:-1;38186:10:0;38198:28;38220:6;36440:1;38198:28;:::i;:::-;38176:9;:51::i;24006:155::-;24101:52;19699:10;24134:8;24144;24101:18;:52::i;25129:328::-;25304:41;19699:10;25337:7;25304:18;:41::i;:::-;25296:103;;;;-1:-1:-1;;;25296:103:0;;;;;;;:::i;:::-;25410:39;25424:4;25430:2;25434:7;25443:5;25410:13;:39::i;:::-;25129:328;;;;:::o;37011:213::-;27032:4;27056:16;;;:7;:16;;;;;;37084:13;;-1:-1:-1;;;;;27056:16:0;37110:76;;;;-1:-1:-1;;;37110:76:0;;14533:2:1;37110:76:0;;;14515:21:1;14572:2;14552:18;;;14545:30;14611:34;14591:18;;;14584:62;-1:-1:-1;;;14662:18:1;;;14655:45;14717:19;;37110:76:0;14331:411:1;37110:76:0;37204:12;37197:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37011:213;;;:::o;38241:209::-;34780:6;;-1:-1:-1;;;;;34780:6:0;19699:10;34927:23;34919:68;;;;-1:-1:-1;;;34919:68:0;;;;;;;:::i;:::-;38297:14:::1;38314:13;37507:10:::0;;;37436:89;38314:13:::1;-1:-1:-1::0;;;;;38338:17:0;::::1;;::::0;;;:13:::1;:17;::::0;;;;:24;;-1:-1:-1;;38338:24:0::1;38358:4;38338:24:::0;;::::1;::::0;;;38373:10:::1;:15:::0;;38297:30;;-1:-1:-1;38358:4:0;;38373:10;;38338:17;38373:15:::1;::::0;38358:4;;38373:15:::1;:::i;:::-;::::0;;;-1:-1:-1;38399:43:0::1;::::0;-1:-1:-1;38409:2:0;38413:28:::1;38435:6:::0;36440:1:::1;38413:28;:::i;24232:164::-:0;-1:-1:-1;;;;;24353:25:0;;;24329:4;24353:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24232:164::o;37337:93::-;34780:6;;-1:-1:-1;;;;;34780:6:0;19699:10;34927:23;34919:68;;;;-1:-1:-1;;;34919:68:0;;;;;;;:::i;:::-;37402:12:::1;:20:::0;;-1:-1:-1;;37402:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37337:93::o;35616:201::-;34780:6;;-1:-1:-1;;;;;34780:6:0;19699:10;34927:23;34919:68;;;;-1:-1:-1;;;34919:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35705:22:0;::::1;35697:73;;;::::0;-1:-1:-1;;;35697:73:0;;14949:2:1;35697:73:0::1;::::0;::::1;14931:21:1::0;14988:2;14968:18;;;14961:30;15027:34;15007:18;;;15000:62;-1:-1:-1;;;15078:18:1;;;15071:36;15124:19;;35697:73:0::1;14747:402:1::0;35697:73:0::1;35781:28;35800:8;35781:18;:28::i;:::-;35616:201:::0;:::o;30949:174::-;31024:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31024:29:0;-1:-1:-1;;;;;31024:29:0;;;;;;;;:24;;31078:23;31024:24;31078:14;:23::i;:::-;-1:-1:-1;;;;;31069:46:0;;;;;;;;;;;30949:174;;:::o;27261:348::-;27354:4;27056:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27056:16:0;27371:73;;;;-1:-1:-1;;;27371:73:0;;15356:2:1;27371:73:0;;;15338:21:1;15395:2;15375:18;;;15368:30;15434:34;15414:18;;;15407:62;-1:-1:-1;;;15485:18:1;;;15478:42;15537:19;;27371:73:0;15154:408:1;27371:73:0;27455:13;27471:23;27486:7;27471:14;:23::i;:::-;27455:39;;27524:5;-1:-1:-1;;;;;27513:16:0;:7;-1:-1:-1;;;;;27513:16:0;;:51;;;;27557:7;-1:-1:-1;;;;;27533:31:0;:20;27545:7;27533:11;:20::i;:::-;-1:-1:-1;;;;;27533:31:0;;27513:51;:87;;;;27568:32;27585:5;27592:7;27568:16;:32::i;:::-;27505:96;27261:348;-1:-1:-1;;;;27261:348:0:o;30253:578::-;30412:4;-1:-1:-1;;;;;30385:31:0;:23;30400:7;30385:14;:23::i;:::-;-1:-1:-1;;;;;30385:31:0;;30377:85;;;;-1:-1:-1;;;30377:85:0;;15769:2:1;30377:85:0;;;15751:21:1;15808:2;15788:18;;;15781:30;15847:34;15827:18;;;15820:62;-1:-1:-1;;;15898:18:1;;;15891:39;15947:19;;30377:85:0;15567:405:1;30377:85:0;-1:-1:-1;;;;;30481:16:0;;30473:65;;;;-1:-1:-1;;;30473:65:0;;16179:2:1;30473:65:0;;;16161:21:1;16218:2;16198:18;;;16191:30;16257:34;16237:18;;;16230:62;-1:-1:-1;;;16308:18:1;;;16301:34;16352:19;;30473:65:0;15977:400:1;30473:65:0;30655:29;30672:1;30676:7;30655:8;:29::i;:::-;-1:-1:-1;;;;;30697:15:0;;;;;;:9;:15;;;;;:20;;30716:1;;30697:15;:20;;30716:1;;30697:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30728:13:0;;;;;;:9;:13;;;;;:18;;30745:1;;30728:13;:18;;30745:1;;30728:18;:::i;:::-;;;;-1:-1:-1;;30757:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30757:21:0;-1:-1:-1;;;;;30757:21:0;;;;;;;;;30796:27;;30757:16;;30796:27;;;;;;;30253:578;;;:::o;35977:191::-;36070:6;;;-1:-1:-1;;;;;36087:17:0;;;-1:-1:-1;;;;;;36087:17:0;;;;;;;36120:40;;36070:6;;;36087:17;36070:6;;36120:40;;36051:16;;36120:40;36040:128;35977:191;:::o;27951:110::-;28027:26;28037:2;28041:7;28027:26;;;;;;;;;;;;:9;:26::i;31265:315::-;31420:8;-1:-1:-1;;;;;31411:17:0;:5;-1:-1:-1;;;;;31411:17:0;;31403:55;;;;-1:-1:-1;;;31403:55:0;;16717:2:1;31403:55:0;;;16699:21:1;16756:2;16736:18;;;16729:30;16795:27;16775:18;;;16768:55;16840:18;;31403:55:0;16515:349:1;31403:55:0;-1:-1:-1;;;;;31469:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;31469:46:0;;;;;;;;;;31531:41;;540::1;;;31531::0;;513:18:1;31531:41:0;;;;;;;31265:315;;;:::o;26339:::-;26496:28;26506:4;26512:2;26516:7;26496:9;:28::i;:::-;26543:48;26566:4;26572:2;26576:7;26585:5;26543:22;:48::i;:::-;26535:111;;;;-1:-1:-1;;;26535:111:0;;;;;;;:::i;28288:321::-;28418:18;28424:2;28428:7;28418:5;:18::i;:::-;28469:54;28500:1;28504:2;28508:7;28517:5;28469:22;:54::i;:::-;28447:154;;;;-1:-1:-1;;;28447:154:0;;;;;;;:::i;32145:799::-;32300:4;-1:-1:-1;;;;;32321:13:0;;3298:20;3346:8;32317:620;;32357:72;;-1:-1:-1;;;32357:72:0;;-1:-1:-1;;;;;32357:36:0;;;;;:72;;19699:10;;32408:4;;32414:7;;32423:5;;32357:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32357:72:0;;;;;;;;-1:-1:-1;;32357:72:0;;;;;;;;;;;;:::i;:::-;;;32353:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32599:6;:13;32616:1;32599:18;32595:272;;32642:60;;-1:-1:-1;;;32642:60:0;;;;;;;:::i;32595:272::-;32817:6;32811:13;32802:6;32798:2;32794:15;32787:38;32353:529;-1:-1:-1;;;;;;32480:51:0;-1:-1:-1;;;32480:51:0;;-1:-1:-1;32473:58:0;;32317:620;-1:-1:-1;32921:4:0;32145:799;;;;;;:::o;28945:382::-;-1:-1:-1;;;;;29025:16:0;;29017:61;;;;-1:-1:-1;;;29017:61:0;;18238:2:1;29017:61:0;;;18220:21:1;;;18257:18;;;18250:30;18316:34;18296:18;;;18289:62;18368:18;;29017:61:0;18036:356:1;29017:61:0;27032:4;27056:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27056:16:0;:30;29089:58;;;;-1:-1:-1;;;29089:58:0;;18599:2:1;29089:58:0;;;18581:21:1;18638:2;18618:18;;;18611:30;18677;18657:18;;;18650:58;18725:18;;29089:58:0;18397:352:1;29089:58:0;-1:-1:-1;;;;;29218:13:0;;;;;;:9;:13;;;;;:18;;29235:1;;29218:13;:18;;29235:1;;29218:18;:::i;:::-;;;;-1:-1:-1;;29247:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29247:21:0;-1:-1:-1;;;;;29247:21:0;;;;;;;;29286:33;;29247:16;;;29286:33;;29247:16;;29286:33;28945:382;;:::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;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:423::-;634:3;672:5;666:12;699:6;694:3;687:19;724:1;734:162;748:6;745:1;742:13;734:162;;;810:4;866:13;;;862:22;;856:29;838:11;;;834:20;;827:59;763:12;734:162;;;738:3;941:1;934:4;925:6;920:3;916:16;912:27;905:38;1004:4;997:2;993:7;988:2;980:6;976:15;972:29;967:3;963:39;959:50;952:57;;;592:423;;;;:::o;1020:220::-;1169:2;1158:9;1151:21;1132:4;1189:45;1230:2;1219:9;1215:18;1207:6;1189:45;:::i;1245:180::-;1304:6;1357:2;1345:9;1336:7;1332:23;1328:32;1325:52;;;1373:1;1370;1363:12;1325:52;-1:-1:-1;1396:23:1;;1245:180;-1:-1:-1;1245:180:1:o;1638:131::-;-1:-1:-1;;;;;1713:31:1;;1703:42;;1693:70;;1759:1;1756;1749:12;1774:315;1842:6;1850;1903:2;1891:9;1882:7;1878:23;1874:32;1871:52;;;1919:1;1916;1909:12;1871:52;1958:9;1945:23;1977:31;2002:5;1977:31;:::i;:::-;2027:5;2079:2;2064:18;;;;2051:32;;-1:-1:-1;;;1774:315:1:o;2276:456::-;2353:6;2361;2369;2422:2;2410:9;2401:7;2397:23;2393:32;2390:52;;;2438:1;2435;2428:12;2390:52;2477:9;2464:23;2496:31;2521:5;2496:31;:::i;:::-;2546:5;-1:-1:-1;2603:2:1;2588:18;;2575:32;2616:33;2575:32;2616:33;:::i;:::-;2276:456;;2668:7;;-1:-1:-1;;;2722:2:1;2707:18;;;;2694:32;;2276:456::o;2737:247::-;2796:6;2849:2;2837:9;2828:7;2824:23;2820:32;2817:52;;;2865:1;2862;2855:12;2817:52;2904:9;2891:23;2923:31;2948:5;2923:31;:::i;2989:127::-;3050:10;3045:3;3041:20;3038:1;3031:31;3081:4;3078:1;3071:15;3105:4;3102:1;3095:15;3121:632;3186:5;3216:18;3257:2;3249:6;3246:14;3243:40;;;3263:18;;:::i;:::-;3338:2;3332:9;3306:2;3392:15;;-1:-1:-1;;3388:24:1;;;3414:2;3384:33;3380:42;3368:55;;;3438:18;;;3458:22;;;3435:46;3432:72;;;3484:18;;:::i;:::-;3524:10;3520:2;3513:22;3553:6;3544:15;;3583:6;3575;3568:22;3623:3;3614:6;3609:3;3605:16;3602:25;3599:45;;;3640:1;3637;3630:12;3599:45;3690:6;3685:3;3678:4;3670:6;3666:17;3653:44;3745:1;3738:4;3729:6;3721;3717:19;3713:30;3706:41;;;;3121:632;;;;;:::o;3758:451::-;3827:6;3880:2;3868:9;3859:7;3855:23;3851:32;3848:52;;;3896:1;3893;3886:12;3848:52;3936:9;3923:23;3969:18;3961:6;3958:30;3955:50;;;4001:1;3998;3991:12;3955:50;4024:22;;4077:4;4069:13;;4065:27;-1:-1:-1;4055:55:1;;4106:1;4103;4096:12;4055:55;4129:74;4195:7;4190:2;4177:16;4172:2;4168;4164:11;4129:74;:::i;4214:160::-;4279:20;;4335:13;;4328:21;4318:32;;4308:60;;4364:1;4361;4354:12;4308:60;4214:160;;;:::o;4379:315::-;4444:6;4452;4505:2;4493:9;4484:7;4480:23;4476:32;4473:52;;;4521:1;4518;4511:12;4473:52;4560:9;4547:23;4579:31;4604:5;4579:31;:::i;:::-;4629:5;-1:-1:-1;4653:35:1;4684:2;4669:18;;4653:35;:::i;:::-;4643:45;;4379:315;;;;;:::o;4699:795::-;4794:6;4802;4810;4818;4871:3;4859:9;4850:7;4846:23;4842:33;4839:53;;;4888:1;4885;4878:12;4839:53;4927:9;4914:23;4946:31;4971:5;4946:31;:::i;:::-;4996:5;-1:-1:-1;5053:2:1;5038:18;;5025:32;5066:33;5025:32;5066:33;:::i;:::-;5118:7;-1:-1:-1;5172:2:1;5157:18;;5144:32;;-1:-1:-1;5227:2:1;5212:18;;5199:32;5254:18;5243:30;;5240:50;;;5286:1;5283;5276:12;5240:50;5309:22;;5362:4;5354:13;;5350:27;-1:-1:-1;5340:55:1;;5391:1;5388;5381:12;5340:55;5414:74;5480:7;5475:2;5462:16;5457:2;5453;5449:11;5414:74;:::i;:::-;5404:84;;;4699:795;;;;;;;:::o;5499:388::-;5567:6;5575;5628:2;5616:9;5607:7;5603:23;5599:32;5596:52;;;5644:1;5641;5634:12;5596:52;5683:9;5670:23;5702:31;5727:5;5702:31;:::i;:::-;5752:5;-1:-1:-1;5809:2:1;5794:18;;5781:32;5822:33;5781:32;5822:33;:::i;:::-;5874:7;5864:17;;;5499:388;;;;;:::o;5892:180::-;5948:6;6001:2;5989:9;5980:7;5976:23;5972:32;5969:52;;;6017:1;6014;6007:12;5969:52;6040:26;6056:9;6040:26;:::i;6077:380::-;6156:1;6152:12;;;;6199;;;6220:61;;6274:4;6266:6;6262:17;6252:27;;6220:61;6327:2;6319:6;6316:14;6296:18;6293:38;6290:161;;6373:10;6368:3;6364:20;6361:1;6354:31;6408:4;6405:1;6398:15;6436:4;6433:1;6426:15;6290:161;;6077:380;;;:::o;7702:413::-;7904:2;7886:21;;;7943:2;7923:18;;;7916:30;7982:34;7977:2;7962:18;;7955:62;-1:-1:-1;;;8048:2:1;8033:18;;8026:47;8105:3;8090:19;;7702:413::o;8120:356::-;8322:2;8304:21;;;8341:18;;;8334:30;8400:34;8395:2;8380:18;;8373:62;8467:2;8452:18;;8120:356::o;9982:545::-;10084:2;10079:3;10076:11;10073:448;;;10120:1;10145:5;10141:2;10134:17;10190:4;10186:2;10176:19;10260:2;10248:10;10244:19;10241:1;10237:27;10231:4;10227:38;10296:4;10284:10;10281:20;10278:47;;;-1:-1:-1;10319:4:1;10278:47;10374:2;10369:3;10365:12;10362:1;10358:20;10352:4;10348:31;10338:41;;10429:82;10447:2;10440:5;10437:13;10429:82;;;10492:17;;;10473:1;10462:13;10429:82;;;10433:3;;;9982:545;;;:::o;10703:1352::-;10829:3;10823:10;10856:18;10848:6;10845:30;10842:56;;;10878:18;;:::i;:::-;10907:97;10997:6;10957:38;10989:4;10983:11;10957:38;:::i;:::-;10951:4;10907:97;:::i;:::-;11059:4;;11123:2;11112:14;;11140:1;11135:663;;;;11842:1;11859:6;11856:89;;;-1:-1:-1;11911:19:1;;;11905:26;11856:89;-1:-1:-1;;10660:1:1;10656:11;;;10652:24;10648:29;10638:40;10684:1;10680:11;;;10635:57;11958:81;;11105:944;;11135:663;9929:1;9922:14;;;9966:4;9953:18;;-1:-1:-1;;11171:20:1;;;11289:236;11303:7;11300:1;11297:14;11289:236;;;11392:19;;;11386:26;11371:42;;11484:27;;;;11452:1;11440:14;;;;11319:19;;11289:236;;;11293:3;11553:6;11544:7;11541:19;11538:201;;;11614:19;;;11608:26;-1:-1:-1;;11697:1:1;11693:14;;;11709:3;11689:24;11685:37;11681:42;11666:58;11651:74;;11538:201;-1:-1:-1;;;;;11785:1:1;11769:14;;;11765:22;11752:36;;-1:-1:-1;10703:1352:1:o;13459:251::-;13529:6;13582:2;13570:9;13561:7;13557:23;13553:32;13550:52;;;13598:1;13595;13588:12;13550:52;13630:9;13624:16;13649:31;13674:5;13649:31;:::i;14069:127::-;14130:10;14125:3;14121:20;14118:1;14111:31;14161:4;14158:1;14151:15;14185:4;14182:1;14175:15;14201:125;14266:9;;;14287:10;;;14284:36;;;14300:18;;:::i;16382:128::-;16449:9;;;16470:11;;;16467:37;;;16484:18;;:::i;16869:414::-;17071:2;17053:21;;;17110:2;17090:18;;;17083:30;17149:34;17144:2;17129:18;;17122:62;-1:-1:-1;;;17215:2:1;17200:18;;17193:48;17273:3;17258:19;;16869:414::o;17288:489::-;-1:-1:-1;;;;;17557:15:1;;;17539:34;;17609:15;;17604:2;17589:18;;17582:43;17656:2;17641:18;;17634:34;;;17704:3;17699:2;17684:18;;17677:31;;;17482:4;;17725:46;;17751:19;;17743:6;17725:46;:::i;:::-;17717:54;17288:489;-1:-1:-1;;;;;;17288:489:1:o;17782:249::-;17851:6;17904:2;17892:9;17883:7;17879:23;17875:32;17872:52;;;17920:1;17917;17910:12;17872:52;17952:9;17946:16;17971:30;17995:5;17971:30;:::i

Swarm Source

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