ETH Price: $3,467.83 (+2.17%)
Gas: 10 Gwei

Token

Jagwar Twin - 33 [Crowns] (JTCRWN)
 

Overview

Max Total Supply

0 JTCRWN

Holders

3,551

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
thepark.eth
Balance
1 JTCRWN
0x589ffbbda0eacd5a9c2ba208b379c886b2630503
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Crowns

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

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

/**
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
░░░░░░░░░░░▒█████████▓░░░░░░░░░▓███████▒▒░░░░░░░░░░░
░░░░░░░░░░▓██▓▓▓▓▓█████▒░░░░░▒█████▓▓▓▓██▒░░░░░░░░░░
░░░░░░░░░█▓▒░░░░░░░█████▒░░░▒████▓░░░░░░░▓█░░░░░░░░░
░░░░░░░░░░░░░░░░░░░░███▒░░░░▒████░░░░░░░░░░░░░░░░░░░
░░░░░░░░░░░░░░░░░░░███▓░░░░░░░███▒░░░░░░░░░░░░░░░░░░
░░░░░░░░░░░░░░░░░████▒░░░░░░░░░▒██▒░░░░░░░░░░░░░░░░░
░░░░░░░░░░░░░░▓███████▒░░░░░░▒███████▓▒░░░░░░░░░░░░░
░░░░░░░░░░░░░░░░▒▓▓█████▒░░░▓█████▓▓░░░░░░░░░░░░░░░░
░░░░░░░░░░░░░░░░░░░░█████▒░▒████▓░░░░░░░░░░░░░░░░░░░
░░░░░░░░░░░░░░░░░░░░░████▓░▒███▓░░░░░░░░░░░░░░░░░░░░
░░░░░░░░░░░░░░░░░░░░░████▒░▒███▓░░░░░░░░░░░░░░░░░░░░
░░░░░░░░░░░░░░░░░░░░░███▒░░░▒███░░░░░░░░░░░░░░░░░░░░
░░░░░░░░▓███▓▓▓▓▓▓▓▓██▒░░░░░░░▓██▓▓▓▓▓▓▓▓▓▓░░░░░░░░░
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

Jagwar Twin x CTHDRL
Contract: Jagwar Twin - 33 [Crowns]
Website: https://jagwartwin.com
**/

pragma solidity ^0.8.11;

import '@openzeppelin/contracts/token/ERC721/ERC721.sol';
import '@openzeppelin/contracts/interfaces/IERC2981.sol';
import '@openzeppelin/contracts/utils/Counters.sol';
import '@openzeppelin/contracts/access/Ownable.sol';

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

    Counters.Counter private tokenIds;

    // Base token and contract URI
    string private _baseTokenURI;
    string private _baseContractURI;

    // End time when minting is no longer available
    uint256 public endTime;

    // Addresses that have minted
    mapping(address => uint16) minted;

    // EIP-721
    // https://eips.ethereum.org/EIPS/eip-721
    constructor() ERC721('Jagwar Twin - 33 [Crowns]', 'JTCRWN') {
        string memory baseTokenURI = 'https://meta.jagwartwin.com/crowns/';
        string
            memory baseContractURI = 'https://meta.jagwartwin.com/jtcrwn-meta';

        _baseTokenURI = baseTokenURI;
        _baseContractURI = baseContractURI;
    }

    // EIP-2981
    // https://eips.ethereum.org/EIPS/eip-2981
    function royaltyInfo(
        uint256, /*tokenId*/
        uint256 _price
    ) external view returns (address receiver, uint256 royaltyAmount) {
        receiver = owner();
        royaltyAmount = _price / 7;
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721)
        returns (bool)
    {
        return
            interfaceId == type(IERC2981).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    // Read & set base contract URI
    function contractURI() public view returns (string memory) {
        return _baseContractURI;
    }

    function setContractURI(string memory baseContractURI_) public onlyOwner {
        require(bytes(baseContractURI_).length > 0, 'Invalid baseContractUrl');
        _baseContractURI = baseContractURI_;
    }

    // Read & set baseURI, to be used by base ERC721 tokenURI function
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    function setBaseURI(string memory baseURI_) public onlyOwner {
        require(bytes(baseURI_).length > 0, 'Invalid baseUrl');
        _baseTokenURI = baseURI_;
    }

    // As owner, set end time
    function setEndTime(uint256 endTime_) public onlyOwner {
        endTime = endTime_;
    }

    // Mint function
    function mint() external returns (uint256) {
        require(block.timestamp < endTime, 'Minting is no longer available');
        require(minted[msg.sender] < 1);

        // Inc ID
        tokenIds.increment();
        uint256 _tokenId = tokenIds.current();

        // Mark address claimed
        minted[msg.sender] += 1;

        // Mint & return
        _safeMint(msg.sender, _tokenId);
        return _tokenId;
    }
}

File 2 of 14 : 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 14 : 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 14 : 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 5 of 14 : 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 6 of 14 : 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 7 of 14 : 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 8 of 14 : 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 9 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 10 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

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

File 11 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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 overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _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 || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

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

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

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

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

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

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

        _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 12 of 14 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 13 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;

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

File 14 of 14 : 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":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":[{"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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseContractURI_","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"endTime_","type":"uint256"}],"name":"setEndTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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"}]

60806040523480156200001157600080fd5b506040518060400160405280601981526020017f4a6167776172205477696e202d203333205b43726f776e735d000000000000008152506040518060400160405280600681526020017f4a544352574e00000000000000000000000000000000000000000000000000008152506200009e620000926200014860201b60201c565b6200015060201b60201c565b8160019080519060200190620000b692919062000214565b508060029080519060200190620000cf92919062000214565b50505060006040518060600160405280602381526020016200384860239139905060006040518060600160405280602781526020016200382160279139905081600890805190602001906200012692919062000214565b5080600990805190602001906200013f92919062000214565b50505062000329565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022290620002f3565b90600052602060002090601f01602090048101928262000246576000855562000292565b82601f106200026157805160ff191683800117855562000292565b8280016001018555821562000292579182015b828111156200029157825182559160200191906001019062000274565b5b509050620002a19190620002a5565b5090565b5b80821115620002c0576000816000905550600101620002a6565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200030c57607f821691505b60208210811415620003235762000322620002c4565b5b50919050565b6134e880620003396000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063b88d4fde1161007c578063b88d4fde1461038b578063c87b56dd146103a7578063ccb98ffc146103d7578063e8a3d485146103f3578063e985e9c514610411578063f2fde38b146104415761014d565b806370a08231146102dd578063715018a61461030d5780638da5cb5b14610317578063938e3d7b1461033557806395d89b4114610351578063a22cb4651461036f5761014d565b806323b872dd1161011557806323b872dd1461020a5780632a55205a146102265780633197cbb61461025757806342842e0e1461027557806355f804b3146102915780636352211e146102ad5761014d565b806301ffc9a71461015257806306fdde0314610182578063081812fc146101a0578063095ea7b3146101d05780631249c58b146101ec575b600080fd5b61016c60048036038101906101679190612090565b61045d565b60405161017991906120d8565b60405180910390f35b61018a6104d7565b604051610197919061218c565b60405180910390f35b6101ba60048036038101906101b591906121e4565b610569565b6040516101c79190612252565b60405180910390f35b6101ea60048036038101906101e59190612299565b6105ee565b005b6101f4610706565b60405161020191906122e8565b60405180910390f35b610224600480360381019061021f9190612303565b61084a565b005b610240600480360381019061023b9190612356565b6108aa565b60405161024e929190612396565b60405180910390f35b61025f6108cd565b60405161026c91906122e8565b60405180910390f35b61028f600480360381019061028a9190612303565b6108d3565b005b6102ab60048036038101906102a691906124f4565b6108f3565b005b6102c760048036038101906102c291906121e4565b6109cd565b6040516102d49190612252565b60405180910390f35b6102f760048036038101906102f2919061253d565b610a7f565b60405161030491906122e8565b60405180910390f35b610315610b37565b005b61031f610bbf565b60405161032c9190612252565b60405180910390f35b61034f600480360381019061034a91906124f4565b610be8565b005b610359610cc2565b604051610366919061218c565b60405180910390f35b61038960048036038101906103849190612596565b610d54565b005b6103a560048036038101906103a09190612677565b610d6a565b005b6103c160048036038101906103bc91906121e4565b610dcc565b6040516103ce919061218c565b60405180910390f35b6103f160048036038101906103ec91906121e4565b610e73565b005b6103fb610ef9565b604051610408919061218c565b60405180910390f35b61042b600480360381019061042691906126fa565b610f8b565b60405161043891906120d8565b60405180910390f35b61045b6004803603810190610456919061253d565b61101f565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104d057506104cf82611117565b5b9050919050565b6060600180546104e690612769565b80601f016020809104026020016040519081016040528092919081815260200182805461051290612769565b801561055f5780601f106105345761010080835404028352916020019161055f565b820191906000526020600020905b81548152906001019060200180831161054257829003601f168201915b5050505050905090565b6000610574826111f9565b6105b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105aa9061280d565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105f9826109cd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561066a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106619061289f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610689611265565b73ffffffffffffffffffffffffffffffffffffffff1614806106b857506106b7816106b2611265565b610f8b565b5b6106f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ee90612931565b60405180910390fd5b610701838361126d565b505050565b6000600a54421061074c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107439061299d565b60405180910390fd5b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff1661ffff16106107aa57600080fd5b6107b46007611326565b60006107c0600761133c565b90506001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff1661081f91906129fa565b92506101000a81548161ffff021916908361ffff160217905550610843338261134a565b8091505090565b61085b610855611265565b82611368565b61089a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089190612aa4565b60405180910390fd5b6108a5838383611446565b505050565b6000806108b5610bbf565b91506007836108c49190612af3565b90509250929050565b600a5481565b6108ee83838360405180602001604052806000815250610d6a565b505050565b6108fb611265565b73ffffffffffffffffffffffffffffffffffffffff16610919610bbf565b73ffffffffffffffffffffffffffffffffffffffff161461096f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096690612b70565b60405180910390fd5b60008151116109b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109aa90612bdc565b60405180910390fd5b80600890805190602001906109c9929190611f81565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6d90612c6e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae790612d00565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b3f611265565b73ffffffffffffffffffffffffffffffffffffffff16610b5d610bbf565b73ffffffffffffffffffffffffffffffffffffffff1614610bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baa90612b70565b60405180910390fd5b610bbd60006116ad565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610bf0611265565b73ffffffffffffffffffffffffffffffffffffffff16610c0e610bbf565b73ffffffffffffffffffffffffffffffffffffffff1614610c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5b90612b70565b60405180910390fd5b6000815111610ca8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9f90612d6c565b60405180910390fd5b8060099080519060200190610cbe929190611f81565b5050565b606060028054610cd190612769565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfd90612769565b8015610d4a5780601f10610d1f57610100808354040283529160200191610d4a565b820191906000526020600020905b815481529060010190602001808311610d2d57829003601f168201915b5050505050905090565b610d66610d5f611265565b8383611771565b5050565b610d7b610d75611265565b83611368565b610dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db190612aa4565b60405180910390fd5b610dc6848484846118de565b50505050565b6060610dd7826111f9565b610e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0d90612dfe565b60405180910390fd5b6000610e2061193a565b90506000815111610e405760405180602001604052806000815250610e6b565b80610e4a846119cc565b604051602001610e5b929190612e5a565b6040516020818303038152906040525b915050919050565b610e7b611265565b73ffffffffffffffffffffffffffffffffffffffff16610e99610bbf565b73ffffffffffffffffffffffffffffffffffffffff1614610eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee690612b70565b60405180910390fd5b80600a8190555050565b606060098054610f0890612769565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3490612769565b8015610f815780601f10610f5657610100808354040283529160200191610f81565b820191906000526020600020905b815481529060010190602001808311610f6457829003601f168201915b5050505050905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611027611265565b73ffffffffffffffffffffffffffffffffffffffff16611045610bbf565b73ffffffffffffffffffffffffffffffffffffffff161461109b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109290612b70565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561110b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110290612ef0565b60405180910390fd5b611114816116ad565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806111e257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806111f257506111f182611b2d565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166112e0836109cd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001816000016000828254019250508190555050565b600081600001549050919050565b611364828260405180602001604052806000815250611b97565b5050565b6000611373826111f9565b6113b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a990612f82565b60405180910390fd5b60006113bd836109cd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061142c57508373ffffffffffffffffffffffffffffffffffffffff1661141484610569565b73ffffffffffffffffffffffffffffffffffffffff16145b8061143d575061143c8185610f8b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611466826109cd565b73ffffffffffffffffffffffffffffffffffffffff16146114bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b390613014565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561152c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611523906130a6565b60405180910390fd5b611537838383611bf2565b61154260008261126d565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461159291906130c6565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115e991906130fa565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116a8838383611bf7565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d79061319c565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118d191906120d8565b60405180910390a3505050565b6118e9848484611446565b6118f584848484611bfc565b611934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192b9061322e565b60405180910390fd5b50505050565b60606008805461194990612769565b80601f016020809104026020016040519081016040528092919081815260200182805461197590612769565b80156119c25780601f10611997576101008083540402835291602001916119c2565b820191906000526020600020905b8154815290600101906020018083116119a557829003601f168201915b5050505050905090565b60606000821415611a14576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611b28565b600082905060005b60008214611a46578080611a2f9061324e565b915050600a82611a3f9190612af3565b9150611a1c565b60008167ffffffffffffffff811115611a6257611a616123c9565b5b6040519080825280601f01601f191660200182016040528015611a945781602001600182028036833780820191505090505b5090505b60008514611b2157600182611aad91906130c6565b9150600a85611abc9190613297565b6030611ac891906130fa565b60f81b818381518110611ade57611add6132c8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611b1a9190612af3565b9450611a98565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611ba18383611d84565b611bae6000848484611bfc565b611bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be49061322e565b60405180910390fd5b505050565b505050565b505050565b6000611c1d8473ffffffffffffffffffffffffffffffffffffffff16611f5e565b15611d77578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c46611265565b8786866040518563ffffffff1660e01b8152600401611c68949392919061334c565b6020604051808303816000875af1925050508015611ca457506040513d601f19601f82011682018060405250810190611ca191906133ad565b60015b611d27573d8060008114611cd4576040519150601f19603f3d011682016040523d82523d6000602084013e611cd9565b606091505b50600081511415611d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d169061322e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611d7c565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611deb90613426565b60405180910390fd5b611dfd816111f9565b15611e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3490613492565b60405180910390fd5b611e4960008383611bf2565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e9991906130fa565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f5a60008383611bf7565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611f8d90612769565b90600052602060002090601f016020900481019282611faf5760008555611ff6565b82601f10611fc857805160ff1916838001178555611ff6565b82800160010185558215611ff6579182015b82811115611ff5578251825591602001919060010190611fda565b5b5090506120039190612007565b5090565b5b80821115612020576000816000905550600101612008565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61206d81612038565b811461207857600080fd5b50565b60008135905061208a81612064565b92915050565b6000602082840312156120a6576120a561202e565b5b60006120b48482850161207b565b91505092915050565b60008115159050919050565b6120d2816120bd565b82525050565b60006020820190506120ed60008301846120c9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561212d578082015181840152602081019050612112565b8381111561213c576000848401525b50505050565b6000601f19601f8301169050919050565b600061215e826120f3565b61216881856120fe565b935061217881856020860161210f565b61218181612142565b840191505092915050565b600060208201905081810360008301526121a68184612153565b905092915050565b6000819050919050565b6121c1816121ae565b81146121cc57600080fd5b50565b6000813590506121de816121b8565b92915050565b6000602082840312156121fa576121f961202e565b5b6000612208848285016121cf565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061223c82612211565b9050919050565b61224c81612231565b82525050565b60006020820190506122676000830184612243565b92915050565b61227681612231565b811461228157600080fd5b50565b6000813590506122938161226d565b92915050565b600080604083850312156122b0576122af61202e565b5b60006122be85828601612284565b92505060206122cf858286016121cf565b9150509250929050565b6122e2816121ae565b82525050565b60006020820190506122fd60008301846122d9565b92915050565b60008060006060848603121561231c5761231b61202e565b5b600061232a86828701612284565b935050602061233b86828701612284565b925050604061234c868287016121cf565b9150509250925092565b6000806040838503121561236d5761236c61202e565b5b600061237b858286016121cf565b925050602061238c858286016121cf565b9150509250929050565b60006040820190506123ab6000830185612243565b6123b860208301846122d9565b9392505050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61240182612142565b810181811067ffffffffffffffff821117156124205761241f6123c9565b5b80604052505050565b6000612433612024565b905061243f82826123f8565b919050565b600067ffffffffffffffff82111561245f5761245e6123c9565b5b61246882612142565b9050602081019050919050565b82818337600083830152505050565b600061249761249284612444565b612429565b9050828152602081018484840111156124b3576124b26123c4565b5b6124be848285612475565b509392505050565b600082601f8301126124db576124da6123bf565b5b81356124eb848260208601612484565b91505092915050565b60006020828403121561250a5761250961202e565b5b600082013567ffffffffffffffff81111561252857612527612033565b5b612534848285016124c6565b91505092915050565b6000602082840312156125535761255261202e565b5b600061256184828501612284565b91505092915050565b612573816120bd565b811461257e57600080fd5b50565b6000813590506125908161256a565b92915050565b600080604083850312156125ad576125ac61202e565b5b60006125bb85828601612284565b92505060206125cc85828601612581565b9150509250929050565b600067ffffffffffffffff8211156125f1576125f06123c9565b5b6125fa82612142565b9050602081019050919050565b600061261a612615846125d6565b612429565b905082815260208101848484011115612636576126356123c4565b5b612641848285612475565b509392505050565b600082601f83011261265e5761265d6123bf565b5b813561266e848260208601612607565b91505092915050565b600080600080608085870312156126915761269061202e565b5b600061269f87828801612284565b94505060206126b087828801612284565b93505060406126c1878288016121cf565b925050606085013567ffffffffffffffff8111156126e2576126e1612033565b5b6126ee87828801612649565b91505092959194509250565b600080604083850312156127115761271061202e565b5b600061271f85828601612284565b925050602061273085828601612284565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061278157607f821691505b602082108114156127955761279461273a565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006127f7602c836120fe565b91506128028261279b565b604082019050919050565b60006020820190508181036000830152612826816127ea565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006128896021836120fe565b91506128948261282d565b604082019050919050565b600060208201905081810360008301526128b88161287c565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061291b6038836120fe565b9150612926826128bf565b604082019050919050565b6000602082019050818103600083015261294a8161290e565b9050919050565b7f4d696e74696e67206973206e6f206c6f6e67657220617661696c61626c650000600082015250565b6000612987601e836120fe565b915061299282612951565b602082019050919050565b600060208201905081810360008301526129b68161297a565b9050919050565b600061ffff82169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a05826129bd565b9150612a10836129bd565b92508261ffff03821115612a2757612a266129cb565b5b828201905092915050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612a8e6031836120fe565b9150612a9982612a32565b604082019050919050565b60006020820190508181036000830152612abd81612a81565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612afe826121ae565b9150612b09836121ae565b925082612b1957612b18612ac4565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612b5a6020836120fe565b9150612b6582612b24565b602082019050919050565b60006020820190508181036000830152612b8981612b4d565b9050919050565b7f496e76616c6964206261736555726c0000000000000000000000000000000000600082015250565b6000612bc6600f836120fe565b9150612bd182612b90565b602082019050919050565b60006020820190508181036000830152612bf581612bb9565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612c586029836120fe565b9150612c6382612bfc565b604082019050919050565b60006020820190508181036000830152612c8781612c4b565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612cea602a836120fe565b9150612cf582612c8e565b604082019050919050565b60006020820190508181036000830152612d1981612cdd565b9050919050565b7f496e76616c69642062617365436f6e747261637455726c000000000000000000600082015250565b6000612d566017836120fe565b9150612d6182612d20565b602082019050919050565b60006020820190508181036000830152612d8581612d49565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612de8602f836120fe565b9150612df382612d8c565b604082019050919050565b60006020820190508181036000830152612e1781612ddb565b9050919050565b600081905092915050565b6000612e34826120f3565b612e3e8185612e1e565b9350612e4e81856020860161210f565b80840191505092915050565b6000612e668285612e29565b9150612e728284612e29565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612eda6026836120fe565b9150612ee582612e7e565b604082019050919050565b60006020820190508181036000830152612f0981612ecd565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612f6c602c836120fe565b9150612f7782612f10565b604082019050919050565b60006020820190508181036000830152612f9b81612f5f565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000612ffe6025836120fe565b915061300982612fa2565b604082019050919050565b6000602082019050818103600083015261302d81612ff1565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006130906024836120fe565b915061309b82613034565b604082019050919050565b600060208201905081810360008301526130bf81613083565b9050919050565b60006130d1826121ae565b91506130dc836121ae565b9250828210156130ef576130ee6129cb565b5b828203905092915050565b6000613105826121ae565b9150613110836121ae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613145576131446129cb565b5b828201905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006131866019836120fe565b915061319182613150565b602082019050919050565b600060208201905081810360008301526131b581613179565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006132186032836120fe565b9150613223826131bc565b604082019050919050565b600060208201905081810360008301526132478161320b565b9050919050565b6000613259826121ae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561328c5761328b6129cb565b5b600182019050919050565b60006132a2826121ae565b91506132ad836121ae565b9250826132bd576132bc612ac4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061331e826132f7565b6133288185613302565b935061333881856020860161210f565b61334181612142565b840191505092915050565b60006080820190506133616000830187612243565b61336e6020830186612243565b61337b60408301856122d9565b818103606083015261338d8184613313565b905095945050505050565b6000815190506133a781612064565b92915050565b6000602082840312156133c3576133c261202e565b5b60006133d184828501613398565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006134106020836120fe565b915061341b826133da565b602082019050919050565b6000602082019050818103600083015261343f81613403565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061347c601c836120fe565b915061348782613446565b602082019050919050565b600060208201905081810360008301526134ab8161346f565b905091905056fea2646970667358221220dc60264864b206762bdf8a86f6d5debe49b3b3626b448321fd448850fa95d72964736f6c634300080b003368747470733a2f2f6d6574612e6a61677761727477696e2e636f6d2f6a746372776e2d6d65746168747470733a2f2f6d6574612e6a61677761727477696e2e636f6d2f63726f776e732f

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063b88d4fde1161007c578063b88d4fde1461038b578063c87b56dd146103a7578063ccb98ffc146103d7578063e8a3d485146103f3578063e985e9c514610411578063f2fde38b146104415761014d565b806370a08231146102dd578063715018a61461030d5780638da5cb5b14610317578063938e3d7b1461033557806395d89b4114610351578063a22cb4651461036f5761014d565b806323b872dd1161011557806323b872dd1461020a5780632a55205a146102265780633197cbb61461025757806342842e0e1461027557806355f804b3146102915780636352211e146102ad5761014d565b806301ffc9a71461015257806306fdde0314610182578063081812fc146101a0578063095ea7b3146101d05780631249c58b146101ec575b600080fd5b61016c60048036038101906101679190612090565b61045d565b60405161017991906120d8565b60405180910390f35b61018a6104d7565b604051610197919061218c565b60405180910390f35b6101ba60048036038101906101b591906121e4565b610569565b6040516101c79190612252565b60405180910390f35b6101ea60048036038101906101e59190612299565b6105ee565b005b6101f4610706565b60405161020191906122e8565b60405180910390f35b610224600480360381019061021f9190612303565b61084a565b005b610240600480360381019061023b9190612356565b6108aa565b60405161024e929190612396565b60405180910390f35b61025f6108cd565b60405161026c91906122e8565b60405180910390f35b61028f600480360381019061028a9190612303565b6108d3565b005b6102ab60048036038101906102a691906124f4565b6108f3565b005b6102c760048036038101906102c291906121e4565b6109cd565b6040516102d49190612252565b60405180910390f35b6102f760048036038101906102f2919061253d565b610a7f565b60405161030491906122e8565b60405180910390f35b610315610b37565b005b61031f610bbf565b60405161032c9190612252565b60405180910390f35b61034f600480360381019061034a91906124f4565b610be8565b005b610359610cc2565b604051610366919061218c565b60405180910390f35b61038960048036038101906103849190612596565b610d54565b005b6103a560048036038101906103a09190612677565b610d6a565b005b6103c160048036038101906103bc91906121e4565b610dcc565b6040516103ce919061218c565b60405180910390f35b6103f160048036038101906103ec91906121e4565b610e73565b005b6103fb610ef9565b604051610408919061218c565b60405180910390f35b61042b600480360381019061042691906126fa565b610f8b565b60405161043891906120d8565b60405180910390f35b61045b6004803603810190610456919061253d565b61101f565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104d057506104cf82611117565b5b9050919050565b6060600180546104e690612769565b80601f016020809104026020016040519081016040528092919081815260200182805461051290612769565b801561055f5780601f106105345761010080835404028352916020019161055f565b820191906000526020600020905b81548152906001019060200180831161054257829003601f168201915b5050505050905090565b6000610574826111f9565b6105b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105aa9061280d565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105f9826109cd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561066a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106619061289f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610689611265565b73ffffffffffffffffffffffffffffffffffffffff1614806106b857506106b7816106b2611265565b610f8b565b5b6106f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ee90612931565b60405180910390fd5b610701838361126d565b505050565b6000600a54421061074c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107439061299d565b60405180910390fd5b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff1661ffff16106107aa57600080fd5b6107b46007611326565b60006107c0600761133c565b90506001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900461ffff1661081f91906129fa565b92506101000a81548161ffff021916908361ffff160217905550610843338261134a565b8091505090565b61085b610855611265565b82611368565b61089a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089190612aa4565b60405180910390fd5b6108a5838383611446565b505050565b6000806108b5610bbf565b91506007836108c49190612af3565b90509250929050565b600a5481565b6108ee83838360405180602001604052806000815250610d6a565b505050565b6108fb611265565b73ffffffffffffffffffffffffffffffffffffffff16610919610bbf565b73ffffffffffffffffffffffffffffffffffffffff161461096f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096690612b70565b60405180910390fd5b60008151116109b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109aa90612bdc565b60405180910390fd5b80600890805190602001906109c9929190611f81565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6d90612c6e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae790612d00565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b3f611265565b73ffffffffffffffffffffffffffffffffffffffff16610b5d610bbf565b73ffffffffffffffffffffffffffffffffffffffff1614610bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baa90612b70565b60405180910390fd5b610bbd60006116ad565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610bf0611265565b73ffffffffffffffffffffffffffffffffffffffff16610c0e610bbf565b73ffffffffffffffffffffffffffffffffffffffff1614610c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5b90612b70565b60405180910390fd5b6000815111610ca8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9f90612d6c565b60405180910390fd5b8060099080519060200190610cbe929190611f81565b5050565b606060028054610cd190612769565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfd90612769565b8015610d4a5780601f10610d1f57610100808354040283529160200191610d4a565b820191906000526020600020905b815481529060010190602001808311610d2d57829003601f168201915b5050505050905090565b610d66610d5f611265565b8383611771565b5050565b610d7b610d75611265565b83611368565b610dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db190612aa4565b60405180910390fd5b610dc6848484846118de565b50505050565b6060610dd7826111f9565b610e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0d90612dfe565b60405180910390fd5b6000610e2061193a565b90506000815111610e405760405180602001604052806000815250610e6b565b80610e4a846119cc565b604051602001610e5b929190612e5a565b6040516020818303038152906040525b915050919050565b610e7b611265565b73ffffffffffffffffffffffffffffffffffffffff16610e99610bbf565b73ffffffffffffffffffffffffffffffffffffffff1614610eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee690612b70565b60405180910390fd5b80600a8190555050565b606060098054610f0890612769565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3490612769565b8015610f815780601f10610f5657610100808354040283529160200191610f81565b820191906000526020600020905b815481529060010190602001808311610f6457829003601f168201915b5050505050905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611027611265565b73ffffffffffffffffffffffffffffffffffffffff16611045610bbf565b73ffffffffffffffffffffffffffffffffffffffff161461109b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109290612b70565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561110b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110290612ef0565b60405180910390fd5b611114816116ad565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806111e257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806111f257506111f182611b2d565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166112e0836109cd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001816000016000828254019250508190555050565b600081600001549050919050565b611364828260405180602001604052806000815250611b97565b5050565b6000611373826111f9565b6113b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a990612f82565b60405180910390fd5b60006113bd836109cd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061142c57508373ffffffffffffffffffffffffffffffffffffffff1661141484610569565b73ffffffffffffffffffffffffffffffffffffffff16145b8061143d575061143c8185610f8b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611466826109cd565b73ffffffffffffffffffffffffffffffffffffffff16146114bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b390613014565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561152c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611523906130a6565b60405180910390fd5b611537838383611bf2565b61154260008261126d565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461159291906130c6565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115e991906130fa565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116a8838383611bf7565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d79061319c565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118d191906120d8565b60405180910390a3505050565b6118e9848484611446565b6118f584848484611bfc565b611934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192b9061322e565b60405180910390fd5b50505050565b60606008805461194990612769565b80601f016020809104026020016040519081016040528092919081815260200182805461197590612769565b80156119c25780601f10611997576101008083540402835291602001916119c2565b820191906000526020600020905b8154815290600101906020018083116119a557829003601f168201915b5050505050905090565b60606000821415611a14576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611b28565b600082905060005b60008214611a46578080611a2f9061324e565b915050600a82611a3f9190612af3565b9150611a1c565b60008167ffffffffffffffff811115611a6257611a616123c9565b5b6040519080825280601f01601f191660200182016040528015611a945781602001600182028036833780820191505090505b5090505b60008514611b2157600182611aad91906130c6565b9150600a85611abc9190613297565b6030611ac891906130fa565b60f81b818381518110611ade57611add6132c8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611b1a9190612af3565b9450611a98565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611ba18383611d84565b611bae6000848484611bfc565b611bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be49061322e565b60405180910390fd5b505050565b505050565b505050565b6000611c1d8473ffffffffffffffffffffffffffffffffffffffff16611f5e565b15611d77578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c46611265565b8786866040518563ffffffff1660e01b8152600401611c68949392919061334c565b6020604051808303816000875af1925050508015611ca457506040513d601f19601f82011682018060405250810190611ca191906133ad565b60015b611d27573d8060008114611cd4576040519150601f19603f3d011682016040523d82523d6000602084013e611cd9565b606091505b50600081511415611d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d169061322e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611d7c565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611deb90613426565b60405180910390fd5b611dfd816111f9565b15611e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3490613492565b60405180910390fd5b611e4960008383611bf2565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e9991906130fa565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f5a60008383611bf7565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611f8d90612769565b90600052602060002090601f016020900481019282611faf5760008555611ff6565b82601f10611fc857805160ff1916838001178555611ff6565b82800160010185558215611ff6579182015b82811115611ff5578251825591602001919060010190611fda565b5b5090506120039190612007565b5090565b5b80821115612020576000816000905550600101612008565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61206d81612038565b811461207857600080fd5b50565b60008135905061208a81612064565b92915050565b6000602082840312156120a6576120a561202e565b5b60006120b48482850161207b565b91505092915050565b60008115159050919050565b6120d2816120bd565b82525050565b60006020820190506120ed60008301846120c9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561212d578082015181840152602081019050612112565b8381111561213c576000848401525b50505050565b6000601f19601f8301169050919050565b600061215e826120f3565b61216881856120fe565b935061217881856020860161210f565b61218181612142565b840191505092915050565b600060208201905081810360008301526121a68184612153565b905092915050565b6000819050919050565b6121c1816121ae565b81146121cc57600080fd5b50565b6000813590506121de816121b8565b92915050565b6000602082840312156121fa576121f961202e565b5b6000612208848285016121cf565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061223c82612211565b9050919050565b61224c81612231565b82525050565b60006020820190506122676000830184612243565b92915050565b61227681612231565b811461228157600080fd5b50565b6000813590506122938161226d565b92915050565b600080604083850312156122b0576122af61202e565b5b60006122be85828601612284565b92505060206122cf858286016121cf565b9150509250929050565b6122e2816121ae565b82525050565b60006020820190506122fd60008301846122d9565b92915050565b60008060006060848603121561231c5761231b61202e565b5b600061232a86828701612284565b935050602061233b86828701612284565b925050604061234c868287016121cf565b9150509250925092565b6000806040838503121561236d5761236c61202e565b5b600061237b858286016121cf565b925050602061238c858286016121cf565b9150509250929050565b60006040820190506123ab6000830185612243565b6123b860208301846122d9565b9392505050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61240182612142565b810181811067ffffffffffffffff821117156124205761241f6123c9565b5b80604052505050565b6000612433612024565b905061243f82826123f8565b919050565b600067ffffffffffffffff82111561245f5761245e6123c9565b5b61246882612142565b9050602081019050919050565b82818337600083830152505050565b600061249761249284612444565b612429565b9050828152602081018484840111156124b3576124b26123c4565b5b6124be848285612475565b509392505050565b600082601f8301126124db576124da6123bf565b5b81356124eb848260208601612484565b91505092915050565b60006020828403121561250a5761250961202e565b5b600082013567ffffffffffffffff81111561252857612527612033565b5b612534848285016124c6565b91505092915050565b6000602082840312156125535761255261202e565b5b600061256184828501612284565b91505092915050565b612573816120bd565b811461257e57600080fd5b50565b6000813590506125908161256a565b92915050565b600080604083850312156125ad576125ac61202e565b5b60006125bb85828601612284565b92505060206125cc85828601612581565b9150509250929050565b600067ffffffffffffffff8211156125f1576125f06123c9565b5b6125fa82612142565b9050602081019050919050565b600061261a612615846125d6565b612429565b905082815260208101848484011115612636576126356123c4565b5b612641848285612475565b509392505050565b600082601f83011261265e5761265d6123bf565b5b813561266e848260208601612607565b91505092915050565b600080600080608085870312156126915761269061202e565b5b600061269f87828801612284565b94505060206126b087828801612284565b93505060406126c1878288016121cf565b925050606085013567ffffffffffffffff8111156126e2576126e1612033565b5b6126ee87828801612649565b91505092959194509250565b600080604083850312156127115761271061202e565b5b600061271f85828601612284565b925050602061273085828601612284565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061278157607f821691505b602082108114156127955761279461273a565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006127f7602c836120fe565b91506128028261279b565b604082019050919050565b60006020820190508181036000830152612826816127ea565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006128896021836120fe565b91506128948261282d565b604082019050919050565b600060208201905081810360008301526128b88161287c565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061291b6038836120fe565b9150612926826128bf565b604082019050919050565b6000602082019050818103600083015261294a8161290e565b9050919050565b7f4d696e74696e67206973206e6f206c6f6e67657220617661696c61626c650000600082015250565b6000612987601e836120fe565b915061299282612951565b602082019050919050565b600060208201905081810360008301526129b68161297a565b9050919050565b600061ffff82169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a05826129bd565b9150612a10836129bd565b92508261ffff03821115612a2757612a266129cb565b5b828201905092915050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612a8e6031836120fe565b9150612a9982612a32565b604082019050919050565b60006020820190508181036000830152612abd81612a81565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612afe826121ae565b9150612b09836121ae565b925082612b1957612b18612ac4565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612b5a6020836120fe565b9150612b6582612b24565b602082019050919050565b60006020820190508181036000830152612b8981612b4d565b9050919050565b7f496e76616c6964206261736555726c0000000000000000000000000000000000600082015250565b6000612bc6600f836120fe565b9150612bd182612b90565b602082019050919050565b60006020820190508181036000830152612bf581612bb9565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612c586029836120fe565b9150612c6382612bfc565b604082019050919050565b60006020820190508181036000830152612c8781612c4b565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612cea602a836120fe565b9150612cf582612c8e565b604082019050919050565b60006020820190508181036000830152612d1981612cdd565b9050919050565b7f496e76616c69642062617365436f6e747261637455726c000000000000000000600082015250565b6000612d566017836120fe565b9150612d6182612d20565b602082019050919050565b60006020820190508181036000830152612d8581612d49565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612de8602f836120fe565b9150612df382612d8c565b604082019050919050565b60006020820190508181036000830152612e1781612ddb565b9050919050565b600081905092915050565b6000612e34826120f3565b612e3e8185612e1e565b9350612e4e81856020860161210f565b80840191505092915050565b6000612e668285612e29565b9150612e728284612e29565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612eda6026836120fe565b9150612ee582612e7e565b604082019050919050565b60006020820190508181036000830152612f0981612ecd565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612f6c602c836120fe565b9150612f7782612f10565b604082019050919050565b60006020820190508181036000830152612f9b81612f5f565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000612ffe6025836120fe565b915061300982612fa2565b604082019050919050565b6000602082019050818103600083015261302d81612ff1565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006130906024836120fe565b915061309b82613034565b604082019050919050565b600060208201905081810360008301526130bf81613083565b9050919050565b60006130d1826121ae565b91506130dc836121ae565b9250828210156130ef576130ee6129cb565b5b828203905092915050565b6000613105826121ae565b9150613110836121ae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613145576131446129cb565b5b828201905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006131866019836120fe565b915061319182613150565b602082019050919050565b600060208201905081810360008301526131b581613179565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006132186032836120fe565b9150613223826131bc565b604082019050919050565b600060208201905081810360008301526132478161320b565b9050919050565b6000613259826121ae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561328c5761328b6129cb565b5b600182019050919050565b60006132a2826121ae565b91506132ad836121ae565b9250826132bd576132bc612ac4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061331e826132f7565b6133288185613302565b935061333881856020860161210f565b61334181612142565b840191505092915050565b60006080820190506133616000830187612243565b61336e6020830186612243565b61337b60408301856122d9565b818103606083015261338d8184613313565b905095945050505050565b6000815190506133a781612064565b92915050565b6000602082840312156133c3576133c261202e565b5b60006133d184828501613398565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006134106020836120fe565b915061341b826133da565b602082019050919050565b6000602082019050818103600083015261343f81613403565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061347c601c836120fe565b915061348782613446565b602082019050919050565b600060208201905081810360008301526134ab8161346f565b905091905056fea2646970667358221220dc60264864b206762bdf8a86f6d5debe49b3b3626b448321fd448850fa95d72964736f6c634300080b0033

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.