ETH Price: $3,490.61 (+0.07%)
Gas: 2 Gwei

Token

CHIMP (CHIMP)
 

Overview

Max Total Supply

202 CHIMP

Holders

138

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CHIMP
0x392fa612154ccadd6b3b34048d4de84a4e2e0d8f
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:
CHIMP

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 1 runs

Other Settings:
default evmVersion
File 1 of 14 : CHIMP.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;


import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";

contract CHIMP is ERC721Enumerable, ReentrancyGuard, Ownable {
    using Strings for uint256;
    using Strings for uint8;

    uint256 public constant DIMENSION_SIZE = 16;
    uint256 public constant PALETTE_SIZE = 4;
    uint256 public constant PIXEL_CHUNKS = 2;

    struct ImageData {
        uint256[PIXEL_CHUNKS] pixelChunks;
        uint8[PALETTE_SIZE] colors;
        address author;
    }

    ImageData[] private tokenImages;

    string[52] public palette = [
    "#00237C",
    "#0B53D7",
    "#51A5FE",
    "#B5D9FE",
    "#0D1099",
    "#3337FE",
    "#8084FE",
    "#CACAFE",
    "#300092",
    "#6621F7",
    "#BC6AFE",
    "#E3BEFE",
    "#4F006C",
    "#9515BE",
    "#F15BFE",
    "#F9B8FE",
    "#600035",
    "#AC166E",
    "#FE5EC4",
    "#FEBAE7",
    "#5C0500",
    "#A62721",
    "#FE7269",
    "#FEC3BC",
    "#461800",
    "#864300",
    "#E19321",
    "#F4D199",
    "#272D00",
    "#596200",
    "#ADB600",
    "#DEE086",
    "#093E00",
    "#2D7A00",
    "#79D300",
    "#C6EC87",
    "#004500",
    "#0C8500",
    "#51DF21",
    "#B2F29D",
    "#004106",
    "#007F2A",
    "#3AD974",
    "#A7F0C3",
    "#003545",
    "#006D85",
    "#39C3DF",
    "#A8E7F0",
    "#000000",
    "#424242",
    "#A1A1A1",
    "#FFFFFF"
    ];

    bool public mintingActive = false;

    constructor() ERC721("CHIMP", "CHIMP") Ownable() {}

    function toggleActive() public onlyOwner {
        mintingActive = !mintingActive;
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        Address.sendValue(payable(owner()), balance);
    }

    function mint(uint256[PIXEL_CHUNKS] memory pixelChunks, uint8[PALETTE_SIZE] memory colors) public payable nonReentrant {
        require(msg.value >= 0.02 ether, "Incorrect payment amount");
        require(mintingActive, "Minting is not currently active");

        for (uint8 i = 0; i < colors.length; ++i) {
            colors[i] = colors[i] % 52;
        }

        uint256 tokenId = totalSupply();

        ImageData memory data;
        data.colors = colors;
        data.pixelChunks = pixelChunks;
        data.author = msg.sender;
        tokenImages.push(data);

        _safeMint(_msgSender(), tokenId);
    }

    function imageDataForToken(uint256 tokenId) public view returns (ImageData memory) {
        require(_exists(tokenId), "SVG query for nonexistent token");
        return tokenImages[tokenId];
    }

    function tokenSVG(uint256 tokenId) public view returns (string memory) {
        require(_exists(tokenId), "SVG query for nonexistent token");
        ImageData memory imageData = tokenImages[tokenId];

        string memory output = string(
            abi.encodePacked(
                '<svg xmlns="http://www.w3.org/2000/svg" version="1.1" shape-rendering="crispEdges" viewBox="0 0 ',
                DIMENSION_SIZE.toString(),
                ' ',
                DIMENSION_SIZE.toString(),
                '">'
            )
        );

        uint256 imagePixels;
        uint256 pixel = 0;
        for (uint i = 0; i < (DIMENSION_SIZE ** 2); i++) {
            if ((i % 128) == 0) {
                imagePixels = imageData.pixelChunks[PIXEL_CHUNKS - 1 - (i / 128)];
            }

            pixel = imagePixels & 3;
            imagePixels = imagePixels >> 2;
            output = string(
                abi.encodePacked(
                    output,
                    '<rect width="1.5" height="1.5" x="',
                    (i % DIMENSION_SIZE).toString(),
                    '" y="',
                    (i / DIMENSION_SIZE).toString(),
                    '" fill="',
                    palette[imageData.colors[pixel]],
                    '" />'
                )
            );
        }

        output = string(
            abi.encodePacked(
                output,
                '</svg>'
            )
        );
        return output;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory output = tokenSVG(tokenId);
        output = string(abi.encodePacked(
                'data:image/svg+xml;base64,',
                Base64.encode(bytes(output))
            ));

        string memory json = Base64.encode(
            bytes(
                string(
                    abi.encodePacked(
                        '{"name": "CHIMP #',
                        tokenId.toString(),
                        '", "description": "Pixel art generated using CHIMP: The On-Chain Image Manipulation Program.", "image": "',
                        output,
                        '"}'
                    )
                )
            )
        );
        output = string(abi.encodePacked("data:application/json;base64,", json));

        return output;
    }
}


/// [MIT License]
/// @title Base64
/// @notice Provides a function for encoding some bytes in base64
/// @author Brecht Devos <[email protected]>
library Base64 {
    bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /// @notice Encodes some bytes to the base64 representation
    function encode(bytes memory data) internal pure returns (string memory) {
        uint256 len = data.length;
        if (len == 0) return "";

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((len + 2) / 3);

        // Add some extra buffer at the end
        bytes memory result = new bytes(encodedLen + 32);

        bytes memory table = TABLE;

        assembly {
            let tablePtr := add(table, 1)
            let resultPtr := add(result, 32)

            for {
                let i := 0
            } lt(i, len) {

            } {
                i := add(i, 3)
                let input := and(mload(add(data, i)), 0xffffff)

                let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF))
                out := shl(224, out)

                mstore(resultPtr, out)

                resultPtr := add(resultPtr, 4)
            }

            switch mod(len, 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }

            mstore(result, encodedLen)
        }

        return string(result);
    }
}

File 2 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 3 of 14 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 4 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 5 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 6 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 7 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 8 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 9 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 10 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 11 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 12 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 13 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 14 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DIMENSION_SIZE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PALETTE_SIZE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PIXEL_CHUNKS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"imageDataForToken","outputs":[{"components":[{"internalType":"uint256[2]","name":"pixelChunks","type":"uint256[2]"},{"internalType":"uint8[4]","name":"colors","type":"uint8[4]"},{"internalType":"address","name":"author","type":"address"}],"internalType":"struct CHIMP.ImageData","name":"","type":"tuple"}],"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":"uint256[2]","name":"pixelChunks","type":"uint256[2]"},{"internalType":"uint8[4]","name":"colors","type":"uint8[4]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"palette","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"toggleActive","outputs":[],"stateMutability":"nonpayable","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":"tokenSVG","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6007610700818152662330303233374360c81b610720526080908152610740828152662330423533443760c81b6107605260a052610780828152662335314135464560c81b6107a05260c0526107c0828152662342354439464560c81b6107e05260e052610800828152662330443130393960c81b6108205261010052610840828152662333333337464560c81b6108605261012052610880828152662338303834464560c81b6108a052610140526108c0828152662343414341464560c81b6108e052610160526109008281526611999818181c9960c91b6109205261018052610940828152662336363231463760c81b610960526101a052610980828152662342433641464560c81b6109a0526101c0526109c0828152662345334245464560c81b6109e0526101e052610a00828152662334463030364360c81b610a205261020052610a40828152662339353135424560c81b610a605261022052610a80828152662346313542464560c81b610aa05261024052610ac0828152662346394238464560c81b610ae05261026052610b00828152662336303030333560c81b610b205261028052610b40828152662341433136364560c81b610b60526102a052610b808281526608d1914d5150cd60ca1b610ba0526102c052610bc0828152662346454241453760c81b610be0526102e052610c00828152660233543303530360cc1b610c205261030052610c40828152662341363237323160c81b610c605261032052610c80828152662346453732363960c81b610ca05261034052610cc0828152662346454333424360c81b610ce05261036052610d00828152660233436313830360cc1b610d205261038052610d40828152660233836343330360cc1b610d60526103a052610d80828152662345313933323160c81b610da0526103c052610dc0828152662346344431393960c81b610de0526103e052610e00828152660233237324430360cc1b610e205261040052610e40828152660233539363230360cc1b610e605261042052610e80828152660234144423630360cc1b610ea05261044052610ec08281526611a222a2981c1b60c91b610ee05261046052610f00828152660233039334530360cc1b610f205261048052610f40828152660233244374130360cc1b610f60526104a052610f80828152660233739443330360cc1b610fa0526104c052610fc0828152662343364543383760c81b610fe0526104e052611000828152660233030343530360cc1b6110205261050052611040828152660233043383530360cc1b6110605261052052611080828152662335314446323160c81b6110a052610540526110c08281526608d08c918c8e5160ca1b6110e05261056052611100828152661198181a18981b60c91b6111205261058052611140828152662330303746324160c81b611160526105a0526111808281526608ccd0510e4dcd60ca1b6111a0526105c0526111c0828152662341374630433360c81b6111e0526105e052611200828152662330303335343560c81b6112205261060052611240828152662330303644383560c81b61126052610620526112808281526611999ca199a22360c91b6112a052610640526112c0828152660234138453746360cc1b6112e05261066052611300828152660233030303030360cc1b611320526106805261134082815266119a191a191a1960c91b611360526106a052611380828152662341314131413160c81b6113a0526106c0526114006040526113c09182526611a3232323232360c91b6113e0526106e0919091526200052c90600d90603462000606565b506041805460ff191690553480156200054457600080fd5b5060408051808201825260058082526404348494d560dc1b60208084018281528551808701909652928552840152815191929162000585916000916200065d565b5080516200059b9060019060208401906200065d565b50506001600a5550620005ae33620005b4565b6200079f565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82603481019282156200064b579160200282015b828111156200064b57825180516200063a9184916020909101906200065d565b50916020019190600101906200061a565b5062000659929150620006e8565b5090565b8280546200066b9062000762565b90600052602060002090601f0160209004810192826200068f5760008555620006da565b82601f10620006aa57805160ff1916838001178555620006da565b82800160010185558215620006da579182015b82811115620006da578251825591602001919060010190620006bd565b506200065992915062000709565b8082111562000659576000620006ff828262000720565b50600101620006e8565b5b808211156200065957600081556001016200070a565b5080546200072e9062000762565b6000825580601f106200073f575050565b601f0160209004906000526020600020908101906200075f919062000709565b50565b600181811c908216806200077757607f821691505b602082108114156200079957634e487b7160e01b600052602260045260246000fd5b50919050565b612d7280620007af6000396000f3fe6080604052600436106101525760003560e01c806301ffc9a71461015757806306fdde031461018c578063081812fc146101ae578063095ea7b3146101e65780630dc65adb1461020857806318160ddd1461023557806323b872dd1461025457806329c68dc1146102745780632f745c591461028957806331f9c919146102a95780633ccfd60b146102c357806342842e0e146102d85780634f6ccce7146102f85780636352211e146103185780636683363e1461033857806370a082311461034d57806370b1e5b91461036d578063715018a6146103825780638da5cb5b146103975780638e782bbb146103ac57806395d89b41146103bf5780639b2ee47f146103d45780639bac5f7a146103e95780639cb71ef814610409578063a22cb46514610429578063b88d4fde14610449578063c87b56dd14610469578063e985e9c514610489578063f2fde38b146104a9575b600080fd5b34801561016357600080fd5b506101776101723660046123f0565b6104c9565b60405190151581526020015b60405180910390f35b34801561019857600080fd5b506101a16104f4565b6040516101839190612848565b3480156101ba57600080fd5b506101ce6101c9366004612428565b610586565b6040516001600160a01b039091168152602001610183565b3480156101f257600080fd5b506102066102013660046122ff565b610613565b005b34801561021457600080fd5b50610228610223366004612428565b610724565b604051610183919061296a565b34801561024157600080fd5b506008545b604051908152602001610183565b34801561026057600080fd5b5061020661026f3660046121d3565b61082a565b34801561028057600080fd5b5061020661085b565b34801561029557600080fd5b506102466102a43660046122ff565b61089e565b3480156102b557600080fd5b506041546101779060ff1681565b3480156102cf57600080fd5b50610206610934565b3480156102e457600080fd5b506102066102f33660046121d3565b610978565b34801561030457600080fd5b50610246610313366004612428565b610993565b34801561032457600080fd5b506101ce610333366004612428565b610a34565b34801561034457600080fd5b50610246601081565b34801561035957600080fd5b50610246610368366004612180565b610aab565b34801561037957600080fd5b50610246600481565b34801561038e57600080fd5b50610206610b32565b3480156103a357600080fd5b506101ce610b6d565b6102066103ba366004612328565b610b7c565b3480156103cb57600080fd5b506101a1610dbd565b3480156103e057600080fd5b50610246600281565b3480156103f557600080fd5b506101a1610404366004612428565b610dcc565b34801561041557600080fd5b506101a1610424366004612428565b611050565b34801561043557600080fd5b506102066104443660046122c5565b6110f0565b34801561045557600080fd5b5061020661046436600461220e565b6111b1565b34801561047557600080fd5b506101a1610484366004612428565b6111e9565b34801561049557600080fd5b506101776104a43660046121a1565b6112ee565b3480156104b557600080fd5b506102066104c4366004612180565b61131c565b60006001600160e01b0319821663780e9d6360e01b14806104ee57506104ee826113b9565b92915050565b60606000805461050390612bd8565b80601f016020809104026020016040519081016040528092919081815260200182805461052f90612bd8565b801561057c5780601f106105515761010080835404028352916020019161057c565b820191906000526020600020905b81548152906001019060200180831161055f57829003601f168201915b5050505050905090565b600061059182611409565b6105f75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061061e82610a34565b9050806001600160a01b0316836001600160a01b0316141561068c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105ee565b336001600160a01b03821614806106a857506106a881336112ee565b6107155760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b60648201526084016105ee565b61071f8383611426565b505050565b61072c61201a565b61073582611409565b6107515760405162461bcd60e51b81526004016105ee906128ad565b600c828154811061077257634e487b7160e01b600052603260045260246000fd5b600091825260209091206040805160a08101909152916004020181606081018260028282826020028201915b81548152602001906001019080831161079e575050509183525050604080516080810191829052602090920191906002840190600490826000855b825461010083900a900460ff168152602060019283018181049485019490930390920291018084116107d957505050928452505050600391909101546001600160a01b031660209091015292915050565b6108343382611494565b6108505760405162461bcd60e51b81526004016105ee90612919565b61071f83838361155e565b33610864610b6d565b6001600160a01b03161461088a5760405162461bcd60e51b81526004016105ee906128e4565b6041805460ff19811660ff90911615179055565b60006108a983610aab565b821061090b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105ee565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b3361093d610b6d565b6001600160a01b0316146109635760405162461bcd60e51b81526004016105ee906128e4565b4761097561096f610b6d565b826116f7565b50565b61071f838383604051806020016040528060008152506111b1565b600061099e60085490565b8210610a015760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105ee565b60088281548110610a2257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806104ee5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105ee565b60006001600160a01b038216610b165760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105ee565b506001600160a01b031660009081526003602052604090205490565b33610b3b610b6d565b6001600160a01b031614610b615760405162461bcd60e51b81526004016105ee906128e4565b610b6b600061180d565b565b600b546001600160a01b031690565b6002600a541415610bcf5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105ee565b6002600a5566470de4df820000341015610c265760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd081c185e5b595b9d08185b5bdd5b9d60421b60448201526064016105ee565b60415460ff16610c785760405162461bcd60e51b815260206004820152601f60248201527f4d696e74696e67206973206e6f742063757272656e746c79206163746976650060448201526064016105ee565b60005b60048160ff161015610cfb576034828260ff1660048110610cac57634e487b7160e01b600052603260045260246000fd5b6020020151610cbb9190612c62565b828260ff1660048110610cde57634e487b7160e01b600052603260045260246000fd5b60ff9092166020929092020152610cf481612c2e565b9050610c7b565b506000610d0760085490565b9050610d1161201a565b60208101839052838152336040820152600c8054600181018255600091909152815182916004027fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70190610d689082906002612047565b506020820151610d7e9060028301906004612085565b5060409190910151600390910180546001600160a01b0319166001600160a01b03909216919091179055610db2338361185f565b50506001600a555050565b60606001805461050390612bd8565b6060610dd782611409565b610df35760405162461bcd60e51b81526004016105ee906128ad565b6000600c8381548110610e1657634e487b7160e01b600052603260045260246000fd5b600091825260209091206040805160a08101909152916004020181606081018260028282826020028201915b815481526020019060010190808311610e42575050509183525050604080516080810191829052602090920191906002840190600490826000855b825461010083900a900460ff16815260206001928301818104948501949093039092029101808411610e7d57505050928452505050600391909101546001600160a01b031660209091015290506000610ed6601061187d565b610ee0601061187d565b604051602001610ef19291906125e1565b60408051601f198184030181529190529050600080805b610f1460026010612acb565b81101561102457610f26608082612c4e565b610f73578451610f37608083612a74565b610f4360016002612b95565b610f4d9190612b95565b60028110610f6b57634e487b7160e01b600052603260045260246000fd5b602002015192505b600283901c92600316915083610f92610f8d601084612c4e565b61187d565b610fa0610f8d601085612a74565b600d88602001518660048110610fc657634e487b7160e01b600052603260045260246000fd5b602002015160ff1660348110610fec57634e487b7160e01b600052603260045260246000fd5b01604051602001611000949392919061246c565b6040516020818303038152906040529350808061101c90612c13565b915050610f08565b508260405160200161103691906125b7565b60408051601f198184030181529190529695505050505050565b600d816034811061106057600080fd5b01805490915061106f90612bd8565b80601f016020809104026020016040519081016040528092919081815260200182805461109b90612bd8565b80156110e85780601f106110bd576101008083540402835291602001916110e8565b820191906000526020600020905b8154815290600101906020018083116110cb57829003601f168201915b505050505081565b6001600160a01b0382163314156111455760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b60448201526064016105ee565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111bb3383611494565b6111d75760405162461bcd60e51b81526004016105ee90612919565b6111e384848484611996565b50505050565b60606111f482611409565b6112585760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105ee565b600061126383610dcc565b905061126e816119c9565b60405160200161127e91906127c9565b604051602081830303815290604052905060006112c361129d8561187d565b836040516020016112af9291906126a1565b6040516020818303038152906040526119c9565b9050806040516020016112d69190612784565b60408051601f19818403018152919052949350505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b33611325610b6d565b6001600160a01b03161461134b5760405162461bcd60e51b81526004016105ee906128e4565b6001600160a01b0381166113b05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ee565b6109758161180d565b60006001600160e01b031982166380ac58cd60e01b14806113ea57506001600160e01b03198216635b5e139f60e01b145b806104ee57506301ffc9a760e01b6001600160e01b03198316146104ee565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061145b82610a34565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061149f82611409565b6115005760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105ee565b600061150b83610a34565b9050806001600160a01b0316846001600160a01b031614806115465750836001600160a01b031661153b84610586565b6001600160a01b0316145b80611556575061155681856112ee565b949350505050565b826001600160a01b031661157182610a34565b6001600160a01b0316146115d95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105ee565b6001600160a01b03821661163b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105ee565b611646838383611b3c565b611651600082611426565b6001600160a01b038316600090815260036020526040812080546001929061167a908490612b95565b90915550506001600160a01b03821660009081526003602052604081208054600192906116a8908490612a5c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b038681169182179092559151849391871691600080516020612d1d83398151915291a4505050565b804710156117475760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016105ee565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611794576040519150601f19603f3d011682016040523d82523d6000602084013e611799565b606091505b505090508061071f5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c20726044820152791958da5c1a595b9d081b585e481a185d99481c995d995c9d195960321b60648201526084016105ee565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611879828260405180602001604052806000815250611bf4565b5050565b6060816118a15750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118cb57806118b581612c13565b91506118c49050600a83612a74565b91506118a5565b6000816001600160401b038111156118f357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561191d576020820181803683370190505b5090505b841561155657611932600183612b95565b915061193f600a86612c4e565b61194a906030612a5c565b60f81b81838151811061196d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061198f600a86612a74565b9450611921565b6119a184848461155e565b6119ad84848484611c27565b6111e35760405162461bcd60e51b81526004016105ee9061285b565b8051606090806119e9575050604080516020810190915260008152919050565b600060036119f8836002612a5c565b611a029190612a74565b611a0d906004612b76565b90506000611a1c826020612a5c565b6001600160401b03811115611a4157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a6b576020820181803683370190505b5090506000604051806060016040528060408152602001612cdd604091399050600181016020830160005b86811015611af7576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101611a96565b506003860660018114611b115760028114611b2257611b2e565b613d3d60f01b600119830152611b2e565b603d60f81b6000198301525b505050918152949350505050565b6001600160a01b038316611b9757611b9281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611bba565b816001600160a01b0316836001600160a01b031614611bba57611bba8382611d34565b6001600160a01b038216611bd15761071f81611dd1565b826001600160a01b0316826001600160a01b03161461071f5761071f8282611eaa565b611bfe8383611eee565b611c0b6000848484611c27565b61071f5760405162461bcd60e51b81526004016105ee9061285b565b60006001600160a01b0384163b15611d2957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c6b90339089908890889060040161280b565b602060405180830381600087803b158015611c8557600080fd5b505af1925050508015611cb5575060408051601f3d908101601f19168201909252611cb29181019061240c565b60015b611d0f573d808015611ce3576040519150601f19603f3d011682016040523d82523d6000602084013e611ce8565b606091505b508051611d075760405162461bcd60e51b81526004016105ee9061285b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611556565b506001949350505050565b60006001611d4184610aab565b611d4b9190612b95565b600083815260076020526040902054909150808214611d9e576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611de390600190612b95565b60008381526009602052604081205460088054939450909284908110611e1957634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611e4857634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e8e57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611eb583610aab565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611f445760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105ee565b611f4d81611409565b15611f995760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b60448201526064016105ee565b611fa560008383611b3c565b6001600160a01b0382166000908152600360205260408120805460019290611fce908490612a5c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386169081179091559051839290600080516020612d1d833981519152908290a45050565b604051806060016040528061202d612113565b815260200161203a612131565b8152600060209091015290565b8260028101928215612075579160200282015b8281111561207557825182559160200191906001019061205a565b5061208192915061214f565b5090565b6001830191839082156120755791602002820160005b838211156120d957835183826101000a81548160ff021916908360ff160217905550926020019260010160208160000104928301926001030261209b565b80156121065782816101000a81549060ff02191690556001016020816000010492830192600103026120d9565b505061208192915061214f565b60405180604001604052806002906020820280368337509192915050565b60405180608001604052806004906020820280368337509192915050565b5b808211156120815760008155600101612150565b80356001600160a01b038116811461217b57600080fd5b919050565b600060208284031215612191578081fd5b61219a82612164565b9392505050565b600080604083850312156121b3578081fd5b6121bc83612164565b91506121ca60208401612164565b90509250929050565b6000806000606084860312156121e7578081fd5b6121f084612164565b92506121fe60208501612164565b9150604084013590509250925092565b60008060008060808587031215612223578081fd5b61222c85612164565b9350602061223b818701612164565b93506040860135925060608601356001600160401b038082111561225d578384fd5b818801915088601f830112612270578384fd5b81358181111561228257612282612cb0565b612294601f8201601f19168501612a2c565b915080825289848285010111156122a9578485fd5b8084840185840137810190920192909252939692955090935050565b600080604083850312156122d7578182fd5b6122e083612164565b9150602083013580151581146122f4578182fd5b809150509250929050565b60008060408385031215612311578182fd5b61231a83612164565b946020939093013593505050565b60008060c0838503121561233a578182fd5b83601f840112612348578182fd5b6123506129e2565b80846040860187811115612362578586fd5b855b6002811015612383578235855260209485019490920191600101612364565b5082955087605f880112612395578485fd5b61239d612a0a565b9350839250905060c086018710156123b3578384fd5b835b60048110156123e357813560ff811681146123ce578586fd5b845260209384019391909101906001016123b5565b5093969095509350505050565b600060208284031215612401578081fd5b813561219a81612cc6565b60006020828403121561241d578081fd5b815161219a81612cc6565b600060208284031215612439578081fd5b5035919050565b60008151808452612458816020860160208601612bac565b601f01601f19169290920160200192915050565b60008551602061247f8285838b01612bac565b7f3c726563742077696474683d22312e3522206865696768743d22312e35222078918401918252611e9160f11b8183015286516124c281602285018a8501612bac565b6411103c9e9160d91b6022939091019283015285516124e78160278501848a01612bac565b6711103334b6361e9160c11b602793909101928301528454602f908490600181811c908083168061251957607f831692505b86831081141561253757634e487b7160e01b89526022600452602489fd5b80801561254b576001811461256057612590565b60ff1985168988015283890187019550612590565b60008c8152602090208a5b858110156125865781548b82018a015290840190890161256b565b505086848a010195505b50505050506125a981631110179f60e11b815260040190565b9a9950505050505050505050565b600082516125c9818460208701612bac565b651e17b9bb339f60d11b920191825250600601919050565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323081527f30302f737667222076657273696f6e3d22312e31222073686170652d72656e6460208201527f6572696e673d2263726973704564676573222076696577426f783d2230203020604082015260008351612665816060850160208801612bac565b600160fd1b6060918401918201528351612686816061840160208801612bac565b61111f60f11b60619290910191820152606301949350505050565b707b226e616d65223a20224348494d50202360781b815282516000906126ce816011850160208801612bac565b7f222c20226465736372697074696f6e223a2022506978656c206172742067656e6011918401918201527f657261746564207573696e67204348494d503a20546865204f6e2d436861696e60318201527f20496d616765204d616e6970756c6174696f6e2050726f6772616d2e222c202260518201526834b6b0b3b2911d101160b91b6071820152835161276981607a840160208801612bac565b61227d60f01b607a9290910191820152607c01949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516127bc81601d850160208701612bac565b91909101601d0192915050565b7919185d184e9a5b5859d94bdcdd99cade1b5b0ed8985cd94d8d0b60321b8152600082516127fe81601a850160208701612bac565b91909101601a0192915050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061283e90830184612440565b9695505050505050565b60208152600061219a6020830184612440565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601f908201527f53564720717565727920666f72206e6f6e6578697374656e7420746f6b656e00604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b815160e08201908260005b6002811015612994578251825260209283019290910190600101612975565b5050506020808401516040840160005b60048110156129c457825160ff16825291830191908301906001016129a4565b50505050604092909201516001600160a01b031660c0919091015290565b604080519081016001600160401b0381118282101715612a0457612a04612cb0565b60405290565b604051608081016001600160401b0381118282101715612a0457612a04612cb0565b604051601f8201601f191681016001600160401b0381118282101715612a5457612a54612cb0565b604052919050565b60008219821115612a6f57612a6f612c84565b500190565b600082612a8357612a83612c9a565b500490565b600181815b80851115612ac3578160001904821115612aa957612aa9612c84565b80851615612ab657918102915b93841c9390800290612a8d565b509250929050565b600061219a60ff841683600082612ae4575060016104ee565b81612af1575060006104ee565b8160018114612b075760028114612b1157612b2d565b60019150506104ee565b60ff841115612b2257612b22612c84565b50506001821b6104ee565b5060208310610133831016604e8410600b8410161715612b50575081810a6104ee565b612b5a8383612a88565b8060001904821115612b6e57612b6e612c84565b029392505050565b6000816000190483118215151615612b9057612b90612c84565b500290565b600082821015612ba757612ba7612c84565b500390565b60005b83811015612bc7578181015183820152602001612baf565b838111156111e35750506000910152565b600181811c90821680612bec57607f821691505b60208210811415612c0d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c2757612c27612c84565b5060010190565b600060ff821660ff811415612c4557612c45612c84565b60010192915050565b600082612c5d57612c5d612c9a565b500690565b600060ff831680612c7557612c75612c9a565b8060ff84160691505092915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461097557600080fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220bf7c3c5b36f891f1c50bc745435b011cfd3fc3b7ae767edb8e1d3131e3278fe764736f6c63430008040033

Deployed Bytecode

0x6080604052600436106101525760003560e01c806301ffc9a71461015757806306fdde031461018c578063081812fc146101ae578063095ea7b3146101e65780630dc65adb1461020857806318160ddd1461023557806323b872dd1461025457806329c68dc1146102745780632f745c591461028957806331f9c919146102a95780633ccfd60b146102c357806342842e0e146102d85780634f6ccce7146102f85780636352211e146103185780636683363e1461033857806370a082311461034d57806370b1e5b91461036d578063715018a6146103825780638da5cb5b146103975780638e782bbb146103ac57806395d89b41146103bf5780639b2ee47f146103d45780639bac5f7a146103e95780639cb71ef814610409578063a22cb46514610429578063b88d4fde14610449578063c87b56dd14610469578063e985e9c514610489578063f2fde38b146104a9575b600080fd5b34801561016357600080fd5b506101776101723660046123f0565b6104c9565b60405190151581526020015b60405180910390f35b34801561019857600080fd5b506101a16104f4565b6040516101839190612848565b3480156101ba57600080fd5b506101ce6101c9366004612428565b610586565b6040516001600160a01b039091168152602001610183565b3480156101f257600080fd5b506102066102013660046122ff565b610613565b005b34801561021457600080fd5b50610228610223366004612428565b610724565b604051610183919061296a565b34801561024157600080fd5b506008545b604051908152602001610183565b34801561026057600080fd5b5061020661026f3660046121d3565b61082a565b34801561028057600080fd5b5061020661085b565b34801561029557600080fd5b506102466102a43660046122ff565b61089e565b3480156102b557600080fd5b506041546101779060ff1681565b3480156102cf57600080fd5b50610206610934565b3480156102e457600080fd5b506102066102f33660046121d3565b610978565b34801561030457600080fd5b50610246610313366004612428565b610993565b34801561032457600080fd5b506101ce610333366004612428565b610a34565b34801561034457600080fd5b50610246601081565b34801561035957600080fd5b50610246610368366004612180565b610aab565b34801561037957600080fd5b50610246600481565b34801561038e57600080fd5b50610206610b32565b3480156103a357600080fd5b506101ce610b6d565b6102066103ba366004612328565b610b7c565b3480156103cb57600080fd5b506101a1610dbd565b3480156103e057600080fd5b50610246600281565b3480156103f557600080fd5b506101a1610404366004612428565b610dcc565b34801561041557600080fd5b506101a1610424366004612428565b611050565b34801561043557600080fd5b506102066104443660046122c5565b6110f0565b34801561045557600080fd5b5061020661046436600461220e565b6111b1565b34801561047557600080fd5b506101a1610484366004612428565b6111e9565b34801561049557600080fd5b506101776104a43660046121a1565b6112ee565b3480156104b557600080fd5b506102066104c4366004612180565b61131c565b60006001600160e01b0319821663780e9d6360e01b14806104ee57506104ee826113b9565b92915050565b60606000805461050390612bd8565b80601f016020809104026020016040519081016040528092919081815260200182805461052f90612bd8565b801561057c5780601f106105515761010080835404028352916020019161057c565b820191906000526020600020905b81548152906001019060200180831161055f57829003601f168201915b5050505050905090565b600061059182611409565b6105f75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061061e82610a34565b9050806001600160a01b0316836001600160a01b0316141561068c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105ee565b336001600160a01b03821614806106a857506106a881336112ee565b6107155760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b60648201526084016105ee565b61071f8383611426565b505050565b61072c61201a565b61073582611409565b6107515760405162461bcd60e51b81526004016105ee906128ad565b600c828154811061077257634e487b7160e01b600052603260045260246000fd5b600091825260209091206040805160a08101909152916004020181606081018260028282826020028201915b81548152602001906001019080831161079e575050509183525050604080516080810191829052602090920191906002840190600490826000855b825461010083900a900460ff168152602060019283018181049485019490930390920291018084116107d957505050928452505050600391909101546001600160a01b031660209091015292915050565b6108343382611494565b6108505760405162461bcd60e51b81526004016105ee90612919565b61071f83838361155e565b33610864610b6d565b6001600160a01b03161461088a5760405162461bcd60e51b81526004016105ee906128e4565b6041805460ff19811660ff90911615179055565b60006108a983610aab565b821061090b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105ee565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b3361093d610b6d565b6001600160a01b0316146109635760405162461bcd60e51b81526004016105ee906128e4565b4761097561096f610b6d565b826116f7565b50565b61071f838383604051806020016040528060008152506111b1565b600061099e60085490565b8210610a015760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105ee565b60088281548110610a2257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806104ee5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105ee565b60006001600160a01b038216610b165760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105ee565b506001600160a01b031660009081526003602052604090205490565b33610b3b610b6d565b6001600160a01b031614610b615760405162461bcd60e51b81526004016105ee906128e4565b610b6b600061180d565b565b600b546001600160a01b031690565b6002600a541415610bcf5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105ee565b6002600a5566470de4df820000341015610c265760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd081c185e5b595b9d08185b5bdd5b9d60421b60448201526064016105ee565b60415460ff16610c785760405162461bcd60e51b815260206004820152601f60248201527f4d696e74696e67206973206e6f742063757272656e746c79206163746976650060448201526064016105ee565b60005b60048160ff161015610cfb576034828260ff1660048110610cac57634e487b7160e01b600052603260045260246000fd5b6020020151610cbb9190612c62565b828260ff1660048110610cde57634e487b7160e01b600052603260045260246000fd5b60ff9092166020929092020152610cf481612c2e565b9050610c7b565b506000610d0760085490565b9050610d1161201a565b60208101839052838152336040820152600c8054600181018255600091909152815182916004027fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70190610d689082906002612047565b506020820151610d7e9060028301906004612085565b5060409190910151600390910180546001600160a01b0319166001600160a01b03909216919091179055610db2338361185f565b50506001600a555050565b60606001805461050390612bd8565b6060610dd782611409565b610df35760405162461bcd60e51b81526004016105ee906128ad565b6000600c8381548110610e1657634e487b7160e01b600052603260045260246000fd5b600091825260209091206040805160a08101909152916004020181606081018260028282826020028201915b815481526020019060010190808311610e42575050509183525050604080516080810191829052602090920191906002840190600490826000855b825461010083900a900460ff16815260206001928301818104948501949093039092029101808411610e7d57505050928452505050600391909101546001600160a01b031660209091015290506000610ed6601061187d565b610ee0601061187d565b604051602001610ef19291906125e1565b60408051601f198184030181529190529050600080805b610f1460026010612acb565b81101561102457610f26608082612c4e565b610f73578451610f37608083612a74565b610f4360016002612b95565b610f4d9190612b95565b60028110610f6b57634e487b7160e01b600052603260045260246000fd5b602002015192505b600283901c92600316915083610f92610f8d601084612c4e565b61187d565b610fa0610f8d601085612a74565b600d88602001518660048110610fc657634e487b7160e01b600052603260045260246000fd5b602002015160ff1660348110610fec57634e487b7160e01b600052603260045260246000fd5b01604051602001611000949392919061246c565b6040516020818303038152906040529350808061101c90612c13565b915050610f08565b508260405160200161103691906125b7565b60408051601f198184030181529190529695505050505050565b600d816034811061106057600080fd5b01805490915061106f90612bd8565b80601f016020809104026020016040519081016040528092919081815260200182805461109b90612bd8565b80156110e85780601f106110bd576101008083540402835291602001916110e8565b820191906000526020600020905b8154815290600101906020018083116110cb57829003601f168201915b505050505081565b6001600160a01b0382163314156111455760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b60448201526064016105ee565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111bb3383611494565b6111d75760405162461bcd60e51b81526004016105ee90612919565b6111e384848484611996565b50505050565b60606111f482611409565b6112585760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105ee565b600061126383610dcc565b905061126e816119c9565b60405160200161127e91906127c9565b604051602081830303815290604052905060006112c361129d8561187d565b836040516020016112af9291906126a1565b6040516020818303038152906040526119c9565b9050806040516020016112d69190612784565b60408051601f19818403018152919052949350505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b33611325610b6d565b6001600160a01b03161461134b5760405162461bcd60e51b81526004016105ee906128e4565b6001600160a01b0381166113b05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ee565b6109758161180d565b60006001600160e01b031982166380ac58cd60e01b14806113ea57506001600160e01b03198216635b5e139f60e01b145b806104ee57506301ffc9a760e01b6001600160e01b03198316146104ee565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061145b82610a34565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061149f82611409565b6115005760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105ee565b600061150b83610a34565b9050806001600160a01b0316846001600160a01b031614806115465750836001600160a01b031661153b84610586565b6001600160a01b0316145b80611556575061155681856112ee565b949350505050565b826001600160a01b031661157182610a34565b6001600160a01b0316146115d95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105ee565b6001600160a01b03821661163b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105ee565b611646838383611b3c565b611651600082611426565b6001600160a01b038316600090815260036020526040812080546001929061167a908490612b95565b90915550506001600160a01b03821660009081526003602052604081208054600192906116a8908490612a5c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b038681169182179092559151849391871691600080516020612d1d83398151915291a4505050565b804710156117475760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016105ee565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611794576040519150601f19603f3d011682016040523d82523d6000602084013e611799565b606091505b505090508061071f5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c20726044820152791958da5c1a595b9d081b585e481a185d99481c995d995c9d195960321b60648201526084016105ee565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611879828260405180602001604052806000815250611bf4565b5050565b6060816118a15750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118cb57806118b581612c13565b91506118c49050600a83612a74565b91506118a5565b6000816001600160401b038111156118f357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561191d576020820181803683370190505b5090505b841561155657611932600183612b95565b915061193f600a86612c4e565b61194a906030612a5c565b60f81b81838151811061196d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061198f600a86612a74565b9450611921565b6119a184848461155e565b6119ad84848484611c27565b6111e35760405162461bcd60e51b81526004016105ee9061285b565b8051606090806119e9575050604080516020810190915260008152919050565b600060036119f8836002612a5c565b611a029190612a74565b611a0d906004612b76565b90506000611a1c826020612a5c565b6001600160401b03811115611a4157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a6b576020820181803683370190505b5090506000604051806060016040528060408152602001612cdd604091399050600181016020830160005b86811015611af7576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101611a96565b506003860660018114611b115760028114611b2257611b2e565b613d3d60f01b600119830152611b2e565b603d60f81b6000198301525b505050918152949350505050565b6001600160a01b038316611b9757611b9281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611bba565b816001600160a01b0316836001600160a01b031614611bba57611bba8382611d34565b6001600160a01b038216611bd15761071f81611dd1565b826001600160a01b0316826001600160a01b03161461071f5761071f8282611eaa565b611bfe8383611eee565b611c0b6000848484611c27565b61071f5760405162461bcd60e51b81526004016105ee9061285b565b60006001600160a01b0384163b15611d2957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c6b90339089908890889060040161280b565b602060405180830381600087803b158015611c8557600080fd5b505af1925050508015611cb5575060408051601f3d908101601f19168201909252611cb29181019061240c565b60015b611d0f573d808015611ce3576040519150601f19603f3d011682016040523d82523d6000602084013e611ce8565b606091505b508051611d075760405162461bcd60e51b81526004016105ee9061285b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611556565b506001949350505050565b60006001611d4184610aab565b611d4b9190612b95565b600083815260076020526040902054909150808214611d9e576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611de390600190612b95565b60008381526009602052604081205460088054939450909284908110611e1957634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611e4857634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e8e57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611eb583610aab565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611f445760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105ee565b611f4d81611409565b15611f995760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b60448201526064016105ee565b611fa560008383611b3c565b6001600160a01b0382166000908152600360205260408120805460019290611fce908490612a5c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386169081179091559051839290600080516020612d1d833981519152908290a45050565b604051806060016040528061202d612113565b815260200161203a612131565b8152600060209091015290565b8260028101928215612075579160200282015b8281111561207557825182559160200191906001019061205a565b5061208192915061214f565b5090565b6001830191839082156120755791602002820160005b838211156120d957835183826101000a81548160ff021916908360ff160217905550926020019260010160208160000104928301926001030261209b565b80156121065782816101000a81549060ff02191690556001016020816000010492830192600103026120d9565b505061208192915061214f565b60405180604001604052806002906020820280368337509192915050565b60405180608001604052806004906020820280368337509192915050565b5b808211156120815760008155600101612150565b80356001600160a01b038116811461217b57600080fd5b919050565b600060208284031215612191578081fd5b61219a82612164565b9392505050565b600080604083850312156121b3578081fd5b6121bc83612164565b91506121ca60208401612164565b90509250929050565b6000806000606084860312156121e7578081fd5b6121f084612164565b92506121fe60208501612164565b9150604084013590509250925092565b60008060008060808587031215612223578081fd5b61222c85612164565b9350602061223b818701612164565b93506040860135925060608601356001600160401b038082111561225d578384fd5b818801915088601f830112612270578384fd5b81358181111561228257612282612cb0565b612294601f8201601f19168501612a2c565b915080825289848285010111156122a9578485fd5b8084840185840137810190920192909252939692955090935050565b600080604083850312156122d7578182fd5b6122e083612164565b9150602083013580151581146122f4578182fd5b809150509250929050565b60008060408385031215612311578182fd5b61231a83612164565b946020939093013593505050565b60008060c0838503121561233a578182fd5b83601f840112612348578182fd5b6123506129e2565b80846040860187811115612362578586fd5b855b6002811015612383578235855260209485019490920191600101612364565b5082955087605f880112612395578485fd5b61239d612a0a565b9350839250905060c086018710156123b3578384fd5b835b60048110156123e357813560ff811681146123ce578586fd5b845260209384019391909101906001016123b5565b5093969095509350505050565b600060208284031215612401578081fd5b813561219a81612cc6565b60006020828403121561241d578081fd5b815161219a81612cc6565b600060208284031215612439578081fd5b5035919050565b60008151808452612458816020860160208601612bac565b601f01601f19169290920160200192915050565b60008551602061247f8285838b01612bac565b7f3c726563742077696474683d22312e3522206865696768743d22312e35222078918401918252611e9160f11b8183015286516124c281602285018a8501612bac565b6411103c9e9160d91b6022939091019283015285516124e78160278501848a01612bac565b6711103334b6361e9160c11b602793909101928301528454602f908490600181811c908083168061251957607f831692505b86831081141561253757634e487b7160e01b89526022600452602489fd5b80801561254b576001811461256057612590565b60ff1985168988015283890187019550612590565b60008c8152602090208a5b858110156125865781548b82018a015290840190890161256b565b505086848a010195505b50505050506125a981631110179f60e11b815260040190565b9a9950505050505050505050565b600082516125c9818460208701612bac565b651e17b9bb339f60d11b920191825250600601919050565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323081527f30302f737667222076657273696f6e3d22312e31222073686170652d72656e6460208201527f6572696e673d2263726973704564676573222076696577426f783d2230203020604082015260008351612665816060850160208801612bac565b600160fd1b6060918401918201528351612686816061840160208801612bac565b61111f60f11b60619290910191820152606301949350505050565b707b226e616d65223a20224348494d50202360781b815282516000906126ce816011850160208801612bac565b7f222c20226465736372697074696f6e223a2022506978656c206172742067656e6011918401918201527f657261746564207573696e67204348494d503a20546865204f6e2d436861696e60318201527f20496d616765204d616e6970756c6174696f6e2050726f6772616d2e222c202260518201526834b6b0b3b2911d101160b91b6071820152835161276981607a840160208801612bac565b61227d60f01b607a9290910191820152607c01949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516127bc81601d850160208701612bac565b91909101601d0192915050565b7919185d184e9a5b5859d94bdcdd99cade1b5b0ed8985cd94d8d0b60321b8152600082516127fe81601a850160208701612bac565b91909101601a0192915050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061283e90830184612440565b9695505050505050565b60208152600061219a6020830184612440565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601f908201527f53564720717565727920666f72206e6f6e6578697374656e7420746f6b656e00604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b815160e08201908260005b6002811015612994578251825260209283019290910190600101612975565b5050506020808401516040840160005b60048110156129c457825160ff16825291830191908301906001016129a4565b50505050604092909201516001600160a01b031660c0919091015290565b604080519081016001600160401b0381118282101715612a0457612a04612cb0565b60405290565b604051608081016001600160401b0381118282101715612a0457612a04612cb0565b604051601f8201601f191681016001600160401b0381118282101715612a5457612a54612cb0565b604052919050565b60008219821115612a6f57612a6f612c84565b500190565b600082612a8357612a83612c9a565b500490565b600181815b80851115612ac3578160001904821115612aa957612aa9612c84565b80851615612ab657918102915b93841c9390800290612a8d565b509250929050565b600061219a60ff841683600082612ae4575060016104ee565b81612af1575060006104ee565b8160018114612b075760028114612b1157612b2d565b60019150506104ee565b60ff841115612b2257612b22612c84565b50506001821b6104ee565b5060208310610133831016604e8410600b8410161715612b50575081810a6104ee565b612b5a8383612a88565b8060001904821115612b6e57612b6e612c84565b029392505050565b6000816000190483118215151615612b9057612b90612c84565b500290565b600082821015612ba757612ba7612c84565b500390565b60005b83811015612bc7578181015183820152602001612baf565b838111156111e35750506000910152565b600181811c90821680612bec57607f821691505b60208210811415612c0d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c2757612c27612c84565b5060010190565b600060ff821660ff811415612c4557612c45612c84565b60010192915050565b600082612c5d57612c5d612c9a565b500690565b600060ff831680612c7557612c75612c9a565b8060ff84160691505092915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461097557600080fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220bf7c3c5b36f891f1c50bc745435b011cfd3fc3b7ae767edb8e1d3131e3278fe764736f6c63430008040033

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.