ETH Price: $2,629.87 (+7.54%)

Token

Mainframes (MFS)
 

Overview

Max Total Supply

287 MFS

Holders

151

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
b13l.eth
Balance
1 MFS
0x34a4dd196ab83166c8c9935d5a6f60f2a02a905a
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
Mainframes

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 17 : Mainframes.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.2;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "./Base64.sol";
import "./Colors.sol";
import "./SVGFace.sol";

contract Mainframes is ERC721, ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;

    uint256 public cost = 0.02048 ether;
    uint256 public maxSupply = 2048;

    Counters.Counter private _tokenIdCounter;

    string public constant DESCRIPTION =
        "Mainframes are a collection of 2048 randomly generated mainframes stored entirely on-chain. Each Mainframe will fit into your wallet and stay operational forever, constantly giving you retro vibes from the past.";

    constructor() ERC721("Mainframes", "MFS") {
        _tokenIdCounter.increment();
    }

    function _mint(address _to) private {
        uint256 amount = _tokenIdCounter.current();
        uint256 supply = totalSupply();
        require(supply + amount <= maxSupply, "SOLD_OUT");

        _safeMint(_to, amount);
        _tokenIdCounter.increment();
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        string memory seed = string(
            abi.encodePacked(
                Strings.toString(tokenId),
                block.difficulty,
                block.timestamp
            )
        );
        Colors.MainframeColors memory colors = Colors.generateComputerColors(
            seed
        );
        uint256 face = Colors.generatePseudoRandomValue(seed, 0, 200);

        string memory attributes = generateAttributes(face);

        string memory image = string(
            abi.encodePacked(
                '<svg xmlns="http://www.w3.org/2000/svg" width="1024" height="1024" fill="none">',
                generatePaths(face),
                generateDefs(colors),
                "</svg>"
            )
        );

        string memory output = Base64.encode(
            bytes(
                string(
                    abi.encodePacked(
                        '{"name":"Mainframe #',
                        Strings.toString(tokenId),
                        '", "attributes":',
                        attributes,
                        ',"description":"',
                        DESCRIPTION,
                        '","image": "data:image/svg+xml;base64,',
                        Base64.encode(bytes(image)),
                        '"}'
                    )
                )
            )
        );

        output = string(
            abi.encodePacked("data:application/json;base64,", output)
        );

        return output;
    }

    function generatePaths(uint256 face) internal pure returns (string memory) {
        return
            string(
                abi.encodePacked(
                    '<path fill="url(#a)" d="M0 0h1024v1024H0z"/><path fill="#fff" fill-rule="evenodd" d="M232.808 240.339c0-11.311 9.169-20.48 20.48-20.48h453.205a114.895 114.895 0 0 1 114.898 114.898v9.437l51.846 44.251c14.234 12.196 23.688 28.902 23.688 47.842v111.14c0 22.997-13.635 41.537-31.031 53.441-6.429 4.4-13.605 8.093-21.326 11.005A105.455 105.455 0 0 1 808.2 807.106a20.43 20.43 0 0 1-7.289 1.336H83.336c-10.793 0-19.636-8.35-20.423-18.942a20.476 20.476 0 0 1-18.94-20.422v-37.767a20.48 20.48 0 0 1 14.003-19.429l174.832-58.277V618.01c0-3.316.804-6.548 2.304-9.437a20.396 20.396 0 0 1-2.304-9.447V240.339z" clip-rule="evenodd"/><path fill="url(#b)" d="M253.287 240.339h453.205v358.787H253.287V240.339zM253.287 618.01h453.205v169.952H253.287V618.01z"/><path fill="url(#c)" d="M773.256 267.993a94.418 94.418 0 0 0-66.764-27.654v358.787h94.418V334.757a94.42 94.42 0 0 0-27.654-66.764zM706.492 618.01h84.976a84.976 84.976 0 0 1 0 169.952h-84.976V618.01z"/><path fill="url(#d)" d="m668.724 655.777-226.603 75.534v37.767h358.787v-75.534l-132.184 49.569v-87.336z"/><path fill="url(#e)" d="M64.451 731.311h377.671v37.767H64.452v-37.767zM536.539 750.194H649.84v18.884H536.539v-18.884z"/><g fill="url(#f)"><path d="M291.054 655.777 64.451 731.312h377.671l226.603-75.535H291.054zM687.607 693.544l-151.068 56.651H649.84l151.069-56.651H687.607z"/></g><g fill="url(#g)"><path d="M668.726 278.105H291.055v283.254h377.671V278.105zM272.17 599.126h509.856v18.884H272.17v-18.884zM83.123 769.205h718.005v18.673H83.123v-18.673zM859.913 403.996l-59.001-50.356v245.465c41.733 0 75.534-23.143 75.534-51.678v-111.14c0-11.75-5.833-23.122-16.533-32.291z"/></g>',
                    SVGFace.pickSVGFacePath(face)
                )
            );
    }

    function generateDefs(Colors.MainframeColors memory colors)
        internal
        pure
        returns (string memory)
    {
        string memory parts = string(
            abi.encodePacked(
                '<defs><linearGradient id="a" x1="512" x2="512" y1="0" y2="1024" gradientUnits="userSpaceOnUse"><stop stop-color="',
                colors.bg.start,
                '"/><stop offset="1" stop-color="',
                colors.bg.end,
                '"/></linearGradient><linearGradient id="b" x1="479.89" x2="479.89" y1="240.339" y2="787.962" gradientUnits="userSpaceOnUse"><stop stop-color="',
                colors.light.start,
                '"/><stop offset="1" stop-color="',
                colors.light.end,
                '"/></linearGradient><linearGradient id="c" x1="791.468" x2="791.468" y1="240.339" y2="787.962" gradientUnits="userSpaceOnUse"><stop stop-color="',
                colors.medium.start,
                '"/><stop offset="1" stop-color="',
                colors.medium.end,
                '"/></linearGradient><linearGradient id="d" x1="710" x2="665.834" y1="633" y2="782.198" gradientUnits="userSpaceOnUse"><stop stop-color="',
                colors.light.start
            )
        );

        parts = string(
            abi.encodePacked(
                parts,
                '"/><stop offset="1" stop-color="',
                colors.light.end,
                '"/></linearGradient><linearGradient id="e" x1="357.146" x2="357.146" y1="720" y2="769.078" gradientUnits="userSpaceOnUse"><stop stop-color="',
                colors.light.start,
                '"/><stop offset="1" stop-color="',
                colors.light.end,
                '"/></linearGradient><linearGradient id="f" x1="432.68" x2="432.68" y1="655.777" y2="750.195" gradientUnits="userSpaceOnUse"><stop stop-color="',
                colors.light.start,
                '"/><stop offset="1" stop-color="',
                colors.light.end,
                '"/></linearGradient><linearGradient id="g" x1="479.785" x2="479.785" y1="278.105" y2="787.878" gradientUnits="userSpaceOnUse"><stop stop-color="',
                colors.dark.start,
                '"/><stop offset="1" stop-color="',
                colors.dark.end,
                '"/></linearGradient></defs>'
            )
        );

        return parts;
    }

    function generateAttributes(uint256 face)
        internal
        pure
        returns (string memory)
    {
        return
            string(
                abi.encodePacked(
                    "[",
                    '{ "trait_type": "Face",',
                    '"value": "',
                    SVGFace.pickSVGFaceName(face),
                    '"}',
                    "]"
                )
            );
    }

    function mint(address destination) public onlyOwner {
        _mint(destination);
    }

    function mintMainframe() public payable virtual {
        require(msg.value >= cost, "PRICE_NOT_MET");
        _mint(msg.sender);
    }

    function withdraw() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    // The following functions are overrides required by Solidity.
    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

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

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

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

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 4 of 17 : 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 5 of 17 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 6 of 17 : 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 7 of 17 : Base64.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

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

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

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

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

        bytes memory table = TABLE;

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

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

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

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

                mstore(resultPtr, out)

                resultPtr := add(resultPtr, 4)
            }

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

            mstore(result, encodedLen)
        }

        return string(result);
    }
}

File 8 of 17 : Colors.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

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

library Colors {
    using Strings for uint256;

    struct HSL {
        uint256 hue;
        uint256 saturation;
        uint256 lightness;
    }

    struct Color {
        string start;
        string end;
    }

    struct MainframeColors {
        Color light;
        Color medium;
        Color dark;
        Color bg;
    }

    function generateHSLColor(
        string memory seed,
        uint256 hMin,
        uint256 hMax,
        uint256 sMin,
        uint256 sMax,
        uint256 lMin,
        uint256 lMax
    ) public pure returns (HSL memory) {
        return
            HSL(
                generatePseudoRandomValue(
                    string(abi.encodePacked("H", seed)),
                    hMin,
                    hMax
                ),
                generatePseudoRandomValue(
                    string(abi.encodePacked("S", seed)),
                    sMin,
                    sMax
                ),
                generatePseudoRandomValue(
                    string(abi.encodePacked("L", seed)),
                    lMin,
                    lMax
                )
            );
    }

    function toHSLString(HSL memory hsl) public pure returns (string memory) {
        return
            string(
                abi.encodePacked(
                    "hsl(",
                    hsl.hue.toString(),
                    ",",
                    hsl.saturation.toString(),
                    "%,",
                    hsl.lightness.toString(),
                    "%)"
                )
            );
    }

    function generatePseudoRandomValue(
        string memory seed,
        uint256 from,
        uint256 to
    ) public pure returns (uint256) {
        if (to <= from) return from;
        return
            (uint256(keccak256(abi.encodePacked(seed))) % (to - from)) + from;
    }

    function generateComputerColors(string memory seed)
        public
        pure
        returns (MainframeColors memory)
    {
        HSL memory lightStart = generateHSLColor(
            string(abi.encodePacked(seed, "LIGHT_START")),
            0,
            359,
            50,
            70,
            55,
            75
        );
        HSL memory lightEnd = generateHSLColor(
            string(abi.encodePacked(seed, "LIGHT_END")),
            lightStart.hue + 359 - generatePseudoRandomValue(seed, 5, 60),
            lightStart.hue + 359 + generatePseudoRandomValue(seed, 5, 60),
            70,
            85,
            25,
            45
        );
        HSL memory mediumStart = generateHSLColor(
            string(abi.encodePacked(seed, "MEDIUM_START")),
            lightStart.hue,
            lightStart.hue,
            lightStart.saturation,
            lightStart.saturation,
            35,
            50
        );
        HSL memory mediumEnd = generateHSLColor(
            string(abi.encodePacked(seed, "MEDIUM_START")),
            lightEnd.hue,
            lightEnd.hue,
            lightEnd.saturation,
            lightEnd.saturation,
            35,
            10
        );

        HSL memory darkStart = generateHSLColor(
            string(abi.encodePacked(seed, "MEDIUM_START")),
            0,
            359,
            40,
            70,
            13,
            16
        );
        HSL memory darkEnd = generateHSLColor(
            string(abi.encodePacked(seed, "DARKEST_END")),
            darkStart.hue + 359 - generatePseudoRandomValue(seed, 5, 60),
            darkStart.hue + 359 + generatePseudoRandomValue(seed, 5, 60),
            darkStart.saturation,
            darkStart.saturation,
            3,
            13
        );

        HSL memory BGStart = generateHSLColor(
            string(abi.encodePacked(seed, "BG_START")),
            0,
            359,
            55,
            100,
            45,
            65
        );
        HSL memory BGEnd = generateHSLColor(
            string(abi.encodePacked(seed, "BG_END")),
            0,
            359,
            BGStart.saturation,
            BGStart.saturation,
            BGStart.lightness,
            BGStart.lightness
        );

        return
            MainframeColors(
                Color(toHSLString(lightStart), toHSLString(lightEnd)),
                Color(toHSLString(mediumStart), toHSLString(mediumEnd)),
                Color(toHSLString(darkStart), toHSLString(darkEnd)),
                Color(toHSLString(BGStart), toHSLString(BGEnd))
            );
    }
}

File 9 of 17 : SVGFace.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

library SVGFace {
    function pickSVGFaceName(uint256 face) public pure returns (string memory) {
        string memory name = "";
        if (face <= 50) {
            name = "Happy";
        } else if (face <= 90) {
            name = "Joyful";
        } else if (face <= 120) {
            name = "Surprised";
        } else if (face <= 140) {
            name = "Tired";
        } else if (face <= 160) {
            name = "Angry";
        } else if (face <= 170) {
            name = "Uh-oh";
        } else if (face <= 180) {
            name = "Sad";
        } else if (face <= 190) {
            name = "Dead";
        } else if (face <= 198) {
            name = "Uwu";
        } else if (face == 199) {
            name = "BSOD";
        } else {
            // face == 200.
            name = "Off";
        }

        return string(abi.encodePacked(name));
    }

    function pickSVGFacePath(uint256 face) public pure returns (string memory) {
        string memory path = "";
        if (face <= 50) {
            // Face: :)
            path = '<path fill="#fff" d="M392 334h35v71h-35v-71zM534 334h35v71h-35v-71zM391.571 440.714H356v35.572h35.571v-35.572zM569 476H392v36h177v-36zM569.428 440.714h35.571v35.572h-35.571v-35.572z"/>';
        } else if (face <= 90) {
            // Face: ^_^
            path = '<path fill="#fff" d="M427.142 334H391.57v35.571h35.572V334zM391.571 369.572H356v35.571h35.571v-35.571zM427.142 369.571l35.572.001v35.571h-35.571l-.001-35.572zM533.857 369.572h-35.572v35.571h35.572v-35.571zM392 476h35v36h107v-36h35v-35H392v35zM569.427 334h-35.572v35.571h35.572V334zM604.999 369.572l-35.572-.001.001 35.572h35.571v-35.571z"/>';
        } else if (face <= 120) {
            // Face: :o
            path = '<path fill="#fff" d="M391 334h35.571v35.571H391V334zM427 405h106v107H427V405zM568.857 334h-35.572v35.571h35.572V334z"/>';
        } else if (face <= 140) {
            // Face: -_-
            path = '<path fill="#fff" d="M391 370h35.571v35.571H391V370zM426.857 440.857h106v36h-106v-36zM568.857 370h-35.572v35.571h35.572V370z"/>';
        } else if (face <= 160) {
            // Face: >_<
            path = '<path fill="#fff" d="M356 352h35.571v35.571h35.571v35.572h-35.571v35.571H356v-35.571h35.57v-35.572H356V352zM427 459h107v35H427v-35zM569.427 387.571h-35.572v35.572h35.572v-35.572zM569.428 352h35.571v35.571h-35.572l.001-35.571zM604.999 423.143h-35.572l.001 35.571h35.571v-35.571z"/>';
        } else if (face <= 170) {
            // Face: ._.
            path = '<path fill="#fff" d="M568.429 452h-35.572v35.571h35.572V452zM391 452.286h35.571v35.571H391v-35.571zM462.143 487.857h35.571v35.571h-35.571v-35.571z"/>';
        } else if (face <= 180) {
            // Face: :(
            path = '<path fill="#fff" d="M392 334h35v71h-35v-71zM356 476.286h35.571v35.571H356v-35.571zM569 334h-35v71h35v-71zM392 440h177v36H392v-36zM604.999 476.286h-35.571v35.571h35.571v-35.571z"/>';
        } else if (face <= 190) {
            // Face: x_x
            path = '<path fill="#fff" d="M356 334h35.571v35.571H356V334zM391.571 405.143h35.571v-35.571H391.57v35.571H356v35.571h35.571v-35.571z"/><path fill="#fff" d="M427.142 405.143h35.572v35.571h-35.571l-.001-35.571zM533.857 334h-35.572v35.571h35.572V334zM498.285 405.143h35.57v-35.571h35.572v35.571h-35.57v35.571h-35.572v-35.571zM534 476H427v36h107v-36zM604.999 334h-35.571l-.001 35.572 35.572-.001V334zM569.427 405.143h35.572v35.571h-35.571l-.001-35.571zM462.714 334h-35.571l-.001 35.572 35.572-.001V334z"/>';
        } else if (face <= 198) {
            // Face: :3
            path = '<path fill="#fff" d="M391 334h36v71h-36v-71zM533 334h36v71h-36v-71zM426.571 440.714H391v35.572h35.571v-35.572zM497.714 476.286h-35.57v35.571h-35.572l-.001-35.571h35.572v-35.572h35.571v35.572z"/><path fill="#fff" d="M568.857 476.286h-35.571v35.571h-35.571l-.001-35.571h35.571v-35.572h35.572v35.572z"/>';
        } else if (face == 199) {
            // Face: BSOD
            path = '<path fill="#0000A3" d="M668.671 278.105H291v283.254h377.671V278.105z" class="BG"/><path fill="#AAA" d="M420 357h120v27H420z" /><path fill="#fff" d="M322 407h120v9H322v-9zM322 423h196v9H322v-9zM592 439H322v9h270v-9zM322 455h70v9h-70v-9zM540 496H420v9h120v-9z"/>';
        }

        return string(abi.encodePacked(path));
    }
}

File 10 of 17 : 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 11 of 17 : 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 12 of 17 : 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 13 of 17 : 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 14 of 17 : 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 15 of 17 : 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 16 of 17 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 17 of 17 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {
    "contracts/Colors.sol": {
      "Colors": "0xbb747489e67c072bea7ce59f4eff59370c60aa0a"
    },
    "contracts/SVGFace.sol": {
      "SVGFace": "0x4ad488d5ec98b857d7554d16a917e19b61de9aa9"
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DESCRIPTION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"destination","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintMainframe","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526648c27395000000600b55610800600c553480156200002257600080fd5b506040518060400160405280600a81526020017f4d61696e6672616d6573000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4d465300000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000a7929190620001e4565b508060019080519060200190620000c0929190620001e4565b505050620000e3620000d76200010060201b60201c565b6200010860201b60201c565b620000fa600d620001ce60201b620013cf1760201c565b620002f9565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b828054620001f29062000294565b90600052602060002090601f01602090048101928262000216576000855562000262565b82601f106200023157805160ff191683800117855562000262565b8280016001018555821562000262579182015b828111156200026157825182559160200191906001019062000244565b5b50905062000271919062000275565b5090565b5b808211156200029057600081600090555060010162000276565b5090565b60006002820490506001821680620002ad57607f821691505b60208210811415620002c457620002c3620002ca565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61579780620003096000396000f3fe6080604052600436106101665760003560e01c80636352211e116100d1578063a22cb4651161008a578063d5abeb0111610064578063d5abeb011461050e578063e985e9c514610539578063f1ae885614610576578063f2fde38b146105a157610166565b8063a22cb4651461047f578063b88d4fde146104a8578063c87b56dd146104d157610166565b80636352211e1461036f5780636a627842146103ac57806370a08231146103d5578063715018a6146104125780638da5cb5b1461042957806395d89b411461045457610166565b806323b872dd1161012357806323b872dd1461028f5780632f745c59146102b85780633ccfd60b146102f557806342842e0e146102ff5780634d5f75a4146103285780634f6ccce71461033257610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b31461021057806313faede61461023957806318160ddd14610264575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612e4a565b6105ca565b60405161019f91906139b7565b60405180910390f35b3480156101b457600080fd5b506101bd6105dc565b6040516101ca91906139f4565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f59190612f1e565b61066e565b6040516102079190613950565b60405180910390f35b34801561021c57600080fd5b5061023760048036038101906102329190612e0e565b6106f3565b005b34801561024557600080fd5b5061024e61080b565b60405161025b9190613ccf565b60405180910390f35b34801561027057600080fd5b50610279610811565b6040516102869190613ccf565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190612d08565b61081e565b005b3480156102c457600080fd5b506102df60048036038101906102da9190612e0e565b61087e565b6040516102ec9190613ccf565b60405180910390f35b6102fd610923565b005b34801561030b57600080fd5b5061032660048036038101906103219190612d08565b6109df565b005b6103306109ff565b005b34801561033e57600080fd5b5061035960048036038101906103549190612f1e565b610a4f565b6040516103669190613ccf565b60405180910390f35b34801561037b57600080fd5b5061039660048036038101906103919190612f1e565b610ae6565b6040516103a39190613950565b60405180910390f35b3480156103b857600080fd5b506103d360048036038101906103ce9190612ca3565b610b98565b005b3480156103e157600080fd5b506103fc60048036038101906103f79190612ca3565b610c20565b6040516104099190613ccf565b60405180910390f35b34801561041e57600080fd5b50610427610cd8565b005b34801561043557600080fd5b5061043e610d60565b60405161044b9190613950565b60405180910390f35b34801561046057600080fd5b50610469610d8a565b60405161047691906139f4565b60405180910390f35b34801561048b57600080fd5b506104a660048036038101906104a19190612dd2565b610e1c565b005b3480156104b457600080fd5b506104cf60048036038101906104ca9190612d57565b610f9d565b005b3480156104dd57600080fd5b506104f860048036038101906104f39190612f1e565b610fff565b60405161050591906139f4565b60405180910390f35b34801561051a57600080fd5b50610523611220565b6040516105309190613ccf565b60405180910390f35b34801561054557600080fd5b50610560600480360381019061055b9190612ccc565b611226565b60405161056d91906139b7565b60405180910390f35b34801561058257600080fd5b5061058b6112ba565b60405161059891906139f4565b60405180910390f35b3480156105ad57600080fd5b506105c860048036038101906105c39190612ca3565b6112d7565b005b60006105d5826113e5565b9050919050565b6060600080546105eb90613fb4565b80601f016020809104026020016040519081016040528092919081815260200182805461061790613fb4565b80156106645780601f1061063957610100808354040283529160200191610664565b820191906000526020600020905b81548152906001019060200180831161064757829003601f168201915b5050505050905090565b60006106798261145f565b6106b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106af90613bf4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106fe82610ae6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561076f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076690613c54565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661078e6114cb565b73ffffffffffffffffffffffffffffffffffffffff1614806107bd57506107bc816107b76114cb565b611226565b5b6107fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f390613b54565b60405180910390fd5b61080683836114d3565b505050565b600b5481565b6000600880549050905090565b61082f6108296114cb565b8261158c565b61086e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086590613c74565b60405180910390fd5b61087983838361166a565b505050565b600061088983610c20565b82106108ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c190613a54565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61092b6114cb565b73ffffffffffffffffffffffffffffffffffffffff16610949610d60565b73ffffffffffffffffffffffffffffffffffffffff161461099f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099690613c14565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506109dd57600080fd5b565b6109fa83838360405180602001604052806000815250610f9d565b505050565b600b54341015610a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3b90613ad4565b60405180910390fd5b610a4d336118c6565b565b6000610a59610811565b8210610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9190613c94565b60405180910390fd5b60088281548110610ad4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8690613b94565b60405180910390fd5b80915050919050565b610ba06114cb565b73ffffffffffffffffffffffffffffffffffffffff16610bbe610d60565b73ffffffffffffffffffffffffffffffffffffffff1614610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b90613c14565b60405180910390fd5b610c1d816118c6565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8890613b74565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ce06114cb565b73ffffffffffffffffffffffffffffffffffffffff16610cfe610d60565b73ffffffffffffffffffffffffffffffffffffffff1614610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b90613c14565b60405180910390fd5b610d5e6000611949565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610d9990613fb4565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc590613fb4565b8015610e125780601f10610de757610100808354040283529160200191610e12565b820191906000526020600020905b815481529060010190602001808311610df557829003601f168201915b5050505050905090565b610e246114cb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8990613b14565b60405180910390fd5b8060056000610e9f6114cb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f4c6114cb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f9191906139b7565b60405180910390a35050565b610fae610fa86114cb565b8361158c565b610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe490613c74565b60405180910390fd5b610ff984848484611a0f565b50505050565b6060600061100c83611a6b565b444260405160200161102093929190613724565b6040516020818303038152906040529050600073bb747489e67c072bea7ce59f4eff59370c60aa0a63c409fd10836040518263ffffffff1660e01b815260040161106a91906139d2565b60006040518083038186803b15801561108257600080fd5b505af4158015611096573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906110bf9190612edd565b9050600073bb747489e67c072bea7ce59f4eff59370c60aa0a6329eb3a7384600060c86040518463ffffffff1660e01b815260040161110093929190613a16565b60206040518083038186803b15801561111857600080fd5b505af415801561112c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111509190612f47565b9050600061115d82611c18565b9050600061116a83611ccc565b61117385611d80565b60405160200161118492919061380f565b604051602081830303815290604052905060006111ee6111a389611a6b565b8460405180610100016040528060d3815260200161568f60d391396111c786611e5b565b6040516020016111da94939291906138b9565b604051602081830303815290604052611e5b565b905080604051602001611201919061392e565b6040516020818303038152906040529050809650505050505050919050565b600c5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60405180610100016040528060d3815260200161568f60d3913981565b6112df6114cb565b73ffffffffffffffffffffffffffffffffffffffff166112fd610d60565b73ffffffffffffffffffffffffffffffffffffffff1614611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a90613c14565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba90613a94565b60405180910390fd5b6113cc81611949565b50565b6001816000016000828254019250508190555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611458575061145782612019565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661154683610ae6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006115978261145f565b6115d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cd90613b34565b60405180910390fd5b60006115e183610ae6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061165057508373ffffffffffffffffffffffffffffffffffffffff166116388461066e565b73ffffffffffffffffffffffffffffffffffffffff16145b8061166157506116608185611226565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661168a82610ae6565b73ffffffffffffffffffffffffffffffffffffffff16146116e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d790613c34565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174790613af4565b60405180910390fd5b61175b8383836120fb565b6117666000826114d3565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117b69190613ea6565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461180d9190613dc5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006118d2600d61210b565b905060006118de610811565b9050600c5482826118ef9190613dc5565b1115611930576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192790613bb4565b60405180910390fd5b61193a8383612119565b611944600d6113cf565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a1a84848461166a565b611a2684848484612137565b611a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5c90613a74565b60405180910390fd5b50505050565b60606000821415611ab3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c13565b600082905060005b60008214611ae5578080611ace90614017565b915050600a82611ade9190613e1b565b9150611abb565b60008167ffffffffffffffff811115611b27577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b595781602001600182028036833780820191505090505b5090505b60008514611c0c57600182611b729190613ea6565b9150600a85611b81919061406a565b6030611b8d9190613dc5565b60f81b818381518110611bc9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c059190613e1b565b9450611b5d565b8093505050505b919050565b6060734ad488d5ec98b857d7554d16a917e19b61de9aa9637be53e39836040518263ffffffff1660e01b8152600401611c519190613cb4565b60006040518083038186803b158015611c6957600080fd5b505af4158015611c7d573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611ca69190612e9c565b604051602001611cb6919061386b565b6040516020818303038152906040529050919050565b6060734ad488d5ec98b857d7554d16a917e19b61de9aa963ef769fd2836040518263ffffffff1660e01b8152600401611d059190613cb4565b60006040518083038186803b158015611d1d57600080fd5b505af4158015611d31573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611d5a9190612e9c565b604051602001611d6a9190613849565b6040516020818303038152906040529050919050565b60606000826060015160000151836060015160200151846000015160000151856000015160200151866020015160000151876020015160200151886000015160000151604051602001611dd9979695949392919061375d565b604051602081830303815290604052905080836000015160200151846000015160000151856000015160200151866000015160000151876000015160200151886040015160000151896040015160200151604051602001611e4198979695949392919061365a565b604051602081830303815290604052905080915050919050565b60606000825190506000811415611e845760405180602001604052806000815250915050612014565b60006003600283611e959190613dc5565b611e9f9190613e1b565b6004611eab9190613e4c565b90506000602082611ebc9190613dc5565b67ffffffffffffffff811115611efb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f2d5781602001600182028036833780820191505090505b509050600060405180606001604052806040815260200161564f604091399050600181016020830160005b86811015611fd15760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b90508084526004840193505050611f58565b506003860660018114611feb5760028114611ffb57612006565b613d3d60f01b6002830352612006565b603d60f81b60018303525b508484525050819450505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806120e457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806120f457506120f3826122ce565b5b9050919050565b612106838383612338565b505050565b600081600001549050919050565b61213382826040518060200160405280600081525061244c565b5050565b60006121588473ffffffffffffffffffffffffffffffffffffffff166124a7565b156122c1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121816114cb565b8786866040518563ffffffff1660e01b81526004016121a3949392919061396b565b602060405180830381600087803b1580156121bd57600080fd5b505af19250505080156121ee57506040513d601f19601f820116820180604052508101906121eb9190612e73565b60015b612271573d806000811461221e576040519150601f19603f3d011682016040523d82523d6000602084013e612223565b606091505b50600081511415612269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226090613a74565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122c6565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6123438383836124ba565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561238657612381816124bf565b6123c5565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146123c4576123c38382612508565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124085761240381612675565b612447565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146124465761244582826127b8565b5b5b505050565b6124568383612837565b6124636000848484612137565b6124a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249990613a74565b60405180910390fd5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161251584610c20565b61251f9190613ea6565b9050600060076000848152602001908152602001600020549050818114612604576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506126899190613ea6565b90506000600960008481526020019081526020016000205490506000600883815481106126df577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612727577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061279c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006127c383610c20565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289e90613bd4565b60405180910390fd5b6128b08161145f565b156128f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e790613ab4565b60405180910390fd5b6128fc600083836120fb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461294c9190613dc5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000612a18612a1384613d0f565b613cea565b905082815260208101848484011115612a3057600080fd5b612a3b848285613f72565b509392505050565b6000612a56612a5184613d40565b613cea565b905082815260208101848484011115612a6e57600080fd5b612a79848285613f81565b509392505050565b600081359050612a90816155f2565b92915050565b600081359050612aa581615609565b92915050565b600081359050612aba81615620565b92915050565b600081519050612acf81615620565b92915050565b600082601f830112612ae657600080fd5b8135612af6848260208601612a05565b91505092915050565b600082601f830112612b1057600080fd5b8151612b20848260208601612a43565b91505092915050565b600060408284031215612b3b57600080fd5b612b456040613cea565b9050600082015167ffffffffffffffff811115612b6157600080fd5b612b6d84828501612aff565b600083015250602082015167ffffffffffffffff811115612b8d57600080fd5b612b9984828501612aff565b60208301525092915050565b600060808284031215612bb757600080fd5b612bc16080613cea565b9050600082015167ffffffffffffffff811115612bdd57600080fd5b612be984828501612b29565b600083015250602082015167ffffffffffffffff811115612c0957600080fd5b612c1584828501612b29565b602083015250604082015167ffffffffffffffff811115612c3557600080fd5b612c4184828501612b29565b604083015250606082015167ffffffffffffffff811115612c6157600080fd5b612c6d84828501612b29565b60608301525092915050565b600081359050612c8881615637565b92915050565b600081519050612c9d81615637565b92915050565b600060208284031215612cb557600080fd5b6000612cc384828501612a81565b91505092915050565b60008060408385031215612cdf57600080fd5b6000612ced85828601612a81565b9250506020612cfe85828601612a81565b9150509250929050565b600080600060608486031215612d1d57600080fd5b6000612d2b86828701612a81565b9350506020612d3c86828701612a81565b9250506040612d4d86828701612c79565b9150509250925092565b60008060008060808587031215612d6d57600080fd5b6000612d7b87828801612a81565b9450506020612d8c87828801612a81565b9350506040612d9d87828801612c79565b925050606085013567ffffffffffffffff811115612dba57600080fd5b612dc687828801612ad5565b91505092959194509250565b60008060408385031215612de557600080fd5b6000612df385828601612a81565b9250506020612e0485828601612a96565b9150509250929050565b60008060408385031215612e2157600080fd5b6000612e2f85828601612a81565b9250506020612e4085828601612c79565b9150509250929050565b600060208284031215612e5c57600080fd5b6000612e6a84828501612aab565b91505092915050565b600060208284031215612e8557600080fd5b6000612e9384828501612ac0565b91505092915050565b600060208284031215612eae57600080fd5b600082015167ffffffffffffffff811115612ec857600080fd5b612ed484828501612aff565b91505092915050565b600060208284031215612eef57600080fd5b600082015167ffffffffffffffff811115612f0957600080fd5b612f1584828501612ba5565b91505092915050565b600060208284031215612f3057600080fd5b6000612f3e84828501612c79565b91505092915050565b600060208284031215612f5957600080fd5b6000612f6784828501612c8e565b91505092915050565b612f7981613eda565b82525050565b612f8881613eec565b82525050565b6000612f9982613d71565b612fa38185613d87565b9350612fb3818560208601613f81565b612fbc81614157565b840191505092915050565b612fd081613f4e565b82525050565b612fdf81613f60565b82525050565b6000612ff082613d7c565b612ffa8185613d98565b935061300a818560208601613f81565b61301381614157565b840191505092915050565b600061302982613d7c565b6130338185613da9565b9350613043818560208601613f81565b61304c81614157565b840191505092915050565b600061306282613d7c565b61306c8185613dba565b935061307c818560208601613f81565b80840191505092915050565b6000613095607183613dba565b91506130a082614168565b607182019050919050565b60006130b8602b83613d98565b91506130c382614203565b604082019050919050565b60006130db603283613d98565b91506130e682614252565b604082019050919050565b60006130fe602683613d98565b9150613109826142a1565b604082019050919050565b6000613121601c83613d98565b915061312c826142f0565b602082019050919050565b6000613144602083613dba565b915061314f82614319565b602082019050919050565b6000613167604f83613dba565b915061317282614342565b604f82019050919050565b600061318a601083613dba565b9150613195826143b7565b601082019050919050565b60006131ad600d83613d98565b91506131b8826143e0565b602082019050919050565b60006131d0602483613d98565b91506131db82614409565b604082019050919050565b60006131f3601983613d98565b91506131fe82614458565b602082019050919050565b600061321761065a83613dba565b915061322282614481565b61065a82019050919050565b600061323b602683613dba565b915061324682614c41565b602682019050919050565b600061325e602c83613d98565b915061326982614c90565b604082019050919050565b6000613281601783613dba565b915061328c82614cdf565b601782019050919050565b60006132a4603883613d98565b91506132af82614d08565b604082019050919050565b60006132c7602a83613d98565b91506132d282614d57565b604082019050919050565b60006132ea602983613d98565b91506132f582614da6565b604082019050919050565b600061330d608883613dba565b915061331882614df5565b608882019050919050565b6000613330600883613d98565b915061333b82614eb6565b602082019050919050565b6000613353600283613dba565b915061335e82614edf565b600282019050919050565b6000613376601083613dba565b915061338182614f08565b601082019050919050565b6000613399602083613d98565b91506133a482614f31565b602082019050919050565b60006133bc609083613dba565b91506133c782614f5a565b609082019050919050565b60006133df602c83613d98565b91506133ea8261501b565b604082019050919050565b6000613402601b83613dba565b915061340d8261506a565b601b82019050919050565b6000613425602083613d98565b915061343082615093565b602082019050919050565b6000613448600183613dba565b9150613453826150bc565b600182019050919050565b600061346b602983613d98565b9150613476826150e5565b604082019050919050565b600061348e601483613dba565b915061349982615134565b601482019050919050565b60006134b1600a83613dba565b91506134bc8261515d565b600a82019050919050565b60006134d4609083613dba565b91506134df82615186565b609082019050919050565b60006134f7600183613dba565b915061350282615247565b600182019050919050565b600061351a602183613d98565b915061352582615270565b604082019050919050565b600061353d608e83613dba565b9150613548826152bf565b608e82019050919050565b6000613560608e83613dba565b915061356b82615380565b608e82019050919050565b6000613583601d83613dba565b915061358e82615441565b601d82019050919050565b60006135a6608c83613dba565b91506135b18261546a565b608c82019050919050565b60006135c9603183613d98565b91506135d48261552b565b604082019050919050565b60006135ec602c83613d98565b91506135f78261557a565b604082019050919050565b600061360f600683613dba565b915061361a826155c9565b600682019050919050565b61362e81613f44565b82525050565b61363d81613f44565b82525050565b61365461364f82613f44565b614060565b82525050565b6000613666828b613057565b915061367182613137565b915061367d828a613057565b915061368882613599565b91506136948289613057565b915061369f82613137565b91506136ab8288613057565b91506136b682613553565b91506136c28287613057565b91506136cd82613137565b91506136d98286613057565b91506136e4826133af565b91506136f08285613057565b91506136fb82613137565b91506137078284613057565b9150613712826133f5565b91508190509998505050505050505050565b60006137308286613057565b915061373c8285613643565b60208201915061374c8284613643565b602082019150819050949350505050565b600061376882613088565b9150613774828a613057565b915061377f82613137565b915061378b8289613057565b915061379682613530565b91506137a28288613057565b91506137ad82613137565b91506137b98287613057565b91506137c4826134c7565b91506137d08286613057565b91506137db82613137565b91506137e78285613057565b91506137f282613300565b91506137fe8284613057565b915081905098975050505050505050565b600061381a8261315a565b91506138268285613057565b91506138328284613057565b915061383d82613602565b91508190509392505050565b600061385482613209565b91506138608284613057565b915081905092915050565b60006138768261343b565b915061388182613274565b915061388c826134a4565b91506138988284613057565b91506138a382613346565b91506138ae826134ea565b915081905092915050565b60006138c482613481565b91506138d08287613057565b91506138db82613369565b91506138e78286613057565b91506138f28261317d565b91506138fe8285613057565b91506139098261322e565b91506139158284613057565b915061392082613346565b915081905095945050505050565b600061393982613576565b91506139458284613057565b915081905092915050565b60006020820190506139656000830184612f70565b92915050565b60006080820190506139806000830187612f70565b61398d6020830186612f70565b61399a6040830185613625565b81810360608301526139ac8184612f8e565b905095945050505050565b60006020820190506139cc6000830184612f7f565b92915050565b600060208201905081810360008301526139ec818461301e565b905092915050565b60006020820190508181036000830152613a0e8184612fe5565b905092915050565b60006060820190508181036000830152613a30818661301e565b9050613a3f6020830185612fc7565b613a4c6040830184612fd6565b949350505050565b60006020820190508181036000830152613a6d816130ab565b9050919050565b60006020820190508181036000830152613a8d816130ce565b9050919050565b60006020820190508181036000830152613aad816130f1565b9050919050565b60006020820190508181036000830152613acd81613114565b9050919050565b60006020820190508181036000830152613aed816131a0565b9050919050565b60006020820190508181036000830152613b0d816131c3565b9050919050565b60006020820190508181036000830152613b2d816131e6565b9050919050565b60006020820190508181036000830152613b4d81613251565b9050919050565b60006020820190508181036000830152613b6d81613297565b9050919050565b60006020820190508181036000830152613b8d816132ba565b9050919050565b60006020820190508181036000830152613bad816132dd565b9050919050565b60006020820190508181036000830152613bcd81613323565b9050919050565b60006020820190508181036000830152613bed8161338c565b9050919050565b60006020820190508181036000830152613c0d816133d2565b9050919050565b60006020820190508181036000830152613c2d81613418565b9050919050565b60006020820190508181036000830152613c4d8161345e565b9050919050565b60006020820190508181036000830152613c6d8161350d565b9050919050565b60006020820190508181036000830152613c8d816135bc565b9050919050565b60006020820190508181036000830152613cad816135df565b9050919050565b6000602082019050613cc96000830184613634565b92915050565b6000602082019050613ce46000830184613625565b92915050565b6000613cf4613d05565b9050613d008282613fe6565b919050565b6000604051905090565b600067ffffffffffffffff821115613d2a57613d29614128565b5b613d3382614157565b9050602081019050919050565b600067ffffffffffffffff821115613d5b57613d5a614128565b5b613d6482614157565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613dd082613f44565b9150613ddb83613f44565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e1057613e0f61409b565b5b828201905092915050565b6000613e2682613f44565b9150613e3183613f44565b925082613e4157613e406140ca565b5b828204905092915050565b6000613e5782613f44565b9150613e6283613f44565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e9b57613e9a61409b565b5b828202905092915050565b6000613eb182613f44565b9150613ebc83613f44565b925082821015613ecf57613ece61409b565b5b828203905092915050565b6000613ee582613f24565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613f5982613f44565b9050919050565b6000613f6b82613f44565b9050919050565b82818337600083830152505050565b60005b83811015613f9f578082015181840152602081019050613f84565b83811115613fae576000848401525b50505050565b60006002820490506001821680613fcc57607f821691505b60208210811415613fe057613fdf6140f9565b5b50919050565b613fef82614157565b810181811067ffffffffffffffff8211171561400e5761400d614128565b5b80604052505050565b600061402282613f44565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140555761405461409b565b5b600182019050919050565b6000819050919050565b600061407582613f44565b915061408083613f44565b9250826140905761408f6140ca565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f3c646566733e3c6c696e6561724772616469656e742069643d2261222078313d60008201527f22353132222078323d22353132222079313d2230222079323d2231303234222060208201527f6772616469656e74556e6974733d227573657253706163654f6e557365223e3c60408201527f73746f702073746f702d636f6c6f723d22000000000000000000000000000000606082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f222f3e3c73746f70206f66667365743d2231222073746f702d636f6c6f723d22600082015250565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323060008201527f30302f737667222077696474683d223130323422206865696768743d2231303260208201527f34222066696c6c3d226e6f6e65223e0000000000000000000000000000000000604082015250565b7f2c226465736372697074696f6e223a2200000000000000000000000000000000600082015250565b7f50524943455f4e4f545f4d455400000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f3c706174682066696c6c3d2275726c282361292220643d224d3020306831303260008201527f34763130323448307a222f3e3c706174682066696c6c3d22236666662220666960208201527f6c6c2d72756c653d226576656e6f64642220643d224d3233322e38303820323460408201527f302e33333963302d31312e33313120392e3136392d32302e34382032302e343860608201527f2d32302e3438683435332e323035613131342e383935203131342e383935203060808201527f20302031203131342e383938203131342e38393876392e3433376c35312e383460a08201527f362034342e3235316331342e3233342031322e3139362032332e36383820323860c08201527f2e3930322032332e3638382034372e383432763131312e313463302032322e3960e08201527f39372d31332e3633352034312e3533372d33312e3033312035332e3434312d366101008201527f2e34323920342e342d31332e36303520382e3039332d32312e3332362031312e6101208201527f303035413130352e343535203130352e343535203020302031203830382e32206101408201527f3830372e3130366132302e34332032302e34332030203020312d372e323839206101608201527f312e3333364838332e333336632d31302e37393320302d31392e3633362d382e6101808201527f33352d32302e3432332d31382e3934326132302e3437362032302e34373620306101a08201527f203020312d31382e39342d32302e343232762d33372e3736376132302e3438206101c08201527f32302e34382030203020312031342e3030332d31392e3432396c3137342e38336101e08201527f322d35382e323737563631382e303163302d332e3331362e3830342d362e35346102008201527f3820322e3330342d392e3433376132302e3339362032302e33393620302030206102208201527f312d322e3330342d392e343437563234302e3333397a2220636c69702d72756c6102408201527f653d226576656e6f6464222f3e3c706174682066696c6c3d2275726c282362296102608201527f2220643d224d3235332e323837203234302e333339683435332e3230357633356102808201527f382e373837483235332e323837563234302e3333397a4d3235332e32383720366102a08201527f31382e3031683435332e323035763136392e393532483235332e3238375636316102c08201527f382e30317a222f3e3c706174682066696c6c3d2275726c282363292220643d226102e08201527f4d3737332e323536203236372e3939336139342e3431382039342e34313820306103008201527f203020302d36362e3736342d32372e363534763335382e3738376839342e34316103208201527f38563333342e3735376139342e34322039342e34322030203020302d32372e366103408201527f35342d36362e3736347a4d3730362e343932203631382e30316838342e3937366103608201527f6138342e3937362038342e3937362030203020312030203136392e393532682d6103808201527f38342e393736563631382e30317a222f3e3c706174682066696c6c3d2275726c6103a08201527f282364292220643d226d3636382e373234203635352e3737372d3232362e36306103c08201527f332037352e3533347633372e373637683335382e373837762d37352e3533346c6103e08201527f2d3133322e3138342034392e353639762d38372e3333367a222f3e3c706174686104008201527f2066696c6c3d2275726c282365292220643d224d36342e343531203733312e336104208201527f3131683337372e3637317633372e3736374836342e343532762d33372e3736376104408201527f7a4d3533362e353339203735302e313934483634392e38347631382e383834486104608201527f3533362e353339762d31382e3838347a222f3e3c672066696c6c3d2275726c286104808201527f236629223e3c7061746820643d224d3239312e303534203635352e37373720366104a08201527f342e343531203733312e333132683337372e3637316c3232362e3630332d37356104c08201527f2e353335483239312e3035347a4d3638372e363037203639332e3534346c2d316104e08201527f35312e3036382035362e363531483634392e38346c3135312e3036392d35362e6105008201527f363531483638372e3630377a222f3e3c2f673e3c672066696c6c3d2275726c286105208201527f236729223e3c7061746820643d224d3636382e373236203237382e31303548326105408201527f39312e303535763238332e323534683337372e363731563237382e3130357a4d6105608201527f3237322e3137203539392e313236683530392e3835367631382e3838344832376105808201527f322e3137762d31382e3838347a4d38332e313233203736392e323035683731386105a08201527f2e3030357631382e3637334838332e313233762d31382e3637337a4d3835392e6105c08201527f393133203430332e3939366c2d35392e3030312d35302e333536763234352e346105e08201527f36356334312e37333320302037352e3533342d32332e3134332037352e3533346106008201527f2d35312e363738762d3131312e313463302d31312e37352d352e3833332d32336106208201527f2e3132322d31362e3533332d33322e3239317a222f3e3c2f673e00000000000061064082015250565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c3b6260008201527f61736536342c0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f7b202274726169745f74797065223a202246616365222c000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f222f3e3c2f6c696e6561724772616469656e743e3c6c696e656172477261646960008201527f656e742069643d2264222078313d22373130222078323d223636352e3833342260208201527f2079313d22363333222079323d223738322e31393822206772616469656e745560408201527f6e6974733d227573657253706163654f6e557365223e3c73746f702073746f7060608201527f2d636f6c6f723d22000000000000000000000000000000000000000000000000608082015250565b7f534f4c445f4f5554000000000000000000000000000000000000000000000000600082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f222c202261747472696275746573223a00000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f222f3e3c2f6c696e6561724772616469656e743e3c6c696e656172477261646960008201527f656e742069643d2267222078313d223437392e373835222078323d223437392e60208201527f373835222079313d223237382e313035222079323d223738372e38373822206760408201527f72616469656e74556e6974733d227573657253706163654f6e557365223e3c7360608201527f746f702073746f702d636f6c6f723d2200000000000000000000000000000000608082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f222f3e3c2f6c696e6561724772616469656e743e3c2f646566733e0000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5b00000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f7b226e616d65223a224d61696e6672616d652023000000000000000000000000600082015250565b7f2276616c7565223a202200000000000000000000000000000000000000000000600082015250565b7f222f3e3c2f6c696e6561724772616469656e743e3c6c696e656172477261646960008201527f656e742069643d2263222078313d223739312e343638222078323d223739312e60208201527f343638222079313d223234302e333339222079323d223738372e39363222206760408201527f72616469656e74556e6974733d227573657253706163654f6e557365223e3c7360608201527f746f702073746f702d636f6c6f723d2200000000000000000000000000000000608082015250565b7f5d00000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f222f3e3c2f6c696e6561724772616469656e743e3c6c696e656172477261646960008201527f656e742069643d2262222078313d223437392e3839222078323d223437392e3860208201527f39222079313d223234302e333339222079323d223738372e393632222067726160408201527f6469656e74556e6974733d227573657253706163654f6e557365223e3c73746f60608201527f702073746f702d636f6c6f723d22000000000000000000000000000000000000608082015250565b7f222f3e3c2f6c696e6561724772616469656e743e3c6c696e656172477261646960008201527f656e742069643d2266222078313d223433322e3638222078323d223433322e3660208201527f38222079313d223635352e373737222079323d223735302e313935222067726160408201527f6469656e74556e6974733d227573657253706163654f6e557365223e3c73746f60608201527f702073746f702d636f6c6f723d22000000000000000000000000000000000000608082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f222f3e3c2f6c696e6561724772616469656e743e3c6c696e656172477261646960008201527f656e742069643d2265222078313d223335372e313436222078323d223335372e60208201527f313436222079313d22373230222079323d223736392e3037382220677261646960408201527f656e74556e6974733d227573657253706163654f6e557365223e3c73746f702060608201527f73746f702d636f6c6f723d220000000000000000000000000000000000000000608082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f3c2f7376673e0000000000000000000000000000000000000000000000000000600082015250565b6155fb81613eda565b811461560657600080fd5b50565b61561281613eec565b811461561d57600080fd5b50565b61562981613ef8565b811461563457600080fd5b50565b61564081613f44565b811461564b57600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f4d61696e6672616d657320617265206120636f6c6c656374696f6e206f6620323034382072616e646f6d6c792067656e657261746564206d61696e6672616d65732073746f72656420656e746972656c79206f6e2d636861696e2e2045616368204d61696e6672616d652077696c6c2066697420696e746f20796f75722077616c6c657420616e642073746179206f7065726174696f6e616c20666f72657665722c20636f6e7374616e746c7920676976696e6720796f7520726574726f2076696265732066726f6d2074686520706173742ea2646970667358221220e58f38b1f5eb5515e4cf426fbd23780f2127a1ee10afbe10363f84ee0f2c6dbf64736f6c63430008040033

Deployed Bytecode

0x6080604052600436106101665760003560e01c80636352211e116100d1578063a22cb4651161008a578063d5abeb0111610064578063d5abeb011461050e578063e985e9c514610539578063f1ae885614610576578063f2fde38b146105a157610166565b8063a22cb4651461047f578063b88d4fde146104a8578063c87b56dd146104d157610166565b80636352211e1461036f5780636a627842146103ac57806370a08231146103d5578063715018a6146104125780638da5cb5b1461042957806395d89b411461045457610166565b806323b872dd1161012357806323b872dd1461028f5780632f745c59146102b85780633ccfd60b146102f557806342842e0e146102ff5780634d5f75a4146103285780634f6ccce71461033257610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b31461021057806313faede61461023957806318160ddd14610264575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612e4a565b6105ca565b60405161019f91906139b7565b60405180910390f35b3480156101b457600080fd5b506101bd6105dc565b6040516101ca91906139f4565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f59190612f1e565b61066e565b6040516102079190613950565b60405180910390f35b34801561021c57600080fd5b5061023760048036038101906102329190612e0e565b6106f3565b005b34801561024557600080fd5b5061024e61080b565b60405161025b9190613ccf565b60405180910390f35b34801561027057600080fd5b50610279610811565b6040516102869190613ccf565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190612d08565b61081e565b005b3480156102c457600080fd5b506102df60048036038101906102da9190612e0e565b61087e565b6040516102ec9190613ccf565b60405180910390f35b6102fd610923565b005b34801561030b57600080fd5b5061032660048036038101906103219190612d08565b6109df565b005b6103306109ff565b005b34801561033e57600080fd5b5061035960048036038101906103549190612f1e565b610a4f565b6040516103669190613ccf565b60405180910390f35b34801561037b57600080fd5b5061039660048036038101906103919190612f1e565b610ae6565b6040516103a39190613950565b60405180910390f35b3480156103b857600080fd5b506103d360048036038101906103ce9190612ca3565b610b98565b005b3480156103e157600080fd5b506103fc60048036038101906103f79190612ca3565b610c20565b6040516104099190613ccf565b60405180910390f35b34801561041e57600080fd5b50610427610cd8565b005b34801561043557600080fd5b5061043e610d60565b60405161044b9190613950565b60405180910390f35b34801561046057600080fd5b50610469610d8a565b60405161047691906139f4565b60405180910390f35b34801561048b57600080fd5b506104a660048036038101906104a19190612dd2565b610e1c565b005b3480156104b457600080fd5b506104cf60048036038101906104ca9190612d57565b610f9d565b005b3480156104dd57600080fd5b506104f860048036038101906104f39190612f1e565b610fff565b60405161050591906139f4565b60405180910390f35b34801561051a57600080fd5b50610523611220565b6040516105309190613ccf565b60405180910390f35b34801561054557600080fd5b50610560600480360381019061055b9190612ccc565b611226565b60405161056d91906139b7565b60405180910390f35b34801561058257600080fd5b5061058b6112ba565b60405161059891906139f4565b60405180910390f35b3480156105ad57600080fd5b506105c860048036038101906105c39190612ca3565b6112d7565b005b60006105d5826113e5565b9050919050565b6060600080546105eb90613fb4565b80601f016020809104026020016040519081016040528092919081815260200182805461061790613fb4565b80156106645780601f1061063957610100808354040283529160200191610664565b820191906000526020600020905b81548152906001019060200180831161064757829003601f168201915b5050505050905090565b60006106798261145f565b6106b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106af90613bf4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106fe82610ae6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561076f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076690613c54565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661078e6114cb565b73ffffffffffffffffffffffffffffffffffffffff1614806107bd57506107bc816107b76114cb565b611226565b5b6107fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f390613b54565b60405180910390fd5b61080683836114d3565b505050565b600b5481565b6000600880549050905090565b61082f6108296114cb565b8261158c565b61086e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086590613c74565b60405180910390fd5b61087983838361166a565b505050565b600061088983610c20565b82106108ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c190613a54565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61092b6114cb565b73ffffffffffffffffffffffffffffffffffffffff16610949610d60565b73ffffffffffffffffffffffffffffffffffffffff161461099f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099690613c14565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506109dd57600080fd5b565b6109fa83838360405180602001604052806000815250610f9d565b505050565b600b54341015610a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3b90613ad4565b60405180910390fd5b610a4d336118c6565b565b6000610a59610811565b8210610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9190613c94565b60405180910390fd5b60088281548110610ad4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8690613b94565b60405180910390fd5b80915050919050565b610ba06114cb565b73ffffffffffffffffffffffffffffffffffffffff16610bbe610d60565b73ffffffffffffffffffffffffffffffffffffffff1614610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b90613c14565b60405180910390fd5b610c1d816118c6565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8890613b74565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ce06114cb565b73ffffffffffffffffffffffffffffffffffffffff16610cfe610d60565b73ffffffffffffffffffffffffffffffffffffffff1614610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b90613c14565b60405180910390fd5b610d5e6000611949565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610d9990613fb4565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc590613fb4565b8015610e125780601f10610de757610100808354040283529160200191610e12565b820191906000526020600020905b815481529060010190602001808311610df557829003601f168201915b5050505050905090565b610e246114cb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8990613b14565b60405180910390fd5b8060056000610e9f6114cb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f4c6114cb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f9191906139b7565b60405180910390a35050565b610fae610fa86114cb565b8361158c565b610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe490613c74565b60405180910390fd5b610ff984848484611a0f565b50505050565b6060600061100c83611a6b565b444260405160200161102093929190613724565b6040516020818303038152906040529050600073bb747489e67c072bea7ce59f4eff59370c60aa0a63c409fd10836040518263ffffffff1660e01b815260040161106a91906139d2565b60006040518083038186803b15801561108257600080fd5b505af4158015611096573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906110bf9190612edd565b9050600073bb747489e67c072bea7ce59f4eff59370c60aa0a6329eb3a7384600060c86040518463ffffffff1660e01b815260040161110093929190613a16565b60206040518083038186803b15801561111857600080fd5b505af415801561112c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111509190612f47565b9050600061115d82611c18565b9050600061116a83611ccc565b61117385611d80565b60405160200161118492919061380f565b604051602081830303815290604052905060006111ee6111a389611a6b565b8460405180610100016040528060d3815260200161568f60d391396111c786611e5b565b6040516020016111da94939291906138b9565b604051602081830303815290604052611e5b565b905080604051602001611201919061392e565b6040516020818303038152906040529050809650505050505050919050565b600c5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60405180610100016040528060d3815260200161568f60d3913981565b6112df6114cb565b73ffffffffffffffffffffffffffffffffffffffff166112fd610d60565b73ffffffffffffffffffffffffffffffffffffffff1614611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a90613c14565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba90613a94565b60405180910390fd5b6113cc81611949565b50565b6001816000016000828254019250508190555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611458575061145782612019565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661154683610ae6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006115978261145f565b6115d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cd90613b34565b60405180910390fd5b60006115e183610ae6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061165057508373ffffffffffffffffffffffffffffffffffffffff166116388461066e565b73ffffffffffffffffffffffffffffffffffffffff16145b8061166157506116608185611226565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661168a82610ae6565b73ffffffffffffffffffffffffffffffffffffffff16146116e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d790613c34565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174790613af4565b60405180910390fd5b61175b8383836120fb565b6117666000826114d3565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117b69190613ea6565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461180d9190613dc5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006118d2600d61210b565b905060006118de610811565b9050600c5482826118ef9190613dc5565b1115611930576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192790613bb4565b60405180910390fd5b61193a8383612119565b611944600d6113cf565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a1a84848461166a565b611a2684848484612137565b611a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5c90613a74565b60405180910390fd5b50505050565b60606000821415611ab3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c13565b600082905060005b60008214611ae5578080611ace90614017565b915050600a82611ade9190613e1b565b9150611abb565b60008167ffffffffffffffff811115611b27577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611b595781602001600182028036833780820191505090505b5090505b60008514611c0c57600182611b729190613ea6565b9150600a85611b81919061406a565b6030611b8d9190613dc5565b60f81b818381518110611bc9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c059190613e1b565b9450611b5d565b8093505050505b919050565b6060734ad488d5ec98b857d7554d16a917e19b61de9aa9637be53e39836040518263ffffffff1660e01b8152600401611c519190613cb4565b60006040518083038186803b158015611c6957600080fd5b505af4158015611c7d573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611ca69190612e9c565b604051602001611cb6919061386b565b6040516020818303038152906040529050919050565b6060734ad488d5ec98b857d7554d16a917e19b61de9aa963ef769fd2836040518263ffffffff1660e01b8152600401611d059190613cb4565b60006040518083038186803b158015611d1d57600080fd5b505af4158015611d31573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611d5a9190612e9c565b604051602001611d6a9190613849565b6040516020818303038152906040529050919050565b60606000826060015160000151836060015160200151846000015160000151856000015160200151866020015160000151876020015160200151886000015160000151604051602001611dd9979695949392919061375d565b604051602081830303815290604052905080836000015160200151846000015160000151856000015160200151866000015160000151876000015160200151886040015160000151896040015160200151604051602001611e4198979695949392919061365a565b604051602081830303815290604052905080915050919050565b60606000825190506000811415611e845760405180602001604052806000815250915050612014565b60006003600283611e959190613dc5565b611e9f9190613e1b565b6004611eab9190613e4c565b90506000602082611ebc9190613dc5565b67ffffffffffffffff811115611efb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f2d5781602001600182028036833780820191505090505b509050600060405180606001604052806040815260200161564f604091399050600181016020830160005b86811015611fd15760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b90508084526004840193505050611f58565b506003860660018114611feb5760028114611ffb57612006565b613d3d60f01b6002830352612006565b603d60f81b60018303525b508484525050819450505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806120e457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806120f457506120f3826122ce565b5b9050919050565b612106838383612338565b505050565b600081600001549050919050565b61213382826040518060200160405280600081525061244c565b5050565b60006121588473ffffffffffffffffffffffffffffffffffffffff166124a7565b156122c1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121816114cb565b8786866040518563ffffffff1660e01b81526004016121a3949392919061396b565b602060405180830381600087803b1580156121bd57600080fd5b505af19250505080156121ee57506040513d601f19601f820116820180604052508101906121eb9190612e73565b60015b612271573d806000811461221e576040519150601f19603f3d011682016040523d82523d6000602084013e612223565b606091505b50600081511415612269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226090613a74565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122c6565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6123438383836124ba565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561238657612381816124bf565b6123c5565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146123c4576123c38382612508565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124085761240381612675565b612447565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146124465761244582826127b8565b5b5b505050565b6124568383612837565b6124636000848484612137565b6124a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249990613a74565b60405180910390fd5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161251584610c20565b61251f9190613ea6565b9050600060076000848152602001908152602001600020549050818114612604576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506126899190613ea6565b90506000600960008481526020019081526020016000205490506000600883815481106126df577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612727577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061279c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006127c383610c20565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289e90613bd4565b60405180910390fd5b6128b08161145f565b156128f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e790613ab4565b60405180910390fd5b6128fc600083836120fb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461294c9190613dc5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000612a18612a1384613d0f565b613cea565b905082815260208101848484011115612a3057600080fd5b612a3b848285613f72565b509392505050565b6000612a56612a5184613d40565b613cea565b905082815260208101848484011115612a6e57600080fd5b612a79848285613f81565b509392505050565b600081359050612a90816155f2565b92915050565b600081359050612aa581615609565b92915050565b600081359050612aba81615620565b92915050565b600081519050612acf81615620565b92915050565b600082601f830112612ae657600080fd5b8135612af6848260208601612a05565b91505092915050565b600082601f830112612b1057600080fd5b8151612b20848260208601612a43565b91505092915050565b600060408284031215612b3b57600080fd5b612b456040613cea565b9050600082015167ffffffffffffffff811115612b6157600080fd5b612b6d84828501612aff565b600083015250602082015167ffffffffffffffff811115612b8d57600080fd5b612b9984828501612aff565b60208301525092915050565b600060808284031215612bb757600080fd5b612bc16080613cea565b9050600082015167ffffffffffffffff811115612bdd57600080fd5b612be984828501612b29565b600083015250602082015167ffffffffffffffff811115612c0957600080fd5b612c1584828501612b29565b602083015250604082015167ffffffffffffffff811115612c3557600080fd5b612c4184828501612b29565b604083015250606082015167ffffffffffffffff811115612c6157600080fd5b612c6d84828501612b29565b60608301525092915050565b600081359050612c8881615637565b92915050565b600081519050612c9d81615637565b92915050565b600060208284031215612cb557600080fd5b6000612cc384828501612a81565b91505092915050565b60008060408385031215612cdf57600080fd5b6000612ced85828601612a81565b9250506020612cfe85828601612a81565b9150509250929050565b600080600060608486031215612d1d57600080fd5b6000612d2b86828701612a81565b9350506020612d3c86828701612a81565b9250506040612d4d86828701612c79565b9150509250925092565b60008060008060808587031215612d6d57600080fd5b6000612d7b87828801612a81565b9450506020612d8c87828801612a81565b9350506040612d9d87828801612c79565b925050606085013567ffffffffffffffff811115612dba57600080fd5b612dc687828801612ad5565b91505092959194509250565b60008060408385031215612de557600080fd5b6000612df385828601612a81565b9250506020612e0485828601612a96565b9150509250929050565b60008060408385031215612e2157600080fd5b6000612e2f85828601612a81565b9250506020612e4085828601612c79565b9150509250929050565b600060208284031215612e5c57600080fd5b6000612e6a84828501612aab565b91505092915050565b600060208284031215612e8557600080fd5b6000612e9384828501612ac0565b91505092915050565b600060208284031215612eae57600080fd5b600082015167ffffffffffffffff811115612ec857600080fd5b612ed484828501612aff565b91505092915050565b600060208284031215612eef57600080fd5b600082015167ffffffffffffffff811115612f0957600080fd5b612f1584828501612ba5565b91505092915050565b600060208284031215612f3057600080fd5b6000612f3e84828501612c79565b91505092915050565b600060208284031215612f5957600080fd5b6000612f6784828501612c8e565b91505092915050565b612f7981613eda565b82525050565b612f8881613eec565b82525050565b6000612f9982613d71565b612fa38185613d87565b9350612fb3818560208601613f81565b612fbc81614157565b840191505092915050565b612fd081613f4e565b82525050565b612fdf81613f60565b82525050565b6000612ff082613d7c565b612ffa8185613d98565b935061300a818560208601613f81565b61301381614157565b840191505092915050565b600061302982613d7c565b6130338185613da9565b9350613043818560208601613f81565b61304c81614157565b840191505092915050565b600061306282613d7c565b61306c8185613dba565b935061307c818560208601613f81565b80840191505092915050565b6000613095607183613dba565b91506130a082614168565b607182019050919050565b60006130b8602b83613d98565b91506130c382614203565b604082019050919050565b60006130db603283613d98565b91506130e682614252565b604082019050919050565b60006130fe602683613d98565b9150613109826142a1565b604082019050919050565b6000613121601c83613d98565b915061312c826142f0565b602082019050919050565b6000613144602083613dba565b915061314f82614319565b602082019050919050565b6000613167604f83613dba565b915061317282614342565b604f82019050919050565b600061318a601083613dba565b9150613195826143b7565b601082019050919050565b60006131ad600d83613d98565b91506131b8826143e0565b602082019050919050565b60006131d0602483613d98565b91506131db82614409565b604082019050919050565b60006131f3601983613d98565b91506131fe82614458565b602082019050919050565b600061321761065a83613dba565b915061322282614481565b61065a82019050919050565b600061323b602683613dba565b915061324682614c41565b602682019050919050565b600061325e602c83613d98565b915061326982614c90565b604082019050919050565b6000613281601783613dba565b915061328c82614cdf565b601782019050919050565b60006132a4603883613d98565b91506132af82614d08565b604082019050919050565b60006132c7602a83613d98565b91506132d282614d57565b604082019050919050565b60006132ea602983613d98565b91506132f582614da6565b604082019050919050565b600061330d608883613dba565b915061331882614df5565b608882019050919050565b6000613330600883613d98565b915061333b82614eb6565b602082019050919050565b6000613353600283613dba565b915061335e82614edf565b600282019050919050565b6000613376601083613dba565b915061338182614f08565b601082019050919050565b6000613399602083613d98565b91506133a482614f31565b602082019050919050565b60006133bc609083613dba565b91506133c782614f5a565b609082019050919050565b60006133df602c83613d98565b91506133ea8261501b565b604082019050919050565b6000613402601b83613dba565b915061340d8261506a565b601b82019050919050565b6000613425602083613d98565b915061343082615093565b602082019050919050565b6000613448600183613dba565b9150613453826150bc565b600182019050919050565b600061346b602983613d98565b9150613476826150e5565b604082019050919050565b600061348e601483613dba565b915061349982615134565b601482019050919050565b60006134b1600a83613dba565b91506134bc8261515d565b600a82019050919050565b60006134d4609083613dba565b91506134df82615186565b609082019050919050565b60006134f7600183613dba565b915061350282615247565b600182019050919050565b600061351a602183613d98565b915061352582615270565b604082019050919050565b600061353d608e83613dba565b9150613548826152bf565b608e82019050919050565b6000613560608e83613dba565b915061356b82615380565b608e82019050919050565b6000613583601d83613dba565b915061358e82615441565b601d82019050919050565b60006135a6608c83613dba565b91506135b18261546a565b608c82019050919050565b60006135c9603183613d98565b91506135d48261552b565b604082019050919050565b60006135ec602c83613d98565b91506135f78261557a565b604082019050919050565b600061360f600683613dba565b915061361a826155c9565b600682019050919050565b61362e81613f44565b82525050565b61363d81613f44565b82525050565b61365461364f82613f44565b614060565b82525050565b6000613666828b613057565b915061367182613137565b915061367d828a613057565b915061368882613599565b91506136948289613057565b915061369f82613137565b91506136ab8288613057565b91506136b682613553565b91506136c28287613057565b91506136cd82613137565b91506136d98286613057565b91506136e4826133af565b91506136f08285613057565b91506136fb82613137565b91506137078284613057565b9150613712826133f5565b91508190509998505050505050505050565b60006137308286613057565b915061373c8285613643565b60208201915061374c8284613643565b602082019150819050949350505050565b600061376882613088565b9150613774828a613057565b915061377f82613137565b915061378b8289613057565b915061379682613530565b91506137a28288613057565b91506137ad82613137565b91506137b98287613057565b91506137c4826134c7565b91506137d08286613057565b91506137db82613137565b91506137e78285613057565b91506137f282613300565b91506137fe8284613057565b915081905098975050505050505050565b600061381a8261315a565b91506138268285613057565b91506138328284613057565b915061383d82613602565b91508190509392505050565b600061385482613209565b91506138608284613057565b915081905092915050565b60006138768261343b565b915061388182613274565b915061388c826134a4565b91506138988284613057565b91506138a382613346565b91506138ae826134ea565b915081905092915050565b60006138c482613481565b91506138d08287613057565b91506138db82613369565b91506138e78286613057565b91506138f28261317d565b91506138fe8285613057565b91506139098261322e565b91506139158284613057565b915061392082613346565b915081905095945050505050565b600061393982613576565b91506139458284613057565b915081905092915050565b60006020820190506139656000830184612f70565b92915050565b60006080820190506139806000830187612f70565b61398d6020830186612f70565b61399a6040830185613625565b81810360608301526139ac8184612f8e565b905095945050505050565b60006020820190506139cc6000830184612f7f565b92915050565b600060208201905081810360008301526139ec818461301e565b905092915050565b60006020820190508181036000830152613a0e8184612fe5565b905092915050565b60006060820190508181036000830152613a30818661301e565b9050613a3f6020830185612fc7565b613a4c6040830184612fd6565b949350505050565b60006020820190508181036000830152613a6d816130ab565b9050919050565b60006020820190508181036000830152613a8d816130ce565b9050919050565b60006020820190508181036000830152613aad816130f1565b9050919050565b60006020820190508181036000830152613acd81613114565b9050919050565b60006020820190508181036000830152613aed816131a0565b9050919050565b60006020820190508181036000830152613b0d816131c3565b9050919050565b60006020820190508181036000830152613b2d816131e6565b9050919050565b60006020820190508181036000830152613b4d81613251565b9050919050565b60006020820190508181036000830152613b6d81613297565b9050919050565b60006020820190508181036000830152613b8d816132ba565b9050919050565b60006020820190508181036000830152613bad816132dd565b9050919050565b60006020820190508181036000830152613bcd81613323565b9050919050565b60006020820190508181036000830152613bed8161338c565b9050919050565b60006020820190508181036000830152613c0d816133d2565b9050919050565b60006020820190508181036000830152613c2d81613418565b9050919050565b60006020820190508181036000830152613c4d8161345e565b9050919050565b60006020820190508181036000830152613c6d8161350d565b9050919050565b60006020820190508181036000830152613c8d816135bc565b9050919050565b60006020820190508181036000830152613cad816135df565b9050919050565b6000602082019050613cc96000830184613634565b92915050565b6000602082019050613ce46000830184613625565b92915050565b6000613cf4613d05565b9050613d008282613fe6565b919050565b6000604051905090565b600067ffffffffffffffff821115613d2a57613d29614128565b5b613d3382614157565b9050602081019050919050565b600067ffffffffffffffff821115613d5b57613d5a614128565b5b613d6482614157565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613dd082613f44565b9150613ddb83613f44565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e1057613e0f61409b565b5b828201905092915050565b6000613e2682613f44565b9150613e3183613f44565b925082613e4157613e406140ca565b5b828204905092915050565b6000613e5782613f44565b9150613e6283613f44565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e9b57613e9a61409b565b5b828202905092915050565b6000613eb182613f44565b9150613ebc83613f44565b925082821015613ecf57613ece61409b565b5b828203905092915050565b6000613ee582613f24565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613f5982613f44565b9050919050565b6000613f6b82613f44565b9050919050565b82818337600083830152505050565b60005b83811015613f9f578082015181840152602081019050613f84565b83811115613fae576000848401525b50505050565b60006002820490506001821680613fcc57607f821691505b60208210811415613fe057613fdf6140f9565b5b50919050565b613fef82614157565b810181811067ffffffffffffffff8211171561400e5761400d614128565b5b80604052505050565b600061402282613f44565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140555761405461409b565b5b600182019050919050565b6000819050919050565b600061407582613f44565b915061408083613f44565b9250826140905761408f6140ca565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f3c646566733e3c6c696e6561724772616469656e742069643d2261222078313d60008201527f22353132222078323d22353132222079313d2230222079323d2231303234222060208201527f6772616469656e74556e6974733d227573657253706163654f6e557365223e3c60408201527f73746f702073746f702d636f6c6f723d22000000000000000000000000000000606082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f222f3e3c73746f70206f66667365743d2231222073746f702d636f6c6f723d22600082015250565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323060008201527f30302f737667222077696474683d223130323422206865696768743d2231303260208201527f34222066696c6c3d226e6f6e65223e0000000000000000000000000000000000604082015250565b7f2c226465736372697074696f6e223a2200000000000000000000000000000000600082015250565b7f50524943455f4e4f545f4d455400000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f3c706174682066696c6c3d2275726c282361292220643d224d3020306831303260008201527f34763130323448307a222f3e3c706174682066696c6c3d22236666662220666960208201527f6c6c2d72756c653d226576656e6f64642220643d224d3233322e38303820323460408201527f302e33333963302d31312e33313120392e3136392d32302e34382032302e343860608201527f2d32302e3438683435332e323035613131342e383935203131342e383935203060808201527f20302031203131342e383938203131342e38393876392e3433376c35312e383460a08201527f362034342e3235316331342e3233342031322e3139362032332e36383820323860c08201527f2e3930322032332e3638382034372e383432763131312e313463302032322e3960e08201527f39372d31332e3633352034312e3533372d33312e3033312035332e3434312d366101008201527f2e34323920342e342d31332e36303520382e3039332d32312e3332362031312e6101208201527f303035413130352e343535203130352e343535203020302031203830382e32206101408201527f3830372e3130366132302e34332032302e34332030203020312d372e323839206101608201527f312e3333364838332e333336632d31302e37393320302d31392e3633362d382e6101808201527f33352d32302e3432332d31382e3934326132302e3437362032302e34373620306101a08201527f203020312d31382e39342d32302e343232762d33372e3736376132302e3438206101c08201527f32302e34382030203020312031342e3030332d31392e3432396c3137342e38336101e08201527f322d35382e323737563631382e303163302d332e3331362e3830342d362e35346102008201527f3820322e3330342d392e3433376132302e3339362032302e33393620302030206102208201527f312d322e3330342d392e343437563234302e3333397a2220636c69702d72756c6102408201527f653d226576656e6f6464222f3e3c706174682066696c6c3d2275726c282362296102608201527f2220643d224d3235332e323837203234302e333339683435332e3230357633356102808201527f382e373837483235332e323837563234302e3333397a4d3235332e32383720366102a08201527f31382e3031683435332e323035763136392e393532483235332e3238375636316102c08201527f382e30317a222f3e3c706174682066696c6c3d2275726c282363292220643d226102e08201527f4d3737332e323536203236372e3939336139342e3431382039342e34313820306103008201527f203020302d36362e3736342d32372e363534763335382e3738376839342e34316103208201527f38563333342e3735376139342e34322039342e34322030203020302d32372e366103408201527f35342d36362e3736347a4d3730362e343932203631382e30316838342e3937366103608201527f6138342e3937362038342e3937362030203020312030203136392e393532682d6103808201527f38342e393736563631382e30317a222f3e3c706174682066696c6c3d2275726c6103a08201527f282364292220643d226d3636382e373234203635352e3737372d3232362e36306103c08201527f332037352e3533347633372e373637683335382e373837762d37352e3533346c6103e08201527f2d3133322e3138342034392e353639762d38372e3333367a222f3e3c706174686104008201527f2066696c6c3d2275726c282365292220643d224d36342e343531203733312e336104208201527f3131683337372e3637317633372e3736374836342e343532762d33372e3736376104408201527f7a4d3533362e353339203735302e313934483634392e38347631382e383834486104608201527f3533362e353339762d31382e3838347a222f3e3c672066696c6c3d2275726c286104808201527f236629223e3c7061746820643d224d3239312e303534203635352e37373720366104a08201527f342e343531203733312e333132683337372e3637316c3232362e3630332d37356104c08201527f2e353335483239312e3035347a4d3638372e363037203639332e3534346c2d316104e08201527f35312e3036382035362e363531483634392e38346c3135312e3036392d35362e6105008201527f363531483638372e3630377a222f3e3c2f673e3c672066696c6c3d2275726c286105208201527f236729223e3c7061746820643d224d3636382e373236203237382e31303548326105408201527f39312e303535763238332e323534683337372e363731563237382e3130357a4d6105608201527f3237322e3137203539392e313236683530392e3835367631382e3838344832376105808201527f322e3137762d31382e3838347a4d38332e313233203736392e323035683731386105a08201527f2e3030357631382e3637334838332e313233762d31382e3637337a4d3835392e6105c08201527f393133203430332e3939366c2d35392e3030312d35302e333536763234352e346105e08201527f36356334312e37333320302037352e3533342d32332e3134332037352e3533346106008201527f2d35312e363738762d3131312e313463302d31312e37352d352e3833332d32336106208201527f2e3132322d31362e3533332d33322e3239317a222f3e3c2f673e00000000000061064082015250565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c3b6260008201527f61736536342c0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f7b202274726169745f74797065223a202246616365222c000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f222f3e3c2f6c696e6561724772616469656e743e3c6c696e656172477261646960008201527f656e742069643d2264222078313d22373130222078323d223636352e3833342260208201527f2079313d22363333222079323d223738322e31393822206772616469656e745560408201527f6e6974733d227573657253706163654f6e557365223e3c73746f702073746f7060608201527f2d636f6c6f723d22000000000000000000000000000000000000000000000000608082015250565b7f534f4c445f4f5554000000000000000000000000000000000000000000000000600082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f222c202261747472696275746573223a00000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f222f3e3c2f6c696e6561724772616469656e743e3c6c696e656172477261646960008201527f656e742069643d2267222078313d223437392e373835222078323d223437392e60208201527f373835222079313d223237382e313035222079323d223738372e38373822206760408201527f72616469656e74556e6974733d227573657253706163654f6e557365223e3c7360608201527f746f702073746f702d636f6c6f723d2200000000000000000000000000000000608082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f222f3e3c2f6c696e6561724772616469656e743e3c2f646566733e0000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5b00000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f7b226e616d65223a224d61696e6672616d652023000000000000000000000000600082015250565b7f2276616c7565223a202200000000000000000000000000000000000000000000600082015250565b7f222f3e3c2f6c696e6561724772616469656e743e3c6c696e656172477261646960008201527f656e742069643d2263222078313d223739312e343638222078323d223739312e60208201527f343638222079313d223234302e333339222079323d223738372e39363222206760408201527f72616469656e74556e6974733d227573657253706163654f6e557365223e3c7360608201527f746f702073746f702d636f6c6f723d2200000000000000000000000000000000608082015250565b7f5d00000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f222f3e3c2f6c696e6561724772616469656e743e3c6c696e656172477261646960008201527f656e742069643d2262222078313d223437392e3839222078323d223437392e3860208201527f39222079313d223234302e333339222079323d223738372e393632222067726160408201527f6469656e74556e6974733d227573657253706163654f6e557365223e3c73746f60608201527f702073746f702d636f6c6f723d22000000000000000000000000000000000000608082015250565b7f222f3e3c2f6c696e6561724772616469656e743e3c6c696e656172477261646960008201527f656e742069643d2266222078313d223433322e3638222078323d223433322e3660208201527f38222079313d223635352e373737222079323d223735302e313935222067726160408201527f6469656e74556e6974733d227573657253706163654f6e557365223e3c73746f60608201527f702073746f702d636f6c6f723d22000000000000000000000000000000000000608082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f222f3e3c2f6c696e6561724772616469656e743e3c6c696e656172477261646960008201527f656e742069643d2265222078313d223335372e313436222078323d223335372e60208201527f313436222079313d22373230222079323d223736392e3037382220677261646960408201527f656e74556e6974733d227573657253706163654f6e557365223e3c73746f702060608201527f73746f702d636f6c6f723d220000000000000000000000000000000000000000608082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f3c2f7376673e0000000000000000000000000000000000000000000000000000600082015250565b6155fb81613eda565b811461560657600080fd5b50565b61561281613eec565b811461561d57600080fd5b50565b61562981613ef8565b811461563457600080fd5b50565b61564081613f44565b811461564b57600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f4d61696e6672616d657320617265206120636f6c6c656374696f6e206f6620323034382072616e646f6d6c792067656e657261746564206d61696e6672616d65732073746f72656420656e746972656c79206f6e2d636861696e2e2045616368204d61696e6672616d652077696c6c2066697420696e746f20796f75722077616c6c657420616e642073746179206f7065726174696f6e616c20666f72657665722c20636f6e7374616e746c7920676976696e6720796f7520726574726f2076696265732066726f6d2074686520706173742ea2646970667358221220e58f38b1f5eb5515e4cf426fbd23780f2127a1ee10afbe10363f84ee0f2c6dbf64736f6c63430008040033

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.