ETH Price: $2,877.03 (-5.71%)
Gas: 1 Gwei

Token

Ethereum Paint (ETHPAINT)
 

Overview

Max Total Supply

0 ETHPAINT

Holders

108

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
gluggy.eth
Balance
1 ETHPAINT
0x4cadfe63af96404bcb3fbef877dc7aaf2593156d
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:
ETHPaint

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : ETHPaint.sol
//  _____ _____ _   _   ______  ___  _____ _   _ _____     ___        ___ 
// |  ___|_   _| | | |  | ___ \/ _ \|_   _| \ | |_   _|   /   |      /   |
// | |__   | | | |_| |  | |_/ / /_\ \ | | |  \| | | |    / /| |_  __/ /| |
// |  __|  | | |  _  |  |  __/|  _  | | | | . ` | | |   / /_| \ \/ / /_| |
// | |___  | | | | | |  | |   | | | |_| |_| |\  | | |   \___  |>  <\___  |
// \____/  \_/ \_| |_/  \_|   \_| |_/\___/\_| \_/ \_/       |_/_/\_\   |_/
//                                                                   
// SPDX-License-Identifier: MIT

pragma solidity 0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";

contract ETHPaint is ERC721URIStorage, Ownable {
    uint256 public tokenCounter;
    uint256 public fee;
    mapping(uint256 => bool) public isFrozen;
    mapping(uint256 => string) public tokenIdString;
    mapping(uint256 => uint256) public iterations;
    mapping(uint256 => string) public sizeStrings;
    
    constructor() ERC721 ("Ethereum Paint", "ETHPAINT") {
        tokenCounter = 0;
        fee = 200000000000000000; //.2 ETH
        sizeStrings[0] = "0";
        sizeStrings[1] = "128";
        sizeStrings[2] = "256";
        sizeStrings[3] = "384";
    }
   
    function create() public {
        require(tokenCounter <= 512);
        require(balanceOf(msg.sender) < 3, "You may only mint three canvases per address" );
        _safeMint(msg.sender, tokenCounter);
        tokenIdString[tokenCounter] = uint2str(tokenCounter);
        bytes memory imgURI = buildImgURI("</svg>");
        string memory uri = buildTokenURI(imgURI, tokenCounter, true);
        _setTokenURI(tokenCounter, uri);
        tokenCounter = tokenCounter + 1;

    }

    function paint(uint256 tokenId, string[] calldata colors) public {
        require(ownerOf(tokenId) == msg.sender);
        require(!isFrozen[tokenId]);
        bytes memory uri = buildImgURI("");
        uint y_val = 0;
        for (uint i=0; i < 16; i++) {
            if (i % 4 == 0 && i > 3) {
                y_val = y_val + 1;
            }
            uri = abi.encodePacked(
                uri,
                " <rect%20x='",
                sizeStrings[i % 4],
                "'%20y='",
                sizeStrings[y_val],
                "'%20width='100%'%20height='100%'%20fill='",
                colors[i],
                "'/>"
            );
        }
        uri = abi.encodePacked(uri, "</svg>");
        iterations[tokenId] = iterations[tokenId] + 1;
        string memory tokenURI = buildTokenURI(uri, tokenId, false);
        _setTokenURI(tokenId, tokenURI);

    }

    function buildImgURI(bytes memory svg) public pure returns (bytes memory) {
        return abi.encodePacked(
            "data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'%20width='512'%20height='512'>",
            svg
        );
    }

    function buildTokenURI(bytes memory imageURI, uint256 tokenId, bool newCanvas) public view returns (string memory) {
        return string(abi.encodePacked(
                'data:application/json;utf8,{"name":"4x4_canvas_',
                tokenIdString[tokenId],
                '.svg","description":"On%20chain%20canvases%20for%20chain%20paintings.","image":"', 
                imageURI, 
                '","attributes":[{"trait_type":"artist","value":"',
                newCanvas ? "None" : addressToString(msg.sender),
                '"},{"trait_type":"iterations","value":',
                uint2str(iterations[tokenId]),
                '}]}'
            )
        );
    }

    function withdraw() public onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

    function setFreezeFee(uint256 newFee) public onlyOwner {
        fee = newFee;
    }

    function preserve(uint256 tokenId) public payable {
        require(msg.value >= fee, "Need to send more eth");
        require(ownerOf(tokenId) == msg.sender);
        isFrozen[tokenId] = true;
    }

    // Shoutout Barnabas Ujvari -- https://stackoverflow.com/questions/47129173/how-to-convert-uint-to-string-in-solidity
    function uint2str(uint _i) internal pure returns (string memory _uintAsString) {
        if (_i == 0) {
            return "0";
        }
        uint j = _i;
        uint len;
        while (j != 0) {
            len++;
            j /= 10;
        }
        bytes memory bstr = new bytes(len);
        uint k = len;
        while (_i != 0) {
            k = k-1;
            uint8 temp = (48 + uint8(_i - _i / 10 * 10));
            bytes1 b1 = bytes1(temp);
            bstr[k] = b1;
            _i /= 10;
        }
        return string(bstr);
    }

    // Shoutout Mickey Soaci -- https://ethereum.stackexchange.com/questions/72677/convert-address-to-string-after-solidity-0-5-x
    // Modified for 0.8.0
    function addressToString(address _addr) public pure returns(string memory) 
    {
        bytes32 value = bytes32(uint256(uint160(_addr)));
        bytes memory alphabet = "0123456789abcdef";

        bytes memory str = new bytes(51);
        str[0] = '0';
        str[1] = 'x';
        for (uint256 i = 0; i < 20; i++) {
            str[2+i*2] = alphabet[uint8(value[i + 12] >> 4)];
            str[3+i*2] = alphabet[uint8(value[i + 12] & 0x0f)];
        }
        return string(str);
    }
}

File 2 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 12 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 4 of 12 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 5 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

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

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

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

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 6 of 12 : 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 7 of 12 : 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 8 of 12 : 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 9 of 12 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 12 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 11 of 12 : 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 12 of 12 : 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"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"addressToString","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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":"bytes","name":"svg","type":"bytes"}],"name":"buildImgURI","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes","name":"imageURI","type":"bytes"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bool","name":"newCanvas","type":"bool"}],"name":"buildTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"create","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"","type":"uint256"}],"name":"isFrozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"iterations","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string[]","name":"colors","type":"string[]"}],"name":"paint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"preserve","outputs":[],"stateMutability":"payable","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":"uint256","name":"newFee","type":"uint256"}],"name":"setFreezeFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"sizeStrings","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenIdString","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600e81526020017f457468657265756d205061696e740000000000000000000000000000000000008152506040518060400160405280600881526020017f4554485041494e540000000000000000000000000000000000000000000000008152508160009080519060200190620000969291906200033c565b508060019080519060200190620000af9291906200033c565b505050620000d2620000c66200026e60201b60201c565b6200027660201b60201c565b60006008819055506702c68af0bb1400006009819055506040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250600d60008081526020019081526020016000209080519060200190620001479291906200033c565b506040518060400160405280600381526020017f3132380000000000000000000000000000000000000000000000000000000000815250600d6000600181526020019081526020016000209080519060200190620001a79291906200033c565b506040518060400160405280600381526020017f3235360000000000000000000000000000000000000000000000000000000000815250600d6000600281526020019081526020016000209080519060200190620002079291906200033c565b506040518060400160405280600381526020017f3338340000000000000000000000000000000000000000000000000000000000815250600d6000600381526020019081526020016000209080519060200190620002679291906200033c565b5062000451565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200034a90620003ec565b90600052602060002090601f0160209004810192826200036e5760008555620003ba565b82601f106200038957805160ff1916838001178555620003ba565b82800160010185558215620003ba579182015b82811115620003b95782518255916020019190600101906200039c565b5b509050620003c99190620003cd565b5090565b5b80821115620003e8576000816000905550600101620003ce565b5090565b600060028204905060018216806200040557607f821691505b602082108114156200041c576200041b62000422565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61488380620004616000396000f3fe6080604052600436106101cd5760003560e01c80636d018797116100f7578063a22cb46511610095578063ddca3f4311610064578063ddca3f43146106c3578063e985e9c5146106ee578063efc81a8c1461072b578063f2fde38b14610742576101cd565b8063a22cb46514610609578063b88d4fde14610632578063c87b56dd1461065b578063d082e38114610698576101cd565b80638da5cb5b116100d15780638da5cb5b1461054d57806394c0d63b1461057857806395d89b41146105a1578063a0894799146105cc576101cd565b80636d018797146104bc57806370a08231146104f9578063715018a614610536576101cd565b806327e048b51161016f5780634e29a6fb1161013e5780634e29a6fb146103c8578063589bbae2146104055780635e57966d146104425780636352211e1461047f576101cd565b806327e048b5146103435780633ccfd60b1461035f57806342842e0e14610376578063435104121461039f576101cd565b8063095ea7b3116101ab578063095ea7b3146102775780630b398a30146102a05780631267631d146102dd57806323b872dd1461031a576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190613034565b61076b565b6040516102069190614054565b60405180910390f35b34801561021b57600080fd5b5061022461084d565b6040516102319190614091565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c919061312e565b6108df565b60405161026e9190613fed565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612ff8565b610964565b005b3480156102ac57600080fd5b506102c760048036038101906102c2919061312e565b610a7c565b6040516102d49190614091565b60405180910390f35b3480156102e957600080fd5b5061030460048036038101906102ff9190613086565b610b1c565b604051610311919061406f565b60405180910390f35b34801561032657600080fd5b50610341600480360381019061033c9190612ef2565b610b45565b005b61035d6004803603810190610358919061312e565b610ba5565b005b34801561036b57600080fd5b50610374610c59565b005b34801561038257600080fd5b5061039d60048036038101906103989190612ef2565b610d25565b005b3480156103ab57600080fd5b506103c660048036038101906103c1919061312e565b610d45565b005b3480156103d457600080fd5b506103ef60048036038101906103ea91906130c7565b610dcb565b6040516103fc9190614091565b60405180910390f35b34801561041157600080fd5b5061042c6004803603810190610427919061312e565b610e72565b6040516104399190614333565b60405180910390f35b34801561044e57600080fd5b5061046960048036038101906104649190612e8d565b610e8a565b6040516104769190614091565b60405180910390f35b34801561048b57600080fd5b506104a660048036038101906104a1919061312e565b6112eb565b6040516104b39190613fed565b60405180910390f35b3480156104c857600080fd5b506104e360048036038101906104de919061312e565b61139d565b6040516104f09190614091565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b9190612e8d565b61143d565b60405161052d9190614333565b60405180910390f35b34801561054257600080fd5b5061054b6114f5565b005b34801561055957600080fd5b5061056261157d565b60405161056f9190613fed565b60405180910390f35b34801561058457600080fd5b5061059f600480360381019061059a9190613157565b6115a7565b005b3480156105ad57600080fd5b506105b661179e565b6040516105c39190614091565b60405180910390f35b3480156105d857600080fd5b506105f360048036038101906105ee919061312e565b611830565b6040516106009190614054565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b9190612fbc565b611850565b005b34801561063e57600080fd5b5061065960048036038101906106549190612f41565b6119d1565b005b34801561066757600080fd5b50610682600480360381019061067d919061312e565b611a33565b60405161068f9190614091565b60405180910390f35b3480156106a457600080fd5b506106ad611b85565b6040516106ba9190614333565b60405180910390f35b3480156106cf57600080fd5b506106d8611b8b565b6040516106e59190614333565b60405180910390f35b3480156106fa57600080fd5b5061071560048036038101906107109190612eb6565b611b91565b6040516107229190614054565b60405180910390f35b34801561073757600080fd5b50610740611c25565b005b34801561074e57600080fd5b5061076960048036038101906107649190612e8d565b611d3a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610846575061084582611e32565b5b9050919050565b60606000805461085c90614678565b80601f016020809104026020016040519081016040528092919081815260200182805461088890614678565b80156108d55780601f106108aa576101008083540402835291602001916108d5565b820191906000526020600020905b8154815290600101906020018083116108b857829003601f168201915b5050505050905090565b60006108ea82611e9c565b610929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092090614273565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096f826112eb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d7906142f3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109ff611f08565b73ffffffffffffffffffffffffffffffffffffffff161480610a2e5750610a2d81610a28611f08565b611b91565b5b610a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a64906141b3565b60405180910390fd5b610a778383611f10565b505050565b600d6020528060005260406000206000915090508054610a9b90614678565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac790614678565b8015610b145780601f10610ae957610100808354040283529160200191610b14565b820191906000526020600020905b815481529060010190602001808311610af757829003601f168201915b505050505081565b606081604051602001610b2f9190613f56565b6040516020818303038152906040529050919050565b610b56610b50611f08565b82611fc9565b610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c90614313565b60405180910390fd5b610ba08383836120a7565b505050565b600954341015610bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be1906140b3565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16610c0a826112eb565b73ffffffffffffffffffffffffffffffffffffffff1614610c2a57600080fd5b6001600a600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610c61611f08565b73ffffffffffffffffffffffffffffffffffffffff16610c7f61157d565b73ffffffffffffffffffffffffffffffffffffffff1614610cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccc90614293565b60405180910390fd5b610cdd61157d565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d22573d6000803e3d6000fd5b50565b610d40838383604051806020016040528060008152506119d1565b505050565b610d4d611f08565b73ffffffffffffffffffffffffffffffffffffffff16610d6b61157d565b73ffffffffffffffffffffffffffffffffffffffff1614610dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db890614293565b60405180910390fd5b8060098190555050565b6060600b60008481526020019081526020016000208483610df457610def33610e8a565b610e2b565b6040518060400160405280600481526020017f4e6f6e65000000000000000000000000000000000000000000000000000000008152505b610e47600c600088815260200190815260200160002054612303565b604051602001610e5a9493929190613f78565b60405160208183030381529060405290509392505050565b600c6020528060005260406000206000915090505481565b606060008273ffffffffffffffffffffffffffffffffffffffff1660001b905060006040518060400160405280601081526020017f303132333435363738396162636465660000000000000000000000000000000081525090506000603367ffffffffffffffff811115610f27577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610f595781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110610fb7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611041577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060005b60148110156112df5782600485600c8461108d9190614469565b602081106110c4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916901c60f81c60ff1681518110611129577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b826002836111429190614527565b600261114e9190614469565b81518110611185577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535082600f60f81b85600c846111c89190614469565b602081106111ff577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b1660f81c60ff1681518110611241577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b8260028361125a9190614527565b60036112669190614469565b8151811061129d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806112d7906146aa565b915050611073565b50809350505050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138b906141f3565b60405180910390fd5b80915050919050565b600b60205280600052604060002060009150905080546113bc90614678565b80601f01602080910402602001604051908101604052809291908181526020018280546113e890614678565b80156114355780601f1061140a57610100808354040283529160200191611435565b820191906000526020600020905b81548152906001019060200180831161141857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a5906141d3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114fd611f08565b73ffffffffffffffffffffffffffffffffffffffff1661151b61157d565b73ffffffffffffffffffffffffffffffffffffffff1614611571576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156890614293565b60405180910390fd5b61157b60006124d8565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff166115c7846112eb565b73ffffffffffffffffffffffffffffffffffffffff16146115e757600080fd5b600a600084815260200190815260200160002060009054906101000a900460ff161561161257600080fd5b600061162c60405180602001604052806000815250610b1c565b90506000805b601081101561172257600060048261164a91906146f3565b1480156116575750600381115b1561166c576001826116699190614469565b91505b82600d600060048461167e91906146f3565b8152602001908152602001600020600d60008581526020019081526020016000208787858181106116d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020028101906116ea919061434e565b6040516020016116fe959493929190613ea4565b6040516020818303038152906040529250808061171a906146aa565b915050611632565b50816040516020016117349190613f10565b60405160208183030381529060405291506001600c6000878152602001908152602001600020546117659190614469565b600c600087815260200190815260200160002081905550600061178a83876000610dcb565b9050611796868261259e565b505050505050565b6060600180546117ad90614678565b80601f01602080910402602001604051908101604052809291908181526020018280546117d990614678565b80156118265780601f106117fb57610100808354040283529160200191611826565b820191906000526020600020905b81548152906001019060200180831161180957829003601f168201915b5050505050905090565b600a6020528060005260406000206000915054906101000a900460ff1681565b611858611f08565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bd90614153565b60405180910390fd5b80600560006118d3611f08565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611980611f08565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119c59190614054565b60405180910390a35050565b6119e26119dc611f08565b83611fc9565b611a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1890614313565b60405180910390fd5b611a2d84848484612612565b50505050565b6060611a3e82611e9c565b611a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7490614253565b60405180910390fd5b6000600660008481526020019081526020016000208054611a9d90614678565b80601f0160208091040260200160405190810160405280929190818152602001828054611ac990614678565b8015611b165780601f10611aeb57610100808354040283529160200191611b16565b820191906000526020600020905b815481529060010190602001808311611af957829003601f168201915b505050505090506000611b2761266e565b9050600081511415611b3d578192505050611b80565b600082511115611b72578082604051602001611b5a929190613f32565b60405160208183030381529060405292505050611b80565b611b7b84612685565b925050505b919050565b60085481565b60095481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6102006008541115611c3657600080fd5b6003611c413361143d565b10611c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7890614173565b60405180910390fd5b611c8d3360085461272c565b611c98600854612303565b600b600060085481526020019081526020016000209080519060200190611cc0929190612ccf565b506000611d016040518060400160405280600681526020017f3c2f7376673e0000000000000000000000000000000000000000000000000000815250610b1c565b90506000611d13826008546001610dcb565b9050611d216008548261259e565b6001600854611d309190614469565b6008819055505050565b611d42611f08565b73ffffffffffffffffffffffffffffffffffffffff16611d6061157d565b73ffffffffffffffffffffffffffffffffffffffff1614611db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dad90614293565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1d906140f3565b60405180910390fd5b611e2f816124d8565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f83836112eb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611fd482611e9c565b612013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200a90614193565b60405180910390fd5b600061201e836112eb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061208d57508373ffffffffffffffffffffffffffffffffffffffff16612075846108df565b73ffffffffffffffffffffffffffffffffffffffff16145b8061209e575061209d8185611b91565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166120c7826112eb565b73ffffffffffffffffffffffffffffffffffffffff161461211d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612114906142b3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561218d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218490614133565b60405180910390fd5b61219883838361274a565b6121a3600082611f10565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121f39190614581565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461224a9190614469565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6060600082141561234b576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124d3565b600082905060005b6000821461237d578080612366906146aa565b915050600a8261237691906144f6565b9150612353565b60008167ffffffffffffffff8111156123bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123f15781602001600182028036833780820191505090505b50905060008290505b600086146124cb5760018161240f9190614581565b90506000600a808861242191906144f6565b61242b9190614527565b876124369190614581565b603061244291906144bf565b905060008160f81b905080848481518110612486577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a886124c291906144f6565b975050506123fa565b819450505050505b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125a782611e9c565b6125e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125dd90614213565b60405180910390fd5b8060066000848152602001908152602001600020908051906020019061260d929190612ccf565b505050565b61261d8484846120a7565b6126298484848461274f565b612668576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265f906140d3565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b606061269082611e9c565b6126cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c6906142d3565b60405180910390fd5b60006126d961266e565b905060008151116126f95760405180602001604052806000815250612724565b80612703846128e6565b604051602001612714929190613f32565b6040516020818303038152906040525b915050919050565b612746828260405180602001604052806000815250612a93565b5050565b505050565b60006127708473ffffffffffffffffffffffffffffffffffffffff16612aee565b156128d9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612799611f08565b8786866040518563ffffffff1660e01b81526004016127bb9493929190614008565b602060405180830381600087803b1580156127d557600080fd5b505af192505050801561280657506040513d601f19601f82011682018060405250810190612803919061305d565b60015b612889573d8060008114612836576040519150601f19603f3d011682016040523d82523d6000602084013e61283b565b606091505b50600081511415612881576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612878906140d3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128de565b600190505b949350505050565b6060600082141561292e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a8e565b600082905060005b60008214612960578080612949906146aa565b915050600a8261295991906144f6565b9150612936565b60008167ffffffffffffffff8111156129a2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156129d45781602001600182028036833780820191505090505b5090505b60008514612a87576001826129ed9190614581565b9150600a856129fc91906146f3565b6030612a089190614469565b60f81b818381518110612a44577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a8091906144f6565b94506129d8565b8093505050505b919050565b612a9d8383612b01565b612aaa600084848461274f565b612ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae0906140d3565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6890614233565b60405180910390fd5b612b7a81611e9c565b15612bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb190614113565b60405180910390fd5b612bc66000838361274a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c169190614469565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612cdb90614678565b90600052602060002090601f016020900481019282612cfd5760008555612d44565b82601f10612d1657805160ff1916838001178555612d44565b82800160010185558215612d44579182015b82811115612d43578251825591602001919060010190612d28565b5b509050612d519190612d55565b5090565b5b80821115612d6e576000816000905550600101612d56565b5090565b6000612d85612d80846143d6565b6143a5565b905082815260208101848484011115612d9d57600080fd5b612da8848285614636565b509392505050565b600081359050612dbf816147f1565b92915050565b60008083601f840112612dd757600080fd5b8235905067ffffffffffffffff811115612df057600080fd5b602083019150836020820283011115612e0857600080fd5b9250929050565b600081359050612e1e81614808565b92915050565b600081359050612e338161481f565b92915050565b600081519050612e488161481f565b92915050565b600082601f830112612e5f57600080fd5b8135612e6f848260208601612d72565b91505092915050565b600081359050612e8781614836565b92915050565b600060208284031215612e9f57600080fd5b6000612ead84828501612db0565b91505092915050565b60008060408385031215612ec957600080fd5b6000612ed785828601612db0565b9250506020612ee885828601612db0565b9150509250929050565b600080600060608486031215612f0757600080fd5b6000612f1586828701612db0565b9350506020612f2686828701612db0565b9250506040612f3786828701612e78565b9150509250925092565b60008060008060808587031215612f5757600080fd5b6000612f6587828801612db0565b9450506020612f7687828801612db0565b9350506040612f8787828801612e78565b925050606085013567ffffffffffffffff811115612fa457600080fd5b612fb087828801612e4e565b91505092959194509250565b60008060408385031215612fcf57600080fd5b6000612fdd85828601612db0565b9250506020612fee85828601612e0f565b9150509250929050565b6000806040838503121561300b57600080fd5b600061301985828601612db0565b925050602061302a85828601612e78565b9150509250929050565b60006020828403121561304657600080fd5b600061305484828501612e24565b91505092915050565b60006020828403121561306f57600080fd5b600061307d84828501612e39565b91505092915050565b60006020828403121561309857600080fd5b600082013567ffffffffffffffff8111156130b257600080fd5b6130be84828501612e4e565b91505092915050565b6000806000606084860312156130dc57600080fd5b600084013567ffffffffffffffff8111156130f657600080fd5b61310286828701612e4e565b935050602061311386828701612e78565b925050604061312486828701612e0f565b9150509250925092565b60006020828403121561314057600080fd5b600061314e84828501612e78565b91505092915050565b60008060006040848603121561316c57600080fd5b600061317a86828701612e78565b935050602084013567ffffffffffffffff81111561319757600080fd5b6131a386828701612dc5565b92509250509250925092565b6131b8816145b5565b82525050565b6131c7816145c7565b82525050565b60006131d88261441b565b6131e28185614431565b93506131f2818560208601614645565b6131fb816147e0565b840191505092915050565b60006132118261441b565b61321b8185614442565b935061322b818560208601614645565b80840191505092915050565b6000613243838561445e565b9350613250838584614636565b82840190509392505050565b600061326782614426565b613271818561444d565b9350613281818560208601614645565b61328a816147e0565b840191505092915050565b60006132a082614426565b6132aa818561445e565b93506132ba818560208601614645565b80840191505092915050565b600081546132d381614678565b6132dd818661445e565b945060018216600081146132f857600181146133095761333c565b60ff1983168652818601935061333c565b61331285614406565b60005b8381101561333457815481890152600182019150602081019050613315565b838801955050505b50505092915050565b600061335260158361444d565b91507f4e65656420746f2073656e64206d6f72652065746800000000000000000000006000830152602082019050919050565b6000613392607d8361445e565b91507f646174613a696d6167652f7376672b786d6c3b757466382c3c7376672532307860008301527f6d6c6e733d27687474703a2f2f7777772e77332e6f72672f323030302f73766760208301527f2725323076696577426f783d273025323030253230353132253230353132272560408301527f323077696474683d27353132272532306865696768743d27353132273e0000006060830152607d82019050919050565b600061344460328361444d565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006134aa60268361444d565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613510601c8361444d565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061355060298361445e565b91507f2725323077696474683d2731303025272532306865696768743d27313030252760008301527f25323066696c6c3d2700000000000000000000000000000000000000000000006020830152602982019050919050565b60006135b6602f8361445e565b91507f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c7b226e616d60008301527f65223a223478345f63616e7661735f00000000000000000000000000000000006020830152602f82019050919050565b600061361c60248361444d565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061368260198361444d565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006136c2602c8361444d565b91507f596f75206d6179206f6e6c79206d696e742074687265652063616e766173657360008301527f20706572206164647265737300000000000000000000000000000000000000006020830152604082019050919050565b6000613728602c8361444d565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061378e60078361445e565b91507f27253230793d27000000000000000000000000000000000000000000000000006000830152600782019050919050565b60006137ce60038361445e565b91507f272f3e00000000000000000000000000000000000000000000000000000000006000830152600382019050919050565b600061380e600c8361445e565b91507f203c72656374253230783d2700000000000000000000000000000000000000006000830152600c82019050919050565b600061384e60388361444d565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006138b4602a8361444d565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061391a60298361444d565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613980602e8361444d565b91507f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008301527f6578697374656e7420746f6b656e0000000000000000000000000000000000006020830152604082019050919050565b60006139e660208361444d565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613a2660038361445e565b91507f7d5d7d00000000000000000000000000000000000000000000000000000000006000830152600382019050919050565b6000613a6660308361445e565b91507f222c2261747472696275746573223a5b7b2274726169745f74797065223a226160008301527f7274697374222c2276616c7565223a22000000000000000000000000000000006020830152603082019050919050565b6000613acc60318361444d565b91507f45524337323155524953746f726167653a2055524920717565727920666f722060008301527f6e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006020830152604082019050919050565b6000613b32602c8361444d565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613b9860208361444d565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613bd860298361444d565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c3e602f8361444d565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613ca460508361445e565b91507f2e737667222c226465736372697074696f6e223a224f6e253230636861696e2560008301527f323063616e7661736573253230666f72253230636861696e2532307061696e7460208301527f696e67732e222c22696d616765223a22000000000000000000000000000000006040830152605082019050919050565b6000613d3060268361445e565b91507f227d2c7b2274726169745f74797065223a22697465726174696f6e73222c227660008301527f616c7565223a00000000000000000000000000000000000000000000000000006020830152602682019050919050565b6000613d9660218361444d565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613dfc60318361444d565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613e6260068361445e565b91507f3c2f7376673e00000000000000000000000000000000000000000000000000006000830152600682019050919050565b613e9e8161461f565b82525050565b6000613eb08288613206565b9150613ebb82613801565b9150613ec782876132c6565b9150613ed282613781565b9150613ede82866132c6565b9150613ee982613543565b9150613ef6828486613237565b9150613f01826137c1565b91508190509695505050505050565b6000613f1c8284613206565b9150613f2782613e55565b915081905092915050565b6000613f3e8285613295565b9150613f4a8284613295565b91508190509392505050565b6000613f6182613385565b9150613f6d8284613206565b915081905092915050565b6000613f83826135a9565b9150613f8f82876132c6565b9150613f9a82613c97565b9150613fa68286613206565b9150613fb182613a59565b9150613fbd8285613295565b9150613fc882613d23565b9150613fd48284613295565b9150613fdf82613a19565b915081905095945050505050565b600060208201905061400260008301846131af565b92915050565b600060808201905061401d60008301876131af565b61402a60208301866131af565b6140376040830185613e95565b818103606083015261404981846131cd565b905095945050505050565b600060208201905061406960008301846131be565b92915050565b6000602082019050818103600083015261408981846131cd565b905092915050565b600060208201905081810360008301526140ab818461325c565b905092915050565b600060208201905081810360008301526140cc81613345565b9050919050565b600060208201905081810360008301526140ec81613437565b9050919050565b6000602082019050818103600083015261410c8161349d565b9050919050565b6000602082019050818103600083015261412c81613503565b9050919050565b6000602082019050818103600083015261414c8161360f565b9050919050565b6000602082019050818103600083015261416c81613675565b9050919050565b6000602082019050818103600083015261418c816136b5565b9050919050565b600060208201905081810360008301526141ac8161371b565b9050919050565b600060208201905081810360008301526141cc81613841565b9050919050565b600060208201905081810360008301526141ec816138a7565b9050919050565b6000602082019050818103600083015261420c8161390d565b9050919050565b6000602082019050818103600083015261422c81613973565b9050919050565b6000602082019050818103600083015261424c816139d9565b9050919050565b6000602082019050818103600083015261426c81613abf565b9050919050565b6000602082019050818103600083015261428c81613b25565b9050919050565b600060208201905081810360008301526142ac81613b8b565b9050919050565b600060208201905081810360008301526142cc81613bcb565b9050919050565b600060208201905081810360008301526142ec81613c31565b9050919050565b6000602082019050818103600083015261430c81613d89565b9050919050565b6000602082019050818103600083015261432c81613def565b9050919050565b60006020820190506143486000830184613e95565b92915050565b6000808335600160200384360303811261436757600080fd5b80840192508235915067ffffffffffffffff82111561438557600080fd5b60208301925060018202360383131561439d57600080fd5b509250929050565b6000604051905081810181811067ffffffffffffffff821117156143cc576143cb6147b1565b5b8060405250919050565b600067ffffffffffffffff8211156143f1576143f06147b1565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006144748261461f565b915061447f8361461f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144b4576144b3614724565b5b828201905092915050565b60006144ca82614629565b91506144d583614629565b92508260ff038211156144eb576144ea614724565b5b828201905092915050565b60006145018261461f565b915061450c8361461f565b92508261451c5761451b614753565b5b828204905092915050565b60006145328261461f565b915061453d8361461f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561457657614575614724565b5b828202905092915050565b600061458c8261461f565b91506145978361461f565b9250828210156145aa576145a9614724565b5b828203905092915050565b60006145c0826145ff565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614663578082015181840152602081019050614648565b83811115614672576000848401525b50505050565b6000600282049050600182168061469057607f821691505b602082108114156146a4576146a3614782565b5b50919050565b60006146b58261461f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146e8576146e7614724565b5b600182019050919050565b60006146fe8261461f565b91506147098361461f565b92508261471957614718614753565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6147fa816145b5565b811461480557600080fd5b50565b614811816145c7565b811461481c57600080fd5b50565b614828816145d3565b811461483357600080fd5b50565b61483f8161461f565b811461484a57600080fd5b5056fea26469706673582212205625aba5db4063dd23e2f18dbff1ee4c4330cf4064f3a0f514bb5c9d0940cc8764736f6c63430008000033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80636d018797116100f7578063a22cb46511610095578063ddca3f4311610064578063ddca3f43146106c3578063e985e9c5146106ee578063efc81a8c1461072b578063f2fde38b14610742576101cd565b8063a22cb46514610609578063b88d4fde14610632578063c87b56dd1461065b578063d082e38114610698576101cd565b80638da5cb5b116100d15780638da5cb5b1461054d57806394c0d63b1461057857806395d89b41146105a1578063a0894799146105cc576101cd565b80636d018797146104bc57806370a08231146104f9578063715018a614610536576101cd565b806327e048b51161016f5780634e29a6fb1161013e5780634e29a6fb146103c8578063589bbae2146104055780635e57966d146104425780636352211e1461047f576101cd565b806327e048b5146103435780633ccfd60b1461035f57806342842e0e14610376578063435104121461039f576101cd565b8063095ea7b3116101ab578063095ea7b3146102775780630b398a30146102a05780631267631d146102dd57806323b872dd1461031a576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190613034565b61076b565b6040516102069190614054565b60405180910390f35b34801561021b57600080fd5b5061022461084d565b6040516102319190614091565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c919061312e565b6108df565b60405161026e9190613fed565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612ff8565b610964565b005b3480156102ac57600080fd5b506102c760048036038101906102c2919061312e565b610a7c565b6040516102d49190614091565b60405180910390f35b3480156102e957600080fd5b5061030460048036038101906102ff9190613086565b610b1c565b604051610311919061406f565b60405180910390f35b34801561032657600080fd5b50610341600480360381019061033c9190612ef2565b610b45565b005b61035d6004803603810190610358919061312e565b610ba5565b005b34801561036b57600080fd5b50610374610c59565b005b34801561038257600080fd5b5061039d60048036038101906103989190612ef2565b610d25565b005b3480156103ab57600080fd5b506103c660048036038101906103c1919061312e565b610d45565b005b3480156103d457600080fd5b506103ef60048036038101906103ea91906130c7565b610dcb565b6040516103fc9190614091565b60405180910390f35b34801561041157600080fd5b5061042c6004803603810190610427919061312e565b610e72565b6040516104399190614333565b60405180910390f35b34801561044e57600080fd5b5061046960048036038101906104649190612e8d565b610e8a565b6040516104769190614091565b60405180910390f35b34801561048b57600080fd5b506104a660048036038101906104a1919061312e565b6112eb565b6040516104b39190613fed565b60405180910390f35b3480156104c857600080fd5b506104e360048036038101906104de919061312e565b61139d565b6040516104f09190614091565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b9190612e8d565b61143d565b60405161052d9190614333565b60405180910390f35b34801561054257600080fd5b5061054b6114f5565b005b34801561055957600080fd5b5061056261157d565b60405161056f9190613fed565b60405180910390f35b34801561058457600080fd5b5061059f600480360381019061059a9190613157565b6115a7565b005b3480156105ad57600080fd5b506105b661179e565b6040516105c39190614091565b60405180910390f35b3480156105d857600080fd5b506105f360048036038101906105ee919061312e565b611830565b6040516106009190614054565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b9190612fbc565b611850565b005b34801561063e57600080fd5b5061065960048036038101906106549190612f41565b6119d1565b005b34801561066757600080fd5b50610682600480360381019061067d919061312e565b611a33565b60405161068f9190614091565b60405180910390f35b3480156106a457600080fd5b506106ad611b85565b6040516106ba9190614333565b60405180910390f35b3480156106cf57600080fd5b506106d8611b8b565b6040516106e59190614333565b60405180910390f35b3480156106fa57600080fd5b5061071560048036038101906107109190612eb6565b611b91565b6040516107229190614054565b60405180910390f35b34801561073757600080fd5b50610740611c25565b005b34801561074e57600080fd5b5061076960048036038101906107649190612e8d565b611d3a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610846575061084582611e32565b5b9050919050565b60606000805461085c90614678565b80601f016020809104026020016040519081016040528092919081815260200182805461088890614678565b80156108d55780601f106108aa576101008083540402835291602001916108d5565b820191906000526020600020905b8154815290600101906020018083116108b857829003601f168201915b5050505050905090565b60006108ea82611e9c565b610929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092090614273565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096f826112eb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d7906142f3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109ff611f08565b73ffffffffffffffffffffffffffffffffffffffff161480610a2e5750610a2d81610a28611f08565b611b91565b5b610a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a64906141b3565b60405180910390fd5b610a778383611f10565b505050565b600d6020528060005260406000206000915090508054610a9b90614678565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac790614678565b8015610b145780601f10610ae957610100808354040283529160200191610b14565b820191906000526020600020905b815481529060010190602001808311610af757829003601f168201915b505050505081565b606081604051602001610b2f9190613f56565b6040516020818303038152906040529050919050565b610b56610b50611f08565b82611fc9565b610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c90614313565b60405180910390fd5b610ba08383836120a7565b505050565b600954341015610bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be1906140b3565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16610c0a826112eb565b73ffffffffffffffffffffffffffffffffffffffff1614610c2a57600080fd5b6001600a600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610c61611f08565b73ffffffffffffffffffffffffffffffffffffffff16610c7f61157d565b73ffffffffffffffffffffffffffffffffffffffff1614610cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccc90614293565b60405180910390fd5b610cdd61157d565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d22573d6000803e3d6000fd5b50565b610d40838383604051806020016040528060008152506119d1565b505050565b610d4d611f08565b73ffffffffffffffffffffffffffffffffffffffff16610d6b61157d565b73ffffffffffffffffffffffffffffffffffffffff1614610dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db890614293565b60405180910390fd5b8060098190555050565b6060600b60008481526020019081526020016000208483610df457610def33610e8a565b610e2b565b6040518060400160405280600481526020017f4e6f6e65000000000000000000000000000000000000000000000000000000008152505b610e47600c600088815260200190815260200160002054612303565b604051602001610e5a9493929190613f78565b60405160208183030381529060405290509392505050565b600c6020528060005260406000206000915090505481565b606060008273ffffffffffffffffffffffffffffffffffffffff1660001b905060006040518060400160405280601081526020017f303132333435363738396162636465660000000000000000000000000000000081525090506000603367ffffffffffffffff811115610f27577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610f595781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110610fb7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611041577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060005b60148110156112df5782600485600c8461108d9190614469565b602081106110c4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916901c60f81c60ff1681518110611129577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b826002836111429190614527565b600261114e9190614469565b81518110611185577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535082600f60f81b85600c846111c89190614469565b602081106111ff577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b1660f81c60ff1681518110611241577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b8260028361125a9190614527565b60036112669190614469565b8151811061129d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806112d7906146aa565b915050611073565b50809350505050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138b906141f3565b60405180910390fd5b80915050919050565b600b60205280600052604060002060009150905080546113bc90614678565b80601f01602080910402602001604051908101604052809291908181526020018280546113e890614678565b80156114355780601f1061140a57610100808354040283529160200191611435565b820191906000526020600020905b81548152906001019060200180831161141857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a5906141d3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114fd611f08565b73ffffffffffffffffffffffffffffffffffffffff1661151b61157d565b73ffffffffffffffffffffffffffffffffffffffff1614611571576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156890614293565b60405180910390fd5b61157b60006124d8565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff166115c7846112eb565b73ffffffffffffffffffffffffffffffffffffffff16146115e757600080fd5b600a600084815260200190815260200160002060009054906101000a900460ff161561161257600080fd5b600061162c60405180602001604052806000815250610b1c565b90506000805b601081101561172257600060048261164a91906146f3565b1480156116575750600381115b1561166c576001826116699190614469565b91505b82600d600060048461167e91906146f3565b8152602001908152602001600020600d60008581526020019081526020016000208787858181106116d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020028101906116ea919061434e565b6040516020016116fe959493929190613ea4565b6040516020818303038152906040529250808061171a906146aa565b915050611632565b50816040516020016117349190613f10565b60405160208183030381529060405291506001600c6000878152602001908152602001600020546117659190614469565b600c600087815260200190815260200160002081905550600061178a83876000610dcb565b9050611796868261259e565b505050505050565b6060600180546117ad90614678565b80601f01602080910402602001604051908101604052809291908181526020018280546117d990614678565b80156118265780601f106117fb57610100808354040283529160200191611826565b820191906000526020600020905b81548152906001019060200180831161180957829003601f168201915b5050505050905090565b600a6020528060005260406000206000915054906101000a900460ff1681565b611858611f08565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bd90614153565b60405180910390fd5b80600560006118d3611f08565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611980611f08565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119c59190614054565b60405180910390a35050565b6119e26119dc611f08565b83611fc9565b611a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1890614313565b60405180910390fd5b611a2d84848484612612565b50505050565b6060611a3e82611e9c565b611a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7490614253565b60405180910390fd5b6000600660008481526020019081526020016000208054611a9d90614678565b80601f0160208091040260200160405190810160405280929190818152602001828054611ac990614678565b8015611b165780601f10611aeb57610100808354040283529160200191611b16565b820191906000526020600020905b815481529060010190602001808311611af957829003601f168201915b505050505090506000611b2761266e565b9050600081511415611b3d578192505050611b80565b600082511115611b72578082604051602001611b5a929190613f32565b60405160208183030381529060405292505050611b80565b611b7b84612685565b925050505b919050565b60085481565b60095481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6102006008541115611c3657600080fd5b6003611c413361143d565b10611c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7890614173565b60405180910390fd5b611c8d3360085461272c565b611c98600854612303565b600b600060085481526020019081526020016000209080519060200190611cc0929190612ccf565b506000611d016040518060400160405280600681526020017f3c2f7376673e0000000000000000000000000000000000000000000000000000815250610b1c565b90506000611d13826008546001610dcb565b9050611d216008548261259e565b6001600854611d309190614469565b6008819055505050565b611d42611f08565b73ffffffffffffffffffffffffffffffffffffffff16611d6061157d565b73ffffffffffffffffffffffffffffffffffffffff1614611db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dad90614293565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1d906140f3565b60405180910390fd5b611e2f816124d8565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f83836112eb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611fd482611e9c565b612013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200a90614193565b60405180910390fd5b600061201e836112eb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061208d57508373ffffffffffffffffffffffffffffffffffffffff16612075846108df565b73ffffffffffffffffffffffffffffffffffffffff16145b8061209e575061209d8185611b91565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166120c7826112eb565b73ffffffffffffffffffffffffffffffffffffffff161461211d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612114906142b3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561218d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218490614133565b60405180910390fd5b61219883838361274a565b6121a3600082611f10565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121f39190614581565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461224a9190614469565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6060600082141561234b576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124d3565b600082905060005b6000821461237d578080612366906146aa565b915050600a8261237691906144f6565b9150612353565b60008167ffffffffffffffff8111156123bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123f15781602001600182028036833780820191505090505b50905060008290505b600086146124cb5760018161240f9190614581565b90506000600a808861242191906144f6565b61242b9190614527565b876124369190614581565b603061244291906144bf565b905060008160f81b905080848481518110612486577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a886124c291906144f6565b975050506123fa565b819450505050505b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125a782611e9c565b6125e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125dd90614213565b60405180910390fd5b8060066000848152602001908152602001600020908051906020019061260d929190612ccf565b505050565b61261d8484846120a7565b6126298484848461274f565b612668576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265f906140d3565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b606061269082611e9c565b6126cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c6906142d3565b60405180910390fd5b60006126d961266e565b905060008151116126f95760405180602001604052806000815250612724565b80612703846128e6565b604051602001612714929190613f32565b6040516020818303038152906040525b915050919050565b612746828260405180602001604052806000815250612a93565b5050565b505050565b60006127708473ffffffffffffffffffffffffffffffffffffffff16612aee565b156128d9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612799611f08565b8786866040518563ffffffff1660e01b81526004016127bb9493929190614008565b602060405180830381600087803b1580156127d557600080fd5b505af192505050801561280657506040513d601f19601f82011682018060405250810190612803919061305d565b60015b612889573d8060008114612836576040519150601f19603f3d011682016040523d82523d6000602084013e61283b565b606091505b50600081511415612881576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612878906140d3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128de565b600190505b949350505050565b6060600082141561292e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a8e565b600082905060005b60008214612960578080612949906146aa565b915050600a8261295991906144f6565b9150612936565b60008167ffffffffffffffff8111156129a2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156129d45781602001600182028036833780820191505090505b5090505b60008514612a87576001826129ed9190614581565b9150600a856129fc91906146f3565b6030612a089190614469565b60f81b818381518110612a44577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a8091906144f6565b94506129d8565b8093505050505b919050565b612a9d8383612b01565b612aaa600084848461274f565b612ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae0906140d3565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6890614233565b60405180910390fd5b612b7a81611e9c565b15612bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb190614113565b60405180910390fd5b612bc66000838361274a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c169190614469565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612cdb90614678565b90600052602060002090601f016020900481019282612cfd5760008555612d44565b82601f10612d1657805160ff1916838001178555612d44565b82800160010185558215612d44579182015b82811115612d43578251825591602001919060010190612d28565b5b509050612d519190612d55565b5090565b5b80821115612d6e576000816000905550600101612d56565b5090565b6000612d85612d80846143d6565b6143a5565b905082815260208101848484011115612d9d57600080fd5b612da8848285614636565b509392505050565b600081359050612dbf816147f1565b92915050565b60008083601f840112612dd757600080fd5b8235905067ffffffffffffffff811115612df057600080fd5b602083019150836020820283011115612e0857600080fd5b9250929050565b600081359050612e1e81614808565b92915050565b600081359050612e338161481f565b92915050565b600081519050612e488161481f565b92915050565b600082601f830112612e5f57600080fd5b8135612e6f848260208601612d72565b91505092915050565b600081359050612e8781614836565b92915050565b600060208284031215612e9f57600080fd5b6000612ead84828501612db0565b91505092915050565b60008060408385031215612ec957600080fd5b6000612ed785828601612db0565b9250506020612ee885828601612db0565b9150509250929050565b600080600060608486031215612f0757600080fd5b6000612f1586828701612db0565b9350506020612f2686828701612db0565b9250506040612f3786828701612e78565b9150509250925092565b60008060008060808587031215612f5757600080fd5b6000612f6587828801612db0565b9450506020612f7687828801612db0565b9350506040612f8787828801612e78565b925050606085013567ffffffffffffffff811115612fa457600080fd5b612fb087828801612e4e565b91505092959194509250565b60008060408385031215612fcf57600080fd5b6000612fdd85828601612db0565b9250506020612fee85828601612e0f565b9150509250929050565b6000806040838503121561300b57600080fd5b600061301985828601612db0565b925050602061302a85828601612e78565b9150509250929050565b60006020828403121561304657600080fd5b600061305484828501612e24565b91505092915050565b60006020828403121561306f57600080fd5b600061307d84828501612e39565b91505092915050565b60006020828403121561309857600080fd5b600082013567ffffffffffffffff8111156130b257600080fd5b6130be84828501612e4e565b91505092915050565b6000806000606084860312156130dc57600080fd5b600084013567ffffffffffffffff8111156130f657600080fd5b61310286828701612e4e565b935050602061311386828701612e78565b925050604061312486828701612e0f565b9150509250925092565b60006020828403121561314057600080fd5b600061314e84828501612e78565b91505092915050565b60008060006040848603121561316c57600080fd5b600061317a86828701612e78565b935050602084013567ffffffffffffffff81111561319757600080fd5b6131a386828701612dc5565b92509250509250925092565b6131b8816145b5565b82525050565b6131c7816145c7565b82525050565b60006131d88261441b565b6131e28185614431565b93506131f2818560208601614645565b6131fb816147e0565b840191505092915050565b60006132118261441b565b61321b8185614442565b935061322b818560208601614645565b80840191505092915050565b6000613243838561445e565b9350613250838584614636565b82840190509392505050565b600061326782614426565b613271818561444d565b9350613281818560208601614645565b61328a816147e0565b840191505092915050565b60006132a082614426565b6132aa818561445e565b93506132ba818560208601614645565b80840191505092915050565b600081546132d381614678565b6132dd818661445e565b945060018216600081146132f857600181146133095761333c565b60ff1983168652818601935061333c565b61331285614406565b60005b8381101561333457815481890152600182019150602081019050613315565b838801955050505b50505092915050565b600061335260158361444d565b91507f4e65656420746f2073656e64206d6f72652065746800000000000000000000006000830152602082019050919050565b6000613392607d8361445e565b91507f646174613a696d6167652f7376672b786d6c3b757466382c3c7376672532307860008301527f6d6c6e733d27687474703a2f2f7777772e77332e6f72672f323030302f73766760208301527f2725323076696577426f783d273025323030253230353132253230353132272560408301527f323077696474683d27353132272532306865696768743d27353132273e0000006060830152607d82019050919050565b600061344460328361444d565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006134aa60268361444d565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613510601c8361444d565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061355060298361445e565b91507f2725323077696474683d2731303025272532306865696768743d27313030252760008301527f25323066696c6c3d2700000000000000000000000000000000000000000000006020830152602982019050919050565b60006135b6602f8361445e565b91507f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c7b226e616d60008301527f65223a223478345f63616e7661735f00000000000000000000000000000000006020830152602f82019050919050565b600061361c60248361444d565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061368260198361444d565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006136c2602c8361444d565b91507f596f75206d6179206f6e6c79206d696e742074687265652063616e766173657360008301527f20706572206164647265737300000000000000000000000000000000000000006020830152604082019050919050565b6000613728602c8361444d565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061378e60078361445e565b91507f27253230793d27000000000000000000000000000000000000000000000000006000830152600782019050919050565b60006137ce60038361445e565b91507f272f3e00000000000000000000000000000000000000000000000000000000006000830152600382019050919050565b600061380e600c8361445e565b91507f203c72656374253230783d2700000000000000000000000000000000000000006000830152600c82019050919050565b600061384e60388361444d565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006138b4602a8361444d565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061391a60298361444d565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613980602e8361444d565b91507f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008301527f6578697374656e7420746f6b656e0000000000000000000000000000000000006020830152604082019050919050565b60006139e660208361444d565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613a2660038361445e565b91507f7d5d7d00000000000000000000000000000000000000000000000000000000006000830152600382019050919050565b6000613a6660308361445e565b91507f222c2261747472696275746573223a5b7b2274726169745f74797065223a226160008301527f7274697374222c2276616c7565223a22000000000000000000000000000000006020830152603082019050919050565b6000613acc60318361444d565b91507f45524337323155524953746f726167653a2055524920717565727920666f722060008301527f6e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006020830152604082019050919050565b6000613b32602c8361444d565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613b9860208361444d565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613bd860298361444d565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c3e602f8361444d565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613ca460508361445e565b91507f2e737667222c226465736372697074696f6e223a224f6e253230636861696e2560008301527f323063616e7661736573253230666f72253230636861696e2532307061696e7460208301527f696e67732e222c22696d616765223a22000000000000000000000000000000006040830152605082019050919050565b6000613d3060268361445e565b91507f227d2c7b2274726169745f74797065223a22697465726174696f6e73222c227660008301527f616c7565223a00000000000000000000000000000000000000000000000000006020830152602682019050919050565b6000613d9660218361444d565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613dfc60318361444d565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613e6260068361445e565b91507f3c2f7376673e00000000000000000000000000000000000000000000000000006000830152600682019050919050565b613e9e8161461f565b82525050565b6000613eb08288613206565b9150613ebb82613801565b9150613ec782876132c6565b9150613ed282613781565b9150613ede82866132c6565b9150613ee982613543565b9150613ef6828486613237565b9150613f01826137c1565b91508190509695505050505050565b6000613f1c8284613206565b9150613f2782613e55565b915081905092915050565b6000613f3e8285613295565b9150613f4a8284613295565b91508190509392505050565b6000613f6182613385565b9150613f6d8284613206565b915081905092915050565b6000613f83826135a9565b9150613f8f82876132c6565b9150613f9a82613c97565b9150613fa68286613206565b9150613fb182613a59565b9150613fbd8285613295565b9150613fc882613d23565b9150613fd48284613295565b9150613fdf82613a19565b915081905095945050505050565b600060208201905061400260008301846131af565b92915050565b600060808201905061401d60008301876131af565b61402a60208301866131af565b6140376040830185613e95565b818103606083015261404981846131cd565b905095945050505050565b600060208201905061406960008301846131be565b92915050565b6000602082019050818103600083015261408981846131cd565b905092915050565b600060208201905081810360008301526140ab818461325c565b905092915050565b600060208201905081810360008301526140cc81613345565b9050919050565b600060208201905081810360008301526140ec81613437565b9050919050565b6000602082019050818103600083015261410c8161349d565b9050919050565b6000602082019050818103600083015261412c81613503565b9050919050565b6000602082019050818103600083015261414c8161360f565b9050919050565b6000602082019050818103600083015261416c81613675565b9050919050565b6000602082019050818103600083015261418c816136b5565b9050919050565b600060208201905081810360008301526141ac8161371b565b9050919050565b600060208201905081810360008301526141cc81613841565b9050919050565b600060208201905081810360008301526141ec816138a7565b9050919050565b6000602082019050818103600083015261420c8161390d565b9050919050565b6000602082019050818103600083015261422c81613973565b9050919050565b6000602082019050818103600083015261424c816139d9565b9050919050565b6000602082019050818103600083015261426c81613abf565b9050919050565b6000602082019050818103600083015261428c81613b25565b9050919050565b600060208201905081810360008301526142ac81613b8b565b9050919050565b600060208201905081810360008301526142cc81613bcb565b9050919050565b600060208201905081810360008301526142ec81613c31565b9050919050565b6000602082019050818103600083015261430c81613d89565b9050919050565b6000602082019050818103600083015261432c81613def565b9050919050565b60006020820190506143486000830184613e95565b92915050565b6000808335600160200384360303811261436757600080fd5b80840192508235915067ffffffffffffffff82111561438557600080fd5b60208301925060018202360383131561439d57600080fd5b509250929050565b6000604051905081810181811067ffffffffffffffff821117156143cc576143cb6147b1565b5b8060405250919050565b600067ffffffffffffffff8211156143f1576143f06147b1565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006144748261461f565b915061447f8361461f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144b4576144b3614724565b5b828201905092915050565b60006144ca82614629565b91506144d583614629565b92508260ff038211156144eb576144ea614724565b5b828201905092915050565b60006145018261461f565b915061450c8361461f565b92508261451c5761451b614753565b5b828204905092915050565b60006145328261461f565b915061453d8361461f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561457657614575614724565b5b828202905092915050565b600061458c8261461f565b91506145978361461f565b9250828210156145aa576145a9614724565b5b828203905092915050565b60006145c0826145ff565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614663578082015181840152602081019050614648565b83811115614672576000848401525b50505050565b6000600282049050600182168061469057607f821691505b602082108114156146a4576146a3614782565b5b50919050565b60006146b58261461f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146e8576146e7614724565b5b600182019050919050565b60006146fe8261461f565b91506147098361461f565b92508261471957614718614753565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6147fa816145b5565b811461480557600080fd5b50565b614811816145c7565b811461481c57600080fd5b50565b614828816145d3565b811461483357600080fd5b50565b61483f8161461f565b811461484a57600080fd5b5056fea26469706673582212205625aba5db4063dd23e2f18dbff1ee4c4330cf4064f3a0f514bb5c9d0940cc8764736f6c63430008000033

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.