ETH Price: $3,240.98 (+2.21%)
Gas: 2 Gwei

Token

AncientBatz (ABATZ)
 

Overview

Max Total Supply

0 ABATZ

Holders

44

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 ABATZ
0xAda6Cbd477311409DF392F869c21f384A2d9D1ff
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AncientBatz

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 2000 runs

Other Settings:
default evmVersion
File 1 of 9 : 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 2 of 9 : 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 3 of 9 : 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 4 of 9 : 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 9 : 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 6 of 9 : AncientBatz.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.17;

import "solmate/src/tokens/ERC721.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./ERC2981.sol";

contract AncientBatz is Ownable, ERC721, ERC2981 {
  // EVENTS *****************************************************

  event ConfigUpdated(bytes32 config, bytes value);
  event ConfigLocked(bytes32 config);

  // ERRORS *****************************************************

  error InvalidConfig(bytes32 config);
  error ConfigIsLocked(bytes32 config);
  error Unauthorized();
  error InvalidToken(uint256 tokenId);

  // Storage *****************************************************

  /// @notice Maximum tokenId that can be minted
  uint256 public constant TOKEN_LIMIT = 99;

  /// @notice Address approved to mint tokens in this contract
  address public approvedMinter;

  /// @notice BaseURI for token metadata
  string public baseURI = "ipfs://bafybeiclbswvs6xpnh5mu6biljn245wtesqc6ocxck6b2ehdmnpa4dgeh4/";

  /// @notice The number of bites that each AncientBat has, pseudo-randomly assigned at mint
  mapping(uint256 => uint256) public maxBites;

  mapping(bytes32 => bool) configLocked;

  // Constructor *****************************************************

  constructor() ERC721("AncientBatz", "ABATZ") {
    _setRoyalties(0xD53A0626f891a31Ae16ae73BE0D031A7Ba88a5Fc, 750); // 7.5% royalties
  }

  // Modifiers *****************************************************

  modifier onlyApprovedMinter() {
    if (msg.sender != approvedMinter) revert Unauthorized();
    _;
  }

  // Owner Methods *****************************************************

  function updateConfig(bytes32 config, bytes calldata value) external onlyOwner {
    if (configLocked[config]) revert ConfigIsLocked(config);

    if (config == "baseURI") baseURI = abi.decode(value, (string));
    else if (config == "minter") approvedMinter = abi.decode(value, (address));
    else if (config == "royalty") {
      (address recipient, uint256 numerator) = abi.decode(value, (address, uint256));
      _setRoyalties(recipient, numerator);
    } else revert InvalidConfig(config);

    emit ConfigUpdated(config, value);
  }

  function lockConfig(bytes32 config) external onlyOwner {
    configLocked[config] = true;

    emit ConfigLocked(config);
  }

  // Restricted Methods *****************************************************

  function mint(address to, uint256 tokenId) external onlyApprovedMinter {
    if (tokenId == 0 || tokenId > TOKEN_LIMIT) revert InvalidToken(tokenId);

    _mint(to, tokenId);

    maxBites[tokenId] = getRandomBiteLimit(tokenId);
  }

  /// @dev Returns a pseudo random number between 10 and 99
  function getRandomBiteLimit(uint256 seed) private view returns (uint256) {
    uint256 number = uint256(
      keccak256(abi.encodePacked(blockhash(block.number - 1), block.coinbase, block.timestamp, seed))
    );

    return (number % 90) + 10;
  }

  // Override Methods *****************************************************

  /// @notice Returns the metadata URI for a given token
  function tokenURI(uint256 tokenId) public view override returns (string memory) {
    if (_ownerOf[tokenId] == address(0)) revert InvalidToken(tokenId);

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

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

File 7 of 9 : ERC2981.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.8;

import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
import "./IERC2981.sol";

/// @dev This is a contract used to add ERC2981 support to ERC721 and 1155
contract ERC2981 is ERC165, IERC2981 {
  struct RoyaltyInfo {
    address recipient;
    uint24 amount;
  }

  RoyaltyInfo private _royalties;

  /// @dev Sets token royalties
  /// @param recipient recipient of the royalties
  /// @param value percentage (using 2 decimals - 10000 = 100, 0 = 0)
  function _setRoyalties(address recipient, uint256 value) internal {
    require(value <= 10000, "ERC2981Royalties: Too high");
    _royalties = RoyaltyInfo(recipient, uint24(value));
  }

  /// @inheritdoc	IERC2981
  function royaltyInfo(uint256, uint256 value)
    external
    view
    override
    returns (address receiver, uint256 royaltyAmount)
  {
    RoyaltyInfo memory royalties = _royalties;
    receiver = royalties.recipient;
    royaltyAmount = (value * royalties.amount) / 10000;
  }

  /// @inheritdoc	ERC165
  function supportsInterface(bytes4 interfaceId)
    public
    view
    virtual
    override
    returns (bool)
  {
    return
      interfaceId == type(IERC2981).interfaceId ||
      super.supportsInterface(interfaceId);
  }
}

File 8 of 9 : IERC2981.sol
// SPDX-License-Identifier: None
pragma solidity ^0.8.8;

///
/// @dev Interface for the NFT Royalty Standard
///
interface IERC2981 {
  /// @notice Called with the sale price to determine how much royalty
  //          is owed and to whom.
  /// @param _tokenId - the NFT asset queried for royalty information
  /// @param _salePrice - the sale price of the NFT asset specified by _tokenId
  /// @return receiver - address of who should be sent the royalty payment
  /// @return royaltyAmount - the royalty payment amount for _salePrice
  function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
    external
    view
    returns (address receiver, uint256 royaltyAmount);
}

File 9 of 9 : ERC721.sol
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity >=0.8.0;

/// @notice Modern, minimalist, and gas efficient ERC-721 implementation.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC721.sol)
abstract contract ERC721 {
    /*//////////////////////////////////////////////////////////////
                                 EVENTS
    //////////////////////////////////////////////////////////////*/

    event Transfer(address indexed from, address indexed to, uint256 indexed id);

    event Approval(address indexed owner, address indexed spender, uint256 indexed id);

    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /*//////////////////////////////////////////////////////////////
                         METADATA STORAGE/LOGIC
    //////////////////////////////////////////////////////////////*/

    string public name;

    string public symbol;

    function tokenURI(uint256 id) public view virtual returns (string memory);

    /*//////////////////////////////////////////////////////////////
                      ERC721 BALANCE/OWNER STORAGE
    //////////////////////////////////////////////////////////////*/

    mapping(uint256 => address) internal _ownerOf;

    mapping(address => uint256) internal _balanceOf;

    function ownerOf(uint256 id) public view virtual returns (address owner) {
        require((owner = _ownerOf[id]) != address(0), "NOT_MINTED");
    }

    function balanceOf(address owner) public view virtual returns (uint256) {
        require(owner != address(0), "ZERO_ADDRESS");

        return _balanceOf[owner];
    }

    /*//////////////////////////////////////////////////////////////
                         ERC721 APPROVAL STORAGE
    //////////////////////////////////////////////////////////////*/

    mapping(uint256 => address) public getApproved;

    mapping(address => mapping(address => bool)) public isApprovedForAll;

    /*//////////////////////////////////////////////////////////////
                               CONSTRUCTOR
    //////////////////////////////////////////////////////////////*/

    constructor(string memory _name, string memory _symbol) {
        name = _name;
        symbol = _symbol;
    }

    /*//////////////////////////////////////////////////////////////
                              ERC721 LOGIC
    //////////////////////////////////////////////////////////////*/

    function approve(address spender, uint256 id) public virtual {
        address owner = _ownerOf[id];

        require(msg.sender == owner || isApprovedForAll[owner][msg.sender], "NOT_AUTHORIZED");

        getApproved[id] = spender;

        emit Approval(owner, spender, id);
    }

    function setApprovalForAll(address operator, bool approved) public virtual {
        isApprovedForAll[msg.sender][operator] = approved;

        emit ApprovalForAll(msg.sender, operator, approved);
    }

    function transferFrom(
        address from,
        address to,
        uint256 id
    ) public virtual {
        require(from == _ownerOf[id], "WRONG_FROM");

        require(to != address(0), "INVALID_RECIPIENT");

        require(
            msg.sender == from || isApprovedForAll[from][msg.sender] || msg.sender == getApproved[id],
            "NOT_AUTHORIZED"
        );

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _balanceOf[from]--;

            _balanceOf[to]++;
        }

        _ownerOf[id] = to;

        delete getApproved[id];

        emit Transfer(from, to, id);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 id
    ) public virtual {
        transferFrom(from, to, id);

        require(
            to.code.length == 0 ||
                ERC721TokenReceiver(to).onERC721Received(msg.sender, from, id, "") ==
                ERC721TokenReceiver.onERC721Received.selector,
            "UNSAFE_RECIPIENT"
        );
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        bytes calldata data
    ) public virtual {
        transferFrom(from, to, id);

        require(
            to.code.length == 0 ||
                ERC721TokenReceiver(to).onERC721Received(msg.sender, from, id, data) ==
                ERC721TokenReceiver.onERC721Received.selector,
            "UNSAFE_RECIPIENT"
        );
    }

    /*//////////////////////////////////////////////////////////////
                              ERC165 LOGIC
    //////////////////////////////////////////////////////////////*/

    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
        return
            interfaceId == 0x01ffc9a7 || // ERC165 Interface ID for ERC165
            interfaceId == 0x80ac58cd || // ERC165 Interface ID for ERC721
            interfaceId == 0x5b5e139f; // ERC165 Interface ID for ERC721Metadata
    }

    /*//////////////////////////////////////////////////////////////
                        INTERNAL MINT/BURN LOGIC
    //////////////////////////////////////////////////////////////*/

    function _mint(address to, uint256 id) internal virtual {
        require(to != address(0), "INVALID_RECIPIENT");

        require(_ownerOf[id] == address(0), "ALREADY_MINTED");

        // Counter overflow is incredibly unrealistic.
        unchecked {
            _balanceOf[to]++;
        }

        _ownerOf[id] = to;

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

    function _burn(uint256 id) internal virtual {
        address owner = _ownerOf[id];

        require(owner != address(0), "NOT_MINTED");

        // Ownership check above ensures no underflow.
        unchecked {
            _balanceOf[owner]--;
        }

        delete _ownerOf[id];

        delete getApproved[id];

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

    /*//////////////////////////////////////////////////////////////
                        INTERNAL SAFE MINT LOGIC
    //////////////////////////////////////////////////////////////*/

    function _safeMint(address to, uint256 id) internal virtual {
        _mint(to, id);

        require(
            to.code.length == 0 ||
                ERC721TokenReceiver(to).onERC721Received(msg.sender, address(0), id, "") ==
                ERC721TokenReceiver.onERC721Received.selector,
            "UNSAFE_RECIPIENT"
        );
    }

    function _safeMint(
        address to,
        uint256 id,
        bytes memory data
    ) internal virtual {
        _mint(to, id);

        require(
            to.code.length == 0 ||
                ERC721TokenReceiver(to).onERC721Received(msg.sender, address(0), id, data) ==
                ERC721TokenReceiver.onERC721Received.selector,
            "UNSAFE_RECIPIENT"
        );
    }
}

/// @notice A generic interface for a contract which properly accepts ERC721 tokens.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC721.sol)
abstract contract ERC721TokenReceiver {
    function onERC721Received(
        address,
        address,
        uint256,
        bytes calldata
    ) external virtual returns (bytes4) {
        return ERC721TokenReceiver.onERC721Received.selector;
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 2000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"bytes32","name":"config","type":"bytes32"}],"name":"ConfigIsLocked","type":"error"},{"inputs":[{"internalType":"bytes32","name":"config","type":"bytes32"}],"name":"InvalidConfig","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"InvalidToken","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","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":false,"internalType":"bytes32","name":"config","type":"bytes32"}],"name":"ConfigLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"config","type":"bytes32"},{"indexed":false,"internalType":"bytes","name":"value","type":"bytes"}],"name":"ConfigUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"TOKEN_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"approvedMinter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"config","type":"bytes32"}],"name":"lockConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"maxBites","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","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":"id","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"config","type":"bytes32"},{"internalType":"bytes","name":"value","type":"bytes"}],"name":"updateConfig","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61010060405260436080818152906200206260a03960099062000023908262000276565b503480156200003157600080fd5b506040518060400160405280600b81526020016a20b731b4b2b73a2130ba3d60a91b8152506040518060400160405280600581526020016420a120aa2d60d91b8152506200008e62000088620000dc60201b60201c565b620000e0565b60016200009c838262000276565b506002620000ab828262000276565b505050620000d673d53a0626f891a31ae16ae73be0d031a7ba88a5fc6102ee6200013060201b60201c565b62000342565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612710811115620001875760405162461bcd60e51b815260206004820152601a60248201527f45524332393831526f79616c746965733a20546f6f2068696768000000000000604482015260640160405180910390fd5b604080518082019091526001600160a01b0390921680835262ffffff909116602090920182905260078054600160a01b9093026001600160b81b0319909316909117919091179055565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001fc57607f821691505b6020821081036200021d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200027157600081815260208120601f850160051c810160208610156200024c5750805b601f850160051c820191505b818110156200026d5782815560010162000258565b5050505b505050565b81516001600160401b03811115620002925762000292620001d1565b620002aa81620002a38454620001e7565b8462000223565b602080601f831160018114620002e25760008415620002c95750858301515b600019600386901b1c1916600185901b1785556200026d565b600085815260208120601f198616915b828110156200031357888601518255948401946001909101908401620002f2565b5085821015620003325787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611d1080620003526000396000f3fe608060405234801561001057600080fd5b50600436106101985760003560e01c806370a08231116100e3578063a22cb4651161008c578063d33cf2ed11610066578063d33cf2ed14610372578063e985e9c514610392578063f2fde38b146103c057600080fd5b8063a22cb46514610339578063b88d4fde1461034c578063c87b56dd1461035f57600080fd5b806395d89b41116100bd57806395d89b411461030b5780639bb45355146103135780639be4f8b91461032657600080fd5b806370a08231146102df578063715018a6146102f25780638da5cb5b146102fa57600080fd5b80632a55205a11610145578063554eeb441161011f578063554eeb44146102b15780636352211e146102c45780636c0360eb146102d757600080fd5b80632a55205a1461025957806340c10f191461028b57806342842e0e1461029e57600080fd5b8063081812fc11610176578063081812fc146101f0578063095ea7b31461023157806323b872dd1461024657600080fd5b806301ffc9a71461019d578063031bd4c4146101c557806306fdde03146101db575b600080fd5b6101b06101ab366004611618565b6103d3565b60405190151581526020015b60405180910390f35b6101cd606381565b6040519081526020016101bc565b6101e36103f3565b6040516101bc9190611659565b6102196101fe36600461168c565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b0390911681526020016101bc565b61024461023f3660046116ba565b610481565b005b6102446102543660046116e6565b610584565b61026c610267366004611727565b610786565b604080516001600160a01b0390931683526020830191909152016101bc565b6102446102993660046116ba565b6107ec565b6102446102ac3660046116e6565b61089d565b6102446102bf36600461168c565b6109bb565b6102196102d236600461168c565b610a6b565b6101e3610ad5565b6101cd6102ed366004611749565b610ae2565b610244610b56565b6000546001600160a01b0316610219565b6101e3610bbc565b6102446103213660046117af565b610bc9565b600854610219906001600160a01b031681565b6102446103473660046117fb565b610dda565b61024461035a366004611839565b610e46565b6101e361036d36600461168c565b610f54565b6101cd61038036600461168c565b600a6020526000908152604090205481565b6101b06103a03660046118ac565b600660209081526000928352604080842090915290825290205460ff1681565b6102446103ce366004611749565b611004565b60006103de826110e6565b806103ed57506103ed8261117f565b92915050565b60018054610400906118da565b80601f016020809104026020016040519081016040528092919081815260200182805461042c906118da565b80156104795780601f1061044e57610100808354040283529160200191610479565b820191906000526020600020905b81548152906001019060200180831161045c57829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b0316338114806104ca57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b61051b5760405162461bcd60e51b815260206004820152600e60248201527f4e4f545f415554484f52495a454400000000000000000000000000000000000060448201526064015b60405180910390fd5b600082815260056020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000818152600360205260409020546001600160a01b038481169116146105ed5760405162461bcd60e51b815260206004820152600a60248201527f57524f4e475f46524f4d000000000000000000000000000000000000000000006044820152606401610512565b6001600160a01b0382166106435760405162461bcd60e51b815260206004820152601160248201527f494e56414c49445f524543495049454e540000000000000000000000000000006044820152606401610512565b336001600160a01b038416148061067d57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b8061069e57506000818152600560205260409020546001600160a01b031633145b6106ea5760405162461bcd60e51b815260206004820152600e60248201527f4e4f545f415554484f52495a45440000000000000000000000000000000000006044820152606401610512565b6001600160a01b03808416600081815260046020908152604080832080546000190190559386168083528483208054600101905585835260038252848320805473ffffffffffffffffffffffffffffffffffffffff199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b604080518082019091526007546001600160a01b0381168083527401000000000000000000000000000000000000000090910462ffffff16602083018190529091600091612710906107d8908661192a565b6107e29190611957565b9150509250929050565b6008546001600160a01b03163314610830576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80158061083d5750606381115b15610877576040517f925d6b1800000000000000000000000000000000000000000000000000000000815260048101829052602401610512565b61088182826111e6565b61088a81611319565b6000918252600a60205260409091205550565b6108a8838383610584565b6001600160a01b0382163b158061096a57506040517f150b7a02000000000000000000000000000000000000000000000000000000008082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af115801561093a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095e919061196b565b6001600160e01b031916145b6109b65760405162461bcd60e51b815260206004820152601060248201527f554e534146455f524543495049454e54000000000000000000000000000000006044820152606401610512565b505050565b6000546001600160a01b03163314610a155760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610512565b6000818152600b602052604090819020805460ff19166001179055517fb73325293ffcbb80af24eb5aa6879b3f1fa93525b583a5e6d8764ab337f9d18590610a609083815260200190565b60405180910390a150565b6000818152600360205260409020546001600160a01b031680610ad05760405162461bcd60e51b815260206004820152600a60248201527f4e4f545f4d494e544544000000000000000000000000000000000000000000006044820152606401610512565b919050565b60098054610400906118da565b60006001600160a01b038216610b3a5760405162461bcd60e51b815260206004820152600c60248201527f5a45524f5f4144445245535300000000000000000000000000000000000000006044820152606401610512565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610bb05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610512565b610bba60006113a3565b565b60028054610400906118da565b6000546001600160a01b03163314610c235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610512565b6000838152600b602052604090205460ff1615610c6f576040517f06d4e75c00000000000000000000000000000000000000000000000000000000815260048101849052602401610512565b827f626173655552490000000000000000000000000000000000000000000000000003610cb557610ca28183018361199e565b600990610caf9082611a9d565b50610d9a565b827f6d696e746572000000000000000000000000000000000000000000000000000003610d1a57610ce881830183611749565b6008805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055610d9a565b827f726f79616c74790000000000000000000000000000000000000000000000000003610d6557600080610d50838501856116ba565b91509150610d5e8282611400565b5050610d9a565b6040517ffd2cc74600000000000000000000000000000000000000000000000000000000815260048101849052602401610512565b7fd97d1d65f3cae3537cf4c61e688583d89aae53d8b32accdfe7cb189e65ef34c7838383604051610dcd93929190611b88565b60405180910390a1505050565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e51858585610584565b6001600160a01b0384163b1580610f0157506040517f150b7a0200000000000000000000000000000000000000000000000000000000808252906001600160a01b0386169063150b7a0290610eb29033908a90899089908990600401611bab565b6020604051808303816000875af1158015610ed1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef5919061196b565b6001600160e01b031916145b610f4d5760405162461bcd60e51b815260206004820152601060248201527f554e534146455f524543495049454e54000000000000000000000000000000006044820152606401610512565b5050505050565b6000818152600360205260409020546060906001600160a01b0316610fa8576040517f925d6b1800000000000000000000000000000000000000000000000000000000815260048101839052602401610512565b600060098054610fb7906118da565b905011610fd357604051806020016040528060008152506103ed565b6009610fde836114c5565b604051602001610fef929190611be9565b60405160208183030381529060405292915050565b6000546001600160a01b0316331461105e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610512565b6001600160a01b0381166110da5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610512565b6110e3816113a3565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316148061114957507f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b806103ed5750506001600160e01b0319167f5b5e139f000000000000000000000000000000000000000000000000000000001490565b60006001600160e01b031982167f2a55205a0000000000000000000000000000000000000000000000000000000014806103ed57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146103ed565b6001600160a01b03821661123c5760405162461bcd60e51b815260206004820152601160248201527f494e56414c49445f524543495049454e540000000000000000000000000000006044820152606401610512565b6000818152600360205260409020546001600160a01b0316156112a15760405162461bcd60e51b815260206004820152600e60248201527f414c52454144595f4d494e5445440000000000000000000000000000000000006044820152606401610512565b6001600160a01b0382166000818152600460209081526040808320805460010190558483526003909152808220805473ffffffffffffffffffffffffffffffffffffffff19168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600080611327600143611c70565b60408051914060208301527fffffffffffffffffffffffffffffffffffffffff0000000000000000000000004160601b16908201524260548201526074810184905260940160408051601f1981840301815291905280516020909101209050611391605a82611c83565b61139c90600a611c97565b9392505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6127108111156114525760405162461bcd60e51b815260206004820152601a60248201527f45524332393831526f79616c746965733a20546f6f20686967680000000000006044820152606401610512565b604080518082019091526001600160a01b0390921680835262ffffff909116602090920182905260078054740100000000000000000000000000000000000000009093027fffffffffffffffffff0000000000000000000000000000000000000000000000909316909117919091179055565b60608160000361150857505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611532578061151c81611caa565b915061152b9050600a83611957565b915061150c565b60008167ffffffffffffffff81111561154d5761154d611988565b6040519080825280601f01601f191660200182016040528015611577576020820181803683370190505b5090505b84156115fa5761158c600183611c70565b9150611599600a86611c83565b6115a4906030611c97565b60f81b8183815181106115b9576115b9611cc4565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506115f3600a86611957565b945061157b565b949350505050565b6001600160e01b0319811681146110e357600080fd5b60006020828403121561162a57600080fd5b813561139c81611602565b60005b83811015611650578181015183820152602001611638565b50506000910152565b6020815260008251806020840152611678816040850160208701611635565b601f01601f19169190910160400192915050565b60006020828403121561169e57600080fd5b5035919050565b6001600160a01b03811681146110e357600080fd5b600080604083850312156116cd57600080fd5b82356116d8816116a5565b946020939093013593505050565b6000806000606084860312156116fb57600080fd5b8335611706816116a5565b92506020840135611716816116a5565b929592945050506040919091013590565b6000806040838503121561173a57600080fd5b50508035926020909101359150565b60006020828403121561175b57600080fd5b813561139c816116a5565b60008083601f84011261177857600080fd5b50813567ffffffffffffffff81111561179057600080fd5b6020830191508360208285010111156117a857600080fd5b9250929050565b6000806000604084860312156117c457600080fd5b83359250602084013567ffffffffffffffff8111156117e257600080fd5b6117ee86828701611766565b9497909650939450505050565b6000806040838503121561180e57600080fd5b8235611819816116a5565b91506020830135801515811461182e57600080fd5b809150509250929050565b60008060008060006080868803121561185157600080fd5b853561185c816116a5565b9450602086013561186c816116a5565b935060408601359250606086013567ffffffffffffffff81111561188f57600080fd5b61189b88828901611766565b969995985093965092949392505050565b600080604083850312156118bf57600080fd5b82356118ca816116a5565b9150602083013561182e816116a5565b600181811c908216806118ee57607f821691505b60208210810361190e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176103ed576103ed611914565b634e487b7160e01b600052601260045260246000fd5b60008261196657611966611941565b500490565b60006020828403121561197d57600080fd5b815161139c81611602565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156119b057600080fd5b813567ffffffffffffffff808211156119c857600080fd5b818401915084601f8301126119dc57600080fd5b8135818111156119ee576119ee611988565b604051601f8201601f19908116603f01168101908382118183101715611a1657611a16611988565b81604052828152876020848701011115611a2f57600080fd5b826020860160208301376000928101602001929092525095945050505050565b601f8211156109b657600081815260208120601f850160051c81016020861015611a765750805b601f850160051c820191505b81811015611a9557828155600101611a82565b505050505050565b815167ffffffffffffffff811115611ab757611ab7611988565b611acb81611ac584546118da565b84611a4f565b602080601f831160018114611b005760008415611ae85750858301515b600019600386901b1c1916600185901b178555611a95565b600085815260208120601f198616915b82811015611b2f57888601518255948401946001909101908401611b10565b5085821015611b4d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b818352818160208501375060006020828401015260006020601f19601f840116840101905092915050565b838152604060208201526000611ba2604083018486611b5d565b95945050505050565b60006001600160a01b03808816835280871660208401525084604083015260806060830152611bde608083018486611b5d565b979650505050505050565b6000808454611bf7816118da565b60018281168015611c0f5760018114611c2457611c53565b60ff1984168752821515830287019450611c53565b8860005260208060002060005b85811015611c4a5781548a820152908401908201611c31565b50505082870194505b505050508351611c67818360208801611635565b01949350505050565b818103818111156103ed576103ed611914565b600082611c9257611c92611941565b500690565b808201808211156103ed576103ed611914565b60006000198203611cbd57611cbd611914565b5060010190565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220491a96f7d60454cf2a080874f4ade476bca4a3c442683a794a4806f46062c0df64736f6c63430008110033697066733a2f2f62616679626569636c62737776733678706e68356d753662696c6a6e323435777465737163366f6378636b3662326568646d6e70613464676568342f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101985760003560e01c806370a08231116100e3578063a22cb4651161008c578063d33cf2ed11610066578063d33cf2ed14610372578063e985e9c514610392578063f2fde38b146103c057600080fd5b8063a22cb46514610339578063b88d4fde1461034c578063c87b56dd1461035f57600080fd5b806395d89b41116100bd57806395d89b411461030b5780639bb45355146103135780639be4f8b91461032657600080fd5b806370a08231146102df578063715018a6146102f25780638da5cb5b146102fa57600080fd5b80632a55205a11610145578063554eeb441161011f578063554eeb44146102b15780636352211e146102c45780636c0360eb146102d757600080fd5b80632a55205a1461025957806340c10f191461028b57806342842e0e1461029e57600080fd5b8063081812fc11610176578063081812fc146101f0578063095ea7b31461023157806323b872dd1461024657600080fd5b806301ffc9a71461019d578063031bd4c4146101c557806306fdde03146101db575b600080fd5b6101b06101ab366004611618565b6103d3565b60405190151581526020015b60405180910390f35b6101cd606381565b6040519081526020016101bc565b6101e36103f3565b6040516101bc9190611659565b6102196101fe36600461168c565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b0390911681526020016101bc565b61024461023f3660046116ba565b610481565b005b6102446102543660046116e6565b610584565b61026c610267366004611727565b610786565b604080516001600160a01b0390931683526020830191909152016101bc565b6102446102993660046116ba565b6107ec565b6102446102ac3660046116e6565b61089d565b6102446102bf36600461168c565b6109bb565b6102196102d236600461168c565b610a6b565b6101e3610ad5565b6101cd6102ed366004611749565b610ae2565b610244610b56565b6000546001600160a01b0316610219565b6101e3610bbc565b6102446103213660046117af565b610bc9565b600854610219906001600160a01b031681565b6102446103473660046117fb565b610dda565b61024461035a366004611839565b610e46565b6101e361036d36600461168c565b610f54565b6101cd61038036600461168c565b600a6020526000908152604090205481565b6101b06103a03660046118ac565b600660209081526000928352604080842090915290825290205460ff1681565b6102446103ce366004611749565b611004565b60006103de826110e6565b806103ed57506103ed8261117f565b92915050565b60018054610400906118da565b80601f016020809104026020016040519081016040528092919081815260200182805461042c906118da565b80156104795780601f1061044e57610100808354040283529160200191610479565b820191906000526020600020905b81548152906001019060200180831161045c57829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b0316338114806104ca57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b61051b5760405162461bcd60e51b815260206004820152600e60248201527f4e4f545f415554484f52495a454400000000000000000000000000000000000060448201526064015b60405180910390fd5b600082815260056020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000818152600360205260409020546001600160a01b038481169116146105ed5760405162461bcd60e51b815260206004820152600a60248201527f57524f4e475f46524f4d000000000000000000000000000000000000000000006044820152606401610512565b6001600160a01b0382166106435760405162461bcd60e51b815260206004820152601160248201527f494e56414c49445f524543495049454e540000000000000000000000000000006044820152606401610512565b336001600160a01b038416148061067d57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b8061069e57506000818152600560205260409020546001600160a01b031633145b6106ea5760405162461bcd60e51b815260206004820152600e60248201527f4e4f545f415554484f52495a45440000000000000000000000000000000000006044820152606401610512565b6001600160a01b03808416600081815260046020908152604080832080546000190190559386168083528483208054600101905585835260038252848320805473ffffffffffffffffffffffffffffffffffffffff199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b604080518082019091526007546001600160a01b0381168083527401000000000000000000000000000000000000000090910462ffffff16602083018190529091600091612710906107d8908661192a565b6107e29190611957565b9150509250929050565b6008546001600160a01b03163314610830576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80158061083d5750606381115b15610877576040517f925d6b1800000000000000000000000000000000000000000000000000000000815260048101829052602401610512565b61088182826111e6565b61088a81611319565b6000918252600a60205260409091205550565b6108a8838383610584565b6001600160a01b0382163b158061096a57506040517f150b7a02000000000000000000000000000000000000000000000000000000008082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af115801561093a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095e919061196b565b6001600160e01b031916145b6109b65760405162461bcd60e51b815260206004820152601060248201527f554e534146455f524543495049454e54000000000000000000000000000000006044820152606401610512565b505050565b6000546001600160a01b03163314610a155760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610512565b6000818152600b602052604090819020805460ff19166001179055517fb73325293ffcbb80af24eb5aa6879b3f1fa93525b583a5e6d8764ab337f9d18590610a609083815260200190565b60405180910390a150565b6000818152600360205260409020546001600160a01b031680610ad05760405162461bcd60e51b815260206004820152600a60248201527f4e4f545f4d494e544544000000000000000000000000000000000000000000006044820152606401610512565b919050565b60098054610400906118da565b60006001600160a01b038216610b3a5760405162461bcd60e51b815260206004820152600c60248201527f5a45524f5f4144445245535300000000000000000000000000000000000000006044820152606401610512565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610bb05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610512565b610bba60006113a3565b565b60028054610400906118da565b6000546001600160a01b03163314610c235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610512565b6000838152600b602052604090205460ff1615610c6f576040517f06d4e75c00000000000000000000000000000000000000000000000000000000815260048101849052602401610512565b827f626173655552490000000000000000000000000000000000000000000000000003610cb557610ca28183018361199e565b600990610caf9082611a9d565b50610d9a565b827f6d696e746572000000000000000000000000000000000000000000000000000003610d1a57610ce881830183611749565b6008805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055610d9a565b827f726f79616c74790000000000000000000000000000000000000000000000000003610d6557600080610d50838501856116ba565b91509150610d5e8282611400565b5050610d9a565b6040517ffd2cc74600000000000000000000000000000000000000000000000000000000815260048101849052602401610512565b7fd97d1d65f3cae3537cf4c61e688583d89aae53d8b32accdfe7cb189e65ef34c7838383604051610dcd93929190611b88565b60405180910390a1505050565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e51858585610584565b6001600160a01b0384163b1580610f0157506040517f150b7a0200000000000000000000000000000000000000000000000000000000808252906001600160a01b0386169063150b7a0290610eb29033908a90899089908990600401611bab565b6020604051808303816000875af1158015610ed1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef5919061196b565b6001600160e01b031916145b610f4d5760405162461bcd60e51b815260206004820152601060248201527f554e534146455f524543495049454e54000000000000000000000000000000006044820152606401610512565b5050505050565b6000818152600360205260409020546060906001600160a01b0316610fa8576040517f925d6b1800000000000000000000000000000000000000000000000000000000815260048101839052602401610512565b600060098054610fb7906118da565b905011610fd357604051806020016040528060008152506103ed565b6009610fde836114c5565b604051602001610fef929190611be9565b60405160208183030381529060405292915050565b6000546001600160a01b0316331461105e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610512565b6001600160a01b0381166110da5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610512565b6110e3816113a3565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316148061114957507f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b806103ed5750506001600160e01b0319167f5b5e139f000000000000000000000000000000000000000000000000000000001490565b60006001600160e01b031982167f2a55205a0000000000000000000000000000000000000000000000000000000014806103ed57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146103ed565b6001600160a01b03821661123c5760405162461bcd60e51b815260206004820152601160248201527f494e56414c49445f524543495049454e540000000000000000000000000000006044820152606401610512565b6000818152600360205260409020546001600160a01b0316156112a15760405162461bcd60e51b815260206004820152600e60248201527f414c52454144595f4d494e5445440000000000000000000000000000000000006044820152606401610512565b6001600160a01b0382166000818152600460209081526040808320805460010190558483526003909152808220805473ffffffffffffffffffffffffffffffffffffffff19168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600080611327600143611c70565b60408051914060208301527fffffffffffffffffffffffffffffffffffffffff0000000000000000000000004160601b16908201524260548201526074810184905260940160408051601f1981840301815291905280516020909101209050611391605a82611c83565b61139c90600a611c97565b9392505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6127108111156114525760405162461bcd60e51b815260206004820152601a60248201527f45524332393831526f79616c746965733a20546f6f20686967680000000000006044820152606401610512565b604080518082019091526001600160a01b0390921680835262ffffff909116602090920182905260078054740100000000000000000000000000000000000000009093027fffffffffffffffffff0000000000000000000000000000000000000000000000909316909117919091179055565b60608160000361150857505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611532578061151c81611caa565b915061152b9050600a83611957565b915061150c565b60008167ffffffffffffffff81111561154d5761154d611988565b6040519080825280601f01601f191660200182016040528015611577576020820181803683370190505b5090505b84156115fa5761158c600183611c70565b9150611599600a86611c83565b6115a4906030611c97565b60f81b8183815181106115b9576115b9611cc4565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506115f3600a86611957565b945061157b565b949350505050565b6001600160e01b0319811681146110e357600080fd5b60006020828403121561162a57600080fd5b813561139c81611602565b60005b83811015611650578181015183820152602001611638565b50506000910152565b6020815260008251806020840152611678816040850160208701611635565b601f01601f19169190910160400192915050565b60006020828403121561169e57600080fd5b5035919050565b6001600160a01b03811681146110e357600080fd5b600080604083850312156116cd57600080fd5b82356116d8816116a5565b946020939093013593505050565b6000806000606084860312156116fb57600080fd5b8335611706816116a5565b92506020840135611716816116a5565b929592945050506040919091013590565b6000806040838503121561173a57600080fd5b50508035926020909101359150565b60006020828403121561175b57600080fd5b813561139c816116a5565b60008083601f84011261177857600080fd5b50813567ffffffffffffffff81111561179057600080fd5b6020830191508360208285010111156117a857600080fd5b9250929050565b6000806000604084860312156117c457600080fd5b83359250602084013567ffffffffffffffff8111156117e257600080fd5b6117ee86828701611766565b9497909650939450505050565b6000806040838503121561180e57600080fd5b8235611819816116a5565b91506020830135801515811461182e57600080fd5b809150509250929050565b60008060008060006080868803121561185157600080fd5b853561185c816116a5565b9450602086013561186c816116a5565b935060408601359250606086013567ffffffffffffffff81111561188f57600080fd5b61189b88828901611766565b969995985093965092949392505050565b600080604083850312156118bf57600080fd5b82356118ca816116a5565b9150602083013561182e816116a5565b600181811c908216806118ee57607f821691505b60208210810361190e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176103ed576103ed611914565b634e487b7160e01b600052601260045260246000fd5b60008261196657611966611941565b500490565b60006020828403121561197d57600080fd5b815161139c81611602565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156119b057600080fd5b813567ffffffffffffffff808211156119c857600080fd5b818401915084601f8301126119dc57600080fd5b8135818111156119ee576119ee611988565b604051601f8201601f19908116603f01168101908382118183101715611a1657611a16611988565b81604052828152876020848701011115611a2f57600080fd5b826020860160208301376000928101602001929092525095945050505050565b601f8211156109b657600081815260208120601f850160051c81016020861015611a765750805b601f850160051c820191505b81811015611a9557828155600101611a82565b505050505050565b815167ffffffffffffffff811115611ab757611ab7611988565b611acb81611ac584546118da565b84611a4f565b602080601f831160018114611b005760008415611ae85750858301515b600019600386901b1c1916600185901b178555611a95565b600085815260208120601f198616915b82811015611b2f57888601518255948401946001909101908401611b10565b5085821015611b4d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b818352818160208501375060006020828401015260006020601f19601f840116840101905092915050565b838152604060208201526000611ba2604083018486611b5d565b95945050505050565b60006001600160a01b03808816835280871660208401525084604083015260806060830152611bde608083018486611b5d565b979650505050505050565b6000808454611bf7816118da565b60018281168015611c0f5760018114611c2457611c53565b60ff1984168752821515830287019450611c53565b8860005260208060002060005b85811015611c4a5781548a820152908401908201611c31565b50505082870194505b505050508351611c67818360208801611635565b01949350505050565b818103818111156103ed576103ed611914565b600082611c9257611c92611941565b500690565b808201808211156103ed576103ed611914565b60006000198203611cbd57611cbd611914565b5060010190565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220491a96f7d60454cf2a080874f4ade476bca4a3c442683a794a4806f46062c0df64736f6c63430008110033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.