ETH Price: $3,090.94 (+0.98%)
Gas: 5 Gwei

Token

Doglins (DGLNS)
 

Overview

Max Total Supply

404 DGLNS

Holders

384

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
nishishi.eth
Balance
1 DGLNS
0xfd1c24e5ec2efd6586867e355ac2e146cdd498a6
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DoglinsNFT

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 19 : DoglinsNFT.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.13;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "./lib/Administration.sol";
import "./lib/IENERGY.sol";
import "./lib/IEnergySystem.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "./lib/operator_filter/OperatorFilterer.sol";


// ▓█████▄  ▒█████    ▄████  ██▓     ██▓ ███▄    █   ██████ 
// ▒██▀ ██▌▒██▒  ██▒ ██▒ ▀█▒▓██▒    ▓██▒ ██ ▀█   █ ▒██    ▒ 
// ░██   █▌▒██░  ██▒▒██░▄▄▄░▒██░    ▒██▒▓██  ▀█ ██▒░ ▓██▄   
// ░▓█▄   ▌▒██   ██░░▓█  ██▓▒██░    ░██░▓██▒  ▐▌██▒  ▒   ██▒
// ░▒████▓ ░ ████▓▒░░▒▓███▀▒░██████▒░██░▒██░   ▓██░▒██████▒▒
//  ▒▒▓  ▒ ░ ▒░▒░▒░  ░▒   ▒ ░ ▒░▓  ░░▓  ░ ▒░   ▒ ▒ ▒ ▒▓▒ ▒ ░
//  ░ ▒  ▒   ░ ▒ ▒░   ░   ░ ░ ░ ▒  ░ ▒ ░░ ░░   ░ ▒░░ ░▒  ░ ░
//  ░ ░  ░ ░ ░ ░ ▒  ░ ░   ░   ░ ░    ▒ ░   ░   ░ ░ ░  ░  ░  
//    ░        ░ ░        ░     ░  ░ ░           ░       ░  
//  ░                                                       


contract DoglinsNFT is ERC721, Administration, OperatorFilterer, ERC2981 { 

    uint public price = 0.009 ether;
    uint public maxSupply = 7000;
    uint public maxTx = 10;
    uint public totalSupply = 0;

    mapping(address => bool) public free;
    bool public mintOpen = false;

    bool public operatorFilteringEnabled = true;

    address private _signer;
    address public energySystemAddress;
    address public energyAddress;
    
    mapping(uint => uint) public rerollCooldown;
    mapping(uint => uint) public energyTime;

    string internal baseTokenURI;

    modifier onlyOwnerOf(uint tokenId){
        require(ownerOf(tokenId) == _msgSender(), "Ownership: caller is not the owner");
        _;
    }
    
    constructor(string memory tokenURI_, address signer_) ERC721("Doglins", "DGLNS") {
        setSigner(signer_);
        setBaseTokenURI(tokenURI_);
        setRoyaltyInfo(payable(_msgSender()),500);
        _registerForOperatorFiltering(address(0), false);
    }

    function isAllowed(bytes calldata signature_, string memory data_) private view returns (bool) {
        return ECDSA.recover(
                ECDSA.toEthSignedMessageHash(
                    keccak256(abi.encodePacked(msg.sender,data_))), signature_
                ) == _signer;
    }

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

    function buyTo(address to, uint qty) external onlyAdmin {
        _mintTo(to, qty, false);
    }

    function buyWL(bytes calldata signature_, uint qty, bool boost_) external payable {
        require(mintOpen, "Mint is closed");
        require(isAllowed(signature_, "_wl"), "Not allowed");
        bool freeAvailable = !free[_msgSender()];
        uint finalPrice = (qty * price) - (freeAvailable ? price : 0);
        require(finalPrice <= msg.value, "wrong value");
        if(freeAvailable){
            free[_msgSender()] = true;
        }
        _mintTo(_msgSender(),qty,boost_);
    }

    function buy(uint qty, bool boost_) external payable {
        require(qty * price <= msg.value, "wrong value");
        require(mintOpen, "Mint is closed");
        _mintTo(_msgSender(),qty,boost_);
    }

    function _mintTo(address to, uint qty, bool boost_) internal {
        require(qty + totalSupply <= maxSupply, "SUPPLY: Value exceeds totalSupply");
        uint[] memory tokenIds = new uint[](qty);
        for(uint i = 0; i < qty; i++){
            totalSupply++;
            _mint(to, totalSupply);
            tokenIds[i] = totalSupply;
        }
        if(boost_){
            IEnergySystem(energySystemAddress).boostBatch(tokenIds);
        }
    }

    function tokensByOwner(address addr) external view returns (uint256[] memory)
    {
        uint256 count;
        uint256 walletBalance = balanceOf(addr);
        uint256[] memory tokens = new uint256[](walletBalance);

        uint256 i;
        for (; i < maxSupply; ) {
            // early break if all tokens found
            if (count == walletBalance) {
                return tokens;
            }

            // exists will prevent throw if burned token
            if (_exists(i) && ownerOf(i) == addr) {
                tokens[count] = i;
                count++;
            }

            ++i;
        }
        return tokens;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override {
        if(IEnergySystem(energySystemAddress).boosted(tokenId)){
            revert("ERROR: this NFT is boosted. Unboost it before transfer.");
        }
        if (from != address(0)) {
            IENERGY(energyAddress).stopDripping(from, 1);
        }

        if (to != address(0)) {
            IENERGY(energyAddress).startDripping(to, 1);
        }
        super._beforeTokenTransfer(from, to, tokenId);      
    }
    
    function withdraw() external onlyOwner {
        payable(_msgSender()).transfer(address(this).balance);
    }

    function toggleMintOpen() external onlyOwner {
        mintOpen = !mintOpen;
    }
   
    function setPrice(uint newPrice) external onlyOwner {
        price = newPrice;
    }
    
    function setBaseTokenURI(string memory uri_) public onlyOwner {
        baseTokenURI = uri_;
    }
    
    function setMaxSupply(uint newSupply) external onlyOwner {
        maxSupply = newSupply;
    }
    
    function setMaxTx(uint newMax) external onlyOwner {
        maxTx = newMax;
    }

    function setEnergySystemAddress(address newAddress) external onlyOwner {
        energySystemAddress = newAddress;
    }

    function setEnergyAddress(address newAddress) external onlyOwner {
        energyAddress = newAddress;
    }

    function setEnergyAndSystemAddresses(address energy_, address system_) external onlyOwner {
        energySystemAddress = system_;
        energyAddress = energy_;
    }

    function setSigner(address new_) public onlyOwner {
        _signer = new_;
    }

    // OPERATOR FILTER

    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }

    function setOperatorFilteringEnabled(bool value) public onlyOwner {
        operatorFilteringEnabled = value;
    }

    function _operatorFilteringEnabled() internal view virtual override returns (bool) {
        return operatorFilteringEnabled;
    }

    // IERC2981

    function setRoyaltyInfo(address payable receiver, uint96 numerator) public onlyOwner {
        _setDefaultRoyalty(receiver, numerator);
    }

    // ERC165

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC2981) returns (bool) {
        return ERC721.supportsInterface(interfaceId) || ERC2981.supportsInterface(interfaceId);
    }
    
}

File 2 of 19 : OperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

/// @notice Optimized and flexible operator filterer to abide to OpenSea's
/// mandatory on-chain royalty enforcement in order for new collections to
/// receive royalties.
/// For more information, see:
/// See: https://github.com/ProjectOpenSea/operator-filter-registry
abstract contract OperatorFilterer {
    /// @dev The default OpenSea operator blocklist subscription.
    address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

    /// @dev The OpenSea operator filter registry.
    address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E;

    /// @dev Registers the current contract to OpenSea's operator filter,
    /// and subscribe to the default OpenSea operator blocklist.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering() internal virtual {
        _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true);
    }

    /// @dev Registers the current contract to OpenSea's operator filter.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe)
        internal
        virtual
    {
        /// @solidity memory-safe-assembly
        assembly {
            let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`.

            // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty.
            subscriptionOrRegistrantToCopy := shr(96, shl(96, subscriptionOrRegistrantToCopy))
            // prettier-ignore
            for {} iszero(subscribe) {} {
                if iszero(subscriptionOrRegistrantToCopy) {
                    functionSelector := 0x4420e486 // `register(address)`.
                    break
                }
                functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`.
                break
            }
            // Store the function selector.
            mstore(0x00, shl(224, functionSelector))
            // Store the `address(this)`.
            mstore(0x04, address())
            // Store the `subscriptionOrRegistrantToCopy`.
            mstore(0x24, subscriptionOrRegistrantToCopy)
            // Register into the registry.
            pop(call(gas(), _OPERATOR_FILTER_REGISTRY, 0, 0x00, 0x44, 0x00, 0x00))
            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, because of Solidity's memory size limits.
            mstore(0x24, 0)
        }
    }

    /// @dev Modifier to guard a function and revert if the caller is a blocked operator.
    modifier onlyAllowedOperator(address from) virtual {
        if (from != msg.sender) {
            if (!_isPriorityOperator(msg.sender)) {
                if (_operatorFilteringEnabled()) _revertIfBlocked(msg.sender);
            }
        }
        _;
    }

    /// @dev Modifier to guard a function from approving a blocked operator..
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        if (!_isPriorityOperator(operator)) {
            if (_operatorFilteringEnabled()) _revertIfBlocked(operator);
        }
        _;
    }

    /// @dev Helper function that reverts if the `operator` is blocked by the registry.
    function _revertIfBlocked(address operator) private view {
        /// @solidity memory-safe-assembly
        assembly {
            // Store the function selector of `isOperatorAllowed(address,address)`,
            // shifted left by 6 bytes, which is enough for 8tb of memory.
            // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL).
            mstore(0x00, 0xc6171134001122334455)
            // Store the `address(this)`.
            mstore(0x1a, address())
            // Store the `operator`.
            mstore(0x3a, operator)

            // `isOperatorAllowed` always returns true if it does not revert.
            if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) {
                // Bubble up the revert if the staticcall reverts.
                returndatacopy(0x00, 0x00, returndatasize())
                revert(0x00, returndatasize())
            }

            // We'll skip checking if `from` is inside the blacklist.
            // Even though that can block transferring out of wrapper contracts,
            // we don't want tokens to be stuck.

            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, if less than 8tb of memory is used.
            mstore(0x3a, 0)
        }
    }

    /// @dev For deriving contracts to override, so that operator filtering
    /// can be turned on / off.
    /// Returns true by default.
    function _operatorFilteringEnabled() internal view virtual returns (bool) {
        return true;
    }

    /// @dev For deriving contracts to override, so that preferred marketplaces can
    /// skip operator filtering, helping users save gas.
    /// Returns false for all inputs by default.
    function _isPriorityOperator(address) internal view virtual returns (bool) {
        return false;
    }
}

File 3 of 19 : ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

import "../../interfaces/IERC2981.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

File 4 of 19 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.3) (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) {
        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.
            /// @solidity memory-safe-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 {
            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 5 of 19 : IEnergySystem.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IEnergySystem {
    function startEarning(address from) external;
    function stopEarning(address from) external;
    function boostBatch(uint[] calldata tokenIds) external;
    function unboostBatch(uint[] calldata tokenIds) external;
    function startTime(uint[] calldata tokenIds) external;
    function boost(uint tokenId) external;
    function unboost(uint tokenId) external;
    function boosted(uint tokenId) external returns (bool);
}

File 6 of 19 : IENERGY.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

interface IENERGY is IERC20 {
    function mint(uint256 amount) external;

    function startDripping(address addr, uint128 multiplier) external;

    function stopDripping(address addr, uint128 multiplier) external;

    function burn(address from, uint256 value) external;

    function burnSystem(address from, uint256 value) external;
}

File 7 of 19 : Administration.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.6;
import "@openzeppelin/contracts/access/Ownable.sol";

contract Administration is Ownable {
    
    event SetAdmin(address indexed admin, bool active);
    
    mapping (address => bool) private admins;
    
    modifier onlyAdmin(){
        require(admins[_msgSender()] || owner() == _msgSender(), "Admin: caller is not an admin");
        _;
    }
    
    function setAdmin(address admin, bool active) external onlyOwner {
        admins[admin] = active;
        emit SetAdmin(admin, active);
    }
    
}

File 8 of 19 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token 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: caller is not token 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) {
        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 an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    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 19 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 10 of 19 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 11 of 19 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 12 of 19 : 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 13 of 19 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 14 of 19 : 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 19 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 16 of 19 : 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 17 of 19 : 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 18 of 19 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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 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 19 of 19 : 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"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"tokenURI_","type":"string"},{"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":"admin","type":"address"},{"indexed":false,"internalType":"bool","name":"active","type":"bool"}],"name":"SetAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"bool","name":"boost_","type":"bool"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"buyTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature_","type":"bytes"},{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"bool","name":"boost_","type":"bool"}],"name":"buyWL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"energyAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"energySystemAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"energyTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"free","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rerollCooldown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"address","name":"admin","type":"address"},{"internalType":"bool","name":"active","type":"bool"}],"name":"setAdmin","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":"string","name":"uri_","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setEnergyAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"energy_","type":"address"},{"internalType":"address","name":"system_","type":"address"}],"name":"setEnergyAndSystemAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setEnergySystemAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"receiver","type":"address"},{"internalType":"uint96","name":"numerator","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"new_","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMintOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"tokensByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052661ff973cafa8000600a55611b58600b55600a600c556000600d556000600f60006101000a81548160ff0219169083151502179055506001600f60016101000a81548160ff0219169083151502179055503480156200006257600080fd5b5060405162005f4038038062005f40833981810160405281019062000088919062000898565b6040518060400160405280600781526020017f446f676c696e73000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f44474c4e5300000000000000000000000000000000000000000000000000000081525081600090805190602001906200010c929190620005e6565b50806001908051906020019062000125929190620005e6565b505050620001486200013c620001a860201b60201c565b620001b060201b60201c565b62000159816200027660201b60201c565b6200016a82620002ca60201b60201c565b6200018d6200017e620001a860201b60201c565b6101f4620002f660201b60201c565b620001a06000806200031c60201b60201c565b505062000aef565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002866200037e60201b60201c565b80600f60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b620002da6200037e60201b60201c565b8060149080519060200190620002f2929190620005e6565b5050565b620003066200037e60201b60201c565b6200031882826200040f60201b60201c565b5050565b637d3e3dbe8260601b60601c9250816200034b57826200034357634420e48690506200034b565b63a0af290390505b8060e01b600052306004528260245260008060446000806daaeb6d7670e522a718067333cd4e5af1506000602452505050565b6200038e620001a860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003b4620005b260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200040d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000404906200095f565b60405180910390fd5b565b6200041f620005dc60201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111562000480576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200047790620009f7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004f2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004e99062000a69565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000612710905090565b828054620005f49062000aba565b90600052602060002090601f01602090048101928262000618576000855562000664565b82601f106200063357805160ff191683800117855562000664565b8280016001018555821562000664579182015b828111156200066357825182559160200191906001019062000646565b5b50905062000673919062000677565b5090565b5b808211156200069257600081600090555060010162000678565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620006ff82620006b4565b810181811067ffffffffffffffff82111715620007215762000720620006c5565b5b80604052505050565b60006200073662000696565b9050620007448282620006f4565b919050565b600067ffffffffffffffff821115620007675762000766620006c5565b5b6200077282620006b4565b9050602081019050919050565b60005b838110156200079f57808201518184015260208101905062000782565b83811115620007af576000848401525b50505050565b6000620007cc620007c68462000749565b6200072a565b905082815260208101848484011115620007eb57620007ea620006af565b5b620007f88482856200077f565b509392505050565b600082601f830112620008185762000817620006aa565b5b81516200082a848260208601620007b5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620008608262000833565b9050919050565b620008728162000853565b81146200087e57600080fd5b50565b600081519050620008928162000867565b92915050565b60008060408385031215620008b257620008b1620006a0565b5b600083015167ffffffffffffffff811115620008d357620008d2620006a5565b5b620008e18582860162000800565b9250506020620008f48582860162000881565b9150509250929050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000947602083620008fe565b915062000954826200090f565b602082019050919050565b600060208201905081810360008301526200097a8162000938565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000620009df602a83620008fe565b9150620009ec8262000981565b604082019050919050565b6000602082019050818103600083015262000a1281620009d0565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600062000a51601983620008fe565b915062000a5e8262000a19565b602082019050919050565b6000602082019050818103600083015262000a848162000a42565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ad357607f821691505b60208210810362000ae95762000ae862000a8b565b5b50919050565b6154418062000aff6000396000f3fe6080604052600436106102725760003560e01c806367986daf1161014f578063a035b1fe116100c1578063c87b56dd1161007a578063c87b56dd14610919578063c9b5bb1714610956578063d5abeb0114610993578063e985e9c5146109be578063f2fde38b146109fb578063fb796e6c14610a2457610272565b8063a035b1fe1461080d578063a22cb46514610838578063b3d90cdc14610861578063b7c0b8e81461089e578063b88d4fde146108c7578063bc337182146108f057610272565b8063715018a611610113578063715018a6146107235780637437681e1461073a5780637abfc1fc146107655780638da5cb5b1461078e57806391b7f5ed146107b957806395d89b41146107e257610272565b806367986daf146106615780636b444ab6146106785780636c19e783146106945780636f8b44b0146106bd57806370a08231146106e657610272565b80632a55205a116101e85780634b0bddd2116101ac5780634b0bddd2146105415780634dc8e9bd1461056a5780634f467c36146105a757806357676139146105d25780635c196ceb146105fb5780636352211e1461062457610272565b80632a55205a1461047e57806330176e13146104bc57806331c26b11146104e55780633ccfd60b1461050157806342842e0e1461051857610272565b8063095ea7b31161023a578063095ea7b31461037057806309bd4c31146103995780630d381a28146103c257806318160ddd146103ff57806323b872dd1461042a57806324bbd0491461045357610272565b806301ffc9a71461027757806302fa7c47146102b457806306fdde03146102dd578063081812fc1461030857806308acbe8214610345575b600080fd5b34801561028357600080fd5b5061029e600480360381019061029991906137ce565b610a4f565b6040516102ab9190613816565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d691906138d3565b610a71565b005b3480156102e957600080fd5b506102f2610a87565b6040516102ff91906139ac565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a9190613a04565b610b19565b60405161033c9190613a52565b60405180910390f35b34801561035157600080fd5b5061035a610b5f565b6040516103679190613a52565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190613a99565b610b85565b005b3480156103a557600080fd5b506103c060048036038101906103bb9190613a99565b610bba565b005b3480156103ce57600080fd5b506103e960048036038101906103e49190613ad9565b610ca1565b6040516103f69190613bc4565b60405180910390f35b34801561040b57600080fd5b50610414610db8565b6040516104219190613bf5565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c9190613c10565b610dbe565b005b34801561045f57600080fd5b50610468610e29565b6040516104759190613816565b60405180910390f35b34801561048a57600080fd5b506104a560048036038101906104a09190613c63565b610e3c565b6040516104b3929190613ca3565b60405180910390f35b3480156104c857600080fd5b506104e360048036038101906104de9190613e01565b611026565b005b6104ff60048036038101906104fa9190613e76565b611048565b005b34801561050d57600080fd5b506105166110fd565b005b34801561052457600080fd5b5061053f600480360381019061053a9190613c10565b611155565b005b34801561054d57600080fd5b5061056860048036038101906105639190613eb6565b6111c0565b005b34801561057657600080fd5b50610591600480360381019061058c9190613a04565b611271565b60405161059e9190613bf5565b60405180910390f35b3480156105b357600080fd5b506105bc611289565b6040516105c99190613a52565b60405180910390f35b3480156105de57600080fd5b506105f960048036038101906105f49190613ef6565b6112af565b005b34801561060757600080fd5b50610622600480360381019061061d9190613ad9565b61133d565b005b34801561063057600080fd5b5061064b60048036038101906106469190613a04565b611389565b6040516106589190613a52565b60405180910390f35b34801561066d57600080fd5b5061067661143a565b005b610692600480360381019061068d9190613f96565b61146e565b005b3480156106a057600080fd5b506106bb60048036038101906106b69190613ad9565b611684565b005b3480156106c957600080fd5b506106e460048036038101906106df9190613a04565b6116d0565b005b3480156106f257600080fd5b5061070d60048036038101906107089190613ad9565b6116e2565b60405161071a9190613bf5565b60405180910390f35b34801561072f57600080fd5b50610738611799565b005b34801561074657600080fd5b5061074f6117ad565b60405161075c9190613bf5565b60405180910390f35b34801561077157600080fd5b5061078c60048036038101906107879190613ad9565b6117b3565b005b34801561079a57600080fd5b506107a36117ff565b6040516107b09190613a52565b60405180910390f35b3480156107c557600080fd5b506107e060048036038101906107db9190613a04565b611829565b005b3480156107ee57600080fd5b506107f761183b565b60405161080491906139ac565b60405180910390f35b34801561081957600080fd5b506108226118cd565b60405161082f9190613bf5565b60405180910390f35b34801561084457600080fd5b5061085f600480360381019061085a9190613eb6565b6118d3565b005b34801561086d57600080fd5b5061088860048036038101906108839190613a04565b611908565b6040516108959190613bf5565b60405180910390f35b3480156108aa57600080fd5b506108c560048036038101906108c0919061400a565b611920565b005b3480156108d357600080fd5b506108ee60048036038101906108e991906140d8565b611945565b005b3480156108fc57600080fd5b5061091760048036038101906109129190613a04565b6119b2565b005b34801561092557600080fd5b50610940600480360381019061093b9190613a04565b6119c4565b60405161094d91906139ac565b60405180910390f35b34801561096257600080fd5b5061097d60048036038101906109789190613ad9565b611a2c565b60405161098a9190613816565b60405180910390f35b34801561099f57600080fd5b506109a8611a4c565b6040516109b59190613bf5565b60405180910390f35b3480156109ca57600080fd5b506109e560048036038101906109e09190613ef6565b611a52565b6040516109f29190613816565b60405180910390f35b348015610a0757600080fd5b50610a226004803603810190610a1d9190613ad9565b611ae6565b005b348015610a3057600080fd5b50610a39611b69565b604051610a469190613816565b60405180910390f35b6000610a5a82611b7c565b80610a6a5750610a6982611c5e565b5b9050919050565b610a79611cd8565b610a838282611d56565b5050565b606060008054610a969061418a565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac29061418a565b8015610b0f5780601f10610ae457610100808354040283529160200191610b0f565b820191906000526020600020905b815481529060010190602001808311610af257829003601f168201915b5050505050905090565b6000610b2482611eeb565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b81610b8f81611f36565b610bab57610b9b611f3d565b15610baa57610ba981611f54565b5b5b610bb58383611f98565b505050565b60076000610bc66120af565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610c525750610c1c6120af565b73ffffffffffffffffffffffffffffffffffffffff16610c3a6117ff565b73ffffffffffffffffffffffffffffffffffffffff16145b610c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8890614207565b60405180910390fd5b610c9d828260006120b7565b5050565b6060600080610caf846116e2565b905060008167ffffffffffffffff811115610ccd57610ccc613cd6565b5b604051908082528060200260200182016040528015610cfb5781602001602082028036833780820191505090505b50905060005b600b54811015610dab57828403610d1e5781945050505050610db3565b610d2781612255565b8015610d6657508573ffffffffffffffffffffffffffffffffffffffff16610d4e82611389565b73ffffffffffffffffffffffffffffffffffffffff16145b15610d9a5780828581518110610d7f57610d7e614227565b5b6020026020010181815250508380610d9690614285565b9450505b80610da490614285565b9050610d01565b819450505050505b919050565b600d5481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e1857610dfb33611f36565b610e1757610e07611f3d565b15610e1657610e1533611f54565b5b5b5b610e238484846122c1565b50505050565b600f60009054906101000a900460ff1681565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610fd15760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610fdb612321565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff168661100791906142cd565b6110119190614356565b90508160000151819350935050509250929050565b61102e611cd8565b80601490805190602001906110449291906136bf565b5050565b34600a548361105791906142cd565b1115611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f906143d3565b60405180910390fd5b600f60009054906101000a900460ff166110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de9061443f565b60405180910390fd5b6110f96110f26120af565b83836120b7565b5050565b611105611cd8565b61110d6120af565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611152573d6000803e3d6000fd5b50565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111af5761119233611f36565b6111ae5761119e611f3d565b156111ad576111ac33611f54565b5b5b5b6111ba84848461232b565b50505050565b6111c8611cd8565b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f55a5194bc0174fcaf12b2978bef43911466bf63b34db8d1dd1a0d5dcd5c41bea826040516112659190613816565b60405180910390a25050565b60126020528060005260406000206000915090505481565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6112b7611cd8565b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b611345611cd8565b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611431576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611428906144ab565b60405180910390fd5b80915050919050565b611442611cd8565b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600f60009054906101000a900460ff166114bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b49061443f565b60405180910390fd5b6114fd84846040518060400160405280600381526020017f5f776c000000000000000000000000000000000000000000000000000000000081525061234b565b61153c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153390614517565b60405180910390fd5b6000600e600061154a6120af565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161590506000816115a35760006115a7565b600a545b600a54856115b591906142cd565b6115bf9190614537565b905034811115611604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fb906143d3565b60405180910390fd5b811561166a576001600e60006116186120af565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b61167c6116756120af565b85856120b7565b505050505050565b61168c611cd8565b80600f60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6116d8611cd8565b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611752576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611749906145dd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117a1611cd8565b6117ab6000612424565b565b600c5481565b6117bb611cd8565b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611831611cd8565b80600a8190555050565b60606001805461184a9061418a565b80601f01602080910402602001604051908101604052809291908181526020018280546118769061418a565b80156118c35780601f10611898576101008083540402835291602001916118c3565b820191906000526020600020905b8154815290600101906020018083116118a657829003601f168201915b5050505050905090565b600a5481565b816118dd81611f36565b6118f9576118e9611f3d565b156118f8576118f781611f54565b5b5b61190383836124ea565b505050565b60136020528060005260406000206000915090505481565b611928611cd8565b80600f60016101000a81548160ff02191690831515021790555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461199f5761198233611f36565b61199e5761198e611f3d565b1561199d5761199c33611f54565b5b5b5b6119ab85858585612500565b5050505050565b6119ba611cd8565b80600c8190555050565b60606119cf82611eeb565b60006119d9612562565b905060008151116119f95760405180602001604052806000815250611a24565b80611a03846125f4565b604051602001611a14929190614639565b6040516020818303038152906040525b915050919050565b600e6020528060005260406000206000915054906101000a900460ff1681565b600b5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611aee611cd8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b54906146cf565b60405180910390fd5b611b6681612424565b50565b600f60019054906101000a900460ff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c4757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c575750611c5682612754565b5b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611cd15750611cd082611b7c565b5b9050919050565b611ce06120af565b73ffffffffffffffffffffffffffffffffffffffff16611cfe6117ff565b73ffffffffffffffffffffffffffffffffffffffff1614611d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4b9061473b565b60405180910390fd5b565b611d5e612321565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db3906147cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2290614839565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b611ef481612255565b611f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2a906144ab565b60405180910390fd5b50565b6000919050565b6000600f60019054906101000a900460ff16905090565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611f90573d6000803e3d6000fd5b6000603a5250565b6000611fa382611389565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200a906148cb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166120326120af565b73ffffffffffffffffffffffffffffffffffffffff16148061206157506120608161205b6120af565b611a52565b5b6120a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120979061495d565b60405180910390fd5b6120aa83836127be565b505050565b600033905090565b600b54600d54836120c8919061497d565b1115612109576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210090614a45565b60405180910390fd5b60008267ffffffffffffffff81111561212557612124613cd6565b5b6040519080825280602002602001820160405280156121535781602001602082028036833780820191505090505b50905060005b838110156121ba57600d600081548092919061217490614285565b919050555061218585600d54612877565b600d5482828151811061219b5761219a614227565b5b60200260200101818152505080806121b290614285565b915050612159565b50811561224f57601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663709bee39826040518263ffffffff1660e01b815260040161221c9190613bc4565b600060405180830381600087803b15801561223657600080fd5b505af115801561224a573d6000803e3d6000fd5b505050505b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6122d26122cc6120af565b82612a50565b612311576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230890614ad7565b60405180910390fd5b61231c838383612ae5565b505050565b6000612710905090565b61234683838360405180602001604052806000815250611945565b505050565b6000600f60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166124046123ba338560405160200161239f929190614b3f565b60405160208183030381529060405280519060200120612d4b565b86868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612d7b565b73ffffffffffffffffffffffffffffffffffffffff161490509392505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124fc6124f56120af565b8383612da2565b5050565b61251161250b6120af565b83612a50565b612550576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254790614ad7565b60405180910390fd5b61255c84848484612f0e565b50505050565b6060601480546125719061418a565b80601f016020809104026020016040519081016040528092919081815260200182805461259d9061418a565b80156125ea5780601f106125bf576101008083540402835291602001916125ea565b820191906000526020600020905b8154815290600101906020018083116125cd57829003601f168201915b5050505050905090565b60606000820361263b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061274f565b600082905060005b6000821461266d57808061265690614285565b915050600a826126669190614356565b9150612643565b60008167ffffffffffffffff81111561268957612688613cd6565b5b6040519080825280601f01601f1916602001820160405280156126bb5781602001600182028036833780820191505090505b5090505b60008514612748576001826126d49190614537565b9150600a856126e39190614b67565b60306126ef919061497d565b60f81b81838151811061270557612704614227565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127419190614356565b94506126bf565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661283183611389565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036128e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128dd90614be4565b60405180910390fd5b6128ef81612255565b1561292f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292690614c50565b60405180910390fd5b61293b60008383612f6a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461298b919061497d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a4c600083836131e2565b5050565b600080612a5c83611389565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a9e5750612a9d8185611a52565b5b80612adc57508373ffffffffffffffffffffffffffffffffffffffff16612ac484610b19565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612b0582611389565b73ffffffffffffffffffffffffffffffffffffffff1614612b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5290614ce2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc190614d74565b60405180910390fd5b612bd5838383612f6a565b612be06000826127be565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c309190614537565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c87919061497d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d468383836131e2565b505050565b600081604051602001612d5e9190614e0b565b604051602081830303815290604052805190602001209050919050565b6000806000612d8a85856131e7565b91509150612d9781613238565b819250505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0790614e7d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612f019190613816565b60405180910390a3505050565b612f19848484612ae5565b612f2584848484613404565b612f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5b90614f0f565b60405180910390fd5b50505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b38fd505826040518263ffffffff1660e01b8152600401612fc59190613bf5565b6020604051808303816000875af1158015612fe4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130089190614f44565b15613048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303f90614fe3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461310d57601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342db10468460016040518363ffffffff1660e01b81526004016130da929190615064565b600060405180830381600087803b1580156130f457600080fd5b505af1158015613108573d6000803e3d6000fd5b505050505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146131d257601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fd2852198360016040518363ffffffff1660e01b815260040161319f929190615064565b600060405180830381600087803b1580156131b957600080fd5b505af11580156131cd573d6000803e3d6000fd5b505050505b6131dd83838361358b565b505050565b505050565b60008060418351036132285760008060006020860151925060408601519150606086015160001a905061321c87828585613590565b94509450505050613231565b60006002915091505b9250929050565b6000600481111561324c5761324b61508d565b5b81600481111561325f5761325e61508d565b5b031561340157600160048111156132795761327861508d565b5b81600481111561328c5761328b61508d565b5b036132cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c390615108565b60405180910390fd5b600260048111156132e0576132df61508d565b5b8160048111156132f3576132f261508d565b5b03613333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332a90615174565b60405180910390fd5b600360048111156133475761334661508d565b5b81600481111561335a5761335961508d565b5b0361339a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339190615206565b60405180910390fd5b6004808111156133ad576133ac61508d565b5b8160048111156133c0576133bf61508d565b5b03613400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133f790615298565b60405180910390fd5b5b50565b60006134258473ffffffffffffffffffffffffffffffffffffffff1661369c565b1561357e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261344e6120af565b8786866040518563ffffffff1660e01b8152600401613470949392919061530d565b6020604051808303816000875af19250505080156134ac57506040513d601f19601f820116820180604052508101906134a9919061536e565b60015b61352e573d80600081146134dc576040519150601f19603f3d011682016040523d82523d6000602084013e6134e1565b606091505b506000815103613526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161351d90614f0f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613583565b600190505b949350505050565b505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156135cb576000600391509150613693565b601b8560ff16141580156135e35750601c8560ff1614155b156135f5576000600491509150613693565b60006001878787876040516000815260200160405260405161361a94939291906153c6565b6020604051602081039080840390855afa15801561363c573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361368a57600060019250925050613693565b80600092509250505b94509492505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546136cb9061418a565b90600052602060002090601f0160209004810192826136ed5760008555613734565b82601f1061370657805160ff1916838001178555613734565b82800160010185558215613734579182015b82811115613733578251825591602001919060010190613718565b5b5090506137419190613745565b5090565b5b8082111561375e576000816000905550600101613746565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137ab81613776565b81146137b657600080fd5b50565b6000813590506137c8816137a2565b92915050565b6000602082840312156137e4576137e361376c565b5b60006137f2848285016137b9565b91505092915050565b60008115159050919050565b613810816137fb565b82525050565b600060208201905061382b6000830184613807565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061385c82613831565b9050919050565b61386c81613851565b811461387757600080fd5b50565b60008135905061388981613863565b92915050565b60006bffffffffffffffffffffffff82169050919050565b6138b08161388f565b81146138bb57600080fd5b50565b6000813590506138cd816138a7565b92915050565b600080604083850312156138ea576138e961376c565b5b60006138f88582860161387a565b9250506020613909858286016138be565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561394d578082015181840152602081019050613932565b8381111561395c576000848401525b50505050565b6000601f19601f8301169050919050565b600061397e82613913565b613988818561391e565b935061399881856020860161392f565b6139a181613962565b840191505092915050565b600060208201905081810360008301526139c68184613973565b905092915050565b6000819050919050565b6139e1816139ce565b81146139ec57600080fd5b50565b6000813590506139fe816139d8565b92915050565b600060208284031215613a1a57613a1961376c565b5b6000613a28848285016139ef565b91505092915050565b6000613a3c82613831565b9050919050565b613a4c81613a31565b82525050565b6000602082019050613a676000830184613a43565b92915050565b613a7681613a31565b8114613a8157600080fd5b50565b600081359050613a9381613a6d565b92915050565b60008060408385031215613ab057613aaf61376c565b5b6000613abe85828601613a84565b9250506020613acf858286016139ef565b9150509250929050565b600060208284031215613aef57613aee61376c565b5b6000613afd84828501613a84565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b3b816139ce565b82525050565b6000613b4d8383613b32565b60208301905092915050565b6000602082019050919050565b6000613b7182613b06565b613b7b8185613b11565b9350613b8683613b22565b8060005b83811015613bb7578151613b9e8882613b41565b9750613ba983613b59565b925050600181019050613b8a565b5085935050505092915050565b60006020820190508181036000830152613bde8184613b66565b905092915050565b613bef816139ce565b82525050565b6000602082019050613c0a6000830184613be6565b92915050565b600080600060608486031215613c2957613c2861376c565b5b6000613c3786828701613a84565b9350506020613c4886828701613a84565b9250506040613c59868287016139ef565b9150509250925092565b60008060408385031215613c7a57613c7961376c565b5b6000613c88858286016139ef565b9250506020613c99858286016139ef565b9150509250929050565b6000604082019050613cb86000830185613a43565b613cc56020830184613be6565b9392505050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613d0e82613962565b810181811067ffffffffffffffff82111715613d2d57613d2c613cd6565b5b80604052505050565b6000613d40613762565b9050613d4c8282613d05565b919050565b600067ffffffffffffffff821115613d6c57613d6b613cd6565b5b613d7582613962565b9050602081019050919050565b82818337600083830152505050565b6000613da4613d9f84613d51565b613d36565b905082815260208101848484011115613dc057613dbf613cd1565b5b613dcb848285613d82565b509392505050565b600082601f830112613de857613de7613ccc565b5b8135613df8848260208601613d91565b91505092915050565b600060208284031215613e1757613e1661376c565b5b600082013567ffffffffffffffff811115613e3557613e34613771565b5b613e4184828501613dd3565b91505092915050565b613e53816137fb565b8114613e5e57600080fd5b50565b600081359050613e7081613e4a565b92915050565b60008060408385031215613e8d57613e8c61376c565b5b6000613e9b858286016139ef565b9250506020613eac85828601613e61565b9150509250929050565b60008060408385031215613ecd57613ecc61376c565b5b6000613edb85828601613a84565b9250506020613eec85828601613e61565b9150509250929050565b60008060408385031215613f0d57613f0c61376c565b5b6000613f1b85828601613a84565b9250506020613f2c85828601613a84565b9150509250929050565b600080fd5b600080fd5b60008083601f840112613f5657613f55613ccc565b5b8235905067ffffffffffffffff811115613f7357613f72613f36565b5b602083019150836001820283011115613f8f57613f8e613f3b565b5b9250929050565b60008060008060608587031215613fb057613faf61376c565b5b600085013567ffffffffffffffff811115613fce57613fcd613771565b5b613fda87828801613f40565b94509450506020613fed878288016139ef565b9250506040613ffe87828801613e61565b91505092959194509250565b6000602082840312156140205761401f61376c565b5b600061402e84828501613e61565b91505092915050565b600067ffffffffffffffff82111561405257614051613cd6565b5b61405b82613962565b9050602081019050919050565b600061407b61407684614037565b613d36565b90508281526020810184848401111561409757614096613cd1565b5b6140a2848285613d82565b509392505050565b600082601f8301126140bf576140be613ccc565b5b81356140cf848260208601614068565b91505092915050565b600080600080608085870312156140f2576140f161376c565b5b600061410087828801613a84565b945050602061411187828801613a84565b9350506040614122878288016139ef565b925050606085013567ffffffffffffffff81111561414357614142613771565b5b61414f878288016140aa565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806141a257607f821691505b6020821081036141b5576141b461415b565b5b50919050565b7f41646d696e3a2063616c6c6572206973206e6f7420616e2061646d696e000000600082015250565b60006141f1601d8361391e565b91506141fc826141bb565b602082019050919050565b60006020820190508181036000830152614220816141e4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614290826139ce565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036142c2576142c1614256565b5b600182019050919050565b60006142d8826139ce565b91506142e3836139ce565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561431c5761431b614256565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614361826139ce565b915061436c836139ce565b92508261437c5761437b614327565b5b828204905092915050565b7f77726f6e672076616c7565000000000000000000000000000000000000000000600082015250565b60006143bd600b8361391e565b91506143c882614387565b602082019050919050565b600060208201905081810360008301526143ec816143b0565b9050919050565b7f4d696e7420697320636c6f736564000000000000000000000000000000000000600082015250565b6000614429600e8361391e565b9150614434826143f3565b602082019050919050565b600060208201905081810360008301526144588161441c565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061449560188361391e565b91506144a08261445f565b602082019050919050565b600060208201905081810360008301526144c481614488565b9050919050565b7f4e6f7420616c6c6f776564000000000000000000000000000000000000000000600082015250565b6000614501600b8361391e565b915061450c826144cb565b602082019050919050565b60006020820190508181036000830152614530816144f4565b9050919050565b6000614542826139ce565b915061454d836139ce565b9250828210156145605761455f614256565b5b828203905092915050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006145c760298361391e565b91506145d28261456b565b604082019050919050565b600060208201905081810360008301526145f6816145ba565b9050919050565b600081905092915050565b600061461382613913565b61461d81856145fd565b935061462d81856020860161392f565b80840191505092915050565b60006146458285614608565b91506146518284614608565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006146b960268361391e565b91506146c48261465d565b604082019050919050565b600060208201905081810360008301526146e8816146ac565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061472560208361391e565b9150614730826146ef565b602082019050919050565b6000602082019050818103600083015261475481614718565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b60006147b7602a8361391e565b91506147c28261475b565b604082019050919050565b600060208201905081810360008301526147e6816147aa565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600061482360198361391e565b915061482e826147ed565b602082019050919050565b6000602082019050818103600083015261485281614816565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006148b560218361391e565b91506148c082614859565b604082019050919050565b600060208201905081810360008301526148e4816148a8565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000614947603e8361391e565b9150614952826148eb565b604082019050919050565b600060208201905081810360008301526149768161493a565b9050919050565b6000614988826139ce565b9150614993836139ce565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149c8576149c7614256565b5b828201905092915050565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a2f60218361391e565b9150614a3a826149d3565b604082019050919050565b60006020820190508181036000830152614a5e81614a22565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000614ac1602e8361391e565b9150614acc82614a65565b604082019050919050565b60006020820190508181036000830152614af081614ab4565b9050919050565b60008160601b9050919050565b6000614b0f82614af7565b9050919050565b6000614b2182614b04565b9050919050565b614b39614b3482613a31565b614b16565b82525050565b6000614b4b8285614b28565b601482019150614b5b8284614608565b91508190509392505050565b6000614b72826139ce565b9150614b7d836139ce565b925082614b8d57614b8c614327565b5b828206905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614bce60208361391e565b9150614bd982614b98565b602082019050919050565b60006020820190508181036000830152614bfd81614bc1565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614c3a601c8361391e565b9150614c4582614c04565b602082019050919050565b60006020820190508181036000830152614c6981614c2d565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614ccc60258361391e565b9150614cd782614c70565b604082019050919050565b60006020820190508181036000830152614cfb81614cbf565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614d5e60248361391e565b9150614d6982614d02565b604082019050919050565b60006020820190508181036000830152614d8d81614d51565b9050919050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000614dca601c836145fd565b9150614dd582614d94565b601c82019050919050565b6000819050919050565b6000819050919050565b614e05614e0082614de0565b614dea565b82525050565b6000614e1682614dbd565b9150614e228284614df4565b60208201915081905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614e6760198361391e565b9150614e7282614e31565b602082019050919050565b60006020820190508181036000830152614e9681614e5a565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614ef960328361391e565b9150614f0482614e9d565b604082019050919050565b60006020820190508181036000830152614f2881614eec565b9050919050565b600081519050614f3e81613e4a565b92915050565b600060208284031215614f5a57614f5961376c565b5b6000614f6884828501614f2f565b91505092915050565b7f4552524f523a2074686973204e465420697320626f6f737465642e20556e626f60008201527f6f7374206974206265666f7265207472616e736665722e000000000000000000602082015250565b6000614fcd60378361391e565b9150614fd882614f71565b604082019050919050565b60006020820190508181036000830152614ffc81614fc0565b9050919050565b6000819050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061504e61504961504484615003565b615029565b61500d565b9050919050565b61505e81615033565b82525050565b60006040820190506150796000830185613a43565b6150866020830184615055565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006150f260188361391e565b91506150fd826150bc565b602082019050919050565b60006020820190508181036000830152615121816150e5565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b600061515e601f8361391e565b915061516982615128565b602082019050919050565b6000602082019050818103600083015261518d81615151565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006151f060228361391e565b91506151fb82615194565b604082019050919050565b6000602082019050818103600083015261521f816151e3565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b600061528260228361391e565b915061528d82615226565b604082019050919050565b600060208201905081810360008301526152b181615275565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006152df826152b8565b6152e981856152c3565b93506152f981856020860161392f565b61530281613962565b840191505092915050565b60006080820190506153226000830187613a43565b61532f6020830186613a43565b61533c6040830185613be6565b818103606083015261534e81846152d4565b905095945050505050565b600081519050615368816137a2565b92915050565b6000602082840312156153845761538361376c565b5b600061539284828501615359565b91505092915050565b6153a481614de0565b82525050565b600060ff82169050919050565b6153c0816153aa565b82525050565b60006080820190506153db600083018761539b565b6153e860208301866153b7565b6153f5604083018561539b565b615402606083018461539b565b9594505050505056fea2646970667358221220374a4ce1fc0bae5da28dfcb74911493d0bc814c163a5546adadb0e5731883a5a64736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000006617d901fa4559b961fc0b2fbd2e66c978ecd744000000000000000000000000000000000000000000000000000000000000003f68747470733a2f2f75732d63656e7472616c312d646f676c696e732d63346335632e636c6f756466756e6374696f6e732e6e65742f6170692f61737365742f00

Deployed Bytecode

0x6080604052600436106102725760003560e01c806367986daf1161014f578063a035b1fe116100c1578063c87b56dd1161007a578063c87b56dd14610919578063c9b5bb1714610956578063d5abeb0114610993578063e985e9c5146109be578063f2fde38b146109fb578063fb796e6c14610a2457610272565b8063a035b1fe1461080d578063a22cb46514610838578063b3d90cdc14610861578063b7c0b8e81461089e578063b88d4fde146108c7578063bc337182146108f057610272565b8063715018a611610113578063715018a6146107235780637437681e1461073a5780637abfc1fc146107655780638da5cb5b1461078e57806391b7f5ed146107b957806395d89b41146107e257610272565b806367986daf146106615780636b444ab6146106785780636c19e783146106945780636f8b44b0146106bd57806370a08231146106e657610272565b80632a55205a116101e85780634b0bddd2116101ac5780634b0bddd2146105415780634dc8e9bd1461056a5780634f467c36146105a757806357676139146105d25780635c196ceb146105fb5780636352211e1461062457610272565b80632a55205a1461047e57806330176e13146104bc57806331c26b11146104e55780633ccfd60b1461050157806342842e0e1461051857610272565b8063095ea7b31161023a578063095ea7b31461037057806309bd4c31146103995780630d381a28146103c257806318160ddd146103ff57806323b872dd1461042a57806324bbd0491461045357610272565b806301ffc9a71461027757806302fa7c47146102b457806306fdde03146102dd578063081812fc1461030857806308acbe8214610345575b600080fd5b34801561028357600080fd5b5061029e600480360381019061029991906137ce565b610a4f565b6040516102ab9190613816565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d691906138d3565b610a71565b005b3480156102e957600080fd5b506102f2610a87565b6040516102ff91906139ac565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a9190613a04565b610b19565b60405161033c9190613a52565b60405180910390f35b34801561035157600080fd5b5061035a610b5f565b6040516103679190613a52565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190613a99565b610b85565b005b3480156103a557600080fd5b506103c060048036038101906103bb9190613a99565b610bba565b005b3480156103ce57600080fd5b506103e960048036038101906103e49190613ad9565b610ca1565b6040516103f69190613bc4565b60405180910390f35b34801561040b57600080fd5b50610414610db8565b6040516104219190613bf5565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c9190613c10565b610dbe565b005b34801561045f57600080fd5b50610468610e29565b6040516104759190613816565b60405180910390f35b34801561048a57600080fd5b506104a560048036038101906104a09190613c63565b610e3c565b6040516104b3929190613ca3565b60405180910390f35b3480156104c857600080fd5b506104e360048036038101906104de9190613e01565b611026565b005b6104ff60048036038101906104fa9190613e76565b611048565b005b34801561050d57600080fd5b506105166110fd565b005b34801561052457600080fd5b5061053f600480360381019061053a9190613c10565b611155565b005b34801561054d57600080fd5b5061056860048036038101906105639190613eb6565b6111c0565b005b34801561057657600080fd5b50610591600480360381019061058c9190613a04565b611271565b60405161059e9190613bf5565b60405180910390f35b3480156105b357600080fd5b506105bc611289565b6040516105c99190613a52565b60405180910390f35b3480156105de57600080fd5b506105f960048036038101906105f49190613ef6565b6112af565b005b34801561060757600080fd5b50610622600480360381019061061d9190613ad9565b61133d565b005b34801561063057600080fd5b5061064b60048036038101906106469190613a04565b611389565b6040516106589190613a52565b60405180910390f35b34801561066d57600080fd5b5061067661143a565b005b610692600480360381019061068d9190613f96565b61146e565b005b3480156106a057600080fd5b506106bb60048036038101906106b69190613ad9565b611684565b005b3480156106c957600080fd5b506106e460048036038101906106df9190613a04565b6116d0565b005b3480156106f257600080fd5b5061070d60048036038101906107089190613ad9565b6116e2565b60405161071a9190613bf5565b60405180910390f35b34801561072f57600080fd5b50610738611799565b005b34801561074657600080fd5b5061074f6117ad565b60405161075c9190613bf5565b60405180910390f35b34801561077157600080fd5b5061078c60048036038101906107879190613ad9565b6117b3565b005b34801561079a57600080fd5b506107a36117ff565b6040516107b09190613a52565b60405180910390f35b3480156107c557600080fd5b506107e060048036038101906107db9190613a04565b611829565b005b3480156107ee57600080fd5b506107f761183b565b60405161080491906139ac565b60405180910390f35b34801561081957600080fd5b506108226118cd565b60405161082f9190613bf5565b60405180910390f35b34801561084457600080fd5b5061085f600480360381019061085a9190613eb6565b6118d3565b005b34801561086d57600080fd5b5061088860048036038101906108839190613a04565b611908565b6040516108959190613bf5565b60405180910390f35b3480156108aa57600080fd5b506108c560048036038101906108c0919061400a565b611920565b005b3480156108d357600080fd5b506108ee60048036038101906108e991906140d8565b611945565b005b3480156108fc57600080fd5b5061091760048036038101906109129190613a04565b6119b2565b005b34801561092557600080fd5b50610940600480360381019061093b9190613a04565b6119c4565b60405161094d91906139ac565b60405180910390f35b34801561096257600080fd5b5061097d60048036038101906109789190613ad9565b611a2c565b60405161098a9190613816565b60405180910390f35b34801561099f57600080fd5b506109a8611a4c565b6040516109b59190613bf5565b60405180910390f35b3480156109ca57600080fd5b506109e560048036038101906109e09190613ef6565b611a52565b6040516109f29190613816565b60405180910390f35b348015610a0757600080fd5b50610a226004803603810190610a1d9190613ad9565b611ae6565b005b348015610a3057600080fd5b50610a39611b69565b604051610a469190613816565b60405180910390f35b6000610a5a82611b7c565b80610a6a5750610a6982611c5e565b5b9050919050565b610a79611cd8565b610a838282611d56565b5050565b606060008054610a969061418a565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac29061418a565b8015610b0f5780601f10610ae457610100808354040283529160200191610b0f565b820191906000526020600020905b815481529060010190602001808311610af257829003601f168201915b5050505050905090565b6000610b2482611eeb565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b81610b8f81611f36565b610bab57610b9b611f3d565b15610baa57610ba981611f54565b5b5b610bb58383611f98565b505050565b60076000610bc66120af565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610c525750610c1c6120af565b73ffffffffffffffffffffffffffffffffffffffff16610c3a6117ff565b73ffffffffffffffffffffffffffffffffffffffff16145b610c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8890614207565b60405180910390fd5b610c9d828260006120b7565b5050565b6060600080610caf846116e2565b905060008167ffffffffffffffff811115610ccd57610ccc613cd6565b5b604051908082528060200260200182016040528015610cfb5781602001602082028036833780820191505090505b50905060005b600b54811015610dab57828403610d1e5781945050505050610db3565b610d2781612255565b8015610d6657508573ffffffffffffffffffffffffffffffffffffffff16610d4e82611389565b73ffffffffffffffffffffffffffffffffffffffff16145b15610d9a5780828581518110610d7f57610d7e614227565b5b6020026020010181815250508380610d9690614285565b9450505b80610da490614285565b9050610d01565b819450505050505b919050565b600d5481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e1857610dfb33611f36565b610e1757610e07611f3d565b15610e1657610e1533611f54565b5b5b5b610e238484846122c1565b50505050565b600f60009054906101000a900460ff1681565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610fd15760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610fdb612321565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff168661100791906142cd565b6110119190614356565b90508160000151819350935050509250929050565b61102e611cd8565b80601490805190602001906110449291906136bf565b5050565b34600a548361105791906142cd565b1115611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f906143d3565b60405180910390fd5b600f60009054906101000a900460ff166110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de9061443f565b60405180910390fd5b6110f96110f26120af565b83836120b7565b5050565b611105611cd8565b61110d6120af565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611152573d6000803e3d6000fd5b50565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111af5761119233611f36565b6111ae5761119e611f3d565b156111ad576111ac33611f54565b5b5b5b6111ba84848461232b565b50505050565b6111c8611cd8565b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f55a5194bc0174fcaf12b2978bef43911466bf63b34db8d1dd1a0d5dcd5c41bea826040516112659190613816565b60405180910390a25050565b60126020528060005260406000206000915090505481565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6112b7611cd8565b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b611345611cd8565b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611431576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611428906144ab565b60405180910390fd5b80915050919050565b611442611cd8565b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600f60009054906101000a900460ff166114bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b49061443f565b60405180910390fd5b6114fd84846040518060400160405280600381526020017f5f776c000000000000000000000000000000000000000000000000000000000081525061234b565b61153c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153390614517565b60405180910390fd5b6000600e600061154a6120af565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161590506000816115a35760006115a7565b600a545b600a54856115b591906142cd565b6115bf9190614537565b905034811115611604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fb906143d3565b60405180910390fd5b811561166a576001600e60006116186120af565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b61167c6116756120af565b85856120b7565b505050505050565b61168c611cd8565b80600f60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6116d8611cd8565b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611752576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611749906145dd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117a1611cd8565b6117ab6000612424565b565b600c5481565b6117bb611cd8565b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611831611cd8565b80600a8190555050565b60606001805461184a9061418a565b80601f01602080910402602001604051908101604052809291908181526020018280546118769061418a565b80156118c35780601f10611898576101008083540402835291602001916118c3565b820191906000526020600020905b8154815290600101906020018083116118a657829003601f168201915b5050505050905090565b600a5481565b816118dd81611f36565b6118f9576118e9611f3d565b156118f8576118f781611f54565b5b5b61190383836124ea565b505050565b60136020528060005260406000206000915090505481565b611928611cd8565b80600f60016101000a81548160ff02191690831515021790555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461199f5761198233611f36565b61199e5761198e611f3d565b1561199d5761199c33611f54565b5b5b5b6119ab85858585612500565b5050505050565b6119ba611cd8565b80600c8190555050565b60606119cf82611eeb565b60006119d9612562565b905060008151116119f95760405180602001604052806000815250611a24565b80611a03846125f4565b604051602001611a14929190614639565b6040516020818303038152906040525b915050919050565b600e6020528060005260406000206000915054906101000a900460ff1681565b600b5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611aee611cd8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b54906146cf565b60405180910390fd5b611b6681612424565b50565b600f60019054906101000a900460ff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c4757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c575750611c5682612754565b5b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611cd15750611cd082611b7c565b5b9050919050565b611ce06120af565b73ffffffffffffffffffffffffffffffffffffffff16611cfe6117ff565b73ffffffffffffffffffffffffffffffffffffffff1614611d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4b9061473b565b60405180910390fd5b565b611d5e612321565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db3906147cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2290614839565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b611ef481612255565b611f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2a906144ab565b60405180910390fd5b50565b6000919050565b6000600f60019054906101000a900460ff16905090565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611f90573d6000803e3d6000fd5b6000603a5250565b6000611fa382611389565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200a906148cb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166120326120af565b73ffffffffffffffffffffffffffffffffffffffff16148061206157506120608161205b6120af565b611a52565b5b6120a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120979061495d565b60405180910390fd5b6120aa83836127be565b505050565b600033905090565b600b54600d54836120c8919061497d565b1115612109576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210090614a45565b60405180910390fd5b60008267ffffffffffffffff81111561212557612124613cd6565b5b6040519080825280602002602001820160405280156121535781602001602082028036833780820191505090505b50905060005b838110156121ba57600d600081548092919061217490614285565b919050555061218585600d54612877565b600d5482828151811061219b5761219a614227565b5b60200260200101818152505080806121b290614285565b915050612159565b50811561224f57601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663709bee39826040518263ffffffff1660e01b815260040161221c9190613bc4565b600060405180830381600087803b15801561223657600080fd5b505af115801561224a573d6000803e3d6000fd5b505050505b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6122d26122cc6120af565b82612a50565b612311576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230890614ad7565b60405180910390fd5b61231c838383612ae5565b505050565b6000612710905090565b61234683838360405180602001604052806000815250611945565b505050565b6000600f60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166124046123ba338560405160200161239f929190614b3f565b60405160208183030381529060405280519060200120612d4b565b86868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612d7b565b73ffffffffffffffffffffffffffffffffffffffff161490509392505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124fc6124f56120af565b8383612da2565b5050565b61251161250b6120af565b83612a50565b612550576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254790614ad7565b60405180910390fd5b61255c84848484612f0e565b50505050565b6060601480546125719061418a565b80601f016020809104026020016040519081016040528092919081815260200182805461259d9061418a565b80156125ea5780601f106125bf576101008083540402835291602001916125ea565b820191906000526020600020905b8154815290600101906020018083116125cd57829003601f168201915b5050505050905090565b60606000820361263b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061274f565b600082905060005b6000821461266d57808061265690614285565b915050600a826126669190614356565b9150612643565b60008167ffffffffffffffff81111561268957612688613cd6565b5b6040519080825280601f01601f1916602001820160405280156126bb5781602001600182028036833780820191505090505b5090505b60008514612748576001826126d49190614537565b9150600a856126e39190614b67565b60306126ef919061497d565b60f81b81838151811061270557612704614227565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127419190614356565b94506126bf565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661283183611389565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036128e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128dd90614be4565b60405180910390fd5b6128ef81612255565b1561292f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292690614c50565b60405180910390fd5b61293b60008383612f6a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461298b919061497d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a4c600083836131e2565b5050565b600080612a5c83611389565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a9e5750612a9d8185611a52565b5b80612adc57508373ffffffffffffffffffffffffffffffffffffffff16612ac484610b19565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612b0582611389565b73ffffffffffffffffffffffffffffffffffffffff1614612b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5290614ce2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc190614d74565b60405180910390fd5b612bd5838383612f6a565b612be06000826127be565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c309190614537565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c87919061497d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d468383836131e2565b505050565b600081604051602001612d5e9190614e0b565b604051602081830303815290604052805190602001209050919050565b6000806000612d8a85856131e7565b91509150612d9781613238565b819250505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0790614e7d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612f019190613816565b60405180910390a3505050565b612f19848484612ae5565b612f2584848484613404565b612f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5b90614f0f565b60405180910390fd5b50505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b38fd505826040518263ffffffff1660e01b8152600401612fc59190613bf5565b6020604051808303816000875af1158015612fe4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130089190614f44565b15613048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303f90614fe3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461310d57601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342db10468460016040518363ffffffff1660e01b81526004016130da929190615064565b600060405180830381600087803b1580156130f457600080fd5b505af1158015613108573d6000803e3d6000fd5b505050505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146131d257601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fd2852198360016040518363ffffffff1660e01b815260040161319f929190615064565b600060405180830381600087803b1580156131b957600080fd5b505af11580156131cd573d6000803e3d6000fd5b505050505b6131dd83838361358b565b505050565b505050565b60008060418351036132285760008060006020860151925060408601519150606086015160001a905061321c87828585613590565b94509450505050613231565b60006002915091505b9250929050565b6000600481111561324c5761324b61508d565b5b81600481111561325f5761325e61508d565b5b031561340157600160048111156132795761327861508d565b5b81600481111561328c5761328b61508d565b5b036132cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c390615108565b60405180910390fd5b600260048111156132e0576132df61508d565b5b8160048111156132f3576132f261508d565b5b03613333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332a90615174565b60405180910390fd5b600360048111156133475761334661508d565b5b81600481111561335a5761335961508d565b5b0361339a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339190615206565b60405180910390fd5b6004808111156133ad576133ac61508d565b5b8160048111156133c0576133bf61508d565b5b03613400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133f790615298565b60405180910390fd5b5b50565b60006134258473ffffffffffffffffffffffffffffffffffffffff1661369c565b1561357e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261344e6120af565b8786866040518563ffffffff1660e01b8152600401613470949392919061530d565b6020604051808303816000875af19250505080156134ac57506040513d601f19601f820116820180604052508101906134a9919061536e565b60015b61352e573d80600081146134dc576040519150601f19603f3d011682016040523d82523d6000602084013e6134e1565b606091505b506000815103613526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161351d90614f0f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613583565b600190505b949350505050565b505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156135cb576000600391509150613693565b601b8560ff16141580156135e35750601c8560ff1614155b156135f5576000600491509150613693565b60006001878787876040516000815260200160405260405161361a94939291906153c6565b6020604051602081039080840390855afa15801561363c573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361368a57600060019250925050613693565b80600092509250505b94509492505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546136cb9061418a565b90600052602060002090601f0160209004810192826136ed5760008555613734565b82601f1061370657805160ff1916838001178555613734565b82800160010185558215613734579182015b82811115613733578251825591602001919060010190613718565b5b5090506137419190613745565b5090565b5b8082111561375e576000816000905550600101613746565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137ab81613776565b81146137b657600080fd5b50565b6000813590506137c8816137a2565b92915050565b6000602082840312156137e4576137e361376c565b5b60006137f2848285016137b9565b91505092915050565b60008115159050919050565b613810816137fb565b82525050565b600060208201905061382b6000830184613807565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061385c82613831565b9050919050565b61386c81613851565b811461387757600080fd5b50565b60008135905061388981613863565b92915050565b60006bffffffffffffffffffffffff82169050919050565b6138b08161388f565b81146138bb57600080fd5b50565b6000813590506138cd816138a7565b92915050565b600080604083850312156138ea576138e961376c565b5b60006138f88582860161387a565b9250506020613909858286016138be565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561394d578082015181840152602081019050613932565b8381111561395c576000848401525b50505050565b6000601f19601f8301169050919050565b600061397e82613913565b613988818561391e565b935061399881856020860161392f565b6139a181613962565b840191505092915050565b600060208201905081810360008301526139c68184613973565b905092915050565b6000819050919050565b6139e1816139ce565b81146139ec57600080fd5b50565b6000813590506139fe816139d8565b92915050565b600060208284031215613a1a57613a1961376c565b5b6000613a28848285016139ef565b91505092915050565b6000613a3c82613831565b9050919050565b613a4c81613a31565b82525050565b6000602082019050613a676000830184613a43565b92915050565b613a7681613a31565b8114613a8157600080fd5b50565b600081359050613a9381613a6d565b92915050565b60008060408385031215613ab057613aaf61376c565b5b6000613abe85828601613a84565b9250506020613acf858286016139ef565b9150509250929050565b600060208284031215613aef57613aee61376c565b5b6000613afd84828501613a84565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b3b816139ce565b82525050565b6000613b4d8383613b32565b60208301905092915050565b6000602082019050919050565b6000613b7182613b06565b613b7b8185613b11565b9350613b8683613b22565b8060005b83811015613bb7578151613b9e8882613b41565b9750613ba983613b59565b925050600181019050613b8a565b5085935050505092915050565b60006020820190508181036000830152613bde8184613b66565b905092915050565b613bef816139ce565b82525050565b6000602082019050613c0a6000830184613be6565b92915050565b600080600060608486031215613c2957613c2861376c565b5b6000613c3786828701613a84565b9350506020613c4886828701613a84565b9250506040613c59868287016139ef565b9150509250925092565b60008060408385031215613c7a57613c7961376c565b5b6000613c88858286016139ef565b9250506020613c99858286016139ef565b9150509250929050565b6000604082019050613cb86000830185613a43565b613cc56020830184613be6565b9392505050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613d0e82613962565b810181811067ffffffffffffffff82111715613d2d57613d2c613cd6565b5b80604052505050565b6000613d40613762565b9050613d4c8282613d05565b919050565b600067ffffffffffffffff821115613d6c57613d6b613cd6565b5b613d7582613962565b9050602081019050919050565b82818337600083830152505050565b6000613da4613d9f84613d51565b613d36565b905082815260208101848484011115613dc057613dbf613cd1565b5b613dcb848285613d82565b509392505050565b600082601f830112613de857613de7613ccc565b5b8135613df8848260208601613d91565b91505092915050565b600060208284031215613e1757613e1661376c565b5b600082013567ffffffffffffffff811115613e3557613e34613771565b5b613e4184828501613dd3565b91505092915050565b613e53816137fb565b8114613e5e57600080fd5b50565b600081359050613e7081613e4a565b92915050565b60008060408385031215613e8d57613e8c61376c565b5b6000613e9b858286016139ef565b9250506020613eac85828601613e61565b9150509250929050565b60008060408385031215613ecd57613ecc61376c565b5b6000613edb85828601613a84565b9250506020613eec85828601613e61565b9150509250929050565b60008060408385031215613f0d57613f0c61376c565b5b6000613f1b85828601613a84565b9250506020613f2c85828601613a84565b9150509250929050565b600080fd5b600080fd5b60008083601f840112613f5657613f55613ccc565b5b8235905067ffffffffffffffff811115613f7357613f72613f36565b5b602083019150836001820283011115613f8f57613f8e613f3b565b5b9250929050565b60008060008060608587031215613fb057613faf61376c565b5b600085013567ffffffffffffffff811115613fce57613fcd613771565b5b613fda87828801613f40565b94509450506020613fed878288016139ef565b9250506040613ffe87828801613e61565b91505092959194509250565b6000602082840312156140205761401f61376c565b5b600061402e84828501613e61565b91505092915050565b600067ffffffffffffffff82111561405257614051613cd6565b5b61405b82613962565b9050602081019050919050565b600061407b61407684614037565b613d36565b90508281526020810184848401111561409757614096613cd1565b5b6140a2848285613d82565b509392505050565b600082601f8301126140bf576140be613ccc565b5b81356140cf848260208601614068565b91505092915050565b600080600080608085870312156140f2576140f161376c565b5b600061410087828801613a84565b945050602061411187828801613a84565b9350506040614122878288016139ef565b925050606085013567ffffffffffffffff81111561414357614142613771565b5b61414f878288016140aa565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806141a257607f821691505b6020821081036141b5576141b461415b565b5b50919050565b7f41646d696e3a2063616c6c6572206973206e6f7420616e2061646d696e000000600082015250565b60006141f1601d8361391e565b91506141fc826141bb565b602082019050919050565b60006020820190508181036000830152614220816141e4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614290826139ce565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036142c2576142c1614256565b5b600182019050919050565b60006142d8826139ce565b91506142e3836139ce565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561431c5761431b614256565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614361826139ce565b915061436c836139ce565b92508261437c5761437b614327565b5b828204905092915050565b7f77726f6e672076616c7565000000000000000000000000000000000000000000600082015250565b60006143bd600b8361391e565b91506143c882614387565b602082019050919050565b600060208201905081810360008301526143ec816143b0565b9050919050565b7f4d696e7420697320636c6f736564000000000000000000000000000000000000600082015250565b6000614429600e8361391e565b9150614434826143f3565b602082019050919050565b600060208201905081810360008301526144588161441c565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061449560188361391e565b91506144a08261445f565b602082019050919050565b600060208201905081810360008301526144c481614488565b9050919050565b7f4e6f7420616c6c6f776564000000000000000000000000000000000000000000600082015250565b6000614501600b8361391e565b915061450c826144cb565b602082019050919050565b60006020820190508181036000830152614530816144f4565b9050919050565b6000614542826139ce565b915061454d836139ce565b9250828210156145605761455f614256565b5b828203905092915050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006145c760298361391e565b91506145d28261456b565b604082019050919050565b600060208201905081810360008301526145f6816145ba565b9050919050565b600081905092915050565b600061461382613913565b61461d81856145fd565b935061462d81856020860161392f565b80840191505092915050565b60006146458285614608565b91506146518284614608565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006146b960268361391e565b91506146c48261465d565b604082019050919050565b600060208201905081810360008301526146e8816146ac565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061472560208361391e565b9150614730826146ef565b602082019050919050565b6000602082019050818103600083015261475481614718565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b60006147b7602a8361391e565b91506147c28261475b565b604082019050919050565b600060208201905081810360008301526147e6816147aa565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600061482360198361391e565b915061482e826147ed565b602082019050919050565b6000602082019050818103600083015261485281614816565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006148b560218361391e565b91506148c082614859565b604082019050919050565b600060208201905081810360008301526148e4816148a8565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000614947603e8361391e565b9150614952826148eb565b604082019050919050565b600060208201905081810360008301526149768161493a565b9050919050565b6000614988826139ce565b9150614993836139ce565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149c8576149c7614256565b5b828201905092915050565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a2f60218361391e565b9150614a3a826149d3565b604082019050919050565b60006020820190508181036000830152614a5e81614a22565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000614ac1602e8361391e565b9150614acc82614a65565b604082019050919050565b60006020820190508181036000830152614af081614ab4565b9050919050565b60008160601b9050919050565b6000614b0f82614af7565b9050919050565b6000614b2182614b04565b9050919050565b614b39614b3482613a31565b614b16565b82525050565b6000614b4b8285614b28565b601482019150614b5b8284614608565b91508190509392505050565b6000614b72826139ce565b9150614b7d836139ce565b925082614b8d57614b8c614327565b5b828206905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614bce60208361391e565b9150614bd982614b98565b602082019050919050565b60006020820190508181036000830152614bfd81614bc1565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614c3a601c8361391e565b9150614c4582614c04565b602082019050919050565b60006020820190508181036000830152614c6981614c2d565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614ccc60258361391e565b9150614cd782614c70565b604082019050919050565b60006020820190508181036000830152614cfb81614cbf565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614d5e60248361391e565b9150614d6982614d02565b604082019050919050565b60006020820190508181036000830152614d8d81614d51565b9050919050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000614dca601c836145fd565b9150614dd582614d94565b601c82019050919050565b6000819050919050565b6000819050919050565b614e05614e0082614de0565b614dea565b82525050565b6000614e1682614dbd565b9150614e228284614df4565b60208201915081905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614e6760198361391e565b9150614e7282614e31565b602082019050919050565b60006020820190508181036000830152614e9681614e5a565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614ef960328361391e565b9150614f0482614e9d565b604082019050919050565b60006020820190508181036000830152614f2881614eec565b9050919050565b600081519050614f3e81613e4a565b92915050565b600060208284031215614f5a57614f5961376c565b5b6000614f6884828501614f2f565b91505092915050565b7f4552524f523a2074686973204e465420697320626f6f737465642e20556e626f60008201527f6f7374206974206265666f7265207472616e736665722e000000000000000000602082015250565b6000614fcd60378361391e565b9150614fd882614f71565b604082019050919050565b60006020820190508181036000830152614ffc81614fc0565b9050919050565b6000819050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061504e61504961504484615003565b615029565b61500d565b9050919050565b61505e81615033565b82525050565b60006040820190506150796000830185613a43565b6150866020830184615055565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006150f260188361391e565b91506150fd826150bc565b602082019050919050565b60006020820190508181036000830152615121816150e5565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b600061515e601f8361391e565b915061516982615128565b602082019050919050565b6000602082019050818103600083015261518d81615151565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006151f060228361391e565b91506151fb82615194565b604082019050919050565b6000602082019050818103600083015261521f816151e3565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b600061528260228361391e565b915061528d82615226565b604082019050919050565b600060208201905081810360008301526152b181615275565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006152df826152b8565b6152e981856152c3565b93506152f981856020860161392f565b61530281613962565b840191505092915050565b60006080820190506153226000830187613a43565b61532f6020830186613a43565b61533c6040830185613be6565b818103606083015261534e81846152d4565b905095945050505050565b600081519050615368816137a2565b92915050565b6000602082840312156153845761538361376c565b5b600061539284828501615359565b91505092915050565b6153a481614de0565b82525050565b600060ff82169050919050565b6153c0816153aa565b82525050565b60006080820190506153db600083018761539b565b6153e860208301866153b7565b6153f5604083018561539b565b615402606083018461539b565b9594505050505056fea2646970667358221220374a4ce1fc0bae5da28dfcb74911493d0bc814c163a5546adadb0e5731883a5a64736f6c634300080d0033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000006617d901fa4559b961fc0b2fbd2e66c978ecd744000000000000000000000000000000000000000000000000000000000000003f68747470733a2f2f75732d63656e7472616c312d646f676c696e732d63346335632e636c6f756466756e6374696f6e732e6e65742f6170692f61737365742f00

-----Decoded View---------------
Arg [0] : tokenURI_ (string): https://us-central1-doglins-c4c5c.cloudfunctions.net/api/asset/
Arg [1] : signer_ (address): 0x6617D901fa4559b961Fc0b2fbD2e66C978EcD744

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000006617d901fa4559b961fc0b2fbd2e66c978ecd744
Arg [2] : 000000000000000000000000000000000000000000000000000000000000003f
Arg [3] : 68747470733a2f2f75732d63656e7472616c312d646f676c696e732d63346335
Arg [4] : 632e636c6f756466756e6374696f6e732e6e65742f6170692f61737365742f00


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.