ETH Price: $3,090.30 (+1.88%)
Gas: 2 Gwei

Token

Loopy Lobsters (LOOP)
 

Overview

Max Total Supply

15 LOOP

Holders

9

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
captainzhuman.eth
Balance
1 LOOP
0x295a42184d4167fca18f8a6be5a7bf8e8a0678e2
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:
Lobsters

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
petersburg EvmVersion
File 1 of 2 : Lobsters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import '@openzeppelin/contracts/utils/cryptography/ECDSA.sol';


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);
}

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;
}

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);
}

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);
}

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);
    }
}

library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

/*
 * @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 GSN 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 memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

/**
 * @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 Lobsters is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;
    using SafeMath for uint256;

    // Token name
    string private _name = 'Loopy Lobsters';

    // Token symbol
    string private _symbol = 'LOOP';

    // Token Supply
    uint private constant _totalSupply = 5000;
    uint private currentSupply = 0;

    // Date of release;
    uint public releaseTimestamp = 1640037600;
    

    // Token Price
    uint256 public tokenPrice = 60000000000000000;


    // Contract Owner
    address private _contractOwner;
    address private _signer;

    // 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;

    address private royaltyAddress = 0x85B841Cca05220b2adc99960B4207C0410e2f8aD;  
    uint256 private ROYALTY_SIZE = 250; // 2.5%         
    uint256 private constant ROYALTY_DEMONINATOR = 10000;

    mapping (address => uint256) private _mintedTokens;

    address[] private _approvedPreSaleAddresses;

    mapping(uint256 => address) private _royaltyReceivers; // add function to specify royalty receivers
  
    // events
    event tokensMinted(
        address mintedBy,
        uint numberOfTokensMinted
    );

    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *
     *     => 0x06fdde03 ^ 0x95d89b41 == 0x93254542
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x93254542;
    /*
     * Royalties interface support
    */
    bytes4 private constant _INTERFACE_ID_ERC2981 = 0x2a55205a;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor() {
        _contractOwner = msg.sender;

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
        _registerInterface(_INTERFACE_ID_ERC2981);
    }

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

    function mintPurchasedTokens(uint256 tokensNumber) internal {
      for(uint i = 0; i<tokensNumber; i++) {
        currentSupply++;
        _mint(msg.sender, currentSupply);
      }
    }

     function getSignerAddress(address caller, bytes calldata signature) internal pure returns (address) {
      bytes32 dataHash = keccak256(abi.encodePacked(caller));

        bytes32 message = ECDSA.toEthSignedMessageHash(dataHash);
        return ECDSA.recover(message, signature);
    }


    function buyTokens(uint tokensNumber) public payable {
        require(block.timestamp >= releaseTimestamp, "It is not salesmode yet");
        require(tokensNumber <= 10, "You cannot purchase more than 10 tokens at once");
        require((tokensNumber.mul(tokenPrice)) == msg.value, "Received value doesn't match the requested tokens");
        require((currentSupply.add(tokensNumber)) <= _totalSupply, "You try to mint more tokens than totalSupply");
        
        mintPurchasedTokens(tokensNumber);
    }

    function withdraw() public onlyOwner {
        uint256 value = address(this).balance;
        bool sent = payable(_contractOwner).send(value);
        require(sent, "Error during withdraw transfer");
    }

    function changeRoyaltyData(address royaltyAddr, uint256 percent) public onlyOwner {
      royaltyAddress = royaltyAddr;
      ROYALTY_SIZE = percent;
    }

     function mintForAirdrop(uint256 tokensNumber) public onlyOwner {
      require(_mintedTokens[msg.sender].add(tokensNumber) <= 40, "max 40 tokens for airdrop");
      require(tokensNumber <= 20, "You cannot claim more than 20 tokens at once");
      require((currentSupply.add(tokensNumber)) <= _totalSupply, "You try to mint more tokens than totalSupply");

      mintPurchasedTokens(tokensNumber);
      _mintedTokens[msg.sender] = _mintedTokens[msg.sender].add(tokensNumber);
    }


    function releaseDate() public view returns (uint) {
      return releaseTimestamp;
    }
    
    function currentPrice() public view returns (uint256) {
      return tokenPrice;
    }

     function blockTime() public view returns(uint){
        return (block.timestamp * 1000);
    }

    function setReleaseDate(uint _releaseTimestamp) public onlyOwner {
      require(_releaseTimestamp > block.timestamp, 'timestamp should be greater than block timestamp');
       releaseTimestamp = _releaseTimestamp;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256) {
      return currentSupply;
    }

    /**
     * @dev Returns a token IDs array owned by `owner`.
     */
    function tokensByOwner(address owner) external view returns (uint256[] memory) {
      if (balanceOf(owner) == 0) {
        return new uint256[](0);
      }

      uint256 tokensOwned = 0;
      uint256 idIndex = 0;
      for(uint i = 1; i <= currentSupply; i++) {
        if (ownerOf(i) == owner) {
          tokensOwned++;
        }
      }

      uint256[] memory ids = new uint256[](tokensOwned);
      for(uint i = 1; i <= currentSupply; i++) {
        if (ownerOf(i) == owner) {
          ids[idIndex] = i;
          idIndex++;
        }
      }

      return ids;
    }

    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view returns (address receiver, uint256 royaltyAmount) {
        require(_salePrice > 0, 'amount should be greater then zero');
        uint256 amount = royaltyAmount.mul(ROYALTY_SIZE).div(ROYALTY_DEMONINATOR);
        address royaltyReceiver = _royaltyReceivers[_tokenId] != address(0) ? _royaltyReceivers[_tokenId] : royaltyAddress;
        return (royaltyReceiver, amount);
    }

    function addRoyaltyReceiverForTokenId(address receiver, uint256 tokenId) public onlyOwner {
        if (_royaltyReceivers[tokenId] == address(0)) {
            _royaltyReceivers[tokenId] = receiver;
        }
    }


    /**
     * @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 "https://loopylobstersnft.io/meta/";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

     function transferOwnership(address newOwner) public onlyOwner {
      _contractOwner = newOwner;
    }

    function changeSignerAddress(address newSigner) public onlyOwner {
      _signer = newSigner;
    }
}

File 2 of 2 : ECDSA.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "petersburg",
  "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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"mintedBy","type":"address"},{"indexed":false,"internalType":"uint256","name":"numberOfTokensMinted","type":"uint256"}],"name":"tokensMinted","type":"event"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"addRoyaltyReceiverForTokenId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokensNumber","type":"uint256"}],"name":"buyTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"royaltyAddr","type":"address"},{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"changeRoyaltyData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newSigner","type":"address"}],"name":"changeSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentPrice","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":[{"internalType":"uint256","name":"tokensNumber","type":"uint256"}],"name":"mintForAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"releaseDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"releaseTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"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":"uint256","name":"_releaseTimestamp","type":"uint256"}],"name":"setReleaseDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600e81526020017f4c6f6f7079204c6f62737465727300000000000000000000000000000000000081525060019080519060200190620000519291906200029f565b506040518060400160405280600481526020017f4c4f4f5000000000000000000000000000000000000000000000000000000000815250600290805190602001906200009f9291906200029f565b5060006003556361c0fce060045566d529ae9e8600006005557385b841cca05220b2adc99960b4207c0410e2f8ad600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060fa600d553480156200011f57600080fd5b50620001386301ffc9a760e01b620001c760201b60201c565b33600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001916380ac58cd60e01b620001c760201b60201c565b620001a9639325454260e01b620001c760201b60201c565b620001c1632a55205a60e01b620001c760201b60201c565b62000429565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916141562000233576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200022a9062000391565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b828054620002ad90620003c4565b90600052602060002090601f016020900481019282620002d157600085556200031d565b82601f10620002ec57805160ff19168380011785556200031d565b828001600101855582156200031d579182015b828111156200031c578251825591602001919060010190620002ff565b5b5090506200032c919062000330565b5090565b5b808211156200034b57600081600090555060010162000331565b5090565b60006200035e601c83620003b3565b91507f4552433136353a20696e76616c696420696e74657266616365206964000000006000830152602082019050919050565b60006020820190508181036000830152620003ac816200034f565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620003dd57607f821691505b60208210811415620003f457620003f3620003fa565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613e3c80620004396000396000f3fe6080604052600436106101c25760003560e01c80636352211e116100f7578063b88d4fde11610095578063cb689f4311610064578063cb689f4314610646578063cd6a3ea51461066f578063e985e9c514610698578063f2fde38b146106d5576101c2565b8063b88d4fde1461058c578063b9e3e2db146105b5578063c1915616146105e0578063c87b56dd14610609576101c2565b80639458d70d116100d15780639458d70d146104e457806395d89b411461050d5780639d1b464a14610538578063a22cb46514610563576101c2565b80636352211e1461043f57806370a082311461047c5780637ff9b596146104b9576101c2565b806318160ddd116101645780633610724e1161013e5780633610724e146103b85780633ccfd60b146103d457806342842e0e146103eb57806348b1516614610414576101c2565b806318160ddd1461032657806323b872dd146103515780632a55205a1461037a576101c2565b8063095ea7b3116101a0578063095ea7b31461026c5780630a3f013f146102955780630d381a28146102c05780631352faec146102fd576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612aa8565b6106fe565b6040516101fb9190613610565b60405180910390f35b34801561021057600080fd5b506102196107e0565b604051610226919061362b565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612afa565b610872565b604051610263919061355e565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612a6c565b6108f7565b005b3480156102a157600080fd5b506102aa610a0f565b6040516102b7919061394d565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e29190612901565b610a15565b6040516102f491906135ee565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f9190612afa565b610c45565b005b34801561033257600080fd5b5061033b610d28565b604051610348919061394d565b60405180910390f35b34801561035d57600080fd5b5061037860048036038101906103739190612966565b610d32565b005b34801561038657600080fd5b506103a1600480360381019061039c9190612b23565b610d92565b6040516103af9291906135c5565b60405180910390f35b6103d260048036038101906103cd9190612afa565b610edc565b005b3480156103e057600080fd5b506103e9611020565b005b3480156103f757600080fd5b50610412600480360381019061040d9190612966565b611172565b005b34801561042057600080fd5b50610429611192565b604051610436919061394d565b60405180910390f35b34801561044b57600080fd5b5061046660048036038101906104619190612afa565b6111a7565b604051610473919061355e565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e9190612901565b611259565b6040516104b0919061394d565b60405180910390f35b3480156104c557600080fd5b506104ce611311565b6040516104db919061394d565b60405180910390f35b3480156104f057600080fd5b5061050b60048036038101906105069190612a6c565b611317565b005b34801561051957600080fd5b506105226113fa565b60405161052f919061362b565b60405180910390f35b34801561054457600080fd5b5061054d61148c565b60405161055a919061394d565b60405180910390f35b34801561056f57600080fd5b5061058a60048036038101906105859190612a30565b611496565b005b34801561059857600080fd5b506105b360048036038101906105ae91906129b5565b611617565b005b3480156105c157600080fd5b506105ca611679565b6040516105d7919061394d565b60405180910390f35b3480156105ec57600080fd5b5061060760048036038101906106029190612901565b611683565b005b34801561061557600080fd5b50610630600480360381019061062b9190612afa565b61175e565b60405161063d919061362b565b60405180910390f35b34801561065257600080fd5b5061066d60048036038101906106689190612afa565b611805565b005b34801561067b57600080fd5b5061069660048036038101906106919190612a6c565b611a6f565b005b3480156106a457600080fd5b506106bf60048036038101906106ba919061292a565b611bc5565b6040516106cc9190613610565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f79190612901565b611c59565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d957506107d882611d34565b5b9050919050565b6060600180546107ef90613c10565b80601f016020809104026020016040519081016040528092919081815260200182805461081b90613c10565b80156108685780601f1061083d57610100808354040283529160200191610868565b820191906000526020600020905b81548152906001019060200180831161084b57829003601f168201915b5050505050905090565b600061087d82611d9b565b6108bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b39061382d565b60405180910390fd5b600a600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610902826111a7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096a906138ad565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610992611e07565b73ffffffffffffffffffffffffffffffffffffffff1614806109c157506109c0816109bb611e07565b611bc5565b5b610a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f79061378d565b60405180910390fd5b610a0a8383611e0f565b505050565b60045481565b60606000610a2283611259565b1415610a9f57600067ffffffffffffffff811115610a69577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610a975781602001602082028036833780820191505090505b509050610c40565b6000806000600190505b6003548111610b10578473ffffffffffffffffffffffffffffffffffffffff16610ad2826111a7565b73ffffffffffffffffffffffffffffffffffffffff161415610afd578280610af990613c42565b9350505b8080610b0890613c42565b915050610aa9565b5060008267ffffffffffffffff811115610b53577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610b815781602001602082028036833780820191505090505b5090506000600190505b6003548111610c38578573ffffffffffffffffffffffffffffffffffffffff16610bb4826111a7565b73ffffffffffffffffffffffffffffffffffffffff161415610c255780828481518110610c0a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508280610c2190613c42565b9350505b8080610c3090613c42565b915050610b8b565b508093505050505b919050565b610c4d611e07565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd39061384d565b60405180910390fd5b428111610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d15906136cd565b60405180910390fd5b8060048190555050565b6000600354905090565b610d43610d3d611e07565b82611ec8565b610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d79906138ed565b60405180910390fd5b610d8d838383611fa6565b505050565b60008060008311610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf906136ad565b60405180910390fd5b6000610e03612710610df5600d548561220290919063ffffffff16565b61221890919063ffffffff16565b905060008073ffffffffffffffffffffffffffffffffffffffff166010600088815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610e9657600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610ecb565b6010600087815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff165b905080829350935050509250929050565b600454421015610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f189061390d565b60405180910390fd5b600a811115610f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5c9061368d565b60405180910390fd5b34610f7b6005548361220290919063ffffffff16565b14610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb2906137ed565b60405180910390fd5b611388610fd38260035461222e90919063ffffffff16565b1115611014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100b9061364d565b60405180910390fd5b61101d81612244565b50565b611028611e07565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae9061384d565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff163190506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505090508061116e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611165906138cd565b60405180910390fd5b5050565b61118d83838360405180602001604052806000815250611617565b505050565b60006103e8426111a29190613acc565b905090565b6000806008600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611250576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611247906137cd565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c1906137ad565b60405180910390fd5b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60055481565b61131f611e07565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a59061384d565b60405180910390fd5b81600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d819055505050565b60606002805461140990613c10565b80601f016020809104026020016040519081016040528092919081815260200182805461143590613c10565b80156114825780601f1061145757610100808354040283529160200191611482565b820191906000526020600020905b81548152906001019060200180831161146557829003601f168201915b5050505050905090565b6000600554905090565b61149e611e07565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561150c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115039061372d565b60405180910390fd5b80600b6000611519611e07565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115c6611e07565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161160b9190613610565b60405180910390a35050565b611628611622611e07565b83611ec8565b611667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165e906138ed565b60405180910390fd5b6116738484848461228a565b50505050565b6000600454905090565b61168b611e07565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461171a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117119061384d565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606061176982611d9b565b6117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f9061388d565b60405180910390fd5b60006117b26122e6565b905060008151116117d257604051806020016040528060008152506117fd565b806117dc84612306565b6040516020016117ed92919061353a565b6040516020818303038152906040525b915050919050565b61180d611e07565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461189c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118939061384d565b60405180910390fd5b60286118f082600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461222e90919063ffffffff16565b1115611931576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119289061374d565b60405180910390fd5b6014811115611975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196c9061392d565b60405180910390fd5b61138861198d8260035461222e90919063ffffffff16565b11156119ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c59061364d565b60405180910390fd5b6119d781612244565b611a2981600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461222e90919063ffffffff16565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b611a77611e07565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd9061384d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166010600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611bc157816010600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5050565b6000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c61611e07565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce79061384d565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166008600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b81600a600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e82836111a7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ed382611d9b565b611f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f099061376d565b60405180910390fd5b6000611f1d836111a7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f8c57508373ffffffffffffffffffffffffffffffffffffffff16611f7484610872565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f9d5750611f9c8185611bc5565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fc6826111a7565b73ffffffffffffffffffffffffffffffffffffffff161461201c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120139061386d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561208c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120839061370d565b60405180910390fd5b6120978383836124b3565b6120a2600082611e0f565b6001600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120f29190613b26565b925050819055506001600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121499190613a45565b92505081905550816008600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081836122109190613acc565b905092915050565b600081836122269190613a9b565b905092915050565b6000818361223c9190613a45565b905092915050565b60005b81811015612286576003600081548092919061226290613c42565b9190505550612273336003546124b8565b808061227e90613c42565b915050612247565b5050565b612295848484611fa6565b6122a184848484612686565b6122e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d79061366d565b60405180910390fd5b50505050565b6060604051806060016040528060218152602001613de660219139905090565b6060600082141561234e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124ae565b600082905060005b6000821461238057808061236990613c42565b915050600a826123799190613a9b565b9150612356565b60008167ffffffffffffffff8111156123c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123f45781602001600182028036833780820191505090505b5090505b600085146124a75760018261240d9190613b26565b9150600a8561241c9190613c8b565b60306124289190613a45565b60f81b818381518110612464577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124a09190613a9b565b94506123f8565b8093505050505b919050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251f9061380d565b60405180910390fd5b61253181611d9b565b15612571576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612568906136ed565b60405180910390fd5b61257d600083836124b3565b6001600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125cd9190613a45565b92505081905550816008600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006126a78473ffffffffffffffffffffffffffffffffffffffff1661281d565b15612810578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126d0611e07565b8786866040518563ffffffff1660e01b81526004016126f29493929190613579565b602060405180830381600087803b15801561270c57600080fd5b505af192505050801561273d57506040513d601f19601f8201168201806040525081019061273a9190612ad1565b60015b6127c0573d806000811461276d576040519150601f19603f3d011682016040523d82523d6000602084013e612772565b606091505b506000815114156127b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127af9061366d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612815565b600190505b949350505050565b600080823b905060008111915050919050565b600061284361283e84613999565b613968565b90508281526020810184848401111561285b57600080fd5b612866848285613bce565b509392505050565b60008135905061287d81613d89565b92915050565b60008135905061289281613da0565b92915050565b6000813590506128a781613db7565b92915050565b6000815190506128bc81613db7565b92915050565b600082601f8301126128d357600080fd5b81356128e3848260208601612830565b91505092915050565b6000813590506128fb81613dce565b92915050565b60006020828403121561291357600080fd5b60006129218482850161286e565b91505092915050565b6000806040838503121561293d57600080fd5b600061294b8582860161286e565b925050602061295c8582860161286e565b9150509250929050565b60008060006060848603121561297b57600080fd5b60006129898682870161286e565b935050602061299a8682870161286e565b92505060406129ab868287016128ec565b9150509250925092565b600080600080608085870312156129cb57600080fd5b60006129d98782880161286e565b94505060206129ea8782880161286e565b93505060406129fb878288016128ec565b925050606085013567ffffffffffffffff811115612a1857600080fd5b612a24878288016128c2565b91505092959194509250565b60008060408385031215612a4357600080fd5b6000612a518582860161286e565b9250506020612a6285828601612883565b9150509250929050565b60008060408385031215612a7f57600080fd5b6000612a8d8582860161286e565b9250506020612a9e858286016128ec565b9150509250929050565b600060208284031215612aba57600080fd5b6000612ac884828501612898565b91505092915050565b600060208284031215612ae357600080fd5b6000612af1848285016128ad565b91505092915050565b600060208284031215612b0c57600080fd5b6000612b1a848285016128ec565b91505092915050565b60008060408385031215612b3657600080fd5b6000612b44858286016128ec565b9250506020612b55858286016128ec565b9150509250929050565b6000612b6b838361351c565b60208301905092915050565b612b8081613b5a565b82525050565b6000612b91826139d9565b612b9b8185613a07565b9350612ba6836139c9565b8060005b83811015612bd7578151612bbe8882612b5f565b9750612bc9836139fa565b925050600181019050612baa565b5085935050505092915050565b612bed81613b6c565b82525050565b6000612bfe826139e4565b612c088185613a18565b9350612c18818560208601613bdd565b612c2181613d78565b840191505092915050565b6000612c37826139ef565b612c418185613a29565b9350612c51818560208601613bdd565b612c5a81613d78565b840191505092915050565b6000612c70826139ef565b612c7a8185613a3a565b9350612c8a818560208601613bdd565b80840191505092915050565b6000612ca3602c83613a29565b91507f596f752074727920746f206d696e74206d6f726520746f6b656e73207468616e60008301527f20746f74616c537570706c7900000000000000000000000000000000000000006020830152604082019050919050565b6000612d09603283613a29565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000612d6f602f83613a29565b91507f596f752063616e6e6f74207075726368617365206d6f7265207468616e20313060008301527f20746f6b656e73206174206f6e636500000000000000000000000000000000006020830152604082019050919050565b6000612dd5602283613a29565b91507f616d6f756e742073686f756c642062652067726561746572207468656e207a6560008301527f726f0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612e3b603083613a29565b91507f74696d657374616d702073686f756c642062652067726561746572207468616e60008301527f20626c6f636b2074696d657374616d70000000000000000000000000000000006020830152604082019050919050565b6000612ea1601c83613a29565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000612ee1602483613a29565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f47601983613a29565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000612f87601983613a29565b91507f6d617820343020746f6b656e7320666f722061697264726f70000000000000006000830152602082019050919050565b6000612fc7602c83613a29565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061302d603883613a29565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613093602a83613a29565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006130f9602983613a29565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061315f603183613a29565b91507f52656365697665642076616c756520646f65736e2774206d617463682074686560008301527f2072657175657374656420746f6b656e730000000000000000000000000000006020830152604082019050919050565b60006131c5602083613a29565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613205602c83613a29565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061326b602083613a29565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006132ab602983613a29565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613311602f83613a29565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613377602183613a29565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133dd601e83613a29565b91507f4572726f7220647572696e67207769746864726177207472616e7366657200006000830152602082019050919050565b600061341d603183613a29565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613483601783613a29565b91507f4974206973206e6f742073616c65736d6f6465207965740000000000000000006000830152602082019050919050565b60006134c3602c83613a29565b91507f596f752063616e6e6f7420636c61696d206d6f7265207468616e20323020746f60008301527f6b656e73206174206f6e636500000000000000000000000000000000000000006020830152604082019050919050565b61352581613bc4565b82525050565b61353481613bc4565b82525050565b60006135468285612c65565b91506135528284612c65565b91508190509392505050565b60006020820190506135736000830184612b77565b92915050565b600060808201905061358e6000830187612b77565b61359b6020830186612b77565b6135a8604083018561352b565b81810360608301526135ba8184612bf3565b905095945050505050565b60006040820190506135da6000830185612b77565b6135e7602083018461352b565b9392505050565b600060208201905081810360008301526136088184612b86565b905092915050565b60006020820190506136256000830184612be4565b92915050565b600060208201905081810360008301526136458184612c2c565b905092915050565b6000602082019050818103600083015261366681612c96565b9050919050565b6000602082019050818103600083015261368681612cfc565b9050919050565b600060208201905081810360008301526136a681612d62565b9050919050565b600060208201905081810360008301526136c681612dc8565b9050919050565b600060208201905081810360008301526136e681612e2e565b9050919050565b6000602082019050818103600083015261370681612e94565b9050919050565b6000602082019050818103600083015261372681612ed4565b9050919050565b6000602082019050818103600083015261374681612f3a565b9050919050565b6000602082019050818103600083015261376681612f7a565b9050919050565b6000602082019050818103600083015261378681612fba565b9050919050565b600060208201905081810360008301526137a681613020565b9050919050565b600060208201905081810360008301526137c681613086565b9050919050565b600060208201905081810360008301526137e6816130ec565b9050919050565b6000602082019050818103600083015261380681613152565b9050919050565b60006020820190508181036000830152613826816131b8565b9050919050565b60006020820190508181036000830152613846816131f8565b9050919050565b600060208201905081810360008301526138668161325e565b9050919050565b600060208201905081810360008301526138868161329e565b9050919050565b600060208201905081810360008301526138a681613304565b9050919050565b600060208201905081810360008301526138c68161336a565b9050919050565b600060208201905081810360008301526138e6816133d0565b9050919050565b6000602082019050818103600083015261390681613410565b9050919050565b6000602082019050818103600083015261392681613476565b9050919050565b60006020820190508181036000830152613946816134b6565b9050919050565b6000602082019050613962600083018461352b565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561398f5761398e613d49565b5b8060405250919050565b600067ffffffffffffffff8211156139b4576139b3613d49565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a5082613bc4565b9150613a5b83613bc4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a9057613a8f613cbc565b5b828201905092915050565b6000613aa682613bc4565b9150613ab183613bc4565b925082613ac157613ac0613ceb565b5b828204905092915050565b6000613ad782613bc4565b9150613ae283613bc4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b1b57613b1a613cbc565b5b828202905092915050565b6000613b3182613bc4565b9150613b3c83613bc4565b925082821015613b4f57613b4e613cbc565b5b828203905092915050565b6000613b6582613ba4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613bfb578082015181840152602081019050613be0565b83811115613c0a576000848401525b50505050565b60006002820490506001821680613c2857607f821691505b60208210811415613c3c57613c3b613d1a565b5b50919050565b6000613c4d82613bc4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c8057613c7f613cbc565b5b600182019050919050565b6000613c9682613bc4565b9150613ca183613bc4565b925082613cb157613cb0613ceb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613d9281613b5a565b8114613d9d57600080fd5b50565b613da981613b6c565b8114613db457600080fd5b50565b613dc081613b78565b8114613dcb57600080fd5b50565b613dd781613bc4565b8114613de257600080fd5b5056fe68747470733a2f2f6c6f6f70796c6f6273746572736e66742e696f2f6d6574612fa2646970667358221220d5b1ca47290615516e9251df208e9640ef81a537bce29afb59b741ca7b1bf2de64736f6c63430008000033

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80636352211e116100f7578063b88d4fde11610095578063cb689f4311610064578063cb689f4314610646578063cd6a3ea51461066f578063e985e9c514610698578063f2fde38b146106d5576101c2565b8063b88d4fde1461058c578063b9e3e2db146105b5578063c1915616146105e0578063c87b56dd14610609576101c2565b80639458d70d116100d15780639458d70d146104e457806395d89b411461050d5780639d1b464a14610538578063a22cb46514610563576101c2565b80636352211e1461043f57806370a082311461047c5780637ff9b596146104b9576101c2565b806318160ddd116101645780633610724e1161013e5780633610724e146103b85780633ccfd60b146103d457806342842e0e146103eb57806348b1516614610414576101c2565b806318160ddd1461032657806323b872dd146103515780632a55205a1461037a576101c2565b8063095ea7b3116101a0578063095ea7b31461026c5780630a3f013f146102955780630d381a28146102c05780631352faec146102fd576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612aa8565b6106fe565b6040516101fb9190613610565b60405180910390f35b34801561021057600080fd5b506102196107e0565b604051610226919061362b565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612afa565b610872565b604051610263919061355e565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612a6c565b6108f7565b005b3480156102a157600080fd5b506102aa610a0f565b6040516102b7919061394d565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e29190612901565b610a15565b6040516102f491906135ee565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f9190612afa565b610c45565b005b34801561033257600080fd5b5061033b610d28565b604051610348919061394d565b60405180910390f35b34801561035d57600080fd5b5061037860048036038101906103739190612966565b610d32565b005b34801561038657600080fd5b506103a1600480360381019061039c9190612b23565b610d92565b6040516103af9291906135c5565b60405180910390f35b6103d260048036038101906103cd9190612afa565b610edc565b005b3480156103e057600080fd5b506103e9611020565b005b3480156103f757600080fd5b50610412600480360381019061040d9190612966565b611172565b005b34801561042057600080fd5b50610429611192565b604051610436919061394d565b60405180910390f35b34801561044b57600080fd5b5061046660048036038101906104619190612afa565b6111a7565b604051610473919061355e565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e9190612901565b611259565b6040516104b0919061394d565b60405180910390f35b3480156104c557600080fd5b506104ce611311565b6040516104db919061394d565b60405180910390f35b3480156104f057600080fd5b5061050b60048036038101906105069190612a6c565b611317565b005b34801561051957600080fd5b506105226113fa565b60405161052f919061362b565b60405180910390f35b34801561054457600080fd5b5061054d61148c565b60405161055a919061394d565b60405180910390f35b34801561056f57600080fd5b5061058a60048036038101906105859190612a30565b611496565b005b34801561059857600080fd5b506105b360048036038101906105ae91906129b5565b611617565b005b3480156105c157600080fd5b506105ca611679565b6040516105d7919061394d565b60405180910390f35b3480156105ec57600080fd5b5061060760048036038101906106029190612901565b611683565b005b34801561061557600080fd5b50610630600480360381019061062b9190612afa565b61175e565b60405161063d919061362b565b60405180910390f35b34801561065257600080fd5b5061066d60048036038101906106689190612afa565b611805565b005b34801561067b57600080fd5b5061069660048036038101906106919190612a6c565b611a6f565b005b3480156106a457600080fd5b506106bf60048036038101906106ba919061292a565b611bc5565b6040516106cc9190613610565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f79190612901565b611c59565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d957506107d882611d34565b5b9050919050565b6060600180546107ef90613c10565b80601f016020809104026020016040519081016040528092919081815260200182805461081b90613c10565b80156108685780601f1061083d57610100808354040283529160200191610868565b820191906000526020600020905b81548152906001019060200180831161084b57829003601f168201915b5050505050905090565b600061087d82611d9b565b6108bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b39061382d565b60405180910390fd5b600a600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610902826111a7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096a906138ad565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610992611e07565b73ffffffffffffffffffffffffffffffffffffffff1614806109c157506109c0816109bb611e07565b611bc5565b5b610a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f79061378d565b60405180910390fd5b610a0a8383611e0f565b505050565b60045481565b60606000610a2283611259565b1415610a9f57600067ffffffffffffffff811115610a69577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610a975781602001602082028036833780820191505090505b509050610c40565b6000806000600190505b6003548111610b10578473ffffffffffffffffffffffffffffffffffffffff16610ad2826111a7565b73ffffffffffffffffffffffffffffffffffffffff161415610afd578280610af990613c42565b9350505b8080610b0890613c42565b915050610aa9565b5060008267ffffffffffffffff811115610b53577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610b815781602001602082028036833780820191505090505b5090506000600190505b6003548111610c38578573ffffffffffffffffffffffffffffffffffffffff16610bb4826111a7565b73ffffffffffffffffffffffffffffffffffffffff161415610c255780828481518110610c0a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508280610c2190613c42565b9350505b8080610c3090613c42565b915050610b8b565b508093505050505b919050565b610c4d611e07565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd39061384d565b60405180910390fd5b428111610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d15906136cd565b60405180910390fd5b8060048190555050565b6000600354905090565b610d43610d3d611e07565b82611ec8565b610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d79906138ed565b60405180910390fd5b610d8d838383611fa6565b505050565b60008060008311610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf906136ad565b60405180910390fd5b6000610e03612710610df5600d548561220290919063ffffffff16565b61221890919063ffffffff16565b905060008073ffffffffffffffffffffffffffffffffffffffff166010600088815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610e9657600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610ecb565b6010600087815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff165b905080829350935050509250929050565b600454421015610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f189061390d565b60405180910390fd5b600a811115610f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5c9061368d565b60405180910390fd5b34610f7b6005548361220290919063ffffffff16565b14610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb2906137ed565b60405180910390fd5b611388610fd38260035461222e90919063ffffffff16565b1115611014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100b9061364d565b60405180910390fd5b61101d81612244565b50565b611028611e07565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae9061384d565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff163190506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505090508061116e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611165906138cd565b60405180910390fd5b5050565b61118d83838360405180602001604052806000815250611617565b505050565b60006103e8426111a29190613acc565b905090565b6000806008600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611250576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611247906137cd565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c1906137ad565b60405180910390fd5b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60055481565b61131f611e07565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a59061384d565b60405180910390fd5b81600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d819055505050565b60606002805461140990613c10565b80601f016020809104026020016040519081016040528092919081815260200182805461143590613c10565b80156114825780601f1061145757610100808354040283529160200191611482565b820191906000526020600020905b81548152906001019060200180831161146557829003601f168201915b5050505050905090565b6000600554905090565b61149e611e07565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561150c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115039061372d565b60405180910390fd5b80600b6000611519611e07565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115c6611e07565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161160b9190613610565b60405180910390a35050565b611628611622611e07565b83611ec8565b611667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165e906138ed565b60405180910390fd5b6116738484848461228a565b50505050565b6000600454905090565b61168b611e07565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461171a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117119061384d565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606061176982611d9b565b6117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f9061388d565b60405180910390fd5b60006117b26122e6565b905060008151116117d257604051806020016040528060008152506117fd565b806117dc84612306565b6040516020016117ed92919061353a565b6040516020818303038152906040525b915050919050565b61180d611e07565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461189c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118939061384d565b60405180910390fd5b60286118f082600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461222e90919063ffffffff16565b1115611931576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119289061374d565b60405180910390fd5b6014811115611975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196c9061392d565b60405180910390fd5b61138861198d8260035461222e90919063ffffffff16565b11156119ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c59061364d565b60405180910390fd5b6119d781612244565b611a2981600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461222e90919063ffffffff16565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b611a77611e07565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd9061384d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166010600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611bc157816010600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5050565b6000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c61611e07565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce79061384d565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166008600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b81600a600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e82836111a7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ed382611d9b565b611f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f099061376d565b60405180910390fd5b6000611f1d836111a7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f8c57508373ffffffffffffffffffffffffffffffffffffffff16611f7484610872565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f9d5750611f9c8185611bc5565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fc6826111a7565b73ffffffffffffffffffffffffffffffffffffffff161461201c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120139061386d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561208c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120839061370d565b60405180910390fd5b6120978383836124b3565b6120a2600082611e0f565b6001600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120f29190613b26565b925050819055506001600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121499190613a45565b92505081905550816008600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081836122109190613acc565b905092915050565b600081836122269190613a9b565b905092915050565b6000818361223c9190613a45565b905092915050565b60005b81811015612286576003600081548092919061226290613c42565b9190505550612273336003546124b8565b808061227e90613c42565b915050612247565b5050565b612295848484611fa6565b6122a184848484612686565b6122e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d79061366d565b60405180910390fd5b50505050565b6060604051806060016040528060218152602001613de660219139905090565b6060600082141561234e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124ae565b600082905060005b6000821461238057808061236990613c42565b915050600a826123799190613a9b565b9150612356565b60008167ffffffffffffffff8111156123c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123f45781602001600182028036833780820191505090505b5090505b600085146124a75760018261240d9190613b26565b9150600a8561241c9190613c8b565b60306124289190613a45565b60f81b818381518110612464577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124a09190613a9b565b94506123f8565b8093505050505b919050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251f9061380d565b60405180910390fd5b61253181611d9b565b15612571576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612568906136ed565b60405180910390fd5b61257d600083836124b3565b6001600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125cd9190613a45565b92505081905550816008600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006126a78473ffffffffffffffffffffffffffffffffffffffff1661281d565b15612810578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126d0611e07565b8786866040518563ffffffff1660e01b81526004016126f29493929190613579565b602060405180830381600087803b15801561270c57600080fd5b505af192505050801561273d57506040513d601f19601f8201168201806040525081019061273a9190612ad1565b60015b6127c0573d806000811461276d576040519150601f19603f3d011682016040523d82523d6000602084013e612772565b606091505b506000815114156127b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127af9061366d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612815565b600190505b949350505050565b600080823b905060008111915050919050565b600061284361283e84613999565b613968565b90508281526020810184848401111561285b57600080fd5b612866848285613bce565b509392505050565b60008135905061287d81613d89565b92915050565b60008135905061289281613da0565b92915050565b6000813590506128a781613db7565b92915050565b6000815190506128bc81613db7565b92915050565b600082601f8301126128d357600080fd5b81356128e3848260208601612830565b91505092915050565b6000813590506128fb81613dce565b92915050565b60006020828403121561291357600080fd5b60006129218482850161286e565b91505092915050565b6000806040838503121561293d57600080fd5b600061294b8582860161286e565b925050602061295c8582860161286e565b9150509250929050565b60008060006060848603121561297b57600080fd5b60006129898682870161286e565b935050602061299a8682870161286e565b92505060406129ab868287016128ec565b9150509250925092565b600080600080608085870312156129cb57600080fd5b60006129d98782880161286e565b94505060206129ea8782880161286e565b93505060406129fb878288016128ec565b925050606085013567ffffffffffffffff811115612a1857600080fd5b612a24878288016128c2565b91505092959194509250565b60008060408385031215612a4357600080fd5b6000612a518582860161286e565b9250506020612a6285828601612883565b9150509250929050565b60008060408385031215612a7f57600080fd5b6000612a8d8582860161286e565b9250506020612a9e858286016128ec565b9150509250929050565b600060208284031215612aba57600080fd5b6000612ac884828501612898565b91505092915050565b600060208284031215612ae357600080fd5b6000612af1848285016128ad565b91505092915050565b600060208284031215612b0c57600080fd5b6000612b1a848285016128ec565b91505092915050565b60008060408385031215612b3657600080fd5b6000612b44858286016128ec565b9250506020612b55858286016128ec565b9150509250929050565b6000612b6b838361351c565b60208301905092915050565b612b8081613b5a565b82525050565b6000612b91826139d9565b612b9b8185613a07565b9350612ba6836139c9565b8060005b83811015612bd7578151612bbe8882612b5f565b9750612bc9836139fa565b925050600181019050612baa565b5085935050505092915050565b612bed81613b6c565b82525050565b6000612bfe826139e4565b612c088185613a18565b9350612c18818560208601613bdd565b612c2181613d78565b840191505092915050565b6000612c37826139ef565b612c418185613a29565b9350612c51818560208601613bdd565b612c5a81613d78565b840191505092915050565b6000612c70826139ef565b612c7a8185613a3a565b9350612c8a818560208601613bdd565b80840191505092915050565b6000612ca3602c83613a29565b91507f596f752074727920746f206d696e74206d6f726520746f6b656e73207468616e60008301527f20746f74616c537570706c7900000000000000000000000000000000000000006020830152604082019050919050565b6000612d09603283613a29565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000612d6f602f83613a29565b91507f596f752063616e6e6f74207075726368617365206d6f7265207468616e20313060008301527f20746f6b656e73206174206f6e636500000000000000000000000000000000006020830152604082019050919050565b6000612dd5602283613a29565b91507f616d6f756e742073686f756c642062652067726561746572207468656e207a6560008301527f726f0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612e3b603083613a29565b91507f74696d657374616d702073686f756c642062652067726561746572207468616e60008301527f20626c6f636b2074696d657374616d70000000000000000000000000000000006020830152604082019050919050565b6000612ea1601c83613a29565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000612ee1602483613a29565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f47601983613a29565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000612f87601983613a29565b91507f6d617820343020746f6b656e7320666f722061697264726f70000000000000006000830152602082019050919050565b6000612fc7602c83613a29565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061302d603883613a29565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613093602a83613a29565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006130f9602983613a29565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061315f603183613a29565b91507f52656365697665642076616c756520646f65736e2774206d617463682074686560008301527f2072657175657374656420746f6b656e730000000000000000000000000000006020830152604082019050919050565b60006131c5602083613a29565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613205602c83613a29565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061326b602083613a29565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006132ab602983613a29565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613311602f83613a29565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613377602183613a29565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133dd601e83613a29565b91507f4572726f7220647572696e67207769746864726177207472616e7366657200006000830152602082019050919050565b600061341d603183613a29565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613483601783613a29565b91507f4974206973206e6f742073616c65736d6f6465207965740000000000000000006000830152602082019050919050565b60006134c3602c83613a29565b91507f596f752063616e6e6f7420636c61696d206d6f7265207468616e20323020746f60008301527f6b656e73206174206f6e636500000000000000000000000000000000000000006020830152604082019050919050565b61352581613bc4565b82525050565b61353481613bc4565b82525050565b60006135468285612c65565b91506135528284612c65565b91508190509392505050565b60006020820190506135736000830184612b77565b92915050565b600060808201905061358e6000830187612b77565b61359b6020830186612b77565b6135a8604083018561352b565b81810360608301526135ba8184612bf3565b905095945050505050565b60006040820190506135da6000830185612b77565b6135e7602083018461352b565b9392505050565b600060208201905081810360008301526136088184612b86565b905092915050565b60006020820190506136256000830184612be4565b92915050565b600060208201905081810360008301526136458184612c2c565b905092915050565b6000602082019050818103600083015261366681612c96565b9050919050565b6000602082019050818103600083015261368681612cfc565b9050919050565b600060208201905081810360008301526136a681612d62565b9050919050565b600060208201905081810360008301526136c681612dc8565b9050919050565b600060208201905081810360008301526136e681612e2e565b9050919050565b6000602082019050818103600083015261370681612e94565b9050919050565b6000602082019050818103600083015261372681612ed4565b9050919050565b6000602082019050818103600083015261374681612f3a565b9050919050565b6000602082019050818103600083015261376681612f7a565b9050919050565b6000602082019050818103600083015261378681612fba565b9050919050565b600060208201905081810360008301526137a681613020565b9050919050565b600060208201905081810360008301526137c681613086565b9050919050565b600060208201905081810360008301526137e6816130ec565b9050919050565b6000602082019050818103600083015261380681613152565b9050919050565b60006020820190508181036000830152613826816131b8565b9050919050565b60006020820190508181036000830152613846816131f8565b9050919050565b600060208201905081810360008301526138668161325e565b9050919050565b600060208201905081810360008301526138868161329e565b9050919050565b600060208201905081810360008301526138a681613304565b9050919050565b600060208201905081810360008301526138c68161336a565b9050919050565b600060208201905081810360008301526138e6816133d0565b9050919050565b6000602082019050818103600083015261390681613410565b9050919050565b6000602082019050818103600083015261392681613476565b9050919050565b60006020820190508181036000830152613946816134b6565b9050919050565b6000602082019050613962600083018461352b565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561398f5761398e613d49565b5b8060405250919050565b600067ffffffffffffffff8211156139b4576139b3613d49565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a5082613bc4565b9150613a5b83613bc4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a9057613a8f613cbc565b5b828201905092915050565b6000613aa682613bc4565b9150613ab183613bc4565b925082613ac157613ac0613ceb565b5b828204905092915050565b6000613ad782613bc4565b9150613ae283613bc4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b1b57613b1a613cbc565b5b828202905092915050565b6000613b3182613bc4565b9150613b3c83613bc4565b925082821015613b4f57613b4e613cbc565b5b828203905092915050565b6000613b6582613ba4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613bfb578082015181840152602081019050613be0565b83811115613c0a576000848401525b50505050565b60006002820490506001821680613c2857607f821691505b60208210811415613c3c57613c3b613d1a565b5b50919050565b6000613c4d82613bc4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c8057613c7f613cbc565b5b600182019050919050565b6000613c9682613bc4565b9150613ca183613bc4565b925082613cb157613cb0613ceb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613d9281613b5a565b8114613d9d57600080fd5b50565b613da981613b6c565b8114613db457600080fd5b50565b613dc081613b78565b8114613dcb57600080fd5b50565b613dd781613bc4565b8114613de257600080fd5b5056fe68747470733a2f2f6c6f6f70796c6f6273746572736e66742e696f2f6d6574612fa2646970667358221220d5b1ca47290615516e9251df208e9640ef81a537bce29afb59b741ca7b1bf2de64736f6c63430008000033

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.