ETH Price: $2,528.57 (+0.21%)

Token

dCanvas (DCVT)
 

Overview

Max Total Supply

65,536 DCVT

Holders

42

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 DCVT
0x28b757440e2035d65d896b8c57639d4e5063184e
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:
DCanvas

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : dCanvas.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract DCanvas is ERC721 {
    using Strings for uint256;

    // Base URI for metadata to be accessed at.
    string private BASE_URI = "https://dcanvas-metadata.s3-us-west-2.amazonaws.com/meta/";

    // Suffix for file that contains the palette describing which rgb values correspond with each integer.
    string public constant PALETTE_METADATA_SUFFIX = "palette.json";

    // Colors of a given token block.
    mapping(uint256 => bytes32) public colors;

    // Artist proxy. Someone who can set colors on behalf of a given owner.
    mapping(address => address) public proxies;

    // Event emitted showing the address, tokenId, and colors of a color change.
    event ColorsChanged(
        address indexed _from,
        uint256 indexed _tokenId,
        bytes32 _color
    );

    // Event emitted when an artist proxy is set.
    event ProxySet(
        address indexed _owner,
        address indexed _proxy
    );

    constructor() ERC721("dCanvas", "DCVT") {
        // Contract owner owns all tokens at the beginning.
        _balances[msg.sender] = TOKEN_SUPPLY;
    }

    /**
     * @dev Will update the base URL of token's URI
     * @param _newURI New base URL of token's URI
     */
    function setBaseURI(string memory _newURI) public onlyOwner {
        BASE_URI = _newURI;
    }

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view override returns (string memory) {
        return BASE_URI;
    }

    /**
     * @dev Returns colors of a single token
     * @param tokenId The token ID to return colors of
     */
    function getColors(uint256 tokenId) public view returns (bytes32 color) {
        require(tokenId < TOKEN_SUPPLY, "Invalid token id");
        color = colors[tokenId];
        return color;
    }

    /**
     * @dev Returns the currently set proxy address of a given owner
     * @param tokenOwner the address of the tokenowner to retrieve the proxy of
     */
    function getArtistProxy(address tokenOwner) public view returns (address proxy) {
        proxy = proxies[tokenOwner];
        return proxy;
    }

    /**
     * @dev Returns colors of tokens in a paginated fashion
     * @param cursor The token ID to start returning from
     * @param length The number of tokens to return colors for.
     */
    function getPaginatedColors(uint256 cursor, uint256 length)
        public
        view
        returns (bytes32[] memory)
    {
        require(cursor + length < TOKEN_SUPPLY);
        bytes32[] memory pageColors = new bytes32[](length);
        for (uint256 i = 0; i < length; i++) {
            pageColors[i] = colors[i + cursor];
        }

        return pageColors;
    }

    /**
     * @dev Sets the colors of a particular token 
     * @param tokenId the token ID to modify colors for
     * @param color A bytes32 object where the first 16 bytes represent colors of the 16 pixels, taken
     * from a 32 color palette.
     */
    function _setColors(uint256 tokenId, bytes32 color) private {
        require(tokenId < TOKEN_SUPPLY);
        colors[tokenId] = color;
        emit ColorsChanged(msg.sender, tokenId, color);
    }

    /**
     * @dev Sets the colors of a particular token 
     * @param tokenId the token ID to modify colors for
     * @param color A bytes32 object where the first 16 bytes represent colors of the 16 pixels, taken
     * from a 32 color palette.
     */
    function setColors(uint256 tokenId, bytes32 color)
        public
        returns (bytes32)
    {
        require(_exists(tokenId), "Token out of bounds");
        require(ownerOf(tokenId) == msg.sender || proxies[ownerOf(tokenId)] == msg.sender, "User does not own token");
        _setColors(tokenId, color);
        return color;
    }

    /**
     * @dev Sets another address that can set colors on behalf of the token owner.
     * @param _artistProxy the proxy address to set.
     */
    function _setArtistProxy(address _artistProxy) private {
        proxies[msg.sender] = _artistProxy;
        emit ProxySet(msg.sender, _artistProxy);
    }

    /**
     * @dev Sets another address that can set colors on behalf of the token owner.
     * If you want to remove your proxy, set the zero address.
     * @param _artistProxy the proxy address to set.
     */
    function setArtistProxy(address _artistProxy) public returns (address) {
        _setArtistProxy(_artistProxy);
        return _artistProxy;
    }

    /**
     * @dev In dCanvas all tokens are pre-minted to the contract owner.
     * However, OpenSea listens for Transfer events from address(0) to populate their UI.
     * We emit a transfer event so that OpenSea picks up on this and lists it on their platform.
     * Ideally we would check to make sure it's not only listed, however we skip this and trust
     * the contract owner in order to save gas.
     * It does check to make sure the contract owner is the owner of the token, so this cannot
     * be used to take or fake ownership of other people's tokens.
     * @param tokenId Token ID to list.
     */
    function _list(uint256 tokenId) internal {
        require(ownerOf(tokenId) == msg.sender, "Token not owned by lister");
        emit Transfer(address(0), msg.sender, tokenId);
    }

    /**
     * @dev In dCanvas all tokens are pre-minted to the contract owner.
     * However, OpenSea listens for Transfer events from address(0) to populate their UI.
     * We emit a transfer event so that OpenSea picks up on this and lists it on their platform.
     * @param startAt Token ID to start at.
     * @param endOn Token ID to end on (inclusive).
     */
    function _batchList(uint256 startAt, uint256 endOn) internal {
        require(startAt < endOn, "Invalid inputs: start point greater than end point");
        require((endOn - startAt) < 128, "Too many calls, may exceed gas limit");
        for (uint256 i = startAt; i < (endOn + 1); i++) {
            _list(i);
        }
    }

    /**
     * @dev In dCanvas all tokens are pre-minted to the contract owner.
     * However, OpenSea listens for Transfer events from address(0) to populate their UI.
     * We emit a transfer event so that OpenSea picks up on this and lists it on their platform.
     * Callable only by contract owner.
     * @param tokenId Token ID to list.
     */
    function list(uint256 tokenId) public onlyOwner {
        _list(tokenId);
    }

        /**
     * @dev In dCanvas all tokens are pre-minted to the contract owner.
     * However, OpenSea listens for Transfer events from address(0) to populate their UI.
     * We emit a transfer event so that OpenSea picks up on this and lists it on their platform.]
     * This allows us to batch into one transaction for convenience.
     * Callable only by contract owner.
     * @param startAt Token ID to start at.
     * @param endOn Token ID to end on (inclusive).
     */
    function batchList(uint256 startAt, uint256 endOn) public onlyOwner {
        _batchList(startAt, endOn);
    }

    /**
     * @dev Convenience method to batch transfer tokens.
     * Used for presales and initial allocations. Callable only by contract owner.
     * @param startAt Token ID to start at.
     * @param endOn Token ID to end on (inclusive).
     */
    function _batchTransfer(address to, uint256 startAt, uint256 endOn) internal {
        require(startAt < endOn, "Invalid inputs: start point greater than end point");
        require((endOn - startAt) < 128, "Too many calls, may exceed gas limit");
        for (uint256 i = startAt; i < (endOn + 1); i++) {
            safeTransferFrom(msg.sender, to, i);
        }
    }

    /**
     * @dev Convenience method to batch transfer tokens.
     * Used for presales and initial allocations. Callable only by contract owner.
     * @param startAt Token ID to start at.
     * @param endOn Token ID to end on (inclusive).
     */
    function batchTransfer(address to, uint256 startAt, uint256 endOn) public onlyOwner {
        _batchTransfer(to, startAt, endOn);
    }
}

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

pragma solidity ^0.8.0;

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/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension.
 * dCanvas implementation of ERC721 makes some changes for optimizing gas efficiency under the assumptions of
 * fixed total supply, no minting or burning, with NFTs initially allocated to the token owner.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, Ownable {
    using Address for address;
    using Strings for uint256;

    // Number of total tokens, equal to (Total Canvas Pixels) / (Pixels in Single Token).
    uint256 public constant TOKEN_SUPPLY = 65536;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev Overrides the default openzeppelin implementation.
     * If owner defaults to address(0), that means the token is owned by the contract owner.
     * This has the effect of having all tokens initially allocated to the contract owner. 
     * @param tokenId Token ID to check the owner of
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        
        // Token not assigned, owned by contract owner.
        if (owner == address(0)) {
            return Ownable.owner();
        }
        return owner;
    }

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * In the dCanvas contract there is a fixed maximum supply of tokens, with no minting or burning.
     * Existence is determined only by the bounds of the maximum supply.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < TOKEN_SUPPLY;
    }

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

File 3 of 11 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

}

File 4 of 11 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
      * @dev Safely transfers `tokenId` token from `from` to `to`.
      *
      * Requirements:
      *
      * - `from` cannot be the zero address.
      * - `to` cannot be the zero address.
      * - `tokenId` token must exist and be owned by `from`.
      * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
      * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
      *
      * Emits a {Transfer} event.
      */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
}

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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

File 7 of 11 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 9 of 11 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 10 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 11 of 11 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"_color","type":"bytes32"}],"name":"ColorsChanged","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":"_owner","type":"address"},{"indexed":true,"internalType":"address","name":"_proxy","type":"address"}],"name":"ProxySet","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":"PALETTE_METADATA_SUFFIX","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_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":"startAt","type":"uint256"},{"internalType":"uint256","name":"endOn","type":"uint256"}],"name":"batchList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"startAt","type":"uint256"},{"internalType":"uint256","name":"endOn","type":"uint256"}],"name":"batchTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"colors","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenOwner","type":"address"}],"name":"getArtistProxy","outputs":[{"internalType":"address","name":"proxy","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getColors","outputs":[{"internalType":"bytes32","name":"color","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"cursor","type":"uint256"},{"internalType":"uint256","name":"length","type":"uint256"}],"name":"getPaginatedColors","outputs":[{"internalType":"bytes32[]","name":"","type":"bytes32[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"list","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":[{"internalType":"address","name":"","type":"address"}],"name":"proxies","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":"address","name":"_artistProxy","type":"address"}],"name":"setArtistProxy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes32","name":"color","type":"bytes32"}],"name":"setColors","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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"}]

608060405260405180606001604052806039815260200162003ddc603991396007908051906020019062000035929190620001e9565b503480156200004357600080fd5b506040518060400160405280600781526020017f6443616e766173000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f44435654000000000000000000000000000000000000000000000000000000008152506000620000c2620001e160201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350816001908051906020019062000178929190620001e9565b50806002908051906020019062000191929190620001e9565b50505062010000600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550620002fe565b600033905090565b828054620001f79062000299565b90600052602060002090601f0160209004810192826200021b576000855562000267565b82601f106200023657805160ff191683800117855562000267565b8280016001018555821562000267579182015b828111156200026657825182559160200191906001019062000249565b5b5090506200027691906200027a565b5090565b5b80821115620002955760008160009055506001016200027b565b5090565b60006002820490506001821680620002b257607f821691505b60208210811415620002c957620002c8620002cf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613ace806200030e6000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c8063715018a61161010f578063c4552791116100a2578063d5d98a1a11610071578063d5d98a1a146105c6578063e985e9c5146105e4578063f2fde38b14610614578063f311968214610630576101e5565b8063c45527911461051a578063c737127b1461054a578063c87b56dd1461057a578063d46750f7146105aa576101e5565b8063a22cb465116100de578063a22cb46514610494578063b152f6cf146104b0578063b88d4fde146104ce578063bd11f69d146104ea576101e5565b8063715018a61461043257806380c9419e1461043c5780638da5cb5b1461045857806395d89b4114610476576101e5565b806342842e0e1161018757806355f804b31161015657806355f804b31461039a5780636352211e146103b657806365923d28146103e657806370a0823114610402576101e5565b806342842e0e146102ee57806346294b9f1461030a5780634f6ccce71461033a578063507d97d41461036a576101e5565b8063095ea7b3116101c3578063095ea7b31461026857806318160ddd1461028457806323b872dd146102a25780633476c040146102be576101e5565b806301ffc9a7146101ea57806306fdde031461021a578063081812fc14610238575b600080fd5b61020460048036038101906101ff91906128d8565b610660565b6040516102119190613331565b60405180910390f35b610222610742565b60405161022f9190613367565b60405180910390f35b610252600480360381019061024d919061296b565b6107d4565b60405161025f91906132a8565b60405180910390f35b610282600480360381019061027d919061284d565b610859565b005b61028c610971565b6040516102999190613609565b60405180910390f35b6102bc60048036038101906102b79190612747565b61097c565b005b6102d860048036038101906102d391906126e2565b6109dc565b6040516102e591906132a8565b60405180910390f35b61030860048036038101906103039190612747565b610a45565b005b610324600480360381019061031f91906126e2565b610a65565b60405161033191906132a8565b60405180910390f35b610354600480360381019061034f919061296b565b610a78565b6040516103619190613609565b60405180910390f35b610384600480360381019061037f9190612994565b610ac7565b604051610391919061334c565b60405180910390f35b6103b460048036038101906103af919061292a565b610c37565b005b6103d060048036038101906103cb919061296b565b610ccd565b6040516103dd91906132a8565b60405180910390f35b61040060048036038101906103fb91906129d0565b610d55565b005b61041c600480360381019061041791906126e2565b610ddf565b6040516104299190613609565b60405180910390f35b61043a610e97565b005b6104566004803603810190610451919061296b565b610fd1565b005b610460611059565b60405161046d91906132a8565b60405180910390f35b61047e611082565b60405161048b9190613367565b60405180910390f35b6104ae60048036038101906104a99190612811565b611114565b005b6104b8611295565b6040516104c59190613609565b60405180910390f35b6104e860048036038101906104e39190612796565b61129c565b005b61050460048036038101906104ff919061296b565b6112fe565b604051610511919061334c565b60405180910390f35b610534600480360381019061052f91906126e2565b611316565b60405161054191906132a8565b60405180910390f35b610564600480360381019061055f91906129d0565b611349565b604051610571919061330f565b60405180910390f35b610594600480360381019061058f919061296b565b611465565b6040516105a19190613367565b60405180910390f35b6105c460048036038101906105bf9190612889565b61150c565b005b6105ce611598565b6040516105db9190613367565b60405180910390f35b6105fe60048036038101906105f9919061270b565b6115d1565b60405161060b9190613331565b60405180910390f35b61062e600480360381019061062991906126e2565b611665565b005b61064a6004803603810190610645919061296b565b61180e565b604051610657919061334c565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061073b575061073a82611870565b5b9050919050565b606060018054610751906138ac565b80601f016020809104026020016040519081016040528092919081815260200182805461077d906138ac565b80156107ca5780601f1061079f576101008083540402835291602001916107ca565b820191906000526020600020905b8154815290600101906020018083116107ad57829003601f168201915b5050505050905090565b60006107df826118da565b61081e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081590613509565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086482610ccd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cc906135a9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108f46118e9565b73ffffffffffffffffffffffffffffffffffffffff16148061092357506109228161091d6118e9565b6115d1565b5b610962576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610959906134c9565b60405180910390fd5b61096c83836118f1565b505050565b600062010000905090565b61098d6109876118e9565b826119aa565b6109cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c3906135c9565b60405180910390fd5b6109d7838383611a88565b505050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610a608383836040518060200160405280600081525061129c565b505050565b6000610a7082611ce4565b819050919050565b6000620100008210610abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab6906135e9565b60405180910390fd5b819050919050565b6000610ad2836118da565b610b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0890613409565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16610b3184610ccd565b73ffffffffffffffffffffffffffffffffffffffff161480610be557503373ffffffffffffffffffffffffffffffffffffffff1660096000610b7286610ccd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b90613489565b60405180910390fd5b610c2e8383611dbf565b81905092915050565b610c3f6118e9565b73ffffffffffffffffffffffffffffffffffffffff16610c5d611059565b73ffffffffffffffffffffffffffffffffffffffff1614610cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caa90613529565b60405180910390fd5b8060079080519060200190610cc99291906124f1565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d4b57610d43611059565b915050610d50565b809150505b919050565b610d5d6118e9565b73ffffffffffffffffffffffffffffffffffffffff16610d7b611059565b73ffffffffffffffffffffffffffffffffffffffff1614610dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc890613529565b60405180910390fd5b610ddb8282611e39565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e47906134e9565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e9f6118e9565b73ffffffffffffffffffffffffffffffffffffffff16610ebd611059565b73ffffffffffffffffffffffffffffffffffffffff1614610f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0a90613529565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610fd96118e9565b73ffffffffffffffffffffffffffffffffffffffff16610ff7611059565b73ffffffffffffffffffffffffffffffffffffffff161461104d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104490613529565b60405180910390fd5b61105681611f04565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611091906138ac565b80601f01602080910402602001604051908101604052809291908181526020018280546110bd906138ac565b801561110a5780601f106110df5761010080835404028352916020019161110a565b820191906000526020600020905b8154815290600101906020018083116110ed57829003601f168201915b5050505050905090565b61111c6118e9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561118a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118190613449565b60405180910390fd5b80600660006111976118e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112446118e9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112899190613331565b60405180910390a35050565b6201000081565b6112ad6112a76118e9565b836119aa565b6112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e3906135c9565b60405180910390fd5b6112f884848484611fd9565b50505050565b60086020528060005260406000206000915090505481565b60096020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606062010000828461135b9190613731565b1061136557600080fd5b60008267ffffffffffffffff8111156113a7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156113d55781602001602082028036833780820191505090505b50905060005b8381101561145a576008600086836113f39190613731565b81526020019081526020016000205482828151811061143b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080611452906138de565b9150506113db565b508091505092915050565b6060611470826118da565b6114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a690613589565b60405180910390fd5b60006114b9612035565b905060008151116114d95760405180602001604052806000815250611504565b806114e3846120c7565b6040516020016114f4929190613284565b6040516020818303038152906040525b915050919050565b6115146118e9565b73ffffffffffffffffffffffffffffffffffffffff16611532611059565b73ffffffffffffffffffffffffffffffffffffffff1614611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f90613529565b60405180910390fd5b611593838383612274565b505050565b6040518060400160405280600c81526020017f70616c657474652e6a736f6e000000000000000000000000000000000000000081525081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61166d6118e9565b73ffffffffffffffffffffffffffffffffffffffff1661168b611059565b73ffffffffffffffffffffffffffffffffffffffff16146116e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d890613529565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611751576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611748906133e9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000620100008210611855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184c90613469565b60405180910390fd5b60086000838152602001908152602001600020549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60006201000082109050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661196483610ccd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006119b5826118da565b6119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb906134a9565b60405180910390fd5b60006119ff83610ccd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a6e57508373ffffffffffffffffffffffffffffffffffffffff16611a56846107d4565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a7f5750611a7e81856115d1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611aa882610ccd565b73ffffffffffffffffffffffffffffffffffffffff1614611afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af590613549565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6590613429565b60405180910390fd5b611b79838383612342565b611b846000826118f1565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bd491906137b8565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c2b9190613731565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b80600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167feedc14b6dae12879d60d4b7f9059afdef795b6a7faf42fc1e992f80548cf558e60405160405180910390a350565b620100008210611dce57600080fd5b806008600084815260200190815260200160002081905550813373ffffffffffffffffffffffffffffffffffffffff167fc84ef602409bc2249ad8c0214687589f29e6190e35ce4e4921d4697a199d40bb83604051611e2d919061334c565b60405180910390a35050565b808210611e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e72906133a9565b60405180910390fd5b60808282611e8991906137b8565b10611ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec090613569565b60405180910390fd5b60008290505b600182611edc9190613731565b811015611eff57611eec81611f04565b8080611ef7906138de565b915050611ecf565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16611f2482610ccd565b73ffffffffffffffffffffffffffffffffffffffff1614611f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7190613389565b60405180910390fd5b803373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450565b611fe4848484611a88565b611ff084848484612347565b61202f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612026906133c9565b60405180910390fd5b50505050565b606060078054612044906138ac565b80601f0160208091040260200160405190810160405280929190818152602001828054612070906138ac565b80156120bd5780601f10612092576101008083540402835291602001916120bd565b820191906000526020600020905b8154815290600101906020018083116120a057829003601f168201915b5050505050905090565b6060600082141561210f576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061226f565b600082905060005b6000821461214157808061212a906138de565b915050600a8261213a9190613787565b9150612117565b60008167ffffffffffffffff811115612183577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121b55781602001600182028036833780820191505090505b5090505b60008514612268576001826121ce91906137b8565b9150600a856121dd9190613927565b60306121e99190613731565b60f81b818381518110612225577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122619190613787565b94506121b9565b8093505050505b919050565b8082106122b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ad906133a9565b60405180910390fd5b608082826122c491906137b8565b10612304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fb90613569565b60405180910390fd5b60008290505b6001826123179190613731565b81101561233c57612329338583610a45565b8080612334906138de565b91505061230a565b50505050565b505050565b60006123688473ffffffffffffffffffffffffffffffffffffffff166124de565b156124d1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123916118e9565b8786866040518563ffffffff1660e01b81526004016123b394939291906132c3565b602060405180830381600087803b1580156123cd57600080fd5b505af19250505080156123fe57506040513d601f19601f820116820180604052508101906123fb9190612901565b60015b612481573d806000811461242e576040519150601f19603f3d011682016040523d82523d6000602084013e612433565b606091505b50600081511415612479576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612470906133c9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124d6565b600190505b949350505050565b600080823b905060008111915050919050565b8280546124fd906138ac565b90600052602060002090601f01602090048101928261251f5760008555612566565b82601f1061253857805160ff1916838001178555612566565b82800160010185558215612566579182015b8281111561256557825182559160200191906001019061254a565b5b5090506125739190612577565b5090565b5b80821115612590576000816000905550600101612578565b5090565b60006125a76125a284613655565b613624565b9050828152602081018484840111156125bf57600080fd5b6125ca84828561386a565b509392505050565b60006125e56125e084613685565b613624565b9050828152602081018484840111156125fd57600080fd5b61260884828561386a565b509392505050565b60008135905061261f81613a25565b92915050565b60008135905061263481613a3c565b92915050565b60008135905061264981613a53565b92915050565b60008135905061265e81613a6a565b92915050565b60008151905061267381613a6a565b92915050565b600082601f83011261268a57600080fd5b813561269a848260208601612594565b91505092915050565b600082601f8301126126b457600080fd5b81356126c48482602086016125d2565b91505092915050565b6000813590506126dc81613a81565b92915050565b6000602082840312156126f457600080fd5b600061270284828501612610565b91505092915050565b6000806040838503121561271e57600080fd5b600061272c85828601612610565b925050602061273d85828601612610565b9150509250929050565b60008060006060848603121561275c57600080fd5b600061276a86828701612610565b935050602061277b86828701612610565b925050604061278c868287016126cd565b9150509250925092565b600080600080608085870312156127ac57600080fd5b60006127ba87828801612610565b94505060206127cb87828801612610565b93505060406127dc878288016126cd565b925050606085013567ffffffffffffffff8111156127f957600080fd5b61280587828801612679565b91505092959194509250565b6000806040838503121561282457600080fd5b600061283285828601612610565b925050602061284385828601612625565b9150509250929050565b6000806040838503121561286057600080fd5b600061286e85828601612610565b925050602061287f858286016126cd565b9150509250929050565b60008060006060848603121561289e57600080fd5b60006128ac86828701612610565b93505060206128bd868287016126cd565b92505060406128ce868287016126cd565b9150509250925092565b6000602082840312156128ea57600080fd5b60006128f88482850161264f565b91505092915050565b60006020828403121561291357600080fd5b600061292184828501612664565b91505092915050565b60006020828403121561293c57600080fd5b600082013567ffffffffffffffff81111561295657600080fd5b612962848285016126a3565b91505092915050565b60006020828403121561297d57600080fd5b600061298b848285016126cd565b91505092915050565b600080604083850312156129a757600080fd5b60006129b5858286016126cd565b92505060206129c68582860161263a565b9150509250929050565b600080604083850312156129e357600080fd5b60006129f1858286016126cd565b9250506020612a02858286016126cd565b9150509250929050565b6000612a188383612aa0565b60208301905092915050565b612a2d816137ec565b82525050565b6000612a3e826136c5565b612a4881856136f3565b9350612a53836136b5565b8060005b83811015612a84578151612a6b8882612a0c565b9750612a76836136e6565b925050600181019050612a57565b5085935050505092915050565b612a9a816137fe565b82525050565b612aa98161380a565b82525050565b612ab88161380a565b82525050565b6000612ac9826136d0565b612ad38185613704565b9350612ae3818560208601613879565b612aec81613a14565b840191505092915050565b6000612b02826136db565b612b0c8185613715565b9350612b1c818560208601613879565b612b2581613a14565b840191505092915050565b6000612b3b826136db565b612b458185613726565b9350612b55818560208601613879565b80840191505092915050565b6000612b6e601983613715565b91507f546f6b656e206e6f74206f776e6564206279206c6973746572000000000000006000830152602082019050919050565b6000612bae603283613715565b91507f496e76616c696420696e707574733a20737461727420706f696e74206772656160008301527f746572207468616e20656e6420706f696e7400000000000000000000000000006020830152604082019050919050565b6000612c14603283613715565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000612c7a602683613715565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612ce0601383613715565b91507f546f6b656e206f7574206f6620626f756e6473000000000000000000000000006000830152602082019050919050565b6000612d20602483613715565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612d86601983613715565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000612dc6601083613715565b91507f496e76616c696420746f6b656e206964000000000000000000000000000000006000830152602082019050919050565b6000612e06601783613715565b91507f5573657220646f6573206e6f74206f776e20746f6b656e0000000000000000006000830152602082019050919050565b6000612e46602c83613715565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612eac603883613715565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000612f12602a83613715565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f78602c83613715565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612fde602083613715565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061301e602983613715565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613084602483613715565b91507f546f6f206d616e792063616c6c732c206d61792065786365656420676173206c60008301527f696d6974000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006130ea602f83613715565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613150602183613715565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006131b6603183613715565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061321c602c83613715565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b61327e81613860565b82525050565b60006132908285612b30565b915061329c8284612b30565b91508190509392505050565b60006020820190506132bd6000830184612a24565b92915050565b60006080820190506132d86000830187612a24565b6132e56020830186612a24565b6132f26040830185613275565b81810360608301526133048184612abe565b905095945050505050565b600060208201905081810360008301526133298184612a33565b905092915050565b60006020820190506133466000830184612a91565b92915050565b60006020820190506133616000830184612aaf565b92915050565b600060208201905081810360008301526133818184612af7565b905092915050565b600060208201905081810360008301526133a281612b61565b9050919050565b600060208201905081810360008301526133c281612ba1565b9050919050565b600060208201905081810360008301526133e281612c07565b9050919050565b6000602082019050818103600083015261340281612c6d565b9050919050565b6000602082019050818103600083015261342281612cd3565b9050919050565b6000602082019050818103600083015261344281612d13565b9050919050565b6000602082019050818103600083015261346281612d79565b9050919050565b6000602082019050818103600083015261348281612db9565b9050919050565b600060208201905081810360008301526134a281612df9565b9050919050565b600060208201905081810360008301526134c281612e39565b9050919050565b600060208201905081810360008301526134e281612e9f565b9050919050565b6000602082019050818103600083015261350281612f05565b9050919050565b6000602082019050818103600083015261352281612f6b565b9050919050565b6000602082019050818103600083015261354281612fd1565b9050919050565b6000602082019050818103600083015261356281613011565b9050919050565b6000602082019050818103600083015261358281613077565b9050919050565b600060208201905081810360008301526135a2816130dd565b9050919050565b600060208201905081810360008301526135c281613143565b9050919050565b600060208201905081810360008301526135e2816131a9565b9050919050565b600060208201905081810360008301526136028161320f565b9050919050565b600060208201905061361e6000830184613275565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561364b5761364a6139e5565b5b8060405250919050565b600067ffffffffffffffff8211156136705761366f6139e5565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156136a05761369f6139e5565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061373c82613860565b915061374783613860565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561377c5761377b613958565b5b828201905092915050565b600061379282613860565b915061379d83613860565b9250826137ad576137ac613987565b5b828204905092915050565b60006137c382613860565b91506137ce83613860565b9250828210156137e1576137e0613958565b5b828203905092915050565b60006137f782613840565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561389757808201518184015260208101905061387c565b838111156138a6576000848401525b50505050565b600060028204905060018216806138c457607f821691505b602082108114156138d8576138d76139b6565b5b50919050565b60006138e982613860565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561391c5761391b613958565b5b600182019050919050565b600061393282613860565b915061393d83613860565b92508261394d5761394c613987565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613a2e816137ec565b8114613a3957600080fd5b50565b613a45816137fe565b8114613a5057600080fd5b50565b613a5c8161380a565b8114613a6757600080fd5b50565b613a7381613814565b8114613a7e57600080fd5b50565b613a8a81613860565b8114613a9557600080fd5b5056fea2646970667358221220459f2f9fb836d7cce65d6ad74d0dc76f71e6fbf0fa2cacba8f7316e9b4f95f0364736f6c6343000800003368747470733a2f2f6463616e7661732d6d657461646174612e73332d75732d776573742d322e616d617a6f6e6177732e636f6d2f6d6574612f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c8063715018a61161010f578063c4552791116100a2578063d5d98a1a11610071578063d5d98a1a146105c6578063e985e9c5146105e4578063f2fde38b14610614578063f311968214610630576101e5565b8063c45527911461051a578063c737127b1461054a578063c87b56dd1461057a578063d46750f7146105aa576101e5565b8063a22cb465116100de578063a22cb46514610494578063b152f6cf146104b0578063b88d4fde146104ce578063bd11f69d146104ea576101e5565b8063715018a61461043257806380c9419e1461043c5780638da5cb5b1461045857806395d89b4114610476576101e5565b806342842e0e1161018757806355f804b31161015657806355f804b31461039a5780636352211e146103b657806365923d28146103e657806370a0823114610402576101e5565b806342842e0e146102ee57806346294b9f1461030a5780634f6ccce71461033a578063507d97d41461036a576101e5565b8063095ea7b3116101c3578063095ea7b31461026857806318160ddd1461028457806323b872dd146102a25780633476c040146102be576101e5565b806301ffc9a7146101ea57806306fdde031461021a578063081812fc14610238575b600080fd5b61020460048036038101906101ff91906128d8565b610660565b6040516102119190613331565b60405180910390f35b610222610742565b60405161022f9190613367565b60405180910390f35b610252600480360381019061024d919061296b565b6107d4565b60405161025f91906132a8565b60405180910390f35b610282600480360381019061027d919061284d565b610859565b005b61028c610971565b6040516102999190613609565b60405180910390f35b6102bc60048036038101906102b79190612747565b61097c565b005b6102d860048036038101906102d391906126e2565b6109dc565b6040516102e591906132a8565b60405180910390f35b61030860048036038101906103039190612747565b610a45565b005b610324600480360381019061031f91906126e2565b610a65565b60405161033191906132a8565b60405180910390f35b610354600480360381019061034f919061296b565b610a78565b6040516103619190613609565b60405180910390f35b610384600480360381019061037f9190612994565b610ac7565b604051610391919061334c565b60405180910390f35b6103b460048036038101906103af919061292a565b610c37565b005b6103d060048036038101906103cb919061296b565b610ccd565b6040516103dd91906132a8565b60405180910390f35b61040060048036038101906103fb91906129d0565b610d55565b005b61041c600480360381019061041791906126e2565b610ddf565b6040516104299190613609565b60405180910390f35b61043a610e97565b005b6104566004803603810190610451919061296b565b610fd1565b005b610460611059565b60405161046d91906132a8565b60405180910390f35b61047e611082565b60405161048b9190613367565b60405180910390f35b6104ae60048036038101906104a99190612811565b611114565b005b6104b8611295565b6040516104c59190613609565b60405180910390f35b6104e860048036038101906104e39190612796565b61129c565b005b61050460048036038101906104ff919061296b565b6112fe565b604051610511919061334c565b60405180910390f35b610534600480360381019061052f91906126e2565b611316565b60405161054191906132a8565b60405180910390f35b610564600480360381019061055f91906129d0565b611349565b604051610571919061330f565b60405180910390f35b610594600480360381019061058f919061296b565b611465565b6040516105a19190613367565b60405180910390f35b6105c460048036038101906105bf9190612889565b61150c565b005b6105ce611598565b6040516105db9190613367565b60405180910390f35b6105fe60048036038101906105f9919061270b565b6115d1565b60405161060b9190613331565b60405180910390f35b61062e600480360381019061062991906126e2565b611665565b005b61064a6004803603810190610645919061296b565b61180e565b604051610657919061334c565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061073b575061073a82611870565b5b9050919050565b606060018054610751906138ac565b80601f016020809104026020016040519081016040528092919081815260200182805461077d906138ac565b80156107ca5780601f1061079f576101008083540402835291602001916107ca565b820191906000526020600020905b8154815290600101906020018083116107ad57829003601f168201915b5050505050905090565b60006107df826118da565b61081e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081590613509565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086482610ccd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cc906135a9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108f46118e9565b73ffffffffffffffffffffffffffffffffffffffff16148061092357506109228161091d6118e9565b6115d1565b5b610962576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610959906134c9565b60405180910390fd5b61096c83836118f1565b505050565b600062010000905090565b61098d6109876118e9565b826119aa565b6109cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c3906135c9565b60405180910390fd5b6109d7838383611a88565b505050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610a608383836040518060200160405280600081525061129c565b505050565b6000610a7082611ce4565b819050919050565b6000620100008210610abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab6906135e9565b60405180910390fd5b819050919050565b6000610ad2836118da565b610b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0890613409565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16610b3184610ccd565b73ffffffffffffffffffffffffffffffffffffffff161480610be557503373ffffffffffffffffffffffffffffffffffffffff1660096000610b7286610ccd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b90613489565b60405180910390fd5b610c2e8383611dbf565b81905092915050565b610c3f6118e9565b73ffffffffffffffffffffffffffffffffffffffff16610c5d611059565b73ffffffffffffffffffffffffffffffffffffffff1614610cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caa90613529565b60405180910390fd5b8060079080519060200190610cc99291906124f1565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d4b57610d43611059565b915050610d50565b809150505b919050565b610d5d6118e9565b73ffffffffffffffffffffffffffffffffffffffff16610d7b611059565b73ffffffffffffffffffffffffffffffffffffffff1614610dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc890613529565b60405180910390fd5b610ddb8282611e39565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e47906134e9565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e9f6118e9565b73ffffffffffffffffffffffffffffffffffffffff16610ebd611059565b73ffffffffffffffffffffffffffffffffffffffff1614610f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0a90613529565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610fd96118e9565b73ffffffffffffffffffffffffffffffffffffffff16610ff7611059565b73ffffffffffffffffffffffffffffffffffffffff161461104d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104490613529565b60405180910390fd5b61105681611f04565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611091906138ac565b80601f01602080910402602001604051908101604052809291908181526020018280546110bd906138ac565b801561110a5780601f106110df5761010080835404028352916020019161110a565b820191906000526020600020905b8154815290600101906020018083116110ed57829003601f168201915b5050505050905090565b61111c6118e9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561118a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118190613449565b60405180910390fd5b80600660006111976118e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112446118e9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112899190613331565b60405180910390a35050565b6201000081565b6112ad6112a76118e9565b836119aa565b6112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e3906135c9565b60405180910390fd5b6112f884848484611fd9565b50505050565b60086020528060005260406000206000915090505481565b60096020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606062010000828461135b9190613731565b1061136557600080fd5b60008267ffffffffffffffff8111156113a7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156113d55781602001602082028036833780820191505090505b50905060005b8381101561145a576008600086836113f39190613731565b81526020019081526020016000205482828151811061143b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080611452906138de565b9150506113db565b508091505092915050565b6060611470826118da565b6114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a690613589565b60405180910390fd5b60006114b9612035565b905060008151116114d95760405180602001604052806000815250611504565b806114e3846120c7565b6040516020016114f4929190613284565b6040516020818303038152906040525b915050919050565b6115146118e9565b73ffffffffffffffffffffffffffffffffffffffff16611532611059565b73ffffffffffffffffffffffffffffffffffffffff1614611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f90613529565b60405180910390fd5b611593838383612274565b505050565b6040518060400160405280600c81526020017f70616c657474652e6a736f6e000000000000000000000000000000000000000081525081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61166d6118e9565b73ffffffffffffffffffffffffffffffffffffffff1661168b611059565b73ffffffffffffffffffffffffffffffffffffffff16146116e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d890613529565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611751576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611748906133e9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000620100008210611855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184c90613469565b60405180910390fd5b60086000838152602001908152602001600020549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60006201000082109050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661196483610ccd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006119b5826118da565b6119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb906134a9565b60405180910390fd5b60006119ff83610ccd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a6e57508373ffffffffffffffffffffffffffffffffffffffff16611a56846107d4565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a7f5750611a7e81856115d1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611aa882610ccd565b73ffffffffffffffffffffffffffffffffffffffff1614611afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af590613549565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6590613429565b60405180910390fd5b611b79838383612342565b611b846000826118f1565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bd491906137b8565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c2b9190613731565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b80600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167feedc14b6dae12879d60d4b7f9059afdef795b6a7faf42fc1e992f80548cf558e60405160405180910390a350565b620100008210611dce57600080fd5b806008600084815260200190815260200160002081905550813373ffffffffffffffffffffffffffffffffffffffff167fc84ef602409bc2249ad8c0214687589f29e6190e35ce4e4921d4697a199d40bb83604051611e2d919061334c565b60405180910390a35050565b808210611e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e72906133a9565b60405180910390fd5b60808282611e8991906137b8565b10611ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec090613569565b60405180910390fd5b60008290505b600182611edc9190613731565b811015611eff57611eec81611f04565b8080611ef7906138de565b915050611ecf565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16611f2482610ccd565b73ffffffffffffffffffffffffffffffffffffffff1614611f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7190613389565b60405180910390fd5b803373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450565b611fe4848484611a88565b611ff084848484612347565b61202f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612026906133c9565b60405180910390fd5b50505050565b606060078054612044906138ac565b80601f0160208091040260200160405190810160405280929190818152602001828054612070906138ac565b80156120bd5780601f10612092576101008083540402835291602001916120bd565b820191906000526020600020905b8154815290600101906020018083116120a057829003601f168201915b5050505050905090565b6060600082141561210f576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061226f565b600082905060005b6000821461214157808061212a906138de565b915050600a8261213a9190613787565b9150612117565b60008167ffffffffffffffff811115612183577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121b55781602001600182028036833780820191505090505b5090505b60008514612268576001826121ce91906137b8565b9150600a856121dd9190613927565b60306121e99190613731565b60f81b818381518110612225577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122619190613787565b94506121b9565b8093505050505b919050565b8082106122b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ad906133a9565b60405180910390fd5b608082826122c491906137b8565b10612304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fb90613569565b60405180910390fd5b60008290505b6001826123179190613731565b81101561233c57612329338583610a45565b8080612334906138de565b91505061230a565b50505050565b505050565b60006123688473ffffffffffffffffffffffffffffffffffffffff166124de565b156124d1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123916118e9565b8786866040518563ffffffff1660e01b81526004016123b394939291906132c3565b602060405180830381600087803b1580156123cd57600080fd5b505af19250505080156123fe57506040513d601f19601f820116820180604052508101906123fb9190612901565b60015b612481573d806000811461242e576040519150601f19603f3d011682016040523d82523d6000602084013e612433565b606091505b50600081511415612479576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612470906133c9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124d6565b600190505b949350505050565b600080823b905060008111915050919050565b8280546124fd906138ac565b90600052602060002090601f01602090048101928261251f5760008555612566565b82601f1061253857805160ff1916838001178555612566565b82800160010185558215612566579182015b8281111561256557825182559160200191906001019061254a565b5b5090506125739190612577565b5090565b5b80821115612590576000816000905550600101612578565b5090565b60006125a76125a284613655565b613624565b9050828152602081018484840111156125bf57600080fd5b6125ca84828561386a565b509392505050565b60006125e56125e084613685565b613624565b9050828152602081018484840111156125fd57600080fd5b61260884828561386a565b509392505050565b60008135905061261f81613a25565b92915050565b60008135905061263481613a3c565b92915050565b60008135905061264981613a53565b92915050565b60008135905061265e81613a6a565b92915050565b60008151905061267381613a6a565b92915050565b600082601f83011261268a57600080fd5b813561269a848260208601612594565b91505092915050565b600082601f8301126126b457600080fd5b81356126c48482602086016125d2565b91505092915050565b6000813590506126dc81613a81565b92915050565b6000602082840312156126f457600080fd5b600061270284828501612610565b91505092915050565b6000806040838503121561271e57600080fd5b600061272c85828601612610565b925050602061273d85828601612610565b9150509250929050565b60008060006060848603121561275c57600080fd5b600061276a86828701612610565b935050602061277b86828701612610565b925050604061278c868287016126cd565b9150509250925092565b600080600080608085870312156127ac57600080fd5b60006127ba87828801612610565b94505060206127cb87828801612610565b93505060406127dc878288016126cd565b925050606085013567ffffffffffffffff8111156127f957600080fd5b61280587828801612679565b91505092959194509250565b6000806040838503121561282457600080fd5b600061283285828601612610565b925050602061284385828601612625565b9150509250929050565b6000806040838503121561286057600080fd5b600061286e85828601612610565b925050602061287f858286016126cd565b9150509250929050565b60008060006060848603121561289e57600080fd5b60006128ac86828701612610565b93505060206128bd868287016126cd565b92505060406128ce868287016126cd565b9150509250925092565b6000602082840312156128ea57600080fd5b60006128f88482850161264f565b91505092915050565b60006020828403121561291357600080fd5b600061292184828501612664565b91505092915050565b60006020828403121561293c57600080fd5b600082013567ffffffffffffffff81111561295657600080fd5b612962848285016126a3565b91505092915050565b60006020828403121561297d57600080fd5b600061298b848285016126cd565b91505092915050565b600080604083850312156129a757600080fd5b60006129b5858286016126cd565b92505060206129c68582860161263a565b9150509250929050565b600080604083850312156129e357600080fd5b60006129f1858286016126cd565b9250506020612a02858286016126cd565b9150509250929050565b6000612a188383612aa0565b60208301905092915050565b612a2d816137ec565b82525050565b6000612a3e826136c5565b612a4881856136f3565b9350612a53836136b5565b8060005b83811015612a84578151612a6b8882612a0c565b9750612a76836136e6565b925050600181019050612a57565b5085935050505092915050565b612a9a816137fe565b82525050565b612aa98161380a565b82525050565b612ab88161380a565b82525050565b6000612ac9826136d0565b612ad38185613704565b9350612ae3818560208601613879565b612aec81613a14565b840191505092915050565b6000612b02826136db565b612b0c8185613715565b9350612b1c818560208601613879565b612b2581613a14565b840191505092915050565b6000612b3b826136db565b612b458185613726565b9350612b55818560208601613879565b80840191505092915050565b6000612b6e601983613715565b91507f546f6b656e206e6f74206f776e6564206279206c6973746572000000000000006000830152602082019050919050565b6000612bae603283613715565b91507f496e76616c696420696e707574733a20737461727420706f696e74206772656160008301527f746572207468616e20656e6420706f696e7400000000000000000000000000006020830152604082019050919050565b6000612c14603283613715565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000612c7a602683613715565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612ce0601383613715565b91507f546f6b656e206f7574206f6620626f756e6473000000000000000000000000006000830152602082019050919050565b6000612d20602483613715565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612d86601983613715565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000612dc6601083613715565b91507f496e76616c696420746f6b656e206964000000000000000000000000000000006000830152602082019050919050565b6000612e06601783613715565b91507f5573657220646f6573206e6f74206f776e20746f6b656e0000000000000000006000830152602082019050919050565b6000612e46602c83613715565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612eac603883613715565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000612f12602a83613715565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f78602c83613715565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612fde602083613715565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061301e602983613715565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613084602483613715565b91507f546f6f206d616e792063616c6c732c206d61792065786365656420676173206c60008301527f696d6974000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006130ea602f83613715565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613150602183613715565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006131b6603183613715565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061321c602c83613715565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b61327e81613860565b82525050565b60006132908285612b30565b915061329c8284612b30565b91508190509392505050565b60006020820190506132bd6000830184612a24565b92915050565b60006080820190506132d86000830187612a24565b6132e56020830186612a24565b6132f26040830185613275565b81810360608301526133048184612abe565b905095945050505050565b600060208201905081810360008301526133298184612a33565b905092915050565b60006020820190506133466000830184612a91565b92915050565b60006020820190506133616000830184612aaf565b92915050565b600060208201905081810360008301526133818184612af7565b905092915050565b600060208201905081810360008301526133a281612b61565b9050919050565b600060208201905081810360008301526133c281612ba1565b9050919050565b600060208201905081810360008301526133e281612c07565b9050919050565b6000602082019050818103600083015261340281612c6d565b9050919050565b6000602082019050818103600083015261342281612cd3565b9050919050565b6000602082019050818103600083015261344281612d13565b9050919050565b6000602082019050818103600083015261346281612d79565b9050919050565b6000602082019050818103600083015261348281612db9565b9050919050565b600060208201905081810360008301526134a281612df9565b9050919050565b600060208201905081810360008301526134c281612e39565b9050919050565b600060208201905081810360008301526134e281612e9f565b9050919050565b6000602082019050818103600083015261350281612f05565b9050919050565b6000602082019050818103600083015261352281612f6b565b9050919050565b6000602082019050818103600083015261354281612fd1565b9050919050565b6000602082019050818103600083015261356281613011565b9050919050565b6000602082019050818103600083015261358281613077565b9050919050565b600060208201905081810360008301526135a2816130dd565b9050919050565b600060208201905081810360008301526135c281613143565b9050919050565b600060208201905081810360008301526135e2816131a9565b9050919050565b600060208201905081810360008301526136028161320f565b9050919050565b600060208201905061361e6000830184613275565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561364b5761364a6139e5565b5b8060405250919050565b600067ffffffffffffffff8211156136705761366f6139e5565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156136a05761369f6139e5565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061373c82613860565b915061374783613860565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561377c5761377b613958565b5b828201905092915050565b600061379282613860565b915061379d83613860565b9250826137ad576137ac613987565b5b828204905092915050565b60006137c382613860565b91506137ce83613860565b9250828210156137e1576137e0613958565b5b828203905092915050565b60006137f782613840565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561389757808201518184015260208101905061387c565b838111156138a6576000848401525b50505050565b600060028204905060018216806138c457607f821691505b602082108114156138d8576138d76139b6565b5b50919050565b60006138e982613860565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561391c5761391b613958565b5b600182019050919050565b600061393282613860565b915061393d83613860565b92508261394d5761394c613987565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613a2e816137ec565b8114613a3957600080fd5b50565b613a45816137fe565b8114613a5057600080fd5b50565b613a5c8161380a565b8114613a6757600080fd5b50565b613a7381613814565b8114613a7e57600080fd5b50565b613a8a81613860565b8114613a9557600080fd5b5056fea2646970667358221220459f2f9fb836d7cce65d6ad74d0dc76f71e6fbf0fa2cacba8f7316e9b4f95f0364736f6c63430008000033

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

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