ETH Price: $3,473.45 (+1.60%)
Gas: 9 Gwei

Token

OnChain Ghosts (OG)
 

Overview

Max Total Supply

3,500 OG

Holders

1,067

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 OG
0xc761a7a1fe7bd916baa9e38e3a5a219bef93cb17
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:
OnChainGhost

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-08
*/

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

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
pragma solidity ^0.8.0;

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

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

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

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

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

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    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);
            }
        }
    }
}
pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}
pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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);
    }
}
pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}
pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}
pragma solidity ^0.8.0;


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        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 {}
}pragma solidity ^0.8.0;


contract OnChainGhost is Ownable, ERC721 {
    uint constant tokenPrice = 0.01 ether;
    uint constant maxSupply = 3500;
    
    uint public totalSupply = 0;
    
    uint public sale_startTime = 1633737600;
    bool public pause_sale = false;

    string public baseURI;

    constructor() ERC721("OnChain Ghosts", "OG"){}

   function buy(uint _count) public payable{
        require(_count > 0, "mint at least one token");
        require(_count <= 20, "Max 20 Allowed.");
        require(totalSupply + _count <= maxSupply, "Not enough tokens left");
        require(msg.value == tokenPrice * _count, "incorrect ether amount");
        require(block.timestamp >= sale_startTime,"Sale not Started Yet.");
        require(pause_sale == false, "Sale is Paused.");
        
        for(uint i = 0; i < _count; i++)
            _safeMint(msg.sender, totalSupply + 1 + i);
            
            totalSupply += _count;
    }

    function sendGifts(address[] memory _wallets) public onlyOwner{
        require(totalSupply + _wallets.length <= maxSupply, "not enough tokens left");
        for(uint i = 0; i < _wallets.length; i++)
            _safeMint(_wallets[i], totalSupply + 1 + i);
        totalSupply += _wallets.length;
    }

    function setBaseUri(string memory _uri) external onlyOwner {
        baseURI = _uri;
    }
    function setPauseSale(bool temp) external onlyOwner {
        pause_sale = temp;
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    function set_start_time(uint256 time) external onlyOwner{
        sale_startTime = time;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"pause_sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"sale_startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"sendGifts","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":"bool","name":"temp","type":"bool"}],"name":"setPauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"set_start_time","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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"}]

60806040526000600755636160db806008556009805460ff191690553480156200002857600080fd5b506040518060400160405280600e81526020016d4f6e436861696e2047686f73747360901b815250604051806040016040528060028152602001614f4760f01b815250620000856200007f620000b960201b60201c565b620000bd565b81516200009a9060019060208501906200010d565b508051620000b09060029060208401906200010d565b505050620001f0565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200011b90620001b3565b90600052602060002090601f0160209004810192826200013f57600085556200018a565b82601f106200015a57805160ff19168380011785556200018a565b828001600101855582156200018a579182015b828111156200018a5782518255916020019190600101906200016d565b50620001989291506200019c565b5090565b5b808211156200019857600081556001016200019d565b600181811c90821680620001c857607f821691505b60208210811415620001ea57634e487b7160e01b600052602260045260246000fd5b50919050565b611e8080620002006000396000f3fe6080604052600436106101815760003560e01c80637c8255db116100d1578063b27b1a6d1161008a578063c87b56dd11610064578063c87b56dd1461043d578063d96a094a1461045d578063e985e9c514610470578063f2fde38b146104b957600080fd5b8063b27b1a6d146103e3578063b88d4fde14610403578063c1580cb31461042357600080fd5b80637c8255db146103305780638da5cb5b1461035057806395d89b411461036e578063a0bcfc7f14610383578063a22cb465146103a3578063aa29e23f146103c357600080fd5b806323b872dd1161013e5780636352211e116101185780636352211e146102c65780636c0360eb146102e657806370a08231146102fb578063715018a61461031b57600080fd5b806323b872dd146102715780633ccfd60b1461029157806342842e0e146102a657600080fd5b806301ffc9a71461018657806303158dde146101bb57806306fdde03146101df578063081812fc14610201578063095ea7b31461023957806318160ddd1461025b575b600080fd5b34801561019257600080fd5b506101a66101a1366004611a94565b6104d9565b60405190151581526020015b60405180910390f35b3480156101c757600080fd5b506101d160085481565b6040519081526020016101b2565b3480156101eb57600080fd5b506101f461052b565b6040516101b29190611bc8565b34801561020d57600080fd5b5061022161021c366004611b17565b6105bd565b6040516001600160a01b0390911681526020016101b2565b34801561024557600080fd5b5061025961025436600461199b565b610657565b005b34801561026757600080fd5b506101d160075481565b34801561027d57600080fd5b5061025961028c3660046118b9565b61076d565b34801561029d57600080fd5b5061025961079e565b3480156102b257600080fd5b506102596102c13660046118b9565b610805565b3480156102d257600080fd5b506102216102e1366004611b17565b610820565b3480156102f257600080fd5b506101f4610897565b34801561030757600080fd5b506101d161031636600461186b565b610925565b34801561032757600080fd5b506102596109ac565b34801561033c57600080fd5b5061025961034b3660046119c5565b6109e2565b34801561035c57600080fd5b506000546001600160a01b0316610221565b34801561037a57600080fd5b506101f4610adb565b34801561038f57600080fd5b5061025961039e366004611ace565b610aea565b3480156103af57600080fd5b506102596103be366004611971565b610b2b565b3480156103cf57600080fd5b506102596103de366004611a79565b610bf0565b3480156103ef57600080fd5b506102596103fe366004611b17565b610c2d565b34801561040f57600080fd5b5061025961041e3660046118f5565b610c5c565b34801561042f57600080fd5b506009546101a69060ff1681565b34801561044957600080fd5b506101f4610458366004611b17565b610c94565b61025961046b366004611b17565b610d6f565b34801561047c57600080fd5b506101a661048b366004611886565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156104c557600080fd5b506102596104d436600461186b565b610f85565b60006001600160e01b031982166380ac58cd60e01b148061050a57506001600160e01b03198216635b5e139f60e01b145b8061052557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461053a90611d72565b80601f016020809104026020016040519081016040528092919081815260200182805461056690611d72565b80156105b35780601f10610588576101008083540402835291602001916105b3565b820191906000526020600020905b81548152906001019060200180831161059657829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b031661063b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061066282610820565b9050806001600160a01b0316836001600160a01b031614156106d05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610632565b336001600160a01b03821614806106ec57506106ec813361048b565b61075e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610632565b610768838361101d565b505050565b610777338261108b565b6107935760405162461bcd60e51b815260040161063290611c62565b610768838383611182565b6000546001600160a01b031633146107c85760405162461bcd60e51b815260040161063290611c2d565b600080546040516001600160a01b03909116914780156108fc02929091818181858888f19350505050158015610802573d6000803e3d6000fd5b50565b61076883838360405180602001604052806000815250610c5c565b6000818152600360205260408120546001600160a01b0316806105255760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610632565b600a80546108a490611d72565b80601f01602080910402602001604051908101604052809291908181526020018280546108d090611d72565b801561091d5780601f106108f25761010080835404028352916020019161091d565b820191906000526020600020905b81548152906001019060200180831161090057829003601f168201915b505050505081565b60006001600160a01b0382166109905760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610632565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b031633146109d65760405162461bcd60e51b815260040161063290611c2d565b6109e06000611322565b565b6000546001600160a01b03163314610a0c5760405162461bcd60e51b815260040161063290611c2d565b610dac8151600754610a1e9190611ce4565b1115610a655760405162461bcd60e51b81526020600482015260166024820152751b9bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610632565b60005b8151811015610abf57610aad828281518110610a8657610a86611e08565b6020026020010151826007546001610a9e9190611ce4565b610aa89190611ce4565b611372565b80610ab781611dad565b915050610a68565b50805160076000828254610ad39190611ce4565b909155505050565b60606002805461053a90611d72565b6000546001600160a01b03163314610b145760405162461bcd60e51b815260040161063290611c2d565b8051610b2790600a90602084019061174e565b5050565b6001600160a01b038216331415610b845760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610632565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314610c1a5760405162461bcd60e51b815260040161063290611c2d565b6009805460ff1916911515919091179055565b6000546001600160a01b03163314610c575760405162461bcd60e51b815260040161063290611c2d565b600855565b610c66338361108b565b610c825760405162461bcd60e51b815260040161063290611c62565b610c8e8484848461138c565b50505050565b6000818152600360205260409020546060906001600160a01b0316610d135760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610632565b6000610d1d6113bf565b90506000815111610d3d5760405180602001604052806000815250610d68565b80610d47846113ce565b604051602001610d58929190611b5c565b6040516020818303038152906040525b9392505050565b60008111610dbf5760405162461bcd60e51b815260206004820152601760248201527f6d696e74206174206c65617374206f6e6520746f6b656e0000000000000000006044820152606401610632565b6014811115610e025760405162461bcd60e51b815260206004820152600f60248201526e26b0bc1019181020b63637bbb2b21760891b6044820152606401610632565b610dac81600754610e139190611ce4565b1115610e5a5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610632565b610e6b81662386f26fc10000611d10565b3414610eb25760405162461bcd60e51b81526020600482015260166024820152751a5b98dbdc9c9958dd08195d1a195c88185b5bdd5b9d60521b6044820152606401610632565b600854421015610efc5760405162461bcd60e51b815260206004820152601560248201527429b0b632903737ba1029ba30b93a32b2102cb2ba1760591b6044820152606401610632565b60095460ff1615610f415760405162461bcd60e51b815260206004820152600f60248201526e29b0b6329034b9902830bab9b2b21760891b6044820152606401610632565b60005b81811015610f7257610f6033826007546001610a9e9190611ce4565b80610f6a81611dad565b915050610f44565b508060076000828254610ad39190611ce4565b6000546001600160a01b03163314610faf5760405162461bcd60e51b815260040161063290611c2d565b6001600160a01b0381166110145760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610632565b61080281611322565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061105282610820565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166111045760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610632565b600061110f83610820565b9050806001600160a01b0316846001600160a01b0316148061114a5750836001600160a01b031661113f846105bd565b6001600160a01b0316145b8061117a57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661119582610820565b6001600160a01b0316146111fd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610632565b6001600160a01b03821661125f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610632565b61126a60008261101d565b6001600160a01b0383166000908152600460205260408120805460019290611293908490611d2f565b90915550506001600160a01b03821660009081526004602052604081208054600192906112c1908490611ce4565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610b278282604051806020016040528060008152506114cc565b611397848484611182565b6113a3848484846114ff565b610c8e5760405162461bcd60e51b815260040161063290611bdb565b6060600a805461053a90611d72565b6060816113f25750506040805180820190915260018152600360fc1b602082015290565b8160005b811561141c578061140681611dad565b91506114159050600a83611cfc565b91506113f6565b60008167ffffffffffffffff81111561143757611437611e1e565b6040519080825280601f01601f191660200182016040528015611461576020820181803683370190505b5090505b841561117a57611476600183611d2f565b9150611483600a86611dc8565b61148e906030611ce4565b60f81b8183815181106114a3576114a3611e08565b60200101906001600160f81b031916908160001a9053506114c5600a86611cfc565b9450611465565b6114d6838361160c565b6114e360008484846114ff565b6107685760405162461bcd60e51b815260040161063290611bdb565b60006001600160a01b0384163b1561160157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611543903390899088908890600401611b8b565b602060405180830381600087803b15801561155d57600080fd5b505af192505050801561158d575060408051601f3d908101601f1916820190925261158a91810190611ab1565b60015b6115e7573d8080156115bb576040519150601f19603f3d011682016040523d82523d6000602084013e6115c0565b606091505b5080516115df5760405162461bcd60e51b815260040161063290611bdb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061117a565b506001949350505050565b6001600160a01b0382166116625760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610632565b6000818152600360205260409020546001600160a01b0316156116c75760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610632565b6001600160a01b03821660009081526004602052604081208054600192906116f0908490611ce4565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461175a90611d72565b90600052602060002090601f01602090048101928261177c57600085556117c2565b82601f1061179557805160ff19168380011785556117c2565b828001600101855582156117c2579182015b828111156117c25782518255916020019190600101906117a7565b506117ce9291506117d2565b5090565b5b808211156117ce57600081556001016117d3565b600067ffffffffffffffff83111561180157611801611e1e565b611814601f8401601f1916602001611cb3565b905082815283838301111561182857600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461185657600080fd5b919050565b8035801515811461185657600080fd5b60006020828403121561187d57600080fd5b610d688261183f565b6000806040838503121561189957600080fd5b6118a28361183f565b91506118b06020840161183f565b90509250929050565b6000806000606084860312156118ce57600080fd5b6118d78461183f565b92506118e56020850161183f565b9150604084013590509250925092565b6000806000806080858703121561190b57600080fd5b6119148561183f565b93506119226020860161183f565b925060408501359150606085013567ffffffffffffffff81111561194557600080fd5b8501601f8101871361195657600080fd5b611965878235602084016117e7565b91505092959194509250565b6000806040838503121561198457600080fd5b61198d8361183f565b91506118b06020840161185b565b600080604083850312156119ae57600080fd5b6119b78361183f565b946020939093013593505050565b600060208083850312156119d857600080fd5b823567ffffffffffffffff808211156119f057600080fd5b818501915085601f830112611a0457600080fd5b813581811115611a1657611a16611e1e565b8060051b9150611a27848301611cb3565b8181528481019084860184860187018a1015611a4257600080fd5b600095505b83861015611a6c57611a588161183f565b835260019590950194918601918601611a47565b5098975050505050505050565b600060208284031215611a8b57600080fd5b610d688261185b565b600060208284031215611aa657600080fd5b8135610d6881611e34565b600060208284031215611ac357600080fd5b8151610d6881611e34565b600060208284031215611ae057600080fd5b813567ffffffffffffffff811115611af757600080fd5b8201601f81018413611b0857600080fd5b61117a848235602084016117e7565b600060208284031215611b2957600080fd5b5035919050565b60008151808452611b48816020860160208601611d46565b601f01601f19169290920160200192915050565b60008351611b6e818460208801611d46565b835190830190611b82818360208801611d46565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611bbe90830184611b30565b9695505050505050565b602081526000610d686020830184611b30565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611cdc57611cdc611e1e565b604052919050565b60008219821115611cf757611cf7611ddc565b500190565b600082611d0b57611d0b611df2565b500490565b6000816000190483118215151615611d2a57611d2a611ddc565b500290565b600082821015611d4157611d41611ddc565b500390565b60005b83811015611d61578181015183820152602001611d49565b83811115610c8e5750506000910152565b600181811c90821680611d8657607f821691505b60208210811415611da757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611dc157611dc1611ddc565b5060010190565b600082611dd757611dd7611df2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461080257600080fdfea26469706673582212202bced2aedabcecceadddd750dc78834fc8fee8ae1bf77598978c54535c8ab82164736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101815760003560e01c80637c8255db116100d1578063b27b1a6d1161008a578063c87b56dd11610064578063c87b56dd1461043d578063d96a094a1461045d578063e985e9c514610470578063f2fde38b146104b957600080fd5b8063b27b1a6d146103e3578063b88d4fde14610403578063c1580cb31461042357600080fd5b80637c8255db146103305780638da5cb5b1461035057806395d89b411461036e578063a0bcfc7f14610383578063a22cb465146103a3578063aa29e23f146103c357600080fd5b806323b872dd1161013e5780636352211e116101185780636352211e146102c65780636c0360eb146102e657806370a08231146102fb578063715018a61461031b57600080fd5b806323b872dd146102715780633ccfd60b1461029157806342842e0e146102a657600080fd5b806301ffc9a71461018657806303158dde146101bb57806306fdde03146101df578063081812fc14610201578063095ea7b31461023957806318160ddd1461025b575b600080fd5b34801561019257600080fd5b506101a66101a1366004611a94565b6104d9565b60405190151581526020015b60405180910390f35b3480156101c757600080fd5b506101d160085481565b6040519081526020016101b2565b3480156101eb57600080fd5b506101f461052b565b6040516101b29190611bc8565b34801561020d57600080fd5b5061022161021c366004611b17565b6105bd565b6040516001600160a01b0390911681526020016101b2565b34801561024557600080fd5b5061025961025436600461199b565b610657565b005b34801561026757600080fd5b506101d160075481565b34801561027d57600080fd5b5061025961028c3660046118b9565b61076d565b34801561029d57600080fd5b5061025961079e565b3480156102b257600080fd5b506102596102c13660046118b9565b610805565b3480156102d257600080fd5b506102216102e1366004611b17565b610820565b3480156102f257600080fd5b506101f4610897565b34801561030757600080fd5b506101d161031636600461186b565b610925565b34801561032757600080fd5b506102596109ac565b34801561033c57600080fd5b5061025961034b3660046119c5565b6109e2565b34801561035c57600080fd5b506000546001600160a01b0316610221565b34801561037a57600080fd5b506101f4610adb565b34801561038f57600080fd5b5061025961039e366004611ace565b610aea565b3480156103af57600080fd5b506102596103be366004611971565b610b2b565b3480156103cf57600080fd5b506102596103de366004611a79565b610bf0565b3480156103ef57600080fd5b506102596103fe366004611b17565b610c2d565b34801561040f57600080fd5b5061025961041e3660046118f5565b610c5c565b34801561042f57600080fd5b506009546101a69060ff1681565b34801561044957600080fd5b506101f4610458366004611b17565b610c94565b61025961046b366004611b17565b610d6f565b34801561047c57600080fd5b506101a661048b366004611886565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156104c557600080fd5b506102596104d436600461186b565b610f85565b60006001600160e01b031982166380ac58cd60e01b148061050a57506001600160e01b03198216635b5e139f60e01b145b8061052557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461053a90611d72565b80601f016020809104026020016040519081016040528092919081815260200182805461056690611d72565b80156105b35780601f10610588576101008083540402835291602001916105b3565b820191906000526020600020905b81548152906001019060200180831161059657829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b031661063b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061066282610820565b9050806001600160a01b0316836001600160a01b031614156106d05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610632565b336001600160a01b03821614806106ec57506106ec813361048b565b61075e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610632565b610768838361101d565b505050565b610777338261108b565b6107935760405162461bcd60e51b815260040161063290611c62565b610768838383611182565b6000546001600160a01b031633146107c85760405162461bcd60e51b815260040161063290611c2d565b600080546040516001600160a01b03909116914780156108fc02929091818181858888f19350505050158015610802573d6000803e3d6000fd5b50565b61076883838360405180602001604052806000815250610c5c565b6000818152600360205260408120546001600160a01b0316806105255760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610632565b600a80546108a490611d72565b80601f01602080910402602001604051908101604052809291908181526020018280546108d090611d72565b801561091d5780601f106108f25761010080835404028352916020019161091d565b820191906000526020600020905b81548152906001019060200180831161090057829003601f168201915b505050505081565b60006001600160a01b0382166109905760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610632565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b031633146109d65760405162461bcd60e51b815260040161063290611c2d565b6109e06000611322565b565b6000546001600160a01b03163314610a0c5760405162461bcd60e51b815260040161063290611c2d565b610dac8151600754610a1e9190611ce4565b1115610a655760405162461bcd60e51b81526020600482015260166024820152751b9bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610632565b60005b8151811015610abf57610aad828281518110610a8657610a86611e08565b6020026020010151826007546001610a9e9190611ce4565b610aa89190611ce4565b611372565b80610ab781611dad565b915050610a68565b50805160076000828254610ad39190611ce4565b909155505050565b60606002805461053a90611d72565b6000546001600160a01b03163314610b145760405162461bcd60e51b815260040161063290611c2d565b8051610b2790600a90602084019061174e565b5050565b6001600160a01b038216331415610b845760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610632565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314610c1a5760405162461bcd60e51b815260040161063290611c2d565b6009805460ff1916911515919091179055565b6000546001600160a01b03163314610c575760405162461bcd60e51b815260040161063290611c2d565b600855565b610c66338361108b565b610c825760405162461bcd60e51b815260040161063290611c62565b610c8e8484848461138c565b50505050565b6000818152600360205260409020546060906001600160a01b0316610d135760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610632565b6000610d1d6113bf565b90506000815111610d3d5760405180602001604052806000815250610d68565b80610d47846113ce565b604051602001610d58929190611b5c565b6040516020818303038152906040525b9392505050565b60008111610dbf5760405162461bcd60e51b815260206004820152601760248201527f6d696e74206174206c65617374206f6e6520746f6b656e0000000000000000006044820152606401610632565b6014811115610e025760405162461bcd60e51b815260206004820152600f60248201526e26b0bc1019181020b63637bbb2b21760891b6044820152606401610632565b610dac81600754610e139190611ce4565b1115610e5a5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610632565b610e6b81662386f26fc10000611d10565b3414610eb25760405162461bcd60e51b81526020600482015260166024820152751a5b98dbdc9c9958dd08195d1a195c88185b5bdd5b9d60521b6044820152606401610632565b600854421015610efc5760405162461bcd60e51b815260206004820152601560248201527429b0b632903737ba1029ba30b93a32b2102cb2ba1760591b6044820152606401610632565b60095460ff1615610f415760405162461bcd60e51b815260206004820152600f60248201526e29b0b6329034b9902830bab9b2b21760891b6044820152606401610632565b60005b81811015610f7257610f6033826007546001610a9e9190611ce4565b80610f6a81611dad565b915050610f44565b508060076000828254610ad39190611ce4565b6000546001600160a01b03163314610faf5760405162461bcd60e51b815260040161063290611c2d565b6001600160a01b0381166110145760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610632565b61080281611322565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061105282610820565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166111045760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610632565b600061110f83610820565b9050806001600160a01b0316846001600160a01b0316148061114a5750836001600160a01b031661113f846105bd565b6001600160a01b0316145b8061117a57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661119582610820565b6001600160a01b0316146111fd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610632565b6001600160a01b03821661125f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610632565b61126a60008261101d565b6001600160a01b0383166000908152600460205260408120805460019290611293908490611d2f565b90915550506001600160a01b03821660009081526004602052604081208054600192906112c1908490611ce4565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610b278282604051806020016040528060008152506114cc565b611397848484611182565b6113a3848484846114ff565b610c8e5760405162461bcd60e51b815260040161063290611bdb565b6060600a805461053a90611d72565b6060816113f25750506040805180820190915260018152600360fc1b602082015290565b8160005b811561141c578061140681611dad565b91506114159050600a83611cfc565b91506113f6565b60008167ffffffffffffffff81111561143757611437611e1e565b6040519080825280601f01601f191660200182016040528015611461576020820181803683370190505b5090505b841561117a57611476600183611d2f565b9150611483600a86611dc8565b61148e906030611ce4565b60f81b8183815181106114a3576114a3611e08565b60200101906001600160f81b031916908160001a9053506114c5600a86611cfc565b9450611465565b6114d6838361160c565b6114e360008484846114ff565b6107685760405162461bcd60e51b815260040161063290611bdb565b60006001600160a01b0384163b1561160157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611543903390899088908890600401611b8b565b602060405180830381600087803b15801561155d57600080fd5b505af192505050801561158d575060408051601f3d908101601f1916820190925261158a91810190611ab1565b60015b6115e7573d8080156115bb576040519150601f19603f3d011682016040523d82523d6000602084013e6115c0565b606091505b5080516115df5760405162461bcd60e51b815260040161063290611bdb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061117a565b506001949350505050565b6001600160a01b0382166116625760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610632565b6000818152600360205260409020546001600160a01b0316156116c75760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610632565b6001600160a01b03821660009081526004602052604081208054600192906116f0908490611ce4565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461175a90611d72565b90600052602060002090601f01602090048101928261177c57600085556117c2565b82601f1061179557805160ff19168380011785556117c2565b828001600101855582156117c2579182015b828111156117c25782518255916020019190600101906117a7565b506117ce9291506117d2565b5090565b5b808211156117ce57600081556001016117d3565b600067ffffffffffffffff83111561180157611801611e1e565b611814601f8401601f1916602001611cb3565b905082815283838301111561182857600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461185657600080fd5b919050565b8035801515811461185657600080fd5b60006020828403121561187d57600080fd5b610d688261183f565b6000806040838503121561189957600080fd5b6118a28361183f565b91506118b06020840161183f565b90509250929050565b6000806000606084860312156118ce57600080fd5b6118d78461183f565b92506118e56020850161183f565b9150604084013590509250925092565b6000806000806080858703121561190b57600080fd5b6119148561183f565b93506119226020860161183f565b925060408501359150606085013567ffffffffffffffff81111561194557600080fd5b8501601f8101871361195657600080fd5b611965878235602084016117e7565b91505092959194509250565b6000806040838503121561198457600080fd5b61198d8361183f565b91506118b06020840161185b565b600080604083850312156119ae57600080fd5b6119b78361183f565b946020939093013593505050565b600060208083850312156119d857600080fd5b823567ffffffffffffffff808211156119f057600080fd5b818501915085601f830112611a0457600080fd5b813581811115611a1657611a16611e1e565b8060051b9150611a27848301611cb3565b8181528481019084860184860187018a1015611a4257600080fd5b600095505b83861015611a6c57611a588161183f565b835260019590950194918601918601611a47565b5098975050505050505050565b600060208284031215611a8b57600080fd5b610d688261185b565b600060208284031215611aa657600080fd5b8135610d6881611e34565b600060208284031215611ac357600080fd5b8151610d6881611e34565b600060208284031215611ae057600080fd5b813567ffffffffffffffff811115611af757600080fd5b8201601f81018413611b0857600080fd5b61117a848235602084016117e7565b600060208284031215611b2957600080fd5b5035919050565b60008151808452611b48816020860160208601611d46565b601f01601f19169290920160200192915050565b60008351611b6e818460208801611d46565b835190830190611b82818360208801611d46565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611bbe90830184611b30565b9695505050505050565b602081526000610d686020830184611b30565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611cdc57611cdc611e1e565b604052919050565b60008219821115611cf757611cf7611ddc565b500190565b600082611d0b57611d0b611df2565b500490565b6000816000190483118215151615611d2a57611d2a611ddc565b500290565b600082821015611d4157611d41611ddc565b500390565b60005b83811015611d61578181015183820152602001611d49565b83811115610c8e5750506000910152565b600181811c90821680611d8657607f821691505b60208210811415611da757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611dc157611dc1611ddc565b5060010190565b600082611dd757611dd7611df2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461080257600080fdfea26469706673582212202bced2aedabcecceadddd750dc78834fc8fee8ae1bf77598978c54535c8ab82164736f6c63430008070033

Deployed Bytecode Sourcemap

34556:1799:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22408:305;;;;;;;;;;-1:-1:-1;22408:305:0;;;;;:::i;:::-;;:::i;:::-;;;6646:14:1;;6639:22;6621:41;;6609:2;6594:18;22408:305:0;;;;;;;;34731:39;;;;;;;;;;;;;;;;;;;15868:25:1;;;15856:2;15841:18;34731:39:0;15722:177:1;23353:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24912:221::-;;;;;;;;;;-1:-1:-1;24912:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5944:32:1;;;5926:51;;5914:2;5899:18;24912:221:0;5780:203:1;24435:411:0;;;;;;;;;;-1:-1:-1;24435:411:0;;;;;:::i;:::-;;:::i;:::-;;34691:27;;;;;;;;;;;;;;;;25802:339;;;;;;;;;;-1:-1:-1;25802:339:0;;;;;:::i;:::-;;:::i;36246:106::-;;;;;;;;;;;;;:::i;26212:185::-;;;;;;;;;;-1:-1:-1;26212:185:0;;;;;:::i;:::-;;:::i;23047:239::-;;;;;;;;;;-1:-1:-1;23047:239:0;;;;;:::i;:::-;;:::i;34816:21::-;;;;;;;;;;;;;:::i;22777:208::-;;;;;;;;;;-1:-1:-1;22777:208:0;;;;;:::i;:::-;;:::i;14255:94::-;;;;;;;;;;;;;:::i;35514:308::-;;;;;;;;;;-1:-1:-1;35514:308:0;;;;;:::i;:::-;;:::i;13604:87::-;;;;;;;;;;-1:-1:-1;13650:7:0;13677:6;-1:-1:-1;;;;;13677:6:0;13604:87;;23522:104;;;;;;;;;;;;;:::i;35830:92::-;;;;;;;;;;-1:-1:-1;35830:92:0;;;;;:::i;:::-;;:::i;25205:295::-;;;;;;;;;;-1:-1:-1;25205:295:0;;;;;:::i;:::-;;:::i;35928:88::-;;;;;;;;;;-1:-1:-1;35928:88:0;;;;;:::i;:::-;;:::i;36142:96::-;;;;;;;;;;-1:-1:-1;36142:96:0;;;;;:::i;:::-;;:::i;26468:328::-;;;;;;;;;;-1:-1:-1;26468:328:0;;;;;:::i;:::-;;:::i;34777:30::-;;;;;;;;;;-1:-1:-1;34777:30:0;;;;;;;;23697:334;;;;;;;;;;-1:-1:-1;23697:334:0;;;;;:::i;:::-;;:::i;34899:607::-;;;;;;:::i;:::-;;:::i;25571:164::-;;;;;;;;;;-1:-1:-1;25571:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;25692:25:0;;;25668:4;25692:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25571:164;14504:192;;;;;;;;;;-1:-1:-1;14504:192:0;;;;;:::i;:::-;;:::i;22408:305::-;22510:4;-1:-1:-1;;;;;;22547:40:0;;-1:-1:-1;;;22547:40:0;;:105;;-1:-1:-1;;;;;;;22604:48:0;;-1:-1:-1;;;22604:48:0;22547:105;:158;;;-1:-1:-1;;;;;;;;;;15718:40:0;;;22669:36;22527:178;22408:305;-1:-1:-1;;22408:305:0:o;23353:100::-;23407:13;23440:5;23433:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23353:100;:::o;24912:221::-;24988:7;28395:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28395:16:0;25008:73;;;;-1:-1:-1;;;25008:73:0;;12107:2:1;25008:73:0;;;12089:21:1;12146:2;12126:18;;;12119:30;12185:34;12165:18;;;12158:62;-1:-1:-1;;;12236:18:1;;;12229:42;12288:19;;25008:73:0;;;;;;;;;-1:-1:-1;25101:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25101:24:0;;24912:221::o;24435:411::-;24516:13;24532:23;24547:7;24532:14;:23::i;:::-;24516:39;;24580:5;-1:-1:-1;;;;;24574:11:0;:2;-1:-1:-1;;;;;24574:11:0;;;24566:57;;;;-1:-1:-1;;;24566:57:0;;14057:2:1;24566:57:0;;;14039:21:1;14096:2;14076:18;;;14069:30;14135:34;14115:18;;;14108:62;-1:-1:-1;;;14186:18:1;;;14179:31;14227:19;;24566:57:0;13855:397:1;24566:57:0;824:10;-1:-1:-1;;;;;24658:21:0;;;;:62;;-1:-1:-1;24683:37:0;24700:5;824:10;25571:164;:::i;24683:37::-;24636:168;;;;-1:-1:-1;;;24636:168:0;;10149:2:1;24636:168:0;;;10131:21:1;10188:2;10168:18;;;10161:30;10227:34;10207:18;;;10200:62;10298:26;10278:18;;;10271:54;10342:19;;24636:168:0;9947:420:1;24636:168:0;24817:21;24826:2;24830:7;24817:8;:21::i;:::-;24505:341;24435:411;;:::o;25802:339::-;25997:41;824:10;26030:7;25997:18;:41::i;:::-;25989:103;;;;-1:-1:-1;;;25989:103:0;;;;;;;:::i;:::-;26105:28;26115:4;26121:2;26125:7;26105:9;:28::i;36246:106::-;13650:7;13677:6;-1:-1:-1;;;;;13677:6:0;824:10;13824:23;13816:68;;;;-1:-1:-1;;;13816:68:0;;;;;;;:::i;:::-;13650:7;13677:6;;36296:48:::1;::::0;-1:-1:-1;;;;;13677:6:0;;;;36322:21:::1;36296:48:::0;::::1;;;::::0;36322:21;;36296:48;13650:7;36296:48;36322:21;13677:6;36296:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;36246:106::o:0;26212:185::-;26350:39;26367:4;26373:2;26377:7;26350:39;;;;;;;;;;;;:16;:39::i;23047:239::-;23119:7;23155:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23155:16:0;23190:19;23182:73;;;;-1:-1:-1;;;23182:73:0;;10985:2:1;23182:73:0;;;10967:21:1;11024:2;11004:18;;;10997:30;11063:34;11043:18;;;11036:62;-1:-1:-1;;;11114:18:1;;;11107:39;11163:19;;23182:73:0;10783:405:1;34816:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22777:208::-;22849:7;-1:-1:-1;;;;;22877:19:0;;22869:74;;;;-1:-1:-1;;;22869:74:0;;10574:2:1;22869:74:0;;;10556:21:1;10613:2;10593:18;;;10586:30;10652:34;10632:18;;;10625:62;-1:-1:-1;;;10703:18:1;;;10696:40;10753:19;;22869:74:0;10372:406:1;22869:74:0;-1:-1:-1;;;;;;22961:16:0;;;;;:9;:16;;;;;;;22777:208::o;14255:94::-;13650:7;13677:6;-1:-1:-1;;;;;13677:6:0;824:10;13824:23;13816:68;;;;-1:-1:-1;;;13816:68:0;;;;;;;:::i;:::-;14320:21:::1;14338:1;14320:9;:21::i;:::-;14255:94::o:0;35514:308::-;13650:7;13677:6;-1:-1:-1;;;;;13677:6:0;824:10;13824:23;13816:68;;;;-1:-1:-1;;;13816:68:0;;;;;;;:::i;:::-;34674:4:::1;35609:8;:15;35595:11;;:29;;;;:::i;:::-;:42;;35587:77;;;::::0;-1:-1:-1;;;35587:77:0;;15229:2:1;35587:77:0::1;::::0;::::1;15211:21:1::0;15268:2;15248:18;;;15241:30;-1:-1:-1;;;15287:18:1;;;15280:52;15349:18;;35587:77:0::1;15027:346:1::0;35587:77:0::1;35679:6;35675:98;35695:8;:15;35691:1;:19;35675:98;;;35730:43;35740:8;35749:1;35740:11;;;;;;;;:::i;:::-;;;;;;;35771:1;35753:11;;35767:1;35753:15;;;;:::i;:::-;:19;;;;:::i;:::-;35730:9;:43::i;:::-;35712:3:::0;::::1;::::0;::::1;:::i;:::-;;;;35675:98;;;;35799:8;:15;35784:11;;:30;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;35514:308:0:o;23522:104::-;23578:13;23611:7;23604:14;;;;;:::i;35830:92::-;13650:7;13677:6;-1:-1:-1;;;;;13677:6:0;824:10;13824:23;13816:68;;;;-1:-1:-1;;;13816:68:0;;;;;;;:::i;:::-;35900:14;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;:::-;;35830:92:::0;:::o;25205:295::-;-1:-1:-1;;;;;25308:24:0;;824:10;25308:24;;25300:62;;;;-1:-1:-1;;;25300:62:0;;8687:2:1;25300:62:0;;;8669:21:1;8726:2;8706:18;;;8699:30;8765:27;8745:18;;;8738:55;8810:18;;25300:62:0;8485:349:1;25300:62:0;824:10;25375:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25375:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25375:53:0;;;;;;;;;;25444:48;;6621:41:1;;;25375:42:0;;824:10;25444:48;;6594:18:1;25444:48:0;;;;;;;25205:295;;:::o;35928:88::-;13650:7;13677:6;-1:-1:-1;;;;;13677:6:0;824:10;13824:23;13816:68;;;;-1:-1:-1;;;13816:68:0;;;;;;;:::i;:::-;35991:10:::1;:17:::0;;-1:-1:-1;;35991:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35928:88::o;36142:96::-;13650:7;13677:6;-1:-1:-1;;;;;13677:6:0;824:10;13824:23;13816:68;;;;-1:-1:-1;;;13816:68:0;;;;;;;:::i;:::-;36209:14:::1;:21:::0;36142:96::o;26468:328::-;26643:41;824:10;26676:7;26643:18;:41::i;:::-;26635:103;;;;-1:-1:-1;;;26635:103:0;;;;;;;:::i;:::-;26749:39;26763:4;26769:2;26773:7;26782:5;26749:13;:39::i;:::-;26468:328;;;;:::o;23697:334::-;28371:4;28395:16;;;:7;:16;;;;;;23770:13;;-1:-1:-1;;;;;28395:16:0;23796:76;;;;-1:-1:-1;;;23796:76:0;;13641:2:1;23796:76:0;;;13623:21:1;13680:2;13660:18;;;13653:30;13719:34;13699:18;;;13692:62;-1:-1:-1;;;13770:18:1;;;13763:45;13825:19;;23796:76:0;13439:411:1;23796:76:0;23885:21;23909:10;:8;:10::i;:::-;23885:34;;23961:1;23943:7;23937:21;:25;:86;;;;;;;;;;;;;;;;;23989:7;23998:18;:7;:16;:18::i;:::-;23972:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23937:86;23930:93;23697:334;-1:-1:-1;;;23697:334:0:o;34899:607::-;34967:1;34958:6;:10;34950:46;;;;-1:-1:-1;;;34950:46:0;;14877:2:1;34950:46:0;;;14859:21:1;14916:2;14896:18;;;14889:30;14955:25;14935:18;;;14928:53;14998:18;;34950:46:0;14675:347:1;34950:46:0;35025:2;35015:6;:12;;35007:40;;;;-1:-1:-1;;;35007:40:0;;9041:2:1;35007:40:0;;;9023:21:1;9080:2;9060:18;;;9053:30;-1:-1:-1;;;9099:18:1;;;9092:45;9154:18;;35007:40:0;8839:339:1;35007:40:0;34674:4;35080:6;35066:11;;:20;;;;:::i;:::-;:33;;35058:68;;;;-1:-1:-1;;;35058:68:0;;11395:2:1;35058:68:0;;;11377:21:1;11434:2;11414:18;;;11407:30;-1:-1:-1;;;11453:18:1;;;11446:52;11515:18;;35058:68:0;11193:346:1;35058:68:0;35158:19;35171:6;34631:10;35158:19;:::i;:::-;35145:9;:32;35137:67;;;;-1:-1:-1;;;35137:67:0;;9798:2:1;35137:67:0;;;9780:21:1;9837:2;9817:18;;;9810:30;-1:-1:-1;;;9856:18:1;;;9849:52;9918:18;;35137:67:0;9596:346:1;35137:67:0;35242:14;;35223:15;:33;;35215:66;;;;-1:-1:-1;;;35215:66:0;;12881:2:1;35215:66:0;;;12863:21:1;12920:2;12900:18;;;12893:30;-1:-1:-1;;;12939:18:1;;;12932:51;13000:18;;35215:66:0;12679:345:1;35215:66:0;35300:10;;;;:19;35292:47;;;;-1:-1:-1;;;35292:47:0;;15580:2:1;35292:47:0;;;15562:21:1;15619:2;15599:18;;;15592:30;-1:-1:-1;;;15638:18:1;;;15631:45;15693:18;;35292:47:0;15378:339:1;35292:47:0;35364:6;35360:88;35380:6;35376:1;:10;35360:88;;;35406:42;35416:10;35446:1;35428:11;;35442:1;35428:15;;;;:::i;35406:42::-;35388:3;;;;:::i;:::-;;;;35360:88;;;;35492:6;35477:11;;:21;;;;;;;:::i;14504:192::-;13650:7;13677:6;-1:-1:-1;;;;;13677:6:0;824:10;13824:23;13816:68;;;;-1:-1:-1;;;13816:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14593:22:0;::::1;14585:73;;;::::0;-1:-1:-1;;;14585:73:0;;7518:2:1;14585:73:0::1;::::0;::::1;7500:21:1::0;7557:2;7537:18;;;7530:30;7596:34;7576:18;;;7569:62;-1:-1:-1;;;7647:18:1;;;7640:36;7693:19;;14585:73:0::1;7316:402:1::0;14585:73:0::1;14669:19;14679:8;14669:9;:19::i;32288:174::-:0;32363:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32363:29:0;-1:-1:-1;;;;;32363:29:0;;;;;;;;:24;;32417:23;32363:24;32417:14;:23::i;:::-;-1:-1:-1;;;;;32408:46:0;;;;;;;;;;;32288:174;;:::o;28600:348::-;28693:4;28395:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28395:16:0;28710:73;;;;-1:-1:-1;;;28710:73:0;;9385:2:1;28710:73:0;;;9367:21:1;9424:2;9404:18;;;9397:30;9463:34;9443:18;;;9436:62;-1:-1:-1;;;9514:18:1;;;9507:42;9566:19;;28710:73:0;9183:408:1;28710:73:0;28794:13;28810:23;28825:7;28810:14;:23::i;:::-;28794:39;;28863:5;-1:-1:-1;;;;;28852:16:0;:7;-1:-1:-1;;;;;28852:16:0;;:51;;;;28896:7;-1:-1:-1;;;;;28872:31:0;:20;28884:7;28872:11;:20::i;:::-;-1:-1:-1;;;;;28872:31:0;;28852:51;:87;;;-1:-1:-1;;;;;;25692:25:0;;;25668:4;25692:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28907:32;28844:96;28600:348;-1:-1:-1;;;;28600:348:0:o;31592:578::-;31751:4;-1:-1:-1;;;;;31724:31:0;:23;31739:7;31724:14;:23::i;:::-;-1:-1:-1;;;;;31724:31:0;;31716:85;;;;-1:-1:-1;;;31716:85:0;;13231:2:1;31716:85:0;;;13213:21:1;13270:2;13250:18;;;13243:30;13309:34;13289:18;;;13282:62;-1:-1:-1;;;13360:18:1;;;13353:39;13409:19;;31716:85:0;13029:405:1;31716:85:0;-1:-1:-1;;;;;31820:16:0;;31812:65;;;;-1:-1:-1;;;31812:65:0;;8282:2:1;31812:65:0;;;8264:21:1;8321:2;8301:18;;;8294:30;8360:34;8340:18;;;8333:62;-1:-1:-1;;;8411:18:1;;;8404:34;8455:19;;31812:65:0;8080:400:1;31812:65:0;31994:29;32011:1;32015:7;31994:8;:29::i;:::-;-1:-1:-1;;;;;32036:15:0;;;;;;:9;:15;;;;;:20;;32055:1;;32036:15;:20;;32055:1;;32036:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32067:13:0;;;;;;:9;:13;;;;;:18;;32084:1;;32067:13;:18;;32084:1;;32067:18;:::i;:::-;;;;-1:-1:-1;;32096:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32096:21:0;-1:-1:-1;;;;;32096:21:0;;;;;;;;;32135:27;;32096:16;;32135:27;;;;;;;31592:578;;;:::o;14704:173::-;14760:16;14779:6;;-1:-1:-1;;;;;14796:17:0;;;-1:-1:-1;;;;;;14796:17:0;;;;;;14829:40;;14779:6;;;;;;;14829:40;;14760:16;14829:40;14749:128;14704:173;:::o;29290:110::-;29366:26;29376:2;29380:7;29366:26;;;;;;;;;;;;:9;:26::i;27678:315::-;27835:28;27845:4;27851:2;27855:7;27835:9;:28::i;:::-;27882:48;27905:4;27911:2;27915:7;27924:5;27882:22;:48::i;:::-;27874:111;;;;-1:-1:-1;;;27874:111:0;;;;;;;:::i;36028:108::-;36088:13;36121:7;36114:14;;;;;:::i;1209:723::-;1265:13;1486:10;1482:53;;-1:-1:-1;;1513:10:0;;;;;;;;;;;;-1:-1:-1;;;1513:10:0;;;;;1209:723::o;1482:53::-;1560:5;1545:12;1601:78;1608:9;;1601:78;;1634:8;;;;:::i;:::-;;-1:-1:-1;1657:10:0;;-1:-1:-1;1665:2:0;1657:10;;:::i;:::-;;;1601:78;;;1689:19;1721:6;1711:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1711:17:0;;1689:39;;1739:154;1746:10;;1739:154;;1773:11;1783:1;1773:11;;:::i;:::-;;-1:-1:-1;1842:10:0;1850:2;1842:5;:10;:::i;:::-;1829:24;;:2;:24;:::i;:::-;1816:39;;1799:6;1806;1799:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1799:56:0;;;;;;;;-1:-1:-1;1870:11:0;1879:2;1870:11;;:::i;:::-;;;1739:154;;29627:321;29757:18;29763:2;29767:7;29757:5;:18::i;:::-;29808:54;29839:1;29843:2;29847:7;29856:5;29808:22;:54::i;:::-;29786:154;;;;-1:-1:-1;;;29786:154:0;;;;;;;:::i;33027:799::-;33182:4;-1:-1:-1;;;;;33203:13:0;;3997:20;4045:8;33199:620;;33239:72;;-1:-1:-1;;;33239:72:0;;-1:-1:-1;;;;;33239:36:0;;;;;:72;;824:10;;33290:4;;33296:7;;33305:5;;33239:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33239:72:0;;;;;;;;-1:-1:-1;;33239:72:0;;;;;;;;;;;;:::i;:::-;;;33235:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33481:13:0;;33477:272;;33524:60;;-1:-1:-1;;;33524:60:0;;;;;;;:::i;33477:272::-;33699:6;33693:13;33684:6;33680:2;33676:15;33669:38;33235:529;-1:-1:-1;;;;;;33362:51:0;-1:-1:-1;;;33362:51:0;;-1:-1:-1;33355:58:0;;33199:620;-1:-1:-1;33803:4:0;33027:799;;;;;;:::o;30284:382::-;-1:-1:-1;;;;;30364:16:0;;30356:61;;;;-1:-1:-1;;;30356:61:0;;11746:2:1;30356:61:0;;;11728:21:1;;;11765:18;;;11758:30;11824:34;11804:18;;;11797:62;11876:18;;30356:61:0;11544:356:1;30356:61:0;28371:4;28395:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28395:16:0;:30;30428:58;;;;-1:-1:-1;;;30428:58:0;;7925:2:1;30428:58:0;;;7907:21:1;7964:2;7944:18;;;7937:30;8003;7983:18;;;7976:58;8051:18;;30428:58:0;7723:352:1;30428:58:0;-1:-1:-1;;;;;30557:13:0;;;;;;:9;:13;;;;;:18;;30574:1;;30557:13;:18;;30574:1;;30557:18;:::i;:::-;;;;-1:-1:-1;;30586:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30586:21:0;-1:-1:-1;;;;;30586:21:0;;;;;;;;30625:33;;30586:16;;;30625:33;;30586:16;;30625:33;30284:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;1984:18;1976:6;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:963::-;2830:6;2861:2;2904;2892:9;2883:7;2879:23;2875:32;2872:52;;;2920:1;2917;2910:12;2872:52;2960:9;2947:23;2989:18;3030:2;3022:6;3019:14;3016:34;;;3046:1;3043;3036:12;3016:34;3084:6;3073:9;3069:22;3059:32;;3129:7;3122:4;3118:2;3114:13;3110:27;3100:55;;3151:1;3148;3141:12;3100:55;3187:2;3174:16;3209:2;3205;3202:10;3199:36;;;3215:18;;:::i;:::-;3261:2;3258:1;3254:10;3244:20;;3284:28;3308:2;3304;3300:11;3284:28;:::i;:::-;3346:15;;;3377:12;;;;3409:11;;;3439;;;3435:20;;3432:33;-1:-1:-1;3429:53:1;;;3478:1;3475;3468:12;3429:53;3500:1;3491:10;;3510:169;3524:2;3521:1;3518:9;3510:169;;;3581:23;3600:3;3581:23;:::i;:::-;3569:36;;3542:1;3535:9;;;;;3625:12;;;;3657;;3510:169;;;-1:-1:-1;3698:5:1;2746:963;-1:-1:-1;;;;;;;;2746:963:1:o;3714:180::-;3770:6;3823:2;3811:9;3802:7;3798:23;3794:32;3791:52;;;3839:1;3836;3829:12;3791:52;3862:26;3878:9;3862:26;:::i;3899:245::-;3957:6;4010:2;3998:9;3989:7;3985:23;3981:32;3978:52;;;4026:1;4023;4016:12;3978:52;4065:9;4052:23;4084:30;4108:5;4084:30;:::i;4149:249::-;4218:6;4271:2;4259:9;4250:7;4246:23;4242:32;4239:52;;;4287:1;4284;4277:12;4239:52;4319:9;4313:16;4338:30;4362:5;4338:30;:::i;4403:450::-;4472:6;4525:2;4513:9;4504:7;4500:23;4496:32;4493:52;;;4541:1;4538;4531:12;4493:52;4581:9;4568:23;4614:18;4606:6;4603:30;4600:50;;;4646:1;4643;4636:12;4600:50;4669:22;;4722:4;4714:13;;4710:27;-1:-1:-1;4700:55:1;;4751:1;4748;4741:12;4700:55;4774:73;4839:7;4834:2;4821:16;4816:2;4812;4808:11;4774:73;:::i;4858:180::-;4917:6;4970:2;4958:9;4949:7;4945:23;4941:32;4938:52;;;4986:1;4983;4976:12;4938:52;-1:-1:-1;5009:23:1;;4858:180;-1:-1:-1;4858:180:1:o;5043:257::-;5084:3;5122:5;5116:12;5149:6;5144:3;5137:19;5165:63;5221:6;5214:4;5209:3;5205:14;5198:4;5191:5;5187:16;5165:63;:::i;:::-;5282:2;5261:15;-1:-1:-1;;5257:29:1;5248:39;;;;5289:4;5244:50;;5043:257;-1:-1:-1;;5043:257:1:o;5305:470::-;5484:3;5522:6;5516:13;5538:53;5584:6;5579:3;5572:4;5564:6;5560:17;5538:53;:::i;:::-;5654:13;;5613:16;;;;5676:57;5654:13;5613:16;5710:4;5698:17;;5676:57;:::i;:::-;5749:20;;5305:470;-1:-1:-1;;;;5305:470:1:o;5988:488::-;-1:-1:-1;;;;;6257:15:1;;;6239:34;;6309:15;;6304:2;6289:18;;6282:43;6356:2;6341:18;;6334:34;;;6404:3;6399:2;6384:18;;6377:31;;;6182:4;;6425:45;;6450:19;;6442:6;6425:45;:::i;:::-;6417:53;5988:488;-1:-1:-1;;;;;;5988:488:1:o;6673:219::-;6822:2;6811:9;6804:21;6785:4;6842:44;6882:2;6871:9;6867:18;6859:6;6842:44;:::i;6897:414::-;7099:2;7081:21;;;7138:2;7118:18;;;7111:30;7177:34;7172:2;7157:18;;7150:62;-1:-1:-1;;;7243:2:1;7228:18;;7221:48;7301:3;7286:19;;6897:414::o;12318:356::-;12520:2;12502:21;;;12539:18;;;12532:30;12598:34;12593:2;12578:18;;12571:62;12665:2;12650:18;;12318:356::o;14257:413::-;14459:2;14441:21;;;14498:2;14478:18;;;14471:30;14537:34;14532:2;14517:18;;14510:62;-1:-1:-1;;;14603:2:1;14588:18;;14581:47;14660:3;14645:19;;14257:413::o;15904:275::-;15975:2;15969:9;16040:2;16021:13;;-1:-1:-1;;16017:27:1;16005:40;;16075:18;16060:34;;16096:22;;;16057:62;16054:88;;;16122:18;;:::i;:::-;16158:2;16151:22;15904:275;;-1:-1:-1;15904:275:1:o;16184:128::-;16224:3;16255:1;16251:6;16248:1;16245:13;16242:39;;;16261:18;;:::i;:::-;-1:-1:-1;16297:9:1;;16184:128::o;16317:120::-;16357:1;16383;16373:35;;16388:18;;:::i;:::-;-1:-1:-1;16422:9:1;;16317:120::o;16442:168::-;16482:7;16548:1;16544;16540:6;16536:14;16533:1;16530:21;16525:1;16518:9;16511:17;16507:45;16504:71;;;16555:18;;:::i;:::-;-1:-1:-1;16595:9:1;;16442:168::o;16615:125::-;16655:4;16683:1;16680;16677:8;16674:34;;;16688:18;;:::i;:::-;-1:-1:-1;16725:9:1;;16615:125::o;16745:258::-;16817:1;16827:113;16841:6;16838:1;16835:13;16827:113;;;16917:11;;;16911:18;16898:11;;;16891:39;16863:2;16856:10;16827:113;;;16958:6;16955:1;16952:13;16949:48;;;-1:-1:-1;;16993:1:1;16975:16;;16968:27;16745:258::o;17008:380::-;17087:1;17083:12;;;;17130;;;17151:61;;17205:4;17197:6;17193:17;17183:27;;17151:61;17258:2;17250:6;17247:14;17227:18;17224:38;17221:161;;;17304:10;17299:3;17295:20;17292:1;17285:31;17339:4;17336:1;17329:15;17367:4;17364:1;17357:15;17221:161;;17008:380;;;:::o;17393:135::-;17432:3;-1:-1:-1;;17453:17:1;;17450:43;;;17473:18;;:::i;:::-;-1:-1:-1;17520:1:1;17509:13;;17393:135::o;17533:112::-;17565:1;17591;17581:35;;17596:18;;:::i;:::-;-1:-1:-1;17630:9:1;;17533:112::o;17650:127::-;17711:10;17706:3;17702:20;17699:1;17692:31;17742:4;17739:1;17732:15;17766:4;17763:1;17756:15;17782:127;17843:10;17838:3;17834:20;17831:1;17824:31;17874:4;17871:1;17864:15;17898:4;17895:1;17888:15;17914:127;17975:10;17970:3;17966:20;17963:1;17956:31;18006:4;18003:1;17996:15;18030:4;18027:1;18020:15;18046:127;18107:10;18102:3;18098:20;18095:1;18088:31;18138:4;18135:1;18128:15;18162:4;18159:1;18152:15;18178:131;-1:-1:-1;;;;;;18252:32:1;;18242:43;;18232:71;;18299:1;18296;18289:12

Swarm Source

ipfs://2bced2aedabcecceadddd750dc78834fc8fee8ae1bf77598978c54535c8ab821
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.