ETH Price: $3,355.84 (-2.72%)
Gas: 3 Gwei

Token

InvaderAcademy (IA)
 

Overview

Max Total Supply

801 IA

Holders

347

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
herefordecades.eth
Balance
1 IA
0xA98220f6dC5DFcA27ff19605a0a6D3E1dDE4CFE8
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:
InvaderAcademy

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-06
*/

/**
 *Submitted for verification at Etherscan.io on 2021-09-06
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
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;
        }
    }
}
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);
    }
}

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 IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}
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);
}
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);
}
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);
            }
        }
    }
}
abstract contract ContextMixin {
    function msgSender() internal view returns (address payable sender) {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return interfaceId == type(IERC165).interfaceId;
    }
}

contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(
            ERC721.ownerOf(tokenId) == from,
            "ERC721: transfer 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(ERC721.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 {}
}
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721.balanceOf(owner),
            "ERC721Enumerable: owner index out of bounds"
        );
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721Enumerable.totalSupply(),
            "ERC721Enumerable: global index out of bounds"
        );
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId)
        private
    {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}
contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}
contract Migrations {
  address public owner;
  uint public last_completed_migration;

  constructor() {
    owner = msg.sender;
  }

  modifier restricted() {
    if (msg.sender == owner) _;
  }

  function setCompleted(uint completed) public restricted {
    last_completed_migration = completed;
  }

  function upgrade(address new_address) public restricted {
    Migrations upgraded = Migrations(new_address);
    upgraded.setCompleted(last_completed_migration);
  }
}
contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string public constant ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH =
        keccak256(
            bytes(
                "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
            )
        );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contracts that inherits this contract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(string memory name) internal initializer {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}
contract NativeMetaTransaction is EIP712Base {
    using SafeMath for uint256;
    bytes32 private constant META_TRANSACTION_TYPEHASH =
        keccak256(
            bytes(
                "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
            )
        );
    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });

        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress] = nonces[userAddress].add(1);

        emit MetaTransactionExecuted(
            userAddress,
            payable(msg.sender),
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}


contract InvaderAcademy is
    ContextMixin,
    ERC721Enumerable,
    NativeMetaTransaction,
    Ownable
{
    using SafeMath for uint256;

    uint256 private _currentTokenId = 0;

    uint256 MAX_SUPPLY = 7777;
    string public baseTokenURI;
    
    uint256 public NFT_price = 0.042 ether;

    uint256 public startTime = block.timestamp;
    address public teslaOwner;
    string _name = "InvaderAcademy";
    string _symbol = "IA";

    constructor(
    ) ERC721(_name, _symbol) {
        // baseTokenURI = _uri;
        _initializeEIP712(_name);
    }
    function set_start_time(uint256 time) external onlyOwner{
        startTime = time;
    }

    /**
     * @dev Mints a token to an address with a tokenURI.
     * @param _to address of the future owner of the token
     */
    function mintTo(address _to) public onlyOwner {
        require(_currentTokenId < MAX_SUPPLY, "Max Supply Reached");
        uint256 newTokenId = _getNextTokenId();
        _mint(_to, newTokenId);
        _incrementTokenId();
    }
    

    function buy() public payable {
        require(block.timestamp >= startTime, "It's not time yet");
        require(msg.value == NFT_price, "Sent Amount Not Enough");
        require(_currentTokenId < MAX_SUPPLY, "Max Supply Reached");

            uint256 newTokenId = _getNextTokenId();
            _mint(msg.sender, newTokenId);
            _incrementTokenId();
    }


    function withdraw() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

    /**
     * @dev calculates the next token ID based on value of _currentTokenId
     * @return uint256 for the next token ID
     */
    function _getNextTokenId() private view returns (uint256) {
        return _currentTokenId.add(1);
    }

    function randomHash() internal view returns (uint256) {
        bytes32 txHash = keccak256(
            abi.encode(block.coinbase, block.timestamp, block.difficulty)
        );
        return uint256(txHash);
    }

    /**
     * @dev increments the value of _currentTokenId,When all 9,788 Ghosts are sold out, a randomHash Ghost NFT owner will win a Tesla Model Y. The more NFT owned, the bigger the chance.
     */
    function _incrementTokenId() private {
        require(_currentTokenId < MAX_SUPPLY);

        _currentTokenId++;
        if (_currentTokenId == MAX_SUPPLY - 1) {
            uint256 rand = randomHash() % 1000;
            bytes32 txHash = keccak256(
                abi.encode(
                    ownerOf(_currentTokenId - 1000 + rand),
                    ownerOf(_currentTokenId - 2000 + rand),
                    ownerOf(_currentTokenId - 3000 + rand),
                    ownerOf(_currentTokenId - 4000 + rand),
                    ownerOf(_currentTokenId - 5000 + rand),
                    ownerOf(_currentTokenId - 6000 + rand),
                    ownerOf(_currentTokenId - 7000 + rand),
                    ownerOf(_currentTokenId - 8000 + rand),
                    ownerOf(_currentTokenId - 9000 + rand),
                    ownerOf(_currentTokenId - 10000 + rand),
                    ownerOf(_currentTokenId - 11000 + rand),
                    msg.sender
                )
            );
            teslaOwner = ownerOf((uint256(txHash) % MAX_SUPPLY) );
        }
    }

    /**
     * @dev change the baseGhostURI if there are future problems with the API service
     */
    function setBaseUri(string memory _uri) external onlyOwner {
        baseTokenURI = _uri;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        return
            string(abi.encodePacked(baseTokenURI, Strings.toString(_tokenId)));
    }

    /**
     * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea.
     */
    function _msgSender() internal view override returns (address sender) {
        return ContextMixin.msgSender();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"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":"address","name":"_to","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"set_start_time","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teslaOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600a805460ff191690556000600e908155611e61600f55669536c7089100006011554260125560c060405260808190526d496e766164657241636164656d7960901b60a09081526200005591601491906200045f565b5060408051808201909152600280825261494160f01b602090920191825262000081916015916200045f565b503480156200008f57600080fd5b50601480546200009f9062000559565b80601f0160208091040260200160405190810160405280929190818152602001828054620000cd9062000559565b80156200011e5780601f10620000f2576101008083540402835291602001916200011e565b820191906000526020600020905b8154815290600101906020018083116200010057829003601f168201915b505050505060158054620001329062000559565b80601f0160208091040260200160405190810160405280929190818152602001828054620001609062000559565b8015620001b15780601f106200018557610100808354040283529160200191620001b1565b820191906000526020600020905b8154815290600101906020018083116200019357829003601f168201915b50508451620001cb9350600092506020860191506200045f565b508051620001e19060019060208401906200045f565b505050620001fe620001f8620002a260201b60201c565b620002bf565b6200029c60148054620002119062000559565b80601f01602080910402602001604051908101604052809291908181526020018280546200023f9062000559565b8015620002905780601f10620002645761010080835404028352916020019162000290565b820191906000526020600020905b8154815290600101906020018083116200027257829003601f168201915b50506200031192505050565b62000596565b6000620002b96200035b60201b62000f921760201c565b90505b90565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff1615620003405760405162461bcd60e51b8152600401620003379062000531565b60405180910390fd5b6200034b81620003b9565b50600a805460ff19166001179055565b600033301415620003b457600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150620002bc9050565b503390565b6040518060800160405280604f815260200162002fc7604f913980516020918201208251838301206040805180820190915260018152603160f81b930192909252907fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc630620004276200045b565b6040516200043d95949392919060200162000505565b60408051601f198184030181529190528051602090910120600b5550565b4690565b8280546200046d9062000559565b90600052602060002090601f016020900481019282620004915760008555620004dc565b82601f10620004ac57805160ff1916838001178555620004dc565b82800160010185558215620004dc579182015b82811115620004dc578251825591602001919060010190620004bf565b50620004ea929150620004ee565b5090565b5b80821115620004ea5760008155600101620004ef565b948552602085019390935260408401919091526001600160a01b03166060830152608082015260a00190565b6020808252600e908201526d185b1c9958591e481a5b9a5d195960921b604082015260600190565b6002810460018216806200056e57607f821691505b602082108114156200059057634e487b7160e01b600052602260045260246000fd5b50919050565b612a2180620005a66000396000f3fe6080604052600436106101ee5760003560e01c8063663287381161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610514578063d547cfb714610534578063d71ac32e14610549578063e985e9c51461055e578063f2fde38b1461057e576101ee565b8063a22cb465146104ac578063a6f2ae3a146104cc578063b27b1a6d146104d4578063b88d4fde146104f4576101ee565b806378e97925116100dc57806378e979251461044d5780638da5cb5b1461046257806395d89b4114610477578063a0bcfc7f1461048c576101ee565b806366328738146103e357806370a08231146103f8578063715018a614610418578063755edd171461042d576101ee565b806323b872dd116101855780633ccfd60b116101545780633ccfd60b1461036e57806342842e0e146103835780634f6ccce7146103a35780636352211e146103c3576101ee565b806323b872dd146102f95780632d0335ab146103195780632f745c59146103395780633408e47014610359576101ee565b80630c53c51c116101c15780630c53c51c1461029a5780630f7e5970146102ad57806318160ddd146102c257806320379ee5146102e4576101ee565b806301ffc9a7146101f357806306fdde0314610229578063081812fc1461024b578063095ea7b314610278575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611ee6565b61059e565b6040516102209190612210565b60405180910390f35b34801561023557600080fd5b5061023e6105cb565b6040516102209190612266565b34801561025757600080fd5b5061026b610266366004611f64565b61065e565b60405161022091906120e5565b34801561028457600080fd5b50610298610293366004611ebd565b6106aa565b005b61023e6102a8366004611e44565b610742565b3480156102b957600080fd5b5061023e6108c2565b3480156102ce57600080fd5b506102d76108df565b604051610220919061221b565b3480156102f057600080fd5b506102d76108e5565b34801561030557600080fd5b50610298610314366004611d69565b6108eb565b34801561032557600080fd5b506102d7610334366004611d1d565b610923565b34801561034557600080fd5b506102d7610354366004611ebd565b61093e565b34801561036557600080fd5b506102d7610990565b34801561037a57600080fd5b50610298610994565b34801561038f57600080fd5b5061029861039e366004611d69565b610a16565b3480156103af57600080fd5b506102d76103be366004611f64565b610a31565b3480156103cf57600080fd5b5061026b6103de366004611f64565b610a8c565b3480156103ef57600080fd5b5061026b610ac1565b34801561040457600080fd5b506102d7610413366004611d1d565b610ad0565b34801561042457600080fd5b50610298610b14565b34801561043957600080fd5b50610298610448366004611d1d565b610b5f565b34801561045957600080fd5b506102d7610be3565b34801561046e57600080fd5b5061026b610be9565b34801561048357600080fd5b5061023e610bf8565b34801561049857600080fd5b506102986104a7366004611f1e565b610c07565b3480156104b857600080fd5b506102986104c7366004611e0a565b610c59565b610298610d27565b3480156104e057600080fd5b506102986104ef366004611f64565b610dab565b34801561050057600080fd5b5061029861050f366004611da4565b610def565b34801561052057600080fd5b5061023e61052f366004611f64565b610e2e565b34801561054057600080fd5b5061023e610e62565b34801561055557600080fd5b506102d7610ef0565b34801561056a57600080fd5b50610213610579366004611d37565b610ef6565b34801561058a57600080fd5b50610298610599366004611d1d565b610f24565b60006001600160e01b0319821663780e9d6360e01b14806105c357506105c382610fee565b90505b919050565b6060600080546105da906128e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610606906128e6565b80156106535780601f1061062857610100808354040283529160200191610653565b820191906000526020600020905b81548152906001019060200180831161063657829003601f168201915b505050505090505b90565b60006106698261102e565b61068e5760405162461bcd60e51b8152600401610685906125fb565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106b582610a8c565b9050806001600160a01b0316836001600160a01b031614156106e95760405162461bcd60e51b815260040161068590612706565b806001600160a01b03166106fb61104b565b6001600160a01b0316148061071757506107178161057961104b565b6107335760405162461bcd60e51b8152600401610685906124d6565b61073d838361105a565b505050565b60408051606081810183526001600160a01b0388166000818152600c60209081529085902054845283015291810186905261078087828787876110c8565b61079c5760405162461bcd60e51b8152600401610685906126c5565b6001600160a01b0387166000908152600c60205260409020546107c090600161116e565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b9061081090899033908a9061211a565b60405180910390a1600080306001600160a01b0316888a604051602001610838929190611fed565b60408051601f198184030181529082905261085291611fd1565b6000604051808303816000865af19150503d806000811461088f576040519150601f19603f3d011682016040523d82523d6000602084013e610894565b606091505b5091509150816108b65760405162461bcd60e51b81526004016106859061235c565b98975050505050505050565b604051806040016040528060018152602001603160f81b81525081565b60085490565b600b5490565b6108fc6108f661104b565b82611181565b6109185760405162461bcd60e51b815260040161068590612777565b61073d838383611206565b6001600160a01b03166000908152600c602052604090205490565b600061094983610ad0565b82106109675760405162461bcd60e51b815260040161068590612279565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b4690565b61099c61104b565b6001600160a01b03166109ad610be9565b6001600160a01b0316146109d35760405162461bcd60e51b815260040161068590612647565b6109db610be9565b6001600160a01b03166108fc479081150290604051600060405180830381858888f19350505050158015610a13573d6000803e3d6000fd5b50565b61073d83838360405180602001604052806000815250610def565b6000610a3b6108df565b8210610a595760405162461bcd60e51b8152600401610685906127f3565b60088281548110610a7a57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806105c35760405162461bcd60e51b81526004016106859061257d565b6013546001600160a01b031681565b60006001600160a01b038216610af85760405162461bcd60e51b815260040161068590612533565b506001600160a01b031660009081526003602052604090205490565b610b1c61104b565b6001600160a01b0316610b2d610be9565b6001600160a01b031614610b535760405162461bcd60e51b815260040161068590612647565b610b5d6000611333565b565b610b6761104b565b6001600160a01b0316610b78610be9565b6001600160a01b031614610b9e5760405162461bcd60e51b815260040161068590612647565b600f54600e5410610bc15760405162461bcd60e51b81526004016106859061283f565b6000610bcb611385565b9050610bd78282611396565b610bdf611475565b5050565b60125481565b600d546001600160a01b031690565b6060600180546105da906128e6565b610c0f61104b565b6001600160a01b0316610c20610be9565b6001600160a01b031614610c465760405162461bcd60e51b815260040161068590612647565b8051610bdf906010906020840190611bde565b610c6161104b565b6001600160a01b0316826001600160a01b03161415610c925760405162461bcd60e51b81526004016106859061240e565b8060056000610c9f61104b565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610ce361104b565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d1b9190612210565b60405180910390a35050565b601254421015610d495760405162461bcd60e51b8152600401610685906127c8565b6011543414610d6a5760405162461bcd60e51b815260040161068590612747565b600f54600e5410610d8d5760405162461bcd60e51b81526004016106859061283f565b6000610d97611385565b9050610da33382611396565b610a13611475565b610db361104b565b6001600160a01b0316610dc4610be9565b6001600160a01b031614610dea5760405162461bcd60e51b815260040161068590612647565b601255565b610e00610dfa61104b565b83611181565b610e1c5760405162461bcd60e51b815260040161068590612777565b610e288484848461161f565b50505050565b60606010610e3b83611652565b604051602001610e4c929190612024565b6040516020818303038152906040529050919050565b60108054610e6f906128e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9b906128e6565b8015610ee85780601f10610ebd57610100808354040283529160200191610ee8565b820191906000526020600020905b815481529060010190602001808311610ecb57829003601f168201915b505050505081565b60115481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610f2c61104b565b6001600160a01b0316610f3d610be9565b6001600160a01b031614610f635760405162461bcd60e51b815260040161068590612647565b6001600160a01b038116610f895760405162461bcd60e51b815260040161068590612316565b610a1381611333565b600033301415610fe957600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b0316915061065b9050565b503390565b60006001600160e01b031982166380ac58cd60e01b148061101f57506001600160e01b03198216635b5e139f60e01b145b806105c357506105c38261176d565b6000908152600260205260409020546001600160a01b0316151590565b6000611055610f92565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061108f82610a8c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b0386166110f05760405162461bcd60e51b815260040161068590612491565b60016111036110fe87611786565b6117e4565b838686604051600081526020016040526040516111239493929190612248565b6020604051602081039080840390855afa158015611145573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b600061117a8284612877565b9392505050565b600061118c8261102e565b6111a85760405162461bcd60e51b815260040161068590612445565b60006111b383610a8c565b9050806001600160a01b0316846001600160a01b031614806111ee5750836001600160a01b03166111e38461065e565b6001600160a01b0316145b806111fe57506111fe8185610ef6565b949350505050565b826001600160a01b031661121982610a8c565b6001600160a01b03161461123f5760405162461bcd60e51b81526004016106859061267c565b6001600160a01b0382166112655760405162461bcd60e51b8152600401610685906123ca565b611270838383611800565b61127b60008261105a565b6001600160a01b03831660009081526003602052604081208054600192906112a49084906128a3565b90915550506001600160a01b03821660009081526003602052604081208054600192906112d2908490612877565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600e5460009061105590600161116e565b6001600160a01b0382166113bc5760405162461bcd60e51b8152600401610685906125c6565b6113c58161102e565b156113e25760405162461bcd60e51b815260040161068590612393565b6113ee60008383611800565b6001600160a01b0382166000908152600360205260408120805460019290611417908490612877565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600f54600e541061148557600080fd5b600e805490600061149583612921565b91905055506001600f546114a991906128a3565b600e541415610b5d5760006103e86114bf611889565b6114c9919061293c565b905060006114eb826103e8600e546114e191906128a3565b6103de9190612877565b6114ff836107d0600e546114e191906128a3565b61151384610bb8600e546114e191906128a3565b61152785610fa0600e546114e191906128a3565b61153b86611388600e546114e191906128a3565b61154f87611770600e546114e191906128a3565b61156388611b58600e546114e191906128a3565b61157789611f40600e546114e191906128a3565b61158b8a612328600e546114e191906128a3565b61159f8b612710600e546114e191906128a3565b6115b38c612af8600e546114e191906128a3565b336040516020016115cf9c9b9a99989796959493929190612146565b6040516020818303038152906040528051906020012090506115fb600f548260001c6103de919061293c565b601380546001600160a01b0319166001600160a01b03929092169190911790555050565b61162a848484611206565b611636848484846118bf565b610e285760405162461bcd60e51b8152600401610685906122c4565b60608161167757506040805180820190915260018152600360fc1b60208201526105c6565b8160005b81156116a1578061168b81612921565b915061169a9050600a8361288f565b915061167b565b60008167ffffffffffffffff8111156116ca57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156116f4576020820181803683370190505b5090505b84156111fe576117096001836128a3565b9150611716600a8661293c565b611721906030612877565b60f81b81838151811061174457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611766600a8661288f565b94506116f8565b6001600160e01b031981166301ffc9a760e01b14919050565b60006040518060800160405280604381526020016129a960439139805160209182012083518483015160408087015180519086012090516117c79501612224565b604051602081830303815290604052805190602001209050919050565b60006117ee6108e5565b826040516020016117c79291906120ca565b61180b83838361073d565b6001600160a01b03831661182757611822816119da565b61184a565b816001600160a01b0316836001600160a01b03161461184a5761184a8382611a1e565b6001600160a01b0382166118665761186181611abb565b61073d565b826001600160a01b0316826001600160a01b03161461073d5761073d8282611b94565b6000804142446040516020016118a1939291906120f9565b60408051601f19818403018152919052805160209091012091505090565b60006118d3846001600160a01b0316611bd8565b156119cf57836001600160a01b031663150b7a026118ef61104b565b8786866040518563ffffffff1660e01b815260040161191194939291906121d3565b602060405180830381600087803b15801561192b57600080fd5b505af192505050801561195b575060408051601f3d908101601f1916820190925261195891810190611f02565b60015b6119b5573d808015611989576040519150601f19603f3d011682016040523d82523d6000602084013e61198e565b606091505b5080516119ad5760405162461bcd60e51b8152600401610685906122c4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111fe565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611a2b84610ad0565b611a3591906128a3565b600083815260076020526040902054909150808214611a88576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611acd906001906128a3565b60008381526009602052604081205460088054939450909284908110611b0357634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611b3257634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b7857634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611b9f83610ad0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b828054611bea906128e6565b90600052602060002090601f016020900481019282611c0c5760008555611c52565b82601f10611c2557805160ff1916838001178555611c52565b82800160010185558215611c52579182015b82811115611c52578251825591602001919060010190611c37565b50611c5e929150611c62565b5090565b5b80821115611c5e5760008155600101611c63565b600067ffffffffffffffff80841115611c9257611c9261297c565b604051601f8501601f191681016020018281118282101715611cb657611cb661297c565b604052848152915081838501861015611cce57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146105c657600080fd5b600082601f830112611d0e578081fd5b61117a83833560208501611c77565b600060208284031215611d2e578081fd5b61117a82611ce7565b60008060408385031215611d49578081fd5b611d5283611ce7565b9150611d6060208401611ce7565b90509250929050565b600080600060608486031215611d7d578081fd5b611d8684611ce7565b9250611d9460208501611ce7565b9150604084013590509250925092565b60008060008060808587031215611db9578081fd5b611dc285611ce7565b9350611dd060208601611ce7565b925060408501359150606085013567ffffffffffffffff811115611df2578182fd5b611dfe87828801611cfe565b91505092959194509250565b60008060408385031215611e1c578182fd5b611e2583611ce7565b915060208301358015158114611e39578182fd5b809150509250929050565b600080600080600060a08688031215611e5b578081fd5b611e6486611ce7565b9450602086013567ffffffffffffffff811115611e7f578182fd5b611e8b88828901611cfe565b9450506040860135925060608601359150608086013560ff81168114611eaf578182fd5b809150509295509295909350565b60008060408385031215611ecf578182fd5b611ed883611ce7565b946020939093013593505050565b600060208284031215611ef7578081fd5b813561117a81612992565b600060208284031215611f13578081fd5b815161117a81612992565b600060208284031215611f2f578081fd5b813567ffffffffffffffff811115611f45578182fd5b8201601f81018413611f55578182fd5b6111fe84823560208401611c77565b600060208284031215611f75578081fd5b5035919050565b6001600160a01b03169052565b60008151808452611fa18160208601602086016128ba565b601f01601f19169290920160200192915050565b60008151611fc78185602086016128ba565b9290920192915050565b60008251611fe38184602087016128ba565b9190910192915050565b60008351611fff8184602088016128ba565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b825460009081906002810460018083168061204057607f831692505b602080841082141561206057634e487b7160e01b87526022600452602487fd5b8180156120745760018114612085576120b1565b60ff198616895284890196506120b1565b61208e8b61286b565b885b868110156120a95781548b820152908501908301612090565b505084890196505b5050505050506120c18185611fb5565b95945050505050565b61190160f01b81526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b6001600160a01b039390931683526020830191909152604082015260600190565b6001600160a01b038481168252831660208201526060604082018190526000906120c190830184611f89565b6001600160a01b038d811682528c811660208301528b811660408301528a81166060830152898116608083015288811660a083015287811660c083015286811660e0830152851661010082015261018081016121a6610120830186611f7c565b6121b4610140830185611f7c565b6121c2610160830184611f7c565b9d9c50505050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061220690830184611f89565b9695505050505050565b901515815260200190565b90815260200190565b93845260208401929092526001600160a01b03166040830152606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b60006020825261117a6020830184611f89565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000604082015260600190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526025908201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360408201526424a3a722a960d91b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526021908201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636040820152600d60fb1b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252601690820152750a6cadce84082dadeeadce8409cdee8408adcdeeaced60531b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b602080825260119082015270125d09dcc81b9bdd081d1a5b59481e595d607a1b604082015260600190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526012908201527113585e0814dd5c1c1b1e4814995858da195960721b604082015260600190565b60009081526020902090565b6000821982111561288a5761288a612950565b500190565b60008261289e5761289e612966565b500490565b6000828210156128b5576128b5612950565b500390565b60005b838110156128d55781810151838201526020016128bd565b83811115610e285750506000910152565b6002810460018216806128fa57607f821691505b6020821081141561291b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561293557612935612950565b5060010190565b60008261294b5761294b612966565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a1357600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a26469706673582212205571b9a06d09f3c146652878ecdfc5a060ebb942d7a9c09bfd0e9966e2a49a5864736f6c63430008000033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c8063663287381161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610514578063d547cfb714610534578063d71ac32e14610549578063e985e9c51461055e578063f2fde38b1461057e576101ee565b8063a22cb465146104ac578063a6f2ae3a146104cc578063b27b1a6d146104d4578063b88d4fde146104f4576101ee565b806378e97925116100dc57806378e979251461044d5780638da5cb5b1461046257806395d89b4114610477578063a0bcfc7f1461048c576101ee565b806366328738146103e357806370a08231146103f8578063715018a614610418578063755edd171461042d576101ee565b806323b872dd116101855780633ccfd60b116101545780633ccfd60b1461036e57806342842e0e146103835780634f6ccce7146103a35780636352211e146103c3576101ee565b806323b872dd146102f95780632d0335ab146103195780632f745c59146103395780633408e47014610359576101ee565b80630c53c51c116101c15780630c53c51c1461029a5780630f7e5970146102ad57806318160ddd146102c257806320379ee5146102e4576101ee565b806301ffc9a7146101f357806306fdde0314610229578063081812fc1461024b578063095ea7b314610278575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611ee6565b61059e565b6040516102209190612210565b60405180910390f35b34801561023557600080fd5b5061023e6105cb565b6040516102209190612266565b34801561025757600080fd5b5061026b610266366004611f64565b61065e565b60405161022091906120e5565b34801561028457600080fd5b50610298610293366004611ebd565b6106aa565b005b61023e6102a8366004611e44565b610742565b3480156102b957600080fd5b5061023e6108c2565b3480156102ce57600080fd5b506102d76108df565b604051610220919061221b565b3480156102f057600080fd5b506102d76108e5565b34801561030557600080fd5b50610298610314366004611d69565b6108eb565b34801561032557600080fd5b506102d7610334366004611d1d565b610923565b34801561034557600080fd5b506102d7610354366004611ebd565b61093e565b34801561036557600080fd5b506102d7610990565b34801561037a57600080fd5b50610298610994565b34801561038f57600080fd5b5061029861039e366004611d69565b610a16565b3480156103af57600080fd5b506102d76103be366004611f64565b610a31565b3480156103cf57600080fd5b5061026b6103de366004611f64565b610a8c565b3480156103ef57600080fd5b5061026b610ac1565b34801561040457600080fd5b506102d7610413366004611d1d565b610ad0565b34801561042457600080fd5b50610298610b14565b34801561043957600080fd5b50610298610448366004611d1d565b610b5f565b34801561045957600080fd5b506102d7610be3565b34801561046e57600080fd5b5061026b610be9565b34801561048357600080fd5b5061023e610bf8565b34801561049857600080fd5b506102986104a7366004611f1e565b610c07565b3480156104b857600080fd5b506102986104c7366004611e0a565b610c59565b610298610d27565b3480156104e057600080fd5b506102986104ef366004611f64565b610dab565b34801561050057600080fd5b5061029861050f366004611da4565b610def565b34801561052057600080fd5b5061023e61052f366004611f64565b610e2e565b34801561054057600080fd5b5061023e610e62565b34801561055557600080fd5b506102d7610ef0565b34801561056a57600080fd5b50610213610579366004611d37565b610ef6565b34801561058a57600080fd5b50610298610599366004611d1d565b610f24565b60006001600160e01b0319821663780e9d6360e01b14806105c357506105c382610fee565b90505b919050565b6060600080546105da906128e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610606906128e6565b80156106535780601f1061062857610100808354040283529160200191610653565b820191906000526020600020905b81548152906001019060200180831161063657829003601f168201915b505050505090505b90565b60006106698261102e565b61068e5760405162461bcd60e51b8152600401610685906125fb565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106b582610a8c565b9050806001600160a01b0316836001600160a01b031614156106e95760405162461bcd60e51b815260040161068590612706565b806001600160a01b03166106fb61104b565b6001600160a01b0316148061071757506107178161057961104b565b6107335760405162461bcd60e51b8152600401610685906124d6565b61073d838361105a565b505050565b60408051606081810183526001600160a01b0388166000818152600c60209081529085902054845283015291810186905261078087828787876110c8565b61079c5760405162461bcd60e51b8152600401610685906126c5565b6001600160a01b0387166000908152600c60205260409020546107c090600161116e565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b9061081090899033908a9061211a565b60405180910390a1600080306001600160a01b0316888a604051602001610838929190611fed565b60408051601f198184030181529082905261085291611fd1565b6000604051808303816000865af19150503d806000811461088f576040519150601f19603f3d011682016040523d82523d6000602084013e610894565b606091505b5091509150816108b65760405162461bcd60e51b81526004016106859061235c565b98975050505050505050565b604051806040016040528060018152602001603160f81b81525081565b60085490565b600b5490565b6108fc6108f661104b565b82611181565b6109185760405162461bcd60e51b815260040161068590612777565b61073d838383611206565b6001600160a01b03166000908152600c602052604090205490565b600061094983610ad0565b82106109675760405162461bcd60e51b815260040161068590612279565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b4690565b61099c61104b565b6001600160a01b03166109ad610be9565b6001600160a01b0316146109d35760405162461bcd60e51b815260040161068590612647565b6109db610be9565b6001600160a01b03166108fc479081150290604051600060405180830381858888f19350505050158015610a13573d6000803e3d6000fd5b50565b61073d83838360405180602001604052806000815250610def565b6000610a3b6108df565b8210610a595760405162461bcd60e51b8152600401610685906127f3565b60088281548110610a7a57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806105c35760405162461bcd60e51b81526004016106859061257d565b6013546001600160a01b031681565b60006001600160a01b038216610af85760405162461bcd60e51b815260040161068590612533565b506001600160a01b031660009081526003602052604090205490565b610b1c61104b565b6001600160a01b0316610b2d610be9565b6001600160a01b031614610b535760405162461bcd60e51b815260040161068590612647565b610b5d6000611333565b565b610b6761104b565b6001600160a01b0316610b78610be9565b6001600160a01b031614610b9e5760405162461bcd60e51b815260040161068590612647565b600f54600e5410610bc15760405162461bcd60e51b81526004016106859061283f565b6000610bcb611385565b9050610bd78282611396565b610bdf611475565b5050565b60125481565b600d546001600160a01b031690565b6060600180546105da906128e6565b610c0f61104b565b6001600160a01b0316610c20610be9565b6001600160a01b031614610c465760405162461bcd60e51b815260040161068590612647565b8051610bdf906010906020840190611bde565b610c6161104b565b6001600160a01b0316826001600160a01b03161415610c925760405162461bcd60e51b81526004016106859061240e565b8060056000610c9f61104b565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610ce361104b565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d1b9190612210565b60405180910390a35050565b601254421015610d495760405162461bcd60e51b8152600401610685906127c8565b6011543414610d6a5760405162461bcd60e51b815260040161068590612747565b600f54600e5410610d8d5760405162461bcd60e51b81526004016106859061283f565b6000610d97611385565b9050610da33382611396565b610a13611475565b610db361104b565b6001600160a01b0316610dc4610be9565b6001600160a01b031614610dea5760405162461bcd60e51b815260040161068590612647565b601255565b610e00610dfa61104b565b83611181565b610e1c5760405162461bcd60e51b815260040161068590612777565b610e288484848461161f565b50505050565b60606010610e3b83611652565b604051602001610e4c929190612024565b6040516020818303038152906040529050919050565b60108054610e6f906128e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9b906128e6565b8015610ee85780601f10610ebd57610100808354040283529160200191610ee8565b820191906000526020600020905b815481529060010190602001808311610ecb57829003601f168201915b505050505081565b60115481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610f2c61104b565b6001600160a01b0316610f3d610be9565b6001600160a01b031614610f635760405162461bcd60e51b815260040161068590612647565b6001600160a01b038116610f895760405162461bcd60e51b815260040161068590612316565b610a1381611333565b600033301415610fe957600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b0316915061065b9050565b503390565b60006001600160e01b031982166380ac58cd60e01b148061101f57506001600160e01b03198216635b5e139f60e01b145b806105c357506105c38261176d565b6000908152600260205260409020546001600160a01b0316151590565b6000611055610f92565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061108f82610a8c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b0386166110f05760405162461bcd60e51b815260040161068590612491565b60016111036110fe87611786565b6117e4565b838686604051600081526020016040526040516111239493929190612248565b6020604051602081039080840390855afa158015611145573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b600061117a8284612877565b9392505050565b600061118c8261102e565b6111a85760405162461bcd60e51b815260040161068590612445565b60006111b383610a8c565b9050806001600160a01b0316846001600160a01b031614806111ee5750836001600160a01b03166111e38461065e565b6001600160a01b0316145b806111fe57506111fe8185610ef6565b949350505050565b826001600160a01b031661121982610a8c565b6001600160a01b03161461123f5760405162461bcd60e51b81526004016106859061267c565b6001600160a01b0382166112655760405162461bcd60e51b8152600401610685906123ca565b611270838383611800565b61127b60008261105a565b6001600160a01b03831660009081526003602052604081208054600192906112a49084906128a3565b90915550506001600160a01b03821660009081526003602052604081208054600192906112d2908490612877565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600e5460009061105590600161116e565b6001600160a01b0382166113bc5760405162461bcd60e51b8152600401610685906125c6565b6113c58161102e565b156113e25760405162461bcd60e51b815260040161068590612393565b6113ee60008383611800565b6001600160a01b0382166000908152600360205260408120805460019290611417908490612877565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600f54600e541061148557600080fd5b600e805490600061149583612921565b91905055506001600f546114a991906128a3565b600e541415610b5d5760006103e86114bf611889565b6114c9919061293c565b905060006114eb826103e8600e546114e191906128a3565b6103de9190612877565b6114ff836107d0600e546114e191906128a3565b61151384610bb8600e546114e191906128a3565b61152785610fa0600e546114e191906128a3565b61153b86611388600e546114e191906128a3565b61154f87611770600e546114e191906128a3565b61156388611b58600e546114e191906128a3565b61157789611f40600e546114e191906128a3565b61158b8a612328600e546114e191906128a3565b61159f8b612710600e546114e191906128a3565b6115b38c612af8600e546114e191906128a3565b336040516020016115cf9c9b9a99989796959493929190612146565b6040516020818303038152906040528051906020012090506115fb600f548260001c6103de919061293c565b601380546001600160a01b0319166001600160a01b03929092169190911790555050565b61162a848484611206565b611636848484846118bf565b610e285760405162461bcd60e51b8152600401610685906122c4565b60608161167757506040805180820190915260018152600360fc1b60208201526105c6565b8160005b81156116a1578061168b81612921565b915061169a9050600a8361288f565b915061167b565b60008167ffffffffffffffff8111156116ca57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156116f4576020820181803683370190505b5090505b84156111fe576117096001836128a3565b9150611716600a8661293c565b611721906030612877565b60f81b81838151811061174457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611766600a8661288f565b94506116f8565b6001600160e01b031981166301ffc9a760e01b14919050565b60006040518060800160405280604381526020016129a960439139805160209182012083518483015160408087015180519086012090516117c79501612224565b604051602081830303815290604052805190602001209050919050565b60006117ee6108e5565b826040516020016117c79291906120ca565b61180b83838361073d565b6001600160a01b03831661182757611822816119da565b61184a565b816001600160a01b0316836001600160a01b03161461184a5761184a8382611a1e565b6001600160a01b0382166118665761186181611abb565b61073d565b826001600160a01b0316826001600160a01b03161461073d5761073d8282611b94565b6000804142446040516020016118a1939291906120f9565b60408051601f19818403018152919052805160209091012091505090565b60006118d3846001600160a01b0316611bd8565b156119cf57836001600160a01b031663150b7a026118ef61104b565b8786866040518563ffffffff1660e01b815260040161191194939291906121d3565b602060405180830381600087803b15801561192b57600080fd5b505af192505050801561195b575060408051601f3d908101601f1916820190925261195891810190611f02565b60015b6119b5573d808015611989576040519150601f19603f3d011682016040523d82523d6000602084013e61198e565b606091505b5080516119ad5760405162461bcd60e51b8152600401610685906122c4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111fe565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611a2b84610ad0565b611a3591906128a3565b600083815260076020526040902054909150808214611a88576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611acd906001906128a3565b60008381526009602052604081205460088054939450909284908110611b0357634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611b3257634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b7857634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611b9f83610ad0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b828054611bea906128e6565b90600052602060002090601f016020900481019282611c0c5760008555611c52565b82601f10611c2557805160ff1916838001178555611c52565b82800160010185558215611c52579182015b82811115611c52578251825591602001919060010190611c37565b50611c5e929150611c62565b5090565b5b80821115611c5e5760008155600101611c63565b600067ffffffffffffffff80841115611c9257611c9261297c565b604051601f8501601f191681016020018281118282101715611cb657611cb661297c565b604052848152915081838501861015611cce57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146105c657600080fd5b600082601f830112611d0e578081fd5b61117a83833560208501611c77565b600060208284031215611d2e578081fd5b61117a82611ce7565b60008060408385031215611d49578081fd5b611d5283611ce7565b9150611d6060208401611ce7565b90509250929050565b600080600060608486031215611d7d578081fd5b611d8684611ce7565b9250611d9460208501611ce7565b9150604084013590509250925092565b60008060008060808587031215611db9578081fd5b611dc285611ce7565b9350611dd060208601611ce7565b925060408501359150606085013567ffffffffffffffff811115611df2578182fd5b611dfe87828801611cfe565b91505092959194509250565b60008060408385031215611e1c578182fd5b611e2583611ce7565b915060208301358015158114611e39578182fd5b809150509250929050565b600080600080600060a08688031215611e5b578081fd5b611e6486611ce7565b9450602086013567ffffffffffffffff811115611e7f578182fd5b611e8b88828901611cfe565b9450506040860135925060608601359150608086013560ff81168114611eaf578182fd5b809150509295509295909350565b60008060408385031215611ecf578182fd5b611ed883611ce7565b946020939093013593505050565b600060208284031215611ef7578081fd5b813561117a81612992565b600060208284031215611f13578081fd5b815161117a81612992565b600060208284031215611f2f578081fd5b813567ffffffffffffffff811115611f45578182fd5b8201601f81018413611f55578182fd5b6111fe84823560208401611c77565b600060208284031215611f75578081fd5b5035919050565b6001600160a01b03169052565b60008151808452611fa18160208601602086016128ba565b601f01601f19169290920160200192915050565b60008151611fc78185602086016128ba565b9290920192915050565b60008251611fe38184602087016128ba565b9190910192915050565b60008351611fff8184602088016128ba565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b825460009081906002810460018083168061204057607f831692505b602080841082141561206057634e487b7160e01b87526022600452602487fd5b8180156120745760018114612085576120b1565b60ff198616895284890196506120b1565b61208e8b61286b565b885b868110156120a95781548b820152908501908301612090565b505084890196505b5050505050506120c18185611fb5565b95945050505050565b61190160f01b81526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b6001600160a01b039390931683526020830191909152604082015260600190565b6001600160a01b038481168252831660208201526060604082018190526000906120c190830184611f89565b6001600160a01b038d811682528c811660208301528b811660408301528a81166060830152898116608083015288811660a083015287811660c083015286811660e0830152851661010082015261018081016121a6610120830186611f7c565b6121b4610140830185611f7c565b6121c2610160830184611f7c565b9d9c50505050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061220690830184611f89565b9695505050505050565b901515815260200190565b90815260200190565b93845260208401929092526001600160a01b03166040830152606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b60006020825261117a6020830184611f89565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000604082015260600190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526025908201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360408201526424a3a722a960d91b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526021908201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636040820152600d60fb1b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252601690820152750a6cadce84082dadeeadce8409cdee8408adcdeeaced60531b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b602080825260119082015270125d09dcc81b9bdd081d1a5b59481e595d607a1b604082015260600190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526012908201527113585e0814dd5c1c1b1e4814995858da195960721b604082015260600190565b60009081526020902090565b6000821982111561288a5761288a612950565b500190565b60008261289e5761289e612966565b500490565b6000828210156128b5576128b5612950565b500390565b60005b838110156128d55781810151838201526020016128bd565b83811115610e285750506000910152565b6002810460018216806128fa57607f821691505b6020821081141561291b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561293557612935612950565b5060010190565b60008261294b5761294b612966565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a1357600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a26469706673582212205571b9a06d09f3c146652878ecdfc5a060ebb942d7a9c09bfd0e9966e2a49a5864736f6c63430008000033

Deployed Bytecode Sourcemap

54051:4085:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41854:300;;;;;;;;;;-1:-1:-1;41854:300:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29333:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31026:308::-;;;;;;;;;;-1:-1:-1;31026:308:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;30549:411::-;;;;;;;;;;-1:-1:-1;30549:411:0;;;;;:::i;:::-;;:::i;:::-;;51864:1151;;;;;;:::i;:::-;;:::i;49120:43::-;;;;;;;;;;;;;:::i;42657:113::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;50115:101::-;;;;;;;;;;;;;:::i;32085:376::-;;;;;;;;;;-1:-1:-1;32085:376:0;;;;;:::i;:::-;;:::i;53441:107::-;;;;;;;;;;-1:-1:-1;53441:107:0;;;;;:::i;:::-;;:::i;42238:343::-;;;;;;;;;;-1:-1:-1;42238:343:0;;;;;:::i;:::-;;:::i;50224:161::-;;;;;;;;;;;;;:::i;55513:106::-;;;;;;;;;;;;;:::i;32532:185::-;;;;;;;;;;-1:-1:-1;32532:185:0;;;;;:::i;:::-;;:::i;42847:320::-;;;;;;;;;;-1:-1:-1;42847:320:0;;;;;:::i;:::-;;:::i;28940:326::-;;;;;;;;;;-1:-1:-1;28940:326:0;;;;;:::i;:::-;;:::i;54415:25::-;;;;;;;;;;;;;:::i;28583:295::-;;;;;;;;;;-1:-1:-1;28583:295:0;;;;;:::i;:::-;;:::i;26204:94::-;;;;;;;;;;;;;:::i;54875:236::-;;;;;;;;;;-1:-1:-1;54875:236:0;;;;;:::i;:::-;;:::i;54366:42::-;;;;;;;;;;;;;:::i;25553:87::-;;;;;;;;;;;;;:::i;29502:104::-;;;;;;;;;;;;;:::i;57537:97::-;;;;;;;;;;-1:-1:-1;57537:97:0;;;;;:::i;:::-;;:::i;31406:327::-;;;;;;;;;;-1:-1:-1;31406:327:0;;;;;:::i;:::-;;:::i;55125:378::-;;;:::i;54640:91::-;;;;;;;;;;-1:-1:-1;54640:91:0;;;;;:::i;:::-;;:::i;32788:365::-;;;;;;;;;;-1:-1:-1;32788:365:0;;;;;:::i;:::-;;:::i;57642:227::-;;;;;;;;;;-1:-1:-1;57642:227:0;;;;;:::i;:::-;;:::i;54280:26::-;;;;;;;;;;;;;:::i;54319:38::-;;;;;;;;;;;;;:::i;31804:214::-;;;;;;;;;;-1:-1:-1;31804:214:0;;;;;:::i;:::-;;:::i;26453:229::-;;;;;;;;;;-1:-1:-1;26453:229:0;;;;;:::i;:::-;;:::i;41854:300::-;42001:4;-1:-1:-1;;;;;;42043:50:0;;-1:-1:-1;;;42043:50:0;;:103;;;42110:36;42134:11;42110:23;:36::i;:::-;42023:123;;41854:300;;;;:::o;29333:100::-;29387:13;29420:5;29413:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29333:100;;:::o;31026:308::-;31147:7;31194:16;31202:7;31194;:16::i;:::-;31172:110;;;;-1:-1:-1;;;31172:110:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;31302:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31302:24:0;;31026:308::o;30549:411::-;30630:13;30646:23;30661:7;30646:14;:23::i;:::-;30630:39;;30694:5;-1:-1:-1;;;;;30688:11:0;:2;-1:-1:-1;;;;;30688:11:0;;;30680:57;;;;-1:-1:-1;;;30680:57:0;;;;;;;:::i;:::-;30788:5;-1:-1:-1;;;;;30772:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;30772:21:0;;:62;;;;30797:37;30814:5;30821:12;:10;:12::i;30797:37::-;30750:168;;;;-1:-1:-1;;;30750:168:0;;;;;;;:::i;:::-;30931:21;30940:2;30944:7;30931:8;:21::i;:::-;30549:411;;;:::o;51864:1151::-;52122:152;;;52065:12;52122:152;;;;;-1:-1:-1;;;;;52160:19:0;;52090:29;52160:19;;;:6;:19;;;;;;;;;52122:152;;;;;;;;;;;52309:45;52167:11;52122:152;52337:4;52343;52349;52309:6;:45::i;:::-;52287:128;;;;-1:-1:-1;;;52287:128:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;52504:19:0;;;;;;:6;:19;;;;;;:26;;52528:1;52504:23;:26::i;:::-;-1:-1:-1;;;;;52482:19:0;;;;;;:6;:19;;;;;;;:48;;;;52548:126;;;;;52489:11;;52620:10;;52646:17;;52548:126;:::i;:::-;;;;;;;;52785:12;52799:23;52834:4;-1:-1:-1;;;;;52826:18:0;52876:17;52895:11;52859:48;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;52859:48:0;;;;;;;;;;52826:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52784:134;;;;52937:7;52929:48;;;;-1:-1:-1;;;52929:48:0;;;;;;;:::i;:::-;52997:10;51864:1151;-1:-1:-1;;;;;;;;51864:1151:0:o;49120:43::-;;;;;;;;;;;;;;-1:-1:-1;;;49120:43:0;;;;:::o;42657:113::-;42745:10;:17;42657:113;:::o;50115:101::-;50193:15;;50115:101;:::o;32085:376::-;32294:41;32313:12;:10;:12::i;:::-;32327:7;32294:18;:41::i;:::-;32272:140;;;;-1:-1:-1;;;32272:140:0;;;;;;;:::i;:::-;32425:28;32435:4;32441:2;32445:7;32425:9;:28::i;53441:107::-;-1:-1:-1;;;;;53528:12:0;53494:13;53528:12;;;:6;:12;;;;;;;53441:107::o;42238:343::-;42380:7;42435:23;42452:5;42435:16;:23::i;:::-;42427:5;:31;42405:124;;;;-1:-1:-1;;;42405:124:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;42547:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;42238:343::o;50224:161::-;50338:9;50224:161;:::o;55513:106::-;25784:12;:10;:12::i;:::-;-1:-1:-1;;;;;25773:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;25773:23:0;;25765:68;;;;-1:-1:-1;;;25765:68:0;;;;;;;:::i;:::-;55571:7:::1;:5;:7::i;:::-;-1:-1:-1::0;;;;;55563:25:0::1;:48;55589:21;55563:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;55513:106::o:0;32532:185::-;32670:39;32687:4;32693:2;32697:7;32670:39;;;;;;;;;;;;:16;:39::i;42847:320::-;42967:7;43022:30;:28;:30::i;:::-;43014:5;:38;42992:132;;;;-1:-1:-1;;;42992:132:0;;;;;;;:::i;:::-;43142:10;43153:5;43142:17;;;;;;-1:-1:-1;;;43142:17:0;;;;;;;;;;;;;;;;;43135:24;;42847:320;;;:::o;28940:326::-;29057:7;29098:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29098:16:0;29147:19;29125:110;;;;-1:-1:-1;;;29125:110:0;;;;;;;:::i;54415:25::-;;;-1:-1:-1;;;;;54415:25:0;;:::o;28583:295::-;28700:7;-1:-1:-1;;;;;28747:19:0;;28725:111;;;;-1:-1:-1;;;28725:111:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;28854:16:0;;;;;:9;:16;;;;;;;28583:295::o;26204:94::-;25784:12;:10;:12::i;:::-;-1:-1:-1;;;;;25773:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;25773:23:0;;25765:68;;;;-1:-1:-1;;;25765:68:0;;;;;;;:::i;:::-;26269:21:::1;26287:1;26269:9;:21::i;:::-;26204:94::o:0;54875:236::-;25784:12;:10;:12::i;:::-;-1:-1:-1;;;;;25773:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;25773:23:0;;25765:68;;;;-1:-1:-1;;;25765:68:0;;;;;;;:::i;:::-;54958:10:::1;;54940:15;;:28;54932:59;;;;-1:-1:-1::0;;;54932:59:0::1;;;;;;;:::i;:::-;55002:18;55023:17;:15;:17::i;:::-;55002:38;;55051:22;55057:3;55062:10;55051:5;:22::i;:::-;55084:19;:17;:19::i;:::-;25844:1;54875:236:::0;:::o;54366:42::-;;;;:::o;25553:87::-;25626:6;;-1:-1:-1;;;;;25626:6:0;25553:87;:::o;29502:104::-;29558:13;29591:7;29584:14;;;;;:::i;57537:97::-;25784:12;:10;:12::i;:::-;-1:-1:-1;;;;;25773:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;25773:23:0;;25765:68;;;;-1:-1:-1;;;25765:68:0;;;;;;;:::i;:::-;57607:19;;::::1;::::0;:12:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;31406:327::-:0;31553:12;:10;:12::i;:::-;-1:-1:-1;;;;;31541:24:0;:8;-1:-1:-1;;;;;31541:24:0;;;31533:62;;;;-1:-1:-1;;;31533:62:0;;;;;;;:::i;:::-;31653:8;31608:18;:32;31627:12;:10;:12::i;:::-;-1:-1:-1;;;;;31608:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;31608:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;31608:53:0;;;;;;;;;;;31692:12;:10;:12::i;:::-;-1:-1:-1;;;;;31677:48:0;;31716:8;31677:48;;;;;;:::i;:::-;;;;;;;;31406:327;;:::o;55125:378::-;55193:9;;55174:15;:28;;55166:58;;;;-1:-1:-1;;;55166:58:0;;;;;;;:::i;:::-;55256:9;;55243;:22;55235:57;;;;-1:-1:-1;;;55235:57:0;;;;;;;:::i;:::-;55329:10;;55311:15;;:28;55303:59;;;;-1:-1:-1;;;55303:59:0;;;;;;;:::i;:::-;55379:18;55400:17;:15;:17::i;:::-;55379:38;;55432:29;55438:10;55450;55432:5;:29::i;:::-;55476:19;:17;:19::i;54640:91::-;25784:12;:10;:12::i;:::-;-1:-1:-1;;;;;25773:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;25773:23:0;;25765:68;;;;-1:-1:-1;;;25765:68:0;;;;;;;:::i;:::-;54707:9:::1;:16:::0;54640:91::o;32788:365::-;32977:41;32996:12;:10;:12::i;:::-;33010:7;32977:18;:41::i;:::-;32955:140;;;;-1:-1:-1;;;32955:140:0;;;;;;;:::i;:::-;33106:39;33120:4;33126:2;33130:7;33139:5;33106:13;:39::i;:::-;32788:365;;;;:::o;57642:227::-;57744:13;57819:12;57833:26;57850:8;57833:16;:26::i;:::-;57802:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57775:86;;57642:227;;;:::o;54280:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54319:38::-;;;;:::o;31804:214::-;-1:-1:-1;;;;;31975:25:0;;;31946:4;31975:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31804:214::o;26453:229::-;25784:12;:10;:12::i;:::-;-1:-1:-1;;;;;25773:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;25773:23:0;;25765:68;;;;-1:-1:-1;;;25765:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26556:22:0;::::1;26534:110;;;;-1:-1:-1::0;;;26534:110:0::1;;;;;;;:::i;:::-;26655:19;26665:8;26655:9;:19::i;24257:618::-:0;24301:22;24340:10;24362:4;24340:27;24336:508;;;24384:18;24405:8;;24384:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;24444:8:0;24655:17;24649:24;-1:-1:-1;;;;;24623:134:0;;-1:-1:-1;24483:289:0;;-1:-1:-1;24483:289:0;;-1:-1:-1;24821:10:0;24257:618;:::o;28164:355::-;28311:4;-1:-1:-1;;;;;;28353:40:0;;-1:-1:-1;;;28353:40:0;;:105;;-1:-1:-1;;;;;;;28410:48:0;;-1:-1:-1;;;28410:48:0;28353:105;:158;;;;28475:36;28499:11;28475:23;:36::i;34700:127::-;34765:4;34789:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34789:16:0;:30;;;34700:127::o;58013:120::-;58067:14;58101:24;:22;:24::i;:::-;58094:31;;58013:120;:::o;38823:174::-;38898:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;38898:29:0;-1:-1:-1;;;;;38898:29:0;;;;;;;;:24;;38952:23;38898:24;38952:14;:23::i;:::-;-1:-1:-1;;;;;38943:46:0;;;;;;;;;;;38823:174;;:::o;53556:486::-;53734:4;-1:-1:-1;;;;;53759:20:0;;53751:70;;;;-1:-1:-1;;;53751:70:0;;;;;;;:::i;:::-;53875:159;53903:47;53922:27;53942:6;53922:19;:27::i;:::-;53903:18;:47::i;:::-;53969:4;53992;54015;53875:159;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;53852:182:0;:6;-1:-1:-1;;;;;53852:182:0;;53832:202;;53556:486;;;;;;;:::o;2480:98::-;2538:7;2565:5;2569:1;2565;:5;:::i;:::-;2558:12;2480:98;-1:-1:-1;;;2480:98:0:o;34994:452::-;35123:4;35167:16;35175:7;35167;:16::i;:::-;35145:110;;;;-1:-1:-1;;;35145:110:0;;;;;;;:::i;:::-;35266:13;35282:23;35297:7;35282:14;:23::i;:::-;35266:39;;35335:5;-1:-1:-1;;;;;35324:16:0;:7;-1:-1:-1;;;;;35324:16:0;;:64;;;;35381:7;-1:-1:-1;;;;;35357:31:0;:20;35369:7;35357:11;:20::i;:::-;-1:-1:-1;;;;;35357:31:0;;35324:64;:113;;;;35405:32;35422:5;35429:7;35405:16;:32::i;:::-;35316:122;34994:452;-1:-1:-1;;;;34994:452:0:o;38090:615::-;38263:4;-1:-1:-1;;;;;38236:31:0;:23;38251:7;38236:14;:23::i;:::-;-1:-1:-1;;;;;38236:31:0;;38214:122;;;;-1:-1:-1;;;38214:122:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38355:16:0;;38347:65;;;;-1:-1:-1;;;38347:65:0;;;;;;;:::i;:::-;38425:39;38446:4;38452:2;38456:7;38425:20;:39::i;:::-;38529:29;38546:1;38550:7;38529:8;:29::i;:::-;-1:-1:-1;;;;;38571:15:0;;;;;;:9;:15;;;;;:20;;38590:1;;38571:15;:20;;38590:1;;38571:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38602:13:0;;;;;;:9;:13;;;;;:18;;38619:1;;38602:13;:18;;38619:1;;38602:18;:::i;:::-;;;;-1:-1:-1;;38631:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38631:21:0;-1:-1:-1;;;;;38631:21:0;;;;;;;;;38670:27;;38631:16;;38670:27;;;;;;;38090:615;;;:::o;26690:173::-;26765:6;;;-1:-1:-1;;;;;26782:17:0;;;-1:-1:-1;;;;;;26782:17:0;;;;;;;26815:40;;26765:6;;;26782:17;26765:6;;26815:40;;26746:16;;26815:40;26690:173;;:::o;55767:106::-;55843:15;;55816:7;;55843:22;;55863:1;55843:19;:22::i;36782:382::-;-1:-1:-1;;;;;36862:16:0;;36854:61;;;;-1:-1:-1;;;36854:61:0;;;;;;;:::i;:::-;36935:16;36943:7;36935;:16::i;:::-;36934:17;36926:58;;;;-1:-1:-1;;;36926:58:0;;;;;;;:::i;:::-;36997:45;37026:1;37030:2;37034:7;36997:20;:45::i;:::-;-1:-1:-1;;;;;37055:13:0;;;;;;:9;:13;;;;;:18;;37072:1;;37055:13;:18;;37072:1;;37055:18;:::i;:::-;;;;-1:-1:-1;;37084:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37084:21:0;-1:-1:-1;;;;;37084:21:0;;;;;;;;37123:33;;37084:16;;;37123:33;;37084:16;;37123:33;36782:382;;:::o;56313:1111::-;56387:10;;56369:15;;:28;56361:37;;;;;;56411:15;:17;;;:15;:17;;;:::i;:::-;;;;;;56475:1;56462:10;;:14;;;;:::i;:::-;56443:15;;:33;56439:978;;;56493:12;56523:4;56508:12;:10;:12::i;:::-;:19;;;;:::i;:::-;56493:34;;56542:14;56620:38;56653:4;56646;56628:15;;:22;;;;:::i;:::-;:29;;;;:::i;56620:38::-;56681;56714:4;56707;56689:15;;:22;;;;:::i;56681:38::-;56742;56775:4;56768;56750:15;;:22;;;;:::i;56742:38::-;56803;56836:4;56829;56811:15;;:22;;;;:::i;56803:38::-;56864;56897:4;56890;56872:15;;:22;;;;:::i;56864:38::-;56925;56958:4;56951;56933:15;;:22;;;;:::i;56925:38::-;56986;57019:4;57012;56994:15;;:22;;;;:::i;56986:38::-;57047;57080:4;57073;57055:15;;:22;;;;:::i;57047:38::-;57108;57141:4;57134;57116:15;;:22;;;;:::i;57108:38::-;57169:39;57203:4;57195:5;57177:15;;:23;;;;:::i;57169:39::-;57231;57265:4;57257:5;57239:15;;:23;;;;:::i;57231:39::-;57293:10;56587:735;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56559:778;;;;;;56542:795;;57365:40;57392:10;;57382:6;57374:15;;:28;;;;:::i;57365:40::-;57352:10;:53;;-1:-1:-1;;;;;;57352:53:0;-1:-1:-1;;;;;57352:53:0;;;;;;;;;;-1:-1:-1;;56313:1111:0:o;34035:352::-;34192:28;34202:4;34208:2;34212:7;34192:9;:28::i;:::-;34253:48;34276:4;34282:2;34286:7;34295:5;34253:22;:48::i;:::-;34231:148;;;;-1:-1:-1;;;34231:148:0;;;;;;;:::i;6831:723::-;6887:13;7108:10;7104:53;;-1:-1:-1;7135:10:0;;;;;;;;;;;;-1:-1:-1;;;7135:10:0;;;;;;7104:53;7182:5;7167:12;7223:78;7230:9;;7223:78;;7256:8;;;;:::i;:::-;;-1:-1:-1;7279:10:0;;-1:-1:-1;7287:2:0;7279:10;;:::i;:::-;;;7223:78;;;7311:19;7343:6;7333:17;;;;;;-1:-1:-1;;;7333:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7333:17:0;;7311:39;;7361:154;7368:10;;7361:154;;7395:11;7405:1;7395:11;;:::i;:::-;;-1:-1:-1;7464:10:0;7472:2;7464:5;:10;:::i;:::-;7451:24;;:2;:24;:::i;:::-;7438:39;;7421:6;7428;7421:14;;;;;;-1:-1:-1;;;7421:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;7421:56:0;;;;;;;;-1:-1:-1;7492:11:0;7501:2;7492:11;;:::i;:::-;;;7361:154;;26975:207;-1:-1:-1;;;;;;27134:40:0;;-1:-1:-1;;;27134:40:0;26975:207;;;:::o;53023:410::-;53133:7;51188:108;;;;;;;;;;;;;;;;;51164:143;;;;;;;53287:12;;53322:11;;;;53366:24;;;;;53356:35;;;;;;53206:204;;;;;;:::i;:::-;;;;;;;;;;;;;53178:247;;;;;;53158:267;;53023:410;;;:::o;50754:258::-;50853:7;50955:20;:18;:20::i;:::-;50977:11;50926:63;;;;;;;;;:::i;43780:589::-;43924:45;43951:4;43957:2;43961:7;43924:26;:45::i;:::-;-1:-1:-1;;;;;43986:18:0;;43982:187;;44021:40;44053:7;44021:31;:40::i;:::-;43982:187;;;44091:2;-1:-1:-1;;;;;44083:10:0;:4;-1:-1:-1;;;;;44083:10:0;;44079:90;;44110:47;44143:4;44149:7;44110:32;:47::i;:::-;-1:-1:-1;;;;;44183:16:0;;44179:183;;44216:45;44253:7;44216:36;:45::i;:::-;44179:183;;;44289:4;-1:-1:-1;;;;;44283:10:0;:2;-1:-1:-1;;;;;44283:10:0;;44279:83;;44310:40;44338:2;44342:7;44310:27;:40::i;55881:219::-;55926:7;55946:14;55998;56014:15;56031:16;55987:61;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;55987:61:0;;;;;;;;;55963:96;;55987:61;55963:96;;;;;-1:-1:-1;;55881:219:0;:::o;39562:980::-;39717:4;39738:15;:2;-1:-1:-1;;;;;39738:13:0;;:15::i;:::-;39734:801;;;39807:2;-1:-1:-1;;;;;39791:36:0;;39850:12;:10;:12::i;:::-;39885:4;39912:7;39942:5;39791:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39791:175:0;;;;;;;;-1:-1:-1;;39791:175:0;;;;;;;;;;;;:::i;:::-;;;39770:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40149:13:0;;40145:320;;40192:108;;-1:-1:-1;;;40192:108:0;;;;;;;:::i;40145:320::-;40415:6;40409:13;40400:6;40396:2;40392:15;40385:38;39770:710;-1:-1:-1;;;;;;40030:51:0;-1:-1:-1;;;40030:51:0;;-1:-1:-1;40023:58:0;;39734:801;-1:-1:-1;40519:4:0;39562:980;;;;;;:::o;45092:164::-;45196:10;:17;;45169:24;;;;:15;:24;;;;;:44;;;45224:24;;;;;;;;;;;;45092:164::o;45883:1002::-;46163:22;46213:1;46188:22;46205:4;46188:16;:22::i;:::-;:26;;;;:::i;:::-;46225:18;46246:26;;;:17;:26;;;;;;46163:51;;-1:-1:-1;46379:28:0;;;46375:328;;-1:-1:-1;;;;;46446:18:0;;46424:19;46446:18;;;:12;:18;;;;;;;;:34;;;;;;;;;46497:30;;;;;;:44;;;46614:30;;:17;:30;;;;;:43;;;46375:328;-1:-1:-1;46799:26:0;;;;:17;:26;;;;;;;;46792:33;;;-1:-1:-1;;;;;46843:18:0;;;;;:12;:18;;;;;:34;;;;;;;46836:41;45883:1002::o;47180:1079::-;47458:10;:17;47433:22;;47458:21;;47478:1;;47458:21;:::i;:::-;47490:18;47511:24;;;:15;:24;;;;;;47884:10;:26;;47433:46;;-1:-1:-1;47511:24:0;;47433:46;;47884:26;;;;-1:-1:-1;;;47884:26:0;;;;;;;;;;;;;;;;;47862:48;;47948:11;47923:10;47934;47923:22;;;;;;-1:-1:-1;;;47923:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;48028:28;;;:15;:28;;;;;;;:41;;;48200:24;;;;;48193:31;48235:10;:16;;;;;-1:-1:-1;;;48235:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;47180:1079;;;;:::o;44670:221::-;44755:14;44772:20;44789:2;44772:16;:20::i;:::-;-1:-1:-1;;;;;44803:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;44848:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;44670:221:0:o;16423:387::-;16746:20;16794:8;;;16423:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:232;;903:3;896:4;888:6;884:17;880:27;870:2;;925:5;918;911:20;870:2;951:81;1028:3;1019:6;1006:20;999:4;991:6;987:17;951:81;:::i;1043:198::-;;1155:2;1143:9;1134:7;1130:23;1126:32;1123:2;;;1176:6;1168;1161:22;1123:2;1204:31;1225:9;1204:31;:::i;1246:274::-;;;1375:2;1363:9;1354:7;1350:23;1346:32;1343:2;;;1396:6;1388;1381:22;1343:2;1424:31;1445:9;1424:31;:::i;:::-;1414:41;;1474:40;1510:2;1499:9;1495:18;1474:40;:::i;:::-;1464:50;;1333:187;;;;;:::o;1525:342::-;;;;1671:2;1659:9;1650:7;1646:23;1642:32;1639:2;;;1692:6;1684;1677:22;1639:2;1720:31;1741:9;1720:31;:::i;:::-;1710:41;;1770:40;1806:2;1795:9;1791:18;1770:40;:::i;:::-;1760:50;;1857:2;1846:9;1842:18;1829:32;1819:42;;1629:238;;;;;:::o;1872:563::-;;;;;2044:3;2032:9;2023:7;2019:23;2015:33;2012:2;;;2066:6;2058;2051:22;2012:2;2094:31;2115:9;2094:31;:::i;:::-;2084:41;;2144:40;2180:2;2169:9;2165:18;2144:40;:::i;:::-;2134:50;;2231:2;2220:9;2216:18;2203:32;2193:42;;2286:2;2275:9;2271:18;2258:32;2313:18;2305:6;2302:30;2299:2;;;2350:6;2342;2335:22;2299:2;2378:51;2421:7;2412:6;2401:9;2397:22;2378:51;:::i;:::-;2368:61;;;2002:433;;;;;;;:::o;2440:369::-;;;2566:2;2554:9;2545:7;2541:23;2537:32;2534:2;;;2587:6;2579;2572:22;2534:2;2615:31;2636:9;2615:31;:::i;:::-;2605:41;;2696:2;2685:9;2681:18;2668:32;2743:5;2736:13;2729:21;2722:5;2719:32;2709:2;;2770:6;2762;2755:22;2709:2;2798:5;2788:15;;;2524:285;;;;;:::o;2814:723::-;;;;;;3001:3;2989:9;2980:7;2976:23;2972:33;2969:2;;;3023:6;3015;3008:22;2969:2;3051:31;3072:9;3051:31;:::i;:::-;3041:41;;3133:2;3122:9;3118:18;3105:32;3160:18;3152:6;3149:30;3146:2;;;3197:6;3189;3182:22;3146:2;3225:51;3268:7;3259:6;3248:9;3244:22;3225:51;:::i;:::-;3215:61;;;3323:2;3312:9;3308:18;3295:32;3285:42;;3374:2;3363:9;3359:18;3346:32;3336:42;;3428:3;3417:9;3413:19;3400:33;3473:4;3466:5;3462:16;3455:5;3452:27;3442:2;;3498:6;3490;3483:22;3442:2;3526:5;3516:15;;;2959:578;;;;;;;;:::o;3542:266::-;;;3671:2;3659:9;3650:7;3646:23;3642:32;3639:2;;;3692:6;3684;3677:22;3639:2;3720:31;3741:9;3720:31;:::i;:::-;3710:41;3798:2;3783:18;;;;3770:32;;-1:-1:-1;;;3629:179:1:o;3813:257::-;;3924:2;3912:9;3903:7;3899:23;3895:32;3892:2;;;3945:6;3937;3930:22;3892:2;3989:9;3976:23;4008:32;4034:5;4008:32;:::i;4075:261::-;;4197:2;4185:9;4176:7;4172:23;4168:32;4165:2;;;4218:6;4210;4203:22;4165:2;4255:9;4249:16;4274:32;4300:5;4274:32;:::i;4341:482::-;;4463:2;4451:9;4442:7;4438:23;4434:32;4431:2;;;4484:6;4476;4469:22;4431:2;4529:9;4516:23;4562:18;4554:6;4551:30;4548:2;;;4599:6;4591;4584:22;4548:2;4627:22;;4680:4;4672:13;;4668:27;-1:-1:-1;4658:2:1;;4714:6;4706;4699:22;4658:2;4742:75;4809:7;4804:2;4791:16;4786:2;4782;4778:11;4742:75;:::i;4828:190::-;;4940:2;4928:9;4919:7;4915:23;4911:32;4908:2;;;4961:6;4953;4946:22;4908:2;-1:-1:-1;4989:23:1;;4898:120;-1:-1:-1;4898:120:1:o;5023:114::-;-1:-1:-1;;;;;5099:31:1;5087:44;;5077:60::o;5142:270::-;;5234:5;5228:12;5261:6;5256:3;5249:19;5277:63;5333:6;5326:4;5321:3;5317:14;5310:4;5303:5;5299:16;5277:63;:::i;:::-;5394:2;5373:15;-1:-1:-1;;5369:29:1;5360:39;;;;5401:4;5356:50;;5204:208;-1:-1:-1;;5204:208:1:o;5417:186::-;;5498:5;5492:12;5513:52;5558:6;5553:3;5546:4;5539:5;5535:16;5513:52;:::i;:::-;5581:16;;;;;5468:135;-1:-1:-1;;5468:135:1:o;5608:274::-;;5775:6;5769:13;5791:53;5837:6;5832:3;5825:4;5817:6;5813:17;5791:53;:::i;:::-;5860:16;;;;;5745:137;-1:-1:-1;;5745:137:1:o;5887:415::-;;6082:6;6076:13;6098:53;6144:6;6139:3;6132:4;6124:6;6120:17;6098:53;:::i;:::-;6220:2;6216:15;;;;-1:-1:-1;;6212:53:1;6173:16;;;;6198:68;;;6293:2;6282:14;;6052:250;-1:-1:-1;;6052:250:1:o;6307:1180::-;6541:13;;6307:1180;;;;6614:1;6599:17;;6635:1;6671:18;;;;6698:2;;6752:4;6744:6;6740:17;6730:27;;6698:2;6778;6826;6818:6;6815:14;6795:18;6792:38;6789:2;;;-1:-1:-1;;;6853:33:1;;6909:4;6906:1;6899:15;6939:4;6860:3;6927:17;6789:2;6970:18;6997:104;;;;7115:1;7110:324;;;;6963:471;;6997:104;-1:-1:-1;;7030:24:1;;7018:37;;7075:16;;;;-1:-1:-1;6997:104:1;;7110:324;7146:39;7178:6;7146:39;:::i;:::-;7207:3;7223:165;7237:6;7234:1;7231:13;7223:165;;;7315:14;;7302:11;;;7295:35;7358:16;;;;7252:10;;7223:165;;;7227:3;;7417:6;7412:3;7408:16;7401:23;;6963:471;;;;;;;7450:31;7477:3;7469:6;7450:31;:::i;:::-;7443:38;6491:996;-1:-1:-1;;;;;6491:996:1:o;7492:392::-;-1:-1:-1;;;7750:27:1;;7802:1;7793:11;;7786:27;;;;7838:2;7829:12;;7822:28;7875:2;7866:12;;7740:144::o;7889:203::-;-1:-1:-1;;;;;8053:32:1;;;;8035:51;;8023:2;8008:18;;7990:102::o;8097:361::-;-1:-1:-1;;;;;8333:32:1;;;;8315:51;;8397:2;8382:18;;8375:34;;;;8440:2;8425:18;;8418:34;8303:2;8288:18;;8270:188::o;8463:444::-;-1:-1:-1;;;;;8720:15:1;;;8702:34;;8772:15;;8767:2;8752:18;;8745:43;8824:2;8819;8804:18;;8797:30;;;8463:444;;8844:57;;8882:18;;8874:6;8844:57;:::i;8912:1156::-;-1:-1:-1;;;;;9425:15:1;;;9407:34;;9477:15;;;9472:2;9457:18;;9450:43;9529:15;;;9524:2;9509:18;;9502:43;9581:15;;;9576:2;9561:18;;9554:43;9634:15;;;9628:3;9613:19;;9606:44;9687:15;;;9387:3;9666:19;;9659:44;9740:15;;;9734:3;9719:19;;9712:44;9793:15;;;9787:3;9772:19;;9765:44;9846:15;;9840:3;9825:19;;9818:44;9356:3;9341:19;;9871:57;9923:3;9908:19;;9900:6;9871:57;:::i;:::-;9937:58;9990:3;9979:9;9975:19;9966:7;9937:58;:::i;:::-;10004;10057:3;10046:9;10042:19;10033:7;10004:58;:::i;:::-;9323:745;;;;;;;;;;;;;;;:::o;10073:501::-;-1:-1:-1;;;;;10342:15:1;;;10324:34;;10394:15;;10389:2;10374:18;;10367:43;10441:2;10426:18;;10419:34;;;10489:3;10484:2;10469:18;;10462:31;;;10073:501;;10510:58;;10548:19;;10540:6;10510:58;:::i;:::-;10502:66;10276:298;-1:-1:-1;;;;;;10276:298:1:o;10579:187::-;10744:14;;10737:22;10719:41;;10707:2;10692:18;;10674:92::o;10771:177::-;10917:25;;;10905:2;10890:18;;10872:76::o;10953:417::-;11184:25;;;11240:2;11225:18;;11218:34;;;;-1:-1:-1;;;;;11288:32:1;11283:2;11268:18;;11261:60;11352:2;11337:18;;11330:34;11171:3;11156:19;;11138:232::o;11375:398::-;11602:25;;;11675:4;11663:17;;;;11658:2;11643:18;;11636:45;11712:2;11697:18;;11690:34;11755:2;11740:18;;11733:34;11589:3;11574:19;;11556:217::o;11778:230::-;;11925:2;11914:9;11907:21;11945:57;11998:2;11987:9;11983:18;11975:6;11945:57;:::i;12250:407::-;12452:2;12434:21;;;12491:2;12471:18;;;12464:30;12530:34;12525:2;12510:18;;12503:62;-1:-1:-1;;;12596:2:1;12581:18;;12574:41;12647:3;12632:19;;12424:233::o;12662:414::-;12864:2;12846:21;;;12903:2;12883:18;;;12876:30;12942:34;12937:2;12922:18;;12915:62;-1:-1:-1;;;13008:2:1;12993:18;;12986:48;13066:3;13051:19;;12836:240::o;13081:402::-;13283:2;13265:21;;;13322:2;13302:18;;;13295:30;13361:34;13356:2;13341:18;;13334:62;-1:-1:-1;;;13427:2:1;13412:18;;13405:36;13473:3;13458:19;;13255:228::o;13488:352::-;13690:2;13672:21;;;13729:2;13709:18;;;13702:30;13768;13763:2;13748:18;;13741:58;13831:2;13816:18;;13662:178::o;13845:352::-;14047:2;14029:21;;;14086:2;14066:18;;;14059:30;14125;14120:2;14105:18;;14098:58;14188:2;14173:18;;14019:178::o;14202:400::-;14404:2;14386:21;;;14443:2;14423:18;;;14416:30;14482:34;14477:2;14462:18;;14455:62;-1:-1:-1;;;14548:2:1;14533:18;;14526:34;14592:3;14577:19;;14376:226::o;14607:349::-;14809:2;14791:21;;;14848:2;14828:18;;;14821:30;14887:27;14882:2;14867:18;;14860:55;14947:2;14932:18;;14781:175::o;14961:408::-;15163:2;15145:21;;;15202:2;15182:18;;;15175:30;15241:34;15236:2;15221:18;;15214:62;-1:-1:-1;;;15307:2:1;15292:18;;15285:42;15359:3;15344:19;;15135:234::o;15374:401::-;15576:2;15558:21;;;15615:2;15595:18;;;15588:30;15654:34;15649:2;15634:18;;15627:62;-1:-1:-1;;;15720:2:1;15705:18;;15698:35;15765:3;15750:19;;15548:227::o;15780:420::-;15982:2;15964:21;;;16021:2;16001:18;;;15994:30;16060:34;16055:2;16040:18;;16033:62;16131:26;16126:2;16111:18;;16104:54;16190:3;16175:19;;15954:246::o;16205:406::-;16407:2;16389:21;;;16446:2;16426:18;;;16419:30;16485:34;16480:2;16465:18;;16458:62;-1:-1:-1;;;16551:2:1;16536:18;;16529:40;16601:3;16586:19;;16379:232::o;16616:405::-;16818:2;16800:21;;;16857:2;16837:18;;;16830:30;16896:34;16891:2;16876:18;;16869:62;-1:-1:-1;;;16962:2:1;16947:18;;16940:39;17011:3;16996:19;;16790:231::o;17026:356::-;17228:2;17210:21;;;17247:18;;;17240:30;17306:34;17301:2;17286:18;;17279:62;17373:2;17358:18;;17200:182::o;17387:408::-;17589:2;17571:21;;;17628:2;17608:18;;;17601:30;17667:34;17662:2;17647:18;;17640:62;-1:-1:-1;;;17733:2:1;17718:18;;17711:42;17785:3;17770:19;;17561:234::o;17800:356::-;18002:2;17984:21;;;18021:18;;;18014:30;18080:34;18075:2;18060:18;;18053:62;18147:2;18132:18;;17974:182::o;18161:405::-;18363:2;18345:21;;;18402:2;18382:18;;;18375:30;18441:34;18436:2;18421:18;;18414:62;-1:-1:-1;;;18507:2:1;18492:18;;18485:39;18556:3;18541:19;;18335:231::o;18571:397::-;18773:2;18755:21;;;18812:2;18792:18;;;18785:30;18851:34;18846:2;18831:18;;18824:62;-1:-1:-1;;;18917:2:1;18902:18;;18895:31;18958:3;18943:19;;18745:223::o;18973:397::-;19175:2;19157:21;;;19214:2;19194:18;;;19187:30;19253:34;19248:2;19233:18;;19226:62;-1:-1:-1;;;19319:2:1;19304:18;;19297:31;19360:3;19345:19;;19147:223::o;19375:346::-;19577:2;19559:21;;;19616:2;19596:18;;;19589:30;-1:-1:-1;;;19650:2:1;19635:18;;19628:52;19712:2;19697:18;;19549:172::o;19726:413::-;19928:2;19910:21;;;19967:2;19947:18;;;19940:30;20006:34;20001:2;19986:18;;19979:62;-1:-1:-1;;;20072:2:1;20057:18;;20050:47;20129:3;20114:19;;19900:239::o;20144:341::-;20346:2;20328:21;;;20385:2;20365:18;;;20358:30;-1:-1:-1;;;20419:2:1;20404:18;;20397:47;20476:2;20461:18;;20318:167::o;20490:408::-;20692:2;20674:21;;;20731:2;20711:18;;;20704:30;20770:34;20765:2;20750:18;;20743:62;-1:-1:-1;;;20836:2:1;20821:18;;20814:42;20888:3;20873:19;;20664:234::o;20903:342::-;21105:2;21087:21;;;21144:2;21124:18;;;21117:30;-1:-1:-1;;;21178:2:1;21163:18;;21156:48;21236:2;21221:18;;21077:168::o;21432:129::-;;21500:17;;;21550:4;21534:21;;;21490:71::o;21566:128::-;;21637:1;21633:6;21630:1;21627:13;21624:2;;;21643:18;;:::i;:::-;-1:-1:-1;21679:9:1;;21614:80::o;21699:120::-;;21765:1;21755:2;;21770:18;;:::i;:::-;-1:-1:-1;21804:9:1;;21745:74::o;21824:125::-;;21892:1;21889;21886:8;21883:2;;;21897:18;;:::i;:::-;-1:-1:-1;21934:9:1;;21873:76::o;21954:258::-;22026:1;22036:113;22050:6;22047:1;22044:13;22036:113;;;22126:11;;;22120:18;22107:11;;;22100:39;22072:2;22065:10;22036:113;;;22167:6;22164:1;22161:13;22158:2;;;-1:-1:-1;;22202:1:1;22184:16;;22177:27;22007:205::o;22217:380::-;22302:1;22292:12;;22349:1;22339:12;;;22360:2;;22414:4;22406:6;22402:17;22392:27;;22360:2;22467;22459:6;22456:14;22436:18;22433:38;22430:2;;;22513:10;22508:3;22504:20;22501:1;22494:31;22548:4;22545:1;22538:15;22576:4;22573:1;22566:15;22430:2;;22272:325;;;:::o;22602:135::-;;-1:-1:-1;;22662:17:1;;22659:2;;;22682:18;;:::i;:::-;-1:-1:-1;22729:1:1;22718:13;;22649:88::o;22742:112::-;;22800:1;22790:2;;22805:18;;:::i;:::-;-1:-1:-1;22839:9:1;;22780:74::o;22859:127::-;22920:10;22915:3;22911:20;22908:1;22901:31;22951:4;22948:1;22941:15;22975:4;22972:1;22965:15;22991:127;23052:10;23047:3;23043:20;23040:1;23033:31;23083:4;23080:1;23073:15;23107:4;23104:1;23097:15;23123:127;23184:10;23179:3;23175:20;23172:1;23165:31;23215:4;23212:1;23205:15;23239:4;23236:1;23229:15;23255:133;-1:-1:-1;;;;;;23331:32:1;;23321:43;;23311:2;;23378:1;23375;23368:12

Swarm Source

ipfs://5571b9a06d09f3c146652878ecdfc5a060ebb942d7a9c09bfd0e9966e2a49a58
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.