POL Price: $0.71868 (-2.32%)
 

Overview

Max Total Supply

12 GNTR

Holders

7

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
NiftyGunther

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Apache-2.0 license
File 1 of 14 : Minty.sol
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.2;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";

contract NiftyGunther is ERC721, ERC721Enumerable, Ownable {
    event PermanentURI(string _value, uint256 indexed _id);

    constructor(string memory tokenName, string memory symbol) ERC721(tokenName, symbol) {}

    using Counters for Counters.Counter;
    Counters.Counter private _tokenIdCounter;

    mapping(bytes32 => int) private _availableStreetCred;

    function availableStreetCred(bytes32 project) public view returns (uint) {
        require(_availableStreetCred[project] != 0, "NiftyGunther: Unknown project");
        if (_availableStreetCred[project] > 0)
            return uint(_availableStreetCred[project]);
        else
            return 0;
    }

    function createProject(address recipient, bytes32 project, uint streetCred, string memory cid) public onlyOwner returns (uint256) {
        require(_availableStreetCred[project] == 0, "NiftyGunther: Project already exists");
        require(streetCred > 0, "NiftyGunther: Project Street Cred must be > 0");

        _availableStreetCred[project] = int(streetCred);
        return _mint(recipient, project, 0, cid); // genesis token has no Street Cred
    }

    function mint(address recipient, bytes32 project, uint streetCred, string memory cid) public onlyOwner returns (uint256) {
        require(streetCred > 0, "NiftyGunther: streetCred must be > 0");

        return _mint(recipient, project, streetCred, cid);
    }

    function _mint(address recipient, bytes32 project, uint streetCred, string memory cid) internal returns (uint256) {
        require(_availableStreetCred[project] != 0, "NiftyGunther: Unknown project");
        require(int(streetCred) <= _availableStreetCred[project], "NiftyGunther: StreetCred exceeds availableStreetCred");

        uint256 newTokenId = _tokenIdCounter.current();
        _safeMint(recipient, newTokenId);
        _setTokenCID(newTokenId, cid);
        _tokenIdCounter.increment();

        _availableStreetCred[project] -= int(streetCred);
        if (_availableStreetCred[project] == 0) _availableStreetCred[project] = -1; // remember it existed and is frozen

        emit PermanentURI(tokenURI(newTokenId), newTokenId);
        return newTokenId;
    }

/**
 * Override `tokenURI()` like `ERC721URIStorage` but store just IPFS CIDs.
 * The URI is always constructed as `ipfs://<cid>/metadata.json` so make sure that's how
 * the metadata is stored in IPFS!
 */

    using Strings for uint256;
    mapping(uint256 => string) private _tokenCIDs;

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
        require(_exists(tokenId), "NiftyGunther: URI query for nonexistent token");
        string memory _tokenCID = _tokenCIDs[tokenId];
        return string(abi.encodePacked("ipfs://", _tokenCID, "/metadata.json"));
    }

    /**
     * @dev Sets `_tokenCID` as the tokenCID of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenCID(uint256 tokenId, string memory _tokenCID) internal virtual {
        require(_exists(tokenId), "NiftyGunther: CID set of nonexistent token");
        _tokenCIDs[tokenId] = _tokenCID;
    }

    /**
     * @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 override(ERC721) {
        super._burn(tokenId);
        if (bytes(_tokenCIDs[tokenId]).length != 0) {
            delete _tokenCIDs[tokenId];
        }
    }

// The following functions are overrides required by Solidity

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
}

File 2 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.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 3 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.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 4 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 5 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 6 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.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 7 of 14 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 14 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 9 of 14 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 10 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.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 11 of 14 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 13 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.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 14 of 14 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

Settings
{
  "metadata": {
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_value","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"PermanentURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"project","type":"bytes32"}],"name":"availableStreetCred","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"bytes32","name":"project","type":"bytes32"},{"internalType":"uint256","name":"streetCred","type":"uint256"},{"internalType":"string","name":"cid","type":"string"}],"name":"createProject","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"bytes32","name":"project","type":"bytes32"},{"internalType":"uint256","name":"streetCred","type":"uint256"},{"internalType":"string","name":"cid","type":"string"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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"}]

60806040523480156200001157600080fd5b50604051620021e6380380620021e6833981016040819052620000349162000237565b8151829082906200004d906000906020850190620000de565b50805162000063906001906020840190620000de565b505050620000806200007a6200008860201b60201c565b6200008c565b5050620002f1565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000ec906200029e565b90600052602060002090601f0160209004810192826200011057600085556200015b565b82601f106200012b57805160ff19168380011785556200015b565b828001600101855582156200015b579182015b828111156200015b5782518255916020019190600101906200013e565b50620001699291506200016d565b5090565b5b808211156200016957600081556001016200016e565b600082601f83011262000195578081fd5b81516001600160401b0380821115620001b257620001b2620002db565b604051601f8301601f19908116603f01168101908282118183101715620001dd57620001dd620002db565b81604052838152602092508683858801011115620001f9578485fd5b8491505b838210156200021c5785820183015181830184015290820190620001fd565b838211156200022d57848385830101525b9695505050505050565b600080604083850312156200024a578182fd5b82516001600160401b038082111562000261578384fd5b6200026f8683870162000184565b9350602085015191508082111562000285578283fd5b50620002948582860162000184565b9150509250929050565b600281046001821680620002b357607f821691505b60208210811415620002d557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611ee580620003016000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063b88d4fde1161007c578063b88d4fde14610293578063c87b56dd146102a6578063e985e9c5146102b9578063e9f9db8e146102f5578063f2fde38b14610308578063fdac824c1461031b57610142565b806370a082311461024c578063715018a61461025f5780638da5cb5b1461026757806395d89b4114610278578063a22cb4651461028057610142565b806318160ddd1161010a57806318160ddd146101e557806323b872dd146101ed5780632f745c591461020057806342842e0e146102135780634f6ccce7146102265780636352211e1461023957610142565b806301ffc9a714610147578063035868b41461016f57806306fdde0314610190578063081812fc146101a5578063095ea7b3146101d0575b600080fd5b61015a610155366004611bc5565b61032e565b60405190151581526020015b60405180910390f35b61018261017d366004611b3d565b610341565b604051908152602001610166565b6101986103ea565b6040516101669190611cad565b6101b86101b3366004611bad565b61047c565b6040516001600160a01b039091168152602001610166565b6101e36101de366004611b84565b610511565b005b600854610182565b6101e36101fb366004611a4f565b610627565b61018261020e366004611b84565b610658565b6101e3610221366004611a4f565b6106ee565b610182610234366004611bad565b610709565b6101b8610247366004611bad565b6107aa565b61018261025a3660046119fc565b610821565b6101e36108a8565b600a546001600160a01b03166101b8565b6101986108de565b6101e361028e366004611b03565b6108ed565b6101e36102a1366004611a8a565b6109bf565b6101986102b4366004611bad565b6109f7565b61015a6102c7366004611a1d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610182610303366004611b3d565b610b35565b6101e36103163660046119fc565b610c4f565b610182610329366004611bad565b610cea565b600061033982610d77565b90505b919050565b600a546000906001600160a01b031633146103775760405162461bcd60e51b815260040161036e90611d12565b60405180910390fd5b600083116103d35760405162461bcd60e51b8152602060048201526024808201527f4e6966747947756e746865723a2073747265657443726564206d7573742062656044820152630203e20360e41b606482015260840161036e565b6103df85858585610d9c565b90505b949350505050565b6060600080546103f990611e32565b80601f016020809104026020016040519081016040528092919081815260200182805461042590611e32565b80156104725780601f1061044757610100808354040283529160200191610472565b820191906000526020600020905b81548152906001019060200180831161045557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104f55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161036e565b506000908152600460205260409020546001600160a01b031690565b600061051c826107aa565b9050806001600160a01b0316836001600160a01b0316141561058a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161036e565b336001600160a01b03821614806105a657506105a681336102c7565b6106185760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161036e565b6106228383610f34565b505050565b6106313382610fa2565b61064d5760405162461bcd60e51b815260040161036e90611d47565b610622838383611095565b600061066383610821565b82106106c55760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161036e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610622838383604051806020016040528060008152506109bf565b600061071460085490565b82106107775760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161036e565b6008828154811061079857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806103395760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161036e565b60006001600160a01b03821661088c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161036e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146108d25760405162461bcd60e51b815260040161036e90611d12565b6108dc6000611240565b565b6060600180546103f990611e32565b6001600160a01b0382163314156109465760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161036e565b3360008181526005602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516109b3911515815260200190565b60405180910390a35050565b6109c93383610fa2565b6109e55760405162461bcd60e51b815260040161036e90611d47565b6109f184848484611292565b50505050565b6000818152600260205260409020546060906001600160a01b0316610a745760405162461bcd60e51b815260206004820152602d60248201527f4e6966747947756e746865723a2055524920717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b606482015260840161036e565b6000828152600d602052604081208054610a8d90611e32565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab990611e32565b8015610b065780601f10610adb57610100808354040283529160200191610b06565b820191906000526020600020905b815481529060010190602001808311610ae957829003601f168201915b5050505050905080604051602001610b1e9190611c29565b604051602081830303815290604052915050919050565b600a546000906001600160a01b03163314610b625760405162461bcd60e51b815260040161036e90611d12565b6000848152600c602052604090205415610bca5760405162461bcd60e51b8152602060048201526024808201527f4e6966747947756e746865723a2050726f6a65637420616c72656164792065786044820152636973747360e01b606482015260840161036e565b60008311610c305760405162461bcd60e51b815260206004820152602d60248201527f4e6966747947756e746865723a2050726f6a656374205374726565742043726560448201526c064206d757374206265203e203609c1b606482015260840161036e565b6000848152600c602052604081208490556103df908690869085610d9c565b600a546001600160a01b03163314610c795760405162461bcd60e51b815260040161036e90611d12565b6001600160a01b038116610cde5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161036e565b610ce781611240565b50565b6000818152600c6020526040812054610d455760405162461bcd60e51b815260206004820152601d60248201527f4e6966747947756e746865723a20556e6b6e6f776e2070726f6a656374000000604482015260640161036e565b6000828152600c60205260408120541315610d6f57506000818152600c602052604090205461033c565b50600061033c565b60006001600160e01b0319821663780e9d6360e01b14806103395750610339826112c5565b6000838152600c6020526040812054610df75760405162461bcd60e51b815260206004820152601d60248201527f4e6966747947756e746865723a20556e6b6e6f776e2070726f6a656374000000604482015260640161036e565b6000848152600c6020526040902054831315610e725760405162461bcd60e51b815260206004820152603460248201527f4e6966747947756e746865723a2053747265657443726564206578636565647360448201527308185d985a5b18589b1954dd1c99595d10dc995960621b606482015260840161036e565b6000610e7d600b5490565b9050610e898682611315565b610e938184611333565b610ea1600b80546001019055565b6000858152600c602052604081208054869290610ebf908490611db0565b90915550506000858152600c6020526040902054610eeb576000858152600c6020526040902060001990555b807fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b55657207610f16836109f7565b604051610f239190611cad565b60405180910390a295945050505050565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f69826107aa565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661101b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161036e565b6000611026836107aa565b9050806001600160a01b0316846001600160a01b031614806110615750836001600160a01b03166110568461047c565b6001600160a01b0316145b806103e257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166103e2565b826001600160a01b03166110a8826107aa565b6001600160a01b0316146111105760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161036e565b6001600160a01b0382166111725760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161036e565b61117d8383836113c9565b611188600082610f34565b6001600160a01b03831660009081526003602052604081208054600192906111b1908490611def565b90915550506001600160a01b03821660009081526003602052604081208054600192906111df908490611d98565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61129d848484611095565b6112a9848484846113d4565b6109f15760405162461bcd60e51b815260040161036e90611cc0565b60006001600160e01b031982166380ac58cd60e01b14806112f657506001600160e01b03198216635b5e139f60e01b145b8061033957506301ffc9a760e01b6001600160e01b0319831614610339565b61132f8282604051806020016040528060008152506114de565b5050565b6000828152600260205260409020546001600160a01b03166113aa5760405162461bcd60e51b815260206004820152602a60248201527f4e6966747947756e746865723a2043494420736574206f66206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161036e565b6000828152600d602090815260409091208251610622928401906118d6565b610622838383611511565b60006001600160a01b0384163b156114d657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611418903390899088908890600401611c70565b602060405180830381600087803b15801561143257600080fd5b505af1925050508015611462575060408051601f3d908101601f1916820190925261145f91810190611be1565b60015b6114bc573d808015611490576040519150601f19603f3d011682016040523d82523d6000602084013e611495565b606091505b5080516114b45760405162461bcd60e51b815260040161036e90611cc0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506103e2565b5060016103e2565b6114e883836115ce565b6114f560008484846113d4565b6106225760405162461bcd60e51b815260040161036e90611cc0565b6001600160a01b03831661156c5761156781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61158f565b816001600160a01b0316836001600160a01b03161461158f5761158f838261171c565b6001600160a01b0382166115ab576115a6816117b9565b610622565b826001600160a01b0316826001600160a01b031614610622576106228282611892565b6001600160a01b0382166116245760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161036e565b6000818152600260205260409020546001600160a01b0316156116895760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161036e565b611695600083836113c9565b6001600160a01b03821660009081526003602052604081208054600192906116be908490611d98565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161172984610821565b6117339190611def565b600083815260076020526040902054909150808214611786576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906117cb90600190611def565b6000838152600960205260408120546008805493945090928490811061180157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061183057634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061187657634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061189d83610821565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546118e290611e32565b90600052602060002090601f016020900481019282611904576000855561194a565b82601f1061191d57805160ff191683800117855561194a565b8280016001018555821561194a579182015b8281111561194a57825182559160200191906001019061192f565b5061195692915061195a565b5090565b5b80821115611956576000815560010161195b565b600067ffffffffffffffff8084111561198a5761198a611e83565b604051601f8501601f19908116603f011681019082821181831017156119b2576119b2611e83565b816040528093508581528686860111156119cb57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461033c57600080fd5b600060208284031215611a0d578081fd5b611a16826119e5565b9392505050565b60008060408385031215611a2f578081fd5b611a38836119e5565b9150611a46602084016119e5565b90509250929050565b600080600060608486031215611a63578081fd5b611a6c846119e5565b9250611a7a602085016119e5565b9150604084013590509250925092565b60008060008060808587031215611a9f578081fd5b611aa8856119e5565b9350611ab6602086016119e5565b925060408501359150606085013567ffffffffffffffff811115611ad8578182fd5b8501601f81018713611ae8578182fd5b611af78782356020840161196f565b91505092959194509250565b60008060408385031215611b15578182fd5b611b1e836119e5565b915060208301358015158114611b32578182fd5b809150509250929050565b60008060008060808587031215611b52578384fd5b611b5b856119e5565b93506020850135925060408501359150606085013567ffffffffffffffff811115611ad8578182fd5b60008060408385031215611b96578182fd5b611b9f836119e5565b946020939093013593505050565b600060208284031215611bbe578081fd5b5035919050565b600060208284031215611bd6578081fd5b8135611a1681611e99565b600060208284031215611bf2578081fd5b8151611a1681611e99565b60008151808452611c15816020860160208601611e06565b601f01601f19169290920160200192915050565b600066697066733a2f2f60c81b82528251611c4b816007850160208701611e06565b6d17b6b2ba30b230ba30973539b7b760911b6007939091019283015250601501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ca390830184611bfd565b9695505050505050565b600060208252611a166020830184611bfd565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611dab57611dab611e6d565b500190565b60008083128015600160ff1b850184121615611dce57611dce611e6d565b6001600160ff1b0384018313811615611de957611de9611e6d565b50500390565b600082821015611e0157611e01611e6d565b500390565b60005b83811015611e21578181015183820152602001611e09565b838111156109f15750506000910152565b600281046001821680611e4657607f821691505b60208210811415611e6757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ce757600080fdfea2646970667358221220e6bce8bfb4ba47d71fae2673dab8f69a07d388b3da82e415d2042fa6028ed03564736f6c6343000802003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e4e696674792047756e74686572730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004474e545200000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063b88d4fde1161007c578063b88d4fde14610293578063c87b56dd146102a6578063e985e9c5146102b9578063e9f9db8e146102f5578063f2fde38b14610308578063fdac824c1461031b57610142565b806370a082311461024c578063715018a61461025f5780638da5cb5b1461026757806395d89b4114610278578063a22cb4651461028057610142565b806318160ddd1161010a57806318160ddd146101e557806323b872dd146101ed5780632f745c591461020057806342842e0e146102135780634f6ccce7146102265780636352211e1461023957610142565b806301ffc9a714610147578063035868b41461016f57806306fdde0314610190578063081812fc146101a5578063095ea7b3146101d0575b600080fd5b61015a610155366004611bc5565b61032e565b60405190151581526020015b60405180910390f35b61018261017d366004611b3d565b610341565b604051908152602001610166565b6101986103ea565b6040516101669190611cad565b6101b86101b3366004611bad565b61047c565b6040516001600160a01b039091168152602001610166565b6101e36101de366004611b84565b610511565b005b600854610182565b6101e36101fb366004611a4f565b610627565b61018261020e366004611b84565b610658565b6101e3610221366004611a4f565b6106ee565b610182610234366004611bad565b610709565b6101b8610247366004611bad565b6107aa565b61018261025a3660046119fc565b610821565b6101e36108a8565b600a546001600160a01b03166101b8565b6101986108de565b6101e361028e366004611b03565b6108ed565b6101e36102a1366004611a8a565b6109bf565b6101986102b4366004611bad565b6109f7565b61015a6102c7366004611a1d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610182610303366004611b3d565b610b35565b6101e36103163660046119fc565b610c4f565b610182610329366004611bad565b610cea565b600061033982610d77565b90505b919050565b600a546000906001600160a01b031633146103775760405162461bcd60e51b815260040161036e90611d12565b60405180910390fd5b600083116103d35760405162461bcd60e51b8152602060048201526024808201527f4e6966747947756e746865723a2073747265657443726564206d7573742062656044820152630203e20360e41b606482015260840161036e565b6103df85858585610d9c565b90505b949350505050565b6060600080546103f990611e32565b80601f016020809104026020016040519081016040528092919081815260200182805461042590611e32565b80156104725780601f1061044757610100808354040283529160200191610472565b820191906000526020600020905b81548152906001019060200180831161045557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104f55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161036e565b506000908152600460205260409020546001600160a01b031690565b600061051c826107aa565b9050806001600160a01b0316836001600160a01b0316141561058a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161036e565b336001600160a01b03821614806105a657506105a681336102c7565b6106185760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161036e565b6106228383610f34565b505050565b6106313382610fa2565b61064d5760405162461bcd60e51b815260040161036e90611d47565b610622838383611095565b600061066383610821565b82106106c55760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161036e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610622838383604051806020016040528060008152506109bf565b600061071460085490565b82106107775760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161036e565b6008828154811061079857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806103395760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161036e565b60006001600160a01b03821661088c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161036e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146108d25760405162461bcd60e51b815260040161036e90611d12565b6108dc6000611240565b565b6060600180546103f990611e32565b6001600160a01b0382163314156109465760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161036e565b3360008181526005602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516109b3911515815260200190565b60405180910390a35050565b6109c93383610fa2565b6109e55760405162461bcd60e51b815260040161036e90611d47565b6109f184848484611292565b50505050565b6000818152600260205260409020546060906001600160a01b0316610a745760405162461bcd60e51b815260206004820152602d60248201527f4e6966747947756e746865723a2055524920717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b606482015260840161036e565b6000828152600d602052604081208054610a8d90611e32565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab990611e32565b8015610b065780601f10610adb57610100808354040283529160200191610b06565b820191906000526020600020905b815481529060010190602001808311610ae957829003601f168201915b5050505050905080604051602001610b1e9190611c29565b604051602081830303815290604052915050919050565b600a546000906001600160a01b03163314610b625760405162461bcd60e51b815260040161036e90611d12565b6000848152600c602052604090205415610bca5760405162461bcd60e51b8152602060048201526024808201527f4e6966747947756e746865723a2050726f6a65637420616c72656164792065786044820152636973747360e01b606482015260840161036e565b60008311610c305760405162461bcd60e51b815260206004820152602d60248201527f4e6966747947756e746865723a2050726f6a656374205374726565742043726560448201526c064206d757374206265203e203609c1b606482015260840161036e565b6000848152600c602052604081208490556103df908690869085610d9c565b600a546001600160a01b03163314610c795760405162461bcd60e51b815260040161036e90611d12565b6001600160a01b038116610cde5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161036e565b610ce781611240565b50565b6000818152600c6020526040812054610d455760405162461bcd60e51b815260206004820152601d60248201527f4e6966747947756e746865723a20556e6b6e6f776e2070726f6a656374000000604482015260640161036e565b6000828152600c60205260408120541315610d6f57506000818152600c602052604090205461033c565b50600061033c565b60006001600160e01b0319821663780e9d6360e01b14806103395750610339826112c5565b6000838152600c6020526040812054610df75760405162461bcd60e51b815260206004820152601d60248201527f4e6966747947756e746865723a20556e6b6e6f776e2070726f6a656374000000604482015260640161036e565b6000848152600c6020526040902054831315610e725760405162461bcd60e51b815260206004820152603460248201527f4e6966747947756e746865723a2053747265657443726564206578636565647360448201527308185d985a5b18589b1954dd1c99595d10dc995960621b606482015260840161036e565b6000610e7d600b5490565b9050610e898682611315565b610e938184611333565b610ea1600b80546001019055565b6000858152600c602052604081208054869290610ebf908490611db0565b90915550506000858152600c6020526040902054610eeb576000858152600c6020526040902060001990555b807fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b55657207610f16836109f7565b604051610f239190611cad565b60405180910390a295945050505050565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f69826107aa565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661101b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161036e565b6000611026836107aa565b9050806001600160a01b0316846001600160a01b031614806110615750836001600160a01b03166110568461047c565b6001600160a01b0316145b806103e257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166103e2565b826001600160a01b03166110a8826107aa565b6001600160a01b0316146111105760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161036e565b6001600160a01b0382166111725760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161036e565b61117d8383836113c9565b611188600082610f34565b6001600160a01b03831660009081526003602052604081208054600192906111b1908490611def565b90915550506001600160a01b03821660009081526003602052604081208054600192906111df908490611d98565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61129d848484611095565b6112a9848484846113d4565b6109f15760405162461bcd60e51b815260040161036e90611cc0565b60006001600160e01b031982166380ac58cd60e01b14806112f657506001600160e01b03198216635b5e139f60e01b145b8061033957506301ffc9a760e01b6001600160e01b0319831614610339565b61132f8282604051806020016040528060008152506114de565b5050565b6000828152600260205260409020546001600160a01b03166113aa5760405162461bcd60e51b815260206004820152602a60248201527f4e6966747947756e746865723a2043494420736574206f66206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161036e565b6000828152600d602090815260409091208251610622928401906118d6565b610622838383611511565b60006001600160a01b0384163b156114d657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611418903390899088908890600401611c70565b602060405180830381600087803b15801561143257600080fd5b505af1925050508015611462575060408051601f3d908101601f1916820190925261145f91810190611be1565b60015b6114bc573d808015611490576040519150601f19603f3d011682016040523d82523d6000602084013e611495565b606091505b5080516114b45760405162461bcd60e51b815260040161036e90611cc0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506103e2565b5060016103e2565b6114e883836115ce565b6114f560008484846113d4565b6106225760405162461bcd60e51b815260040161036e90611cc0565b6001600160a01b03831661156c5761156781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61158f565b816001600160a01b0316836001600160a01b03161461158f5761158f838261171c565b6001600160a01b0382166115ab576115a6816117b9565b610622565b826001600160a01b0316826001600160a01b031614610622576106228282611892565b6001600160a01b0382166116245760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161036e565b6000818152600260205260409020546001600160a01b0316156116895760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161036e565b611695600083836113c9565b6001600160a01b03821660009081526003602052604081208054600192906116be908490611d98565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161172984610821565b6117339190611def565b600083815260076020526040902054909150808214611786576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906117cb90600190611def565b6000838152600960205260408120546008805493945090928490811061180157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061183057634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061187657634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061189d83610821565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546118e290611e32565b90600052602060002090601f016020900481019282611904576000855561194a565b82601f1061191d57805160ff191683800117855561194a565b8280016001018555821561194a579182015b8281111561194a57825182559160200191906001019061192f565b5061195692915061195a565b5090565b5b80821115611956576000815560010161195b565b600067ffffffffffffffff8084111561198a5761198a611e83565b604051601f8501601f19908116603f011681019082821181831017156119b2576119b2611e83565b816040528093508581528686860111156119cb57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461033c57600080fd5b600060208284031215611a0d578081fd5b611a16826119e5565b9392505050565b60008060408385031215611a2f578081fd5b611a38836119e5565b9150611a46602084016119e5565b90509250929050565b600080600060608486031215611a63578081fd5b611a6c846119e5565b9250611a7a602085016119e5565b9150604084013590509250925092565b60008060008060808587031215611a9f578081fd5b611aa8856119e5565b9350611ab6602086016119e5565b925060408501359150606085013567ffffffffffffffff811115611ad8578182fd5b8501601f81018713611ae8578182fd5b611af78782356020840161196f565b91505092959194509250565b60008060408385031215611b15578182fd5b611b1e836119e5565b915060208301358015158114611b32578182fd5b809150509250929050565b60008060008060808587031215611b52578384fd5b611b5b856119e5565b93506020850135925060408501359150606085013567ffffffffffffffff811115611ad8578182fd5b60008060408385031215611b96578182fd5b611b9f836119e5565b946020939093013593505050565b600060208284031215611bbe578081fd5b5035919050565b600060208284031215611bd6578081fd5b8135611a1681611e99565b600060208284031215611bf2578081fd5b8151611a1681611e99565b60008151808452611c15816020860160208601611e06565b601f01601f19169290920160200192915050565b600066697066733a2f2f60c81b82528251611c4b816007850160208701611e06565b6d17b6b2ba30b230ba30973539b7b760911b6007939091019283015250601501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ca390830184611bfd565b9695505050505050565b600060208252611a166020830184611bfd565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611dab57611dab611e6d565b500190565b60008083128015600160ff1b850184121615611dce57611dce611e6d565b6001600160ff1b0384018313811615611de957611de9611e6d565b50500390565b600082821015611e0157611e01611e6d565b500390565b60005b83811015611e21578181015183820152602001611e09565b838111156109f15750506000910152565b600281046001821680611e4657607f821691505b60208210811415611e6757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ce757600080fdfea2646970667358221220e6bce8bfb4ba47d71fae2673dab8f69a07d388b3da82e415d2042fa6028ed03564736f6c63430008020033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e4e696674792047756e74686572730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004474e545200000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : tokenName (string): Nifty Gunthers
Arg [1] : symbol (string): GNTR

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [3] : 4e696674792047756e7468657273000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 474e545200000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

308:4049:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4186:169;;;;;;:::i;:::-;;:::i;:::-;;;6324:14:14;;6317:22;6299:41;;6287:2;6272:18;4186:169:0;;;;;;;;1446:261;;;;;;:::i;:::-;;:::i;:::-;;;16340:25:14;;;16328:2;16313:18;1446:261:0;16295:76:14;2414:98:2;;;:::i;:::-;;;;;;;:::i;3925:217::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5622:32:14;;;5604:51;;5592:2;5577:18;3925:217:2;5559:102:14;3463:401:2;;;;;;:::i;:::-;;:::i;:::-;;1535:111:5;1622:10;:17;1535:111;;4789:330:2;;;;;;:::i;:::-;;:::i;1211:253:5:-;;;;;;:::i;:::-;;:::i;5185:179:2:-;;;;;;:::i;:::-;;:::i;1718:230:5:-;;;;;;:::i;:::-;;:::i;2117:235:2:-;;;;;;:::i;:::-;;:::i;1855:205::-;;;;;;:::i;:::-;;:::i;1605:92:1:-;;;:::i;973:85::-;1045:6;;-1:-1:-1;;;;;1045:6:1;973:85;;2576:102:2;;;:::i;4209:290::-;;;;;;:::i;:::-;;:::i;5430:320::-;;;;;;:::i;:::-;;:::i;2844:315:0:-;;;;;;:::i;:::-;;:::i;4565:162:2:-;;;;;;:::i;:::-;-1:-1:-1;;;;;4685:25:2;;;4662:4;4685:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4565:162;984:456:0;;;;;;:::i;:::-;;:::i;1846:189:1:-;;;;;;:::i;:::-;;:::i;674:304:0:-;;;;;;:::i;:::-;;:::i;4186:169::-;4289:4;4312:36;4336:11;4312:23;:36::i;:::-;4305:43;;4186:169;;;;:::o;1446:261::-;1045:6:1;;1558:7:0;;-1:-1:-1;;;;;1045:6:1;666:10:9;1185:23:1;1177:68;;;;-1:-1:-1;;;1177:68:1;;;;;;;:::i;:::-;;;;;;;;;1598:1:0::1;1585:10;:14;1577:63;;;::::0;-1:-1:-1;;;1577:63:0;;13170:2:14;1577:63:0::1;::::0;::::1;13152:21:14::0;13209:2;13189:18;;;13182:30;13248:34;13228:18;;;13221:62;-1:-1:-1;;;13299:18:14;;;13292:34;13343:19;;1577:63:0::1;13142:226:14::0;1577:63:0::1;1658:42;1664:9;1675:7;1684:10;1696:3;1658:5;:42::i;:::-;1651:49;;1255:1:1;1446:261:0::0;;;;;;:::o;2414:98:2:-;2468:13;2500:5;2493:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2414:98;:::o;3925:217::-;4001:7;7310:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7310:16:2;4020:73;;;;-1:-1:-1;;;4020:73:2;;11986:2:14;4020:73:2;;;11968:21:14;12025:2;12005:18;;;11998:30;12064:34;12044:18;;;12037:62;-1:-1:-1;;;12115:18:14;;;12108:42;12167:19;;4020:73:2;11958:234:14;4020:73:2;-1:-1:-1;4111:24:2;;;;:15;:24;;;;;;-1:-1:-1;;;;;4111:24:2;;3925:217::o;3463:401::-;3543:13;3559:23;3574:7;3559:14;:23::i;:::-;3543:39;;3606:5;-1:-1:-1;;;;;3600:11:2;:2;-1:-1:-1;;;;;3600:11:2;;;3592:57;;;;-1:-1:-1;;;3592:57:2;;13989:2:14;3592:57:2;;;13971:21:14;14028:2;14008:18;;;14001:30;14067:34;14047:18;;;14040:62;-1:-1:-1;;;14118:18:14;;;14111:31;14159:19;;3592:57:2;13961:223:14;3592:57:2;666:10:9;-1:-1:-1;;;;;3681:21:2;;;;:62;;-1:-1:-1;3706:37:2;3723:5;666:10:9;3730:12:2;587:96:9;3706:37:2;3660:165;;;;-1:-1:-1;;;3660:165:2;;10379:2:14;3660:165:2;;;10361:21:14;10418:2;10398:18;;;10391:30;10457:34;10437:18;;;10430:62;10528:26;10508:18;;;10501:54;10572:19;;3660:165:2;10351:246:14;3660:165:2;3836:21;3845:2;3849:7;3836:8;:21::i;:::-;3463:401;;;:::o;4789:330::-;4978:41;666:10:9;5011:7:2;4978:18;:41::i;:::-;4970:103;;;;-1:-1:-1;;;4970:103:2;;;;;;;:::i;:::-;5084:28;5094:4;5100:2;5104:7;5084:9;:28::i;1211:253:5:-;1308:7;1343:23;1360:5;1343:16;:23::i;:::-;1335:5;:31;1327:87;;;;-1:-1:-1;;;1327:87:5;;6777:2:14;1327:87:5;;;6759:21:14;6816:2;6796:18;;;6789:30;6855:34;6835:18;;;6828:62;-1:-1:-1;;;6906:18:14;;;6899:41;6957:19;;1327:87:5;6749:233:14;1327:87:5;-1:-1:-1;;;;;;1431:19:5;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1211:253::o;5185:179:2:-;5318:39;5335:4;5341:2;5345:7;5318:39;;;;;;;;;;;;:16;:39::i;1718:230:5:-;1793:7;1828:30;1622:10;:17;1535:111;;1828:30;1820:5;:38;1812:95;;;;-1:-1:-1;;;1812:95:5;;14809:2:14;1812:95:5;;;14791:21:14;14848:2;14828:18;;;14821:30;14887:34;14867:18;;;14860:62;-1:-1:-1;;;14938:18:14;;;14931:42;14990:19;;1812:95:5;14781:234:14;1812:95:5;1924:10;1935:5;1924:17;;;;;;-1:-1:-1;;;1924:17:5;;;;;;;;;;;;;;;;;1917:24;;1718:230;;;:::o;2117:235:2:-;2189:7;2224:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2224:16:2;2258:19;2250:73;;;;-1:-1:-1;;;2250:73:2;;11215:2:14;2250:73:2;;;11197:21:14;11254:2;11234:18;;;11227:30;11293:34;11273:18;;;11266:62;-1:-1:-1;;;11344:18:14;;;11337:39;11393:19;;2250:73:2;11187:231:14;1855:205:2;1927:7;-1:-1:-1;;;;;1954:19:2;;1946:74;;;;-1:-1:-1;;;1946:74:2;;10804:2:14;1946:74:2;;;10786:21:14;10843:2;10823:18;;;10816:30;10882:34;10862:18;;;10855:62;-1:-1:-1;;;10933:18:14;;;10926:40;10983:19;;1946:74:2;10776:232:14;1946:74:2;-1:-1:-1;;;;;;2037:16:2;;;;;:9;:16;;;;;;;1855:205::o;1605:92:1:-;1045:6;;-1:-1:-1;;;;;1045:6:1;666:10:9;1185:23:1;1177:68;;;;-1:-1:-1;;;1177:68:1;;;;;;;:::i;:::-;1669:21:::1;1687:1;1669:9;:21::i;:::-;1605:92::o:0;2576:102:2:-;2632:13;2664:7;2657:14;;;;;:::i;4209:290::-;-1:-1:-1;;;;;4311:24:2;;666:10:9;4311:24:2;;4303:62;;;;-1:-1:-1;;;4303:62:2;;9198:2:14;4303:62:2;;;9180:21:14;9237:2;9217:18;;;9210:30;9276:27;9256:18;;;9249:55;9321:18;;4303:62:2;9170:175:14;4303:62:2;666:10:9;4376:32:2;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4376:42:2;;;;;;;;;;:53;;-1:-1:-1;;4376:53:2;;;;;;;:42;-1:-1:-1;;;;;4444:48:2;;4483:8;4444:48;;;;6324:14:14;6317:22;6299:41;;6287:2;6272:18;;6254:92;4444:48:2;;;;;;;;4209:290;;:::o;5430:320::-;5599:41;666:10:9;5632:7:2;5599:18;:41::i;:::-;5591:103;;;;-1:-1:-1;;;5591:103:2;;;;;;;:::i;:::-;5704:39;5718:4;5724:2;5728:7;5737:5;5704:13;:39::i;:::-;5430:320;;;;:::o;2844:315:0:-;7287:4:2;7310:16;;;:7;:16;;;;;;2917:13:0;;-1:-1:-1;;;;;7310:16:2;2942:74:0;;;;-1:-1:-1;;;2942:74:0;;9965:2:14;2942:74:0;;;9947:21:14;10004:2;9984:18;;;9977:30;10043:34;10023:18;;;10016:62;-1:-1:-1;;;10094:18:14;;;10087:43;10147:19;;2942:74:0;9937:235:14;2942:74:0;3026:23;3052:19;;;:10;:19;;;;;3026:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3123:9;3095:56;;;;;;;;:::i;:::-;;;;;;;;;;;;;3081:71;;;2844:315;;;:::o;984:456::-;1045:6:1;;1105:7:0;;-1:-1:-1;;;;;1045:6:1;666:10:9;1185:23:1;1177:68;;;;-1:-1:-1;;;1177:68:1;;;;;;;:::i;:::-;1132:29:0::1;::::0;;;:20:::1;:29;::::0;;;;;:34;1124:83:::1;;;::::0;-1:-1:-1;;;1124:83:0;;15633:2:14;1124:83:0::1;::::0;::::1;15615:21:14::0;15672:2;15652:18;;;15645:30;15711:34;15691:18;;;15684:62;-1:-1:-1;;;15762:18:14;;;15755:34;15806:19;;1124:83:0::1;15605:226:14::0;1124:83:0::1;1238:1;1225:10;:14;1217:72;;;::::0;-1:-1:-1;;;1217:72:0;;13575:2:14;1217:72:0::1;::::0;::::1;13557:21:14::0;13614:2;13594:18;;;13587:30;13653:34;13633:18;;;13626:62;-1:-1:-1;;;13704:18:14;;;13697:43;13757:19;;1217:72:0::1;13547:235:14::0;1217:72:0::1;1300:29;::::0;;;:20:::1;:29;::::0;;;;:47;;;1364:33:::1;::::0;1370:9;;1321:7;;1393:3;1364:5:::1;:33::i;1846:189:1:-:0;1045:6;;-1:-1:-1;;;;;1045:6:1;666:10:9;1185:23:1;1177:68;;;;-1:-1:-1;;;1177:68:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;1934:22:1;::::1;1926:73;;;::::0;-1:-1:-1;;;1926:73:1;;7608:2:14;1926:73:1::1;::::0;::::1;7590:21:14::0;7647:2;7627:18;;;7620:30;7686:34;7666:18;;;7659:62;-1:-1:-1;;;7737:18:14;;;7730:36;7783:19;;1926:73:1::1;7580:228:14::0;1926:73:1::1;2009:19;2019:8;2009:9;:19::i;:::-;1846:189:::0;:::o;674:304:0:-;741:4;765:29;;;:20;:29;;;;;;757:76;;;;-1:-1:-1;;;757:76:0;;16038:2:14;757:76:0;;;16020:21:14;16077:2;16057:18;;;16050:30;16116:31;16096:18;;;16089:59;16165:18;;757:76:0;16010:179:14;757:76:0;879:1;847:29;;;:20;:29;;;;;;:33;843:128;;;-1:-1:-1;906:29:0;;;;:20;:29;;;;;;894:42;;843:128;-1:-1:-1;970:1:0;963:8;;910:222:5;1012:4;-1:-1:-1;;;;;;1035:50:5;;-1:-1:-1;;;1035:50:5;;:90;;;1089:36;1113:11;1089:23;:36::i;1713:774:0:-;1818:7;1845:29;;;:20;:29;;;;;;1837:76;;;;-1:-1:-1;;;1837:76:0;;16038:2:14;1837:76:0;;;16020:21:14;16077:2;16057:18;;;16050:30;16116:31;16096:18;;;16089:59;16165:18;;1837:76:0;16010:179:14;1837:76:0;1950:29;;;;:20;:29;;;;;;1931:48;;;1923:113;;;;-1:-1:-1;;;1923:113:0;;8372:2:14;1923:113:0;;;8354:21:14;8411:2;8391:18;;;8384:30;8450:34;8430:18;;;8423:62;-1:-1:-1;;;8501:18:14;;;8494:50;8561:19;;1923:113:0;8344:242:14;1923:113:0;2047:18;2068:25;:15;864:14:10;;773:112;2068:25:0;2047:46;;2103:32;2113:9;2124:10;2103:9;:32::i;:::-;2145:29;2158:10;2170:3;2145:12;:29::i;:::-;2184:27;:15;978:19:10;;996:1;978:19;;;891:123;2184:27:0;2222:29;;;;:20;:29;;;;;:48;;2259:10;;2222:29;:48;;2259:10;;2222:48;:::i;:::-;;;;-1:-1:-1;;2284:29:0;;;;:20;:29;;;;;;2280:74;;2320:29;;;;:20;:29;;;;;-1:-1:-1;;2320:34:0;;2280:74;2442:10;2407:46;2420:20;2429:10;2420:8;:20::i;:::-;2407:46;;;;;;:::i;:::-;;;;;;;;2470:10;1713:774;-1:-1:-1;;;;;1713:774:0:o;11073:171:2:-;11147:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11147:29:2;-1:-1:-1;;;;;11147:29:2;;;;;;;;:24;;11200:23;11147:24;11200:14;:23::i;:::-;-1:-1:-1;;;;;11191:46:2;;;;;;;;;;;11073:171;;:::o;7505:344::-;7598:4;7310:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7310:16:2;7614:73;;;;-1:-1:-1;;;7614:73:2;;9552:2:14;7614:73:2;;;9534:21:14;9591:2;9571:18;;;9564:30;9630:34;9610:18;;;9603:62;-1:-1:-1;;;9681:18:14;;;9674:42;9733:19;;7614:73:2;9524:234:14;7614:73:2;7697:13;7713:23;7728:7;7713:14;:23::i;:::-;7697:39;;7765:5;-1:-1:-1;;;;;7754:16:2;:7;-1:-1:-1;;;;;7754:16:2;;:51;;;;7798:7;-1:-1:-1;;;;;7774:31:2;:20;7786:7;7774:11;:20::i;:::-;-1:-1:-1;;;;;7774:31:2;;7754:51;:87;;;-1:-1:-1;;;;;;4685:25:2;;;4662:4;4685:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7809:32;4565:162;10402:560;10556:4;-1:-1:-1;;;;;10529:31:2;:23;10544:7;10529:14;:23::i;:::-;-1:-1:-1;;;;;10529:31:2;;10521:85;;;;-1:-1:-1;;;10521:85:2;;12760:2:14;10521:85:2;;;12742:21:14;12799:2;12779:18;;;12772:30;12838:34;12818:18;;;12811:62;-1:-1:-1;;;12889:18:14;;;12882:39;12938:19;;10521:85:2;12732:231:14;10521:85:2;-1:-1:-1;;;;;10624:16:2;;10616:65;;;;-1:-1:-1;;;10616:65:2;;8793:2:14;10616:65:2;;;8775:21:14;8832:2;8812:18;;;8805:30;8871:34;8851:18;;;8844:62;-1:-1:-1;;;8922:18:14;;;8915:34;8966:19;;10616:65:2;8765:226:14;10616:65:2;10692:39;10713:4;10719:2;10723:7;10692:20;:39::i;:::-;10793:29;10810:1;10814:7;10793:8;:29::i;:::-;-1:-1:-1;;;;;10833:15:2;;;;;;:9;:15;;;;;:20;;10852:1;;10833:15;:20;;10852:1;;10833:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10863:13:2;;;;;;:9;:13;;;;;:18;;10880:1;;10863:13;:18;;10880:1;;10863:18;:::i;:::-;;;;-1:-1:-1;;10891:16:2;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10891:21:2;-1:-1:-1;;;;;10891:21:2;;;;;;;;;10928:27;;10891:16;;10928:27;;;;;;;10402:560;;;:::o;2041:169:1:-;2115:6;;;-1:-1:-1;;;;;2131:17:1;;;-1:-1:-1;;;;;;2131:17:1;;;;;;;2163:40;;2115:6;;;2131:17;2115:6;;2163:40;;2096:16;;2163:40;2041:169;;:::o;6612:307:2:-;6763:28;6773:4;6779:2;6783:7;6763:9;:28::i;:::-;6809:48;6832:4;6838:2;6842:7;6851:5;6809:22;:48::i;:::-;6801:111;;;;-1:-1:-1;;;6801:111:2;;;;;;;:::i;1496:300::-;1598:4;-1:-1:-1;;;;;;1633:40:2;;-1:-1:-1;;;1633:40:2;;:104;;-1:-1:-1;;;;;;;1689:48:2;;-1:-1:-1;;;1689:48:2;1633:104;:156;;;-1:-1:-1;;;;;;;;;;871:40:12;;;1753:36:2;763:155:12;8179:108:2;8254:26;8264:2;8268:7;8254:26;;;;;;;;;;;;:9;:26::i;:::-;8179:108;;:::o;3306:210:0:-;7287:4:2;7310:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7310:16:2;3397:71:0;;;;-1:-1:-1;;;3397:71:0;;15222:2:14;3397:71:0;;;15204:21:14;15261:2;15241:18;;;15234:30;15300:34;15280:18;;;15273:62;-1:-1:-1;;;15351:18:14;;;15344:40;15401:19;;3397:71:0;15194:232:14;3397:71:0;3478:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;4001:179::-;4128:45;4155:4;4161:2;4165:7;4128:26;:45::i;11797:778:2:-;11947:4;-1:-1:-1;;;;;11967:13:2;;1034:20:8;1080:8;11963:606:2;;12002:72;;-1:-1:-1;;;12002:72:2;;-1:-1:-1;;;;;12002:36:2;;;;;:72;;666:10:9;;12053:4:2;;12059:7;;12068:5;;12002:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12002:72:2;;;;;;;;-1:-1:-1;;12002:72:2;;;;;;;;;;;;:::i;:::-;;;11998:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12241:13:2;;12237:266;;12283:60;;-1:-1:-1;;;12283:60:2;;;;;;;:::i;12237:266::-;12455:6;12449:13;12440:6;12436:2;12432:15;12425:38;11998:519;-1:-1:-1;;;;;;12124:51:2;-1:-1:-1;;;12124:51:2;;-1:-1:-1;12117:58:2;;11963:606;-1:-1:-1;12554:4:2;12547:11;;8508:311;8633:18;8639:2;8643:7;8633:5;:18::i;:::-;8682:54;8713:1;8717:2;8721:7;8730:5;8682:22;:54::i;:::-;8661:151;;;;-1:-1:-1;;;8661:151:2;;;;;;;:::i;2544:572:5:-;-1:-1:-1;;;;;2743:18:5;;2739:183;;2777:40;2809:7;3925:10;:17;;3898:24;;;;:15;:24;;;;;:44;;;3952:24;;;;;;;;;;;;3822:161;2777:40;2739:183;;;2846:2;-1:-1:-1;;;;;2838:10:5;:4;-1:-1:-1;;;;;2838:10:5;;2834:88;;2864:47;2897:4;2903:7;2864:32;:47::i;:::-;-1:-1:-1;;;;;2935:16:5;;2931:179;;2967:45;3004:7;2967:36;:45::i;:::-;2931:179;;;3039:4;-1:-1:-1;;;;;3033:10:5;:2;-1:-1:-1;;;;;3033:10:5;;3029:81;;3059:40;3087:2;3091:7;3059:27;:40::i;9141:372:2:-;-1:-1:-1;;;;;9220:16:2;;9212:61;;;;-1:-1:-1;;;9212:61:2;;11625:2:14;9212:61:2;;;11607:21:14;;;11644:18;;;11637:30;11703:34;11683:18;;;11676:62;11755:18;;9212:61:2;11597:182:14;9212:61:2;7287:4;7310:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7310:16:2;:30;9283:58;;;;-1:-1:-1;;;9283:58:2;;8015:2:14;9283:58:2;;;7997:21:14;8054:2;8034:18;;;8027:30;8093;8073:18;;;8066:58;8141:18;;9283:58:2;7987:178:14;9283:58:2;9352:45;9381:1;9385:2;9389:7;9352:20;:45::i;:::-;-1:-1:-1;;;;;9408:13:2;;;;;;:9;:13;;;;;:18;;9425:1;;9408:13;:18;;9425:1;;9408:18;:::i;:::-;;;;-1:-1:-1;;9436:16:2;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9436:21:2;-1:-1:-1;;;;;9436:21:2;;;;;;;;9473:33;;9436:16;;;9473:33;;9436:16;;9473:33;9141:372;;:::o;4600:970:5:-;4862:22;4912:1;4887:22;4904:4;4887:16;:22::i;:::-;:26;;;;:::i;:::-;4923:18;4944:26;;;:17;:26;;;;;;4862:51;;-1:-1:-1;5074:28:5;;;5070:323;;-1:-1:-1;;;;;5140:18:5;;5118:19;5140:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5189:30;;;;;;:44;;;5305:30;;:17;:30;;;;;:43;;;5070:323;-1:-1:-1;5486:26:5;;;;:17;:26;;;;;;;;5479:33;;;-1:-1:-1;;;;;5529:18:5;;;;;:12;:18;;;;;:34;;;;;;;5522:41;4600:970::o;5858:1061::-;6132:10;:17;6107:22;;6132:21;;6152:1;;6132:21;:::i;:::-;6163:18;6184:24;;;:15;:24;;;;;;6552:10;:26;;6107:46;;-1:-1:-1;6184:24:5;;6107:46;;6552:26;;;;-1:-1:-1;;;6552:26:5;;;;;;;;;;;;;;;;;6530:48;;6614:11;6589:10;6600;6589:22;;;;;;-1:-1:-1;;;6589:22:5;;;;;;;;;;;;;;;;;;;;:36;;;;6693:28;;;:15;:28;;;;;;;:41;;;6862:24;;;;;6855:31;6896:10;:16;;;;;-1:-1:-1;;;6896:16:5;;;;;;;;;;;;;;;;;;;;;;;;;;5858:1061;;;;:::o;3410:217::-;3494:14;3511:20;3528:2;3511:16;:20::i;:::-;-1:-1:-1;;;;;3541:16:5;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3585:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3410:217:5:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:14;;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:14;;;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:14;;757:42;;747:2;;813:1;810;803:12;828:196;;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;:::-;979:39;898:126;-1:-1:-1;;;898:126:14:o;1029:270::-;;;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;;;;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;;;;;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;2084:18;2076:6;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:14;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:367::-;;;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2649:5;2642:13;2635:21;2628:5;2625:32;2615:2;;2676:6;2668;2661:22;2615:2;2704:5;2694:15;;;2432:283;;;;;:::o;2720:691::-;;;;;2893:3;2881:9;2872:7;2868:23;2864:33;2861:2;;;2915:6;2907;2900:22;2861:2;2943:29;2962:9;2943:29;:::i;:::-;2933:39;;3019:2;3008:9;3004:18;2991:32;2981:42;;3070:2;3059:9;3055:18;3042:32;3032:42;;3125:2;3114:9;3110:18;3097:32;3152:18;3144:6;3141:30;3138:2;;;3189:6;3181;3174:22;3416:264;;;3545:2;3533:9;3524:7;3520:23;3516:32;3513:2;;;3566:6;3558;3551:22;3513:2;3594:29;3613:9;3594:29;:::i;:::-;3584:39;3670:2;3655:18;;;;3642:32;;-1:-1:-1;;;3503:177:14:o;3685:190::-;;3797:2;3785:9;3776:7;3772:23;3768:32;3765:2;;;3818:6;3810;3803:22;3765:2;-1:-1:-1;3846:23:14;;3755:120;-1:-1:-1;3755:120:14:o;3880:255::-;;3991:2;3979:9;3970:7;3966:23;3962:32;3959:2;;;4012:6;4004;3997:22;3959:2;4056:9;4043:23;4075:30;4099:5;4075:30;:::i;4140:259::-;;4262:2;4250:9;4241:7;4237:23;4233:32;4230:2;;;4283:6;4275;4268:22;4230:2;4320:9;4314:16;4339:30;4363:5;4339:30;:::i;4599:257::-;;4678:5;4672:12;4705:6;4700:3;4693:19;4721:63;4777:6;4770:4;4765:3;4761:14;4754:4;4747:5;4743:16;4721:63;:::i;:::-;4838:2;4817:15;-1:-1:-1;;4813:29:14;4804:39;;;;4845:4;4800:50;;4648:208;-1:-1:-1;;4648:208:14:o;4861:592::-;;-1:-1:-1;;;5219:3:14;5212:22;5263:6;5257:13;5279:61;5333:6;5329:1;5324:3;5320:11;5313:4;5305:6;5301:17;5279:61;:::i;:::-;-1:-1:-1;;;5399:1:14;5359:16;;;;5391:10;;;5384:36;-1:-1:-1;5444:2:14;5436:11;;5202:251;-1:-1:-1;5202:251:14:o;5666:488::-;-1:-1:-1;;;;;5935:15:14;;;5917:34;;5987:15;;5982:2;5967:18;;5960:43;6034:2;6019:18;;6012:34;;;6082:3;6077:2;6062:18;;6055:31;;;5666:488;;6103:45;;6128:19;;6120:6;6103:45;:::i;:::-;6095:53;5869:285;-1:-1:-1;;;;;;5869:285:14:o;6351:219::-;;6500:2;6489:9;6482:21;6520:44;6560:2;6549:9;6545:18;6537:6;6520:44;:::i;6987:414::-;7189:2;7171:21;;;7228:2;7208:18;;;7201:30;7267:34;7262:2;7247:18;;7240:62;-1:-1:-1;;;7333:2:14;7318:18;;7311:48;7391:3;7376:19;;7161:240::o;12197:356::-;12399:2;12381:21;;;12418:18;;;12411:30;12477:34;12472:2;12457:18;;12450:62;12544:2;12529:18;;12371:182::o;14189:413::-;14391:2;14373:21;;;14430:2;14410:18;;;14403:30;14469:34;14464:2;14449:18;;14442:62;-1:-1:-1;;;14535:2:14;14520:18;;14513:47;14592:3;14577:19;;14363:239::o;16376:128::-;;16447:1;16443:6;16440:1;16437:13;16434:2;;;16453:18;;:::i;:::-;-1:-1:-1;16489:9:14;;16424:80::o;16509:270::-;;16577:12;;;16605:10;;-1:-1:-1;;;16624:19:14;;16617:27;;16601:44;16598:2;;;16648:18;;:::i;:::-;-1:-1:-1;;;;;16695:27:14;;16688:35;;16680:44;;16677:2;;;16727:18;;:::i;:::-;-1:-1:-1;;16764:9:14;;16557:222::o;16784:125::-;;16852:1;16849;16846:8;16843:2;;;16857:18;;:::i;:::-;-1:-1:-1;16894:9:14;;16833:76::o;16914:258::-;16986:1;16996:113;17010:6;17007:1;17004:13;16996:113;;;17086:11;;;17080:18;17067:11;;;17060:39;17032:2;17025:10;16996:113;;;17127:6;17124:1;17121:13;17118:2;;;-1:-1:-1;;17162:1:14;17144:16;;17137:27;16967:205::o;17177:380::-;17262:1;17252:12;;17309:1;17299:12;;;17320:2;;17374:4;17366:6;17362:17;17352:27;;17320:2;17427;17419:6;17416:14;17396:18;17393:38;17390:2;;;17473:10;17468:3;17464:20;17461:1;17454:31;17508:4;17505:1;17498:15;17536:4;17533:1;17526:15;17390:2;;17232:325;;;:::o;17562:127::-;17623:10;17618:3;17614:20;17611:1;17604:31;17654:4;17651:1;17644:15;17678:4;17675:1;17668:15;17694:127;17755:10;17750:3;17746:20;17743:1;17736:31;17786:4;17783:1;17776:15;17810:4;17807:1;17800:15;17826:131;-1:-1:-1;;;;;;17900:32:14;;17890:43;;17880:2;;17947:1;17944;17937:12

Swarm Source

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