ETH Price: $3,164.96 (+1.18%)
Gas: 2 Gwei

CowZstory M Series (COW.M)
 

Overview

TokenID

40

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
CowZstory

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
london EvmVersion
File 1 of 16 : CowZstory.sol
// SPDX-License-Identifier: MIT
/*
  ______                           ________              __
 /      \                         |        \            |  \
|  $$$$$$\  ______   __   __   __  \$$$$$$$$  _______  _| $$_     ______    ______   __    __
| $$   \$$ /      \ |  \ |  \ |  \    /  $$  /       \|   $$ \   /      \  /      \ |  \  |  \
| $$      |  $$$$$$\| $$ | $$ | $$   /  $$  |  $$$$$$$ \$$$$$$  |  $$$$$$\|  $$$$$$\| $$  | $$
| $$   __ | $$  | $$| $$ | $$ | $$  /  $$    \$$    \   | $$ __ | $$  | $$| $$   \$$| $$  | $$
| $$__/  \| $$__/ $$| $$_/ $$_/ $$ /  $$___  _\$$$$$$\  | $$|  \| $$__/ $$| $$      | $$__/ $$
 \$$    $$ \$$    $$ \$$   $$   $$|  $$    \|       $$   \$$  $$ \$$    $$| $$       \$$    $$
  \$$$$$$   \$$$$$$   \$$$$$\$$$$  \$$$$$$$$ \$$$$$$$     \$$$$   \$$$$$$  \$$       _\$$$$$$$
                                                                                    |  \__| $$
                                                                                     \$$    $$
                                                                                      \$$$$$$
*/

pragma solidity ^0.8.13;

import "@openzeppelin/contracts/access/Ownable.sol";
import "./lib/ERC721Enumerable.sol";
import './lib/base64.sol';
import "./IMetadata.sol";

contract CowZstory is ERC721Enumerable, Ownable {
    IMetadata public metadata;
    bool public canMint = false;
    bool public canSetMetadata = true;
    bool public canSetOwners = true;

    uint256 public constant MAX_SUPPLY = 3001;
    uint256 public constant MAX_PER_TRX = 31;

    constructor(IMetadata newMetadata)  ERC721("CowZstory M Series", "COW.M") {
        metadata = newMetadata;
    }

    function mint(uint256 count) external {
        require(canMint, "Minting needs to be enabled to start minting");
        require(count < MAX_PER_TRX, "Exceeds max per transaction.");

        _mintMany(count);
    }

    function toggleMinting() external onlyOwner {
        canMint = !canMint;
    }

    function setMetadata(IMetadata newMetadata) external onlyOwner {
        require(canSetMetadata, "Metadata can no longer be updated");
        metadata = newMetadata;
    }

    function withdraw() external payable onlyOwner {
        (bool os,)= payable(owner()).call{value: address(this).balance}("");
        require(os);
    }

    function burn(uint256 tokenId) public {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "Not approved to burn.");
        _burn(tokenId);
    }

    function tokenURI(uint256 tokenId) public view returns (string memory) {
        require(_exists(tokenId), "Cow does not exist.");
        return metadata.tokenURI(tokenId);
    }

    function disableMetadataUpdate() external onlyOwner {
        canSetMetadata = false;
    }

    function _mintMany(uint256 count) private {
        uint256 nextTokenId = _owners.length;
        unchecked {
            require(nextTokenId + count < MAX_SUPPLY, "Exceeds max supply.");
        }

        for (uint256 i; i < count;) {
            _mint(_msgSender(), nextTokenId);
            unchecked { ++nextTokenId; ++i; }
        }
    }
}

File 2 of 16 : base64.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0;

/// @title Base64
/// @author Brecht Devos - <[email protected]>
/// @notice Provides functions for encoding/decoding base64
library Base64 {
    string internal constant TABLE_ENCODE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
    bytes  internal constant TABLE_DECODE = hex"0000000000000000000000000000000000000000000000000000000000000000"
    hex"00000000000000000000003e0000003f3435363738393a3b3c3d000000000000"
    hex"00000102030405060708090a0b0c0d0e0f101112131415161718190000000000"
    hex"001a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132330000000000";

    function encode(bytes memory data) internal pure returns (string memory) {
        if (data.length == 0) return '';

        // load the table into memory
        string memory table = TABLE_ENCODE;

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

        // add some extra buffer at the end required for the writing
        string memory result = new string(encodedLen + 32);

        assembly {
        // set the actual output length
            mstore(result, encodedLen)

        // prepare the lookup table
            let tablePtr := add(table, 1)

        // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

        // result ptr, jump over length
            let resultPtr := add(result, 32)

        // run over the input, 3 bytes at a time
            for {} lt(dataPtr, endPtr) {}
            {
            // read 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

            // write 4 characters
                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr( 6, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(        input,  0x3F))))
                resultPtr := add(resultPtr, 1)
            }

        // padding with '='
            switch mod(mload(data), 3)
            case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) }
            case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) }
        }

        return result;
    }

    function decode(string memory _data) internal pure returns (bytes memory) {
        bytes memory data = bytes(_data);

        if (data.length == 0) return new bytes(0);
        require(data.length % 4 == 0, "invalid base64 decoder input");

        // load the table into memory
        bytes memory table = TABLE_DECODE;

        // every 4 characters represent 3 bytes
        uint256 decodedLen = (data.length / 4) * 3;

        // add some extra buffer at the end required for the writing
        bytes memory result = new bytes(decodedLen + 32);

        assembly {
        // padding with '='
            let lastBytes := mload(add(data, mload(data)))
            if eq(and(lastBytes, 0xFF), 0x3d) {
                decodedLen := sub(decodedLen, 1)
                if eq(and(lastBytes, 0xFFFF), 0x3d3d) {
                    decodedLen := sub(decodedLen, 1)
                }
            }

        // set the actual output length
            mstore(result, decodedLen)

        // prepare the lookup table
            let tablePtr := add(table, 1)

        // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

        // result ptr, jump over length
            let resultPtr := add(result, 32)

        // run over the input, 4 characters at a time
            for {} lt(dataPtr, endPtr) {}
            {
            // read 4 characters
                dataPtr := add(dataPtr, 4)
                let input := mload(dataPtr)

            // write 3 bytes
                let output := add(
                add(
                shl(18, and(mload(add(tablePtr, and(shr(24, input), 0xFF))), 0xFF)),
                shl(12, and(mload(add(tablePtr, and(shr(16, input), 0xFF))), 0xFF))),
                add(
                shl( 6, and(mload(add(tablePtr, and(shr( 8, input), 0xFF))), 0xFF)),
                and(mload(add(tablePtr, and(        input , 0xFF))), 0xFF)
                )
                )
                mstore(resultPtr, shl(232, output))
                resultPtr := add(resultPtr, 3)
            }
        }

        return result;
    }
}

File 3 of 16 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;

import "./ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";

abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    function totalSupply() public view virtual override returns (uint256) {
        uint256 count;
        for (uint256 i; i < _owners.length;) {
            if (_owners[i] != address(0)) {
                unchecked {
                    ++count;
                }
            }

            unchecked {
                ++i;
            }
        }

        return count;
    }

    function tokenByIndex(uint256 index) public view virtual override returns (uint256 tokenId) {
        require(index < _owners.length, "ERC721Enumerable: global index out of bounds");
        return index;
    }

    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256 tokenId) {
        require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds");

        uint256 count;
        for(uint256 i; i < _owners.length;){
            if(owner == _owners[i]) {
                if(count == index) return i;
                else {
                    unchecked {
                        ++count;
                    }
                }
            }

            unchecked {
                ++i;
            }
        }

        revert("ERC721Enumerable: owner index out of bounds");
    }
}

File 4 of 16 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.13;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
import "./Address.sol";

abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    string private _name;
    string private _symbol;

    address[] internal _owners;

    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");

        uint256 count;
        for (uint256 i; i < _owners.length;) {
            if (owner == _owners[i]) {
                unchecked {
                    ++count;
                }
            }
            unchecked {
                ++i;
            }
        }
        return count;
    }

    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    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);
    }

    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: invalid token ID");
        return _tokenApprovals[tokenId];
    }

    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(_msgSender() != operator, "ERC721: approve to caller");
        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    function transferFrom(address from, address to, uint256 tokenId) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
        _transfer(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
        _safeTransfer(from, to, tokenId, data);
    }

    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");
    }

    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }

    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    function _mint(address to, uint256 tokenId) internal virtual {
        require(!_exists(tokenId), "ERC721: token already minted");

        _owners.push(to);

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

    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        delete _tokenApprovals[tokenId];
        delete _owners[tokenId];

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

    function _transfer(address from, address to, uint256 tokenId) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    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))
                    }
                }
            }
        }

        return true;
    }
}

File 5 of 16 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.13;

library Address {
    function isContract(address account) internal view returns (bool) {
        uint size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }
}

File 6 of 16 : IMetadata.sol
// SPDX-License-Identifier: MIT
/*
  ______                           ________              __
 /      \                         |        \            |  \
|  $$$$$$\  ______   __   __   __  \$$$$$$$$  _______  _| $$_     ______    ______   __    __
| $$   \$$ /      \ |  \ |  \ |  \    /  $$  /       \|   $$ \   /      \  /      \ |  \  |  \
| $$      |  $$$$$$\| $$ | $$ | $$   /  $$  |  $$$$$$$ \$$$$$$  |  $$$$$$\|  $$$$$$\| $$  | $$
| $$   __ | $$  | $$| $$ | $$ | $$  /  $$    \$$    \   | $$ __ | $$  | $$| $$   \$$| $$  | $$
| $$__/  \| $$__/ $$| $$_/ $$_/ $$ /  $$___  _\$$$$$$\  | $$|  \| $$__/ $$| $$      | $$__/ $$
 \$$    $$ \$$    $$ \$$   $$   $$|  $$    \|       $$   \$$  $$ \$$    $$| $$       \$$    $$
  \$$$$$$   \$$$$$$   \$$$$$\$$$$  \$$$$$$$$ \$$$$$$$     \$$$$   \$$$$$$  \$$       _\$$$$$$$
                                                                                    |  \__| $$
                                                                                     \$$    $$
                                                                                      \$$$$$$
*/

pragma solidity ^0.8.13;

interface IMetadata {
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 7 of 16 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

File 8 of 16 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 9 of 16 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

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 10 of 16 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 11 of 16 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 12 of 16 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

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 13 of 16 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

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);

    /**
     * @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 14 of 16 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 15 of 16 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

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`.
     *
     * 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;

    /**
     * @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

File 16 of 16 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "london",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IMetadata","name":"newMetadata","type":"address"}],"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":"MAX_PER_TRX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","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":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"canMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canSetMetadata","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canSetOwners","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableMetadataUpdate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadata","outputs":[{"internalType":"contract IMetadata","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IMetadata","name":"newMetadata","type":"address"}],"name":"setMetadata","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":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"tokenId","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":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526000600660146101000a81548160ff0219169083151502179055506001600660156101000a81548160ff0219169083151502179055506001600660166101000a81548160ff0219169083151502179055503480156200006257600080fd5b506040516200387b3803806200387b83398181016040528101906200008891906200038c565b6040518060400160405280601281526020017f436f775a73746f7279204d2053657269657300000000000000000000000000008152506040518060400160405280600581526020017f434f572e4d00000000000000000000000000000000000000000000000000000081525081600090805190602001906200010c9291906200025e565b508060019080519060200190620001259291906200025e565b505050620001486200013c6200019060201b60201c565b6200019860201b60201c565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000422565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200026c90620003ed565b90600052602060002090601f016020900481019282620002905760008555620002dc565b82601f10620002ab57805160ff1916838001178555620002dc565b82800160010185558215620002dc579182015b82811115620002db578251825591602001919060010190620002be565b5b509050620002eb9190620002ef565b5090565b5b808211156200030a576000816000905550600101620002f0565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620003408262000313565b9050919050565b6000620003548262000333565b9050919050565b620003668162000347565b81146200037257600080fd5b50565b60008151905062000386816200035b565b92915050565b600060208284031215620003a557620003a46200030e565b5b6000620003b58482850162000375565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200040657607f821691505b6020821081036200041c576200041b620003be565b5b50919050565b61344980620004326000396000f3fe6080604052600436106101d85760003560e01c80636a14550c11610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd14610667578063e985e9c5146106a4578063f2fde38b146106e1578063f3cb83851461070a576101d8565b8063a22cb465146105bf578063b88d4fde146105e8578063beb9716d14610611578063c55c5afe1461063c576101d8565b806387d7917a116100d157806387d7917a146105155780638da5cb5b1461054057806395d89b411461056b578063a0712d6814610596576101d8565b80636a14550c1461047f57806370a08231146104aa578063715018a6146104e75780637d55094d146104fe576101d8565b806332cb6b0c1161017a57806342966c681161014957806342966c68146103c55780634f6ccce7146103ee57806360ac7a411461042b5780636352211e14610442576101d8565b806332cb6b0c1461033c578063392f37e9146103675780633ccfd60b1461039257806342842e0e1461039c576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d65780632f745c59146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff91906120fd565b610733565b6040516102119190612145565b60405180910390f35b34801561022657600080fd5b5061022f6107ad565b60405161023c91906121f9565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612251565b61083f565b60405161027991906122bf565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612306565b6108c4565b005b3480156102b757600080fd5b506102c06109db565b6040516102cd9190612355565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612370565b610a7a565b005b34801561030b57600080fd5b5061032660048036038101906103219190612306565b610ada565b6040516103339190612355565b60405180910390f35b34801561034857600080fd5b50610351610c0d565b60405161035e9190612355565b60405180910390f35b34801561037357600080fd5b5061037c610c13565b6040516103899190612422565b60405180910390f35b61039a610c39565b005b3480156103a857600080fd5b506103c360048036038101906103be9190612370565b610cc1565b005b3480156103d157600080fd5b506103ec60048036038101906103e79190612251565b610ce1565b005b3480156103fa57600080fd5b5061041560048036038101906104109190612251565b610d3d565b6040516104229190612355565b60405180910390f35b34801561043757600080fd5b50610440610d8e565b005b34801561044e57600080fd5b5061046960048036038101906104649190612251565b610db3565b60405161047691906122bf565b60405180910390f35b34801561048b57600080fd5b50610494610e6f565b6040516104a19190612355565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc919061243d565b610e74565b6040516104de9190612355565b60405180910390f35b3480156104f357600080fd5b506104fc610f82565b005b34801561050a57600080fd5b50610513610f96565b005b34801561052157600080fd5b5061052a610fca565b6040516105379190612145565b60405180910390f35b34801561054c57600080fd5b50610555610fdd565b60405161056291906122bf565b60405180910390f35b34801561057757600080fd5b50610580611007565b60405161058d91906121f9565b60405180910390f35b3480156105a257600080fd5b506105bd60048036038101906105b89190612251565b611099565b005b3480156105cb57600080fd5b506105e660048036038101906105e19190612496565b611137565b005b3480156105f457600080fd5b5061060f600480360381019061060a919061260b565b6112b7565b005b34801561061d57600080fd5b50610626611319565b6040516106339190612145565b60405180910390f35b34801561064857600080fd5b5061065161132c565b60405161065e9190612145565b60405180910390f35b34801561067357600080fd5b5061068e60048036038101906106899190612251565b61133f565b60405161069b91906121f9565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c6919061268e565b611431565b6040516106d89190612145565b60405180910390f35b3480156106ed57600080fd5b506107086004803603810190610703919061243d565b6114c5565b005b34801561071657600080fd5b50610731600480360381019061072c919061270c565b611548565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a657506107a5826115e3565b5b9050919050565b6060600080546107bc90612768565b80601f01602080910402602001604051908101604052809291908181526020018280546107e890612768565b80156108355780601f1061080a57610100808354040283529160200191610835565b820191906000526020600020905b81548152906001019060200180831161081857829003601f168201915b5050505050905090565b600061084a826116c5565b610889576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610880906127e5565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108cf82610db3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361093f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093690612877565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661095e61174d565b73ffffffffffffffffffffffffffffffffffffffff16148061098d575061098c8161098761174d565b611431565b5b6109cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c390612909565b60405180910390fd5b6109d68383611755565b505050565b60008060005b600280549050811015610a7257600073ffffffffffffffffffffffffffffffffffffffff1660028281548110610a1a57610a19612929565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a67578160010191505b8060010190506109e1565b508091505090565b610a8b610a8561174d565b8261180e565b610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac1906129ca565b60405180910390fd5b610ad58383836118a3565b505050565b6000610ae583610e74565b8210610b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1d90612a5c565b60405180910390fd5b6000805b600280549050811015610bcb5760028181548110610b4b57610b4a612929565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610bc057838203610bb9578092505050610c07565b8160010191505b806001019050610b2a565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfe90612a5c565b60405180910390fd5b92915050565b610bb981565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c41611a7b565b6000610c4b610fdd565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c6e90612aad565b60006040518083038185875af1925050503d8060008114610cab576040519150601f19603f3d011682016040523d82523d6000602084013e610cb0565b606091505b5050905080610cbe57600080fd5b50565b610cdc838383604051806020016040528060008152506112b7565b505050565b610cf2610cec61174d565b8261180e565b610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2890612b0e565b60405180910390fd5b610d3a81611af9565b50565b60006002805490508210610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d90612ba0565b60405180910390fd5b819050919050565b610d96611a7b565b6000600660156101000a81548160ff021916908315150217905550565b60008060028381548110610dca57610dc9612929565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5d906127e5565b60405180910390fd5b80915050919050565b601f81565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edb90612c32565b60405180910390fd5b6000805b600280549050811015610f785760028181548110610f0957610f08612929565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610f6d578160010191505b806001019050610ee8565b5080915050919050565b610f8a611a7b565b610f946000611bdd565b565b610f9e611a7b565b600660149054906101000a900460ff1615600660146101000a81548160ff021916908315150217905550565b600660159054906101000a900460ff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461101690612768565b80601f016020809104026020016040519081016040528092919081815260200182805461104290612768565b801561108f5780601f106110645761010080835404028352916020019161108f565b820191906000526020600020905b81548152906001019060200180831161107257829003601f168201915b5050505050905090565b600660149054906101000a900460ff166110e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110df90612cc4565b60405180910390fd5b601f811061112b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112290612d30565b60405180910390fd5b61113481611ca3565b50565b8173ffffffffffffffffffffffffffffffffffffffff1661115661174d565b73ffffffffffffffffffffffffffffffffffffffff16036111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a390612d9c565b60405180910390fd5b80600460006111b961174d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661126661174d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112ab9190612145565b60405180910390a35050565b6112c86112c261174d565b8361180e565b611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe906129ca565b60405180910390fd5b61131384848484611d25565b50505050565b600660149054906101000a900460ff1681565b600660169054906101000a900460ff1681565b606061134a826116c5565b611389576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138090612e08565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c87b56dd836040518263ffffffff1660e01b81526004016113e49190612355565b600060405180830381865afa158015611401573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f8201168201806040525081019061142a9190612ec9565b9050919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114cd611a7b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361153c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153390612f84565b60405180910390fd5b61154581611bdd565b50565b611550611a7b565b600660159054906101000a900460ff1661159f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159690613016565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806116ae57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806116be57506116bd82611d81565b5b9050919050565b6000600280549050821080156117465750600073ffffffffffffffffffffffffffffffffffffffff166002838154811061170257611701612929565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166117c883610db3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061181a83610db3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061185c575061185b8185611431565b5b8061189a57508373ffffffffffffffffffffffffffffffffffffffff166118828461083f565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118c382610db3565b73ffffffffffffffffffffffffffffffffffffffff1614611919576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611910906130a8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197f9061313a565b60405180910390fd5b6003600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600282815481106119d3576119d2612929565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611a8361174d565b73ffffffffffffffffffffffffffffffffffffffff16611aa1610fdd565b73ffffffffffffffffffffffffffffffffffffffff1614611af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aee906131a6565b60405180910390fd5b565b6000611b0482610db3565b90506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560028281548110611b5057611b4f612929565b5b9060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006002805490509050610bb982820110611cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cea90613212565b60405180910390fd5b60005b82811015611d2057611d0f611d0961174d565b83611deb565b816001019150806001019050611cf6565b505050565b611d308484846118a3565b611d3c84848484611ef7565b611d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d72906132a4565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611df4816116c5565b15611e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2b90613310565b60405180910390fd5b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000611f188473ffffffffffffffffffffffffffffffffffffffff1661207e565b15612071578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f4161174d565b8786866040518563ffffffff1660e01b8152600401611f639493929190613385565b6020604051808303816000875af1925050508015611f9f57506040513d601f19601f82011682018060405250810190611f9c91906133e6565b60015b612021573d8060008114611fcf576040519150601f19603f3d011682016040523d82523d6000602084013e611fd4565b606091505b506000815103612019576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612010906132a4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612076565b600190505b949350505050565b600080823b905060008111915050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6120da816120a5565b81146120e557600080fd5b50565b6000813590506120f7816120d1565b92915050565b6000602082840312156121135761211261209b565b5b6000612121848285016120e8565b91505092915050565b60008115159050919050565b61213f8161212a565b82525050565b600060208201905061215a6000830184612136565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561219a57808201518184015260208101905061217f565b838111156121a9576000848401525b50505050565b6000601f19601f8301169050919050565b60006121cb82612160565b6121d5818561216b565b93506121e581856020860161217c565b6121ee816121af565b840191505092915050565b6000602082019050818103600083015261221381846121c0565b905092915050565b6000819050919050565b61222e8161221b565b811461223957600080fd5b50565b60008135905061224b81612225565b92915050565b6000602082840312156122675761226661209b565b5b60006122758482850161223c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122a98261227e565b9050919050565b6122b98161229e565b82525050565b60006020820190506122d460008301846122b0565b92915050565b6122e38161229e565b81146122ee57600080fd5b50565b600081359050612300816122da565b92915050565b6000806040838503121561231d5761231c61209b565b5b600061232b858286016122f1565b925050602061233c8582860161223c565b9150509250929050565b61234f8161221b565b82525050565b600060208201905061236a6000830184612346565b92915050565b6000806000606084860312156123895761238861209b565b5b6000612397868287016122f1565b93505060206123a8868287016122f1565b92505060406123b98682870161223c565b9150509250925092565b6000819050919050565b60006123e86123e36123de8461227e565b6123c3565b61227e565b9050919050565b60006123fa826123cd565b9050919050565b600061240c826123ef565b9050919050565b61241c81612401565b82525050565b60006020820190506124376000830184612413565b92915050565b6000602082840312156124535761245261209b565b5b6000612461848285016122f1565b91505092915050565b6124738161212a565b811461247e57600080fd5b50565b6000813590506124908161246a565b92915050565b600080604083850312156124ad576124ac61209b565b5b60006124bb858286016122f1565b92505060206124cc85828601612481565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612518826121af565b810181811067ffffffffffffffff82111715612537576125366124e0565b5b80604052505050565b600061254a612091565b9050612556828261250f565b919050565b600067ffffffffffffffff821115612576576125756124e0565b5b61257f826121af565b9050602081019050919050565b82818337600083830152505050565b60006125ae6125a98461255b565b612540565b9050828152602081018484840111156125ca576125c96124db565b5b6125d584828561258c565b509392505050565b600082601f8301126125f2576125f16124d6565b5b813561260284826020860161259b565b91505092915050565b600080600080608085870312156126255761262461209b565b5b6000612633878288016122f1565b9450506020612644878288016122f1565b93505060406126558782880161223c565b925050606085013567ffffffffffffffff811115612676576126756120a0565b5b612682878288016125dd565b91505092959194509250565b600080604083850312156126a5576126a461209b565b5b60006126b3858286016122f1565b92505060206126c4858286016122f1565b9150509250929050565b60006126d98261229e565b9050919050565b6126e9816126ce565b81146126f457600080fd5b50565b600081359050612706816126e0565b92915050565b6000602082840312156127225761272161209b565b5b6000612730848285016126f7565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061278057607f821691505b60208210810361279357612792612739565b5b50919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006127cf60188361216b565b91506127da82612799565b602082019050919050565b600060208201905081810360008301526127fe816127c2565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061286160218361216b565b915061286c82612805565b604082019050919050565b6000602082019050818103600083015261289081612854565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006128f360388361216b565b91506128fe82612897565b604082019050919050565b60006020820190508181036000830152612922816128e6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b60006129b4602d8361216b565b91506129bf82612958565b604082019050919050565b600060208201905081810360008301526129e3816129a7565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000612a46602b8361216b565b9150612a51826129ea565b604082019050919050565b60006020820190508181036000830152612a7581612a39565b9050919050565b600081905092915050565b50565b6000612a97600083612a7c565b9150612aa282612a87565b600082019050919050565b6000612ab882612a8a565b9150819050919050565b7f4e6f7420617070726f76656420746f206275726e2e0000000000000000000000600082015250565b6000612af860158361216b565b9150612b0382612ac2565b602082019050919050565b60006020820190508181036000830152612b2781612aeb565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000612b8a602c8361216b565b9150612b9582612b2e565b604082019050919050565b60006020820190508181036000830152612bb981612b7d565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612c1c60298361216b565b9150612c2782612bc0565b604082019050919050565b60006020820190508181036000830152612c4b81612c0f565b9050919050565b7f4d696e74696e67206e6565647320746f20626520656e61626c656420746f207360008201527f74617274206d696e74696e670000000000000000000000000000000000000000602082015250565b6000612cae602c8361216b565b9150612cb982612c52565b604082019050919050565b60006020820190508181036000830152612cdd81612ca1565b9050919050565b7f45786365656473206d617820706572207472616e73616374696f6e2e00000000600082015250565b6000612d1a601c8361216b565b9150612d2582612ce4565b602082019050919050565b60006020820190508181036000830152612d4981612d0d565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612d8660198361216b565b9150612d9182612d50565b602082019050919050565b60006020820190508181036000830152612db581612d79565b9050919050565b7f436f7720646f6573206e6f742065786973742e00000000000000000000000000600082015250565b6000612df260138361216b565b9150612dfd82612dbc565b602082019050919050565b60006020820190508181036000830152612e2181612de5565b9050919050565b600067ffffffffffffffff821115612e4357612e426124e0565b5b612e4c826121af565b9050602081019050919050565b6000612e6c612e6784612e28565b612540565b905082815260208101848484011115612e8857612e876124db565b5b612e9384828561217c565b509392505050565b600082601f830112612eb057612eaf6124d6565b5b8151612ec0848260208601612e59565b91505092915050565b600060208284031215612edf57612ede61209b565b5b600082015167ffffffffffffffff811115612efd57612efc6120a0565b5b612f0984828501612e9b565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f6e60268361216b565b9150612f7982612f12565b604082019050919050565b60006020820190508181036000830152612f9d81612f61565b9050919050565b7f4d657461646174612063616e206e6f206c6f6e6765722062652075706461746560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b600061300060218361216b565b915061300b82612fa4565b604082019050919050565b6000602082019050818103600083015261302f81612ff3565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061309260258361216b565b915061309d82613036565b604082019050919050565b600060208201905081810360008301526130c181613085565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061312460248361216b565b915061312f826130c8565b604082019050919050565b6000602082019050818103600083015261315381613117565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061319060208361216b565b915061319b8261315a565b602082019050919050565b600060208201905081810360008301526131bf81613183565b9050919050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b60006131fc60138361216b565b9150613207826131c6565b602082019050919050565b6000602082019050818103600083015261322b816131ef565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061328e60328361216b565b915061329982613232565b604082019050919050565b600060208201905081810360008301526132bd81613281565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006132fa601c8361216b565b9150613305826132c4565b602082019050919050565b60006020820190508181036000830152613329816132ed565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061335782613330565b613361818561333b565b935061337181856020860161217c565b61337a816121af565b840191505092915050565b600060808201905061339a60008301876122b0565b6133a760208301866122b0565b6133b46040830185612346565b81810360608301526133c6818461334c565b905095945050505050565b6000815190506133e0816120d1565b92915050565b6000602082840312156133fc576133fb61209b565b5b600061340a848285016133d1565b9150509291505056fea26469706673582212202e443b5dce1f269b0d2d3723f678a15f2e31514dee52eb976f0a2e2c89012d1b64736f6c634300080d0033000000000000000000000000363ce6d4fdd1438182254eeb16333dbdef22b119

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636a14550c11610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd14610667578063e985e9c5146106a4578063f2fde38b146106e1578063f3cb83851461070a576101d8565b8063a22cb465146105bf578063b88d4fde146105e8578063beb9716d14610611578063c55c5afe1461063c576101d8565b806387d7917a116100d157806387d7917a146105155780638da5cb5b1461054057806395d89b411461056b578063a0712d6814610596576101d8565b80636a14550c1461047f57806370a08231146104aa578063715018a6146104e75780637d55094d146104fe576101d8565b806332cb6b0c1161017a57806342966c681161014957806342966c68146103c55780634f6ccce7146103ee57806360ac7a411461042b5780636352211e14610442576101d8565b806332cb6b0c1461033c578063392f37e9146103675780633ccfd60b1461039257806342842e0e1461039c576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d65780632f745c59146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff91906120fd565b610733565b6040516102119190612145565b60405180910390f35b34801561022657600080fd5b5061022f6107ad565b60405161023c91906121f9565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612251565b61083f565b60405161027991906122bf565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612306565b6108c4565b005b3480156102b757600080fd5b506102c06109db565b6040516102cd9190612355565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612370565b610a7a565b005b34801561030b57600080fd5b5061032660048036038101906103219190612306565b610ada565b6040516103339190612355565b60405180910390f35b34801561034857600080fd5b50610351610c0d565b60405161035e9190612355565b60405180910390f35b34801561037357600080fd5b5061037c610c13565b6040516103899190612422565b60405180910390f35b61039a610c39565b005b3480156103a857600080fd5b506103c360048036038101906103be9190612370565b610cc1565b005b3480156103d157600080fd5b506103ec60048036038101906103e79190612251565b610ce1565b005b3480156103fa57600080fd5b5061041560048036038101906104109190612251565b610d3d565b6040516104229190612355565b60405180910390f35b34801561043757600080fd5b50610440610d8e565b005b34801561044e57600080fd5b5061046960048036038101906104649190612251565b610db3565b60405161047691906122bf565b60405180910390f35b34801561048b57600080fd5b50610494610e6f565b6040516104a19190612355565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc919061243d565b610e74565b6040516104de9190612355565b60405180910390f35b3480156104f357600080fd5b506104fc610f82565b005b34801561050a57600080fd5b50610513610f96565b005b34801561052157600080fd5b5061052a610fca565b6040516105379190612145565b60405180910390f35b34801561054c57600080fd5b50610555610fdd565b60405161056291906122bf565b60405180910390f35b34801561057757600080fd5b50610580611007565b60405161058d91906121f9565b60405180910390f35b3480156105a257600080fd5b506105bd60048036038101906105b89190612251565b611099565b005b3480156105cb57600080fd5b506105e660048036038101906105e19190612496565b611137565b005b3480156105f457600080fd5b5061060f600480360381019061060a919061260b565b6112b7565b005b34801561061d57600080fd5b50610626611319565b6040516106339190612145565b60405180910390f35b34801561064857600080fd5b5061065161132c565b60405161065e9190612145565b60405180910390f35b34801561067357600080fd5b5061068e60048036038101906106899190612251565b61133f565b60405161069b91906121f9565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c6919061268e565b611431565b6040516106d89190612145565b60405180910390f35b3480156106ed57600080fd5b506107086004803603810190610703919061243d565b6114c5565b005b34801561071657600080fd5b50610731600480360381019061072c919061270c565b611548565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a657506107a5826115e3565b5b9050919050565b6060600080546107bc90612768565b80601f01602080910402602001604051908101604052809291908181526020018280546107e890612768565b80156108355780601f1061080a57610100808354040283529160200191610835565b820191906000526020600020905b81548152906001019060200180831161081857829003601f168201915b5050505050905090565b600061084a826116c5565b610889576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610880906127e5565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108cf82610db3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361093f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093690612877565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661095e61174d565b73ffffffffffffffffffffffffffffffffffffffff16148061098d575061098c8161098761174d565b611431565b5b6109cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c390612909565b60405180910390fd5b6109d68383611755565b505050565b60008060005b600280549050811015610a7257600073ffffffffffffffffffffffffffffffffffffffff1660028281548110610a1a57610a19612929565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a67578160010191505b8060010190506109e1565b508091505090565b610a8b610a8561174d565b8261180e565b610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac1906129ca565b60405180910390fd5b610ad58383836118a3565b505050565b6000610ae583610e74565b8210610b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1d90612a5c565b60405180910390fd5b6000805b600280549050811015610bcb5760028181548110610b4b57610b4a612929565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610bc057838203610bb9578092505050610c07565b8160010191505b806001019050610b2a565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfe90612a5c565b60405180910390fd5b92915050565b610bb981565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c41611a7b565b6000610c4b610fdd565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c6e90612aad565b60006040518083038185875af1925050503d8060008114610cab576040519150601f19603f3d011682016040523d82523d6000602084013e610cb0565b606091505b5050905080610cbe57600080fd5b50565b610cdc838383604051806020016040528060008152506112b7565b505050565b610cf2610cec61174d565b8261180e565b610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2890612b0e565b60405180910390fd5b610d3a81611af9565b50565b60006002805490508210610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d90612ba0565b60405180910390fd5b819050919050565b610d96611a7b565b6000600660156101000a81548160ff021916908315150217905550565b60008060028381548110610dca57610dc9612929565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5d906127e5565b60405180910390fd5b80915050919050565b601f81565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edb90612c32565b60405180910390fd5b6000805b600280549050811015610f785760028181548110610f0957610f08612929565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610f6d578160010191505b806001019050610ee8565b5080915050919050565b610f8a611a7b565b610f946000611bdd565b565b610f9e611a7b565b600660149054906101000a900460ff1615600660146101000a81548160ff021916908315150217905550565b600660159054906101000a900460ff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461101690612768565b80601f016020809104026020016040519081016040528092919081815260200182805461104290612768565b801561108f5780601f106110645761010080835404028352916020019161108f565b820191906000526020600020905b81548152906001019060200180831161107257829003601f168201915b5050505050905090565b600660149054906101000a900460ff166110e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110df90612cc4565b60405180910390fd5b601f811061112b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112290612d30565b60405180910390fd5b61113481611ca3565b50565b8173ffffffffffffffffffffffffffffffffffffffff1661115661174d565b73ffffffffffffffffffffffffffffffffffffffff16036111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a390612d9c565b60405180910390fd5b80600460006111b961174d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661126661174d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112ab9190612145565b60405180910390a35050565b6112c86112c261174d565b8361180e565b611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe906129ca565b60405180910390fd5b61131384848484611d25565b50505050565b600660149054906101000a900460ff1681565b600660169054906101000a900460ff1681565b606061134a826116c5565b611389576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138090612e08565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c87b56dd836040518263ffffffff1660e01b81526004016113e49190612355565b600060405180830381865afa158015611401573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f8201168201806040525081019061142a9190612ec9565b9050919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114cd611a7b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361153c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153390612f84565b60405180910390fd5b61154581611bdd565b50565b611550611a7b565b600660159054906101000a900460ff1661159f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159690613016565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806116ae57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806116be57506116bd82611d81565b5b9050919050565b6000600280549050821080156117465750600073ffffffffffffffffffffffffffffffffffffffff166002838154811061170257611701612929565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166117c883610db3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061181a83610db3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061185c575061185b8185611431565b5b8061189a57508373ffffffffffffffffffffffffffffffffffffffff166118828461083f565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118c382610db3565b73ffffffffffffffffffffffffffffffffffffffff1614611919576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611910906130a8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197f9061313a565b60405180910390fd5b6003600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600282815481106119d3576119d2612929565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611a8361174d565b73ffffffffffffffffffffffffffffffffffffffff16611aa1610fdd565b73ffffffffffffffffffffffffffffffffffffffff1614611af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aee906131a6565b60405180910390fd5b565b6000611b0482610db3565b90506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560028281548110611b5057611b4f612929565b5b9060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006002805490509050610bb982820110611cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cea90613212565b60405180910390fd5b60005b82811015611d2057611d0f611d0961174d565b83611deb565b816001019150806001019050611cf6565b505050565b611d308484846118a3565b611d3c84848484611ef7565b611d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d72906132a4565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611df4816116c5565b15611e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2b90613310565b60405180910390fd5b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000611f188473ffffffffffffffffffffffffffffffffffffffff1661207e565b15612071578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f4161174d565b8786866040518563ffffffff1660e01b8152600401611f639493929190613385565b6020604051808303816000875af1925050508015611f9f57506040513d601f19601f82011682018060405250810190611f9c91906133e6565b60015b612021573d8060008114611fcf576040519150601f19603f3d011682016040523d82523d6000602084013e611fd4565b606091505b506000815103612019576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612010906132a4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612076565b600190505b949350505050565b600080823b905060008111915050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6120da816120a5565b81146120e557600080fd5b50565b6000813590506120f7816120d1565b92915050565b6000602082840312156121135761211261209b565b5b6000612121848285016120e8565b91505092915050565b60008115159050919050565b61213f8161212a565b82525050565b600060208201905061215a6000830184612136565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561219a57808201518184015260208101905061217f565b838111156121a9576000848401525b50505050565b6000601f19601f8301169050919050565b60006121cb82612160565b6121d5818561216b565b93506121e581856020860161217c565b6121ee816121af565b840191505092915050565b6000602082019050818103600083015261221381846121c0565b905092915050565b6000819050919050565b61222e8161221b565b811461223957600080fd5b50565b60008135905061224b81612225565b92915050565b6000602082840312156122675761226661209b565b5b60006122758482850161223c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122a98261227e565b9050919050565b6122b98161229e565b82525050565b60006020820190506122d460008301846122b0565b92915050565b6122e38161229e565b81146122ee57600080fd5b50565b600081359050612300816122da565b92915050565b6000806040838503121561231d5761231c61209b565b5b600061232b858286016122f1565b925050602061233c8582860161223c565b9150509250929050565b61234f8161221b565b82525050565b600060208201905061236a6000830184612346565b92915050565b6000806000606084860312156123895761238861209b565b5b6000612397868287016122f1565b93505060206123a8868287016122f1565b92505060406123b98682870161223c565b9150509250925092565b6000819050919050565b60006123e86123e36123de8461227e565b6123c3565b61227e565b9050919050565b60006123fa826123cd565b9050919050565b600061240c826123ef565b9050919050565b61241c81612401565b82525050565b60006020820190506124376000830184612413565b92915050565b6000602082840312156124535761245261209b565b5b6000612461848285016122f1565b91505092915050565b6124738161212a565b811461247e57600080fd5b50565b6000813590506124908161246a565b92915050565b600080604083850312156124ad576124ac61209b565b5b60006124bb858286016122f1565b92505060206124cc85828601612481565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612518826121af565b810181811067ffffffffffffffff82111715612537576125366124e0565b5b80604052505050565b600061254a612091565b9050612556828261250f565b919050565b600067ffffffffffffffff821115612576576125756124e0565b5b61257f826121af565b9050602081019050919050565b82818337600083830152505050565b60006125ae6125a98461255b565b612540565b9050828152602081018484840111156125ca576125c96124db565b5b6125d584828561258c565b509392505050565b600082601f8301126125f2576125f16124d6565b5b813561260284826020860161259b565b91505092915050565b600080600080608085870312156126255761262461209b565b5b6000612633878288016122f1565b9450506020612644878288016122f1565b93505060406126558782880161223c565b925050606085013567ffffffffffffffff811115612676576126756120a0565b5b612682878288016125dd565b91505092959194509250565b600080604083850312156126a5576126a461209b565b5b60006126b3858286016122f1565b92505060206126c4858286016122f1565b9150509250929050565b60006126d98261229e565b9050919050565b6126e9816126ce565b81146126f457600080fd5b50565b600081359050612706816126e0565b92915050565b6000602082840312156127225761272161209b565b5b6000612730848285016126f7565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061278057607f821691505b60208210810361279357612792612739565b5b50919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006127cf60188361216b565b91506127da82612799565b602082019050919050565b600060208201905081810360008301526127fe816127c2565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061286160218361216b565b915061286c82612805565b604082019050919050565b6000602082019050818103600083015261289081612854565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006128f360388361216b565b91506128fe82612897565b604082019050919050565b60006020820190508181036000830152612922816128e6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b60006129b4602d8361216b565b91506129bf82612958565b604082019050919050565b600060208201905081810360008301526129e3816129a7565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000612a46602b8361216b565b9150612a51826129ea565b604082019050919050565b60006020820190508181036000830152612a7581612a39565b9050919050565b600081905092915050565b50565b6000612a97600083612a7c565b9150612aa282612a87565b600082019050919050565b6000612ab882612a8a565b9150819050919050565b7f4e6f7420617070726f76656420746f206275726e2e0000000000000000000000600082015250565b6000612af860158361216b565b9150612b0382612ac2565b602082019050919050565b60006020820190508181036000830152612b2781612aeb565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000612b8a602c8361216b565b9150612b9582612b2e565b604082019050919050565b60006020820190508181036000830152612bb981612b7d565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612c1c60298361216b565b9150612c2782612bc0565b604082019050919050565b60006020820190508181036000830152612c4b81612c0f565b9050919050565b7f4d696e74696e67206e6565647320746f20626520656e61626c656420746f207360008201527f74617274206d696e74696e670000000000000000000000000000000000000000602082015250565b6000612cae602c8361216b565b9150612cb982612c52565b604082019050919050565b60006020820190508181036000830152612cdd81612ca1565b9050919050565b7f45786365656473206d617820706572207472616e73616374696f6e2e00000000600082015250565b6000612d1a601c8361216b565b9150612d2582612ce4565b602082019050919050565b60006020820190508181036000830152612d4981612d0d565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612d8660198361216b565b9150612d9182612d50565b602082019050919050565b60006020820190508181036000830152612db581612d79565b9050919050565b7f436f7720646f6573206e6f742065786973742e00000000000000000000000000600082015250565b6000612df260138361216b565b9150612dfd82612dbc565b602082019050919050565b60006020820190508181036000830152612e2181612de5565b9050919050565b600067ffffffffffffffff821115612e4357612e426124e0565b5b612e4c826121af565b9050602081019050919050565b6000612e6c612e6784612e28565b612540565b905082815260208101848484011115612e8857612e876124db565b5b612e9384828561217c565b509392505050565b600082601f830112612eb057612eaf6124d6565b5b8151612ec0848260208601612e59565b91505092915050565b600060208284031215612edf57612ede61209b565b5b600082015167ffffffffffffffff811115612efd57612efc6120a0565b5b612f0984828501612e9b565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f6e60268361216b565b9150612f7982612f12565b604082019050919050565b60006020820190508181036000830152612f9d81612f61565b9050919050565b7f4d657461646174612063616e206e6f206c6f6e6765722062652075706461746560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b600061300060218361216b565b915061300b82612fa4565b604082019050919050565b6000602082019050818103600083015261302f81612ff3565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061309260258361216b565b915061309d82613036565b604082019050919050565b600060208201905081810360008301526130c181613085565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061312460248361216b565b915061312f826130c8565b604082019050919050565b6000602082019050818103600083015261315381613117565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061319060208361216b565b915061319b8261315a565b602082019050919050565b600060208201905081810360008301526131bf81613183565b9050919050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b60006131fc60138361216b565b9150613207826131c6565b602082019050919050565b6000602082019050818103600083015261322b816131ef565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061328e60328361216b565b915061329982613232565b604082019050919050565b600060208201905081810360008301526132bd81613281565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006132fa601c8361216b565b9150613305826132c4565b602082019050919050565b60006020820190508181036000830152613329816132ed565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061335782613330565b613361818561333b565b935061337181856020860161217c565b61337a816121af565b840191505092915050565b600060808201905061339a60008301876122b0565b6133a760208301866122b0565b6133b46040830185612346565b81810360608301526133c6818461334c565b905095945050505050565b6000815190506133e0816120d1565b92915050565b6000602082840312156133fc576133fb61209b565b5b600061340a848285016133d1565b9150509291505056fea26469706673582212202e443b5dce1f269b0d2d3723f678a15f2e31514dee52eb976f0a2e2c89012d1b64736f6c634300080d0033

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

000000000000000000000000363ce6d4fdd1438182254eeb16333dbdef22b119

-----Decoded View---------------
Arg [0] : newMetadata (address): 0x363cE6D4FDd1438182254EEb16333dbDeF22B119

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000363ce6d4fdd1438182254eeb16333dbdef22b119


Loading...
Loading
Loading...
Loading
[ 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.