ETH Price: $3,271.81 (-4.06%)
Gas: 18 Gwei

Token

ARCStellars (ARS)
 

Overview

Max Total Supply

856 ARS

Holders

837

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
devinn.eth
Balance
1 ARS
0x10D42f23206E38b4C03e37239ede8a63D5bb252b
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

ARC Stellars is a collection of 1,688 unique NFTs that represent user's digital identity in the ARC universe.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ARCStellars

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : ARCStellars.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.16;

import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";

contract Pyxis {
    function getToken(address) public view returns (uint256) {}
}

interface ReserveNFT {
    function mintReservedNFT(address to)
    external
    payable;
}

contract ARCStellars is ReserveNFT, ERC721, Ownable {
    Pyxis pyxis;
    bool public paused = true;
    bool public stopped = false;
    uint256 public constant mintPrice = 3 ether;

    using Counters for Counters.Counter;
    Counters.Counter private tokenId;
    Counters.Counter private reservedCount;
    Counters.Counter private burnedCount;
    address private _couponOwner;
    address private _accountOwner;
    uint256 public constant MAX_SUPPLY = 1688;
    uint256 public constant RESERVED_SUPPLY = 188;
    uint256 public maxPerUserSupply = 1;
    string private _baseUri = "";
    mapping(address => Counters.Counter) private whitelistClaimed;
    address public reserveContractAddress;

    string public STELLARS_PROVENANCE = "";
    uint256 public startingIndexBlock;
    uint256 public startingIndex;

    event BaseUri(string _from, string _to);

    struct Coupon {
        bytes32 r;
        bytes32 s;
        uint8 v;
    }

    struct CouponData {
        uint256 expire;
    }

    constructor() ERC721("ARCStellars", "ARS") {
        _couponOwner = owner();
        _accountOwner = owner();
    }

    function setReserveContractAddress(address reserveContractAddress_) external onlyOwner {
        reserveContractAddress = reserveContractAddress_;
    }

    modifier onlyReserveContract() {
        require(reserveContractAddress == msg.sender, "The caller is not ReserveMint");
        _;
    }

    function mintReservedNFT(address to) override external payable
    onlyReserveContract {
        _mintAction(to);
    }

    function connectPyxis(address _pyxis) public onlyOwner {
        pyxis = Pyxis(_pyxis);
    }

    function hasPyxis() public view returns (bool) {
        return pyxis.getToken(msg.sender) > 0;
    }
    
    function setStopMint() external onlyOwner {
        stopped = true;
        if(startingIndex == 0) startingIndexBlock = block.number;
    }

    function emergencySetStartingIndexBlock() public onlyOwner {
        require(stopped == true, "Mint not stopped");
        require(startingIndex == 0, "Starting index set already");
        startingIndexBlock = block.number;
    }

    function setStartingIndex() public {
        require(startingIndex == 0, "Starting index set already");
        require(startingIndexBlock != 0, "Starting block index not set");
        if (block.number - startingIndexBlock > 255) {
            startingIndex = uint(blockhash(block.number - 1)) % totalSupply();
        } else {
            startingIndex = uint(blockhash(startingIndexBlock)) % totalSupply();
        }
        if (startingIndex == 0) startingIndex = 1;
    }

    function setPerUserSupply(uint256 _value) external onlyOwner {
        maxPerUserSupply = _value;
    }

    function setBaseURI(string memory baseURI) external onlyOwner {
        emit BaseUri(_baseUri, baseURI);
        _baseUri = baseURI;
    }

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

    function setMintPaused(bool status) public onlyOwner {
        paused = status;
    }

    function setCouponOwner(address newOwner) public onlyOwner {
        require(
            newOwner != address(0),
            "CouponOwner: new owner is the zero address"
        );
        _couponOwner = newOwner;
    }

    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        STELLARS_PROVENANCE = provenanceHash;
    }

    function setAccountOwner(address newOwner) public onlyOwner {
        _accountOwner = newOwner;
    }

    function isValidUser(CouponData memory meta, Coupon memory coupon)
        public
        view
        returns (bool)
    {
        return _isValidCoupon(msg.sender, meta, coupon);
    }

    function _isValidCoupon(
        address to,
        CouponData memory meta,
        Coupon memory coupon
    ) private view returns (bool) {
        require(block.timestamp < meta.expire, "Coupon expired");

        bytes32 digest = keccak256(abi.encode(to, meta.expire));
        address signer = ECDSA.recover(digest, coupon.v, coupon.r, coupon.s);
        return (signer == _couponOwner);
    }

    function airdropToken(address[] memory list) public onlyOwner {
        require(
            reservedCount.current() + list.length <= RESERVED_SUPPLY,
            "Maximum reserved supply reached"
        );
        for(uint256 i = 0; i < list.length; i++) {
            reservedCount.increment();
            address to = list[i];
            _mintAction(to);
        }
    }

    function airdropRemainingSupply(address to, uint256 limit) public onlyOwner {
        require(stopped == false, "Mint stopped");
        require(paused == true, "Mint is not paused");
        uint256 remaingSupply = MAX_SUPPLY - tokenId.current();
        uint256 airdropLimit = (limit > remaingSupply)? remaingSupply: limit;
        for (uint256 i; i < airdropLimit; i++) {
            tokenId.increment();
            uint256 newId = tokenId.current();
            _safeMint(to, newId);
        }
    }

    function setBlockNumberOnLast() private {
        if (startingIndexBlock == 0 && (tokenId.current() == MAX_SUPPLY)) {
            startingIndexBlock = block.number;
            stopped = true;
        }
    }

    function _mintAction(address to)
        private
        returns (
            uint256,
            string memory,
            uint256
        )
    {
        require(stopped == false, "Mint stopped");

        require(paused == false, "Mint paused");

        require(tokenId.current() < MAX_SUPPLY, "Total supply reached");

        tokenId.increment();
        uint256 newId = tokenId.current();
        whitelistClaimed[to].increment();
        setBlockNumberOnLast();
        _safeMint(to, newId);
        string memory newURI = super.tokenURI(newId); // @todo - remove
        return (newId, newURI, whitelistClaimed[to].current()); // @todo - remove
    }

    function claimedCount() public view returns (uint256) {
        return whitelistClaimed[msg.sender].current();
    }

    function _remainingPublicSupply()  private view returns ( uint256) {
        return MAX_SUPPLY - RESERVED_SUPPLY - (tokenId.current() - reservedCount.current());
    }

    function mint(CouponData memory meta, Coupon memory coupon)
        public
        payable
        returns (
            uint256,
            string memory,
            uint256
        )
    {
        require(
            _remainingPublicSupply() > 0,
            "Maximum supply reached"
        );

        require(
            _isValidCoupon(msg.sender, meta, coupon),
            "Non whitelisted user"
        );

        require(msg.value >= mintPrice, "Not enough eth sent.");

        require(hasPyxis(), "No pyxis found");

        require(
            whitelistClaimed[msg.sender].current() < maxPerUserSupply,
            "Per user supply reached"
        );

        return _mintAction(msg.sender);
    } 

    function withdraw() public onlyOwner {
        require(address(this).balance > 0, "balance is 0 ");
        payable(_accountOwner).transfer(address(this).balance);
    }

    function totalSupply() public view returns (uint256) {
        return tokenId.current() - burnedCount.current();
    }

    /**
    * The following functions are overrides 
    */
    function _beforeTokenTransfer(address from, address to, uint256 _tokenId)
        internal
        override(ERC721)
    {
        super._beforeTokenTransfer(from, to, _tokenId);
        if (to == address(0)) burnedCount.increment();
    }
}

File 2 of 13 : 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);
}

File 3 of 13 : 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 4 of 13 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

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

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 6 of 13 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 7 of 13 : 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 8 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 13 : 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 10 of 13 : 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 11 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

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

File 13 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_from","type":"string"},{"indexed":false,"internalType":"string","name":"_to","type":"string"}],"name":"BaseUri","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STELLARS_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"airdropRemainingSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"list","type":"address[]"}],"name":"airdropToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_pyxis","type":"address"}],"name":"connectPyxis","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencySetStartingIndexBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasPyxis","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"expire","type":"uint256"}],"internalType":"struct ARCStellars.CouponData","name":"meta","type":"tuple"},{"components":[{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"}],"internalType":"struct ARCStellars.Coupon","name":"coupon","type":"tuple"}],"name":"isValidUser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerUserSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"expire","type":"uint256"}],"internalType":"struct ARCStellars.CouponData","name":"meta","type":"tuple"},{"components":[{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"}],"internalType":"struct ARCStellars.Coupon","name":"coupon","type":"tuple"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"string","name":"","type":"string"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mintReservedNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"newOwner","type":"address"}],"name":"setAccountOwner","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"setCouponOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setMintPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setPerUserSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"reserveContractAddress_","type":"address"}],"name":"setReserveContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStopMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stopped","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600760146101000a81548160ff0219169083151502179055506000600760156101000a81548160ff0219169083151502179055506001600d5560405180602001604052806000815250600e90816200005f919062000559565b50604051806020016040528060008152506011908162000080919062000559565b503480156200008e57600080fd5b506040518060400160405280600b81526020017f4152435374656c6c6172730000000000000000000000000000000000000000008152506040518060400160405280600381526020017f415253000000000000000000000000000000000000000000000000000000000081525081600090816200010c919062000559565b5080600190816200011e919062000559565b5050506200014162000135620001e760201b60201c565b620001ef60201b60201c565b62000151620002b560201b60201c565b600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001a1620002b560201b60201c565b600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000640565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200036157607f821691505b60208210810362000377576200037662000319565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003e17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003a2565b620003ed8683620003a2565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200043a620004346200042e8462000405565b6200040f565b62000405565b9050919050565b6000819050919050565b620004568362000419565b6200046e620004658262000441565b848454620003af565b825550505050565b600090565b6200048562000476565b620004928184846200044b565b505050565b5b81811015620004ba57620004ae6000826200047b565b60018101905062000498565b5050565b601f8211156200050957620004d3816200037d565b620004de8462000392565b81016020851015620004ee578190505b62000506620004fd8562000392565b83018262000497565b50505b505050565b600082821c905092915050565b60006200052e600019846008026200050e565b1980831691505092915050565b60006200054983836200051b565b9150826002028217905092915050565b6200056482620002df565b67ffffffffffffffff81111562000580576200057f620002ea565b5b6200058c825462000348565b62000599828285620004be565b600060209050601f831160018114620005d15760008415620005bc578287015190505b620005c885826200053b565b86555062000638565b601f198416620005e1866200037d565b60005b828110156200060b57848901518255600182019150602085019450602081019050620005e4565b868310156200062b578489015162000627601f8916826200051b565b8355505b6001600288020188555050505b505050505050565b615b7080620006506000396000f3fe60806040526004361061027d5760003560e01c8063715018a61161014f578063b6935501116100c1578063d40b99a51161007a578063d40b99a514610944578063e36d64981461095b578063e985e9c514610986578063e9866550146109c3578063f028bd2e146109da578063f2fde38b14610a055761027d565b8063b693550114610836578063b88d4fde1461085f578063c08fa1a414610888578063c87b56dd146108b3578063ca4576b7146108f0578063cb774d47146109195761027d565b80639845a51a116101135780639845a51a146107375780639c84bd63146107605780639d2154061461078b5780639ffbbd5e146107c8578063a22cb465146107f1578063b53c9c6c1461081a5761027d565b8063715018a61461068857806375f12b211461069f5780637d17fcbe146106ca5780638da5cb5b146106e157806395d89b411461070c5761027d565b806331a53e9a116101f35780635c975abb116101ac5780635c975abb1461055b57806363230111146105865780636352211e146105b15780636817c76c146105ee5780636c807a9d1461061957806370a082311461064b5761027d565b806331a53e9a1461047357806332cb6b0c1461049e5780633ccfd60b146104c957806342842e0e146104e057806355f804b31461050957806358dc981f146105325761027d565b80631096952311610245578063109695231461037b5780631329ea8e146103a457806318160ddd146103cd57806323b872dd146103f85780632ae87dd2146104215780632b3211941461044a5761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063095ea7b3146103275780630d36648d14610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a491906138e4565b610a2e565b6040516102b6919061392c565b60405180910390f35b3480156102cb57600080fd5b506102d4610b10565b6040516102e191906139d7565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190613a2f565b610ba2565b60405161031e9190613a9d565b60405180910390f35b34801561033357600080fd5b5061034e60048036038101906103499190613ae4565b610c27565b005b34801561035c57600080fd5b50610365610d3e565b604051610372919061392c565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d9190613c59565b610de3565b005b3480156103b057600080fd5b506103cb60048036038101906103c69190613ca2565b610e72565b005b3480156103d957600080fd5b506103e2610f32565b6040516103ef9190613cde565b60405180910390f35b34801561040457600080fd5b5061041f600480360381019061041a9190613cf9565b610f57565b005b34801561042d57600080fd5b5061044860048036038101906104439190613ae4565b610fb7565b005b34801561045657600080fd5b50610471600480360381019061046c9190613ca2565b611155565b005b34801561047f57600080fd5b50610488611215565b6040516104959190613cde565b60405180910390f35b3480156104aa57600080fd5b506104b361121a565b6040516104c09190613cde565b60405180910390f35b3480156104d557600080fd5b506104de611220565b005b3480156104ec57600080fd5b5061050760048036038101906105029190613cf9565b61134a565b005b34801561051557600080fd5b50610530600480360381019061052b9190613c59565b61136a565b005b34801561053e57600080fd5b5061055960048036038101906105549190613e14565b611433565b005b34801561056757600080fd5b50610570611561565b60405161057d919061392c565b60405180910390f35b34801561059257600080fd5b5061059b611574565b6040516105a89190613cde565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d39190613a2f565b61157a565b6040516105e59190613a9d565b60405180910390f35b3480156105fa57600080fd5b5061060361162b565b6040516106109190613cde565b60405180910390f35b610633600480360381019061062e9190613f71565b611637565b60405161064293929190613fb1565b60405180910390f35b34801561065757600080fd5b50610672600480360381019061066d9190613ca2565b611802565b60405161067f9190613cde565b60405180910390f35b34801561069457600080fd5b5061069d6118b9565b005b3480156106ab57600080fd5b506106b4611941565b6040516106c1919061392c565b60405180910390f35b3480156106d657600080fd5b506106df611954565b005b3480156106ed57600080fd5b506106f6611a74565b6040516107039190613a9d565b60405180910390f35b34801561071857600080fd5b50610721611a9e565b60405161072e91906139d7565b60405180910390f35b34801561074357600080fd5b5061075e60048036038101906107599190613a2f565b611b30565b005b34801561076c57600080fd5b50610775611bb6565b6040516107829190613a9d565b60405180910390f35b34801561079757600080fd5b506107b260048036038101906107ad9190613f71565b611bdc565b6040516107bf919061392c565b60405180910390f35b3480156107d457600080fd5b506107ef60048036038101906107ea9190613ca2565b611bf1565b005b3480156107fd57600080fd5b506108186004803603810190610813919061401b565b611cb1565b005b610834600480360381019061082f9190613ca2565b611cc7565b005b34801561084257600080fd5b5061085d6004803603810190610858919061405b565b611d66565b005b34801561086b57600080fd5b5061088660048036038101906108819190614129565b611dff565b005b34801561089457600080fd5b5061089d611e61565b6040516108aa9190613cde565b60405180910390f35b3480156108bf57600080fd5b506108da60048036038101906108d59190613a2f565b611eaf565b6040516108e791906139d7565b60405180910390f35b3480156108fc57600080fd5b5061091760048036038101906109129190613ca2565b611f56565b005b34801561092557600080fd5b5061092e612085565b60405161093b9190613cde565b60405180910390f35b34801561095057600080fd5b5061095961208b565b005b34801561096757600080fd5b50610970612136565b60405161097d9190613cde565b60405180910390f35b34801561099257600080fd5b506109ad60048036038101906109a891906141ac565b61213c565b6040516109ba919061392c565b60405180910390f35b3480156109cf57600080fd5b506109d86121d0565b005b3480156109e657600080fd5b506109ef6122d3565b6040516109fc91906139d7565b60405180910390f35b348015610a1157600080fd5b50610a2c6004803603810190610a279190613ca2565b612361565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610af957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b095750610b0882612458565b5b9050919050565b606060008054610b1f9061421b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4b9061421b565b8015610b985780601f10610b6d57610100808354040283529160200191610b98565b820191906000526020600020905b815481529060010190602001808311610b7b57829003601f168201915b5050505050905090565b6000610bad826124c2565b610bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be3906142be565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c328261157a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9990614350565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cc161252e565b73ffffffffffffffffffffffffffffffffffffffff161480610cf05750610cef81610cea61252e565b61213c565b5b610d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d26906143e2565b60405180910390fd5b610d398383612536565b505050565b600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166359770438336040518263ffffffff1660e01b8152600401610d9c9190613a9d565b602060405180830381865afa158015610db9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ddd9190614417565b11905090565b610deb61252e565b73ffffffffffffffffffffffffffffffffffffffff16610e09611a74565b73ffffffffffffffffffffffffffffffffffffffff1614610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5690614490565b60405180910390fd5b8060119081610e6e919061465c565b5050565b610e7a61252e565b73ffffffffffffffffffffffffffffffffffffffff16610e98611a74565b73ffffffffffffffffffffffffffffffffffffffff1614610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee590614490565b60405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610f3e600a6125ef565b610f4860086125ef565b610f52919061475d565b905090565b610f68610f6261252e565b826125fd565b610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e90614803565b60405180910390fd5b610fb28383836126db565b505050565b610fbf61252e565b73ffffffffffffffffffffffffffffffffffffffff16610fdd611a74565b73ffffffffffffffffffffffffffffffffffffffff1614611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a90614490565b60405180910390fd5b60001515600760159054906101000a900460ff16151514611089576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110809061486f565b60405180910390fd5b60011515600760149054906101000a900460ff161515146110df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d6906148db565b60405180910390fd5b60006110eb60086125ef565b6106986110f8919061475d565b90506000818311611109578261110b565b815b905060005b8181101561114e576111226008612941565b600061112e60086125ef565b905061113a8682612957565b508080611146906148fb565b915050611110565b5050505050565b61115d61252e565b73ffffffffffffffffffffffffffffffffffffffff1661117b611a74565b73ffffffffffffffffffffffffffffffffffffffff16146111d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c890614490565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60bc81565b61069881565b61122861252e565b73ffffffffffffffffffffffffffffffffffffffff16611246611a74565b73ffffffffffffffffffffffffffffffffffffffff161461129c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129390614490565b60405180910390fd5b600047116112df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d69061498f565b60405180910390fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611347573d6000803e3d6000fd5b50565b61136583838360405180602001604052806000815250611dff565b505050565b61137261252e565b73ffffffffffffffffffffffffffffffffffffffff16611390611a74565b73ffffffffffffffffffffffffffffffffffffffff16146113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd90614490565b60405180910390fd5b7f9e30389099fbd0cfa7f14f27328e45e857b8d582d70741dde100593ab60d3cc7600e82604051611418929190614a33565b60405180910390a180600e908161142f919061465c565b5050565b61143b61252e565b73ffffffffffffffffffffffffffffffffffffffff16611459611a74565b73ffffffffffffffffffffffffffffffffffffffff16146114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a690614490565b60405180910390fd5b60bc81516114bd60096125ef565b6114c79190614a6a565b1115611508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ff90614aea565b60405180910390fd5b60005b815181101561155d5761151e6009612941565b600082828151811061153357611532614b0a565b5b6020026020010151905061154681612975565b505050508080611555906148fb565b91505061150b565b5050565b600760149054906101000a900460ff1681565b600d5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161990614bab565b60405180910390fd5b80915050919050565b6729a2241af62c000081565b60006060600080611646612b49565b11611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d90614c17565b60405180910390fd5b611691338686612b87565b6116d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c790614c83565b60405180910390fd5b6729a2241af62c000034101561171b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171290614cef565b60405180910390fd5b611723610d3e565b611762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175990614d5b565b60405180910390fd5b600d546117ac600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206125ef565b106117ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e390614dc7565b60405180910390fd5b6117f533612975565b9250925092509250925092565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186990614e59565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118c161252e565b73ffffffffffffffffffffffffffffffffffffffff166118df611a74565b73ffffffffffffffffffffffffffffffffffffffff1614611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c90614490565b60405180910390fd5b61193f6000612c78565b565b600760159054906101000a900460ff1681565b61195c61252e565b73ffffffffffffffffffffffffffffffffffffffff1661197a611a74565b73ffffffffffffffffffffffffffffffffffffffff16146119d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c790614490565b60405180910390fd5b60011515600760159054906101000a900460ff16151514611a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1d90614ec5565b60405180910390fd5b600060135414611a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6290614f31565b60405180910390fd5b43601281905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611aad9061421b565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad99061421b565b8015611b265780601f10611afb57610100808354040283529160200191611b26565b820191906000526020600020905b815481529060010190602001808311611b0957829003601f168201915b5050505050905090565b611b3861252e565b73ffffffffffffffffffffffffffffffffffffffff16611b56611a74565b73ffffffffffffffffffffffffffffffffffffffff1614611bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba390614490565b60405180910390fd5b80600d8190555050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611be9338484612b87565b905092915050565b611bf961252e565b73ffffffffffffffffffffffffffffffffffffffff16611c17611a74565b73ffffffffffffffffffffffffffffffffffffffff1614611c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6490614490565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611cc3611cbc61252e565b8383612d3e565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4e90614f9d565b60405180910390fd5b611d6081612975565b50505050565b611d6e61252e565b73ffffffffffffffffffffffffffffffffffffffff16611d8c611a74565b73ffffffffffffffffffffffffffffffffffffffff1614611de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd990614490565b60405180910390fd5b80600760146101000a81548160ff02191690831515021790555050565b611e10611e0a61252e565b836125fd565b611e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4690614803565b60405180910390fd5b611e5b84848484612eaa565b50505050565b6000611eaa600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206125ef565b905090565b6060611eba826124c2565b611ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef09061502f565b60405180910390fd5b6000611f03612f06565b90506000815111611f235760405180602001604052806000815250611f4e565b80611f2d84612f98565b604051602001611f3e92919061508b565b6040516020818303038152906040525b915050919050565b611f5e61252e565b73ffffffffffffffffffffffffffffffffffffffff16611f7c611a74565b73ffffffffffffffffffffffffffffffffffffffff1614611fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc990614490565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203890615121565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b61209361252e565b73ffffffffffffffffffffffffffffffffffffffff166120b1611a74565b73ffffffffffffffffffffffffffffffffffffffff1614612107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fe90614490565b60405180910390fd5b6001600760156101000a81548160ff02191690831515021790555060006013540361213457436012819055505b565b60125481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600060135414612215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220c90614f31565b60405180910390fd5b60006012540361225a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122519061518d565b60405180910390fd5b60ff6012544361226a919061475d565b111561229e57612278610f32565b600143612285919061475d565b4060001c61229391906151dc565b6013819055506122be565b6122a6610f32565b6012544060001c6122b791906151dc565b6013819055505b6000601354036122d15760016013819055505b565b601180546122e09061421b565b80601f016020809104026020016040519081016040528092919081815260200182805461230c9061421b565b80156123595780601f1061232e57610100808354040283529160200191612359565b820191906000526020600020905b81548152906001019060200180831161233c57829003601f168201915b505050505081565b61236961252e565b73ffffffffffffffffffffffffffffffffffffffff16612387611a74565b73ffffffffffffffffffffffffffffffffffffffff16146123dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d490614490565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361244c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124439061527f565b60405180910390fd5b61245581612c78565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125a98361157a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000612608826124c2565b612647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263e90615311565b60405180910390fd5b60006126528361157a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806126945750612693818561213c565b5b806126d257508373ffffffffffffffffffffffffffffffffffffffff166126ba84610ba2565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126fb8261157a565b73ffffffffffffffffffffffffffffffffffffffff1614612751576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612748906153a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b790615435565b60405180910390fd5b6127cb8383836130f8565b6127d6600082612536565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612826919061475d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461287d9190614a6a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461293c838383613147565b505050565b6001816000016000828254019250508190555050565b61297182826040518060200160405280600081525061314c565b5050565b600060606000801515600760159054906101000a900460ff161515146129d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c79061486f565b60405180910390fd5b60001515600760149054906101000a900460ff16151514612a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1d906154a1565b60405180910390fd5b610698612a3360086125ef565b10612a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6a9061550d565b60405180910390fd5b612a7d6008612941565b6000612a8960086125ef565b9050612ad2600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612941565b612ada6131a7565b612ae48582612957565b6000612aef82611eaf565b90508181612b3a600f60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206125ef565b94509450945050509193909250565b6000612b5560096125ef565b612b5f60086125ef565b612b69919061475d565b60bc610698612b78919061475d565b612b82919061475d565b905090565b600082600001514210612bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc690615579565b60405180910390fd5b6000848460000151604051602001612be8929190615599565b6040516020818303038152906040528051906020012090506000612c1a828560400151866000015187602001516131ed565b9050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614925050509392505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da39061560e565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612e9d919061392c565b60405180910390a3505050565b612eb58484846126db565b612ec184848484613218565b612f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef7906156a0565b60405180910390fd5b50505050565b6060600e8054612f159061421b565b80601f0160208091040260200160405190810160405280929190818152602001828054612f419061421b565b8015612f8e5780601f10612f6357610100808354040283529160200191612f8e565b820191906000526020600020905b815481529060010190602001808311612f7157829003601f168201915b5050505050905090565b606060008203612fdf576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506130f3565b600082905060005b60008214613011578080612ffa906148fb565b915050600a8261300a91906156c0565b9150612fe7565b60008167ffffffffffffffff81111561302d5761302c613b2e565b5b6040519080825280601f01601f19166020018201604052801561305f5781602001600182028036833780820191505090505b5090505b600085146130ec57600182613078919061475d565b9150600a8561308791906151dc565b60306130939190614a6a565b60f81b8183815181106130a9576130a8614b0a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130e591906156c0565b9450613063565b8093505050505b919050565b61310383838361339f565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361314257613141600a612941565b5b505050565b505050565b61315683836133a4565b6131636000848484613218565b6131a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613199906156a0565b60405180910390fd5b505050565b60006012541480156131c357506106986131c160086125ef565b145b156131eb57436012819055506001600760156101000a81548160ff0219169083151502179055505b565b60008060006131fe8787878761357d565b9150915061320b81613689565b8192505050949350505050565b60006132398473ffffffffffffffffffffffffffffffffffffffff16613855565b15613392578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261326261252e565b8786866040518563ffffffff1660e01b81526004016132849493929190615746565b6020604051808303816000875af19250505080156132c057506040513d601f19601f820116820180604052508101906132bd91906157a7565b60015b613342573d80600081146132f0576040519150601f19603f3d011682016040523d82523d6000602084013e6132f5565b606091505b50600081510361333a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613331906156a0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613397565b600190505b949350505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161340a90615820565b60405180910390fd5b61341c816124c2565b1561345c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134539061588c565b60405180910390fd5b613468600083836130f8565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134b89190614a6a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461357960008383613147565b5050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156135b8576000600391509150613680565b601b8560ff16141580156135d05750601c8560ff1614155b156135e2576000600491509150613680565b60006001878787876040516000815260200160405260405161360794939291906158ca565b6020604051602081039080840390855afa158015613629573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361367757600060019250925050613680565b80600092509250505b94509492505050565b6000600481111561369d5761369c61590f565b5b8160048111156136b0576136af61590f565b5b031561385257600160048111156136ca576136c961590f565b5b8160048111156136dd576136dc61590f565b5b0361371d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137149061598a565b60405180910390fd5b600260048111156137315761373061590f565b5b8160048111156137445761374361590f565b5b03613784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161377b906159f6565b60405180910390fd5b600360048111156137985761379761590f565b5b8160048111156137ab576137aa61590f565b5b036137eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137e290615a88565b60405180910390fd5b6004808111156137fe576137fd61590f565b5b8160048111156138115761381061590f565b5b03613851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161384890615b1a565b60405180910390fd5b5b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6138c18161388c565b81146138cc57600080fd5b50565b6000813590506138de816138b8565b92915050565b6000602082840312156138fa576138f9613882565b5b6000613908848285016138cf565b91505092915050565b60008115159050919050565b61392681613911565b82525050565b6000602082019050613941600083018461391d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613981578082015181840152602081019050613966565b60008484015250505050565b6000601f19601f8301169050919050565b60006139a982613947565b6139b38185613952565b93506139c3818560208601613963565b6139cc8161398d565b840191505092915050565b600060208201905081810360008301526139f1818461399e565b905092915050565b6000819050919050565b613a0c816139f9565b8114613a1757600080fd5b50565b600081359050613a2981613a03565b92915050565b600060208284031215613a4557613a44613882565b5b6000613a5384828501613a1a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613a8782613a5c565b9050919050565b613a9781613a7c565b82525050565b6000602082019050613ab26000830184613a8e565b92915050565b613ac181613a7c565b8114613acc57600080fd5b50565b600081359050613ade81613ab8565b92915050565b60008060408385031215613afb57613afa613882565b5b6000613b0985828601613acf565b9250506020613b1a85828601613a1a565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b668261398d565b810181811067ffffffffffffffff82111715613b8557613b84613b2e565b5b80604052505050565b6000613b98613878565b9050613ba48282613b5d565b919050565b600067ffffffffffffffff821115613bc457613bc3613b2e565b5b613bcd8261398d565b9050602081019050919050565b82818337600083830152505050565b6000613bfc613bf784613ba9565b613b8e565b905082815260208101848484011115613c1857613c17613b29565b5b613c23848285613bda565b509392505050565b600082601f830112613c4057613c3f613b24565b5b8135613c50848260208601613be9565b91505092915050565b600060208284031215613c6f57613c6e613882565b5b600082013567ffffffffffffffff811115613c8d57613c8c613887565b5b613c9984828501613c2b565b91505092915050565b600060208284031215613cb857613cb7613882565b5b6000613cc684828501613acf565b91505092915050565b613cd8816139f9565b82525050565b6000602082019050613cf36000830184613ccf565b92915050565b600080600060608486031215613d1257613d11613882565b5b6000613d2086828701613acf565b9350506020613d3186828701613acf565b9250506040613d4286828701613a1a565b9150509250925092565b600067ffffffffffffffff821115613d6757613d66613b2e565b5b602082029050602081019050919050565b600080fd5b6000613d90613d8b84613d4c565b613b8e565b90508083825260208201905060208402830185811115613db357613db2613d78565b5b835b81811015613ddc5780613dc88882613acf565b845260208401935050602081019050613db5565b5050509392505050565b600082601f830112613dfb57613dfa613b24565b5b8135613e0b848260208601613d7d565b91505092915050565b600060208284031215613e2a57613e29613882565b5b600082013567ffffffffffffffff811115613e4857613e47613887565b5b613e5484828501613de6565b91505092915050565b600080fd5b600060208284031215613e7857613e77613e5d565b5b613e826020613b8e565b90506000613e9284828501613a1a565b60008301525092915050565b6000819050919050565b613eb181613e9e565b8114613ebc57600080fd5b50565b600081359050613ece81613ea8565b92915050565b600060ff82169050919050565b613eea81613ed4565b8114613ef557600080fd5b50565b600081359050613f0781613ee1565b92915050565b600060608284031215613f2357613f22613e5d565b5b613f2d6060613b8e565b90506000613f3d84828501613ebf565b6000830152506020613f5184828501613ebf565b6020830152506040613f6584828501613ef8565b60408301525092915050565b60008060808385031215613f8857613f87613882565b5b6000613f9685828601613e62565b9250506020613fa785828601613f0d565b9150509250929050565b6000606082019050613fc66000830186613ccf565b8181036020830152613fd8818561399e565b9050613fe76040830184613ccf565b949350505050565b613ff881613911565b811461400357600080fd5b50565b60008135905061401581613fef565b92915050565b6000806040838503121561403257614031613882565b5b600061404085828601613acf565b925050602061405185828601614006565b9150509250929050565b60006020828403121561407157614070613882565b5b600061407f84828501614006565b91505092915050565b600067ffffffffffffffff8211156140a3576140a2613b2e565b5b6140ac8261398d565b9050602081019050919050565b60006140cc6140c784614088565b613b8e565b9050828152602081018484840111156140e8576140e7613b29565b5b6140f3848285613bda565b509392505050565b600082601f8301126141105761410f613b24565b5b81356141208482602086016140b9565b91505092915050565b6000806000806080858703121561414357614142613882565b5b600061415187828801613acf565b945050602061416287828801613acf565b935050604061417387828801613a1a565b925050606085013567ffffffffffffffff81111561419457614193613887565b5b6141a0878288016140fb565b91505092959194509250565b600080604083850312156141c3576141c2613882565b5b60006141d185828601613acf565b92505060206141e285828601613acf565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061423357607f821691505b602082108103614246576142456141ec565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006142a8602c83613952565b91506142b38261424c565b604082019050919050565b600060208201905081810360008301526142d78161429b565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061433a602183613952565b9150614345826142de565b604082019050919050565b600060208201905081810360008301526143698161432d565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006143cc603883613952565b91506143d782614370565b604082019050919050565b600060208201905081810360008301526143fb816143bf565b9050919050565b60008151905061441181613a03565b92915050565b60006020828403121561442d5761442c613882565b5b600061443b84828501614402565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061447a602083613952565b915061448582614444565b602082019050919050565b600060208201905081810360008301526144a98161446d565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026145127fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826144d5565b61451c86836144d5565b95508019841693508086168417925050509392505050565b6000819050919050565b600061455961455461454f846139f9565b614534565b6139f9565b9050919050565b6000819050919050565b6145738361453e565b61458761457f82614560565b8484546144e2565b825550505050565b600090565b61459c61458f565b6145a781848461456a565b505050565b5b818110156145cb576145c0600082614594565b6001810190506145ad565b5050565b601f821115614610576145e1816144b0565b6145ea846144c5565b810160208510156145f9578190505b61460d614605856144c5565b8301826145ac565b50505b505050565b600082821c905092915050565b600061463360001984600802614615565b1980831691505092915050565b600061464c8383614622565b9150826002028217905092915050565b61466582613947565b67ffffffffffffffff81111561467e5761467d613b2e565b5b614688825461421b565b6146938282856145cf565b600060209050601f8311600181146146c657600084156146b4578287015190505b6146be8582614640565b865550614726565b601f1984166146d4866144b0565b60005b828110156146fc578489015182556001820191506020850194506020810190506146d7565b868310156147195784890151614715601f891682614622565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614768826139f9565b9150614773836139f9565b925082820390508181111561478b5761478a61472e565b5b92915050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006147ed603183613952565b91506147f882614791565b604082019050919050565b6000602082019050818103600083015261481c816147e0565b9050919050565b7f4d696e742073746f707065640000000000000000000000000000000000000000600082015250565b6000614859600c83613952565b915061486482614823565b602082019050919050565b600060208201905081810360008301526148888161484c565b9050919050565b7f4d696e74206973206e6f74207061757365640000000000000000000000000000600082015250565b60006148c5601283613952565b91506148d08261488f565b602082019050919050565b600060208201905081810360008301526148f4816148b8565b9050919050565b6000614906826139f9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036149385761493761472e565b5b600182019050919050565b7f62616c616e636520697320302000000000000000000000000000000000000000600082015250565b6000614979600d83613952565b915061498482614943565b602082019050919050565b600060208201905081810360008301526149a88161496c565b9050919050565b600081546149bc8161421b565b6149c68186613952565b945060018216600081146149e157600181146149f757614a2a565b60ff198316865281151560200286019350614a2a565b614a00856144b0565b60005b83811015614a2257815481890152600182019150602081019050614a03565b808801955050505b50505092915050565b60006040820190508181036000830152614a4d81856149af565b90508181036020830152614a61818461399e565b90509392505050565b6000614a75826139f9565b9150614a80836139f9565b9250828201905080821115614a9857614a9761472e565b5b92915050565b7f4d6178696d756d20726573657276656420737570706c79207265616368656400600082015250565b6000614ad4601f83613952565b9150614adf82614a9e565b602082019050919050565b60006020820190508181036000830152614b0381614ac7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614b95602983613952565b9150614ba082614b39565b604082019050919050565b60006020820190508181036000830152614bc481614b88565b9050919050565b7f4d6178696d756d20737570706c79207265616368656400000000000000000000600082015250565b6000614c01601683613952565b9150614c0c82614bcb565b602082019050919050565b60006020820190508181036000830152614c3081614bf4565b9050919050565b7f4e6f6e2077686974656c69737465642075736572000000000000000000000000600082015250565b6000614c6d601483613952565b9150614c7882614c37565b602082019050919050565b60006020820190508181036000830152614c9c81614c60565b9050919050565b7f4e6f7420656e6f756768206574682073656e742e000000000000000000000000600082015250565b6000614cd9601483613952565b9150614ce482614ca3565b602082019050919050565b60006020820190508181036000830152614d0881614ccc565b9050919050565b7f4e6f20707978697320666f756e64000000000000000000000000000000000000600082015250565b6000614d45600e83613952565b9150614d5082614d0f565b602082019050919050565b60006020820190508181036000830152614d7481614d38565b9050919050565b7f506572207573657220737570706c792072656163686564000000000000000000600082015250565b6000614db1601783613952565b9150614dbc82614d7b565b602082019050919050565b60006020820190508181036000830152614de081614da4565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614e43602a83613952565b9150614e4e82614de7565b604082019050919050565b60006020820190508181036000830152614e7281614e36565b9050919050565b7f4d696e74206e6f742073746f7070656400000000000000000000000000000000600082015250565b6000614eaf601083613952565b9150614eba82614e79565b602082019050919050565b60006020820190508181036000830152614ede81614ea2565b9050919050565b7f5374617274696e6720696e6465782073657420616c7265616479000000000000600082015250565b6000614f1b601a83613952565b9150614f2682614ee5565b602082019050919050565b60006020820190508181036000830152614f4a81614f0e565b9050919050565b7f5468652063616c6c6572206973206e6f7420526573657276654d696e74000000600082015250565b6000614f87601d83613952565b9150614f9282614f51565b602082019050919050565b60006020820190508181036000830152614fb681614f7a565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000615019602f83613952565b915061502482614fbd565b604082019050919050565b600060208201905081810360008301526150488161500c565b9050919050565b600081905092915050565b600061506582613947565b61506f818561504f565b935061507f818560208601613963565b80840191505092915050565b6000615097828561505a565b91506150a3828461505a565b91508190509392505050565b7f436f75706f6e4f776e65723a206e6577206f776e657220697320746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061510b602a83613952565b9150615116826150af565b604082019050919050565b6000602082019050818103600083015261513a816150fe565b9050919050565b7f5374617274696e6720626c6f636b20696e646578206e6f742073657400000000600082015250565b6000615177601c83613952565b915061518282615141565b602082019050919050565b600060208201905081810360008301526151a68161516a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006151e7826139f9565b91506151f2836139f9565b925082615202576152016151ad565b5b828206905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615269602683613952565b91506152748261520d565b604082019050919050565b600060208201905081810360008301526152988161525c565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006152fb602c83613952565b91506153068261529f565b604082019050919050565b6000602082019050818103600083015261532a816152ee565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061538d602583613952565b915061539882615331565b604082019050919050565b600060208201905081810360008301526153bc81615380565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061541f602483613952565b915061542a826153c3565b604082019050919050565b6000602082019050818103600083015261544e81615412565b9050919050565b7f4d696e7420706175736564000000000000000000000000000000000000000000600082015250565b600061548b600b83613952565b915061549682615455565b602082019050919050565b600060208201905081810360008301526154ba8161547e565b9050919050565b7f546f74616c20737570706c792072656163686564000000000000000000000000600082015250565b60006154f7601483613952565b9150615502826154c1565b602082019050919050565b60006020820190508181036000830152615526816154ea565b9050919050565b7f436f75706f6e2065787069726564000000000000000000000000000000000000600082015250565b6000615563600e83613952565b915061556e8261552d565b602082019050919050565b6000602082019050818103600083015261559281615556565b9050919050565b60006040820190506155ae6000830185613a8e565b6155bb6020830184613ccf565b9392505050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006155f8601983613952565b9150615603826155c2565b602082019050919050565b60006020820190508181036000830152615627816155eb565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061568a603283613952565b91506156958261562e565b604082019050919050565b600060208201905081810360008301526156b98161567d565b9050919050565b60006156cb826139f9565b91506156d6836139f9565b9250826156e6576156e56151ad565b5b828204905092915050565b600081519050919050565b600082825260208201905092915050565b6000615718826156f1565b61572281856156fc565b9350615732818560208601613963565b61573b8161398d565b840191505092915050565b600060808201905061575b6000830187613a8e565b6157686020830186613a8e565b6157756040830185613ccf565b8181036060830152615787818461570d565b905095945050505050565b6000815190506157a1816138b8565b92915050565b6000602082840312156157bd576157bc613882565b5b60006157cb84828501615792565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061580a602083613952565b9150615815826157d4565b602082019050919050565b60006020820190508181036000830152615839816157fd565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615876601c83613952565b915061588182615840565b602082019050919050565b600060208201905081810360008301526158a581615869565b9050919050565b6158b581613e9e565b82525050565b6158c481613ed4565b82525050565b60006080820190506158df60008301876158ac565b6158ec60208301866158bb565b6158f960408301856158ac565b61590660608301846158ac565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000615974601883613952565b915061597f8261593e565b602082019050919050565b600060208201905081810360008301526159a381615967565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b60006159e0601f83613952565b91506159eb826159aa565b602082019050919050565b60006020820190508181036000830152615a0f816159d3565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615a72602283613952565b9150615a7d82615a16565b604082019050919050565b60006020820190508181036000830152615aa181615a65565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615b04602283613952565b9150615b0f82615aa8565b604082019050919050565b60006020820190508181036000830152615b3381615af7565b905091905056fea2646970667358221220ca26a9c8495a091370de6b54caa02a3a610884856b8987b5a87653c80efe000a64736f6c63430008100033

Deployed Bytecode

0x60806040526004361061027d5760003560e01c8063715018a61161014f578063b6935501116100c1578063d40b99a51161007a578063d40b99a514610944578063e36d64981461095b578063e985e9c514610986578063e9866550146109c3578063f028bd2e146109da578063f2fde38b14610a055761027d565b8063b693550114610836578063b88d4fde1461085f578063c08fa1a414610888578063c87b56dd146108b3578063ca4576b7146108f0578063cb774d47146109195761027d565b80639845a51a116101135780639845a51a146107375780639c84bd63146107605780639d2154061461078b5780639ffbbd5e146107c8578063a22cb465146107f1578063b53c9c6c1461081a5761027d565b8063715018a61461068857806375f12b211461069f5780637d17fcbe146106ca5780638da5cb5b146106e157806395d89b411461070c5761027d565b806331a53e9a116101f35780635c975abb116101ac5780635c975abb1461055b57806363230111146105865780636352211e146105b15780636817c76c146105ee5780636c807a9d1461061957806370a082311461064b5761027d565b806331a53e9a1461047357806332cb6b0c1461049e5780633ccfd60b146104c957806342842e0e146104e057806355f804b31461050957806358dc981f146105325761027d565b80631096952311610245578063109695231461037b5780631329ea8e146103a457806318160ddd146103cd57806323b872dd146103f85780632ae87dd2146104215780632b3211941461044a5761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063095ea7b3146103275780630d36648d14610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a491906138e4565b610a2e565b6040516102b6919061392c565b60405180910390f35b3480156102cb57600080fd5b506102d4610b10565b6040516102e191906139d7565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190613a2f565b610ba2565b60405161031e9190613a9d565b60405180910390f35b34801561033357600080fd5b5061034e60048036038101906103499190613ae4565b610c27565b005b34801561035c57600080fd5b50610365610d3e565b604051610372919061392c565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d9190613c59565b610de3565b005b3480156103b057600080fd5b506103cb60048036038101906103c69190613ca2565b610e72565b005b3480156103d957600080fd5b506103e2610f32565b6040516103ef9190613cde565b60405180910390f35b34801561040457600080fd5b5061041f600480360381019061041a9190613cf9565b610f57565b005b34801561042d57600080fd5b5061044860048036038101906104439190613ae4565b610fb7565b005b34801561045657600080fd5b50610471600480360381019061046c9190613ca2565b611155565b005b34801561047f57600080fd5b50610488611215565b6040516104959190613cde565b60405180910390f35b3480156104aa57600080fd5b506104b361121a565b6040516104c09190613cde565b60405180910390f35b3480156104d557600080fd5b506104de611220565b005b3480156104ec57600080fd5b5061050760048036038101906105029190613cf9565b61134a565b005b34801561051557600080fd5b50610530600480360381019061052b9190613c59565b61136a565b005b34801561053e57600080fd5b5061055960048036038101906105549190613e14565b611433565b005b34801561056757600080fd5b50610570611561565b60405161057d919061392c565b60405180910390f35b34801561059257600080fd5b5061059b611574565b6040516105a89190613cde565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d39190613a2f565b61157a565b6040516105e59190613a9d565b60405180910390f35b3480156105fa57600080fd5b5061060361162b565b6040516106109190613cde565b60405180910390f35b610633600480360381019061062e9190613f71565b611637565b60405161064293929190613fb1565b60405180910390f35b34801561065757600080fd5b50610672600480360381019061066d9190613ca2565b611802565b60405161067f9190613cde565b60405180910390f35b34801561069457600080fd5b5061069d6118b9565b005b3480156106ab57600080fd5b506106b4611941565b6040516106c1919061392c565b60405180910390f35b3480156106d657600080fd5b506106df611954565b005b3480156106ed57600080fd5b506106f6611a74565b6040516107039190613a9d565b60405180910390f35b34801561071857600080fd5b50610721611a9e565b60405161072e91906139d7565b60405180910390f35b34801561074357600080fd5b5061075e60048036038101906107599190613a2f565b611b30565b005b34801561076c57600080fd5b50610775611bb6565b6040516107829190613a9d565b60405180910390f35b34801561079757600080fd5b506107b260048036038101906107ad9190613f71565b611bdc565b6040516107bf919061392c565b60405180910390f35b3480156107d457600080fd5b506107ef60048036038101906107ea9190613ca2565b611bf1565b005b3480156107fd57600080fd5b506108186004803603810190610813919061401b565b611cb1565b005b610834600480360381019061082f9190613ca2565b611cc7565b005b34801561084257600080fd5b5061085d6004803603810190610858919061405b565b611d66565b005b34801561086b57600080fd5b5061088660048036038101906108819190614129565b611dff565b005b34801561089457600080fd5b5061089d611e61565b6040516108aa9190613cde565b60405180910390f35b3480156108bf57600080fd5b506108da60048036038101906108d59190613a2f565b611eaf565b6040516108e791906139d7565b60405180910390f35b3480156108fc57600080fd5b5061091760048036038101906109129190613ca2565b611f56565b005b34801561092557600080fd5b5061092e612085565b60405161093b9190613cde565b60405180910390f35b34801561095057600080fd5b5061095961208b565b005b34801561096757600080fd5b50610970612136565b60405161097d9190613cde565b60405180910390f35b34801561099257600080fd5b506109ad60048036038101906109a891906141ac565b61213c565b6040516109ba919061392c565b60405180910390f35b3480156109cf57600080fd5b506109d86121d0565b005b3480156109e657600080fd5b506109ef6122d3565b6040516109fc91906139d7565b60405180910390f35b348015610a1157600080fd5b50610a2c6004803603810190610a279190613ca2565b612361565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610af957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b095750610b0882612458565b5b9050919050565b606060008054610b1f9061421b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4b9061421b565b8015610b985780601f10610b6d57610100808354040283529160200191610b98565b820191906000526020600020905b815481529060010190602001808311610b7b57829003601f168201915b5050505050905090565b6000610bad826124c2565b610bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be3906142be565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c328261157a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9990614350565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cc161252e565b73ffffffffffffffffffffffffffffffffffffffff161480610cf05750610cef81610cea61252e565b61213c565b5b610d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d26906143e2565b60405180910390fd5b610d398383612536565b505050565b600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166359770438336040518263ffffffff1660e01b8152600401610d9c9190613a9d565b602060405180830381865afa158015610db9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ddd9190614417565b11905090565b610deb61252e565b73ffffffffffffffffffffffffffffffffffffffff16610e09611a74565b73ffffffffffffffffffffffffffffffffffffffff1614610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5690614490565b60405180910390fd5b8060119081610e6e919061465c565b5050565b610e7a61252e565b73ffffffffffffffffffffffffffffffffffffffff16610e98611a74565b73ffffffffffffffffffffffffffffffffffffffff1614610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee590614490565b60405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610f3e600a6125ef565b610f4860086125ef565b610f52919061475d565b905090565b610f68610f6261252e565b826125fd565b610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e90614803565b60405180910390fd5b610fb28383836126db565b505050565b610fbf61252e565b73ffffffffffffffffffffffffffffffffffffffff16610fdd611a74565b73ffffffffffffffffffffffffffffffffffffffff1614611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a90614490565b60405180910390fd5b60001515600760159054906101000a900460ff16151514611089576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110809061486f565b60405180910390fd5b60011515600760149054906101000a900460ff161515146110df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d6906148db565b60405180910390fd5b60006110eb60086125ef565b6106986110f8919061475d565b90506000818311611109578261110b565b815b905060005b8181101561114e576111226008612941565b600061112e60086125ef565b905061113a8682612957565b508080611146906148fb565b915050611110565b5050505050565b61115d61252e565b73ffffffffffffffffffffffffffffffffffffffff1661117b611a74565b73ffffffffffffffffffffffffffffffffffffffff16146111d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c890614490565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60bc81565b61069881565b61122861252e565b73ffffffffffffffffffffffffffffffffffffffff16611246611a74565b73ffffffffffffffffffffffffffffffffffffffff161461129c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129390614490565b60405180910390fd5b600047116112df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d69061498f565b60405180910390fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611347573d6000803e3d6000fd5b50565b61136583838360405180602001604052806000815250611dff565b505050565b61137261252e565b73ffffffffffffffffffffffffffffffffffffffff16611390611a74565b73ffffffffffffffffffffffffffffffffffffffff16146113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd90614490565b60405180910390fd5b7f9e30389099fbd0cfa7f14f27328e45e857b8d582d70741dde100593ab60d3cc7600e82604051611418929190614a33565b60405180910390a180600e908161142f919061465c565b5050565b61143b61252e565b73ffffffffffffffffffffffffffffffffffffffff16611459611a74565b73ffffffffffffffffffffffffffffffffffffffff16146114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a690614490565b60405180910390fd5b60bc81516114bd60096125ef565b6114c79190614a6a565b1115611508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ff90614aea565b60405180910390fd5b60005b815181101561155d5761151e6009612941565b600082828151811061153357611532614b0a565b5b6020026020010151905061154681612975565b505050508080611555906148fb565b91505061150b565b5050565b600760149054906101000a900460ff1681565b600d5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161990614bab565b60405180910390fd5b80915050919050565b6729a2241af62c000081565b60006060600080611646612b49565b11611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d90614c17565b60405180910390fd5b611691338686612b87565b6116d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c790614c83565b60405180910390fd5b6729a2241af62c000034101561171b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171290614cef565b60405180910390fd5b611723610d3e565b611762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175990614d5b565b60405180910390fd5b600d546117ac600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206125ef565b106117ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e390614dc7565b60405180910390fd5b6117f533612975565b9250925092509250925092565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186990614e59565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118c161252e565b73ffffffffffffffffffffffffffffffffffffffff166118df611a74565b73ffffffffffffffffffffffffffffffffffffffff1614611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c90614490565b60405180910390fd5b61193f6000612c78565b565b600760159054906101000a900460ff1681565b61195c61252e565b73ffffffffffffffffffffffffffffffffffffffff1661197a611a74565b73ffffffffffffffffffffffffffffffffffffffff16146119d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c790614490565b60405180910390fd5b60011515600760159054906101000a900460ff16151514611a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1d90614ec5565b60405180910390fd5b600060135414611a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6290614f31565b60405180910390fd5b43601281905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611aad9061421b565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad99061421b565b8015611b265780601f10611afb57610100808354040283529160200191611b26565b820191906000526020600020905b815481529060010190602001808311611b0957829003601f168201915b5050505050905090565b611b3861252e565b73ffffffffffffffffffffffffffffffffffffffff16611b56611a74565b73ffffffffffffffffffffffffffffffffffffffff1614611bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba390614490565b60405180910390fd5b80600d8190555050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611be9338484612b87565b905092915050565b611bf961252e565b73ffffffffffffffffffffffffffffffffffffffff16611c17611a74565b73ffffffffffffffffffffffffffffffffffffffff1614611c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6490614490565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611cc3611cbc61252e565b8383612d3e565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4e90614f9d565b60405180910390fd5b611d6081612975565b50505050565b611d6e61252e565b73ffffffffffffffffffffffffffffffffffffffff16611d8c611a74565b73ffffffffffffffffffffffffffffffffffffffff1614611de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd990614490565b60405180910390fd5b80600760146101000a81548160ff02191690831515021790555050565b611e10611e0a61252e565b836125fd565b611e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4690614803565b60405180910390fd5b611e5b84848484612eaa565b50505050565b6000611eaa600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206125ef565b905090565b6060611eba826124c2565b611ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef09061502f565b60405180910390fd5b6000611f03612f06565b90506000815111611f235760405180602001604052806000815250611f4e565b80611f2d84612f98565b604051602001611f3e92919061508b565b6040516020818303038152906040525b915050919050565b611f5e61252e565b73ffffffffffffffffffffffffffffffffffffffff16611f7c611a74565b73ffffffffffffffffffffffffffffffffffffffff1614611fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc990614490565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203890615121565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b61209361252e565b73ffffffffffffffffffffffffffffffffffffffff166120b1611a74565b73ffffffffffffffffffffffffffffffffffffffff1614612107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fe90614490565b60405180910390fd5b6001600760156101000a81548160ff02191690831515021790555060006013540361213457436012819055505b565b60125481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600060135414612215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220c90614f31565b60405180910390fd5b60006012540361225a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122519061518d565b60405180910390fd5b60ff6012544361226a919061475d565b111561229e57612278610f32565b600143612285919061475d565b4060001c61229391906151dc565b6013819055506122be565b6122a6610f32565b6012544060001c6122b791906151dc565b6013819055505b6000601354036122d15760016013819055505b565b601180546122e09061421b565b80601f016020809104026020016040519081016040528092919081815260200182805461230c9061421b565b80156123595780601f1061232e57610100808354040283529160200191612359565b820191906000526020600020905b81548152906001019060200180831161233c57829003601f168201915b505050505081565b61236961252e565b73ffffffffffffffffffffffffffffffffffffffff16612387611a74565b73ffffffffffffffffffffffffffffffffffffffff16146123dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d490614490565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361244c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124439061527f565b60405180910390fd5b61245581612c78565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125a98361157a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000612608826124c2565b612647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263e90615311565b60405180910390fd5b60006126528361157a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806126945750612693818561213c565b5b806126d257508373ffffffffffffffffffffffffffffffffffffffff166126ba84610ba2565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126fb8261157a565b73ffffffffffffffffffffffffffffffffffffffff1614612751576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612748906153a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b790615435565b60405180910390fd5b6127cb8383836130f8565b6127d6600082612536565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612826919061475d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461287d9190614a6a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461293c838383613147565b505050565b6001816000016000828254019250508190555050565b61297182826040518060200160405280600081525061314c565b5050565b600060606000801515600760159054906101000a900460ff161515146129d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c79061486f565b60405180910390fd5b60001515600760149054906101000a900460ff16151514612a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1d906154a1565b60405180910390fd5b610698612a3360086125ef565b10612a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6a9061550d565b60405180910390fd5b612a7d6008612941565b6000612a8960086125ef565b9050612ad2600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612941565b612ada6131a7565b612ae48582612957565b6000612aef82611eaf565b90508181612b3a600f60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206125ef565b94509450945050509193909250565b6000612b5560096125ef565b612b5f60086125ef565b612b69919061475d565b60bc610698612b78919061475d565b612b82919061475d565b905090565b600082600001514210612bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc690615579565b60405180910390fd5b6000848460000151604051602001612be8929190615599565b6040516020818303038152906040528051906020012090506000612c1a828560400151866000015187602001516131ed565b9050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614925050509392505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da39061560e565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612e9d919061392c565b60405180910390a3505050565b612eb58484846126db565b612ec184848484613218565b612f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef7906156a0565b60405180910390fd5b50505050565b6060600e8054612f159061421b565b80601f0160208091040260200160405190810160405280929190818152602001828054612f419061421b565b8015612f8e5780601f10612f6357610100808354040283529160200191612f8e565b820191906000526020600020905b815481529060010190602001808311612f7157829003601f168201915b5050505050905090565b606060008203612fdf576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506130f3565b600082905060005b60008214613011578080612ffa906148fb565b915050600a8261300a91906156c0565b9150612fe7565b60008167ffffffffffffffff81111561302d5761302c613b2e565b5b6040519080825280601f01601f19166020018201604052801561305f5781602001600182028036833780820191505090505b5090505b600085146130ec57600182613078919061475d565b9150600a8561308791906151dc565b60306130939190614a6a565b60f81b8183815181106130a9576130a8614b0a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130e591906156c0565b9450613063565b8093505050505b919050565b61310383838361339f565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361314257613141600a612941565b5b505050565b505050565b61315683836133a4565b6131636000848484613218565b6131a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613199906156a0565b60405180910390fd5b505050565b60006012541480156131c357506106986131c160086125ef565b145b156131eb57436012819055506001600760156101000a81548160ff0219169083151502179055505b565b60008060006131fe8787878761357d565b9150915061320b81613689565b8192505050949350505050565b60006132398473ffffffffffffffffffffffffffffffffffffffff16613855565b15613392578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261326261252e565b8786866040518563ffffffff1660e01b81526004016132849493929190615746565b6020604051808303816000875af19250505080156132c057506040513d601f19601f820116820180604052508101906132bd91906157a7565b60015b613342573d80600081146132f0576040519150601f19603f3d011682016040523d82523d6000602084013e6132f5565b606091505b50600081510361333a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613331906156a0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613397565b600190505b949350505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161340a90615820565b60405180910390fd5b61341c816124c2565b1561345c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134539061588c565b60405180910390fd5b613468600083836130f8565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134b89190614a6a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461357960008383613147565b5050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156135b8576000600391509150613680565b601b8560ff16141580156135d05750601c8560ff1614155b156135e2576000600491509150613680565b60006001878787876040516000815260200160405260405161360794939291906158ca565b6020604051602081039080840390855afa158015613629573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361367757600060019250925050613680565b80600092509250505b94509492505050565b6000600481111561369d5761369c61590f565b5b8160048111156136b0576136af61590f565b5b031561385257600160048111156136ca576136c961590f565b5b8160048111156136dd576136dc61590f565b5b0361371d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137149061598a565b60405180910390fd5b600260048111156137315761373061590f565b5b8160048111156137445761374361590f565b5b03613784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161377b906159f6565b60405180910390fd5b600360048111156137985761379761590f565b5b8160048111156137ab576137aa61590f565b5b036137eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137e290615a88565b60405180910390fd5b6004808111156137fe576137fd61590f565b5b8160048111156138115761381061590f565b5b03613851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161384890615b1a565b60405180910390fd5b5b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6138c18161388c565b81146138cc57600080fd5b50565b6000813590506138de816138b8565b92915050565b6000602082840312156138fa576138f9613882565b5b6000613908848285016138cf565b91505092915050565b60008115159050919050565b61392681613911565b82525050565b6000602082019050613941600083018461391d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613981578082015181840152602081019050613966565b60008484015250505050565b6000601f19601f8301169050919050565b60006139a982613947565b6139b38185613952565b93506139c3818560208601613963565b6139cc8161398d565b840191505092915050565b600060208201905081810360008301526139f1818461399e565b905092915050565b6000819050919050565b613a0c816139f9565b8114613a1757600080fd5b50565b600081359050613a2981613a03565b92915050565b600060208284031215613a4557613a44613882565b5b6000613a5384828501613a1a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613a8782613a5c565b9050919050565b613a9781613a7c565b82525050565b6000602082019050613ab26000830184613a8e565b92915050565b613ac181613a7c565b8114613acc57600080fd5b50565b600081359050613ade81613ab8565b92915050565b60008060408385031215613afb57613afa613882565b5b6000613b0985828601613acf565b9250506020613b1a85828601613a1a565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b668261398d565b810181811067ffffffffffffffff82111715613b8557613b84613b2e565b5b80604052505050565b6000613b98613878565b9050613ba48282613b5d565b919050565b600067ffffffffffffffff821115613bc457613bc3613b2e565b5b613bcd8261398d565b9050602081019050919050565b82818337600083830152505050565b6000613bfc613bf784613ba9565b613b8e565b905082815260208101848484011115613c1857613c17613b29565b5b613c23848285613bda565b509392505050565b600082601f830112613c4057613c3f613b24565b5b8135613c50848260208601613be9565b91505092915050565b600060208284031215613c6f57613c6e613882565b5b600082013567ffffffffffffffff811115613c8d57613c8c613887565b5b613c9984828501613c2b565b91505092915050565b600060208284031215613cb857613cb7613882565b5b6000613cc684828501613acf565b91505092915050565b613cd8816139f9565b82525050565b6000602082019050613cf36000830184613ccf565b92915050565b600080600060608486031215613d1257613d11613882565b5b6000613d2086828701613acf565b9350506020613d3186828701613acf565b9250506040613d4286828701613a1a565b9150509250925092565b600067ffffffffffffffff821115613d6757613d66613b2e565b5b602082029050602081019050919050565b600080fd5b6000613d90613d8b84613d4c565b613b8e565b90508083825260208201905060208402830185811115613db357613db2613d78565b5b835b81811015613ddc5780613dc88882613acf565b845260208401935050602081019050613db5565b5050509392505050565b600082601f830112613dfb57613dfa613b24565b5b8135613e0b848260208601613d7d565b91505092915050565b600060208284031215613e2a57613e29613882565b5b600082013567ffffffffffffffff811115613e4857613e47613887565b5b613e5484828501613de6565b91505092915050565b600080fd5b600060208284031215613e7857613e77613e5d565b5b613e826020613b8e565b90506000613e9284828501613a1a565b60008301525092915050565b6000819050919050565b613eb181613e9e565b8114613ebc57600080fd5b50565b600081359050613ece81613ea8565b92915050565b600060ff82169050919050565b613eea81613ed4565b8114613ef557600080fd5b50565b600081359050613f0781613ee1565b92915050565b600060608284031215613f2357613f22613e5d565b5b613f2d6060613b8e565b90506000613f3d84828501613ebf565b6000830152506020613f5184828501613ebf565b6020830152506040613f6584828501613ef8565b60408301525092915050565b60008060808385031215613f8857613f87613882565b5b6000613f9685828601613e62565b9250506020613fa785828601613f0d565b9150509250929050565b6000606082019050613fc66000830186613ccf565b8181036020830152613fd8818561399e565b9050613fe76040830184613ccf565b949350505050565b613ff881613911565b811461400357600080fd5b50565b60008135905061401581613fef565b92915050565b6000806040838503121561403257614031613882565b5b600061404085828601613acf565b925050602061405185828601614006565b9150509250929050565b60006020828403121561407157614070613882565b5b600061407f84828501614006565b91505092915050565b600067ffffffffffffffff8211156140a3576140a2613b2e565b5b6140ac8261398d565b9050602081019050919050565b60006140cc6140c784614088565b613b8e565b9050828152602081018484840111156140e8576140e7613b29565b5b6140f3848285613bda565b509392505050565b600082601f8301126141105761410f613b24565b5b81356141208482602086016140b9565b91505092915050565b6000806000806080858703121561414357614142613882565b5b600061415187828801613acf565b945050602061416287828801613acf565b935050604061417387828801613a1a565b925050606085013567ffffffffffffffff81111561419457614193613887565b5b6141a0878288016140fb565b91505092959194509250565b600080604083850312156141c3576141c2613882565b5b60006141d185828601613acf565b92505060206141e285828601613acf565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061423357607f821691505b602082108103614246576142456141ec565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006142a8602c83613952565b91506142b38261424c565b604082019050919050565b600060208201905081810360008301526142d78161429b565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061433a602183613952565b9150614345826142de565b604082019050919050565b600060208201905081810360008301526143698161432d565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006143cc603883613952565b91506143d782614370565b604082019050919050565b600060208201905081810360008301526143fb816143bf565b9050919050565b60008151905061441181613a03565b92915050565b60006020828403121561442d5761442c613882565b5b600061443b84828501614402565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061447a602083613952565b915061448582614444565b602082019050919050565b600060208201905081810360008301526144a98161446d565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026145127fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826144d5565b61451c86836144d5565b95508019841693508086168417925050509392505050565b6000819050919050565b600061455961455461454f846139f9565b614534565b6139f9565b9050919050565b6000819050919050565b6145738361453e565b61458761457f82614560565b8484546144e2565b825550505050565b600090565b61459c61458f565b6145a781848461456a565b505050565b5b818110156145cb576145c0600082614594565b6001810190506145ad565b5050565b601f821115614610576145e1816144b0565b6145ea846144c5565b810160208510156145f9578190505b61460d614605856144c5565b8301826145ac565b50505b505050565b600082821c905092915050565b600061463360001984600802614615565b1980831691505092915050565b600061464c8383614622565b9150826002028217905092915050565b61466582613947565b67ffffffffffffffff81111561467e5761467d613b2e565b5b614688825461421b565b6146938282856145cf565b600060209050601f8311600181146146c657600084156146b4578287015190505b6146be8582614640565b865550614726565b601f1984166146d4866144b0565b60005b828110156146fc578489015182556001820191506020850194506020810190506146d7565b868310156147195784890151614715601f891682614622565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614768826139f9565b9150614773836139f9565b925082820390508181111561478b5761478a61472e565b5b92915050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006147ed603183613952565b91506147f882614791565b604082019050919050565b6000602082019050818103600083015261481c816147e0565b9050919050565b7f4d696e742073746f707065640000000000000000000000000000000000000000600082015250565b6000614859600c83613952565b915061486482614823565b602082019050919050565b600060208201905081810360008301526148888161484c565b9050919050565b7f4d696e74206973206e6f74207061757365640000000000000000000000000000600082015250565b60006148c5601283613952565b91506148d08261488f565b602082019050919050565b600060208201905081810360008301526148f4816148b8565b9050919050565b6000614906826139f9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036149385761493761472e565b5b600182019050919050565b7f62616c616e636520697320302000000000000000000000000000000000000000600082015250565b6000614979600d83613952565b915061498482614943565b602082019050919050565b600060208201905081810360008301526149a88161496c565b9050919050565b600081546149bc8161421b565b6149c68186613952565b945060018216600081146149e157600181146149f757614a2a565b60ff198316865281151560200286019350614a2a565b614a00856144b0565b60005b83811015614a2257815481890152600182019150602081019050614a03565b808801955050505b50505092915050565b60006040820190508181036000830152614a4d81856149af565b90508181036020830152614a61818461399e565b90509392505050565b6000614a75826139f9565b9150614a80836139f9565b9250828201905080821115614a9857614a9761472e565b5b92915050565b7f4d6178696d756d20726573657276656420737570706c79207265616368656400600082015250565b6000614ad4601f83613952565b9150614adf82614a9e565b602082019050919050565b60006020820190508181036000830152614b0381614ac7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614b95602983613952565b9150614ba082614b39565b604082019050919050565b60006020820190508181036000830152614bc481614b88565b9050919050565b7f4d6178696d756d20737570706c79207265616368656400000000000000000000600082015250565b6000614c01601683613952565b9150614c0c82614bcb565b602082019050919050565b60006020820190508181036000830152614c3081614bf4565b9050919050565b7f4e6f6e2077686974656c69737465642075736572000000000000000000000000600082015250565b6000614c6d601483613952565b9150614c7882614c37565b602082019050919050565b60006020820190508181036000830152614c9c81614c60565b9050919050565b7f4e6f7420656e6f756768206574682073656e742e000000000000000000000000600082015250565b6000614cd9601483613952565b9150614ce482614ca3565b602082019050919050565b60006020820190508181036000830152614d0881614ccc565b9050919050565b7f4e6f20707978697320666f756e64000000000000000000000000000000000000600082015250565b6000614d45600e83613952565b9150614d5082614d0f565b602082019050919050565b60006020820190508181036000830152614d7481614d38565b9050919050565b7f506572207573657220737570706c792072656163686564000000000000000000600082015250565b6000614db1601783613952565b9150614dbc82614d7b565b602082019050919050565b60006020820190508181036000830152614de081614da4565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614e43602a83613952565b9150614e4e82614de7565b604082019050919050565b60006020820190508181036000830152614e7281614e36565b9050919050565b7f4d696e74206e6f742073746f7070656400000000000000000000000000000000600082015250565b6000614eaf601083613952565b9150614eba82614e79565b602082019050919050565b60006020820190508181036000830152614ede81614ea2565b9050919050565b7f5374617274696e6720696e6465782073657420616c7265616479000000000000600082015250565b6000614f1b601a83613952565b9150614f2682614ee5565b602082019050919050565b60006020820190508181036000830152614f4a81614f0e565b9050919050565b7f5468652063616c6c6572206973206e6f7420526573657276654d696e74000000600082015250565b6000614f87601d83613952565b9150614f9282614f51565b602082019050919050565b60006020820190508181036000830152614fb681614f7a565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000615019602f83613952565b915061502482614fbd565b604082019050919050565b600060208201905081810360008301526150488161500c565b9050919050565b600081905092915050565b600061506582613947565b61506f818561504f565b935061507f818560208601613963565b80840191505092915050565b6000615097828561505a565b91506150a3828461505a565b91508190509392505050565b7f436f75706f6e4f776e65723a206e6577206f776e657220697320746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061510b602a83613952565b9150615116826150af565b604082019050919050565b6000602082019050818103600083015261513a816150fe565b9050919050565b7f5374617274696e6720626c6f636b20696e646578206e6f742073657400000000600082015250565b6000615177601c83613952565b915061518282615141565b602082019050919050565b600060208201905081810360008301526151a68161516a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006151e7826139f9565b91506151f2836139f9565b925082615202576152016151ad565b5b828206905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615269602683613952565b91506152748261520d565b604082019050919050565b600060208201905081810360008301526152988161525c565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006152fb602c83613952565b91506153068261529f565b604082019050919050565b6000602082019050818103600083015261532a816152ee565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061538d602583613952565b915061539882615331565b604082019050919050565b600060208201905081810360008301526153bc81615380565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061541f602483613952565b915061542a826153c3565b604082019050919050565b6000602082019050818103600083015261544e81615412565b9050919050565b7f4d696e7420706175736564000000000000000000000000000000000000000000600082015250565b600061548b600b83613952565b915061549682615455565b602082019050919050565b600060208201905081810360008301526154ba8161547e565b9050919050565b7f546f74616c20737570706c792072656163686564000000000000000000000000600082015250565b60006154f7601483613952565b9150615502826154c1565b602082019050919050565b60006020820190508181036000830152615526816154ea565b9050919050565b7f436f75706f6e2065787069726564000000000000000000000000000000000000600082015250565b6000615563600e83613952565b915061556e8261552d565b602082019050919050565b6000602082019050818103600083015261559281615556565b9050919050565b60006040820190506155ae6000830185613a8e565b6155bb6020830184613ccf565b9392505050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006155f8601983613952565b9150615603826155c2565b602082019050919050565b60006020820190508181036000830152615627816155eb565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061568a603283613952565b91506156958261562e565b604082019050919050565b600060208201905081810360008301526156b98161567d565b9050919050565b60006156cb826139f9565b91506156d6836139f9565b9250826156e6576156e56151ad565b5b828204905092915050565b600081519050919050565b600082825260208201905092915050565b6000615718826156f1565b61572281856156fc565b9350615732818560208601613963565b61573b8161398d565b840191505092915050565b600060808201905061575b6000830187613a8e565b6157686020830186613a8e565b6157756040830185613ccf565b8181036060830152615787818461570d565b905095945050505050565b6000815190506157a1816138b8565b92915050565b6000602082840312156157bd576157bc613882565b5b60006157cb84828501615792565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061580a602083613952565b9150615815826157d4565b602082019050919050565b60006020820190508181036000830152615839816157fd565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615876601c83613952565b915061588182615840565b602082019050919050565b600060208201905081810360008301526158a581615869565b9050919050565b6158b581613e9e565b82525050565b6158c481613ed4565b82525050565b60006080820190506158df60008301876158ac565b6158ec60208301866158bb565b6158f960408301856158ac565b61590660608301846158ac565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000615974601883613952565b915061597f8261593e565b602082019050919050565b600060208201905081810360008301526159a381615967565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b60006159e0601f83613952565b91506159eb826159aa565b602082019050919050565b60006020820190508181036000830152615a0f816159d3565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615a72602283613952565b9150615a7d82615a16565b604082019050919050565b60006020820190508181036000830152615aa181615a65565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615b04602283613952565b9150615b0f82615aa8565b604082019050919050565b60006020820190508181036000830152615b3381615af7565b905091905056fea2646970667358221220ca26a9c8495a091370de6b54caa02a3a610884856b8987b5a87653c80efe000a64736f6c63430008100033

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.