ETH Price: $3,359.13 (-0.69%)
Gas: 9 Gwei

Token

PixelBlossom: Genesis (PBGEN)
 

Overview

Max Total Supply

300 PBGEN

Holders

186

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 PBGEN
0x2c3244f7761540e41859d9a446b489b08a85a058
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Pixel Blossom is a slow-burn NFT collection that aims to offer an alternative to the mainstream of NFTs, ruled by hype and FOMO.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PixelBlossomGenesisCollection

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 16 : PixelBlossomGenesisCollection.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.1;

import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "./PixelBlossomCollection.sol";
import "./PixelBlossomSimpleReveal.sol";

contract PixelBlossomGenesisCollection is PixelBlossomCollection, PixelBlossomSimpleReveal {
    using ECDSA for bytes32;

    uint public constant PRICE = 0.4 ether;
    uint public constant DEV_PERCENT = 15;

    address payable private _devAddress;
    address private _signer;

    mapping(bytes32 => bool) public nonces;

    constructor(
        string memory _name,
        string memory _symbol,
        uint _maxSupply,
        string memory _baseURI,
        string memory _ipfsBaseURI,
        address[] memory _artists,
        uint _revealInterval,
        uint _revealStates,
        address payable __devAddress,
        address __signer
    )
    PixelBlossomCollection(_name, _symbol, _maxSupply, _baseURI, _ipfsBaseURI, _artists)
    PixelBlossomSimpleReveal(_revealInterval, _revealStates) {
        _devAddress = __devAddress;
        _signer = __signer;
    }

    function mint(uint qty, bytes32 hash, bytes memory signature, bytes32 nonce) external payable {
        require(_matchAddressSigner(hash, signature), "PixelBlossomGenesisCollection: Direct minting is not allowed");
        require(_hashTransaction(msg.sender, qty, nonce) == hash, "PixelBlossomGenesisCollection: Hash mismatch");
        require(!nonces[nonce], "PixelBlossomGenesisCollection: Nonce was already used");
        require(qty * PRICE == msg.value, "PixelBlossomGenesisCollection: Ether value mismatch");

        nonces[nonce] = true;

        _mintNFTs(msg.sender, qty);
    }

    function setSigner(address __signer) external onlyOwner {
        _signer = __signer;
    }

    function withdraw() external onlyOwner {
        uint balance = address(this).balance;

        uint artistCut = balance * (100 - DEV_PERCENT) / 100 / artists.length;

        for (uint i = 0; i < artists.length; i++) {
            payable(artists[i]).transfer(artistCut);
            balance -= artistCut;
        }

        _devAddress.transfer(balance);
    }

    function _hashTransaction(address sender, uint qty, bytes32 nonce) private pure returns(bytes32) {
        return keccak256(abi.encodePacked(
                "\x19Ethereum Signed Message:\n32",
                keccak256(abi.encodePacked(sender, qty, nonce)))
        );
    }

    function _matchAddressSigner(bytes32 hash, bytes memory signature) private view returns(bool) {
        return _signer == hash.recover(signature);
    }
}

File 2 of 16 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 3 of 16 : PixelBlossomCollection.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.1;

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

contract PixelBlossomCollection is ERC721Enumerable, Ownable {
    using Strings for uint;

    bool public locked = false;
    bool public active = false;

    uint public maxSupply;
    string public baseURI;
    string public ipfsHash;
    string public ipfsBaseURI;
    bool public useIpfs = false;
    address[] public artists;
    bool[] public signatures;

    modifier onlyUnlocked() {
        require(!locked, "PixelBlossomCollection: Only if unlocked");
        _;
    }

    constructor(
        string memory _name,
        string memory _symbol,
        uint _maxSupply,
        string memory _baseURI,
        string memory _ipfsBaseURI,
        address[] memory _artists
    ) ERC721(_name, _symbol) {
        maxSupply = _maxSupply;
        baseURI = _baseURI;
        ipfsBaseURI = _ipfsBaseURI;
        artists = _artists;
        _setSignatures(artists.length);
    }

    function sign() external {
        for (uint i = 0; i < artists.length; i++) {
            if (artists[i] == msg.sender) {
                signatures[i] = true;
                break;
            }
        }
    }

    function _mintNFTs(address to, uint qty) internal onlyUnlocked() {
        require(active, "PixelBlossomCollection: collection must be active");
        require(maxSupply >= totalSupply() + qty, "PixelBlossomCollection: Cannot exceed max supply");

        for (uint i = 0; i < qty; i++) {
            _mint(to, totalSupply() + 1);
        }
    }

    function setBaseURI(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

    function setUseIpfs(bool _useIpfs) external onlyOwner {
        useIpfs = _useIpfs;
    }

    function setIpfsBaseURI(string memory _ipfsBaseURI) external onlyOwner {
        ipfsBaseURI = _ipfsBaseURI;
    }

    function setActive(bool _active) external onlyOwner {
        active = _active;
    }

    function setArtists(address[] calldata _artists) external onlyOwner onlyUnlocked() {
        artists = _artists;
        _setSignatures(_artists.length);
    }

    function setIpfsHash(string memory _ipfsHash) external onlyOwner onlyUnlocked() {
        ipfsHash = _ipfsHash;
    }

    function setLocked(bool _locked) external onlyOwner onlyUnlocked() {
        locked = _locked;
    }

    function tokenURI(uint tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721: URI query for nonexistent token");

        if (useIpfs) {
            return string(abi.encodePacked(ipfsBaseURI, ipfsHash, "/", tokenId.toString()));
        }

        return string(abi.encodePacked(baseURI, tokenId.toString()));
    }

    function _setSignatures(uint artistsLength) private {
        signatures = new bool[](artistsLength);
        for (uint i = 0; i < artistsLength; i++) {
            signatures[i] = false;
        }
    }
}

File 4 of 16 : PixelBlossomSimpleReveal.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.1;

import "@openzeppelin/contracts/access/Ownable.sol";

contract PixelBlossomSimpleReveal is Ownable {
    uint public startRevealTimestamp;
    uint public revealInterval;
    uint public revealStates;
    bool public revealLocked = false;

    constructor(uint _revealInterval, uint _revealStates) {
        revealInterval = _revealInterval;
        revealStates = _revealStates;
    }

    function lockReveal() external onlyOwner {
        revealLocked = true;
    }

    function setStartRevealTimestamp(uint value) external onlyOwner {
        require(!revealLocked, "PixelBlossomSimpleReveal: Reveal is locked");

        startRevealTimestamp = value;
    }

    function state() external view returns(uint) {
        if (startRevealTimestamp > block.timestamp || startRevealTimestamp == 0) {
            return 0;
        }
        uint value = (block.timestamp - startRevealTimestamp) / (revealInterval / revealStates);
        return value < revealStates ? value : revealStates;
    }
}

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

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 6 of 16 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

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 7 of 16 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev 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 {
        _transferOwnership(address(0));
    }

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

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

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

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 overridden 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 {
        _setApprovalForAll(_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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

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

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 9 of 16 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

File 11 of 16 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

File 13 of 16 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"string","name":"_ipfsBaseURI","type":"string"},{"internalType":"address[]","name":"_artists","type":"address[]"},{"internalType":"uint256","name":"_revealInterval","type":"uint256"},{"internalType":"uint256","name":"_revealStates","type":"uint256"},{"internalType":"address payable","name":"__devAddress","type":"address"},{"internalType":"address","name":"__signer","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEV_PERCENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"","type":"uint256"}],"name":"artists","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ipfsBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ipfsHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"bytes32","name":"hash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"bytes32","name":"nonce","type":"bytes32"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"nonces","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"revealInterval","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealStates","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_active","type":"bool"}],"name":"setActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_artists","type":"address[]"}],"name":"setArtists","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_ipfsBaseURI","type":"string"}],"name":"setIpfsBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_ipfsHash","type":"string"}],"name":"setIpfsHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_locked","type":"bool"}],"name":"setLocked","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"__signer","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setStartRevealTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_useIpfs","type":"bool"}],"name":"setUseIpfs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sign","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"signatures","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startRevealTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"state","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"useIpfs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a60146101000a81548160ff0219169083151502179055506000600a60156101000a81548160ff0219169083151502179055506000600f60006101000a81548160ff0219169083151502179055506000601560006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b5060405162006ad938038062006ad98339818101604052810190620000a3919062000739565b83838b8b8b8b8b8b85858160009080519060200190620000c5929190620003f4565b508060019080519060200190620000de929190620003f4565b50505062000101620000f56200021160201b60201c565b6200021960201b60201c565b83600b8190555082600c908051906020019062000120929190620003f4565b5081600e908051906020019062000139929190620003f4565b5080601090805190602001906200015292919062000485565b5062000169601080549050620002df60201b60201c565b5050505050508160138190555080601481905550505081601560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050505050505062000b62565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8067ffffffffffffffff81111562000320577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156200034f5781602001602082028036833780820191505090505b50601190805190602001906200036792919062000514565b5060005b81811015620003f057600060118281548110620003b1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090602091828204019190066101000a81548160ff0219169083151502179055508080620003e79062000a28565b9150506200036b565b5050565b8280546200040290620009bc565b90600052602060002090601f01602090048101928262000426576000855562000472565b82601f106200044157805160ff191683800117855562000472565b8280016001018555821562000472579182015b828111156200047157825182559160200191906001019062000454565b5b509050620004819190620005c1565b5090565b82805482825590600052602060002090810192821562000501579160200282015b82811115620005005782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190620004a6565b5b509050620005109190620005c1565b5090565b82805482825590600052602060002090601f01602090048101928215620005ae5791602002820160005b838211156200057d57835183826101000a81548160ff02191690831515021790555092602001926001016020816000010492830192600103026200053e565b8015620005ac5782816101000a81549060ff02191690556001016020816000010492830192600103026200057d565b505b509050620005bd9190620005c1565b5090565b5b80821115620005dc576000816000905550600101620005c2565b5090565b6000620005f7620005f184620008cf565b620008a6565b905080838252602082019050828560208602820111156200061757600080fd5b60005b858110156200064b57816200063088826200069a565b8452602084019350602083019250506001810190506200061a565b5050509392505050565b60006200066c6200066684620008fe565b620008a6565b9050828152602081018484840111156200068557600080fd5b6200069284828562000986565b509392505050565b600081519050620006ab8162000b14565b92915050565b600081519050620006c28162000b2e565b92915050565b600082601f830112620006da57600080fd5b8151620006ec848260208601620005e0565b91505092915050565b600082601f8301126200070757600080fd5b81516200071984826020860162000655565b91505092915050565b600081519050620007338162000b48565b92915050565b6000806000806000806000806000806101408b8d0312156200075a57600080fd5b60008b015167ffffffffffffffff8111156200077557600080fd5b620007838d828e01620006f5565b9a505060208b015167ffffffffffffffff811115620007a157600080fd5b620007af8d828e01620006f5565b9950506040620007c28d828e0162000722565b98505060608b015167ffffffffffffffff811115620007e057600080fd5b620007ee8d828e01620006f5565b97505060808b015167ffffffffffffffff8111156200080c57600080fd5b6200081a8d828e01620006f5565b96505060a08b015167ffffffffffffffff8111156200083857600080fd5b620008468d828e01620006c8565b95505060c0620008598d828e0162000722565b94505060e06200086c8d828e0162000722565b935050610100620008808d828e01620006b1565b925050610120620008948d828e016200069a565b9150509295989b9194979a5092959850565b6000620008b2620008c5565b9050620008c08282620009f2565b919050565b6000604051905090565b600067ffffffffffffffff821115620008ed57620008ec62000ad4565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156200091c576200091b62000ad4565b5b620009278262000b03565b9050602081019050919050565b600062000941826200095c565b9050919050565b600062000955826200095c565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620009a657808201518184015260208101905062000989565b83811115620009b6576000848401525b50505050565b60006002820490506001821680620009d557607f821691505b60208210811415620009ec57620009eb62000aa5565b5b50919050565b620009fd8262000b03565b810181811067ffffffffffffffff8211171562000a1f5762000a1e62000ad4565b5b80604052505050565b600062000a35826200097c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000a6b5762000a6a62000a76565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b62000b1f8162000934565b811462000b2b57600080fd5b50565b62000b398162000948565b811462000b4557600080fd5b50565b62000b53816200097c565b811462000b5f57600080fd5b50565b615f678062000b726000396000f3fe6080604052600436106102ae5760003560e01c806370a0823111610175578063c19d93fb116100dc578063cd7e10c111610095578063dea1c2651161006f578063dea1c26514610a7b578063e985e9c514610aa6578063f0fb21b014610ae3578063f2fde38b14610b0e576102ae565b8063cd7e10c1146109e8578063cf30901214610a25578063d5abeb0114610a50576102ae565b8063c19d93fb146108ec578063c346d9db14610917578063c4ebec3514610940578063c623674f14610957578063c87b56dd14610982578063c8bd8075146109bf576102ae565b806395d89b411161012e57806395d89b41146107ed5780639e317f1214610818578063a22cb46514610855578063acec338a1461087e578063b585dadb146108a7578063b88d4fde146108c3576102ae565b806370a08231146106db578063715018a61461071857806372c5318f1461072f5780638be101941461075a5780638d859f3e146107975780638da5cb5b146107c2576102ae565b80632ca15122116102195780634e3b62ec116101d25780634e3b62ec146105bb5780634f6ccce7146105e457806355f804b3146106215780636352211e1461064a5780636c0360eb146106875780636c19e783146106b2576102ae565b80632ca15122146104d35780632ddb26ce146104ea5780632f745c591461051357806337dfcaac146105505780633ccfd60b1461057b57806342842e0e14610592576102ae565b80631508c2901161026b5780631508c290146103d557806318160ddd14610400578063211e28b61461042b57806323b872dd14610454578063247cd8ad1461047d57806327532d27146104a8576102ae565b806301ffc9a7146102b357806302fb0c5e146102f057806306fdde031461031b578063081812fc14610346578063095ea7b3146103835780630cb9d989146103ac575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d5919061448e565b610b37565b6040516102e79190614d01565b60405180910390f35b3480156102fc57600080fd5b50610305610bb1565b6040516103129190614d01565b60405180910390f35b34801561032757600080fd5b50610330610bc4565b60405161033d9190614d61565b60405180910390f35b34801561035257600080fd5b5061036d60048036038101906103689190614521565b610c56565b60405161037a9190614c9a565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a591906143bb565b610cdb565b005b3480156103b857600080fd5b506103d360048036038101906103ce9190614521565b610df3565b005b3480156103e157600080fd5b506103ea610ec9565b6040516103f79190614d01565b60405180910390f35b34801561040c57600080fd5b50610415610edc565b6040516104229190615143565b60405180910390f35b34801561043757600080fd5b50610452600480360381019061044d919061443c565b610ee9565b005b34801561046057600080fd5b5061047b600480360381019061047691906142b5565b610fd2565b005b34801561048957600080fd5b50610492611032565b60405161049f9190615143565b60405180910390f35b3480156104b457600080fd5b506104bd611038565b6040516104ca9190615143565b60405180910390f35b3480156104df57600080fd5b506104e861103d565b005b3480156104f657600080fd5b50610511600480360381019061050c91906144e0565b611165565b005b34801561051f57600080fd5b5061053a600480360381019061053591906143bb565b6111fb565b6040516105479190615143565b60405180910390f35b34801561055c57600080fd5b506105656112a0565b6040516105729190614d01565b60405180910390f35b34801561058757600080fd5b506105906112b3565b005b34801561059e57600080fd5b506105b960048036038101906105b491906142b5565b6114b7565b005b3480156105c757600080fd5b506105e260048036038101906105dd91906144e0565b6114d7565b005b3480156105f057600080fd5b5061060b60048036038101906106069190614521565b6115bd565b6040516106189190615143565b60405180910390f35b34801561062d57600080fd5b50610648600480360381019061064391906144e0565b611654565b005b34801561065657600080fd5b50610671600480360381019061066c9190614521565b6116ea565b60405161067e9190614c9a565b60405180910390f35b34801561069357600080fd5b5061069c61179c565b6040516106a99190614d61565b60405180910390f35b3480156106be57600080fd5b506106d960048036038101906106d49190614250565b61182a565b005b3480156106e757600080fd5b5061070260048036038101906106fd9190614250565b6118ea565b60405161070f9190615143565b60405180910390f35b34801561072457600080fd5b5061072d6119a2565b005b34801561073b57600080fd5b50610744611a2a565b6040516107519190615143565b60405180910390f35b34801561076657600080fd5b50610781600480360381019061077c9190614521565b611a30565b60405161078e9190614d01565b60405180910390f35b3480156107a357600080fd5b506107ac611a64565b6040516107b99190615143565b60405180910390f35b3480156107ce57600080fd5b506107d7611a70565b6040516107e49190614c9a565b60405180910390f35b3480156107f957600080fd5b50610802611a9a565b60405161080f9190614d61565b60405180910390f35b34801561082457600080fd5b5061083f600480360381019061083a9190614465565b611b2c565b60405161084c9190614d01565b60405180910390f35b34801561086157600080fd5b5061087c6004803603810190610877919061437f565b611b4c565b005b34801561088a57600080fd5b506108a560048036038101906108a0919061443c565b611b62565b005b6108c160048036038101906108bc919061454a565b611bfb565b005b3480156108cf57600080fd5b506108ea60048036038101906108e59190614304565b611d82565b005b3480156108f857600080fd5b50610901611de4565b60405161090e9190615143565b60405180910390f35b34801561092357600080fd5b5061093e600480360381019061093991906143f7565b611e4c565b005b34801561094c57600080fd5b50610955611f3a565b005b34801561096357600080fd5b5061096c611fd3565b6040516109799190614d61565b60405180910390f35b34801561098e57600080fd5b506109a960048036038101906109a49190614521565b612061565b6040516109b69190614d61565b60405180910390f35b3480156109cb57600080fd5b506109e660048036038101906109e1919061443c565b612128565b005b3480156109f457600080fd5b50610a0f6004803603810190610a0a9190614521565b6121c1565b604051610a1c9190614c9a565b60405180910390f35b348015610a3157600080fd5b50610a3a612200565b604051610a479190614d01565b60405180910390f35b348015610a5c57600080fd5b50610a65612213565b604051610a729190615143565b60405180910390f35b348015610a8757600080fd5b50610a90612219565b604051610a9d9190615143565b60405180910390f35b348015610ab257600080fd5b50610acd6004803603810190610ac89190614279565b61221f565b604051610ada9190614d01565b60405180910390f35b348015610aef57600080fd5b50610af86122b3565b604051610b059190614d61565b60405180910390f35b348015610b1a57600080fd5b50610b356004803603810190610b309190614250565b612341565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610baa5750610ba982612439565b5b9050919050565b600a60159054906101000a900460ff1681565b606060008054610bd39061541f565b80601f0160208091040260200160405190810160405280929190818152602001828054610bff9061541f565b8015610c4c5780601f10610c2157610100808354040283529160200191610c4c565b820191906000526020600020905b815481529060010190602001808311610c2f57829003601f168201915b5050505050905090565b6000610c618261251b565b610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9790615043565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ce6826116ea565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4e906150c3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d76612587565b73ffffffffffffffffffffffffffffffffffffffff161480610da55750610da481610d9f612587565b61221f565b5b610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb90614f83565b60405180910390fd5b610dee838361258f565b505050565b610dfb612587565b73ffffffffffffffffffffffffffffffffffffffff16610e19611a70565b73ffffffffffffffffffffffffffffffffffffffff1614610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6690615063565b60405180910390fd5b601560009054906101000a900460ff1615610ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb690614e83565b60405180910390fd5b8060128190555050565b600f60009054906101000a900460ff1681565b6000600880549050905090565b610ef1612587565b73ffffffffffffffffffffffffffffffffffffffff16610f0f611a70565b73ffffffffffffffffffffffffffffffffffffffff1614610f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5c90615063565b60405180910390fd5b600a60149054906101000a900460ff1615610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac90614e23565b60405180910390fd5b80600a60146101000a81548160ff02191690831515021790555050565b610fe3610fdd612587565b82612648565b611022576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611019906150e3565b60405180910390fd5b61102d838383612726565b505050565b60135481565b600f81565b60005b601080549050811015611162573373ffffffffffffffffffffffffffffffffffffffff166010828154811061109e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561114f57600160118281548110611121577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090602091828204019190066101000a81548160ff021916908315150217905550611162565b808061115a90615482565b915050611040565b50565b61116d612587565b73ffffffffffffffffffffffffffffffffffffffff1661118b611a70565b73ffffffffffffffffffffffffffffffffffffffff16146111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d890615063565b60405180910390fd5b80600e90805190602001906111f7929190613ecf565b5050565b6000611206836118ea565b8210611247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123e90614de3565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601560009054906101000a900460ff1681565b6112bb612587565b73ffffffffffffffffffffffffffffffffffffffff166112d9611a70565b73ffffffffffffffffffffffffffffffffffffffff161461132f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132690615063565b60405180910390fd5b600047905060006010805490506064600f606461134c919061531e565b8461135791906152c4565b6113619190615293565b61136b9190615293565b905060005b60108054905081101561144957601081815481106113b7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611427573d6000803e3d6000fd5b508183611434919061531e565b9250808061144190615482565b915050611370565b50601560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050501580156114b2573d6000803e3d6000fd5b505050565b6114d283838360405180602001604052806000815250611d82565b505050565b6114df612587565b73ffffffffffffffffffffffffffffffffffffffff166114fd611a70565b73ffffffffffffffffffffffffffffffffffffffff1614611553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154a90615063565b60405180910390fd5b600a60149054906101000a900460ff16156115a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159a90614e23565b60405180910390fd5b80600d90805190602001906115b9929190613ecf565b5050565b60006115c7610edc565b8210611608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ff90615103565b60405180910390fd5b60088281548110611642577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b61165c612587565b73ffffffffffffffffffffffffffffffffffffffff1661167a611a70565b73ffffffffffffffffffffffffffffffffffffffff16146116d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c790615063565b60405180910390fd5b80600c90805190602001906116e6929190613ecf565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178a90614fe3565b60405180910390fd5b80915050919050565b600c80546117a99061541f565b80601f01602080910402602001604051908101604052809291908181526020018280546117d59061541f565b80156118225780601f106117f757610100808354040283529160200191611822565b820191906000526020600020905b81548152906001019060200180831161180557829003601f168201915b505050505081565b611832612587565b73ffffffffffffffffffffffffffffffffffffffff16611850611a70565b73ffffffffffffffffffffffffffffffffffffffff16146118a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189d90615063565b60405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561195b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195290614fc3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6119aa612587565b73ffffffffffffffffffffffffffffffffffffffff166119c8611a70565b73ffffffffffffffffffffffffffffffffffffffff1614611a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1590615063565b60405180910390fd5b611a28600061298d565b565b60145481565b60118181548110611a4057600080fd5b9060005260206000209060209182820401919006915054906101000a900460ff1681565b67058d15e17628000081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611aa99061541f565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad59061541f565b8015611b225780601f10611af757610100808354040283529160200191611b22565b820191906000526020600020905b815481529060010190602001808311611b0557829003601f168201915b5050505050905090565b60176020528060005260406000206000915054906101000a900460ff1681565b611b5e611b57612587565b8383612a53565b5050565b611b6a612587565b73ffffffffffffffffffffffffffffffffffffffff16611b88611a70565b73ffffffffffffffffffffffffffffffffffffffff1614611bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd590615063565b60405180910390fd5b80600a60156101000a81548160ff02191690831515021790555050565b611c058383612bc0565b611c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3b90614f63565b60405180910390fd5b82611c50338684612c2d565b14611c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8790614f43565b60405180910390fd5b6017600082815260200190815260200160002060009054906101000a900460ff1615611cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce890614fa3565b60405180910390fd5b3467058d15e17628000085611d0691906152c4565b14611d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3d90615083565b60405180910390fd5b60016017600083815260200190815260200160002060006101000a81548160ff021916908315150217905550611d7c3385612c89565b50505050565b611d93611d8d612587565b83612648565b611dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc9906150e3565b60405180910390fd5b611dde84848484612dbf565b50505050565b6000426012541180611df857506000601254145b15611e065760009050611e49565b6000601454601354611e189190615293565b60125442611e26919061531e565b611e309190615293565b90506014548110611e4357601454611e45565b805b9150505b90565b611e54612587565b73ffffffffffffffffffffffffffffffffffffffff16611e72611a70565b73ffffffffffffffffffffffffffffffffffffffff1614611ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebf90615063565b60405180910390fd5b600a60149054906101000a900460ff1615611f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0f90614e23565b60405180910390fd5b818160109190611f29929190613f55565b50611f3682829050612e1b565b5050565b611f42612587565b73ffffffffffffffffffffffffffffffffffffffff16611f60611a70565b73ffffffffffffffffffffffffffffffffffffffff1614611fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fad90615063565b60405180910390fd5b6001601560006101000a81548160ff021916908315150217905550565b600d8054611fe09061541f565b80601f016020809104026020016040519081016040528092919081815260200182805461200c9061541f565b80156120595780601f1061202e57610100808354040283529160200191612059565b820191906000526020600020905b81548152906001019060200180831161203c57829003601f168201915b505050505081565b606061206c8261251b565b6120ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a290615123565b60405180910390fd5b600f60009054906101000a900460ff16156120f557600e600d6120cd84612f27565b6040516020016120df93929190614c38565b6040516020818303038152906040529050612123565b600c61210083612f27565b604051602001612111929190614c14565b60405160208183030381529060405290505b919050565b612130612587565b73ffffffffffffffffffffffffffffffffffffffff1661214e611a70565b73ffffffffffffffffffffffffffffffffffffffff16146121a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219b90615063565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b601081815481106121d157600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b600b5481565b60125481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e80546122c09061541f565b80601f01602080910402602001604051908101604052809291908181526020018280546122ec9061541f565b80156123395780601f1061230e57610100808354040283529160200191612339565b820191906000526020600020905b81548152906001019060200180831161231c57829003601f168201915b505050505081565b612349612587565b73ffffffffffffffffffffffffffffffffffffffff16612367611a70565b73ffffffffffffffffffffffffffffffffffffffff16146123bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b490615063565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561242d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242490614e43565b60405180910390fd5b6124368161298d565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061250457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806125145750612513826130d4565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612602836116ea565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006126538261251b565b612692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268990614f23565b60405180910390fd5b600061269d836116ea565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806126df57506126de818561221f565b5b8061271d57508373ffffffffffffffffffffffffffffffffffffffff1661270584610c56565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612746826116ea565b73ffffffffffffffffffffffffffffffffffffffff161461279c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279390614e63565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561280c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280390614ec3565b60405180910390fd5b61281783838361313e565b61282260008261258f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612872919061531e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128c9919061523d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612988838383613252565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab990614ee3565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612bb39190614d01565b60405180910390a3505050565b6000612bd5828461325790919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b6000838383604051602001612c4493929190614bd7565b60405160208183030381529060405280519060200120604051602001612c6a9190614c74565b6040516020818303038152906040528051906020012090509392505050565b600a60149054906101000a900460ff1615612cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd090614e23565b60405180910390fd5b600a60159054906101000a900460ff16612d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1f90614dc3565b60405180910390fd5b80612d31610edc565b612d3b919061523d565b600b541015612d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d76906150a3565b60405180910390fd5b60005b81811015612dba57612da7836001612d98610edc565b612da2919061523d565b61327e565b8080612db290615482565b915050612d82565b505050565b612dca848484612726565b612dd684848484613458565b612e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0c90614e03565b60405180910390fd5b50505050565b8067ffffffffffffffff811115612e5b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015612e895781602001602082028036833780820191505090505b5060119080519060200190612e9f929190613ff5565b5060005b81811015612f2357600060118281548110612ee7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090602091828204019190066101000a81548160ff0219169083151502179055508080612f1b90615482565b915050612ea3565b5050565b60606000821415612f6f576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506130cf565b600082905060005b60008214612fa1578080612f8a90615482565b915050600a82612f9a9190615293565b9150612f77565b60008167ffffffffffffffff811115612fe3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130155781602001600182028036833780820191505090505b5090505b600085146130c85760018261302e919061531e565b9150600a8561303d9190615503565b6030613049919061523d565b60f81b818381518110613085577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130c19190615293565b9450613019565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6131498383836135ef565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561318c57613187816135f4565b6131cb565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146131ca576131c9838261363d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561320e57613209816137aa565b61324d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461324c5761324b82826138ed565b5b5b505050565b505050565b6000806000613266858561396c565b91509150613273816139ef565b819250505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e590615023565b60405180910390fd5b6132f78161251b565b15613337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332e90614ea3565b60405180910390fd5b6133436000838361313e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613393919061523d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461345460008383613252565b5050565b60006134798473ffffffffffffffffffffffffffffffffffffffff16613d40565b156135e2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026134a2612587565b8786866040518563ffffffff1660e01b81526004016134c49493929190614cb5565b602060405180830381600087803b1580156134de57600080fd5b505af192505050801561350f57506040513d601f19601f8201168201806040525081019061350c91906144b7565b60015b613592573d806000811461353f576040519150601f19603f3d011682016040523d82523d6000602084013e613544565b606091505b5060008151141561358a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161358190614e03565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506135e7565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161364a846118ea565b613654919061531e565b9050600060076000848152602001908152602001600020549050818114613739576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506137be919061531e565b9050600060096000848152602001908152602001600020549050600060088381548110613814577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061385c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806138d1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006138f8836118ea565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000806041835114156139ae5760008060006020860151925060408601519150606086015160001a90506139a287828585613d63565b945094505050506139e8565b6040835114156139df5760008060208501519150604085015190506139d4868383613e70565b9350935050506139e8565b60006002915091505b9250929050565b60006004811115613a29577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613a62577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613a6d57613d3d565b60016004811115613aa7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613ae0577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b1890614d83565b60405180910390fd5b60026004811115613b5b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613b94577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bcc90614da3565b60405180910390fd5b60036004811115613c0f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613c48577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c8090614f03565b60405180910390fd5b600480811115613cc2577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613cfb577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d3390615003565b60405180910390fd5b5b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613d9e576000600391509150613e67565b601b8560ff1614158015613db65750601c8560ff1614155b15613dc8576000600491509150613e67565b600060018787878760405160008152602001604052604051613ded9493929190614d1c565b6020604051602081039080840390855afa158015613e0f573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613e5e57600060019250925050613e67565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c613eb3919061523d565b9050613ec187828885613d63565b935093505050935093915050565b828054613edb9061541f565b90600052602060002090601f016020900481019282613efd5760008555613f44565b82601f10613f1657805160ff1916838001178555613f44565b82800160010185558215613f44579182015b82811115613f43578251825591602001919060010190613f28565b5b509050613f51919061409b565b5090565b828054828255906000526020600020908101928215613fe4579160200282015b82811115613fe357823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613f75565b5b509050613ff1919061409b565b5090565b82805482825590600052602060002090601f0160209004810192821561408a5791602002820160005b8382111561405b57835183826101000a81548160ff021916908315150217905550926020019260010160208160000104928301926001030261401e565b80156140885782816101000a81549060ff021916905560010160208160000104928301926001030261405b565b505b509050614097919061409b565b5090565b5b808211156140b457600081600090555060010161409c565b5090565b60006140cb6140c684615183565b61515e565b9050828152602081018484840111156140e357600080fd5b6140ee8482856153dd565b509392505050565b6000614109614104846151b4565b61515e565b90508281526020810184848401111561412157600080fd5b61412c8482856153dd565b509392505050565b60008135905061414381615ebe565b92915050565b60008083601f84011261415b57600080fd5b8235905067ffffffffffffffff81111561417457600080fd5b60208301915083602082028301111561418c57600080fd5b9250929050565b6000813590506141a281615ed5565b92915050565b6000813590506141b781615eec565b92915050565b6000813590506141cc81615f03565b92915050565b6000815190506141e181615f03565b92915050565b600082601f8301126141f857600080fd5b81356142088482602086016140b8565b91505092915050565b600082601f83011261422257600080fd5b81356142328482602086016140f6565b91505092915050565b60008135905061424a81615f1a565b92915050565b60006020828403121561426257600080fd5b600061427084828501614134565b91505092915050565b6000806040838503121561428c57600080fd5b600061429a85828601614134565b92505060206142ab85828601614134565b9150509250929050565b6000806000606084860312156142ca57600080fd5b60006142d886828701614134565b93505060206142e986828701614134565b92505060406142fa8682870161423b565b9150509250925092565b6000806000806080858703121561431a57600080fd5b600061432887828801614134565b945050602061433987828801614134565b935050604061434a8782880161423b565b925050606085013567ffffffffffffffff81111561436757600080fd5b614373878288016141e7565b91505092959194509250565b6000806040838503121561439257600080fd5b60006143a085828601614134565b92505060206143b185828601614193565b9150509250929050565b600080604083850312156143ce57600080fd5b60006143dc85828601614134565b92505060206143ed8582860161423b565b9150509250929050565b6000806020838503121561440a57600080fd5b600083013567ffffffffffffffff81111561442457600080fd5b61443085828601614149565b92509250509250929050565b60006020828403121561444e57600080fd5b600061445c84828501614193565b91505092915050565b60006020828403121561447757600080fd5b6000614485848285016141a8565b91505092915050565b6000602082840312156144a057600080fd5b60006144ae848285016141bd565b91505092915050565b6000602082840312156144c957600080fd5b60006144d7848285016141d2565b91505092915050565b6000602082840312156144f257600080fd5b600082013567ffffffffffffffff81111561450c57600080fd5b61451884828501614211565b91505092915050565b60006020828403121561453357600080fd5b60006145418482850161423b565b91505092915050565b6000806000806080858703121561456057600080fd5b600061456e8782880161423b565b945050602061457f878288016141a8565b935050604085013567ffffffffffffffff81111561459c57600080fd5b6145a8878288016141e7565b92505060606145b9878288016141a8565b91505092959194509250565b6145ce81615352565b82525050565b6145e56145e082615352565b6154cb565b82525050565b6145f481615364565b82525050565b61460381615370565b82525050565b61461a61461582615370565b6154dd565b82525050565b600061462b826151fa565b6146358185615210565b93506146458185602086016153ec565b61464e816155f0565b840191505092915050565b600061466482615205565b61466e8185615221565b935061467e8185602086016153ec565b614687816155f0565b840191505092915050565b600061469d82615205565b6146a78185615232565b93506146b78185602086016153ec565b80840191505092915050565b600081546146d08161541f565b6146da8186615232565b945060018216600081146146f5576001811461470657614739565b60ff19831686528186019350614739565b61470f856151e5565b60005b8381101561473157815481890152600182019150602081019050614712565b838801955050505b50505092915050565b600061474f601883615221565b915061475a8261560e565b602082019050919050565b6000614772601f83615221565b915061477d82615637565b602082019050919050565b6000614795601c83615232565b91506147a082615660565b601c82019050919050565b60006147b8603183615221565b91506147c382615689565b604082019050919050565b60006147db602b83615221565b91506147e6826156d8565b604082019050919050565b60006147fe603283615221565b915061480982615727565b604082019050919050565b6000614821602883615221565b915061482c82615776565b604082019050919050565b6000614844602683615221565b915061484f826157c5565b604082019050919050565b6000614867602583615221565b915061487282615814565b604082019050919050565b600061488a602a83615221565b915061489582615863565b604082019050919050565b60006148ad601c83615221565b91506148b8826158b2565b602082019050919050565b60006148d0602483615221565b91506148db826158db565b604082019050919050565b60006148f3601983615221565b91506148fe8261592a565b602082019050919050565b6000614916602283615221565b915061492182615953565b604082019050919050565b6000614939602c83615221565b9150614944826159a2565b604082019050919050565b600061495c602c83615221565b9150614967826159f1565b604082019050919050565b600061497f603c83615221565b915061498a82615a40565b604082019050919050565b60006149a2603883615221565b91506149ad82615a8f565b604082019050919050565b60006149c5603583615221565b91506149d082615ade565b604082019050919050565b60006149e8602a83615221565b91506149f382615b2d565b604082019050919050565b6000614a0b602983615221565b9150614a1682615b7c565b604082019050919050565b6000614a2e602283615221565b9150614a3982615bcb565b604082019050919050565b6000614a51602083615221565b9150614a5c82615c1a565b602082019050919050565b6000614a74602c83615221565b9150614a7f82615c43565b604082019050919050565b6000614a97602083615221565b9150614aa282615c92565b602082019050919050565b6000614aba603383615221565b9150614ac582615cbb565b604082019050919050565b6000614add603083615221565b9150614ae882615d0a565b604082019050919050565b6000614b00602183615221565b9150614b0b82615d59565b604082019050919050565b6000614b23603183615221565b9150614b2e82615da8565b604082019050919050565b6000614b46602c83615221565b9150614b5182615df7565b604082019050919050565b6000614b69602783615221565b9150614b7482615e46565b604082019050919050565b6000614b8c600183615232565b9150614b9782615e95565b600182019050919050565b614bab816153c6565b82525050565b614bc2614bbd826153c6565b6154f9565b82525050565b614bd1816153d0565b82525050565b6000614be382866145d4565b601482019150614bf38285614bb1565b602082019150614c038284614609565b602082019150819050949350505050565b6000614c2082856146c3565b9150614c2c8284614692565b91508190509392505050565b6000614c4482866146c3565b9150614c5082856146c3565b9150614c5b82614b7f565b9150614c678284614692565b9150819050949350505050565b6000614c7f82614788565b9150614c8b8284614609565b60208201915081905092915050565b6000602082019050614caf60008301846145c5565b92915050565b6000608082019050614cca60008301876145c5565b614cd760208301866145c5565b614ce46040830185614ba2565b8181036060830152614cf68184614620565b905095945050505050565b6000602082019050614d1660008301846145eb565b92915050565b6000608082019050614d3160008301876145fa565b614d3e6020830186614bc8565b614d4b60408301856145fa565b614d5860608301846145fa565b95945050505050565b60006020820190508181036000830152614d7b8184614659565b905092915050565b60006020820190508181036000830152614d9c81614742565b9050919050565b60006020820190508181036000830152614dbc81614765565b9050919050565b60006020820190508181036000830152614ddc816147ab565b9050919050565b60006020820190508181036000830152614dfc816147ce565b9050919050565b60006020820190508181036000830152614e1c816147f1565b9050919050565b60006020820190508181036000830152614e3c81614814565b9050919050565b60006020820190508181036000830152614e5c81614837565b9050919050565b60006020820190508181036000830152614e7c8161485a565b9050919050565b60006020820190508181036000830152614e9c8161487d565b9050919050565b60006020820190508181036000830152614ebc816148a0565b9050919050565b60006020820190508181036000830152614edc816148c3565b9050919050565b60006020820190508181036000830152614efc816148e6565b9050919050565b60006020820190508181036000830152614f1c81614909565b9050919050565b60006020820190508181036000830152614f3c8161492c565b9050919050565b60006020820190508181036000830152614f5c8161494f565b9050919050565b60006020820190508181036000830152614f7c81614972565b9050919050565b60006020820190508181036000830152614f9c81614995565b9050919050565b60006020820190508181036000830152614fbc816149b8565b9050919050565b60006020820190508181036000830152614fdc816149db565b9050919050565b60006020820190508181036000830152614ffc816149fe565b9050919050565b6000602082019050818103600083015261501c81614a21565b9050919050565b6000602082019050818103600083015261503c81614a44565b9050919050565b6000602082019050818103600083015261505c81614a67565b9050919050565b6000602082019050818103600083015261507c81614a8a565b9050919050565b6000602082019050818103600083015261509c81614aad565b9050919050565b600060208201905081810360008301526150bc81614ad0565b9050919050565b600060208201905081810360008301526150dc81614af3565b9050919050565b600060208201905081810360008301526150fc81614b16565b9050919050565b6000602082019050818103600083015261511c81614b39565b9050919050565b6000602082019050818103600083015261513c81614b5c565b9050919050565b60006020820190506151586000830184614ba2565b92915050565b6000615168615179565b90506151748282615451565b919050565b6000604051905090565b600067ffffffffffffffff82111561519e5761519d6155c1565b5b6151a7826155f0565b9050602081019050919050565b600067ffffffffffffffff8211156151cf576151ce6155c1565b5b6151d8826155f0565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000615248826153c6565b9150615253836153c6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561528857615287615534565b5b828201905092915050565b600061529e826153c6565b91506152a9836153c6565b9250826152b9576152b8615563565b5b828204905092915050565b60006152cf826153c6565b91506152da836153c6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561531357615312615534565b5b828202905092915050565b6000615329826153c6565b9150615334836153c6565b92508282101561534757615346615534565b5b828203905092915050565b600061535d826153a6565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561540a5780820151818401526020810190506153ef565b83811115615419576000848401525b50505050565b6000600282049050600182168061543757607f821691505b6020821081141561544b5761544a615592565b5b50919050565b61545a826155f0565b810181811067ffffffffffffffff82111715615479576154786155c1565b5b80604052505050565b600061548d826153c6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156154c0576154bf615534565b5b600182019050919050565b60006154d6826154e7565b9050919050565b6000819050919050565b60006154f282615601565b9050919050565b6000819050919050565b600061550e826153c6565b9150615519836153c6565b92508261552957615528615563565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f506978656c426c6f73736f6d436f6c6c656374696f6e3a20636f6c6c6563746960008201527f6f6e206d75737420626520616374697665000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f506978656c426c6f73736f6d436f6c6c656374696f6e3a204f6e6c792069662060008201527f756e6c6f636b6564000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f506978656c426c6f73736f6d53696d706c6552657665616c3a2052657665616c60008201527f206973206c6f636b656400000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f506978656c426c6f73736f6d47656e65736973436f6c6c656374696f6e3a204860008201527f617368206d69736d617463680000000000000000000000000000000000000000602082015250565b7f506978656c426c6f73736f6d47656e65736973436f6c6c656374696f6e3a204460008201527f6972656374206d696e74696e67206973206e6f7420616c6c6f77656400000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f506978656c426c6f73736f6d47656e65736973436f6c6c656374696f6e3a204e60008201527f6f6e63652077617320616c726561647920757365640000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f506978656c426c6f73736f6d47656e65736973436f6c6c656374696f6e3a204560008201527f746865722076616c7565206d69736d6174636800000000000000000000000000602082015250565b7f506978656c426c6f73736f6d436f6c6c656374696f6e3a2043616e6e6f74206560008201527f7863656564206d617820737570706c7900000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a2055524920717565727920666f72206e6f6e6578697374656e60008201527f7420746f6b656e00000000000000000000000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b615ec781615352565b8114615ed257600080fd5b50565b615ede81615364565b8114615ee957600080fd5b50565b615ef581615370565b8114615f0057600080fd5b50565b615f0c8161537a565b8114615f1757600080fd5b50565b615f23816153c6565b8114615f2e57600080fd5b5056fea264697066735822122059a6820e52328174b6f65ecad468384188fcfcfa8a67e92551b2f8fe0574cafb64736f6c6343000801003300000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000012c00000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000001baf80000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000054932024cfca2931c89797a918fa48ecdd77df3c000000000000000000000000648469898de6e8ab7b693cb5cedcd04ff139c50e0000000000000000000000000000000000000000000000000000000000000015506978656c426c6f73736f6d3a2047656e6573697300000000000000000000000000000000000000000000000000000000000000000000000000000000000005504247454e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c68747470733a2f2f67656e657369732e706978656c626c6f73736f6d2e696f2f6e66742f6d61696e6e65742f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007697066733a2f2f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000d3689e018d6a182d2806fa75b7bc580103f1b071000000000000000000000000d6ee002752c995a118e42611baf52aba7cc1fef1000000000000000000000000b0e984d4bf1830dcb6c8c4e0f81d0869d2f037b1000000000000000000000000f33654f85ba6b567f8841c8c954635b27e14c49d00000000000000000000000095d89b7069d3e401efe987a94e4cc4c64af746fb0000000000000000000000004f81b90b3d62592cdc20ed713503c608fd1eb6440000000000000000000000000c929081aae9480413f126bf7d798f34c60158df000000000000000000000000cc6f3815128b7b4655b1487fd521a79af45fa1af000000000000000000000000e726d0598cfbb879459451b9df5a481add1f36c200000000000000000000000045e8bb296136f08cc7fca0281efcb18b971f0314000000000000000000000000f2b4a725e943b54cdabada2c9ae2727874a49eaa000000000000000000000000d03072838feec992c647406a9a51190fe6322075

Deployed Bytecode

0x6080604052600436106102ae5760003560e01c806370a0823111610175578063c19d93fb116100dc578063cd7e10c111610095578063dea1c2651161006f578063dea1c26514610a7b578063e985e9c514610aa6578063f0fb21b014610ae3578063f2fde38b14610b0e576102ae565b8063cd7e10c1146109e8578063cf30901214610a25578063d5abeb0114610a50576102ae565b8063c19d93fb146108ec578063c346d9db14610917578063c4ebec3514610940578063c623674f14610957578063c87b56dd14610982578063c8bd8075146109bf576102ae565b806395d89b411161012e57806395d89b41146107ed5780639e317f1214610818578063a22cb46514610855578063acec338a1461087e578063b585dadb146108a7578063b88d4fde146108c3576102ae565b806370a08231146106db578063715018a61461071857806372c5318f1461072f5780638be101941461075a5780638d859f3e146107975780638da5cb5b146107c2576102ae565b80632ca15122116102195780634e3b62ec116101d25780634e3b62ec146105bb5780634f6ccce7146105e457806355f804b3146106215780636352211e1461064a5780636c0360eb146106875780636c19e783146106b2576102ae565b80632ca15122146104d35780632ddb26ce146104ea5780632f745c591461051357806337dfcaac146105505780633ccfd60b1461057b57806342842e0e14610592576102ae565b80631508c2901161026b5780631508c290146103d557806318160ddd14610400578063211e28b61461042b57806323b872dd14610454578063247cd8ad1461047d57806327532d27146104a8576102ae565b806301ffc9a7146102b357806302fb0c5e146102f057806306fdde031461031b578063081812fc14610346578063095ea7b3146103835780630cb9d989146103ac575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d5919061448e565b610b37565b6040516102e79190614d01565b60405180910390f35b3480156102fc57600080fd5b50610305610bb1565b6040516103129190614d01565b60405180910390f35b34801561032757600080fd5b50610330610bc4565b60405161033d9190614d61565b60405180910390f35b34801561035257600080fd5b5061036d60048036038101906103689190614521565b610c56565b60405161037a9190614c9a565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a591906143bb565b610cdb565b005b3480156103b857600080fd5b506103d360048036038101906103ce9190614521565b610df3565b005b3480156103e157600080fd5b506103ea610ec9565b6040516103f79190614d01565b60405180910390f35b34801561040c57600080fd5b50610415610edc565b6040516104229190615143565b60405180910390f35b34801561043757600080fd5b50610452600480360381019061044d919061443c565b610ee9565b005b34801561046057600080fd5b5061047b600480360381019061047691906142b5565b610fd2565b005b34801561048957600080fd5b50610492611032565b60405161049f9190615143565b60405180910390f35b3480156104b457600080fd5b506104bd611038565b6040516104ca9190615143565b60405180910390f35b3480156104df57600080fd5b506104e861103d565b005b3480156104f657600080fd5b50610511600480360381019061050c91906144e0565b611165565b005b34801561051f57600080fd5b5061053a600480360381019061053591906143bb565b6111fb565b6040516105479190615143565b60405180910390f35b34801561055c57600080fd5b506105656112a0565b6040516105729190614d01565b60405180910390f35b34801561058757600080fd5b506105906112b3565b005b34801561059e57600080fd5b506105b960048036038101906105b491906142b5565b6114b7565b005b3480156105c757600080fd5b506105e260048036038101906105dd91906144e0565b6114d7565b005b3480156105f057600080fd5b5061060b60048036038101906106069190614521565b6115bd565b6040516106189190615143565b60405180910390f35b34801561062d57600080fd5b50610648600480360381019061064391906144e0565b611654565b005b34801561065657600080fd5b50610671600480360381019061066c9190614521565b6116ea565b60405161067e9190614c9a565b60405180910390f35b34801561069357600080fd5b5061069c61179c565b6040516106a99190614d61565b60405180910390f35b3480156106be57600080fd5b506106d960048036038101906106d49190614250565b61182a565b005b3480156106e757600080fd5b5061070260048036038101906106fd9190614250565b6118ea565b60405161070f9190615143565b60405180910390f35b34801561072457600080fd5b5061072d6119a2565b005b34801561073b57600080fd5b50610744611a2a565b6040516107519190615143565b60405180910390f35b34801561076657600080fd5b50610781600480360381019061077c9190614521565b611a30565b60405161078e9190614d01565b60405180910390f35b3480156107a357600080fd5b506107ac611a64565b6040516107b99190615143565b60405180910390f35b3480156107ce57600080fd5b506107d7611a70565b6040516107e49190614c9a565b60405180910390f35b3480156107f957600080fd5b50610802611a9a565b60405161080f9190614d61565b60405180910390f35b34801561082457600080fd5b5061083f600480360381019061083a9190614465565b611b2c565b60405161084c9190614d01565b60405180910390f35b34801561086157600080fd5b5061087c6004803603810190610877919061437f565b611b4c565b005b34801561088a57600080fd5b506108a560048036038101906108a0919061443c565b611b62565b005b6108c160048036038101906108bc919061454a565b611bfb565b005b3480156108cf57600080fd5b506108ea60048036038101906108e59190614304565b611d82565b005b3480156108f857600080fd5b50610901611de4565b60405161090e9190615143565b60405180910390f35b34801561092357600080fd5b5061093e600480360381019061093991906143f7565b611e4c565b005b34801561094c57600080fd5b50610955611f3a565b005b34801561096357600080fd5b5061096c611fd3565b6040516109799190614d61565b60405180910390f35b34801561098e57600080fd5b506109a960048036038101906109a49190614521565b612061565b6040516109b69190614d61565b60405180910390f35b3480156109cb57600080fd5b506109e660048036038101906109e1919061443c565b612128565b005b3480156109f457600080fd5b50610a0f6004803603810190610a0a9190614521565b6121c1565b604051610a1c9190614c9a565b60405180910390f35b348015610a3157600080fd5b50610a3a612200565b604051610a479190614d01565b60405180910390f35b348015610a5c57600080fd5b50610a65612213565b604051610a729190615143565b60405180910390f35b348015610a8757600080fd5b50610a90612219565b604051610a9d9190615143565b60405180910390f35b348015610ab257600080fd5b50610acd6004803603810190610ac89190614279565b61221f565b604051610ada9190614d01565b60405180910390f35b348015610aef57600080fd5b50610af86122b3565b604051610b059190614d61565b60405180910390f35b348015610b1a57600080fd5b50610b356004803603810190610b309190614250565b612341565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610baa5750610ba982612439565b5b9050919050565b600a60159054906101000a900460ff1681565b606060008054610bd39061541f565b80601f0160208091040260200160405190810160405280929190818152602001828054610bff9061541f565b8015610c4c5780601f10610c2157610100808354040283529160200191610c4c565b820191906000526020600020905b815481529060010190602001808311610c2f57829003601f168201915b5050505050905090565b6000610c618261251b565b610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9790615043565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ce6826116ea565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4e906150c3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d76612587565b73ffffffffffffffffffffffffffffffffffffffff161480610da55750610da481610d9f612587565b61221f565b5b610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb90614f83565b60405180910390fd5b610dee838361258f565b505050565b610dfb612587565b73ffffffffffffffffffffffffffffffffffffffff16610e19611a70565b73ffffffffffffffffffffffffffffffffffffffff1614610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6690615063565b60405180910390fd5b601560009054906101000a900460ff1615610ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb690614e83565b60405180910390fd5b8060128190555050565b600f60009054906101000a900460ff1681565b6000600880549050905090565b610ef1612587565b73ffffffffffffffffffffffffffffffffffffffff16610f0f611a70565b73ffffffffffffffffffffffffffffffffffffffff1614610f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5c90615063565b60405180910390fd5b600a60149054906101000a900460ff1615610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac90614e23565b60405180910390fd5b80600a60146101000a81548160ff02191690831515021790555050565b610fe3610fdd612587565b82612648565b611022576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611019906150e3565b60405180910390fd5b61102d838383612726565b505050565b60135481565b600f81565b60005b601080549050811015611162573373ffffffffffffffffffffffffffffffffffffffff166010828154811061109e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561114f57600160118281548110611121577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090602091828204019190066101000a81548160ff021916908315150217905550611162565b808061115a90615482565b915050611040565b50565b61116d612587565b73ffffffffffffffffffffffffffffffffffffffff1661118b611a70565b73ffffffffffffffffffffffffffffffffffffffff16146111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d890615063565b60405180910390fd5b80600e90805190602001906111f7929190613ecf565b5050565b6000611206836118ea565b8210611247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123e90614de3565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601560009054906101000a900460ff1681565b6112bb612587565b73ffffffffffffffffffffffffffffffffffffffff166112d9611a70565b73ffffffffffffffffffffffffffffffffffffffff161461132f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132690615063565b60405180910390fd5b600047905060006010805490506064600f606461134c919061531e565b8461135791906152c4565b6113619190615293565b61136b9190615293565b905060005b60108054905081101561144957601081815481106113b7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611427573d6000803e3d6000fd5b508183611434919061531e565b9250808061144190615482565b915050611370565b50601560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050501580156114b2573d6000803e3d6000fd5b505050565b6114d283838360405180602001604052806000815250611d82565b505050565b6114df612587565b73ffffffffffffffffffffffffffffffffffffffff166114fd611a70565b73ffffffffffffffffffffffffffffffffffffffff1614611553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154a90615063565b60405180910390fd5b600a60149054906101000a900460ff16156115a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159a90614e23565b60405180910390fd5b80600d90805190602001906115b9929190613ecf565b5050565b60006115c7610edc565b8210611608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ff90615103565b60405180910390fd5b60088281548110611642577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b61165c612587565b73ffffffffffffffffffffffffffffffffffffffff1661167a611a70565b73ffffffffffffffffffffffffffffffffffffffff16146116d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c790615063565b60405180910390fd5b80600c90805190602001906116e6929190613ecf565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178a90614fe3565b60405180910390fd5b80915050919050565b600c80546117a99061541f565b80601f01602080910402602001604051908101604052809291908181526020018280546117d59061541f565b80156118225780601f106117f757610100808354040283529160200191611822565b820191906000526020600020905b81548152906001019060200180831161180557829003601f168201915b505050505081565b611832612587565b73ffffffffffffffffffffffffffffffffffffffff16611850611a70565b73ffffffffffffffffffffffffffffffffffffffff16146118a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189d90615063565b60405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561195b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195290614fc3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6119aa612587565b73ffffffffffffffffffffffffffffffffffffffff166119c8611a70565b73ffffffffffffffffffffffffffffffffffffffff1614611a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1590615063565b60405180910390fd5b611a28600061298d565b565b60145481565b60118181548110611a4057600080fd5b9060005260206000209060209182820401919006915054906101000a900460ff1681565b67058d15e17628000081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611aa99061541f565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad59061541f565b8015611b225780601f10611af757610100808354040283529160200191611b22565b820191906000526020600020905b815481529060010190602001808311611b0557829003601f168201915b5050505050905090565b60176020528060005260406000206000915054906101000a900460ff1681565b611b5e611b57612587565b8383612a53565b5050565b611b6a612587565b73ffffffffffffffffffffffffffffffffffffffff16611b88611a70565b73ffffffffffffffffffffffffffffffffffffffff1614611bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd590615063565b60405180910390fd5b80600a60156101000a81548160ff02191690831515021790555050565b611c058383612bc0565b611c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3b90614f63565b60405180910390fd5b82611c50338684612c2d565b14611c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8790614f43565b60405180910390fd5b6017600082815260200190815260200160002060009054906101000a900460ff1615611cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce890614fa3565b60405180910390fd5b3467058d15e17628000085611d0691906152c4565b14611d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3d90615083565b60405180910390fd5b60016017600083815260200190815260200160002060006101000a81548160ff021916908315150217905550611d7c3385612c89565b50505050565b611d93611d8d612587565b83612648565b611dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc9906150e3565b60405180910390fd5b611dde84848484612dbf565b50505050565b6000426012541180611df857506000601254145b15611e065760009050611e49565b6000601454601354611e189190615293565b60125442611e26919061531e565b611e309190615293565b90506014548110611e4357601454611e45565b805b9150505b90565b611e54612587565b73ffffffffffffffffffffffffffffffffffffffff16611e72611a70565b73ffffffffffffffffffffffffffffffffffffffff1614611ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebf90615063565b60405180910390fd5b600a60149054906101000a900460ff1615611f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0f90614e23565b60405180910390fd5b818160109190611f29929190613f55565b50611f3682829050612e1b565b5050565b611f42612587565b73ffffffffffffffffffffffffffffffffffffffff16611f60611a70565b73ffffffffffffffffffffffffffffffffffffffff1614611fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fad90615063565b60405180910390fd5b6001601560006101000a81548160ff021916908315150217905550565b600d8054611fe09061541f565b80601f016020809104026020016040519081016040528092919081815260200182805461200c9061541f565b80156120595780601f1061202e57610100808354040283529160200191612059565b820191906000526020600020905b81548152906001019060200180831161203c57829003601f168201915b505050505081565b606061206c8261251b565b6120ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a290615123565b60405180910390fd5b600f60009054906101000a900460ff16156120f557600e600d6120cd84612f27565b6040516020016120df93929190614c38565b6040516020818303038152906040529050612123565b600c61210083612f27565b604051602001612111929190614c14565b60405160208183030381529060405290505b919050565b612130612587565b73ffffffffffffffffffffffffffffffffffffffff1661214e611a70565b73ffffffffffffffffffffffffffffffffffffffff16146121a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219b90615063565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b601081815481106121d157600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b600b5481565b60125481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e80546122c09061541f565b80601f01602080910402602001604051908101604052809291908181526020018280546122ec9061541f565b80156123395780601f1061230e57610100808354040283529160200191612339565b820191906000526020600020905b81548152906001019060200180831161231c57829003601f168201915b505050505081565b612349612587565b73ffffffffffffffffffffffffffffffffffffffff16612367611a70565b73ffffffffffffffffffffffffffffffffffffffff16146123bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b490615063565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561242d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242490614e43565b60405180910390fd5b6124368161298d565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061250457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806125145750612513826130d4565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612602836116ea565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006126538261251b565b612692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268990614f23565b60405180910390fd5b600061269d836116ea565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806126df57506126de818561221f565b5b8061271d57508373ffffffffffffffffffffffffffffffffffffffff1661270584610c56565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612746826116ea565b73ffffffffffffffffffffffffffffffffffffffff161461279c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279390614e63565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561280c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280390614ec3565b60405180910390fd5b61281783838361313e565b61282260008261258f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612872919061531e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128c9919061523d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612988838383613252565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab990614ee3565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612bb39190614d01565b60405180910390a3505050565b6000612bd5828461325790919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b6000838383604051602001612c4493929190614bd7565b60405160208183030381529060405280519060200120604051602001612c6a9190614c74565b6040516020818303038152906040528051906020012090509392505050565b600a60149054906101000a900460ff1615612cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd090614e23565b60405180910390fd5b600a60159054906101000a900460ff16612d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1f90614dc3565b60405180910390fd5b80612d31610edc565b612d3b919061523d565b600b541015612d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d76906150a3565b60405180910390fd5b60005b81811015612dba57612da7836001612d98610edc565b612da2919061523d565b61327e565b8080612db290615482565b915050612d82565b505050565b612dca848484612726565b612dd684848484613458565b612e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0c90614e03565b60405180910390fd5b50505050565b8067ffffffffffffffff811115612e5b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015612e895781602001602082028036833780820191505090505b5060119080519060200190612e9f929190613ff5565b5060005b81811015612f2357600060118281548110612ee7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090602091828204019190066101000a81548160ff0219169083151502179055508080612f1b90615482565b915050612ea3565b5050565b60606000821415612f6f576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506130cf565b600082905060005b60008214612fa1578080612f8a90615482565b915050600a82612f9a9190615293565b9150612f77565b60008167ffffffffffffffff811115612fe3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130155781602001600182028036833780820191505090505b5090505b600085146130c85760018261302e919061531e565b9150600a8561303d9190615503565b6030613049919061523d565b60f81b818381518110613085577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130c19190615293565b9450613019565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6131498383836135ef565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561318c57613187816135f4565b6131cb565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146131ca576131c9838261363d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561320e57613209816137aa565b61324d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461324c5761324b82826138ed565b5b5b505050565b505050565b6000806000613266858561396c565b91509150613273816139ef565b819250505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e590615023565b60405180910390fd5b6132f78161251b565b15613337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332e90614ea3565b60405180910390fd5b6133436000838361313e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613393919061523d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461345460008383613252565b5050565b60006134798473ffffffffffffffffffffffffffffffffffffffff16613d40565b156135e2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026134a2612587565b8786866040518563ffffffff1660e01b81526004016134c49493929190614cb5565b602060405180830381600087803b1580156134de57600080fd5b505af192505050801561350f57506040513d601f19601f8201168201806040525081019061350c91906144b7565b60015b613592573d806000811461353f576040519150601f19603f3d011682016040523d82523d6000602084013e613544565b606091505b5060008151141561358a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161358190614e03565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506135e7565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161364a846118ea565b613654919061531e565b9050600060076000848152602001908152602001600020549050818114613739576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506137be919061531e565b9050600060096000848152602001908152602001600020549050600060088381548110613814577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061385c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806138d1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006138f8836118ea565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000806041835114156139ae5760008060006020860151925060408601519150606086015160001a90506139a287828585613d63565b945094505050506139e8565b6040835114156139df5760008060208501519150604085015190506139d4868383613e70565b9350935050506139e8565b60006002915091505b9250929050565b60006004811115613a29577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613a62577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613a6d57613d3d565b60016004811115613aa7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613ae0577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b1890614d83565b60405180910390fd5b60026004811115613b5b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613b94577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bcc90614da3565b60405180910390fd5b60036004811115613c0f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613c48577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c8090614f03565b60405180910390fd5b600480811115613cc2577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613cfb577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d3390615003565b60405180910390fd5b5b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613d9e576000600391509150613e67565b601b8560ff1614158015613db65750601c8560ff1614155b15613dc8576000600491509150613e67565b600060018787878760405160008152602001604052604051613ded9493929190614d1c565b6020604051602081039080840390855afa158015613e0f573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613e5e57600060019250925050613e67565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c613eb3919061523d565b9050613ec187828885613d63565b935093505050935093915050565b828054613edb9061541f565b90600052602060002090601f016020900481019282613efd5760008555613f44565b82601f10613f1657805160ff1916838001178555613f44565b82800160010185558215613f44579182015b82811115613f43578251825591602001919060010190613f28565b5b509050613f51919061409b565b5090565b828054828255906000526020600020908101928215613fe4579160200282015b82811115613fe357823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613f75565b5b509050613ff1919061409b565b5090565b82805482825590600052602060002090601f0160209004810192821561408a5791602002820160005b8382111561405b57835183826101000a81548160ff021916908315150217905550926020019260010160208160000104928301926001030261401e565b80156140885782816101000a81549060ff021916905560010160208160000104928301926001030261405b565b505b509050614097919061409b565b5090565b5b808211156140b457600081600090555060010161409c565b5090565b60006140cb6140c684615183565b61515e565b9050828152602081018484840111156140e357600080fd5b6140ee8482856153dd565b509392505050565b6000614109614104846151b4565b61515e565b90508281526020810184848401111561412157600080fd5b61412c8482856153dd565b509392505050565b60008135905061414381615ebe565b92915050565b60008083601f84011261415b57600080fd5b8235905067ffffffffffffffff81111561417457600080fd5b60208301915083602082028301111561418c57600080fd5b9250929050565b6000813590506141a281615ed5565b92915050565b6000813590506141b781615eec565b92915050565b6000813590506141cc81615f03565b92915050565b6000815190506141e181615f03565b92915050565b600082601f8301126141f857600080fd5b81356142088482602086016140b8565b91505092915050565b600082601f83011261422257600080fd5b81356142328482602086016140f6565b91505092915050565b60008135905061424a81615f1a565b92915050565b60006020828403121561426257600080fd5b600061427084828501614134565b91505092915050565b6000806040838503121561428c57600080fd5b600061429a85828601614134565b92505060206142ab85828601614134565b9150509250929050565b6000806000606084860312156142ca57600080fd5b60006142d886828701614134565b93505060206142e986828701614134565b92505060406142fa8682870161423b565b9150509250925092565b6000806000806080858703121561431a57600080fd5b600061432887828801614134565b945050602061433987828801614134565b935050604061434a8782880161423b565b925050606085013567ffffffffffffffff81111561436757600080fd5b614373878288016141e7565b91505092959194509250565b6000806040838503121561439257600080fd5b60006143a085828601614134565b92505060206143b185828601614193565b9150509250929050565b600080604083850312156143ce57600080fd5b60006143dc85828601614134565b92505060206143ed8582860161423b565b9150509250929050565b6000806020838503121561440a57600080fd5b600083013567ffffffffffffffff81111561442457600080fd5b61443085828601614149565b92509250509250929050565b60006020828403121561444e57600080fd5b600061445c84828501614193565b91505092915050565b60006020828403121561447757600080fd5b6000614485848285016141a8565b91505092915050565b6000602082840312156144a057600080fd5b60006144ae848285016141bd565b91505092915050565b6000602082840312156144c957600080fd5b60006144d7848285016141d2565b91505092915050565b6000602082840312156144f257600080fd5b600082013567ffffffffffffffff81111561450c57600080fd5b61451884828501614211565b91505092915050565b60006020828403121561453357600080fd5b60006145418482850161423b565b91505092915050565b6000806000806080858703121561456057600080fd5b600061456e8782880161423b565b945050602061457f878288016141a8565b935050604085013567ffffffffffffffff81111561459c57600080fd5b6145a8878288016141e7565b92505060606145b9878288016141a8565b91505092959194509250565b6145ce81615352565b82525050565b6145e56145e082615352565b6154cb565b82525050565b6145f481615364565b82525050565b61460381615370565b82525050565b61461a61461582615370565b6154dd565b82525050565b600061462b826151fa565b6146358185615210565b93506146458185602086016153ec565b61464e816155f0565b840191505092915050565b600061466482615205565b61466e8185615221565b935061467e8185602086016153ec565b614687816155f0565b840191505092915050565b600061469d82615205565b6146a78185615232565b93506146b78185602086016153ec565b80840191505092915050565b600081546146d08161541f565b6146da8186615232565b945060018216600081146146f5576001811461470657614739565b60ff19831686528186019350614739565b61470f856151e5565b60005b8381101561473157815481890152600182019150602081019050614712565b838801955050505b50505092915050565b600061474f601883615221565b915061475a8261560e565b602082019050919050565b6000614772601f83615221565b915061477d82615637565b602082019050919050565b6000614795601c83615232565b91506147a082615660565b601c82019050919050565b60006147b8603183615221565b91506147c382615689565b604082019050919050565b60006147db602b83615221565b91506147e6826156d8565b604082019050919050565b60006147fe603283615221565b915061480982615727565b604082019050919050565b6000614821602883615221565b915061482c82615776565b604082019050919050565b6000614844602683615221565b915061484f826157c5565b604082019050919050565b6000614867602583615221565b915061487282615814565b604082019050919050565b600061488a602a83615221565b915061489582615863565b604082019050919050565b60006148ad601c83615221565b91506148b8826158b2565b602082019050919050565b60006148d0602483615221565b91506148db826158db565b604082019050919050565b60006148f3601983615221565b91506148fe8261592a565b602082019050919050565b6000614916602283615221565b915061492182615953565b604082019050919050565b6000614939602c83615221565b9150614944826159a2565b604082019050919050565b600061495c602c83615221565b9150614967826159f1565b604082019050919050565b600061497f603c83615221565b915061498a82615a40565b604082019050919050565b60006149a2603883615221565b91506149ad82615a8f565b604082019050919050565b60006149c5603583615221565b91506149d082615ade565b604082019050919050565b60006149e8602a83615221565b91506149f382615b2d565b604082019050919050565b6000614a0b602983615221565b9150614a1682615b7c565b604082019050919050565b6000614a2e602283615221565b9150614a3982615bcb565b604082019050919050565b6000614a51602083615221565b9150614a5c82615c1a565b602082019050919050565b6000614a74602c83615221565b9150614a7f82615c43565b604082019050919050565b6000614a97602083615221565b9150614aa282615c92565b602082019050919050565b6000614aba603383615221565b9150614ac582615cbb565b604082019050919050565b6000614add603083615221565b9150614ae882615d0a565b604082019050919050565b6000614b00602183615221565b9150614b0b82615d59565b604082019050919050565b6000614b23603183615221565b9150614b2e82615da8565b604082019050919050565b6000614b46602c83615221565b9150614b5182615df7565b604082019050919050565b6000614b69602783615221565b9150614b7482615e46565b604082019050919050565b6000614b8c600183615232565b9150614b9782615e95565b600182019050919050565b614bab816153c6565b82525050565b614bc2614bbd826153c6565b6154f9565b82525050565b614bd1816153d0565b82525050565b6000614be382866145d4565b601482019150614bf38285614bb1565b602082019150614c038284614609565b602082019150819050949350505050565b6000614c2082856146c3565b9150614c2c8284614692565b91508190509392505050565b6000614c4482866146c3565b9150614c5082856146c3565b9150614c5b82614b7f565b9150614c678284614692565b9150819050949350505050565b6000614c7f82614788565b9150614c8b8284614609565b60208201915081905092915050565b6000602082019050614caf60008301846145c5565b92915050565b6000608082019050614cca60008301876145c5565b614cd760208301866145c5565b614ce46040830185614ba2565b8181036060830152614cf68184614620565b905095945050505050565b6000602082019050614d1660008301846145eb565b92915050565b6000608082019050614d3160008301876145fa565b614d3e6020830186614bc8565b614d4b60408301856145fa565b614d5860608301846145fa565b95945050505050565b60006020820190508181036000830152614d7b8184614659565b905092915050565b60006020820190508181036000830152614d9c81614742565b9050919050565b60006020820190508181036000830152614dbc81614765565b9050919050565b60006020820190508181036000830152614ddc816147ab565b9050919050565b60006020820190508181036000830152614dfc816147ce565b9050919050565b60006020820190508181036000830152614e1c816147f1565b9050919050565b60006020820190508181036000830152614e3c81614814565b9050919050565b60006020820190508181036000830152614e5c81614837565b9050919050565b60006020820190508181036000830152614e7c8161485a565b9050919050565b60006020820190508181036000830152614e9c8161487d565b9050919050565b60006020820190508181036000830152614ebc816148a0565b9050919050565b60006020820190508181036000830152614edc816148c3565b9050919050565b60006020820190508181036000830152614efc816148e6565b9050919050565b60006020820190508181036000830152614f1c81614909565b9050919050565b60006020820190508181036000830152614f3c8161492c565b9050919050565b60006020820190508181036000830152614f5c8161494f565b9050919050565b60006020820190508181036000830152614f7c81614972565b9050919050565b60006020820190508181036000830152614f9c81614995565b9050919050565b60006020820190508181036000830152614fbc816149b8565b9050919050565b60006020820190508181036000830152614fdc816149db565b9050919050565b60006020820190508181036000830152614ffc816149fe565b9050919050565b6000602082019050818103600083015261501c81614a21565b9050919050565b6000602082019050818103600083015261503c81614a44565b9050919050565b6000602082019050818103600083015261505c81614a67565b9050919050565b6000602082019050818103600083015261507c81614a8a565b9050919050565b6000602082019050818103600083015261509c81614aad565b9050919050565b600060208201905081810360008301526150bc81614ad0565b9050919050565b600060208201905081810360008301526150dc81614af3565b9050919050565b600060208201905081810360008301526150fc81614b16565b9050919050565b6000602082019050818103600083015261511c81614b39565b9050919050565b6000602082019050818103600083015261513c81614b5c565b9050919050565b60006020820190506151586000830184614ba2565b92915050565b6000615168615179565b90506151748282615451565b919050565b6000604051905090565b600067ffffffffffffffff82111561519e5761519d6155c1565b5b6151a7826155f0565b9050602081019050919050565b600067ffffffffffffffff8211156151cf576151ce6155c1565b5b6151d8826155f0565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000615248826153c6565b9150615253836153c6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561528857615287615534565b5b828201905092915050565b600061529e826153c6565b91506152a9836153c6565b9250826152b9576152b8615563565b5b828204905092915050565b60006152cf826153c6565b91506152da836153c6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561531357615312615534565b5b828202905092915050565b6000615329826153c6565b9150615334836153c6565b92508282101561534757615346615534565b5b828203905092915050565b600061535d826153a6565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561540a5780820151818401526020810190506153ef565b83811115615419576000848401525b50505050565b6000600282049050600182168061543757607f821691505b6020821081141561544b5761544a615592565b5b50919050565b61545a826155f0565b810181811067ffffffffffffffff82111715615479576154786155c1565b5b80604052505050565b600061548d826153c6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156154c0576154bf615534565b5b600182019050919050565b60006154d6826154e7565b9050919050565b6000819050919050565b60006154f282615601565b9050919050565b6000819050919050565b600061550e826153c6565b9150615519836153c6565b92508261552957615528615563565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f506978656c426c6f73736f6d436f6c6c656374696f6e3a20636f6c6c6563746960008201527f6f6e206d75737420626520616374697665000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f506978656c426c6f73736f6d436f6c6c656374696f6e3a204f6e6c792069662060008201527f756e6c6f636b6564000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f506978656c426c6f73736f6d53696d706c6552657665616c3a2052657665616c60008201527f206973206c6f636b656400000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f506978656c426c6f73736f6d47656e65736973436f6c6c656374696f6e3a204860008201527f617368206d69736d617463680000000000000000000000000000000000000000602082015250565b7f506978656c426c6f73736f6d47656e65736973436f6c6c656374696f6e3a204460008201527f6972656374206d696e74696e67206973206e6f7420616c6c6f77656400000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f506978656c426c6f73736f6d47656e65736973436f6c6c656374696f6e3a204e60008201527f6f6e63652077617320616c726561647920757365640000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f506978656c426c6f73736f6d47656e65736973436f6c6c656374696f6e3a204560008201527f746865722076616c7565206d69736d6174636800000000000000000000000000602082015250565b7f506978656c426c6f73736f6d436f6c6c656374696f6e3a2043616e6e6f74206560008201527f7863656564206d617820737570706c7900000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a2055524920717565727920666f72206e6f6e6578697374656e60008201527f7420746f6b656e00000000000000000000000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b615ec781615352565b8114615ed257600080fd5b50565b615ede81615364565b8114615ee957600080fd5b50565b615ef581615370565b8114615f0057600080fd5b50565b615f0c8161537a565b8114615f1757600080fd5b50565b615f23816153c6565b8114615f2e57600080fd5b5056fea264697066735822122059a6820e52328174b6f65ecad468384188fcfcfa8a67e92551b2f8fe0574cafb64736f6c63430008010033

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

00000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000012c00000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000001baf80000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000054932024cfca2931c89797a918fa48ecdd77df3c000000000000000000000000648469898de6e8ab7b693cb5cedcd04ff139c50e0000000000000000000000000000000000000000000000000000000000000015506978656c426c6f73736f6d3a2047656e6573697300000000000000000000000000000000000000000000000000000000000000000000000000000000000005504247454e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002c68747470733a2f2f67656e657369732e706978656c626c6f73736f6d2e696f2f6e66742f6d61696e6e65742f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007697066733a2f2f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000d3689e018d6a182d2806fa75b7bc580103f1b071000000000000000000000000d6ee002752c995a118e42611baf52aba7cc1fef1000000000000000000000000b0e984d4bf1830dcb6c8c4e0f81d0869d2f037b1000000000000000000000000f33654f85ba6b567f8841c8c954635b27e14c49d00000000000000000000000095d89b7069d3e401efe987a94e4cc4c64af746fb0000000000000000000000004f81b90b3d62592cdc20ed713503c608fd1eb6440000000000000000000000000c929081aae9480413f126bf7d798f34c60158df000000000000000000000000cc6f3815128b7b4655b1487fd521a79af45fa1af000000000000000000000000e726d0598cfbb879459451b9df5a481add1f36c200000000000000000000000045e8bb296136f08cc7fca0281efcb18b971f0314000000000000000000000000f2b4a725e943b54cdabada2c9ae2727874a49eaa000000000000000000000000d03072838feec992c647406a9a51190fe6322075

-----Decoded View---------------
Arg [0] : _name (string): PixelBlossom: Genesis
Arg [1] : _symbol (string): PBGEN
Arg [2] : _maxSupply (uint256): 300
Arg [3] : _baseURI (string): https://genesis.pixelblossom.io/nft/mainnet/
Arg [4] : _ipfsBaseURI (string): ipfs://
Arg [5] : _artists (address[]): 0xd3689e018d6A182d2806Fa75B7Bc580103f1B071,0xD6EE002752c995A118E42611baF52abA7cC1fEf1,0xb0e984D4bf1830dcB6C8c4e0F81D0869D2f037b1,0xF33654F85bA6B567f8841C8c954635b27E14c49D,0x95D89b7069D3e401EfE987a94e4cC4C64Af746Fb,0x4F81b90B3d62592cDc20ED713503c608FD1eb644,0x0C929081aae9480413F126BF7d798F34c60158dF,0xCC6F3815128b7B4655B1487Fd521A79af45fA1af,0xE726d0598Cfbb879459451B9Df5a481add1f36C2,0x45e8bB296136f08cC7fCa0281EFcb18b971F0314,0xf2B4A725E943B54cdABada2c9Ae2727874a49eaa,0xd03072838FEeC992C647406A9A51190fE6322075
Arg [6] : _revealInterval (uint256): 1814400
Arg [7] : _revealStates (uint256): 12
Arg [8] : __devAddress (address): 0x54932024cfca2931c89797A918FA48ECDD77Df3C
Arg [9] : __signer (address): 0x648469898DE6e8Ab7b693Cb5cEdcd04Ff139C50E

-----Encoded View---------------
32 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [2] : 000000000000000000000000000000000000000000000000000000000000012c
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000220
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000260
Arg [6] : 00000000000000000000000000000000000000000000000000000000001baf80
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [8] : 00000000000000000000000054932024cfca2931c89797a918fa48ecdd77df3c
Arg [9] : 000000000000000000000000648469898de6e8ab7b693cb5cedcd04ff139c50e
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [11] : 506978656c426c6f73736f6d3a2047656e657369730000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [13] : 504247454e000000000000000000000000000000000000000000000000000000
Arg [14] : 000000000000000000000000000000000000000000000000000000000000002c
Arg [15] : 68747470733a2f2f67656e657369732e706978656c626c6f73736f6d2e696f2f
Arg [16] : 6e66742f6d61696e6e65742f0000000000000000000000000000000000000000
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [18] : 697066733a2f2f00000000000000000000000000000000000000000000000000
Arg [19] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [20] : 000000000000000000000000d3689e018d6a182d2806fa75b7bc580103f1b071
Arg [21] : 000000000000000000000000d6ee002752c995a118e42611baf52aba7cc1fef1
Arg [22] : 000000000000000000000000b0e984d4bf1830dcb6c8c4e0f81d0869d2f037b1
Arg [23] : 000000000000000000000000f33654f85ba6b567f8841c8c954635b27e14c49d
Arg [24] : 00000000000000000000000095d89b7069d3e401efe987a94e4cc4c64af746fb
Arg [25] : 0000000000000000000000004f81b90b3d62592cdc20ed713503c608fd1eb644
Arg [26] : 0000000000000000000000000c929081aae9480413f126bf7d798f34c60158df
Arg [27] : 000000000000000000000000cc6f3815128b7b4655b1487fd521a79af45fa1af
Arg [28] : 000000000000000000000000e726d0598cfbb879459451b9df5a481add1f36c2
Arg [29] : 00000000000000000000000045e8bb296136f08cc7fca0281efcb18b971f0314
Arg [30] : 000000000000000000000000f2b4a725e943b54cdabada2c9ae2727874a49eaa
Arg [31] : 000000000000000000000000d03072838feec992c647406a9a51190fe6322075


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.