ETH Price: $3,296.28 (-3.78%)
Gas: 9 Gwei

Token

CaniSpacien NFT (CaniSpacien)
 

Overview

Max Total Supply

4,444 CaniSpacien

Holders

1,647

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 CaniSpacien
0x76f2dfaad7608f5d5c6ffbdf67dc2d74c9e19ccd
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:
CaniSpacienNFT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-31
*/

// SPDX-License-Identifier: MIT

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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



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

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

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

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

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

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

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

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

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


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


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


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



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



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



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

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

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

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


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

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

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

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

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

    function incrementByValue(Counter storage counter, uint256 primaryValue) internal{
            unchecked {
            counter._value += primaryValue;
        }
    }


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

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

// File: contracts/CaniSpacien.sol



// File: @openzeppelin/contracts/utils/math/SafeMath.sol

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

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

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

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

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

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

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

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

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

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

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

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

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


function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}

function ceil(uint256 a, uint256 m) internal pure returns (uint256) {
uint256 c = add(a,m);
uint256 d = sub(c,1);
return mul(div(d,m),m);
}
}



// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721Burnable.sol)



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



// Contract CaniSpacien***********************



contract CaniSpacienNFT is ERC721, Ownable, ERC721Burnable  {
    using Counters for Counters.Counter;
    uint32 public _maximum_tokens_per_transaction;
    uint32 public _MaxTotalSupply;
    string public _baseCaniSpacienURL;
    bool public isSaleOpen;



    Counters.Counter private _tokenIdCounter;
    

    constructor() ERC721("CaniSpacien NFT", "CaniSpacien") {
    _tokenIdCounter.increment();
    _maximum_tokens_per_transaction=2;
    _MaxTotalSupply=4444;
    _baseCaniSpacienURL= "https://ipfs.io/ipfs/QmcPCk6Vgci12EcPaADbvKdc8qjeS7rS4YC65Wmxy8qXoV/";
    isSaleOpen =false;

    }

    function totalSupply()external view returns (uint256){
        uint256 total_supply = _tokenIdCounter.current();
        total_supply = total_supply-1;
        return total_supply;
    }

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

    function change_baseURL( string memory _url) public
    onlyOwner
    returns (string memory) {
        _baseCaniSpacienURL = _url;
        return _baseCaniSpacienURL;
    }

   

    function setupMainSale( bool isOpen) public
    onlyOwner
    returns (bool) {
        isSaleOpen = isOpen;

    return isSaleOpen;
    }

    function change_MaxTokensTransaction(uint32 tpt) public
    onlyOwner
    returns (uint32) {
        _maximum_tokens_per_transaction = tpt;
        return _maximum_tokens_per_transaction;
    }

    function mintToken(uint256 num) 
    public
    
     {
        require(isSaleOpen, "Currently Sale session is not enabled.");
        require(num<=_maximum_tokens_per_transaction && num > 0, "Exceeds maximum number of tokens that can be minted per transaction.");
        uint256 supply = _tokenIdCounter.current();
        require( supply + num <= _MaxTotalSupply+1, "Exceeds maximum supply for CaniSpacien tokens." ); 
        for(uint256 i; i < num; i++){
		    uint256 tokenId = _tokenIdCounter.current();
            _tokenIdCounter.increment();
		    require(!_exists(tokenId), "Token already exist.");
		   _safeMint(msg.sender, tokenId);
        }
	}

    function safeMint(uint256 num) public onlyOwner {
       //require(num<=_maximum_tokens_per_transaction && num > 0, "Exceeds maximum number of tokens that can be minted per transaction.");
        uint256 supply = _tokenIdCounter.current();
        require( supply + num <= _MaxTotalSupply+1, "Exceeds maximum supply for CaniSpacien tokens." ); 
        for(uint256 i; i < num; i++){
		    uint256 tokenId = _tokenIdCounter.current();
            _tokenIdCounter.increment();
		    require(!_exists(tokenId), "Token already exist.");
		   _safeMint(msg.sender, tokenId);

        }
    }

    function safeMintTo(address to, uint256 num) public onlyOwner {
        //require(num<=_maximum_tokens_per_transaction && num > 0, "Exceeds maximum number of tokens that can be minted per transaction.");
        uint256 supply = _tokenIdCounter.current();
        require( supply + num <= _MaxTotalSupply+1, "Exceeds maximum supply for CaniSpacien tokens." ); 
        for(uint256 i; i < num; i++){
		    uint256 tokenId = _tokenIdCounter.current();
            _tokenIdCounter.increment();
		    require(!_exists(tokenId), "Token already exist.");
        _safeMint(to, tokenId);

        }
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_MaxTotalSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseCaniSpacienURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maximum_tokens_per_transaction","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"tpt","type":"uint32"}],"name":"change_MaxTokensTransaction","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_url","type":"string"}],"name":"change_baseURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mintToken","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":"uint256","name":"num","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"num","type":"uint256"}],"name":"safeMintTo","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":"bool","name":"isOpen","type":"bool"}],"name":"setupMainSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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"}]

60806040523480156200001157600080fd5b50604080518082018252600f81526e10d85b9a54dc1858da595b88139195608a1b60208083019182528351808501909452600b84526a21b0b734a9b830b1b4b2b760a91b9084015281519192916200006c9160009162000184565b5080516200008290600190602084019062000184565b5050506200009f620000996200012560201b60201c565b62000129565b620000b660096200017b60201b620010cc1760201c565b60068054600160a01b600160e01b03191679115c000000020000000000000000000000000000000000000000179055604080516080810190915260448082526200221c60208301398051620001149160079160209091019062000184565b506008805460ff1916905562000267565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80546001019055565b82805462000192906200022a565b90600052602060002090601f016020900481019282620001b6576000855562000201565b82601f10620001d157805160ff191683800117855562000201565b8280016001018555821562000201579182015b8281111562000201578251825591602001919060010190620001e4565b506200020f92915062000213565b5090565b5b808211156200020f576000815560010162000214565b600181811c908216806200023f57607f821691505b602082108114156200026157634e487b7160e01b600052602260045260246000fd5b50919050565b611fa580620002776000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c806342966c68116100f957806395d89b4111610097578063c634d03211610071578063c634d032146103b9578063c87b56dd146103cc578063e985e9c5146103df578063f2fde38b1461041b57600080fd5b806395d89b411461038b578063a22cb46514610393578063b88d4fde146103a657600080fd5b806370a08231116100d357806370a0823114610348578063715018a61461035b57806374861ec0146103635780638da5cb5b1461037a57600080fd5b806342966c681461030b5780636352211e1461031e5780636a0e782e1461033157600080fd5b80631a081330116101665780632dae23e6116101405780632dae23e6146102ca57806331c864e8146102dd57806335b09d72146102f057806342842e0e146102f857600080fd5b80631a0813301461028257806323b872dd1461028f5780632aaed623146102a257600080fd5b8063095ea7b3116101a2578063095ea7b3146102315780631419e77b1461024657806318160ddd146102595780631907100b1461026f57600080fd5b806301ffc9a7146101c957806306fdde03146101f1578063081812fc14610206575b600080fd5b6101dc6101d7366004611b66565b61042e565b60405190151581526020015b60405180910390f35b6101f9610480565b6040516101e89190611cb8565b610219610214366004611be4565b610512565b6040516001600160a01b0390911681526020016101e8565b61024461023f366004611b23565b61059f565b005b610244610254366004611b23565b6106b5565b6102616107a5565b6040519081526020016101e8565b6101dc61027d366004611b4c565b6107be565b6008546101dc9060ff1681565b61024461029d366004611a46565b610806565b6102b56102b0366004611bfc565b610838565b60405163ffffffff90911681526020016101e8565b6101f96102d8366004611b9e565b610891565b6102446102eb366004611be4565b610964565b6101f9610a4e565b610244610306366004611a46565b610adc565b610244610319366004611be4565b610af7565b61021961032c366004611be4565b610b6f565b6006546102b590600160a01b900463ffffffff1681565b6102616103563660046119fa565b610be6565b610244610c6d565b6006546102b590600160c01b900463ffffffff1681565b6006546001600160a01b0316610219565b6101f9610ca3565b6102446103a1366004611afa565b610cb2565b6102446103b4366004611a81565b610d77565b6102446103c7366004611be4565b610da9565b6101f96103da366004611be4565b610f69565b6101dc6103ed366004611a14565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102446104293660046119fa565b611034565b60006001600160e01b031982166380ac58cd60e01b148061045f57506001600160e01b03198216635b5e139f60e01b145b8061047a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461048f90611ead565b80601f01602080910402602001604051908101604052809291908181526020018280546104bb90611ead565b80156105085780601f106104dd57610100808354040283529160200191610508565b820191906000526020600020905b8154815290600101906020018083116104eb57829003601f168201915b5050505050905090565b600061051d826110d5565b6105835760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105aa82610b6f565b9050806001600160a01b0316836001600160a01b031614156106185760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161057a565b336001600160a01b0382161480610634575061063481336103ed565b6106a65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161057a565b6106b083836110f2565b505050565b6006546001600160a01b031633146106df5760405162461bcd60e51b815260040161057a90611d6b565b60006106ea60095490565b60065490915061070890600160c01b900463ffffffff166001611e37565b63ffffffff166107188383611e1f565b11156107365760405162461bcd60e51b815260040161057a90611d1d565b60005b8281101561079f57600061074c60095490565b905061075c600980546001019055565b610765816110d5565b156107825760405162461bcd60e51b815260040161057a90611df1565b61078c8582611160565b508061079781611ee8565b915050610739565b50505050565b6000806107b160095490565b905061047a600182611e6a565b6006546000906001600160a01b031633146107eb5760405162461bcd60e51b815260040161057a90611d6b565b506008805460ff191682151590811790915560ff165b919050565b610811335b8261117e565b61082d5760405162461bcd60e51b815260040161057a90611da0565b6106b0838383611268565b6006546000906001600160a01b031633146108655760405162461bcd60e51b815260040161057a90611d6b565b506006805463ffffffff60a01b1916600160a01b63ffffffff9384168102919091179182905590041690565b6006546060906001600160a01b031633146108be5760405162461bcd60e51b815260040161057a90611d6b565b81516108d19060079060208501906118c4565b50600780546108df90611ead565b80601f016020809104026020016040519081016040528092919081815260200182805461090b90611ead565b80156109585780601f1061092d57610100808354040283529160200191610958565b820191906000526020600020905b81548152906001019060200180831161093b57829003601f168201915b50505050509050919050565b6006546001600160a01b0316331461098e5760405162461bcd60e51b815260040161057a90611d6b565b600061099960095490565b6006549091506109b790600160c01b900463ffffffff166001611e37565b63ffffffff166109c78383611e1f565b11156109e55760405162461bcd60e51b815260040161057a90611d1d565b60005b828110156106b05760006109fb60095490565b9050610a0b600980546001019055565b610a14816110d5565b15610a315760405162461bcd60e51b815260040161057a90611df1565b610a3b3382611160565b5080610a4681611ee8565b9150506109e8565b60078054610a5b90611ead565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8790611ead565b8015610ad45780601f10610aa957610100808354040283529160200191610ad4565b820191906000526020600020905b815481529060010190602001808311610ab757829003601f168201915b505050505081565b6106b083838360405180602001604052806000815250610d77565b610b003361080b565b610b635760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526d1c881b9bdc88185c1c1c9bdd995960921b606482015260840161057a565b610b6c81611408565b50565b6000818152600260205260408120546001600160a01b03168061047a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161057a565b60006001600160a01b038216610c515760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161057a565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610c975760405162461bcd60e51b815260040161057a90611d6b565b610ca160006114a3565b565b60606001805461048f90611ead565b6001600160a01b038216331415610d0b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161057a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d81338361117e565b610d9d5760405162461bcd60e51b815260040161057a90611da0565b61079f848484846114f5565b60085460ff16610e0a5760405162461bcd60e51b815260206004820152602660248201527f43757272656e746c792053616c652073657373696f6e206973206e6f7420656e60448201526530b13632b21760d11b606482015260840161057a565b600654600160a01b900463ffffffff168111801590610e295750600081115b610ea95760405162461bcd60e51b8152602060048201526044602482018190527f45786365656473206d6178696d756d206e756d626572206f6620746f6b656e73908201527f20746861742063616e206265206d696e74656420706572207472616e7361637460648201526334b7b71760e11b608482015260a40161057a565b6000610eb460095490565b600654909150610ed290600160c01b900463ffffffff166001611e37565b63ffffffff16610ee28383611e1f565b1115610f005760405162461bcd60e51b815260040161057a90611d1d565b60005b828110156106b0576000610f1660095490565b9050610f26600980546001019055565b610f2f816110d5565b15610f4c5760405162461bcd60e51b815260040161057a90611df1565b610f563382611160565b5080610f6181611ee8565b915050610f03565b6060610f74826110d5565b610fd85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161057a565b6000610fe2611528565b90506000815111611002576040518060200160405280600081525061102d565b8061100c84611537565b60405160200161101d929190611c4c565b6040516020818303038152906040525b9392505050565b6006546001600160a01b0316331461105e5760405162461bcd60e51b815260040161057a90611d6b565b6001600160a01b0381166110c35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161057a565b610b6c816114a3565b80546001019055565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061112782610b6f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61117a828260405180602001604052806000815250611651565b5050565b6000611189826110d5565b6111ea5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161057a565b60006111f583610b6f565b9050806001600160a01b0316846001600160a01b031614806112305750836001600160a01b031661122584610512565b6001600160a01b0316145b8061126057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661127b82610b6f565b6001600160a01b0316146112e35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161057a565b6001600160a01b0382166113455760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161057a565b6113506000826110f2565b6001600160a01b0383166000908152600360205260408120805460019290611379908490611e6a565b90915550506001600160a01b03821660009081526003602052604081208054600192906113a7908490611e1f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061141382610b6f565b90506114206000836110f2565b6001600160a01b0381166000908152600360205260408120805460019290611449908490611e6a565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611500848484611268565b61150c84848484611684565b61079f5760405162461bcd60e51b815260040161057a90611ccb565b60606007805461048f90611ead565b60608161155b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611585578061156f81611ee8565b915061157e9050600a83611e56565b915061155f565b60008167ffffffffffffffff8111156115ae57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156115d8576020820181803683370190505b5090505b8415611260576115ed600183611e6a565b91506115fa600a86611f03565b611605906030611e1f565b60f81b81838151811061162857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061164a600a86611e56565b94506115dc565b61165b8383611791565b6116686000848484611684565b6106b05760405162461bcd60e51b815260040161057a90611ccb565b60006001600160a01b0384163b1561178657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116c8903390899088908890600401611c7b565b602060405180830381600087803b1580156116e257600080fd5b505af1925050508015611712575060408051601f3d908101601f1916820190925261170f91810190611b82565b60015b61176c573d808015611740576040519150601f19603f3d011682016040523d82523d6000602084013e611745565b606091505b5080516117645760405162461bcd60e51b815260040161057a90611ccb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611260565b506001949350505050565b6001600160a01b0382166117e75760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161057a565b6117f0816110d5565b1561183d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161057a565b6001600160a01b0382166000908152600360205260408120805460019290611866908490611e1f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546118d090611ead565b90600052602060002090601f0160209004810192826118f25760008555611938565b82601f1061190b57805160ff1916838001178555611938565b82800160010185558215611938579182015b8281111561193857825182559160200191906001019061191d565b50611944929150611948565b5090565b5b808211156119445760008155600101611949565b600067ffffffffffffffff8084111561197857611978611f43565b604051601f8501601f19908116603f011681019082821181831017156119a0576119a0611f43565b816040528093508581528686860111156119b957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461080157600080fd5b8035801515811461080157600080fd5b600060208284031215611a0b578081fd5b61102d826119d3565b60008060408385031215611a26578081fd5b611a2f836119d3565b9150611a3d602084016119d3565b90509250929050565b600080600060608486031215611a5a578081fd5b611a63846119d3565b9250611a71602085016119d3565b9150604084013590509250925092565b60008060008060808587031215611a96578081fd5b611a9f856119d3565b9350611aad602086016119d3565b925060408501359150606085013567ffffffffffffffff811115611acf578182fd5b8501601f81018713611adf578182fd5b611aee8782356020840161195d565b91505092959194509250565b60008060408385031215611b0c578182fd5b611b15836119d3565b9150611a3d602084016119ea565b60008060408385031215611b35578182fd5b611b3e836119d3565b946020939093013593505050565b600060208284031215611b5d578081fd5b61102d826119ea565b600060208284031215611b77578081fd5b813561102d81611f59565b600060208284031215611b93578081fd5b815161102d81611f59565b600060208284031215611baf578081fd5b813567ffffffffffffffff811115611bc5578182fd5b8201601f81018413611bd5578182fd5b6112608482356020840161195d565b600060208284031215611bf5578081fd5b5035919050565b600060208284031215611c0d578081fd5b813563ffffffff8116811461102d578182fd5b60008151808452611c38816020860160208601611e81565b601f01601f19169290920160200192915050565b60008351611c5e818460208801611e81565b835190830190611c72818360208801611e81565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cae90830184611c20565b9695505050505050565b60208152600061102d6020830184611c20565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602e908201527f45786365656473206d6178696d756d20737570706c7920666f722043616e695360408201526d3830b1b4b2b7103a37b5b2b7399760911b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601490820152732a37b5b2b71030b63932b0b23c9032bc34b9ba1760611b604082015260600190565b60008219821115611e3257611e32611f17565b500190565b600063ffffffff808316818516808303821115611c7257611c72611f17565b600082611e6557611e65611f2d565b500490565b600082821015611e7c57611e7c611f17565b500390565b60005b83811015611e9c578181015183820152602001611e84565b8381111561079f5750506000910152565b600181811c90821680611ec157607f821691505b60208210811415611ee257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611efc57611efc611f17565b5060010190565b600082611f1257611f12611f2d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b6c57600080fdfea264697066735822122067fc2fbb54765141035985c6e7636b2cfeebe8fd3118f856dbda5e9ddfa0557464736f6c6343000804003368747470733a2f2f697066732e696f2f697066732f516d6350436b3656676369313245635061414462764b646338716a65533772533459433635576d78793871586f562f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c806342966c68116100f957806395d89b4111610097578063c634d03211610071578063c634d032146103b9578063c87b56dd146103cc578063e985e9c5146103df578063f2fde38b1461041b57600080fd5b806395d89b411461038b578063a22cb46514610393578063b88d4fde146103a657600080fd5b806370a08231116100d357806370a0823114610348578063715018a61461035b57806374861ec0146103635780638da5cb5b1461037a57600080fd5b806342966c681461030b5780636352211e1461031e5780636a0e782e1461033157600080fd5b80631a081330116101665780632dae23e6116101405780632dae23e6146102ca57806331c864e8146102dd57806335b09d72146102f057806342842e0e146102f857600080fd5b80631a0813301461028257806323b872dd1461028f5780632aaed623146102a257600080fd5b8063095ea7b3116101a2578063095ea7b3146102315780631419e77b1461024657806318160ddd146102595780631907100b1461026f57600080fd5b806301ffc9a7146101c957806306fdde03146101f1578063081812fc14610206575b600080fd5b6101dc6101d7366004611b66565b61042e565b60405190151581526020015b60405180910390f35b6101f9610480565b6040516101e89190611cb8565b610219610214366004611be4565b610512565b6040516001600160a01b0390911681526020016101e8565b61024461023f366004611b23565b61059f565b005b610244610254366004611b23565b6106b5565b6102616107a5565b6040519081526020016101e8565b6101dc61027d366004611b4c565b6107be565b6008546101dc9060ff1681565b61024461029d366004611a46565b610806565b6102b56102b0366004611bfc565b610838565b60405163ffffffff90911681526020016101e8565b6101f96102d8366004611b9e565b610891565b6102446102eb366004611be4565b610964565b6101f9610a4e565b610244610306366004611a46565b610adc565b610244610319366004611be4565b610af7565b61021961032c366004611be4565b610b6f565b6006546102b590600160a01b900463ffffffff1681565b6102616103563660046119fa565b610be6565b610244610c6d565b6006546102b590600160c01b900463ffffffff1681565b6006546001600160a01b0316610219565b6101f9610ca3565b6102446103a1366004611afa565b610cb2565b6102446103b4366004611a81565b610d77565b6102446103c7366004611be4565b610da9565b6101f96103da366004611be4565b610f69565b6101dc6103ed366004611a14565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102446104293660046119fa565b611034565b60006001600160e01b031982166380ac58cd60e01b148061045f57506001600160e01b03198216635b5e139f60e01b145b8061047a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461048f90611ead565b80601f01602080910402602001604051908101604052809291908181526020018280546104bb90611ead565b80156105085780601f106104dd57610100808354040283529160200191610508565b820191906000526020600020905b8154815290600101906020018083116104eb57829003601f168201915b5050505050905090565b600061051d826110d5565b6105835760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105aa82610b6f565b9050806001600160a01b0316836001600160a01b031614156106185760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161057a565b336001600160a01b0382161480610634575061063481336103ed565b6106a65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161057a565b6106b083836110f2565b505050565b6006546001600160a01b031633146106df5760405162461bcd60e51b815260040161057a90611d6b565b60006106ea60095490565b60065490915061070890600160c01b900463ffffffff166001611e37565b63ffffffff166107188383611e1f565b11156107365760405162461bcd60e51b815260040161057a90611d1d565b60005b8281101561079f57600061074c60095490565b905061075c600980546001019055565b610765816110d5565b156107825760405162461bcd60e51b815260040161057a90611df1565b61078c8582611160565b508061079781611ee8565b915050610739565b50505050565b6000806107b160095490565b905061047a600182611e6a565b6006546000906001600160a01b031633146107eb5760405162461bcd60e51b815260040161057a90611d6b565b506008805460ff191682151590811790915560ff165b919050565b610811335b8261117e565b61082d5760405162461bcd60e51b815260040161057a90611da0565b6106b0838383611268565b6006546000906001600160a01b031633146108655760405162461bcd60e51b815260040161057a90611d6b565b506006805463ffffffff60a01b1916600160a01b63ffffffff9384168102919091179182905590041690565b6006546060906001600160a01b031633146108be5760405162461bcd60e51b815260040161057a90611d6b565b81516108d19060079060208501906118c4565b50600780546108df90611ead565b80601f016020809104026020016040519081016040528092919081815260200182805461090b90611ead565b80156109585780601f1061092d57610100808354040283529160200191610958565b820191906000526020600020905b81548152906001019060200180831161093b57829003601f168201915b50505050509050919050565b6006546001600160a01b0316331461098e5760405162461bcd60e51b815260040161057a90611d6b565b600061099960095490565b6006549091506109b790600160c01b900463ffffffff166001611e37565b63ffffffff166109c78383611e1f565b11156109e55760405162461bcd60e51b815260040161057a90611d1d565b60005b828110156106b05760006109fb60095490565b9050610a0b600980546001019055565b610a14816110d5565b15610a315760405162461bcd60e51b815260040161057a90611df1565b610a3b3382611160565b5080610a4681611ee8565b9150506109e8565b60078054610a5b90611ead565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8790611ead565b8015610ad45780601f10610aa957610100808354040283529160200191610ad4565b820191906000526020600020905b815481529060010190602001808311610ab757829003601f168201915b505050505081565b6106b083838360405180602001604052806000815250610d77565b610b003361080b565b610b635760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526d1c881b9bdc88185c1c1c9bdd995960921b606482015260840161057a565b610b6c81611408565b50565b6000818152600260205260408120546001600160a01b03168061047a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161057a565b60006001600160a01b038216610c515760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161057a565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610c975760405162461bcd60e51b815260040161057a90611d6b565b610ca160006114a3565b565b60606001805461048f90611ead565b6001600160a01b038216331415610d0b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161057a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d81338361117e565b610d9d5760405162461bcd60e51b815260040161057a90611da0565b61079f848484846114f5565b60085460ff16610e0a5760405162461bcd60e51b815260206004820152602660248201527f43757272656e746c792053616c652073657373696f6e206973206e6f7420656e60448201526530b13632b21760d11b606482015260840161057a565b600654600160a01b900463ffffffff168111801590610e295750600081115b610ea95760405162461bcd60e51b8152602060048201526044602482018190527f45786365656473206d6178696d756d206e756d626572206f6620746f6b656e73908201527f20746861742063616e206265206d696e74656420706572207472616e7361637460648201526334b7b71760e11b608482015260a40161057a565b6000610eb460095490565b600654909150610ed290600160c01b900463ffffffff166001611e37565b63ffffffff16610ee28383611e1f565b1115610f005760405162461bcd60e51b815260040161057a90611d1d565b60005b828110156106b0576000610f1660095490565b9050610f26600980546001019055565b610f2f816110d5565b15610f4c5760405162461bcd60e51b815260040161057a90611df1565b610f563382611160565b5080610f6181611ee8565b915050610f03565b6060610f74826110d5565b610fd85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161057a565b6000610fe2611528565b90506000815111611002576040518060200160405280600081525061102d565b8061100c84611537565b60405160200161101d929190611c4c565b6040516020818303038152906040525b9392505050565b6006546001600160a01b0316331461105e5760405162461bcd60e51b815260040161057a90611d6b565b6001600160a01b0381166110c35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161057a565b610b6c816114a3565b80546001019055565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061112782610b6f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61117a828260405180602001604052806000815250611651565b5050565b6000611189826110d5565b6111ea5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161057a565b60006111f583610b6f565b9050806001600160a01b0316846001600160a01b031614806112305750836001600160a01b031661122584610512565b6001600160a01b0316145b8061126057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661127b82610b6f565b6001600160a01b0316146112e35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161057a565b6001600160a01b0382166113455760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161057a565b6113506000826110f2565b6001600160a01b0383166000908152600360205260408120805460019290611379908490611e6a565b90915550506001600160a01b03821660009081526003602052604081208054600192906113a7908490611e1f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061141382610b6f565b90506114206000836110f2565b6001600160a01b0381166000908152600360205260408120805460019290611449908490611e6a565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611500848484611268565b61150c84848484611684565b61079f5760405162461bcd60e51b815260040161057a90611ccb565b60606007805461048f90611ead565b60608161155b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611585578061156f81611ee8565b915061157e9050600a83611e56565b915061155f565b60008167ffffffffffffffff8111156115ae57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156115d8576020820181803683370190505b5090505b8415611260576115ed600183611e6a565b91506115fa600a86611f03565b611605906030611e1f565b60f81b81838151811061162857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061164a600a86611e56565b94506115dc565b61165b8383611791565b6116686000848484611684565b6106b05760405162461bcd60e51b815260040161057a90611ccb565b60006001600160a01b0384163b1561178657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116c8903390899088908890600401611c7b565b602060405180830381600087803b1580156116e257600080fd5b505af1925050508015611712575060408051601f3d908101601f1916820190925261170f91810190611b82565b60015b61176c573d808015611740576040519150601f19603f3d011682016040523d82523d6000602084013e611745565b606091505b5080516117645760405162461bcd60e51b815260040161057a90611ccb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611260565b506001949350505050565b6001600160a01b0382166117e75760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161057a565b6117f0816110d5565b1561183d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161057a565b6001600160a01b0382166000908152600360205260408120805460019290611866908490611e1f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546118d090611ead565b90600052602060002090601f0160209004810192826118f25760008555611938565b82601f1061190b57805160ff1916838001178555611938565b82800160010185558215611938579182015b8281111561193857825182559160200191906001019061191d565b50611944929150611948565b5090565b5b808211156119445760008155600101611949565b600067ffffffffffffffff8084111561197857611978611f43565b604051601f8501601f19908116603f011681019082821181831017156119a0576119a0611f43565b816040528093508581528686860111156119b957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461080157600080fd5b8035801515811461080157600080fd5b600060208284031215611a0b578081fd5b61102d826119d3565b60008060408385031215611a26578081fd5b611a2f836119d3565b9150611a3d602084016119d3565b90509250929050565b600080600060608486031215611a5a578081fd5b611a63846119d3565b9250611a71602085016119d3565b9150604084013590509250925092565b60008060008060808587031215611a96578081fd5b611a9f856119d3565b9350611aad602086016119d3565b925060408501359150606085013567ffffffffffffffff811115611acf578182fd5b8501601f81018713611adf578182fd5b611aee8782356020840161195d565b91505092959194509250565b60008060408385031215611b0c578182fd5b611b15836119d3565b9150611a3d602084016119ea565b60008060408385031215611b35578182fd5b611b3e836119d3565b946020939093013593505050565b600060208284031215611b5d578081fd5b61102d826119ea565b600060208284031215611b77578081fd5b813561102d81611f59565b600060208284031215611b93578081fd5b815161102d81611f59565b600060208284031215611baf578081fd5b813567ffffffffffffffff811115611bc5578182fd5b8201601f81018413611bd5578182fd5b6112608482356020840161195d565b600060208284031215611bf5578081fd5b5035919050565b600060208284031215611c0d578081fd5b813563ffffffff8116811461102d578182fd5b60008151808452611c38816020860160208601611e81565b601f01601f19169290920160200192915050565b60008351611c5e818460208801611e81565b835190830190611c72818360208801611e81565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cae90830184611c20565b9695505050505050565b60208152600061102d6020830184611c20565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602e908201527f45786365656473206d6178696d756d20737570706c7920666f722043616e695360408201526d3830b1b4b2b7103a37b5b2b7399760911b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601490820152732a37b5b2b71030b63932b0b23c9032bc34b9ba1760611b604082015260600190565b60008219821115611e3257611e32611f17565b500190565b600063ffffffff808316818516808303821115611c7257611c72611f17565b600082611e6557611e65611f2d565b500490565b600082821015611e7c57611e7c611f17565b500390565b60005b83811015611e9c578181015183820152602001611e84565b8381111561079f5750506000910152565b600181811c90821680611ec157607f821691505b60208210811415611ee257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611efc57611efc611f17565b5060010190565b600082611f1257611f12611f2d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b6c57600080fdfea264697066735822122067fc2fbb54765141035985c6e7636b2cfeebe8fd3118f856dbda5e9ddfa0557464736f6c63430008040033

Deployed Bytecode Sourcemap

44340:3393:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22677:293;;;;;;:::i;:::-;;:::i;:::-;;;6354:14:1;;6347:22;6329:41;;6317:2;6302:18;22677:293:0;;;;;;;;23610:100;;;:::i;:::-;;;;;;;:::i;25169:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5652:32:1;;;5634:51;;5622:2;5607:18;25169:221:0;5589:102:1;24692:411:0;;;;;;:::i;:::-;;:::i;:::-;;47118:608;;;;;;:::i;:::-;;:::i;44963:190::-;;;:::i;:::-;;;15196:25:1;;;15184:2;15169:18;44963:190:0;15151:76:1;45474:143:0;;;;;;:::i;:::-;;:::i;44577:22::-;;;;;;;;;26059:339;;;;;;:::i;:::-;;:::i;45625:198::-;;;;;;:::i;:::-;;:::i;:::-;;;15406:10:1;15394:23;;;15376:42;;15364:2;15349:18;45625:198:0;15331:93:1;45281:178:0;;;;;;:::i;:::-;;:::i;46512:598::-;;;;;;:::i;:::-;;:::i;44537:33::-;;;:::i;26469:185::-;;;;;;:::i;:::-;;:::i;44032:243::-;;;;;;:::i;:::-;;:::i;23304:239::-;;;;;;:::i;:::-;;:::i;44449:45::-;;;;;-1:-1:-1;;;44449:45:0;;;;;;23034:208;;;;;;:::i;:::-;;:::i;4529:94::-;;;:::i;44501:29::-;;;;;-1:-1:-1;;;44501:29:0;;;;;;3878:87;3951:6;;-1:-1:-1;;;;;3951:6:0;3878:87;;23779:104;;;:::i;25462:295::-;;;;;;:::i;:::-;;:::i;26725:328::-;;;;;;:::i;:::-;;:::i;45831:673::-;;;;;;:::i;:::-;;:::i;23954:334::-;;;;;;:::i;:::-;;:::i;25828:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;25949:25:0;;;25925:4;25949:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25828:164;4778:192;;;;;;:::i;:::-;;:::i;22677:293::-;22779:4;-1:-1:-1;;;;;;22812:40:0;;-1:-1:-1;;;22812:40:0;;:101;;-1:-1:-1;;;;;;;22865:48:0;;-1:-1:-1;;;22865:48:0;22812:101;:150;;;-1:-1:-1;;;;;;;;;;15857:40:0;;;22926:36;22796:166;22677:293;-1:-1:-1;;22677:293:0:o;23610:100::-;23664:13;23697:5;23690:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23610:100;:::o;25169:221::-;25245:7;25273:16;25281:7;25273;:16::i;:::-;25265:73;;;;-1:-1:-1;;;25265:73:0;;11591:2:1;25265:73:0;;;11573:21:1;11630:2;11610:18;;;11603:30;11669:34;11649:18;;;11642:62;-1:-1:-1;;;11720:18:1;;;11713:42;11772:19;;25265:73:0;;;;;;;;;-1:-1:-1;25358:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25358:24:0;;25169:221::o;24692:411::-;24773:13;24789:23;24804:7;24789:14;:23::i;:::-;24773:39;;24837:5;-1:-1:-1;;;;;24831:11:0;:2;-1:-1:-1;;;;;24831:11:0;;;24823:57;;;;-1:-1:-1;;;24823:57:0;;13191:2:1;24823:57:0;;;13173:21:1;13230:2;13210:18;;;13203:30;13269:34;13249:18;;;13242:62;-1:-1:-1;;;13320:18:1;;;13313:31;13361:19;;24823:57:0;13163:223:1;24823:57:0;2775:10;-1:-1:-1;;;;;24915:21:0;;;;:62;;-1:-1:-1;24940:37:0;24957:5;2775:10;25828:164;:::i;24940:37::-;24893:168;;;;-1:-1:-1;;;24893:168:0;;9984:2:1;24893:168:0;;;9966:21:1;10023:2;10003:18;;;9996:30;10062:34;10042:18;;;10035:62;10133:26;10113:18;;;10106:54;10177:19;;24893:168:0;9956:246:1;24893:168:0;25074:21;25083:2;25087:7;25074:8;:21::i;:::-;24692:411;;;:::o;47118:608::-;3951:6;;-1:-1:-1;;;;;3951:6:0;2775:10;4098:23;4090:68;;;;-1:-1:-1;;;4090:68:0;;;;;;;:::i;:::-;47332:14:::1;47349:25;:15;37557:14:::0;;37465:114;47349:25:::1;47410:15;::::0;47332:42;;-1:-1:-1;47410:17:0::1;::::0;-1:-1:-1;;;47410:15:0;::::1;;;47426:1;47410:17;:::i;:::-;47394:33;;:12;47403:3:::0;47394:6;:12:::1;:::i;:::-;:33;;47385:94;;;;-1:-1:-1::0;;;47385:94:0::1;;;;;;;:::i;:::-;47495:9;47491:228;47510:3;47506:1;:7;47491:228;;;47528:15;47546:25;:15;37557:14:::0;;37465:114;47546:25:::1;47528:43;;47586:27;:15;37672:19:::0;;37690:1;37672:19;;;37587:121;47586:27:::1;47631:16;47639:7;47631;:16::i;:::-;47630:17;47622:50;;;;-1:-1:-1::0;;;47622:50:0::1;;;;;;;:::i;:::-;47683:22;47693:2;47697:7;47683:9;:22::i;:::-;-1:-1:-1::0;47515:3:0;::::1;::::0;::::1;:::i;:::-;;;;47491:228;;;;4169:1;47118:608:::0;;:::o;44963:190::-;45008:7;45027:20;45050:25;:15;37557:14;;37465:114;45050:25;45027:48;-1:-1:-1;45101:14:0;45114:1;45027:48;45101:14;:::i;45474:143::-;3951:6;;45547:4;;-1:-1:-1;;;;;3951:6:0;2775:10;4098:23;4090:68;;;;-1:-1:-1;;;4090:68:0;;;;;;;:::i;:::-;-1:-1:-1;45564:10:0::1;:19:::0;;-1:-1:-1;;45564:19:0::1;::::0;::::1;;::::0;;::::1;::::0;;;::::1;45599:10:::0;4169:1:::1;45474:143:::0;;;:::o;26059:339::-;26254:41;2775:10;26273:12;26287:7;26254:18;:41::i;:::-;26246:103;;;;-1:-1:-1;;;26246:103:0;;;;;;;:::i;:::-;26362:28;26372:4;26378:2;26382:7;26362:9;:28::i;45625:198::-;3951:6;;45710;;-1:-1:-1;;;;;3951:6:0;2775:10;4098:23;4090:68;;;;-1:-1:-1;;;4090:68:0;;;;;;;:::i;:::-;-1:-1:-1;45729:31:0::1;:37:::0;;-1:-1:-1;;;;45729:37:0::1;-1:-1:-1::0;;;45729:37:0::1;::::0;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;;45784:31;::::1;;::::0;45625:198::o;45281:178::-;3951:6;;45362:13;;-1:-1:-1;;;;;3951:6:0;2775:10;4098:23;4090:68;;;;-1:-1:-1;;;4090:68:0;;;;;;;:::i;:::-;45388:26;;::::1;::::0;:19:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45432:19;45425:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45281:178:::0;;;:::o;46512:598::-;3951:6;;-1:-1:-1;;;;;3951:6:0;2775:10;4098:23;4090:68;;;;-1:-1:-1;;;4090:68:0;;;;;;;:::i;:::-;46711:14:::1;46728:25;:15;37557:14:::0;;37465:114;46728:25:::1;46789:15;::::0;46711:42;;-1:-1:-1;46789:17:0::1;::::0;-1:-1:-1;;;46789:15:0;::::1;;;46805:1;46789:17;:::i;:::-;46773:33;;:12;46782:3:::0;46773:6;:12:::1;:::i;:::-;:33;;46764:94;;;;-1:-1:-1::0;;;46764:94:0::1;;;;;;;:::i;:::-;46874:9;46870:233;46889:3;46885:1;:7;46870:233;;;46907:15;46925:25;:15;37557:14:::0;;37465:114;46925:25:::1;46907:43;;46965:27;:15;37672:19:::0;;37690:1;37672:19;;;37587:121;46965:27:::1;47010:16;47018:7;47010;:16::i;:::-;47009:17;47001:50;;;;-1:-1:-1::0;;;47001:50:0::1;;;;;;;:::i;:::-;47059:30;47069:10;47081:7;47059:9;:30::i;:::-;-1:-1:-1::0;46894:3:0;::::1;::::0;::::1;:::i;:::-;;;;46870:233;;44537:33:::0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26469:185::-;26607:39;26624:4;26630:2;26634:7;26607:39;;;;;;;;;;;;:16;:39::i;44032:243::-;44150:41;2775:10;44169:12;2695:98;44150:41;44142:100;;;;-1:-1:-1;;;44142:100:0;;14837:2:1;44142:100:0;;;14819:21:1;14876:2;14856:18;;;14849:30;14915:34;14895:18;;;14888:62;-1:-1:-1;;;14966:18:1;;;14959:44;15020:19;;44142:100:0;14809:236:1;44142:100:0;44253:14;44259:7;44253:5;:14::i;:::-;44032:243;:::o;23304:239::-;23376:7;23412:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23412:16:0;23447:19;23439:73;;;;-1:-1:-1;;;23439:73:0;;10820:2:1;23439:73:0;;;10802:21:1;10859:2;10839:18;;;10832:30;10898:34;10878:18;;;10871:62;-1:-1:-1;;;10949:18:1;;;10942:39;10998:19;;23439:73:0;10792:231:1;23034:208:0;23106:7;-1:-1:-1;;;;;23134:19:0;;23126:74;;;;-1:-1:-1;;;23126:74:0;;10409:2:1;23126:74:0;;;10391:21:1;10448:2;10428:18;;;10421:30;10487:34;10467:18;;;10460:62;-1:-1:-1;;;10538:18:1;;;10531:40;10588:19;;23126:74:0;10381:232:1;23126:74:0;-1:-1:-1;;;;;;23218:16:0;;;;;:9;:16;;;;;;;23034:208::o;4529:94::-;3951:6;;-1:-1:-1;;;;;3951:6:0;2775:10;4098:23;4090:68;;;;-1:-1:-1;;;4090:68:0;;;;;;;:::i;:::-;4594:21:::1;4612:1;4594:9;:21::i;:::-;4529:94::o:0;23779:104::-;23835:13;23868:7;23861:14;;;;;:::i;25462:295::-;-1:-1:-1;;;;;25565:24:0;;2775:10;25565:24;;25557:62;;;;-1:-1:-1;;;25557:62:0;;8802:2:1;25557:62:0;;;8784:21:1;8841:2;8821:18;;;8814:30;8880:27;8860:18;;;8853:55;8925:18;;25557:62:0;8774:175:1;25557:62:0;2775:10;25632:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25632:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25632:53:0;;;;;;;;;;25701:48;;6329:41:1;;;25632:42:0;;2775:10;25701:48;;6302:18:1;25701:48:0;;;;;;;25462:295;;:::o;26725:328::-;26900:41;2775:10;26933:7;26900:18;:41::i;:::-;26892:103;;;;-1:-1:-1;;;26892:103:0;;;;;;;:::i;:::-;27006:39;27020:4;27026:2;27030:7;27039:5;27006:13;:39::i;45831:673::-;45907:10;;;;45899:61;;;;-1:-1:-1;;;45899:61:0;;7990:2:1;45899:61:0;;;7972:21:1;8029:2;8009:18;;;8002:30;8068:34;8048:18;;;8041:62;-1:-1:-1;;;8119:18:1;;;8112:36;8165:19;;45899:61:0;7962:228:1;45899:61:0;45984:31;;-1:-1:-1;;;45984:31:0;;;;45979:36;;;;;:47;;;46025:1;46019:3;:7;45979:47;45971:128;;;;-1:-1:-1;;;45971:128:0;;14360:2:1;45971:128:0;;;14342:21:1;14399:2;14379:18;;;14372:30;;;14438:34;14418:18;;;14411:62;14509:34;14489:18;;;14482:62;-1:-1:-1;;;14560:19:1;;;14553:35;14605:19;;45971:128:0;14332:298:1;45971:128:0;46110:14;46127:25;:15;37557:14;;37465:114;46127:25;46188:15;;46110:42;;-1:-1:-1;46188:17:0;;-1:-1:-1;;;46188:15:0;;;;46204:1;46188:17;:::i;:::-;46172:33;;:12;46181:3;46172:6;:12;:::i;:::-;:33;;46163:94;;;;-1:-1:-1;;;46163:94:0;;;;;;;:::i;:::-;46273:9;46269:231;46288:3;46284:1;:7;46269:231;;;46306:15;46324:25;:15;37557:14;;37465:114;46324:25;46306:43;;46364:27;:15;37672:19;;37690:1;37672:19;;;37587:121;46364:27;46409:16;46417:7;46409;:16::i;:::-;46408:17;46400:50;;;;-1:-1:-1;;;46400:50:0;;;;;;;:::i;:::-;46458:30;46468:10;46480:7;46458:9;:30::i;:::-;-1:-1:-1;46293:3:0;;;;:::i;:::-;;;;46269:231;;23954:334;24027:13;24061:16;24069:7;24061;:16::i;:::-;24053:76;;;;-1:-1:-1;;;24053:76:0;;12775:2:1;24053:76:0;;;12757:21:1;12814:2;12794:18;;;12787:30;12853:34;12833:18;;;12826:62;-1:-1:-1;;;12904:18:1;;;12897:45;12959:19;;24053:76:0;12747:237:1;24053:76:0;24142:21;24166:10;:8;:10::i;:::-;24142:34;;24218:1;24200:7;24194:21;:25;:86;;;;;;;;;;;;;;;;;24246:7;24255:18;:7;:16;:18::i;:::-;24229:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24194:86;24187:93;23954:334;-1:-1:-1;;;23954:334:0:o;4778:192::-;3951:6;;-1:-1:-1;;;;;3951:6:0;2775:10;4098:23;4090:68;;;;-1:-1:-1;;;4090:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4867:22:0;::::1;4859:73;;;::::0;-1:-1:-1;;;4859:73:0;;7226:2:1;4859:73:0::1;::::0;::::1;7208:21:1::0;7265:2;7245:18;;;7238:30;7304:34;7284:18;;;7277:62;-1:-1:-1;;;7355:18:1;;;7348:36;7401:19;;4859:73:0::1;7198:228:1::0;4859:73:0::1;4943:19;4953:8;4943:9;:19::i;37587:121::-:0;37672:19;;37690:1;37672:19;;;37587:121::o;28563:127::-;28628:4;28652:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28652:16:0;:30;;;28563:127::o;32545:174::-;32620:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32620:29:0;-1:-1:-1;;;;;32620:29:0;;;;;;;;:24;;32674:23;32620:24;32674:14;:23::i;:::-;-1:-1:-1;;;;;32665:46:0;;;;;;;;;;;32545:174;;:::o;29547:110::-;29623:26;29633:2;29637:7;29623:26;;;;;;;;;;;;:9;:26::i;:::-;29547:110;;:::o;28857:348::-;28950:4;28975:16;28983:7;28975;:16::i;:::-;28967:73;;;;-1:-1:-1;;;28967:73:0;;9571:2:1;28967:73:0;;;9553:21:1;9610:2;9590:18;;;9583:30;9649:34;9629:18;;;9622:62;-1:-1:-1;;;9700:18:1;;;9693:42;9752:19;;28967:73:0;9543:234:1;28967:73:0;29051:13;29067:23;29082:7;29067:14;:23::i;:::-;29051:39;;29120:5;-1:-1:-1;;;;;29109:16:0;:7;-1:-1:-1;;;;;29109:16:0;;:51;;;;29153:7;-1:-1:-1;;;;;29129:31:0;:20;29141:7;29129:11;:20::i;:::-;-1:-1:-1;;;;;29129:31:0;;29109:51;:87;;;-1:-1:-1;;;;;;25949:25:0;;;25925:4;25949:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29164:32;29101:96;28857:348;-1:-1:-1;;;;28857:348:0:o;31849:578::-;32008:4;-1:-1:-1;;;;;31981:31:0;:23;31996:7;31981:14;:23::i;:::-;-1:-1:-1;;;;;31981:31:0;;31973:85;;;;-1:-1:-1;;;31973:85:0;;12365:2:1;31973:85:0;;;12347:21:1;12404:2;12384:18;;;12377:30;12443:34;12423:18;;;12416:62;-1:-1:-1;;;12494:18:1;;;12487:39;12543:19;;31973:85:0;12337:231:1;31973:85:0;-1:-1:-1;;;;;32077:16:0;;32069:65;;;;-1:-1:-1;;;32069:65:0;;8397:2:1;32069:65:0;;;8379:21:1;8436:2;8416:18;;;8409:30;8475:34;8455:18;;;8448:62;-1:-1:-1;;;8526:18:1;;;8519:34;8570:19;;32069:65:0;8369:226:1;32069:65:0;32251:29;32268:1;32272:7;32251:8;:29::i;:::-;-1:-1:-1;;;;;32293:15:0;;;;;;:9;:15;;;;;:20;;32312:1;;32293:15;:20;;32312:1;;32293:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32324:13:0;;;;;;:9;:13;;;;;:18;;32341:1;;32324:13;:18;;32341:1;;32324:18;:::i;:::-;;;;-1:-1:-1;;32353:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32353:21:0;-1:-1:-1;;;;;32353:21:0;;;;;;;;;32392:27;;32353:16;;32392:27;;;;;;;31849:578;;;:::o;31152:360::-;31212:13;31228:23;31243:7;31228:14;:23::i;:::-;31212:39;;31353:29;31370:1;31374:7;31353:8;:29::i;:::-;-1:-1:-1;;;;;31395:16:0;;;;;;:9;:16;;;;;:21;;31415:1;;31395:16;:21;;31415:1;;31395:21;:::i;:::-;;;;-1:-1:-1;;31434:16:0;;;;:7;:16;;;;;;31427:23;;-1:-1:-1;;;;;;31427:23:0;;;31468:36;31442:7;;31434:16;-1:-1:-1;;;;;31468:36:0;;;;;31434:16;;31468:36;31152:360;;:::o;4978:173::-;5053:6;;;-1:-1:-1;;;;;5070:17:0;;;-1:-1:-1;;;;;;5070:17:0;;;;;;;5103:40;;5053:6;;;5070:17;5053:6;;5103:40;;5034:16;;5103:40;4978:173;;:::o;27935:315::-;28092:28;28102:4;28108:2;28112:7;28092:9;:28::i;:::-;28139:48;28162:4;28168:2;28172:7;28181:5;28139:22;:48::i;:::-;28131:111;;;;-1:-1:-1;;;28131:111:0;;;;;;;:::i;45161:112::-;45213:13;45246:19;45239:26;;;;;:::i;342:723::-;398:13;619:10;615:53;;-1:-1:-1;;646:10:0;;;;;;;;;;;;-1:-1:-1;;;646:10:0;;;;;342:723::o;615:53::-;693:5;678:12;734:78;741:9;;734:78;;767:8;;;;:::i;:::-;;-1:-1:-1;790:10:0;;-1:-1:-1;798:2:0;790:10;;:::i;:::-;;;734:78;;;822:19;854:6;844:17;;;;;;-1:-1:-1;;;844:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;844:17:0;;822:39;;872:154;879:10;;872:154;;906:11;916:1;906:11;;:::i;:::-;;-1:-1:-1;975:10:0;983:2;975:5;:10;:::i;:::-;962:24;;:2;:24;:::i;:::-;949:39;;932:6;939;932:14;;;;;;-1:-1:-1;;;932:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;932:56:0;;;;;;;;-1:-1:-1;1003:11:0;1012:2;1003:11;;:::i;:::-;;;872:154;;29884:321;30014:18;30020:2;30024:7;30014:5;:18::i;:::-;30065:54;30096:1;30100:2;30104:7;30113:5;30065:22;:54::i;:::-;30043:154;;;;-1:-1:-1;;;30043:154:0;;;;;;;:::i;33284:799::-;33439:4;-1:-1:-1;;;;;33460:13:0;;6218:20;6266:8;33456:620;;33496:72;;-1:-1:-1;;;33496:72:0;;-1:-1:-1;;;;;33496:36:0;;;;;:72;;2775:10;;33547:4;;33553:7;;33562:5;;33496:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33496:72:0;;;;;;;;-1:-1:-1;;33496:72:0;;;;;;;;;;;;:::i;:::-;;;33492:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33738:13:0;;33734:272;;33781:60;;-1:-1:-1;;;33781:60:0;;;;;;;:::i;33734:272::-;33956:6;33950:13;33941:6;33937:2;33933:15;33926:38;33492:529;-1:-1:-1;;;;;;33619:51:0;-1:-1:-1;;;33619:51:0;;-1:-1:-1;33612:58:0;;33456:620;-1:-1:-1;34060:4:0;33284:799;;;;;;:::o;30541:382::-;-1:-1:-1;;;;;30621:16:0;;30613:61;;;;-1:-1:-1;;;30613:61:0;;11230:2:1;30613:61:0;;;11212:21:1;;;11249:18;;;11242:30;11308:34;11288:18;;;11281:62;11360:18;;30613:61:0;11202:182:1;30613:61:0;30694:16;30702:7;30694;:16::i;:::-;30693:17;30685:58;;;;-1:-1:-1;;;30685:58:0;;7633:2:1;30685:58:0;;;7615:21:1;7672:2;7652:18;;;7645:30;7711;7691:18;;;7684:58;7759:18;;30685:58:0;7605:178:1;30685:58:0;-1:-1:-1;;;;;30814:13:0;;;;;;:9;:13;;;;;:18;;30831:1;;30814:13;:18;;30831:1;;30814:18;:::i;:::-;;;;-1:-1:-1;;30843:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30843:21:0;-1:-1:-1;;;;;30843:21:0;;;;;;;;30882:33;;30843:16;;;30882:33;;30843:16;;30882:33;30541:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;828:160;893:20;;949:13;;942:21;932:32;;922:2;;978:1;975;968:12;993:196;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:2;;;1126:6;1118;1111:22;1073:2;1154:29;1173:9;1154:29;:::i;1194:270::-;1262:6;1270;1323:2;1311:9;1302:7;1298:23;1294:32;1291:2;;;1344:6;1336;1329:22;1291:2;1372:29;1391:9;1372:29;:::i;:::-;1362:39;;1420:38;1454:2;1443:9;1439:18;1420:38;:::i;:::-;1410:48;;1281:183;;;;;:::o;1469:338::-;1546:6;1554;1562;1615:2;1603:9;1594:7;1590:23;1586:32;1583:2;;;1636:6;1628;1621:22;1583:2;1664:29;1683:9;1664:29;:::i;:::-;1654:39;;1712:38;1746:2;1735:9;1731:18;1712:38;:::i;:::-;1702:48;;1797:2;1786:9;1782:18;1769:32;1759:42;;1573:234;;;;;:::o;1812:696::-;1907:6;1915;1923;1931;1984:3;1972:9;1963:7;1959:23;1955:33;1952:2;;;2006:6;1998;1991:22;1952:2;2034:29;2053:9;2034:29;:::i;:::-;2024:39;;2082:38;2116:2;2105:9;2101:18;2082:38;:::i;:::-;2072:48;;2167:2;2156:9;2152:18;2139:32;2129:42;;2222:2;2211:9;2207:18;2194:32;2249:18;2241:6;2238:30;2235:2;;;2286:6;2278;2271:22;2235:2;2314:22;;2367:4;2359:13;;2355:27;-1:-1:-1;2345:2:1;;2401:6;2393;2386:22;2345:2;2429:73;2494:7;2489:2;2476:16;2471:2;2467;2463:11;2429:73;:::i;:::-;2419:83;;;1942:566;;;;;;;:::o;2513:264::-;2578:6;2586;2639:2;2627:9;2618:7;2614:23;2610:32;2607:2;;;2660:6;2652;2645:22;2607:2;2688:29;2707:9;2688:29;:::i;:::-;2678:39;;2736:35;2767:2;2756:9;2752:18;2736:35;:::i;2782:264::-;2850:6;2858;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:29;2979:9;2960:29;:::i;:::-;2950:39;3036:2;3021:18;;;;3008:32;;-1:-1:-1;;;2869:177:1:o;3051:190::-;3107:6;3160:2;3148:9;3139:7;3135:23;3131:32;3128:2;;;3181:6;3173;3166:22;3128:2;3209:26;3225:9;3209:26;:::i;3246:255::-;3304:6;3357:2;3345:9;3336:7;3332:23;3328:32;3325:2;;;3378:6;3370;3363:22;3325:2;3422:9;3409:23;3441:30;3465:5;3441:30;:::i;3506:259::-;3575:6;3628:2;3616:9;3607:7;3603:23;3599:32;3596:2;;;3649:6;3641;3634:22;3596:2;3686:9;3680:16;3705:30;3729:5;3705:30;:::i;3770:480::-;3839:6;3892:2;3880:9;3871:7;3867:23;3863:32;3860:2;;;3913:6;3905;3898:22;3860:2;3958:9;3945:23;3991:18;3983:6;3980:30;3977:2;;;4028:6;4020;4013:22;3977:2;4056:22;;4109:4;4101:13;;4097:27;-1:-1:-1;4087:2:1;;4143:6;4135;4128:22;4087:2;4171:73;4236:7;4231:2;4218:16;4213:2;4209;4205:11;4171:73;:::i;4255:190::-;4314:6;4367:2;4355:9;4346:7;4342:23;4338:32;4335:2;;;4388:6;4380;4373:22;4335:2;-1:-1:-1;4416:23:1;;4325:120;-1:-1:-1;4325:120:1:o;4450:296::-;4508:6;4561:2;4549:9;4540:7;4536:23;4532:32;4529:2;;;4582:6;4574;4567:22;4529:2;4626:9;4613:23;4676:10;4669:5;4665:22;4658:5;4655:33;4645:2;;4707:6;4699;4692:22;4751:257;4792:3;4830:5;4824:12;4857:6;4852:3;4845:19;4873:63;4929:6;4922:4;4917:3;4913:14;4906:4;4899:5;4895:16;4873:63;:::i;:::-;4990:2;4969:15;-1:-1:-1;;4965:29:1;4956:39;;;;4997:4;4952:50;;4800:208;-1:-1:-1;;4800:208:1:o;5013:470::-;5192:3;5230:6;5224:13;5246:53;5292:6;5287:3;5280:4;5272:6;5268:17;5246:53;:::i;:::-;5362:13;;5321:16;;;;5384:57;5362:13;5321:16;5418:4;5406:17;;5384:57;:::i;:::-;5457:20;;5200:283;-1:-1:-1;;;;5200:283:1:o;5696:488::-;-1:-1:-1;;;;;5965:15:1;;;5947:34;;6017:15;;6012:2;5997:18;;5990:43;6064:2;6049:18;;6042:34;;;6112:3;6107:2;6092:18;;6085:31;;;5890:4;;6133:45;;6158:19;;6150:6;6133:45;:::i;:::-;6125:53;5899:285;-1:-1:-1;;;;;;5899:285:1:o;6381:219::-;6530:2;6519:9;6512:21;6493:4;6550:44;6590:2;6579:9;6575:18;6567:6;6550:44;:::i;6605:414::-;6807:2;6789:21;;;6846:2;6826:18;;;6819:30;6885:34;6880:2;6865:18;;6858:62;-1:-1:-1;;;6951:2:1;6936:18;;6929:48;7009:3;6994:19;;6779:240::o;8954:410::-;9156:2;9138:21;;;9195:2;9175:18;;;9168:30;9234:34;9229:2;9214:18;;9207:62;-1:-1:-1;;;9300:2:1;9285:18;;9278:44;9354:3;9339:19;;9128:236::o;11802:356::-;12004:2;11986:21;;;12023:18;;;12016:30;12082:34;12077:2;12062:18;;12055:62;12149:2;12134:18;;11976:182::o;13391:413::-;13593:2;13575:21;;;13632:2;13612:18;;;13605:30;13671:34;13666:2;13651:18;;13644:62;-1:-1:-1;;;13737:2:1;13722:18;;13715:47;13794:3;13779:19;;13565:239::o;13809:344::-;14011:2;13993:21;;;14050:2;14030:18;;;14023:30;-1:-1:-1;;;14084:2:1;14069:18;;14062:50;14144:2;14129:18;;13983:170::o;15429:128::-;15469:3;15500:1;15496:6;15493:1;15490:13;15487:2;;;15506:18;;:::i;:::-;-1:-1:-1;15542:9:1;;15477:80::o;15562:228::-;15601:3;15629:10;15666:2;15663:1;15659:10;15696:2;15693:1;15689:10;15727:3;15723:2;15719:12;15714:3;15711:21;15708:2;;;15735:18;;:::i;15795:120::-;15835:1;15861;15851:2;;15866:18;;:::i;:::-;-1:-1:-1;15900:9:1;;15841:74::o;15920:125::-;15960:4;15988:1;15985;15982:8;15979:2;;;15993:18;;:::i;:::-;-1:-1:-1;16030:9:1;;15969:76::o;16050:258::-;16122:1;16132:113;16146:6;16143:1;16140:13;16132:113;;;16222:11;;;16216:18;16203:11;;;16196:39;16168:2;16161:10;16132:113;;;16263:6;16260:1;16257:13;16254:2;;;-1:-1:-1;;16298:1:1;16280:16;;16273:27;16103:205::o;16313:380::-;16392:1;16388:12;;;;16435;;;16456:2;;16510:4;16502:6;16498:17;16488:27;;16456:2;16563;16555:6;16552:14;16532:18;16529:38;16526:2;;;16609:10;16604:3;16600:20;16597:1;16590:31;16644:4;16641:1;16634:15;16672:4;16669:1;16662:15;16526:2;;16368:325;;;:::o;16698:135::-;16737:3;-1:-1:-1;;16758:17:1;;16755:2;;;16778:18;;:::i;:::-;-1:-1:-1;16825:1:1;16814:13;;16745:88::o;16838:112::-;16870:1;16896;16886:2;;16901:18;;:::i;:::-;-1:-1:-1;16935:9:1;;16876:74::o;16955:127::-;17016:10;17011:3;17007:20;17004:1;16997:31;17047:4;17044:1;17037:15;17071:4;17068:1;17061:15;17087:127;17148:10;17143:3;17139:20;17136:1;17129:31;17179:4;17176:1;17169:15;17203:4;17200:1;17193:15;17219:127;17280:10;17275:3;17271:20;17268:1;17261:31;17311:4;17308:1;17301:15;17335:4;17332:1;17325:15;17351:131;-1:-1:-1;;;;;;17425:32:1;;17415:43;;17405:2;;17472:1;17469;17462:12

Swarm Source

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