ETH Price: $2,516.21 (-1.05%)

Token

Tiles Panels (TILP)
 

Overview

Max Total Supply

423 TILP

Holders

249

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TILP
0xc67f05b21cf5bf308168960d6b1addc167888170
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

> `The Panels is an experiment about emergence arising from collective intelligence. **Blocks are the building blocks for Panels**. They are single independent generative art pieces, created on mint by a unique hash. They come in different shapes and colors, and some of them ...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TilesPanelsCore

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

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

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "./TilesBlocksCore.sol";

contract TilesPanelsCore is ERC721Enumerable, AccessControl, Ownable {
    struct Panel {
        string name;
        string description;
        uint16 size;
        uint16 degradationLevel;
        bool isEmpty;
    }

    uint256 constant TOTAL_MAX_2 = 50;
    uint256 constant TOTAL_MAX_4 = 500;
    uint256 constant TOTAL_MAX_6 = 200;
    uint256 constant TOTAL_MAX_9 = 250;
    uint256 constant TOTAL_MAX_16 = 80;
    uint256 constant TOTAL_MAX_25 = 20;
    uint256 constant TOTAL_MAX_36 = 5;

    using SafeMath for uint256;
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");

    string public scriptArweave;
    string public scriptIPFS;  

    address internal BLOCKS_CONTRACT;

    mapping  (uint256 => uint256[]) public tokenBlocks;
    mapping (uint256 => Panel) public tokens;

    mapping  (uint256 => uint256) public totalMints;
    uint256 public totalGlobalMints = 0;
    string internal _currentBaseURI = "";

    event PanelCreated (uint _tokenId, uint256[] _blocksTokenIds);
    event PanelDeconstructed (uint _tokenId);
    
    constructor(address adminAddress, address ownerAddress, string memory baseURI, address blocks_contract) ERC721("Tiles Panels", "TILP")  {
        _currentBaseURI = baseURI;
        _setupRole(DEFAULT_ADMIN_ROLE, adminAddress);
        BLOCKS_CONTRACT = blocks_contract;
        transferOwnership(ownerAddress);
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return _currentBaseURI;
    }

    function setBaseURI(string memory baseURI) public {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "Caller is not admin");
        _currentBaseURI = baseURI;
    }

    function setScriptIPFS(string memory _scriptIPFS) public {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "Caller is not admin");
        scriptIPFS = _scriptIPFS;
    }

    function setScriptArweave(string memory _scriptArweave) public {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "Caller is not admin");
        scriptArweave = _scriptArweave;
    }
    
    function _isValidLength(uint256 len) internal pure returns(bool) {
        return (len == 2 ||
                len == 4 ||
                len == 6 ||
                len == 9 ||
                len == 16 ||
                len == 25 ||
                len == 36);
    }

    function _checkTotalMints(uint256 size) internal view returns(bool) {
        if(size == 2) {
            return totalMints[size] < TOTAL_MAX_2;
        }
        if(size == 4) {
            return totalMints[size] < TOTAL_MAX_4;
        }
        else if(size == 6) {
            return totalMints[size] < TOTAL_MAX_6;
        }
        else if(size == 9) {
            return totalMints[size] < TOTAL_MAX_9;
        }
        else if(size == 16) {
            return totalMints[size] < TOTAL_MAX_16;
        }
        else if(size == 25) {
            return totalMints[size] < TOTAL_MAX_25;
        }
        else if(size == 36) {
            return totalMints[size] < TOTAL_MAX_36;
        }
        return false;
        
    }

    function deconstruct(uint256 _tokenId) public {
        require(hasRole(MINTER_ROLE, msg.sender), "Caller is not a minter");
        require(tokenBlocks[_tokenId].length > 0, "Panel is empty");
        delete tokenBlocks[_tokenId];
        if (tokens[_tokenId].degradationLevel < 4)
            tokens[_tokenId].degradationLevel++;
        tokens[_tokenId].name = '';
        tokens[_tokenId].description = '';
        tokens[_tokenId].isEmpty = true;

        emit PanelDeconstructed(_tokenId);
    }

    function fillEmptyToken(uint256 _tokenId, string memory _name, string memory _desc, uint256[] memory _blocksTokenIds) public {
        require(hasRole(MINTER_ROLE, msg.sender), "Caller is not a minter");
        require(tokens[_tokenId].isEmpty, "Panel is not empty");
        uint256 aLength = _blocksTokenIds.length;
        require(tokens[_tokenId].size == aLength, "Size differs from blocks count. Partial Panels not allowed");

        for(uint i=0; i < aLength; i++) {
            uint bTid = _blocksTokenIds[i];
            require(TilesBlocksCore(BLOCKS_CONTRACT).ownerOf(bTid) == ownerOf(_tokenId), "Receiver needs to own all tokens"); //also checks if token exists
            TilesBlocksCore(BLOCKS_CONTRACT).burn(bTid);
        }

        tokenBlocks[_tokenId] = _blocksTokenIds;
        tokens[_tokenId].name = _name;
        tokens[_tokenId].description = _desc;
        tokens[_tokenId].isEmpty = false;

        emit PanelCreated (_tokenId, _blocksTokenIds);
    }

    function mintGenesis(address _receiver, string memory _name, string memory _desc, uint16 _size, uint256[] memory _blocksTokenIds) public {
        require(hasRole(MINTER_ROLE, msg.sender), "Caller is not a minter");
        require(_isValidLength(_size), "Invalid size");
        require(_checkTotalMints(_size), "Exceeds total mints for this size");

        bool isEmpty = false;
        uint256 aLength = _blocksTokenIds.length;
        if (aLength > 0) { //not empty
            require(_size == aLength, "Size differs from blocks count. Partial Panels not allowed");
            for(uint i=0; i < aLength; i++) {
                uint bTid = _blocksTokenIds[i];
                require(TilesBlocksCore(BLOCKS_CONTRACT).ownerOf(bTid) == _receiver, "Receiver needs to own all tokens"); //also checks if token exists
                TilesBlocksCore(BLOCKS_CONTRACT).burn(bTid);
            }
        }
        else {
            isEmpty = true;
        }
        
        totalGlobalMints++;
        uint256 token = totalGlobalMints;

        totalMints[_size] = totalMints[_size] + 1;
        tokenBlocks[token] = _blocksTokenIds;


        tokens[token] = Panel({name: _name, description: _desc, size: _size, degradationLevel: 0, isEmpty: isEmpty});
        _safeMint(_receiver, token);
        
        emit PanelCreated (token, _blocksTokenIds);
    }

    function burn(uint256 tokenId) public {
        require(hasRole(MINTER_ROLE, msg.sender), "Caller is not a minter");
        _burn(tokenId);
    }
    
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721Enumerable, AccessControl) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId
            || super.supportsInterface(interfaceId);
    }
 
    function withdrawEther() public {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "Caller is not admin");
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

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

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

pragma solidity ^0.8.0;

import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 5 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 6 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 7 of 17 : TilesBlocksCore.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/access/Ownable.sol";


contract TilesBlocksCore is ERC721Enumerable, AccessControl, Ownable {

    using SafeMath for uint256;
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");

    string public scriptArweave;
    string public scriptIPFS;  

    mapping(uint256 => uint256) public tokenHash;

    uint32 public genesisMintLimit = 10000;
    uint256 public totalMints = 0;
    string internal _currentBaseURI = "";

    event Mint(uint256 tokenId);
    
    constructor(address adminAddress, address ownerAddress, string memory baseURI) ERC721("Tiles Blocks", "TILB")  {
        _currentBaseURI = baseURI;
        _setupRole(DEFAULT_ADMIN_ROLE, adminAddress);
        transferOwnership(ownerAddress);
    }
    
    function setGenesisMintLimit(uint32 _mintLimit) public {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "Caller is not admin");
        genesisMintLimit = _mintLimit;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _currentBaseURI;
    }

    function setBaseURI(string memory baseURI) public {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "Caller is not admin");
        _currentBaseURI = baseURI;
    }

    function setScriptIPFS(string memory _scriptIPFS) public {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "Caller is not admin");
        scriptIPFS = _scriptIPFS;
    }

    function setScriptArweave(string memory _scriptArweave) public {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "Caller is not admin");
        scriptArweave = _scriptArweave;
    }

    function _generateRandomHash() internal view returns (bytes32) {
        return keccak256(abi.encode(blockhash(block.number-1), block.coinbase, totalMints));
    }

    function _generateNewSeed() internal view returns (uint256) {
        bytes32 hashRandom = _generateRandomHash();
        uint256 value = uint8(hashRandom[20]);
        value = value << 8;
        value = value + uint8(hashRandom[21]);
        value = value << 24;
        value = value.add(totalMints);
        return uint256(value);
    }
    
    function mintGenesis(address _receiver, uint256 qty) public {
        require(hasRole(MINTER_ROLE, msg.sender), "Caller is not a minter");
        require(totalMints + qty <= genesisMintLimit, "Total genesis mint limit reached");
        
        for (uint256 i = 0; i<qty; i++) {
           _mint(_receiver);
        }
    }

    function _mint(address _receiver) internal {
        totalMints = totalMints + 1;
        uint256 token = totalMints;
        tokenHash[token] = _generateNewSeed();
        _safeMint(_receiver, token);
        emit Mint(token);
    }

    function burnToMint(uint256[] memory tokenIds, address _owner) public  {
        require(hasRole(MINTER_ROLE, msg.sender), "Caller is not a minter");
        //require(totalMints >= genesisMintLimit, "Burns can only start after all Blocks are minted");
        require(tokenIds.length < 10, "Total burn limit is 9");
        for (uint8 i = 0; i < tokenIds.length; i++) {
            require(_owner == ownerOf(tokenIds[i]), "Only the owner can burn pieces");
            _burn(tokenIds[i]);
        }
        for (uint8 i = 0; i < tokenIds.length - 1; i++) {
            _mint(_owner);
        }
        
    }

    function burn(uint256 tokenId) public {
        require(hasRole(MINTER_ROLE, msg.sender), "Caller is not a minter");
        _burn(tokenId);
    }
    
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721Enumerable, AccessControl) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId
            || super.supportsInterface(interfaceId);
    }
 
    function withdrawEther() public {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "Caller is not admin");
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

File 8 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 9 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);
}

File 10 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 11 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 12 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 13 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 14 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 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 : IAccessControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"adminAddress","type":"address"},{"internalType":"address","name":"ownerAddress","type":"address"},{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"address","name":"blocks_contract","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256[]","name":"_blocksTokenIds","type":"uint256[]"}],"name":"PanelCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"PanelDeconstructed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"deconstruct","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_desc","type":"string"},{"internalType":"uint256[]","name":"_blocksTokenIds","type":"uint256[]"}],"name":"fillEmptyToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_desc","type":"string"},{"internalType":"uint16","name":"_size","type":"uint16"},{"internalType":"uint256[]","name":"_blocksTokenIds","type":"uint256[]"}],"name":"mintGenesis","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","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":[],"name":"scriptArweave","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"scriptIPFS","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_scriptArweave","type":"string"}],"name":"setScriptArweave","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_scriptIPFS","type":"string"}],"name":"setScriptIPFS","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":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenBlocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokens","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"description","type":"string"},{"internalType":"uint16","name":"size","type":"uint16"},{"internalType":"uint16","name":"degradationLevel","type":"uint16"},{"internalType":"bool","name":"isEmpty","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalGlobalMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"totalMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"withdrawEther","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006012556040518060200160405280600081525060139080519060200190620000309291906200052f565b503480156200003e57600080fd5b506040516200690938038062006909833981810160405281019062000064919062000668565b6040518060400160405280600c81526020017f54696c65732050616e656c7300000000000000000000000000000000000000008152506040518060400160405280600481526020017f54494c50000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000e89291906200052f565b508060019080519060200190620001019291906200052f565b5050506200012462000118620001ae60201b60201c565b620001b660201b60201c565b81601390805190602001906200013c9291906200052f565b50620001526000801b856200027c60201b60201c565b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001a4836200029260201b60201c565b50505050620009c6565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200028e8282620003a860201b60201c565b5050565b620002a2620001ae60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002c86200049a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000321576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000318906200075d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000394576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038b906200073b565b60405180910390fd5b620003a581620001b660201b60201c565b50565b620003ba8282620004c460201b60201c565b62000496576001600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200043b620001ae60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8280546200053d9062000859565b90600052602060002090601f016020900481019282620005615760008555620005ad565b82601f106200057c57805160ff1916838001178555620005ad565b82800160010185558215620005ad579182015b82811115620005ac5782518255916020019190600101906200058f565b5b509050620005bc9190620005c0565b5090565b5b80821115620005db576000816000905550600101620005c1565b5090565b6000620005f6620005f084620007a8565b6200077f565b9050828152602081018484840111156200060f57600080fd5b6200061c84828562000823565b509392505050565b6000815190506200063581620009ac565b92915050565b600082601f8301126200064d57600080fd5b81516200065f848260208601620005df565b91505092915050565b600080600080608085870312156200067f57600080fd5b60006200068f8782880162000624565b9450506020620006a28782880162000624565b935050604085015167ffffffffffffffff811115620006c057600080fd5b620006ce878288016200063b565b9250506060620006e18782880162000624565b91505092959194509250565b6000620006fc602683620007de565b9150620007098262000934565b604082019050919050565b600062000723602083620007de565b9150620007308262000983565b602082019050919050565b600060208201905081810360008301526200075681620006ed565b9050919050565b60006020820190508181036000830152620007788162000714565b9050919050565b60006200078b6200079e565b90506200079982826200088f565b919050565b6000604051905090565b600067ffffffffffffffff821115620007c657620007c5620008f4565b5b620007d18262000923565b9050602081019050919050565b600082825260208201905092915050565b6000620007fc8262000803565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b838110156200084357808201518184015260208101905062000826565b8381111562000853576000848401525b50505050565b600060028204905060018216806200087257607f821691505b60208210811415620008895762000888620008c5565b5b50919050565b6200089a8262000923565b810181811067ffffffffffffffff82111715620008bc57620008bb620008f4565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b620009b781620007ef565b8114620009c357600080fd5b50565b615f3380620009d66000396000f3fe608060405234801561001057600080fd5b50600436106102485760003560e01c8063715018a61161013b578063b88d4fde116100b8578063deb2c7dd1161007c578063deb2c7dd14610703578063e812569b1461071f578063e985e9c51461073b578063ed1157f71461076b578063f2fde38b1461078757610248565b8063b88d4fde1461064d578063c87b56dd14610669578063d539139314610699578063d547741f146106b7578063d725a533146106d357610248565b806391d14854116100ff57806391d14854146105a757806395d89b41146105d7578063a1c23a94146105f5578063a217fddf14610613578063a22cb4651461063157610248565b8063715018a61461052757806371c235dd146105315780637362377b1461054f578063851d1006146105595780638da5cb5b1461058957610248565b80632f745c59116101c95780634f6ccce71161018d5780634f6ccce71461045f57806355f804b31461048f5780636296180f146104ab5780636352211e146104c757806370a08231146104f757610248565b80632f745c59146103a757806336568abe146103d757806342842e0e146103f357806342966c681461040f5780634f64b2be1461042b57610248565b806311eb3d891161021057806311eb3d891461030357806318160ddd1461032157806323b872dd1461033f578063248a9ca31461035b5780632f2ff15d1461038b57610248565b806301ffc9a71461024d57806302531f0d1461027d57806306fdde0314610299578063081812fc146102b7578063095ea7b3146102e7575b600080fd5b61026760048036038101906102629190614595565b6107a3565b6040516102749190614d8a565b60405180910390f35b61029760048036038101906102929190614628565b61081d565b005b6102a1610a5c565b6040516102ae9190614dc0565b60405180910390f35b6102d160048036038101906102cc9190614628565b610aee565b6040516102de9190614d23565b60405180910390f35b61030160048036038101906102fc91906144f4565b610b73565b005b61030b610c8b565b6040516103189190614dc0565b60405180910390f35b610329610d19565b60405161033691906151c3565b60405180910390f35b6103596004803603810190610354919061432f565b610d26565b005b61037560048036038101906103709190614530565b610d86565b6040516103829190614da5565b60405180910390f35b6103a560048036038101906103a09190614559565b610da6565b005b6103c160048036038101906103bc91906144f4565b610dcf565b6040516103ce91906151c3565b60405180910390f35b6103f160048036038101906103ec9190614559565b610e74565b005b61040d6004803603810190610408919061432f565b610ef7565b005b61042960048036038101906104249190614628565b610f17565b005b61044560048036038101906104409190614628565b610f8c565b604051610456959493929190614de2565b60405180910390f35b61047960048036038101906104749190614628565b6110fb565b60405161048691906151c3565b60405180910390f35b6104a960048036038101906104a491906145e7565b611192565b005b6104c560048036038101906104c09190614651565b6111f8565b005b6104e160048036038101906104dc9190614628565b611633565b6040516104ee9190614d23565b60405180910390f35b610511600480360381019061050c91906142a1565b6116e5565b60405161051e91906151c3565b60405180910390f35b61052f61179d565b005b610539611825565b6040516105469190614dc0565b60405180910390f35b6105576118b3565b005b610573600480360381019061056e91906146fc565b61194e565b60405161058091906151c3565b60405180910390f35b61059161197f565b60405161059e9190614d23565b60405180910390f35b6105c160048036038101906105bc9190614559565b6119a9565b6040516105ce9190614d8a565b60405180910390f35b6105df611a14565b6040516105ec9190614dc0565b60405180910390f35b6105fd611aa6565b60405161060a91906151c3565b60405180910390f35b61061b611aac565b6040516106289190614da5565b60405180910390f35b61064b600480360381019061064691906143f9565b611ab3565b005b6106676004803603810190610662919061437e565b611c34565b005b610683600480360381019061067e9190614628565b611c96565b6040516106909190614dc0565b60405180910390f35b6106a1611d3d565b6040516106ae9190614da5565b60405180910390f35b6106d160048036038101906106cc9190614559565b611d61565b005b6106ed60048036038101906106e89190614628565b611d8a565b6040516106fa91906151c3565b60405180910390f35b61071d600480360381019061071891906145e7565b611da2565b005b610739600480360381019061073491906145e7565b611e08565b005b610755600480360381019061075091906142f3565b611e6e565b6040516107629190614d8a565b60405180910390f35b61078560048036038101906107809190614435565b611f02565b005b6107a1600480360381019061079c91906142a1565b612428565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610816575061081582612520565b5b9050919050565b6108477f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336119a9565b610886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087d90614fe3565b60405180910390fd5b6000600f600083815260200190815260200160002080549050116108df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d6906150a3565b60405180910390fd5b600f600082815260200190815260200160002060006108fe9190613f82565b60046010600083815260200190815260200160002060020160029054906101000a900461ffff1661ffff16101561097f5760106000828152602001908152602001600020600201600281819054906101000a900461ffff1680929190610963906155ad565b91906101000a81548161ffff021916908361ffff160217905550505b604051806020016040528060008152506010600083815260200190815260200160002060000190805190602001906109b8929190613fa3565b50604051806020016040528060008152506010600083815260200190815260200160002060010190805190602001906109f2929190613fa3565b5060016010600083815260200190815260200160002060020160046101000a81548160ff0219169083151502179055507fd6a1934b996cfb4ebbe5557c54949323bc3a9f8f3c26f2542ef5147c9f22e8a481604051610a5191906151c3565b60405180910390a150565b606060008054610a6b9061554a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a979061554a565b8015610ae45780601f10610ab957610100808354040283529160200191610ae4565b820191906000526020600020905b815481529060010190602001808311610ac757829003601f168201915b5050505050905090565b6000610af98261259a565b610b38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2f90615063565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b7e82611633565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be690615103565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c0e612606565b73ffffffffffffffffffffffffffffffffffffffff161480610c3d5750610c3c81610c37612606565b611e6e565b5b610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7390614fc3565b60405180910390fd5b610c86838361260e565b505050565b600d8054610c989061554a565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc49061554a565b8015610d115780601f10610ce657610100808354040283529160200191610d11565b820191906000526020600020905b815481529060010190602001808311610cf457829003601f168201915b505050505081565b6000600880549050905090565b610d37610d31612606565b826126c7565b610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90615143565b60405180910390fd5b610d818383836127a5565b505050565b6000600a6000838152602001908152602001600020600101549050919050565b610daf82610d86565b610dc081610dbb612606565b612a01565b610dca8383612a9e565b505050565b6000610dda836116e5565b8210610e1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1290614ea3565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610e7c612606565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee0906151a3565b60405180910390fd5b610ef38282612b7f565b5050565b610f1283838360405180602001604052806000815250611c34565b505050565b610f417f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336119a9565b610f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7790614fe3565b60405180910390fd5b610f8981612c61565b50565b6010602052806000526040600020600091509050806000018054610faf9061554a565b80601f0160208091040260200160405190810160405280929190818152602001828054610fdb9061554a565b80156110285780601f10610ffd57610100808354040283529160200191611028565b820191906000526020600020905b81548152906001019060200180831161100b57829003601f168201915b50505050509080600101805461103d9061554a565b80601f01602080910402602001604051908101604052809291908181526020018280546110699061554a565b80156110b65780601f1061108b576101008083540402835291602001916110b6565b820191906000526020600020905b81548152906001019060200180831161109957829003601f168201915b5050505050908060020160009054906101000a900461ffff16908060020160029054906101000a900461ffff16908060020160049054906101000a900460ff16905085565b6000611105610d19565b8210611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d90615163565b60405180910390fd5b60088281548110611180577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b61119f6000801b336119a9565b6111de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d590615123565b60405180910390fd5b80601390805190602001906111f4929190613fa3565b5050565b6112227f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336119a9565b611261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125890614fe3565b60405180910390fd5b6010600085815260200190815260200160002060020160049054906101000a900460ff166112c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb90614e83565b60405180910390fd5b600081519050806010600087815260200190815260200160002060020160009054906101000a900461ffff1661ffff1614611334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132b90614f43565b60405180910390fd5b60005b8181101561154557600083828151811061137a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905061138d87611633565b73ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016113fe91906151c3565b60206040518083038186803b15801561141657600080fd5b505afa15801561142a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061144e91906142ca565b73ffffffffffffffffffffffffffffffffffffffff16146114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b90615183565b60405180910390fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342966c68826040518263ffffffff1660e01b81526004016114ff91906151c3565b600060405180830381600087803b15801561151957600080fd5b505af115801561152d573d6000803e3d6000fd5b5050505050808061153d906155d8565b915050611337565b5081600f6000878152602001908152602001600020908051906020019061156d929190614029565b5083601060008781526020019081526020016000206000019080519060200190611598929190613fa3565b50826010600087815260200190815260200160002060010190805190602001906115c3929190613fa3565b5060006010600087815260200190815260200160002060020160046101000a81548160ff0219169083151502179055507fc4ea56e7382a3aa8125c15cfd6aca4386deb13307bf3ed9687268bbe731b244685836040516116249291906151de565b60405180910390a15050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d390615023565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174d90615003565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117a5612606565b73ffffffffffffffffffffffffffffffffffffffff166117c361197f565b73ffffffffffffffffffffffffffffffffffffffff1614611819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181090615083565b60405180910390fd5b6118236000612d72565b565b600c80546118329061554a565b80601f016020809104026020016040519081016040528092919081815260200182805461185e9061554a565b80156118ab5780601f10611880576101008083540402835291602001916118ab565b820191906000526020600020905b81548152906001019060200180831161188e57829003601f168201915b505050505081565b6118c06000801b336119a9565b6118ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f690615123565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561194a573d6000803e3d6000fd5b5050565b600f602052816000526040600020818154811061196a57600080fd5b90600052602060002001600091509150505481565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060018054611a239061554a565b80601f0160208091040260200160405190810160405280929190818152602001828054611a4f9061554a565b8015611a9c5780601f10611a7157610100808354040283529160200191611a9c565b820191906000526020600020905b815481529060010190602001808311611a7f57829003601f168201915b5050505050905090565b60125481565b6000801b81565b611abb612606565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2090614f83565b60405180910390fd5b8060056000611b36612606565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611be3612606565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c289190614d8a565b60405180910390a35050565b611c45611c3f612606565b836126c7565b611c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7b90615143565b60405180910390fd5b611c9084848484612e38565b50505050565b6060611ca18261259a565b611ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd7906150e3565b60405180910390fd5b6000611cea612e94565b90506000815111611d0a5760405180602001604052806000815250611d35565b80611d1484612f26565b604051602001611d25929190614cc5565b6040516020818303038152906040525b915050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b611d6a82610d86565b611d7b81611d76612606565b612a01565b611d858383612b7f565b505050565b60116020528060005260406000206000915090505481565b611daf6000801b336119a9565b611dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de590615123565b60405180910390fd5b80600d9080519060200190611e04929190613fa3565b5050565b611e156000801b336119a9565b611e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4b90615123565b60405180910390fd5b80600c9080519060200190611e6a929190613fa3565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f2c7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336119a9565b611f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6290614fe3565b60405180910390fd5b611f788261ffff166130d3565b611fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fae90614e63565b60405180910390fd5b611fc48261ffff16613122565b612003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffa90614f03565b60405180910390fd5b60008082519050600081111561226857808461ffff1614612059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205090614f43565b60405180910390fd5b60005b8181101561226257600084828151811061209f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508873ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b815260040161211b91906151c3565b60206040518083038186803b15801561213357600080fd5b505afa158015612147573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061216b91906142ca565b73ffffffffffffffffffffffffffffffffffffffff16146121c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b890615183565b60405180910390fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342966c68826040518263ffffffff1660e01b815260040161221c91906151c3565b600060405180830381600087803b15801561223657600080fd5b505af115801561224a573d6000803e3d6000fd5b5050505050808061225a906155d8565b91505061205c565b5061226d565b600191505b60126000815480929190612280906155d8565b9190505550600060125490506001601160008761ffff168152602001908152602001600020546122b0919061533d565b601160008761ffff1681526020019081526020016000208190555083600f600083815260200190815260200160002090805190602001906122f2929190614029565b506040518060a001604052808881526020018781526020018661ffff168152602001600061ffff168152602001841515815250601060008381526020019081526020016000206000820151816000019080519060200190612354929190613fa3565b506020820151816001019080519060200190612371929190613fa3565b5060408201518160020160006101000a81548161ffff021916908361ffff16021790555060608201518160020160026101000a81548161ffff021916908361ffff16021790555060808201518160020160046101000a81548160ff0219169083151502179055509050506123e58882613240565b7fc4ea56e7382a3aa8125c15cfd6aca4386deb13307bf3ed9687268bbe731b244681856040516124169291906151de565b60405180910390a15050505050505050565b612430612606565b73ffffffffffffffffffffffffffffffffffffffff1661244e61197f565b73ffffffffffffffffffffffffffffffffffffffff16146124a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249b90615083565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250b90614ee3565b60405180910390fd5b61251d81612d72565b50565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061259357506125928261325e565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661268183611633565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006126d28261259a565b612711576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270890614fa3565b60405180910390fd5b600061271c83611633565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061278b57508373ffffffffffffffffffffffffffffffffffffffff1661277384610aee565b73ffffffffffffffffffffffffffffffffffffffff16145b8061279c575061279b8185611e6e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166127c582611633565b73ffffffffffffffffffffffffffffffffffffffff161461281b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612812906150c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561288b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288290614f63565b60405180910390fd5b6128968383836132d8565b6128a160008261260e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128f1919061541e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612948919061533d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612a0b82826119a9565b612a9a57612a308173ffffffffffffffffffffffffffffffffffffffff1660146133ec565b612a3e8360001c60206133ec565b604051602001612a4f929190614ce9565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a919190614dc0565b60405180910390fd5b5050565b612aa882826119a9565b612b7b576001600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612b20612606565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b612b8982826119a9565b15612c5d576000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612c02612606565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000612c6c82611633565b9050612c7a816000846132d8565b612c8560008361260e565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cd5919061541e565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612e438484846127a5565b612e4f848484846136e6565b612e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8590614ec3565b60405180910390fd5b50505050565b606060138054612ea39061554a565b80601f0160208091040260200160405190810160405280929190818152602001828054612ecf9061554a565b8015612f1c5780601f10612ef157610100808354040283529160200191612f1c565b820191906000526020600020905b815481529060010190602001808311612eff57829003601f168201915b5050505050905090565b60606000821415612f6e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506130ce565b600082905060005b60008214612fa0578080612f89906155d8565b915050600a82612f999190615393565b9150612f76565b60008167ffffffffffffffff811115612fe2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130145781602001600182028036833780820191505090505b5090505b600085146130c75760018261302d919061541e565b9150600a8561303c9190615621565b6030613048919061533d565b60f81b818381518110613084577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130c09190615393565b9450613018565b8093505050505b919050565b600060028214806130e45750600482145b806130ef5750600682145b806130fa5750600982145b806131055750601082145b806131105750601982145b8061311b5750602482145b9050919050565b6000600282141561314b576032601160008481526020019081526020016000205410905061323b565b6004821415613173576101f4601160008481526020019081526020016000205410905061323b565b600682141561319a5760c8601160008481526020019081526020016000205410905061323b565b60098214156131c15760fa601160008481526020019081526020016000205410905061323b565b60108214156131e8576050601160008481526020019081526020016000205410905061323b565b601982141561320f576014601160008481526020019081526020016000205410905061323b565b6024821415613236576005601160008481526020019081526020016000205410905061323b565b600090505b919050565b61325a82826040518060200160405280600081525061387d565b5050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806132d157506132d0826138d8565b5b9050919050565b6132e38383836139ba565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561332657613321816139bf565b613365565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613364576133638382613a08565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133a8576133a381613b75565b6133e7565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146133e6576133e58282613cb8565b5b5b505050565b6060600060028360026133ff91906153c4565b613409919061533d565b67ffffffffffffffff811115613448577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561347a5781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106134d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110613562577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026135a291906153c4565b6135ac919061533d565b90505b6001811115613698577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110613614577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110613651577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061369190615520565b90506135af565b50600084146136dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136d390614e43565b60405180910390fd5b8091505092915050565b60006137078473ffffffffffffffffffffffffffffffffffffffff16613d37565b15613870578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613730612606565b8786866040518563ffffffff1660e01b81526004016137529493929190614d3e565b602060405180830381600087803b15801561376c57600080fd5b505af192505050801561379d57506040513d601f19601f8201168201806040525081019061379a91906145be565b60015b613820573d80600081146137cd576040519150601f19603f3d011682016040523d82523d6000602084013e6137d2565b606091505b50600081511415613818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161380f90614ec3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613875565b600190505b949350505050565b6138878383613d4a565b61389460008484846136e6565b6138d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138ca90614ec3565b60405180910390fd5b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806139a357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806139b357506139b282613f18565b5b9050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613a15846116e5565b613a1f919061541e565b9050600060076000848152602001908152602001600020549050818114613b04576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613b89919061541e565b9050600060096000848152602001908152602001600020549050600060088381548110613bdf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613c27577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613c9c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613cc3836116e5565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613db190615043565b60405180910390fd5b613dc38161259a565b15613e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dfa90614f23565b60405180910390fd5b613e0f600083836132d8565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613e5f919061533d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5080546000825590600052602060002090810190613fa09190614076565b50565b828054613faf9061554a565b90600052602060002090601f016020900481019282613fd15760008555614018565b82601f10613fea57805160ff1916838001178555614018565b82800160010185558215614018579182015b82811115614017578251825591602001919060010190613ffc565b5b5090506140259190614076565b5090565b828054828255906000526020600020908101928215614065579160200282015b82811115614064578251825591602001919060010190614049565b5b5090506140729190614076565b5090565b5b8082111561408f576000816000905550600101614077565b5090565b60006140a66140a184615233565b61520e565b905080838252602082019050828560208602820111156140c557600080fd5b60005b858110156140f557816140db888261428c565b8452602084019350602083019250506001810190506140c8565b5050509392505050565b600061411261410d8461525f565b61520e565b90508281526020810184848401111561412a57600080fd5b6141358482856154de565b509392505050565b600061415061414b84615290565b61520e565b90508281526020810184848401111561416857600080fd5b6141738482856154de565b509392505050565b60008135905061418a81615e73565b92915050565b60008151905061419f81615e73565b92915050565b600082601f8301126141b657600080fd5b81356141c6848260208601614093565b91505092915050565b6000813590506141de81615e8a565b92915050565b6000813590506141f381615ea1565b92915050565b60008135905061420881615eb8565b92915050565b60008151905061421d81615eb8565b92915050565b600082601f83011261423457600080fd5b81356142448482602086016140ff565b91505092915050565b600082601f83011261425e57600080fd5b813561426e84826020860161413d565b91505092915050565b60008135905061428681615ecf565b92915050565b60008135905061429b81615ee6565b92915050565b6000602082840312156142b357600080fd5b60006142c18482850161417b565b91505092915050565b6000602082840312156142dc57600080fd5b60006142ea84828501614190565b91505092915050565b6000806040838503121561430657600080fd5b60006143148582860161417b565b92505060206143258582860161417b565b9150509250929050565b60008060006060848603121561434457600080fd5b60006143528682870161417b565b93505060206143638682870161417b565b92505060406143748682870161428c565b9150509250925092565b6000806000806080858703121561439457600080fd5b60006143a28782880161417b565b94505060206143b38782880161417b565b93505060406143c48782880161428c565b925050606085013567ffffffffffffffff8111156143e157600080fd5b6143ed87828801614223565b91505092959194509250565b6000806040838503121561440c57600080fd5b600061441a8582860161417b565b925050602061442b858286016141cf565b9150509250929050565b600080600080600060a0868803121561444d57600080fd5b600061445b8882890161417b565b955050602086013567ffffffffffffffff81111561447857600080fd5b6144848882890161424d565b945050604086013567ffffffffffffffff8111156144a157600080fd5b6144ad8882890161424d565b93505060606144be88828901614277565b925050608086013567ffffffffffffffff8111156144db57600080fd5b6144e7888289016141a5565b9150509295509295909350565b6000806040838503121561450757600080fd5b60006145158582860161417b565b92505060206145268582860161428c565b9150509250929050565b60006020828403121561454257600080fd5b6000614550848285016141e4565b91505092915050565b6000806040838503121561456c57600080fd5b600061457a858286016141e4565b925050602061458b8582860161417b565b9150509250929050565b6000602082840312156145a757600080fd5b60006145b5848285016141f9565b91505092915050565b6000602082840312156145d057600080fd5b60006145de8482850161420e565b91505092915050565b6000602082840312156145f957600080fd5b600082013567ffffffffffffffff81111561461357600080fd5b61461f8482850161424d565b91505092915050565b60006020828403121561463a57600080fd5b60006146488482850161428c565b91505092915050565b6000806000806080858703121561466757600080fd5b60006146758782880161428c565b945050602085013567ffffffffffffffff81111561469257600080fd5b61469e8782880161424d565b935050604085013567ffffffffffffffff8111156146bb57600080fd5b6146c78782880161424d565b925050606085013567ffffffffffffffff8111156146e457600080fd5b6146f0878288016141a5565b91505092959194509250565b6000806040838503121561470f57600080fd5b600061471d8582860161428c565b925050602061472e8582860161428c565b9150509250929050565b60006147448383614ca7565b60208301905092915050565b61475981615452565b82525050565b600061476a826152d1565b61477481856152ff565b935061477f836152c1565b8060005b838110156147b05781516147978882614738565b97506147a2836152f2565b925050600181019050614783565b5085935050505092915050565b6147c681615464565b82525050565b6147d581615470565b82525050565b60006147e6826152dc565b6147f08185615310565b93506148008185602086016154ed565b6148098161570e565b840191505092915050565b600061481f826152e7565b6148298185615321565b93506148398185602086016154ed565b6148428161570e565b840191505092915050565b6000614858826152e7565b6148628185615332565b93506148728185602086016154ed565b80840191505092915050565b600061488b602083615321565b91506148968261571f565b602082019050919050565b60006148ae600c83615321565b91506148b982615748565b602082019050919050565b60006148d1601283615321565b91506148dc82615771565b602082019050919050565b60006148f4602b83615321565b91506148ff8261579a565b604082019050919050565b6000614917603283615321565b9150614922826157e9565b604082019050919050565b600061493a602683615321565b915061494582615838565b604082019050919050565b600061495d602183615321565b915061496882615887565b604082019050919050565b6000614980601c83615321565b915061498b826158d6565b602082019050919050565b60006149a3603a83615321565b91506149ae826158ff565b604082019050919050565b60006149c6602483615321565b91506149d18261594e565b604082019050919050565b60006149e9601983615321565b91506149f48261599d565b602082019050919050565b6000614a0c602c83615321565b9150614a17826159c6565b604082019050919050565b6000614a2f603883615321565b9150614a3a82615a15565b604082019050919050565b6000614a52601683615321565b9150614a5d82615a64565b602082019050919050565b6000614a75602a83615321565b9150614a8082615a8d565b604082019050919050565b6000614a98602983615321565b9150614aa382615adc565b604082019050919050565b6000614abb602083615321565b9150614ac682615b2b565b602082019050919050565b6000614ade602c83615321565b9150614ae982615b54565b604082019050919050565b6000614b01602083615321565b9150614b0c82615ba3565b602082019050919050565b6000614b24600e83615321565b9150614b2f82615bcc565b602082019050919050565b6000614b47602983615321565b9150614b5282615bf5565b604082019050919050565b6000614b6a602f83615321565b9150614b7582615c44565b604082019050919050565b6000614b8d602183615321565b9150614b9882615c93565b604082019050919050565b6000614bb0601383615321565b9150614bbb82615ce2565b602082019050919050565b6000614bd3603183615321565b9150614bde82615d0b565b604082019050919050565b6000614bf6602c83615321565b9150614c0182615d5a565b604082019050919050565b6000614c19601783615332565b9150614c2482615da9565b601782019050919050565b6000614c3c602083615321565b9150614c4782615dd2565b602082019050919050565b6000614c5f601183615332565b9150614c6a82615dfb565b601182019050919050565b6000614c82602f83615321565b9150614c8d82615e24565b604082019050919050565b614ca1816154a6565b82525050565b614cb0816154d4565b82525050565b614cbf816154d4565b82525050565b6000614cd1828561484d565b9150614cdd828461484d565b91508190509392505050565b6000614cf482614c0c565b9150614d00828561484d565b9150614d0b82614c52565b9150614d17828461484d565b91508190509392505050565b6000602082019050614d386000830184614750565b92915050565b6000608082019050614d536000830187614750565b614d606020830186614750565b614d6d6040830185614cb6565b8181036060830152614d7f81846147db565b905095945050505050565b6000602082019050614d9f60008301846147bd565b92915050565b6000602082019050614dba60008301846147cc565b92915050565b60006020820190508181036000830152614dda8184614814565b905092915050565b600060a0820190508181036000830152614dfc8188614814565b90508181036020830152614e108187614814565b9050614e1f6040830186614c98565b614e2c6060830185614c98565b614e3960808301846147bd565b9695505050505050565b60006020820190508181036000830152614e5c8161487e565b9050919050565b60006020820190508181036000830152614e7c816148a1565b9050919050565b60006020820190508181036000830152614e9c816148c4565b9050919050565b60006020820190508181036000830152614ebc816148e7565b9050919050565b60006020820190508181036000830152614edc8161490a565b9050919050565b60006020820190508181036000830152614efc8161492d565b9050919050565b60006020820190508181036000830152614f1c81614950565b9050919050565b60006020820190508181036000830152614f3c81614973565b9050919050565b60006020820190508181036000830152614f5c81614996565b9050919050565b60006020820190508181036000830152614f7c816149b9565b9050919050565b60006020820190508181036000830152614f9c816149dc565b9050919050565b60006020820190508181036000830152614fbc816149ff565b9050919050565b60006020820190508181036000830152614fdc81614a22565b9050919050565b60006020820190508181036000830152614ffc81614a45565b9050919050565b6000602082019050818103600083015261501c81614a68565b9050919050565b6000602082019050818103600083015261503c81614a8b565b9050919050565b6000602082019050818103600083015261505c81614aae565b9050919050565b6000602082019050818103600083015261507c81614ad1565b9050919050565b6000602082019050818103600083015261509c81614af4565b9050919050565b600060208201905081810360008301526150bc81614b17565b9050919050565b600060208201905081810360008301526150dc81614b3a565b9050919050565b600060208201905081810360008301526150fc81614b5d565b9050919050565b6000602082019050818103600083015261511c81614b80565b9050919050565b6000602082019050818103600083015261513c81614ba3565b9050919050565b6000602082019050818103600083015261515c81614bc6565b9050919050565b6000602082019050818103600083015261517c81614be9565b9050919050565b6000602082019050818103600083015261519c81614c2f565b9050919050565b600060208201905081810360008301526151bc81614c75565b9050919050565b60006020820190506151d86000830184614cb6565b92915050565b60006040820190506151f36000830185614cb6565b8181036020830152615205818461475f565b90509392505050565b6000615218615229565b9050615224828261557c565b919050565b6000604051905090565b600067ffffffffffffffff82111561524e5761524d6156df565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561527a576152796156df565b5b6152838261570e565b9050602081019050919050565b600067ffffffffffffffff8211156152ab576152aa6156df565b5b6152b48261570e565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000615348826154d4565b9150615353836154d4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561538857615387615652565b5b828201905092915050565b600061539e826154d4565b91506153a9836154d4565b9250826153b9576153b8615681565b5b828204905092915050565b60006153cf826154d4565b91506153da836154d4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561541357615412615652565b5b828202905092915050565b6000615429826154d4565b9150615434836154d4565b92508282101561544757615446615652565b5b828203905092915050565b600061545d826154b4565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561550b5780820151818401526020810190506154f0565b8381111561551a576000848401525b50505050565b600061552b826154d4565b9150600082141561553f5761553e615652565b5b600182039050919050565b6000600282049050600182168061556257607f821691505b60208210811415615576576155756156b0565b5b50919050565b6155858261570e565b810181811067ffffffffffffffff821117156155a4576155a36156df565b5b80604052505050565b60006155b8826154a6565b915061ffff8214156155cd576155cc615652565b5b600182019050919050565b60006155e3826154d4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561561657615615615652565b5b600182019050919050565b600061562c826154d4565b9150615637836154d4565b92508261564757615646615681565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f496e76616c69642073697a650000000000000000000000000000000000000000600082015250565b7f50616e656c206973206e6f7420656d7074790000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4578636565647320746f74616c206d696e747320666f7220746869732073697a60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53697a6520646966666572732066726f6d20626c6f636b7320636f756e742e2060008201527f5061727469616c2050616e656c73206e6f7420616c6c6f776564000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f43616c6c6572206973206e6f742061206d696e74657200000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f50616e656c20697320656d707479000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f742061646d696e00000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f5265636569766572206e6565647320746f206f776e20616c6c20746f6b656e73600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b615e7c81615452565b8114615e8757600080fd5b50565b615e9381615464565b8114615e9e57600080fd5b50565b615eaa81615470565b8114615eb557600080fd5b50565b615ec18161547a565b8114615ecc57600080fd5b50565b615ed8816154a6565b8114615ee357600080fd5b50565b615eef816154d4565b8114615efa57600080fd5b5056fea2646970667358221220aa9f0a8b48fa20658bfe06f3532797cad5ec4ecbac5d10b8e3ab4a6d1de9ff2764736f6c634300080400330000000000000000000000009148400514ce5df58894299ebc434561d18f235e0000000000000000000000005fe330099f53bc9081ee9026ec1ce3f3f25f120b000000000000000000000000000000000000000000000000000000000000008000000000000000000000000047f9dbb7b9a5157031f9ed10d00532a2b7de1c77000000000000000000000000000000000000000000000000000000000000002168747470733a2f2f646174612e74686574696c65732e6172742f70616e656c732f00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102485760003560e01c8063715018a61161013b578063b88d4fde116100b8578063deb2c7dd1161007c578063deb2c7dd14610703578063e812569b1461071f578063e985e9c51461073b578063ed1157f71461076b578063f2fde38b1461078757610248565b8063b88d4fde1461064d578063c87b56dd14610669578063d539139314610699578063d547741f146106b7578063d725a533146106d357610248565b806391d14854116100ff57806391d14854146105a757806395d89b41146105d7578063a1c23a94146105f5578063a217fddf14610613578063a22cb4651461063157610248565b8063715018a61461052757806371c235dd146105315780637362377b1461054f578063851d1006146105595780638da5cb5b1461058957610248565b80632f745c59116101c95780634f6ccce71161018d5780634f6ccce71461045f57806355f804b31461048f5780636296180f146104ab5780636352211e146104c757806370a08231146104f757610248565b80632f745c59146103a757806336568abe146103d757806342842e0e146103f357806342966c681461040f5780634f64b2be1461042b57610248565b806311eb3d891161021057806311eb3d891461030357806318160ddd1461032157806323b872dd1461033f578063248a9ca31461035b5780632f2ff15d1461038b57610248565b806301ffc9a71461024d57806302531f0d1461027d57806306fdde0314610299578063081812fc146102b7578063095ea7b3146102e7575b600080fd5b61026760048036038101906102629190614595565b6107a3565b6040516102749190614d8a565b60405180910390f35b61029760048036038101906102929190614628565b61081d565b005b6102a1610a5c565b6040516102ae9190614dc0565b60405180910390f35b6102d160048036038101906102cc9190614628565b610aee565b6040516102de9190614d23565b60405180910390f35b61030160048036038101906102fc91906144f4565b610b73565b005b61030b610c8b565b6040516103189190614dc0565b60405180910390f35b610329610d19565b60405161033691906151c3565b60405180910390f35b6103596004803603810190610354919061432f565b610d26565b005b61037560048036038101906103709190614530565b610d86565b6040516103829190614da5565b60405180910390f35b6103a560048036038101906103a09190614559565b610da6565b005b6103c160048036038101906103bc91906144f4565b610dcf565b6040516103ce91906151c3565b60405180910390f35b6103f160048036038101906103ec9190614559565b610e74565b005b61040d6004803603810190610408919061432f565b610ef7565b005b61042960048036038101906104249190614628565b610f17565b005b61044560048036038101906104409190614628565b610f8c565b604051610456959493929190614de2565b60405180910390f35b61047960048036038101906104749190614628565b6110fb565b60405161048691906151c3565b60405180910390f35b6104a960048036038101906104a491906145e7565b611192565b005b6104c560048036038101906104c09190614651565b6111f8565b005b6104e160048036038101906104dc9190614628565b611633565b6040516104ee9190614d23565b60405180910390f35b610511600480360381019061050c91906142a1565b6116e5565b60405161051e91906151c3565b60405180910390f35b61052f61179d565b005b610539611825565b6040516105469190614dc0565b60405180910390f35b6105576118b3565b005b610573600480360381019061056e91906146fc565b61194e565b60405161058091906151c3565b60405180910390f35b61059161197f565b60405161059e9190614d23565b60405180910390f35b6105c160048036038101906105bc9190614559565b6119a9565b6040516105ce9190614d8a565b60405180910390f35b6105df611a14565b6040516105ec9190614dc0565b60405180910390f35b6105fd611aa6565b60405161060a91906151c3565b60405180910390f35b61061b611aac565b6040516106289190614da5565b60405180910390f35b61064b600480360381019061064691906143f9565b611ab3565b005b6106676004803603810190610662919061437e565b611c34565b005b610683600480360381019061067e9190614628565b611c96565b6040516106909190614dc0565b60405180910390f35b6106a1611d3d565b6040516106ae9190614da5565b60405180910390f35b6106d160048036038101906106cc9190614559565b611d61565b005b6106ed60048036038101906106e89190614628565b611d8a565b6040516106fa91906151c3565b60405180910390f35b61071d600480360381019061071891906145e7565b611da2565b005b610739600480360381019061073491906145e7565b611e08565b005b610755600480360381019061075091906142f3565b611e6e565b6040516107629190614d8a565b60405180910390f35b61078560048036038101906107809190614435565b611f02565b005b6107a1600480360381019061079c91906142a1565b612428565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610816575061081582612520565b5b9050919050565b6108477f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336119a9565b610886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087d90614fe3565b60405180910390fd5b6000600f600083815260200190815260200160002080549050116108df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d6906150a3565b60405180910390fd5b600f600082815260200190815260200160002060006108fe9190613f82565b60046010600083815260200190815260200160002060020160029054906101000a900461ffff1661ffff16101561097f5760106000828152602001908152602001600020600201600281819054906101000a900461ffff1680929190610963906155ad565b91906101000a81548161ffff021916908361ffff160217905550505b604051806020016040528060008152506010600083815260200190815260200160002060000190805190602001906109b8929190613fa3565b50604051806020016040528060008152506010600083815260200190815260200160002060010190805190602001906109f2929190613fa3565b5060016010600083815260200190815260200160002060020160046101000a81548160ff0219169083151502179055507fd6a1934b996cfb4ebbe5557c54949323bc3a9f8f3c26f2542ef5147c9f22e8a481604051610a5191906151c3565b60405180910390a150565b606060008054610a6b9061554a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a979061554a565b8015610ae45780601f10610ab957610100808354040283529160200191610ae4565b820191906000526020600020905b815481529060010190602001808311610ac757829003601f168201915b5050505050905090565b6000610af98261259a565b610b38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2f90615063565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b7e82611633565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be690615103565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c0e612606565b73ffffffffffffffffffffffffffffffffffffffff161480610c3d5750610c3c81610c37612606565b611e6e565b5b610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7390614fc3565b60405180910390fd5b610c86838361260e565b505050565b600d8054610c989061554a565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc49061554a565b8015610d115780601f10610ce657610100808354040283529160200191610d11565b820191906000526020600020905b815481529060010190602001808311610cf457829003601f168201915b505050505081565b6000600880549050905090565b610d37610d31612606565b826126c7565b610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90615143565b60405180910390fd5b610d818383836127a5565b505050565b6000600a6000838152602001908152602001600020600101549050919050565b610daf82610d86565b610dc081610dbb612606565b612a01565b610dca8383612a9e565b505050565b6000610dda836116e5565b8210610e1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1290614ea3565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610e7c612606565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee0906151a3565b60405180910390fd5b610ef38282612b7f565b5050565b610f1283838360405180602001604052806000815250611c34565b505050565b610f417f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336119a9565b610f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7790614fe3565b60405180910390fd5b610f8981612c61565b50565b6010602052806000526040600020600091509050806000018054610faf9061554a565b80601f0160208091040260200160405190810160405280929190818152602001828054610fdb9061554a565b80156110285780601f10610ffd57610100808354040283529160200191611028565b820191906000526020600020905b81548152906001019060200180831161100b57829003601f168201915b50505050509080600101805461103d9061554a565b80601f01602080910402602001604051908101604052809291908181526020018280546110699061554a565b80156110b65780601f1061108b576101008083540402835291602001916110b6565b820191906000526020600020905b81548152906001019060200180831161109957829003601f168201915b5050505050908060020160009054906101000a900461ffff16908060020160029054906101000a900461ffff16908060020160049054906101000a900460ff16905085565b6000611105610d19565b8210611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d90615163565b60405180910390fd5b60088281548110611180577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b61119f6000801b336119a9565b6111de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d590615123565b60405180910390fd5b80601390805190602001906111f4929190613fa3565b5050565b6112227f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336119a9565b611261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125890614fe3565b60405180910390fd5b6010600085815260200190815260200160002060020160049054906101000a900460ff166112c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb90614e83565b60405180910390fd5b600081519050806010600087815260200190815260200160002060020160009054906101000a900461ffff1661ffff1614611334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132b90614f43565b60405180910390fd5b60005b8181101561154557600083828151811061137a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905061138d87611633565b73ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016113fe91906151c3565b60206040518083038186803b15801561141657600080fd5b505afa15801561142a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061144e91906142ca565b73ffffffffffffffffffffffffffffffffffffffff16146114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b90615183565b60405180910390fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342966c68826040518263ffffffff1660e01b81526004016114ff91906151c3565b600060405180830381600087803b15801561151957600080fd5b505af115801561152d573d6000803e3d6000fd5b5050505050808061153d906155d8565b915050611337565b5081600f6000878152602001908152602001600020908051906020019061156d929190614029565b5083601060008781526020019081526020016000206000019080519060200190611598929190613fa3565b50826010600087815260200190815260200160002060010190805190602001906115c3929190613fa3565b5060006010600087815260200190815260200160002060020160046101000a81548160ff0219169083151502179055507fc4ea56e7382a3aa8125c15cfd6aca4386deb13307bf3ed9687268bbe731b244685836040516116249291906151de565b60405180910390a15050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d390615023565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174d90615003565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117a5612606565b73ffffffffffffffffffffffffffffffffffffffff166117c361197f565b73ffffffffffffffffffffffffffffffffffffffff1614611819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181090615083565b60405180910390fd5b6118236000612d72565b565b600c80546118329061554a565b80601f016020809104026020016040519081016040528092919081815260200182805461185e9061554a565b80156118ab5780601f10611880576101008083540402835291602001916118ab565b820191906000526020600020905b81548152906001019060200180831161188e57829003601f168201915b505050505081565b6118c06000801b336119a9565b6118ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f690615123565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561194a573d6000803e3d6000fd5b5050565b600f602052816000526040600020818154811061196a57600080fd5b90600052602060002001600091509150505481565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060018054611a239061554a565b80601f0160208091040260200160405190810160405280929190818152602001828054611a4f9061554a565b8015611a9c5780601f10611a7157610100808354040283529160200191611a9c565b820191906000526020600020905b815481529060010190602001808311611a7f57829003601f168201915b5050505050905090565b60125481565b6000801b81565b611abb612606565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2090614f83565b60405180910390fd5b8060056000611b36612606565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611be3612606565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c289190614d8a565b60405180910390a35050565b611c45611c3f612606565b836126c7565b611c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7b90615143565b60405180910390fd5b611c9084848484612e38565b50505050565b6060611ca18261259a565b611ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd7906150e3565b60405180910390fd5b6000611cea612e94565b90506000815111611d0a5760405180602001604052806000815250611d35565b80611d1484612f26565b604051602001611d25929190614cc5565b6040516020818303038152906040525b915050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b611d6a82610d86565b611d7b81611d76612606565b612a01565b611d858383612b7f565b505050565b60116020528060005260406000206000915090505481565b611daf6000801b336119a9565b611dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de590615123565b60405180910390fd5b80600d9080519060200190611e04929190613fa3565b5050565b611e156000801b336119a9565b611e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4b90615123565b60405180910390fd5b80600c9080519060200190611e6a929190613fa3565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f2c7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336119a9565b611f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6290614fe3565b60405180910390fd5b611f788261ffff166130d3565b611fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fae90614e63565b60405180910390fd5b611fc48261ffff16613122565b612003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffa90614f03565b60405180910390fd5b60008082519050600081111561226857808461ffff1614612059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205090614f43565b60405180910390fd5b60005b8181101561226257600084828151811061209f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508873ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b815260040161211b91906151c3565b60206040518083038186803b15801561213357600080fd5b505afa158015612147573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061216b91906142ca565b73ffffffffffffffffffffffffffffffffffffffff16146121c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b890615183565b60405180910390fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342966c68826040518263ffffffff1660e01b815260040161221c91906151c3565b600060405180830381600087803b15801561223657600080fd5b505af115801561224a573d6000803e3d6000fd5b5050505050808061225a906155d8565b91505061205c565b5061226d565b600191505b60126000815480929190612280906155d8565b9190505550600060125490506001601160008761ffff168152602001908152602001600020546122b0919061533d565b601160008761ffff1681526020019081526020016000208190555083600f600083815260200190815260200160002090805190602001906122f2929190614029565b506040518060a001604052808881526020018781526020018661ffff168152602001600061ffff168152602001841515815250601060008381526020019081526020016000206000820151816000019080519060200190612354929190613fa3565b506020820151816001019080519060200190612371929190613fa3565b5060408201518160020160006101000a81548161ffff021916908361ffff16021790555060608201518160020160026101000a81548161ffff021916908361ffff16021790555060808201518160020160046101000a81548160ff0219169083151502179055509050506123e58882613240565b7fc4ea56e7382a3aa8125c15cfd6aca4386deb13307bf3ed9687268bbe731b244681856040516124169291906151de565b60405180910390a15050505050505050565b612430612606565b73ffffffffffffffffffffffffffffffffffffffff1661244e61197f565b73ffffffffffffffffffffffffffffffffffffffff16146124a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249b90615083565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250b90614ee3565b60405180910390fd5b61251d81612d72565b50565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061259357506125928261325e565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661268183611633565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006126d28261259a565b612711576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270890614fa3565b60405180910390fd5b600061271c83611633565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061278b57508373ffffffffffffffffffffffffffffffffffffffff1661277384610aee565b73ffffffffffffffffffffffffffffffffffffffff16145b8061279c575061279b8185611e6e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166127c582611633565b73ffffffffffffffffffffffffffffffffffffffff161461281b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612812906150c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561288b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288290614f63565b60405180910390fd5b6128968383836132d8565b6128a160008261260e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128f1919061541e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612948919061533d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612a0b82826119a9565b612a9a57612a308173ffffffffffffffffffffffffffffffffffffffff1660146133ec565b612a3e8360001c60206133ec565b604051602001612a4f929190614ce9565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a919190614dc0565b60405180910390fd5b5050565b612aa882826119a9565b612b7b576001600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612b20612606565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b612b8982826119a9565b15612c5d576000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612c02612606565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000612c6c82611633565b9050612c7a816000846132d8565b612c8560008361260e565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cd5919061541e565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612e438484846127a5565b612e4f848484846136e6565b612e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8590614ec3565b60405180910390fd5b50505050565b606060138054612ea39061554a565b80601f0160208091040260200160405190810160405280929190818152602001828054612ecf9061554a565b8015612f1c5780601f10612ef157610100808354040283529160200191612f1c565b820191906000526020600020905b815481529060010190602001808311612eff57829003601f168201915b5050505050905090565b60606000821415612f6e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506130ce565b600082905060005b60008214612fa0578080612f89906155d8565b915050600a82612f999190615393565b9150612f76565b60008167ffffffffffffffff811115612fe2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130145781602001600182028036833780820191505090505b5090505b600085146130c75760018261302d919061541e565b9150600a8561303c9190615621565b6030613048919061533d565b60f81b818381518110613084577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130c09190615393565b9450613018565b8093505050505b919050565b600060028214806130e45750600482145b806130ef5750600682145b806130fa5750600982145b806131055750601082145b806131105750601982145b8061311b5750602482145b9050919050565b6000600282141561314b576032601160008481526020019081526020016000205410905061323b565b6004821415613173576101f4601160008481526020019081526020016000205410905061323b565b600682141561319a5760c8601160008481526020019081526020016000205410905061323b565b60098214156131c15760fa601160008481526020019081526020016000205410905061323b565b60108214156131e8576050601160008481526020019081526020016000205410905061323b565b601982141561320f576014601160008481526020019081526020016000205410905061323b565b6024821415613236576005601160008481526020019081526020016000205410905061323b565b600090505b919050565b61325a82826040518060200160405280600081525061387d565b5050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806132d157506132d0826138d8565b5b9050919050565b6132e38383836139ba565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561332657613321816139bf565b613365565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613364576133638382613a08565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133a8576133a381613b75565b6133e7565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146133e6576133e58282613cb8565b5b5b505050565b6060600060028360026133ff91906153c4565b613409919061533d565b67ffffffffffffffff811115613448577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561347a5781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106134d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110613562577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026135a291906153c4565b6135ac919061533d565b90505b6001811115613698577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110613614577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110613651577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061369190615520565b90506135af565b50600084146136dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136d390614e43565b60405180910390fd5b8091505092915050565b60006137078473ffffffffffffffffffffffffffffffffffffffff16613d37565b15613870578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613730612606565b8786866040518563ffffffff1660e01b81526004016137529493929190614d3e565b602060405180830381600087803b15801561376c57600080fd5b505af192505050801561379d57506040513d601f19601f8201168201806040525081019061379a91906145be565b60015b613820573d80600081146137cd576040519150601f19603f3d011682016040523d82523d6000602084013e6137d2565b606091505b50600081511415613818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161380f90614ec3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613875565b600190505b949350505050565b6138878383613d4a565b61389460008484846136e6565b6138d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138ca90614ec3565b60405180910390fd5b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806139a357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806139b357506139b282613f18565b5b9050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613a15846116e5565b613a1f919061541e565b9050600060076000848152602001908152602001600020549050818114613b04576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613b89919061541e565b9050600060096000848152602001908152602001600020549050600060088381548110613bdf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613c27577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613c9c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613cc3836116e5565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613db190615043565b60405180910390fd5b613dc38161259a565b15613e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dfa90614f23565b60405180910390fd5b613e0f600083836132d8565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613e5f919061533d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5080546000825590600052602060002090810190613fa09190614076565b50565b828054613faf9061554a565b90600052602060002090601f016020900481019282613fd15760008555614018565b82601f10613fea57805160ff1916838001178555614018565b82800160010185558215614018579182015b82811115614017578251825591602001919060010190613ffc565b5b5090506140259190614076565b5090565b828054828255906000526020600020908101928215614065579160200282015b82811115614064578251825591602001919060010190614049565b5b5090506140729190614076565b5090565b5b8082111561408f576000816000905550600101614077565b5090565b60006140a66140a184615233565b61520e565b905080838252602082019050828560208602820111156140c557600080fd5b60005b858110156140f557816140db888261428c565b8452602084019350602083019250506001810190506140c8565b5050509392505050565b600061411261410d8461525f565b61520e565b90508281526020810184848401111561412a57600080fd5b6141358482856154de565b509392505050565b600061415061414b84615290565b61520e565b90508281526020810184848401111561416857600080fd5b6141738482856154de565b509392505050565b60008135905061418a81615e73565b92915050565b60008151905061419f81615e73565b92915050565b600082601f8301126141b657600080fd5b81356141c6848260208601614093565b91505092915050565b6000813590506141de81615e8a565b92915050565b6000813590506141f381615ea1565b92915050565b60008135905061420881615eb8565b92915050565b60008151905061421d81615eb8565b92915050565b600082601f83011261423457600080fd5b81356142448482602086016140ff565b91505092915050565b600082601f83011261425e57600080fd5b813561426e84826020860161413d565b91505092915050565b60008135905061428681615ecf565b92915050565b60008135905061429b81615ee6565b92915050565b6000602082840312156142b357600080fd5b60006142c18482850161417b565b91505092915050565b6000602082840312156142dc57600080fd5b60006142ea84828501614190565b91505092915050565b6000806040838503121561430657600080fd5b60006143148582860161417b565b92505060206143258582860161417b565b9150509250929050565b60008060006060848603121561434457600080fd5b60006143528682870161417b565b93505060206143638682870161417b565b92505060406143748682870161428c565b9150509250925092565b6000806000806080858703121561439457600080fd5b60006143a28782880161417b565b94505060206143b38782880161417b565b93505060406143c48782880161428c565b925050606085013567ffffffffffffffff8111156143e157600080fd5b6143ed87828801614223565b91505092959194509250565b6000806040838503121561440c57600080fd5b600061441a8582860161417b565b925050602061442b858286016141cf565b9150509250929050565b600080600080600060a0868803121561444d57600080fd5b600061445b8882890161417b565b955050602086013567ffffffffffffffff81111561447857600080fd5b6144848882890161424d565b945050604086013567ffffffffffffffff8111156144a157600080fd5b6144ad8882890161424d565b93505060606144be88828901614277565b925050608086013567ffffffffffffffff8111156144db57600080fd5b6144e7888289016141a5565b9150509295509295909350565b6000806040838503121561450757600080fd5b60006145158582860161417b565b92505060206145268582860161428c565b9150509250929050565b60006020828403121561454257600080fd5b6000614550848285016141e4565b91505092915050565b6000806040838503121561456c57600080fd5b600061457a858286016141e4565b925050602061458b8582860161417b565b9150509250929050565b6000602082840312156145a757600080fd5b60006145b5848285016141f9565b91505092915050565b6000602082840312156145d057600080fd5b60006145de8482850161420e565b91505092915050565b6000602082840312156145f957600080fd5b600082013567ffffffffffffffff81111561461357600080fd5b61461f8482850161424d565b91505092915050565b60006020828403121561463a57600080fd5b60006146488482850161428c565b91505092915050565b6000806000806080858703121561466757600080fd5b60006146758782880161428c565b945050602085013567ffffffffffffffff81111561469257600080fd5b61469e8782880161424d565b935050604085013567ffffffffffffffff8111156146bb57600080fd5b6146c78782880161424d565b925050606085013567ffffffffffffffff8111156146e457600080fd5b6146f0878288016141a5565b91505092959194509250565b6000806040838503121561470f57600080fd5b600061471d8582860161428c565b925050602061472e8582860161428c565b9150509250929050565b60006147448383614ca7565b60208301905092915050565b61475981615452565b82525050565b600061476a826152d1565b61477481856152ff565b935061477f836152c1565b8060005b838110156147b05781516147978882614738565b97506147a2836152f2565b925050600181019050614783565b5085935050505092915050565b6147c681615464565b82525050565b6147d581615470565b82525050565b60006147e6826152dc565b6147f08185615310565b93506148008185602086016154ed565b6148098161570e565b840191505092915050565b600061481f826152e7565b6148298185615321565b93506148398185602086016154ed565b6148428161570e565b840191505092915050565b6000614858826152e7565b6148628185615332565b93506148728185602086016154ed565b80840191505092915050565b600061488b602083615321565b91506148968261571f565b602082019050919050565b60006148ae600c83615321565b91506148b982615748565b602082019050919050565b60006148d1601283615321565b91506148dc82615771565b602082019050919050565b60006148f4602b83615321565b91506148ff8261579a565b604082019050919050565b6000614917603283615321565b9150614922826157e9565b604082019050919050565b600061493a602683615321565b915061494582615838565b604082019050919050565b600061495d602183615321565b915061496882615887565b604082019050919050565b6000614980601c83615321565b915061498b826158d6565b602082019050919050565b60006149a3603a83615321565b91506149ae826158ff565b604082019050919050565b60006149c6602483615321565b91506149d18261594e565b604082019050919050565b60006149e9601983615321565b91506149f48261599d565b602082019050919050565b6000614a0c602c83615321565b9150614a17826159c6565b604082019050919050565b6000614a2f603883615321565b9150614a3a82615a15565b604082019050919050565b6000614a52601683615321565b9150614a5d82615a64565b602082019050919050565b6000614a75602a83615321565b9150614a8082615a8d565b604082019050919050565b6000614a98602983615321565b9150614aa382615adc565b604082019050919050565b6000614abb602083615321565b9150614ac682615b2b565b602082019050919050565b6000614ade602c83615321565b9150614ae982615b54565b604082019050919050565b6000614b01602083615321565b9150614b0c82615ba3565b602082019050919050565b6000614b24600e83615321565b9150614b2f82615bcc565b602082019050919050565b6000614b47602983615321565b9150614b5282615bf5565b604082019050919050565b6000614b6a602f83615321565b9150614b7582615c44565b604082019050919050565b6000614b8d602183615321565b9150614b9882615c93565b604082019050919050565b6000614bb0601383615321565b9150614bbb82615ce2565b602082019050919050565b6000614bd3603183615321565b9150614bde82615d0b565b604082019050919050565b6000614bf6602c83615321565b9150614c0182615d5a565b604082019050919050565b6000614c19601783615332565b9150614c2482615da9565b601782019050919050565b6000614c3c602083615321565b9150614c4782615dd2565b602082019050919050565b6000614c5f601183615332565b9150614c6a82615dfb565b601182019050919050565b6000614c82602f83615321565b9150614c8d82615e24565b604082019050919050565b614ca1816154a6565b82525050565b614cb0816154d4565b82525050565b614cbf816154d4565b82525050565b6000614cd1828561484d565b9150614cdd828461484d565b91508190509392505050565b6000614cf482614c0c565b9150614d00828561484d565b9150614d0b82614c52565b9150614d17828461484d565b91508190509392505050565b6000602082019050614d386000830184614750565b92915050565b6000608082019050614d536000830187614750565b614d606020830186614750565b614d6d6040830185614cb6565b8181036060830152614d7f81846147db565b905095945050505050565b6000602082019050614d9f60008301846147bd565b92915050565b6000602082019050614dba60008301846147cc565b92915050565b60006020820190508181036000830152614dda8184614814565b905092915050565b600060a0820190508181036000830152614dfc8188614814565b90508181036020830152614e108187614814565b9050614e1f6040830186614c98565b614e2c6060830185614c98565b614e3960808301846147bd565b9695505050505050565b60006020820190508181036000830152614e5c8161487e565b9050919050565b60006020820190508181036000830152614e7c816148a1565b9050919050565b60006020820190508181036000830152614e9c816148c4565b9050919050565b60006020820190508181036000830152614ebc816148e7565b9050919050565b60006020820190508181036000830152614edc8161490a565b9050919050565b60006020820190508181036000830152614efc8161492d565b9050919050565b60006020820190508181036000830152614f1c81614950565b9050919050565b60006020820190508181036000830152614f3c81614973565b9050919050565b60006020820190508181036000830152614f5c81614996565b9050919050565b60006020820190508181036000830152614f7c816149b9565b9050919050565b60006020820190508181036000830152614f9c816149dc565b9050919050565b60006020820190508181036000830152614fbc816149ff565b9050919050565b60006020820190508181036000830152614fdc81614a22565b9050919050565b60006020820190508181036000830152614ffc81614a45565b9050919050565b6000602082019050818103600083015261501c81614a68565b9050919050565b6000602082019050818103600083015261503c81614a8b565b9050919050565b6000602082019050818103600083015261505c81614aae565b9050919050565b6000602082019050818103600083015261507c81614ad1565b9050919050565b6000602082019050818103600083015261509c81614af4565b9050919050565b600060208201905081810360008301526150bc81614b17565b9050919050565b600060208201905081810360008301526150dc81614b3a565b9050919050565b600060208201905081810360008301526150fc81614b5d565b9050919050565b6000602082019050818103600083015261511c81614b80565b9050919050565b6000602082019050818103600083015261513c81614ba3565b9050919050565b6000602082019050818103600083015261515c81614bc6565b9050919050565b6000602082019050818103600083015261517c81614be9565b9050919050565b6000602082019050818103600083015261519c81614c2f565b9050919050565b600060208201905081810360008301526151bc81614c75565b9050919050565b60006020820190506151d86000830184614cb6565b92915050565b60006040820190506151f36000830185614cb6565b8181036020830152615205818461475f565b90509392505050565b6000615218615229565b9050615224828261557c565b919050565b6000604051905090565b600067ffffffffffffffff82111561524e5761524d6156df565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561527a576152796156df565b5b6152838261570e565b9050602081019050919050565b600067ffffffffffffffff8211156152ab576152aa6156df565b5b6152b48261570e565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000615348826154d4565b9150615353836154d4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561538857615387615652565b5b828201905092915050565b600061539e826154d4565b91506153a9836154d4565b9250826153b9576153b8615681565b5b828204905092915050565b60006153cf826154d4565b91506153da836154d4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561541357615412615652565b5b828202905092915050565b6000615429826154d4565b9150615434836154d4565b92508282101561544757615446615652565b5b828203905092915050565b600061545d826154b4565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561550b5780820151818401526020810190506154f0565b8381111561551a576000848401525b50505050565b600061552b826154d4565b9150600082141561553f5761553e615652565b5b600182039050919050565b6000600282049050600182168061556257607f821691505b60208210811415615576576155756156b0565b5b50919050565b6155858261570e565b810181811067ffffffffffffffff821117156155a4576155a36156df565b5b80604052505050565b60006155b8826154a6565b915061ffff8214156155cd576155cc615652565b5b600182019050919050565b60006155e3826154d4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561561657615615615652565b5b600182019050919050565b600061562c826154d4565b9150615637836154d4565b92508261564757615646615681565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f496e76616c69642073697a650000000000000000000000000000000000000000600082015250565b7f50616e656c206973206e6f7420656d7074790000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4578636565647320746f74616c206d696e747320666f7220746869732073697a60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53697a6520646966666572732066726f6d20626c6f636b7320636f756e742e2060008201527f5061727469616c2050616e656c73206e6f7420616c6c6f776564000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f43616c6c6572206973206e6f742061206d696e74657200000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f50616e656c20697320656d707479000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f742061646d696e00000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f5265636569766572206e6565647320746f206f776e20616c6c20746f6b656e73600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b615e7c81615452565b8114615e8757600080fd5b50565b615e9381615464565b8114615e9e57600080fd5b50565b615eaa81615470565b8114615eb557600080fd5b50565b615ec18161547a565b8114615ecc57600080fd5b50565b615ed8816154a6565b8114615ee357600080fd5b50565b615eef816154d4565b8114615efa57600080fd5b5056fea2646970667358221220aa9f0a8b48fa20658bfe06f3532797cad5ec4ecbac5d10b8e3ab4a6d1de9ff2764736f6c63430008040033

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

0000000000000000000000009148400514ce5df58894299ebc434561d18f235e0000000000000000000000005fe330099f53bc9081ee9026ec1ce3f3f25f120b000000000000000000000000000000000000000000000000000000000000008000000000000000000000000047f9dbb7b9a5157031f9ed10d00532a2b7de1c77000000000000000000000000000000000000000000000000000000000000002168747470733a2f2f646174612e74686574696c65732e6172742f70616e656c732f00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : adminAddress (address): 0x9148400514Ce5DF58894299eBc434561D18F235E
Arg [1] : ownerAddress (address): 0x5fE330099F53bC9081ee9026eC1CE3F3f25F120B
Arg [2] : baseURI (string): https://data.thetiles.art/panels/
Arg [3] : blocks_contract (address): 0x47f9Dbb7B9A5157031f9ED10D00532A2b7DE1C77

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000009148400514ce5df58894299ebc434561d18f235e
Arg [1] : 0000000000000000000000005fe330099f53bc9081ee9026ec1ce3f3f25f120b
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [3] : 00000000000000000000000047f9dbb7b9a5157031f9ed10d00532a2b7de1c77
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000021
Arg [5] : 68747470733a2f2f646174612e74686574696c65732e6172742f70616e656c73
Arg [6] : 2f00000000000000000000000000000000000000000000000000000000000000


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.