ETH Price: $3,281.87 (+0.07%)
Gas: 5 Gwei

Token

The Sleepless Mine Society by Sleepless Workshop (SMS)
 

Overview

Max Total Supply

943 SMS

Holders

436

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SMS
0xf7ede67c3224b5a405fdfc96293d24b59cb7abcc
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:
SleeplessMineSociety

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-11-17
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

//Developer Info:
//Written by Blockchainguy.net
//Email: [email protected]
//tg: @sherazmanzoor

/**
 * @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 SleeplessMineSociety is Ownable, ERC721 {
    uint constant tokenPrice = 0.08 ether;
    uint public  maxSupply = 4000;
    
    uint public totalSupply = 0;
    
    uint public sale_startTime = 1637280000;
    uint public presale_startTime = 1637193600;
    uint public reveal_time = 1637452800;
    bool public pause_sale = false;
    
    string public reveal_image = "https://gateway.pinata.cloud/ipfs/QmXHcyXiKtbYSLjHWoYqhhpZnfghSye1UaLRxuAAtXh8qw/";

    string public baseURI = "https://www.thesleeplessminesociety.com/api/nft/";
    mapping(address => bool) private presaleList;
    mapping(address => bool) private WL_presaleList1;
    mapping(address => bool) private OG_presaleList;
    constructor() ERC721("The Sleepless Mine Society by Sleepless Workshop", "SMS"){}
    
   function buy(uint _count) public payable{
        require(_count > 0, "mint at least one token");
        require(_count <= 5, "Max 5 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.");
        require(balanceOf(msg.sender) + _count <= 5, "Max 5 Nfts Per Wallet Allowed.");
        
        for(uint i = 0; i < _count; i++)
            _safeMint(msg.sender, totalSupply + 1 + i);
            
            totalSupply += _count;
    }
    
   function buy_PresaleBAYC(uint _count) public payable{
        require(_count > 0, "mint at least one token");
        require(_count <= 2, "Max 2 Allowed.");
        require(totalSupply + _count <= maxSupply, "Not enough tokens left");
        require(msg.value == tokenPrice * _count, "incorrect ether amount");
        require(block.timestamp >= presale_startTime,"Pre Sale not Started Yet.");
        require(block.timestamp < sale_startTime,"Pre Sale Ended.");
        require(pause_sale == false, "Sale is Paused.");
        require(isWhitelistedBAYC(), "You are not whitelisted.");
        require(balanceOf(msg.sender) < 1, "You have already Minted in Presale.");
        
        for(uint i = 0; i < _count; i++)
            _safeMint(msg.sender, totalSupply + 1 + i);
            
            totalSupply += _count;
    }
    
   function buy_Presale_WL(uint _count) public payable{
        require(_count > 0, "mint at least one token");
        require(_count <= 1, "Max 1 Allowed.");
        require(totalSupply + _count <= maxSupply, "Not enough tokens left");
        require(msg.value == tokenPrice * _count, "incorrect ether amount");
        require(block.timestamp >= presale_startTime,"Pre Sale not Started Yet.");
        require(block.timestamp < sale_startTime,"Pre Sale Ended.");
        require(pause_sale == false, "Sale is Paused.");
        require(isWhitelistedWL(), "You are not whitelisted.");
        require(balanceOf(msg.sender) < 1, "You have already Minted in Presale.");
        
        for(uint i = 0; i < _count; i++)
            _safeMint(msg.sender, totalSupply + 1 + i);
            
            totalSupply += _count;
    }
    
   function buy_Presale_OG(uint _count) public payable{
        require(_count > 0, "mint at least one token");
        require(_count <= 1, "Max 5 Allowed.");
        require(totalSupply + _count <= maxSupply, "Not enough tokens left");
        require(msg.value == tokenPrice * _count, "incorrect ether amount");
        require(block.timestamp >= presale_startTime,"Pre Sale not Started Yet.");
        require(block.timestamp < sale_startTime,"Pre Sale Ended.");
        require(pause_sale == false, "Sale is Paused.");
        require(isWhitelistedOG(), "You are not whitelisted.");
        require(balanceOf(msg.sender) < 1, "You have already Minted in Presale.");
        
        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 addPresaleListBAYC(address[] memory _wallets) public onlyOwner{
        for(uint i; i < _wallets.length; i++)
            presaleList[_wallets[i]] = true;
    }
    
    function isWhitelistedBAYC() public view returns(bool){
        return presaleList[msg.sender];
    }
    function addWL_presaleList1(address[] memory _wallets) public onlyOwner{
        for(uint i; i < _wallets.length; i++)
            WL_presaleList1[_wallets[i]] = true;
    }
    
    function isWhitelistedWL() public view returns(bool){
        return WL_presaleList1[msg.sender];
    }
    function addOG_presaleList(address[] memory _wallets) public onlyOwner{
        for(uint i; i < _wallets.length; i++)
            OG_presaleList[_wallets[i]] = true;
    }
    
    function isWhitelistedOG() public view returns(bool){
        return OG_presaleList[msg.sender];
    }
    
    function setBaseUri(string memory _uri) external onlyOwner {
        baseURI = _uri;
    }
    function setPauseSale(bool temp) external onlyOwner {
        pause_sale = temp;
    }
    function setRevealTime(uint temp) external onlyOwner {
        reveal_time = temp;
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    function set_start_time(uint256 time) external onlyOwner{
        sale_startTime = time;
    }
    function set_presale_time(uint256 time) external onlyOwner{
        presale_startTime = time;
    }
    function set_max_supply(uint256 _max) external onlyOwner{
        maxSupply = _max;
    }
    function set_reveal_image(string memory _uri) external onlyOwner{
        reveal_image = _uri;
    }
    
    function tokenURI(uint tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        
        if(block.timestamp < reveal_time ){
            return reveal_image;
        }
        
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId)) : "";
    }
    function isPresalestarted() external view returns (bool){
        if(block.timestamp >= presale_startTime && block.timestamp < sale_startTime){
            return true;
        }
        return false;
    }
    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":"_wallets","type":"address[]"}],"name":"addOG_presaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"addPresaleListBAYC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"addWL_presaleList1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"_count","type":"uint256"}],"name":"buy_PresaleBAYC","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"buy_Presale_OG","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"buy_Presale_WL","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":"isPresalestarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistedBAYC","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistedOG","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistedWL","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"presale_startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal_image","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reveal_time","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":"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":"temp","type":"uint256"}],"name":"setRevealTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"set_max_supply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"set_presale_time","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"set_reveal_image","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"}]

610fa06007556000600855636196e9006009556361959780600a556361998c00600b55600c805460ff19169055610100604052605160808181529062002ca660a03980516200005791600d916020909101906200015a565b5060405180606001604052806030815260200162002c766030913980516200008891600e916020909101906200015a565b503480156200009657600080fd5b5060405180606001604052806030815260200162002cf760309139604080518082019091526003815262534d5360e81b6020820152620000d6336200010a565b8151620000eb9060019060208501906200015a565b508051620001019060029060208401906200015a565b5050506200023d565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001689062000200565b90600052602060002090601f0160209004810192826200018c5760008555620001d7565b82601f10620001a757805160ff1916838001178555620001d7565b82800160010185558215620001d7579182015b82811115620001d7578251825591602001919060010190620001ba565b50620001e5929150620001e9565b5090565b5b80821115620001e55760008155600101620001ea565b600181811c908216806200021557607f821691505b602082108114156200023757634e487b7160e01b600052602260045260246000fd5b50919050565b612a29806200024d6000396000f3fe6080604052600436106102675760003560e01c80638a938f2f11610144578063c87b56dd116100b6578063d96a094a1161007a578063d96a094a146106ee578063e1b775d214610701578063e985e9c514610717578063ee95b9e914610760578063f2fde38b14610780578063f5b66cb4146107a057600080fd5b8063c87b56dd14610660578063c8b9ed9714610680578063d5abeb01146106a5578063d760382e146106bb578063d790dea3146106ce57600080fd5b8063aa29e23f11610108578063aa29e23f146105a1578063b27b1a6d146105c1578063b3413bf2146105e1578063b88d4fde14610606578063c1580cb314610626578063c1e285071461064057600080fd5b80638a938f2f1461050e5780638da5cb5b1461052e57806395d89b411461054c578063a0bcfc7f14610561578063a22cb4651461058157600080fd5b806342842e0e116101dd5780636352211e116101a15780636352211e1461046f5780636c0360eb1461048f57806370a08231146104a4578063715018a6146104c4578063744d1f63146104d95780637c8255db146104ee57600080fd5b806342842e0e146103d957806345624524146103f95780634e7a3ec414610419578063533d80e71461043957806358f9f49c1461044f57600080fd5b806318160ddd1161022f57806318160ddd1461034157806323b872dd14610357578063256541ce146103775780633b7af2f61461038a5780633ccfd60b146103af5780633cfa79b4146103c457600080fd5b806301ffc9a71461026c57806303158dde146102a157806306fdde03146102c5578063081812fc146102e7578063095ea7b31461031f575b600080fd5b34801561027857600080fd5b5061028c61028736600461247c565b6107b3565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b760095481565b604051908152602001610298565b3480156102d157600080fd5b506102da610805565b6040516102989190612641565b3480156102f357600080fd5b506103076103023660046124ff565b610897565b6040516001600160a01b039091168152602001610298565b34801561032b57600080fd5b5061033f61033a366004612383565b610931565b005b34801561034d57600080fd5b506102b760085481565b34801561036357600080fd5b5061033f6103723660046122a1565b610a47565b61033f6103853660046124ff565b610a78565b34801561039657600080fd5b50336000908152600f602052604090205460ff1661028c565b3480156103bb57600080fd5b5061033f610c51565b3480156103d057600080fd5b5061028c610cb8565b3480156103e557600080fd5b5061033f6103f43660046122a1565b610cde565b34801561040557600080fd5b5061033f6104143660046123ad565b610cf9565b34801561042557600080fd5b5061033f6104343660046123ad565b610d8f565b34801561044557600080fd5b506102b7600a5481565b34801561045b57600080fd5b5061033f61046a3660046123ad565b610e21565b34801561047b57600080fd5b5061030761048a3660046124ff565b610eb3565b34801561049b57600080fd5b506102da610f2a565b3480156104b057600080fd5b506102b76104bf36600461224c565b610fb8565b3480156104d057600080fd5b5061033f61103f565b3480156104e557600080fd5b506102da611075565b3480156104fa57600080fd5b5061033f6105093660046123ad565b611082565b34801561051a57600080fd5b5061033f6105293660046124ff565b611164565b34801561053a57600080fd5b506000546001600160a01b0316610307565b34801561055857600080fd5b506102da611193565b34801561056d57600080fd5b5061033f61057c3660046124b6565b6111a2565b34801561058d57600080fd5b5061033f61059c366004612359565b6111df565b3480156105ad57600080fd5b5061033f6105bc366004612461565b6112a4565b3480156105cd57600080fd5b5061033f6105dc3660046124ff565b6112e1565b3480156105ed57600080fd5b503360009081526010602052604090205460ff1661028c565b34801561061257600080fd5b5061033f6106213660046122dd565b611310565b34801561063257600080fd5b50600c5461028c9060ff1681565b34801561064c57600080fd5b5061033f61065b3660046124ff565b611348565b34801561066c57600080fd5b506102da61067b3660046124ff565b611377565b34801561068c57600080fd5b503360009081526011602052604090205460ff1661028c565b3480156106b157600080fd5b506102b760075481565b61033f6106c93660046124ff565b6114e6565b3480156106da57600080fd5b5061033f6106e93660046124b6565b611695565b61033f6106fc3660046124ff565b6116d2565b34801561070d57600080fd5b506102b7600b5481565b34801561072357600080fd5b5061028c61073236600461226e565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561076c57600080fd5b5061033f61077b3660046124ff565b611895565b34801561078c57600080fd5b5061033f61079b36600461224c565b6118c4565b61033f6107ae3660046124ff565b61195c565b60006001600160e01b031982166380ac58cd60e01b14806107e457506001600160e01b03198216635b5e139f60e01b145b806107ff57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461081490612945565b80601f016020809104026020016040519081016040528092919081815260200182805461084090612945565b801561088d5780601f106108625761010080835404028352916020019161088d565b820191906000526020600020905b81548152906001019060200180831161087057829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166109155760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061093c82610eb3565b9050806001600160a01b0316836001600160a01b031614156109aa5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161090c565b336001600160a01b03821614806109c657506109c68133610732565b610a385760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161090c565b610a428383611b0b565b505050565b610a513382611b79565b610a6d5760405162461bcd60e51b815260040161090c90612815565b610a42838383611c70565b60008111610a985760405162461bcd60e51b815260040161090c90612866565b6001811115610ada5760405162461bcd60e51b815260206004820152600e60248201526d26b0bc10189020b63637bbb2b21760911b604482015260640161090c565b60075481600854610aeb91906128f7565b1115610b095760405162461bcd60e51b815260040161090c9061270d565b610b1b8167011c37937e08000061290f565b3414610b395760405162461bcd60e51b815260040161090c906126a6565b600a54421015610b5b5760405162461bcd60e51b815260040161090c906126d6565b6009544210610b7c5760405162461bcd60e51b815260040161090c906127ec565b600c5460ff1615610b9f5760405162461bcd60e51b815260040161090c9061289d565b3360009081526010602052604090205460ff16610bce5760405162461bcd60e51b815260040161090c906127b5565b6001610bd933610fb8565b10610bf65760405162461bcd60e51b815260040161090c9061273d565b60005b81811015610c3657610c2433826008546001610c1591906128f7565b610c1f91906128f7565b611e10565b80610c2e81612980565b915050610bf9565b508060086000828254610c4991906128f7565b909155505050565b6000546001600160a01b03163314610c7b5760405162461bcd60e51b815260040161090c90612780565b600080546040516001600160a01b03909116914780156108fc02929091818181858888f19350505050158015610cb5573d6000803e3d6000fd5b50565b6000600a544210158015610ccd575060095442105b15610cd85750600190565b50600090565b610a4283838360405180602001604052806000815250611310565b6000546001600160a01b03163314610d235760405162461bcd60e51b815260040161090c90612780565b60005b8151811015610d8b57600160106000848481518110610d4757610d476129b1565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610d8381612980565b915050610d26565b5050565b6000546001600160a01b03163314610db95760405162461bcd60e51b815260040161090c90612780565b60005b8151811015610d8b576001600f6000848481518110610ddd57610ddd6129b1565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610e1981612980565b915050610dbc565b6000546001600160a01b03163314610e4b5760405162461bcd60e51b815260040161090c90612780565b60005b8151811015610d8b57600160116000848481518110610e6f57610e6f6129b1565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610eab81612980565b915050610e4e565b6000818152600360205260408120546001600160a01b0316806107ff5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161090c565b600e8054610f3790612945565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6390612945565b8015610fb05780601f10610f8557610100808354040283529160200191610fb0565b820191906000526020600020905b815481529060010190602001808311610f9357829003601f168201915b505050505081565b60006001600160a01b0382166110235760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161090c565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b031633146110695760405162461bcd60e51b815260040161090c90612780565b6110736000611e2a565b565b600d8054610f3790612945565b6000546001600160a01b031633146110ac5760405162461bcd60e51b815260040161090c90612780565b60075481516008546110be91906128f7565b11156111055760405162461bcd60e51b81526020600482015260166024820152751b9bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604482015260640161090c565b60005b81518110156111505761113e828281518110611126576111266129b1565b6020026020010151826008546001610c1591906128f7565b8061114881612980565b915050611108565b50805160086000828254610c4991906128f7565b6000546001600160a01b0316331461118e5760405162461bcd60e51b815260040161090c90612780565b600755565b60606002805461081490612945565b6000546001600160a01b031633146111cc5760405162461bcd60e51b815260040161090c90612780565b8051610d8b90600e90602084019061212f565b6001600160a01b0382163314156112385760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161090c565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146112ce5760405162461bcd60e51b815260040161090c90612780565b600c805460ff1916911515919091179055565b6000546001600160a01b0316331461130b5760405162461bcd60e51b815260040161090c90612780565b600955565b61131a3383611b79565b6113365760405162461bcd60e51b815260040161090c90612815565b61134284848484611e7a565b50505050565b6000546001600160a01b031633146113725760405162461bcd60e51b815260040161090c90612780565b600b55565b6000818152600360205260409020546060906001600160a01b03166113f65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161090c565b600b5442101561149257600d805461140d90612945565b80601f016020809104026020016040519081016040528092919081815260200182805461143990612945565b80156114865780601f1061145b57610100808354040283529160200191611486565b820191906000526020600020905b81548152906001019060200180831161146957829003601f168201915b50505050509050919050565b6000600e80546114a190612945565b9050116114bd57604051806020016040528060008152506107ff565b600e826040516020016114d1929190612565565b60405160208183030381529060405292915050565b600081116115065760405162461bcd60e51b815260040161090c90612866565b60028111156115485760405162461bcd60e51b815260206004820152600e60248201526d26b0bc10191020b63637bbb2b21760911b604482015260640161090c565b6007548160085461155991906128f7565b11156115775760405162461bcd60e51b815260040161090c9061270d565b6115898167011c37937e08000061290f565b34146115a75760405162461bcd60e51b815260040161090c906126a6565b600a544210156115c95760405162461bcd60e51b815260040161090c906126d6565b60095442106115ea5760405162461bcd60e51b815260040161090c906127ec565b600c5460ff161561160d5760405162461bcd60e51b815260040161090c9061289d565b336000908152600f602052604090205460ff1661163c5760405162461bcd60e51b815260040161090c906127b5565b600161164733610fb8565b106116645760405162461bcd60e51b815260040161090c9061273d565b60005b81811015610c365761168333826008546001610c1591906128f7565b8061168d81612980565b915050611667565b6000546001600160a01b031633146116bf5760405162461bcd60e51b815260040161090c90612780565b8051610d8b90600d90602084019061212f565b600081116116f25760405162461bcd60e51b815260040161090c90612866565b60058111156117345760405162461bcd60e51b815260206004820152600e60248201526d26b0bc101a9020b63637bbb2b21760911b604482015260640161090c565b6007548160085461174591906128f7565b11156117635760405162461bcd60e51b815260040161090c9061270d565b6117758167011c37937e08000061290f565b34146117935760405162461bcd60e51b815260040161090c906126a6565b6009544210156117dd5760405162461bcd60e51b815260206004820152601560248201527429b0b632903737ba1029ba30b93a32b2102cb2ba1760591b604482015260640161090c565b600c5460ff16156118005760405162461bcd60e51b815260040161090c9061289d565b60058161180c33610fb8565b61181691906128f7565b11156118645760405162461bcd60e51b815260206004820152601e60248201527f4d61782035204e667473205065722057616c6c657420416c6c6f7765642e0000604482015260640161090c565b60005b81811015610c365761188333826008546001610c1591906128f7565b8061188d81612980565b915050611867565b6000546001600160a01b031633146118bf5760405162461bcd60e51b815260040161090c90612780565b600a55565b6000546001600160a01b031633146118ee5760405162461bcd60e51b815260040161090c90612780565b6001600160a01b0381166119535760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161090c565b610cb581611e2a565b6000811161197c5760405162461bcd60e51b815260040161090c90612866565b60018111156119be5760405162461bcd60e51b815260206004820152600e60248201526d26b0bc101a9020b63637bbb2b21760911b604482015260640161090c565b600754816008546119cf91906128f7565b11156119ed5760405162461bcd60e51b815260040161090c9061270d565b6119ff8167011c37937e08000061290f565b3414611a1d5760405162461bcd60e51b815260040161090c906126a6565b600a54421015611a3f5760405162461bcd60e51b815260040161090c906126d6565b6009544210611a605760405162461bcd60e51b815260040161090c906127ec565b600c5460ff1615611a835760405162461bcd60e51b815260040161090c9061289d565b3360009081526011602052604090205460ff16611ab25760405162461bcd60e51b815260040161090c906127b5565b6001611abd33610fb8565b10611ada5760405162461bcd60e51b815260040161090c9061273d565b60005b81811015610c3657611af933826008546001610c1591906128f7565b80611b0381612980565b915050611add565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b4082610eb3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b0316611bf25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161090c565b6000611bfd83610eb3565b9050806001600160a01b0316846001600160a01b03161480611c385750836001600160a01b0316611c2d84610897565b6001600160a01b0316145b80611c6857506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c8382610eb3565b6001600160a01b031614611ceb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161090c565b6001600160a01b038216611d4d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161090c565b611d58600082611b0b565b6001600160a01b0383166000908152600460205260408120805460019290611d8190849061292e565b90915550506001600160a01b0382166000908152600460205260408120805460019290611daf9084906128f7565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610d8b828260405180602001604052806000815250611ead565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611e85848484611c70565b611e9184848484611ee0565b6113425760405162461bcd60e51b815260040161090c90612654565b611eb78383611fed565b611ec46000848484611ee0565b610a425760405162461bcd60e51b815260040161090c90612654565b60006001600160a01b0384163b15611fe257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f24903390899088908890600401612604565b602060405180830381600087803b158015611f3e57600080fd5b505af1925050508015611f6e575060408051601f3d908101601f19168201909252611f6b91810190612499565b60015b611fc8573d808015611f9c576040519150601f19603f3d011682016040523d82523d6000602084013e611fa1565b606091505b508051611fc05760405162461bcd60e51b815260040161090c90612654565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c68565b506001949350505050565b6001600160a01b0382166120435760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161090c565b6000818152600360205260409020546001600160a01b0316156120a85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161090c565b6001600160a01b03821660009081526004602052604081208054600192906120d19084906128f7565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461213b90612945565b90600052602060002090601f01602090048101928261215d57600085556121a3565b82601f1061217657805160ff19168380011785556121a3565b828001600101855582156121a3579182015b828111156121a3578251825591602001919060010190612188565b506121af9291506121b3565b5090565b5b808211156121af57600081556001016121b4565b600067ffffffffffffffff8311156121e2576121e26129c7565b6121f5601f8401601f19166020016128c6565b905082815283838301111561220957600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461223757600080fd5b919050565b8035801515811461223757600080fd5b60006020828403121561225e57600080fd5b61226782612220565b9392505050565b6000806040838503121561228157600080fd5b61228a83612220565b915061229860208401612220565b90509250929050565b6000806000606084860312156122b657600080fd5b6122bf84612220565b92506122cd60208501612220565b9150604084013590509250925092565b600080600080608085870312156122f357600080fd5b6122fc85612220565b935061230a60208601612220565b925060408501359150606085013567ffffffffffffffff81111561232d57600080fd5b8501601f8101871361233e57600080fd5b61234d878235602084016121c8565b91505092959194509250565b6000806040838503121561236c57600080fd5b61237583612220565b91506122986020840161223c565b6000806040838503121561239657600080fd5b61239f83612220565b946020939093013593505050565b600060208083850312156123c057600080fd5b823567ffffffffffffffff808211156123d857600080fd5b818501915085601f8301126123ec57600080fd5b8135818111156123fe576123fe6129c7565b8060051b915061240f8483016128c6565b8181528481019084860184860187018a101561242a57600080fd5b600095505b838610156124545761244081612220565b83526001959095019491860191860161242f565b5098975050505050505050565b60006020828403121561247357600080fd5b6122678261223c565b60006020828403121561248e57600080fd5b8135612267816129dd565b6000602082840312156124ab57600080fd5b8151612267816129dd565b6000602082840312156124c857600080fd5b813567ffffffffffffffff8111156124df57600080fd5b8201601f810184136124f057600080fd5b611c68848235602084016121c8565b60006020828403121561251157600080fd5b5035919050565b6000815180845260005b8181101561253e57602081850181015186830182015201612522565b81811115612550576000602083870101525b50601f01601f19169290920160200192915050565b600080845481600182811c91508083168061258157607f831692505b60208084108214156125a157634e487b7160e01b86526022600452602486fd5b8180156125b557600181146125c6576125f3565b60ff198616895284890196506125f3565b60008b81526020902060005b868110156125eb5781548b8201529085019083016125d2565b505084890196505b509785525050509301949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061263790830184612518565b9695505050505050565b6020815260006122676020830184612518565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601690820152751a5b98dbdc9c9958dd08195d1a195c88185b5bdd5b9d60521b604082015260600190565b60208082526019908201527f5072652053616c65206e6f742053746172746564205965742e00000000000000604082015260600190565b602080825260169082015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604082015260600190565b60208082526023908201527f596f75206861766520616c7265616479204d696e74656420696e20507265736160408201526236329760e91b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526018908201527f596f7520617265206e6f742077686974656c69737465642e0000000000000000604082015260600190565b6020808252600f908201526e2839329029b0b6329022b73232b21760891b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526017908201527f6d696e74206174206c65617374206f6e6520746f6b656e000000000000000000604082015260600190565b6020808252600f908201526e29b0b6329034b9902830bab9b2b21760891b604082015260600190565b604051601f8201601f1916810167ffffffffffffffff811182821017156128ef576128ef6129c7565b604052919050565b6000821982111561290a5761290a61299b565b500190565b60008160001904831182151516156129295761292961299b565b500290565b6000828210156129405761294061299b565b500390565b600181811c9082168061295957607f821691505b6020821081141561297a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129945761299461299b565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cb557600080fdfea264697066735822122024157876fd9936da72e5d025c912968f2db132db4b0e560cebb8a5e111364b5264736f6c6343000807003368747470733a2f2f7777772e746865736c6565706c6573736d696e65736f63696574792e636f6d2f6170692f6e66742f68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5848637958694b746259534c6a48576f59716868705a6e6667685379653155614c52787541417458683871772f54686520536c6565706c657373204d696e6520536f636965747920627920536c6565706c65737320576f726b73686f70

Deployed Bytecode

0x6080604052600436106102675760003560e01c80638a938f2f11610144578063c87b56dd116100b6578063d96a094a1161007a578063d96a094a146106ee578063e1b775d214610701578063e985e9c514610717578063ee95b9e914610760578063f2fde38b14610780578063f5b66cb4146107a057600080fd5b8063c87b56dd14610660578063c8b9ed9714610680578063d5abeb01146106a5578063d760382e146106bb578063d790dea3146106ce57600080fd5b8063aa29e23f11610108578063aa29e23f146105a1578063b27b1a6d146105c1578063b3413bf2146105e1578063b88d4fde14610606578063c1580cb314610626578063c1e285071461064057600080fd5b80638a938f2f1461050e5780638da5cb5b1461052e57806395d89b411461054c578063a0bcfc7f14610561578063a22cb4651461058157600080fd5b806342842e0e116101dd5780636352211e116101a15780636352211e1461046f5780636c0360eb1461048f57806370a08231146104a4578063715018a6146104c4578063744d1f63146104d95780637c8255db146104ee57600080fd5b806342842e0e146103d957806345624524146103f95780634e7a3ec414610419578063533d80e71461043957806358f9f49c1461044f57600080fd5b806318160ddd1161022f57806318160ddd1461034157806323b872dd14610357578063256541ce146103775780633b7af2f61461038a5780633ccfd60b146103af5780633cfa79b4146103c457600080fd5b806301ffc9a71461026c57806303158dde146102a157806306fdde03146102c5578063081812fc146102e7578063095ea7b31461031f575b600080fd5b34801561027857600080fd5b5061028c61028736600461247c565b6107b3565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b760095481565b604051908152602001610298565b3480156102d157600080fd5b506102da610805565b6040516102989190612641565b3480156102f357600080fd5b506103076103023660046124ff565b610897565b6040516001600160a01b039091168152602001610298565b34801561032b57600080fd5b5061033f61033a366004612383565b610931565b005b34801561034d57600080fd5b506102b760085481565b34801561036357600080fd5b5061033f6103723660046122a1565b610a47565b61033f6103853660046124ff565b610a78565b34801561039657600080fd5b50336000908152600f602052604090205460ff1661028c565b3480156103bb57600080fd5b5061033f610c51565b3480156103d057600080fd5b5061028c610cb8565b3480156103e557600080fd5b5061033f6103f43660046122a1565b610cde565b34801561040557600080fd5b5061033f6104143660046123ad565b610cf9565b34801561042557600080fd5b5061033f6104343660046123ad565b610d8f565b34801561044557600080fd5b506102b7600a5481565b34801561045b57600080fd5b5061033f61046a3660046123ad565b610e21565b34801561047b57600080fd5b5061030761048a3660046124ff565b610eb3565b34801561049b57600080fd5b506102da610f2a565b3480156104b057600080fd5b506102b76104bf36600461224c565b610fb8565b3480156104d057600080fd5b5061033f61103f565b3480156104e557600080fd5b506102da611075565b3480156104fa57600080fd5b5061033f6105093660046123ad565b611082565b34801561051a57600080fd5b5061033f6105293660046124ff565b611164565b34801561053a57600080fd5b506000546001600160a01b0316610307565b34801561055857600080fd5b506102da611193565b34801561056d57600080fd5b5061033f61057c3660046124b6565b6111a2565b34801561058d57600080fd5b5061033f61059c366004612359565b6111df565b3480156105ad57600080fd5b5061033f6105bc366004612461565b6112a4565b3480156105cd57600080fd5b5061033f6105dc3660046124ff565b6112e1565b3480156105ed57600080fd5b503360009081526010602052604090205460ff1661028c565b34801561061257600080fd5b5061033f6106213660046122dd565b611310565b34801561063257600080fd5b50600c5461028c9060ff1681565b34801561064c57600080fd5b5061033f61065b3660046124ff565b611348565b34801561066c57600080fd5b506102da61067b3660046124ff565b611377565b34801561068c57600080fd5b503360009081526011602052604090205460ff1661028c565b3480156106b157600080fd5b506102b760075481565b61033f6106c93660046124ff565b6114e6565b3480156106da57600080fd5b5061033f6106e93660046124b6565b611695565b61033f6106fc3660046124ff565b6116d2565b34801561070d57600080fd5b506102b7600b5481565b34801561072357600080fd5b5061028c61073236600461226e565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561076c57600080fd5b5061033f61077b3660046124ff565b611895565b34801561078c57600080fd5b5061033f61079b36600461224c565b6118c4565b61033f6107ae3660046124ff565b61195c565b60006001600160e01b031982166380ac58cd60e01b14806107e457506001600160e01b03198216635b5e139f60e01b145b806107ff57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461081490612945565b80601f016020809104026020016040519081016040528092919081815260200182805461084090612945565b801561088d5780601f106108625761010080835404028352916020019161088d565b820191906000526020600020905b81548152906001019060200180831161087057829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166109155760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061093c82610eb3565b9050806001600160a01b0316836001600160a01b031614156109aa5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161090c565b336001600160a01b03821614806109c657506109c68133610732565b610a385760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161090c565b610a428383611b0b565b505050565b610a513382611b79565b610a6d5760405162461bcd60e51b815260040161090c90612815565b610a42838383611c70565b60008111610a985760405162461bcd60e51b815260040161090c90612866565b6001811115610ada5760405162461bcd60e51b815260206004820152600e60248201526d26b0bc10189020b63637bbb2b21760911b604482015260640161090c565b60075481600854610aeb91906128f7565b1115610b095760405162461bcd60e51b815260040161090c9061270d565b610b1b8167011c37937e08000061290f565b3414610b395760405162461bcd60e51b815260040161090c906126a6565b600a54421015610b5b5760405162461bcd60e51b815260040161090c906126d6565b6009544210610b7c5760405162461bcd60e51b815260040161090c906127ec565b600c5460ff1615610b9f5760405162461bcd60e51b815260040161090c9061289d565b3360009081526010602052604090205460ff16610bce5760405162461bcd60e51b815260040161090c906127b5565b6001610bd933610fb8565b10610bf65760405162461bcd60e51b815260040161090c9061273d565b60005b81811015610c3657610c2433826008546001610c1591906128f7565b610c1f91906128f7565b611e10565b80610c2e81612980565b915050610bf9565b508060086000828254610c4991906128f7565b909155505050565b6000546001600160a01b03163314610c7b5760405162461bcd60e51b815260040161090c90612780565b600080546040516001600160a01b03909116914780156108fc02929091818181858888f19350505050158015610cb5573d6000803e3d6000fd5b50565b6000600a544210158015610ccd575060095442105b15610cd85750600190565b50600090565b610a4283838360405180602001604052806000815250611310565b6000546001600160a01b03163314610d235760405162461bcd60e51b815260040161090c90612780565b60005b8151811015610d8b57600160106000848481518110610d4757610d476129b1565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610d8381612980565b915050610d26565b5050565b6000546001600160a01b03163314610db95760405162461bcd60e51b815260040161090c90612780565b60005b8151811015610d8b576001600f6000848481518110610ddd57610ddd6129b1565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610e1981612980565b915050610dbc565b6000546001600160a01b03163314610e4b5760405162461bcd60e51b815260040161090c90612780565b60005b8151811015610d8b57600160116000848481518110610e6f57610e6f6129b1565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610eab81612980565b915050610e4e565b6000818152600360205260408120546001600160a01b0316806107ff5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161090c565b600e8054610f3790612945565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6390612945565b8015610fb05780601f10610f8557610100808354040283529160200191610fb0565b820191906000526020600020905b815481529060010190602001808311610f9357829003601f168201915b505050505081565b60006001600160a01b0382166110235760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161090c565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b031633146110695760405162461bcd60e51b815260040161090c90612780565b6110736000611e2a565b565b600d8054610f3790612945565b6000546001600160a01b031633146110ac5760405162461bcd60e51b815260040161090c90612780565b60075481516008546110be91906128f7565b11156111055760405162461bcd60e51b81526020600482015260166024820152751b9bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604482015260640161090c565b60005b81518110156111505761113e828281518110611126576111266129b1565b6020026020010151826008546001610c1591906128f7565b8061114881612980565b915050611108565b50805160086000828254610c4991906128f7565b6000546001600160a01b0316331461118e5760405162461bcd60e51b815260040161090c90612780565b600755565b60606002805461081490612945565b6000546001600160a01b031633146111cc5760405162461bcd60e51b815260040161090c90612780565b8051610d8b90600e90602084019061212f565b6001600160a01b0382163314156112385760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161090c565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146112ce5760405162461bcd60e51b815260040161090c90612780565b600c805460ff1916911515919091179055565b6000546001600160a01b0316331461130b5760405162461bcd60e51b815260040161090c90612780565b600955565b61131a3383611b79565b6113365760405162461bcd60e51b815260040161090c90612815565b61134284848484611e7a565b50505050565b6000546001600160a01b031633146113725760405162461bcd60e51b815260040161090c90612780565b600b55565b6000818152600360205260409020546060906001600160a01b03166113f65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161090c565b600b5442101561149257600d805461140d90612945565b80601f016020809104026020016040519081016040528092919081815260200182805461143990612945565b80156114865780601f1061145b57610100808354040283529160200191611486565b820191906000526020600020905b81548152906001019060200180831161146957829003601f168201915b50505050509050919050565b6000600e80546114a190612945565b9050116114bd57604051806020016040528060008152506107ff565b600e826040516020016114d1929190612565565b60405160208183030381529060405292915050565b600081116115065760405162461bcd60e51b815260040161090c90612866565b60028111156115485760405162461bcd60e51b815260206004820152600e60248201526d26b0bc10191020b63637bbb2b21760911b604482015260640161090c565b6007548160085461155991906128f7565b11156115775760405162461bcd60e51b815260040161090c9061270d565b6115898167011c37937e08000061290f565b34146115a75760405162461bcd60e51b815260040161090c906126a6565b600a544210156115c95760405162461bcd60e51b815260040161090c906126d6565b60095442106115ea5760405162461bcd60e51b815260040161090c906127ec565b600c5460ff161561160d5760405162461bcd60e51b815260040161090c9061289d565b336000908152600f602052604090205460ff1661163c5760405162461bcd60e51b815260040161090c906127b5565b600161164733610fb8565b106116645760405162461bcd60e51b815260040161090c9061273d565b60005b81811015610c365761168333826008546001610c1591906128f7565b8061168d81612980565b915050611667565b6000546001600160a01b031633146116bf5760405162461bcd60e51b815260040161090c90612780565b8051610d8b90600d90602084019061212f565b600081116116f25760405162461bcd60e51b815260040161090c90612866565b60058111156117345760405162461bcd60e51b815260206004820152600e60248201526d26b0bc101a9020b63637bbb2b21760911b604482015260640161090c565b6007548160085461174591906128f7565b11156117635760405162461bcd60e51b815260040161090c9061270d565b6117758167011c37937e08000061290f565b34146117935760405162461bcd60e51b815260040161090c906126a6565b6009544210156117dd5760405162461bcd60e51b815260206004820152601560248201527429b0b632903737ba1029ba30b93a32b2102cb2ba1760591b604482015260640161090c565b600c5460ff16156118005760405162461bcd60e51b815260040161090c9061289d565b60058161180c33610fb8565b61181691906128f7565b11156118645760405162461bcd60e51b815260206004820152601e60248201527f4d61782035204e667473205065722057616c6c657420416c6c6f7765642e0000604482015260640161090c565b60005b81811015610c365761188333826008546001610c1591906128f7565b8061188d81612980565b915050611867565b6000546001600160a01b031633146118bf5760405162461bcd60e51b815260040161090c90612780565b600a55565b6000546001600160a01b031633146118ee5760405162461bcd60e51b815260040161090c90612780565b6001600160a01b0381166119535760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161090c565b610cb581611e2a565b6000811161197c5760405162461bcd60e51b815260040161090c90612866565b60018111156119be5760405162461bcd60e51b815260206004820152600e60248201526d26b0bc101a9020b63637bbb2b21760911b604482015260640161090c565b600754816008546119cf91906128f7565b11156119ed5760405162461bcd60e51b815260040161090c9061270d565b6119ff8167011c37937e08000061290f565b3414611a1d5760405162461bcd60e51b815260040161090c906126a6565b600a54421015611a3f5760405162461bcd60e51b815260040161090c906126d6565b6009544210611a605760405162461bcd60e51b815260040161090c906127ec565b600c5460ff1615611a835760405162461bcd60e51b815260040161090c9061289d565b3360009081526011602052604090205460ff16611ab25760405162461bcd60e51b815260040161090c906127b5565b6001611abd33610fb8565b10611ada5760405162461bcd60e51b815260040161090c9061273d565b60005b81811015610c3657611af933826008546001610c1591906128f7565b80611b0381612980565b915050611add565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b4082610eb3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b0316611bf25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161090c565b6000611bfd83610eb3565b9050806001600160a01b0316846001600160a01b03161480611c385750836001600160a01b0316611c2d84610897565b6001600160a01b0316145b80611c6857506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c8382610eb3565b6001600160a01b031614611ceb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161090c565b6001600160a01b038216611d4d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161090c565b611d58600082611b0b565b6001600160a01b0383166000908152600460205260408120805460019290611d8190849061292e565b90915550506001600160a01b0382166000908152600460205260408120805460019290611daf9084906128f7565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610d8b828260405180602001604052806000815250611ead565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611e85848484611c70565b611e9184848484611ee0565b6113425760405162461bcd60e51b815260040161090c90612654565b611eb78383611fed565b611ec46000848484611ee0565b610a425760405162461bcd60e51b815260040161090c90612654565b60006001600160a01b0384163b15611fe257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f24903390899088908890600401612604565b602060405180830381600087803b158015611f3e57600080fd5b505af1925050508015611f6e575060408051601f3d908101601f19168201909252611f6b91810190612499565b60015b611fc8573d808015611f9c576040519150601f19603f3d011682016040523d82523d6000602084013e611fa1565b606091505b508051611fc05760405162461bcd60e51b815260040161090c90612654565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c68565b506001949350505050565b6001600160a01b0382166120435760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161090c565b6000818152600360205260409020546001600160a01b0316156120a85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161090c565b6001600160a01b03821660009081526004602052604081208054600192906120d19084906128f7565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461213b90612945565b90600052602060002090601f01602090048101928261215d57600085556121a3565b82601f1061217657805160ff19168380011785556121a3565b828001600101855582156121a3579182015b828111156121a3578251825591602001919060010190612188565b506121af9291506121b3565b5090565b5b808211156121af57600081556001016121b4565b600067ffffffffffffffff8311156121e2576121e26129c7565b6121f5601f8401601f19166020016128c6565b905082815283838301111561220957600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461223757600080fd5b919050565b8035801515811461223757600080fd5b60006020828403121561225e57600080fd5b61226782612220565b9392505050565b6000806040838503121561228157600080fd5b61228a83612220565b915061229860208401612220565b90509250929050565b6000806000606084860312156122b657600080fd5b6122bf84612220565b92506122cd60208501612220565b9150604084013590509250925092565b600080600080608085870312156122f357600080fd5b6122fc85612220565b935061230a60208601612220565b925060408501359150606085013567ffffffffffffffff81111561232d57600080fd5b8501601f8101871361233e57600080fd5b61234d878235602084016121c8565b91505092959194509250565b6000806040838503121561236c57600080fd5b61237583612220565b91506122986020840161223c565b6000806040838503121561239657600080fd5b61239f83612220565b946020939093013593505050565b600060208083850312156123c057600080fd5b823567ffffffffffffffff808211156123d857600080fd5b818501915085601f8301126123ec57600080fd5b8135818111156123fe576123fe6129c7565b8060051b915061240f8483016128c6565b8181528481019084860184860187018a101561242a57600080fd5b600095505b838610156124545761244081612220565b83526001959095019491860191860161242f565b5098975050505050505050565b60006020828403121561247357600080fd5b6122678261223c565b60006020828403121561248e57600080fd5b8135612267816129dd565b6000602082840312156124ab57600080fd5b8151612267816129dd565b6000602082840312156124c857600080fd5b813567ffffffffffffffff8111156124df57600080fd5b8201601f810184136124f057600080fd5b611c68848235602084016121c8565b60006020828403121561251157600080fd5b5035919050565b6000815180845260005b8181101561253e57602081850181015186830182015201612522565b81811115612550576000602083870101525b50601f01601f19169290920160200192915050565b600080845481600182811c91508083168061258157607f831692505b60208084108214156125a157634e487b7160e01b86526022600452602486fd5b8180156125b557600181146125c6576125f3565b60ff198616895284890196506125f3565b60008b81526020902060005b868110156125eb5781548b8201529085019083016125d2565b505084890196505b509785525050509301949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061263790830184612518565b9695505050505050565b6020815260006122676020830184612518565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601690820152751a5b98dbdc9c9958dd08195d1a195c88185b5bdd5b9d60521b604082015260600190565b60208082526019908201527f5072652053616c65206e6f742053746172746564205965742e00000000000000604082015260600190565b602080825260169082015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604082015260600190565b60208082526023908201527f596f75206861766520616c7265616479204d696e74656420696e20507265736160408201526236329760e91b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526018908201527f596f7520617265206e6f742077686974656c69737465642e0000000000000000604082015260600190565b6020808252600f908201526e2839329029b0b6329022b73232b21760891b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526017908201527f6d696e74206174206c65617374206f6e6520746f6b656e000000000000000000604082015260600190565b6020808252600f908201526e29b0b6329034b9902830bab9b2b21760891b604082015260600190565b604051601f8201601f1916810167ffffffffffffffff811182821017156128ef576128ef6129c7565b604052919050565b6000821982111561290a5761290a61299b565b500190565b60008160001904831182151516156129295761292961299b565b500290565b6000828210156129405761294061299b565b500390565b600181811c9082168061295957607f821691505b6020821081141561297a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129945761299461299b565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cb557600080fdfea264697066735822122024157876fd9936da72e5d025c912968f2db132db4b0e560cebb8a5e111364b5264736f6c63430008070033

Deployed Bytecode Sourcemap

34520:6834:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22372:305;;;;;;;;;;-1:-1:-1;22372:305:0;;;;;:::i;:::-;;:::i;:::-;;;7554:14:1;;7547:22;7529:41;;7517:2;7502:18;22372:305:0;;;;;;;;34702:39;;;;;;;;;;;;;;;;;;;19275:25:1;;;19263:2;19248:18;34702:39:0;19129:177:1;23317:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24876:221::-;;;;;;;;;;-1:-1:-1;24876:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6852:32:1;;;6834:51;;6822:2;6807:18;24876:221:0;6688:203:1;24399:411:0;;;;;;;;;;-1:-1:-1;24399:411:0;;;;;:::i;:::-;;:::i;:::-;;34662:27;;;;;;;;;;;;;;;;25766:339;;;;;;;;;;-1:-1:-1;25766:339:0;;;;;:::i;:::-;;:::i;36898:842::-;;;;;;:::i;:::-;;:::i;39101:103::-;;;;;;;;;;-1:-1:-1;39185:10:0;39150:4;39173:23;;;:11;:23;;;;;;;;39101:103;;41245:106;;;;;;;;;;;;;:::i;41028:211::-;;;;;;;;;;;;;:::i;26176:185::-;;;;;;;;;;-1:-1:-1;26176:185:0;;;;;:::i;:::-;;:::i;39210:176::-;;;;;;;;;;-1:-1:-1;39210:176:0;;;;;:::i;:::-;;:::i;38917:172::-;;;;;;;;;;-1:-1:-1;38917:172:0;;;;;:::i;:::-;;:::i;34748:42::-;;;;;;;;;;;;;;;;39509:174;;;;;;;;;;-1:-1:-1;39509:174:0;;;;;:::i;:::-;;:::i;23011:239::-;;;;;;;;;;-1:-1:-1;23011:239:0;;;;;:::i;:::-;;:::i;35004:74::-;;;;;;;;;;;;;:::i;22741:208::-;;;;;;;;;;-1:-1:-1;22741:208:0;;;;;:::i;:::-;;:::i;14219:94::-;;;;;;;;;;;;;:::i;34883:112::-;;;;;;;;;;;;;:::i;38601:308::-;;;;;;;;;;-1:-1:-1;38601:308:0;;;;;:::i;:::-;;:::i;40428:91::-;;;;;;;;;;-1:-1:-1;40428:91:0;;;;;:::i;:::-;;:::i;13568:87::-;;;;;;;;;;-1:-1:-1;13614:7:0;13641:6;-1:-1:-1;;;;;13641:6:0;13568:87;;23486:104;;;;;;;;;;;;;:::i;39811:92::-;;;;;;;;;;-1:-1:-1;39811:92:0;;;;;:::i;:::-;;:::i;25169:295::-;;;;;;;;;;-1:-1:-1;25169:295:0;;;;;:::i;:::-;;:::i;39909:88::-;;;;;;;;;;-1:-1:-1;39909:88:0;;;;;:::i;:::-;;:::i;40219:96::-;;;;;;;;;;-1:-1:-1;40219:96:0;;;;;:::i;:::-;;:::i;39398:105::-;;;;;;;;;;-1:-1:-1;39484:10:0;39445:4;39468:27;;;:15;:27;;;;;;;;39398:105;;26432:328;;;;;;;;;;-1:-1:-1;26432:328:0;;;;;:::i;:::-;;:::i;34840:30::-;;;;;;;;;;-1:-1:-1;34840:30:0;;;;;;;;40003:90;;;;;;;;;;-1:-1:-1;40003:90:0;;;;;:::i;:::-;;:::i;40639:383::-;;;;;;;;;;-1:-1:-1;40639:383:0;;;;;:::i;:::-;;:::i;39695:104::-;;;;;;;;;;-1:-1:-1;39780:10:0;39742:4;39765:26;;;:14;:26;;;;;;;;39695:104;;34620:29;;;;;;;;;;;;;;;;36042:845;;;;;;:::i;:::-;;:::i;40525:102::-;;;;;;;;;;-1:-1:-1;40525:102:0;;;;;:::i;:::-;;:::i;35337:694::-;;;;;;:::i;:::-;;:::i;34797:36::-;;;;;;;;;;;;;;;;25535:164;;;;;;;;;;-1:-1:-1;25535:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;25656:25:0;;;25632:4;25656:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25535:164;40321:101;;;;;;;;;;-1:-1:-1;40321:101:0;;;;;:::i;:::-;;:::i;14468:192::-;;;;;;;;;;-1:-1:-1;14468:192:0;;;;;:::i;:::-;;:::i;37751:842::-;;;;;;:::i;:::-;;:::i;22372:305::-;22474:4;-1:-1:-1;;;;;;22511:40:0;;-1:-1:-1;;;22511:40:0;;:105;;-1:-1:-1;;;;;;;22568:48:0;;-1:-1:-1;;;22568:48:0;22511:105;:158;;;-1:-1:-1;;;;;;;;;;15682:40:0;;;22633:36;22491:178;22372:305;-1:-1:-1;;22372:305:0:o;23317:100::-;23371:13;23404:5;23397:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23317:100;:::o;24876:221::-;24952:7;28359:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28359:16:0;24972:73;;;;-1:-1:-1;;;24972:73:0;;14817:2:1;24972:73:0;;;14799:21:1;14856:2;14836:18;;;14829:30;14895:34;14875:18;;;14868:62;-1:-1:-1;;;14946:18:1;;;14939:42;14998:19;;24972:73:0;;;;;;;;;-1:-1:-1;25065:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25065:24:0;;24876:221::o;24399:411::-;24480:13;24496:23;24511:7;24496:14;:23::i;:::-;24480:39;;24544:5;-1:-1:-1;;;;;24538:11:0;:2;-1:-1:-1;;;;;24538:11:0;;;24530:57;;;;-1:-1:-1;;;24530:57:0;;16767:2:1;24530:57:0;;;16749:21:1;16806:2;16786:18;;;16779:30;16845:34;16825:18;;;16818:62;-1:-1:-1;;;16896:18:1;;;16889:31;16937:19;;24530:57:0;16565:397:1;24530:57:0;788:10;-1:-1:-1;;;;;24622:21:0;;;;:62;;-1:-1:-1;24647:37:0;24664:5;788:10;25535:164;:::i;24647:37::-;24600:168;;;;-1:-1:-1;;;24600:168:0;;12455:2:1;24600:168:0;;;12437:21:1;12494:2;12474:18;;;12467:30;12533:34;12513:18;;;12506:62;12604:26;12584:18;;;12577:54;12648:19;;24600:168:0;12253:420:1;24600:168:0;24781:21;24790:2;24794:7;24781:8;:21::i;:::-;24469:341;24399:411;;:::o;25766:339::-;25961:41;788:10;25994:7;25961:18;:41::i;:::-;25953:103;;;;-1:-1:-1;;;25953:103:0;;;;;;;:::i;:::-;26069:28;26079:4;26085:2;26089:7;26069:9;:28::i;36898:842::-;36977:1;36968:6;:10;36960:46;;;;-1:-1:-1;;;36960:46:0;;;;;;;:::i;:::-;37035:1;37025:6;:11;;37017:38;;;;-1:-1:-1;;;37017:38:0;;9128:2:1;37017:38:0;;;9110:21:1;9167:2;9147:18;;;9140:30;-1:-1:-1;;;9186:18:1;;;9179:44;9240:18;;37017:38:0;8926:338:1;37017:38:0;37098:9;;37088:6;37074:11;;:20;;;;:::i;:::-;:33;;37066:68;;;;-1:-1:-1;;;37066:68:0;;;;;;;:::i;:::-;37166:19;37179:6;34603:10;37166:19;:::i;:::-;37153:9;:32;37145:67;;;;-1:-1:-1;;;37145:67:0;;;;;;;:::i;:::-;37250:17;;37231:15;:36;;37223:73;;;;-1:-1:-1;;;37223:73:0;;;;;;;:::i;:::-;37333:14;;37315:15;:32;37307:59;;;;-1:-1:-1;;;37307:59:0;;;;;;;:::i;:::-;37385:10;;;;:19;37377:47;;;;-1:-1:-1;;;37377:47:0;;;;;;;:::i;:::-;39484:10;39445:4;39468:27;;;:15;:27;;;;;;;;37435:54;;;;-1:-1:-1;;;37435:54:0;;;;;;;:::i;:::-;37532:1;37508:21;37518:10;37508:9;:21::i;:::-;:25;37500:73;;;;-1:-1:-1;;;37500:73:0;;;;;;;:::i;:::-;37598:6;37594:88;37614:6;37610:1;:10;37594:88;;;37640:42;37650:10;37680:1;37662:11;;37676:1;37662:15;;;;:::i;:::-;:19;;;;:::i;:::-;37640:9;:42::i;:::-;37622:3;;;;:::i;:::-;;;;37594:88;;;;37726:6;37711:11;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;;;36898:842:0:o;41245:106::-;13614:7;13641:6;-1:-1:-1;;;;;13641:6:0;788:10;13788:23;13780:68;;;;-1:-1:-1;;;13780:68:0;;;;;;;:::i;:::-;13614:7;13641:6;;41295:48:::1;::::0;-1:-1:-1;;;;;13641:6:0;;;;41321:21:::1;41295:48:::0;::::1;;;::::0;41321:21;;41295:48;13614:7;41295:48;41321:21;13641:6;41295:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;41245:106::o:0;41028:211::-;41079:4;41117:17;;41098:15;:36;;:72;;;;;41156:14;;41138:15;:32;41098:72;41095:114;;;-1:-1:-1;41193:4:0;;41028:211::o;41095:114::-;-1:-1:-1;41226:5:0;;41028:211::o;26176:185::-;26314:39;26331:4;26337:2;26341:7;26314:39;;;;;;;;;;;;:16;:39::i;39210:176::-;13614:7;13641:6;-1:-1:-1;;;;;13641:6:0;788:10;13788:23;13780:68;;;;-1:-1:-1;;;13780:68:0;;;;;;;:::i;:::-;39296:6:::1;39292:86;39308:8;:15;39304:1;:19;39292:86;;;39374:4;39343:15;:28;39359:8;39368:1;39359:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;39343:28:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;39343:28:0;:35;;-1:-1:-1;;39343:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39325:3;::::1;::::0;::::1;:::i;:::-;;;;39292:86;;;;39210:176:::0;:::o;38917:172::-;13614:7;13641:6;-1:-1:-1;;;;;13641:6:0;788:10;13788:23;13780:68;;;;-1:-1:-1;;;13780:68:0;;;;;;;:::i;:::-;39003:6:::1;38999:82;39015:8;:15;39011:1;:19;38999:82;;;39077:4;39050:11;:24;39062:8;39071:1;39062:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;39050:24:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;39050:24:0;:31;;-1:-1:-1;;39050:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39032:3;::::1;::::0;::::1;:::i;:::-;;;;38999:82;;39509:174:::0;13614:7;13641:6;-1:-1:-1;;;;;13641:6:0;788:10;13788:23;13780:68;;;;-1:-1:-1;;;13780:68:0;;;;;;;:::i;:::-;39594:6:::1;39590:85;39606:8;:15;39602:1;:19;39590:85;;;39671:4;39641:14;:27;39656:8;39665:1;39656:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;39641:27:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;39641:27:0;:34;;-1:-1:-1;;39641:34:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39623:3;::::1;::::0;::::1;:::i;:::-;;;;39590:85;;23011:239:::0;23083:7;23119:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23119:16:0;23154:19;23146:73;;;;-1:-1:-1;;;23146:73:0;;13291:2:1;23146:73:0;;;13273:21:1;13330:2;13310:18;;;13303:30;13369:34;13349:18;;;13342:62;-1:-1:-1;;;13420:18:1;;;13413:39;13469:19;;23146:73:0;13089:405:1;35004:74:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22741:208::-;22813:7;-1:-1:-1;;;;;22841:19:0;;22833:74;;;;-1:-1:-1;;;22833:74:0;;12880:2:1;22833:74:0;;;12862:21:1;12919:2;12899:18;;;12892:30;12958:34;12938:18;;;12931:62;-1:-1:-1;;;13009:18:1;;;13002:40;13059:19;;22833:74:0;12678:406:1;22833:74:0;-1:-1:-1;;;;;;22925:16:0;;;;;:9;:16;;;;;;;22741:208::o;14219:94::-;13614:7;13641:6;-1:-1:-1;;;;;13641:6:0;788:10;13788:23;13780:68;;;;-1:-1:-1;;;13780:68:0;;;;;;;:::i;:::-;14284:21:::1;14302:1;14284:9;:21::i;:::-;14219:94::o:0;34883:112::-;;;;;;;:::i;38601:308::-;13614:7;13641:6;-1:-1:-1;;;;;13641:6:0;788:10;13788:23;13780:68;;;;-1:-1:-1;;;13780:68:0;;;;;;;:::i;:::-;38715:9:::1;;38696:8;:15;38682:11;;:29;;;;:::i;:::-;:42;;38674:77;;;::::0;-1:-1:-1;;;38674:77:0;;18636:2:1;38674:77:0::1;::::0;::::1;18618:21:1::0;18675:2;18655:18;;;18648:30;-1:-1:-1;;;18694:18:1;;;18687:52;18756:18;;38674:77:0::1;18434:346:1::0;38674:77:0::1;38766:6;38762:98;38782:8;:15;38778:1;:19;38762:98;;;38817:43;38827:8;38836:1;38827:11;;;;;;;;:::i;:::-;;;;;;;38858:1;38840:11;;38854:1;38840:15;;;;:::i;38817:43::-;38799:3:::0;::::1;::::0;::::1;:::i;:::-;;;;38762:98;;;;38886:8;:15;38871:11;;:30;;;;;;;:::i;40428:91::-:0;13614:7;13641:6;-1:-1:-1;;;;;13641:6:0;788:10;13788:23;13780:68;;;;-1:-1:-1;;;13780:68:0;;;;;;;:::i;:::-;40495:9:::1;:16:::0;40428:91::o;23486:104::-;23542:13;23575:7;23568:14;;;;;:::i;39811:92::-;13614:7;13641:6;-1:-1:-1;;;;;13641:6:0;788:10;13788:23;13780:68;;;;-1:-1:-1;;;13780:68:0;;;;;;;:::i;:::-;39881:14;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;25169:295::-:0;-1:-1:-1;;;;;25272:24:0;;788:10;25272:24;;25264:62;;;;-1:-1:-1;;;25264:62:0;;10640:2:1;25264:62:0;;;10622:21:1;10679:2;10659:18;;;10652:30;10718:27;10698:18;;;10691:55;10763:18;;25264:62:0;10438:349:1;25264:62:0;788:10;25339:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25339:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25339:53:0;;;;;;;;;;25408:48;;7529:41:1;;;25339:42:0;;788:10;25408:48;;7502:18:1;25408:48:0;;;;;;;25169:295;;:::o;39909:88::-;13614:7;13641:6;-1:-1:-1;;;;;13641:6:0;788:10;13788:23;13780:68;;;;-1:-1:-1;;;13780:68:0;;;;;;;:::i;:::-;39972:10:::1;:17:::0;;-1:-1:-1;;39972:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39909:88::o;40219:96::-;13614:7;13641:6;-1:-1:-1;;;;;13641:6:0;788:10;13788:23;13780:68;;;;-1:-1:-1;;;13780:68:0;;;;;;;:::i;:::-;40286:14:::1;:21:::0;40219:96::o;26432:328::-;26607:41;788:10;26640:7;26607:18;:41::i;:::-;26599:103;;;;-1:-1:-1;;;26599:103:0;;;;;;;:::i;:::-;26713:39;26727:4;26733:2;26737:7;26746:5;26713:13;:39::i;:::-;26432:328;;;;:::o;40003:90::-;13614:7;13641:6;-1:-1:-1;;;;;13641:6:0;788:10;13788:23;13780:68;;;;-1:-1:-1;;;13780:68:0;;;;;;;:::i;:::-;40067:11:::1;:18:::0;40003:90::o;40639:383::-;28335:4;28359:16;;;:7;:16;;;;;;40709:13;;-1:-1:-1;;;;;28359:16:0;40735:76;;;;-1:-1:-1;;;40735:76:0;;16351:2:1;40735:76:0;;;16333:21:1;16390:2;16370:18;;;16363:30;16429:34;16409:18;;;16402:62;-1:-1:-1;;;16480:18:1;;;16473:45;16535:19;;40735:76:0;16149:411:1;40735:76:0;40853:11;;40835:15;:29;40832:80;;;40888:12;40881:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40639:383;;;:::o;40832:80::-;40963:1;40945:7;40939:21;;;;;:::i;:::-;;;:25;:75;;;;;;;;;;;;;;;;;40991:7;41000;40974:34;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40932:82;40639:383;-1:-1:-1;;40639:383:0:o;36042:845::-;36122:1;36113:6;:10;36105:46;;;;-1:-1:-1;;;36105:46:0;;;;;;;:::i;:::-;36180:1;36170:6;:11;;36162:38;;;;-1:-1:-1;;;36162:38:0;;8366:2:1;36162:38:0;;;8348:21:1;8405:2;8385:18;;;8378:30;-1:-1:-1;;;8424:18:1;;;8417:44;8478:18;;36162:38:0;8164:338:1;36162:38:0;36243:9;;36233:6;36219:11;;:20;;;;:::i;:::-;:33;;36211:68;;;;-1:-1:-1;;;36211:68:0;;;;;;;:::i;:::-;36311:19;36324:6;34603:10;36311:19;:::i;:::-;36298:9;:32;36290:67;;;;-1:-1:-1;;;36290:67:0;;;;;;;:::i;:::-;36395:17;;36376:15;:36;;36368:73;;;;-1:-1:-1;;;36368:73:0;;;;;;;:::i;:::-;36478:14;;36460:15;:32;36452:59;;;;-1:-1:-1;;;36452:59:0;;;;;;;:::i;:::-;36530:10;;;;:19;36522:47;;;;-1:-1:-1;;;36522:47:0;;;;;;;:::i;:::-;39185:10;39150:4;39173:23;;;:11;:23;;;;;;;;36580:56;;;;-1:-1:-1;;;36580:56:0;;;;;;;:::i;:::-;36679:1;36655:21;36665:10;36655:9;:21::i;:::-;:25;36647:73;;;;-1:-1:-1;;;36647:73:0;;;;;;;:::i;:::-;36745:6;36741:88;36761:6;36757:1;:10;36741:88;;;36787:42;36797:10;36827:1;36809:11;;36823:1;36809:15;;;;:::i;36787:42::-;36769:3;;;;:::i;:::-;;;;36741:88;;40525:102;13614:7;13641:6;-1:-1:-1;;;;;13641:6:0;788:10;13788:23;13780:68;;;;-1:-1:-1;;;13780:68:0;;;;;;;:::i;:::-;40600:19;;::::1;::::0;:12:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;35337:694::-:0;35405:1;35396:6;:10;35388:46;;;;-1:-1:-1;;;35388:46:0;;;;;;;:::i;:::-;35463:1;35453:6;:11;;35445:38;;;;-1:-1:-1;;;35445:38:0;;11758:2:1;35445:38:0;;;11740:21:1;11797:2;11777:18;;;11770:30;-1:-1:-1;;;11816:18:1;;;11809:44;11870:18;;35445:38:0;11556:338:1;35445:38:0;35526:9;;35516:6;35502:11;;:20;;;;:::i;:::-;:33;;35494:68;;;;-1:-1:-1;;;35494:68:0;;;;;;;:::i;:::-;35594:19;35607:6;34603:10;35594:19;:::i;:::-;35581:9;:32;35573:67;;;;-1:-1:-1;;;35573:67:0;;;;;;;:::i;:::-;35678:14;;35659:15;:33;;35651:66;;;;-1:-1:-1;;;35651:66:0;;15591:2:1;35651:66:0;;;15573:21:1;15630:2;15610:18;;;15603:30;-1:-1:-1;;;15649:18:1;;;15642:51;15710:18;;35651:66:0;15389:345:1;35651:66:0;35736:10;;;;:19;35728:47;;;;-1:-1:-1;;;35728:47:0;;;;;;;:::i;:::-;35828:1;35818:6;35794:21;35804:10;35794:9;:21::i;:::-;:30;;;;:::i;:::-;:35;;35786:78;;;;-1:-1:-1;;;35786:78:0;;8007:2:1;35786:78:0;;;7989:21:1;8046:2;8026:18;;;8019:30;8085:32;8065:18;;;8058:60;8135:18;;35786:78:0;7805:354:1;35786:78:0;35889:6;35885:88;35905:6;35901:1;:10;35885:88;;;35931:42;35941:10;35971:1;35953:11;;35967:1;35953:15;;;;:::i;35931:42::-;35913:3;;;;:::i;:::-;;;;35885:88;;40321:101;13614:7;13641:6;-1:-1:-1;;;;;13641:6:0;788:10;13788:23;13780:68;;;;-1:-1:-1;;;13780:68:0;;;;;;;:::i;:::-;40390:17:::1;:24:::0;40321:101::o;14468:192::-;13614:7;13641:6;-1:-1:-1;;;;;13641:6:0;788:10;13788:23;13780:68;;;;-1:-1:-1;;;13780:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14557:22:0;::::1;14549:73;;;::::0;-1:-1:-1;;;14549:73:0;;9471:2:1;14549:73:0::1;::::0;::::1;9453:21:1::0;9510:2;9490:18;;;9483:30;9549:34;9529:18;;;9522:62;-1:-1:-1;;;9600:18:1;;;9593:36;9646:19;;14549:73:0::1;9269:402:1::0;14549:73:0::1;14633:19;14643:8;14633:9;:19::i;37751:842::-:0;37830:1;37821:6;:10;37813:46;;;;-1:-1:-1;;;37813:46:0;;;;;;;:::i;:::-;37888:1;37878:6;:11;;37870:38;;;;-1:-1:-1;;;37870:38:0;;11758:2:1;37870:38:0;;;11740:21:1;11797:2;11777:18;;;11770:30;-1:-1:-1;;;11816:18:1;;;11809:44;11870:18;;37870:38:0;11556:338:1;37870:38:0;37951:9;;37941:6;37927:11;;:20;;;;:::i;:::-;:33;;37919:68;;;;-1:-1:-1;;;37919:68:0;;;;;;;:::i;:::-;38019:19;38032:6;34603:10;38019:19;:::i;:::-;38006:9;:32;37998:67;;;;-1:-1:-1;;;37998:67:0;;;;;;;:::i;:::-;38103:17;;38084:15;:36;;38076:73;;;;-1:-1:-1;;;38076:73:0;;;;;;;:::i;:::-;38186:14;;38168:15;:32;38160:59;;;;-1:-1:-1;;;38160:59:0;;;;;;;:::i;:::-;38238:10;;;;:19;38230:47;;;;-1:-1:-1;;;38230:47:0;;;;;;;:::i;:::-;39780:10;39742:4;39765:26;;;:14;:26;;;;;;;;38288:54;;;;-1:-1:-1;;;38288:54:0;;;;;;;:::i;:::-;38385:1;38361:21;38371:10;38361:9;:21::i;:::-;:25;38353:73;;;;-1:-1:-1;;;38353:73:0;;;;;;;:::i;:::-;38451:6;38447:88;38467:6;38463:1;:10;38447:88;;;38493:42;38503:10;38533:1;38515:11;;38529:1;38515:15;;;;:::i;38493:42::-;38475:3;;;;:::i;:::-;;;;38447:88;;32252:174;32327:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32327:29:0;-1:-1:-1;;;;;32327:29:0;;;;;;;;:24;;32381:23;32327:24;32381:14;:23::i;:::-;-1:-1:-1;;;;;32372:46:0;;;;;;;;;;;32252:174;;:::o;28564:348::-;28657:4;28359:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28359:16:0;28674:73;;;;-1:-1:-1;;;28674:73:0;;10994:2:1;28674:73:0;;;10976:21:1;11033:2;11013:18;;;11006:30;11072:34;11052:18;;;11045:62;-1:-1:-1;;;11123:18:1;;;11116:42;11175:19;;28674:73:0;10792:408:1;28674:73:0;28758:13;28774:23;28789:7;28774:14;:23::i;:::-;28758:39;;28827:5;-1:-1:-1;;;;;28816:16:0;:7;-1:-1:-1;;;;;28816:16:0;;:51;;;;28860:7;-1:-1:-1;;;;;28836:31:0;:20;28848:7;28836:11;:20::i;:::-;-1:-1:-1;;;;;28836:31:0;;28816:51;:87;;;-1:-1:-1;;;;;;25656:25:0;;;25632:4;25656:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28871:32;28808:96;28564:348;-1:-1:-1;;;;28564:348:0:o;31556:578::-;31715:4;-1:-1:-1;;;;;31688:31:0;:23;31703:7;31688:14;:23::i;:::-;-1:-1:-1;;;;;31688:31:0;;31680:85;;;;-1:-1:-1;;;31680:85:0;;15941:2:1;31680:85:0;;;15923:21:1;15980:2;15960:18;;;15953:30;16019:34;15999:18;;;15992:62;-1:-1:-1;;;16070:18:1;;;16063:39;16119:19;;31680:85:0;15739:405:1;31680:85:0;-1:-1:-1;;;;;31784:16:0;;31776:65;;;;-1:-1:-1;;;31776:65:0;;10235:2:1;31776:65:0;;;10217:21:1;10274:2;10254:18;;;10247:30;10313:34;10293:18;;;10286:62;-1:-1:-1;;;10364:18:1;;;10357:34;10408:19;;31776:65:0;10033:400:1;31776:65:0;31958:29;31975:1;31979:7;31958:8;:29::i;:::-;-1:-1:-1;;;;;32000:15:0;;;;;;:9;:15;;;;;:20;;32019:1;;32000:15;:20;;32019:1;;32000:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32031:13:0;;;;;;:9;:13;;;;;:18;;32048:1;;32031:13;:18;;32048:1;;32031:18;:::i;:::-;;;;-1:-1:-1;;32060:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32060:21:0;-1:-1:-1;;;;;32060:21:0;;;;;;;;;32099:27;;32060:16;;32099:27;;;;;;;31556:578;;;:::o;29254:110::-;29330:26;29340:2;29344:7;29330:26;;;;;;;;;;;;:9;:26::i;14668:173::-;14724:16;14743:6;;-1:-1:-1;;;;;14760:17:0;;;-1:-1:-1;;;;;;14760:17:0;;;;;;14793:40;;14743:6;;;;;;;14793:40;;14724:16;14793:40;14713:128;14668:173;:::o;27642:315::-;27799:28;27809:4;27815:2;27819:7;27799:9;:28::i;:::-;27846:48;27869:4;27875:2;27879:7;27888:5;27846:22;:48::i;:::-;27838:111;;;;-1:-1:-1;;;27838:111:0;;;;;;;:::i;29591:321::-;29721:18;29727:2;29731:7;29721:5;:18::i;:::-;29772:54;29803:1;29807:2;29811:7;29820:5;29772:22;:54::i;:::-;29750:154;;;;-1:-1:-1;;;29750:154:0;;;;;;;:::i;32991:799::-;33146:4;-1:-1:-1;;;;;33167:13:0;;3961:20;4009:8;33163:620;;33203:72;;-1:-1:-1;;;33203:72:0;;-1:-1:-1;;;;;33203:36:0;;;;;:72;;788:10;;33254:4;;33260:7;;33269:5;;33203:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33203:72:0;;;;;;;;-1:-1:-1;;33203:72:0;;;;;;;;;;;;:::i;:::-;;;33199:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33445:13:0;;33441:272;;33488:60;;-1:-1:-1;;;33488:60:0;;;;;;;:::i;33441:272::-;33663:6;33657:13;33648:6;33644:2;33640:15;33633:38;33199:529;-1:-1:-1;;;;;;33326:51:0;-1:-1:-1;;;33326:51:0;;-1:-1:-1;33319:58:0;;33163:620;-1:-1:-1;33767:4:0;32991:799;;;;;;:::o;30248:382::-;-1:-1:-1;;;;;30328:16:0;;30320:61;;;;-1:-1:-1;;;30320:61:0;;14456:2:1;30320:61:0;;;14438:21:1;;;14475:18;;;14468:30;14534:34;14514:18;;;14507:62;14586:18;;30320:61:0;14254:356:1;30320:61:0;28335:4;28359:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28359:16:0;:30;30392:58;;;;-1:-1:-1;;;30392:58:0;;9878:2:1;30392:58:0;;;9860:21:1;9917:2;9897:18;;;9890:30;9956;9936:18;;;9929:58;10004:18;;30392:58:0;9676:352:1;30392:58:0;-1:-1:-1;;;;;30521:13:0;;;;;;:9;:13;;;;;:18;;30538:1;;30521:13;:18;;30538:1;;30521:18;:::i;:::-;;;;-1:-1:-1;;30550:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30550:21:0;-1:-1:-1;;;;;30550:21:0;;;;;;;;30589:33;;30550:16;;;30589:33;;30550:16;;30589:33;30248: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;:::-;909:39;768:186;-1:-1:-1;;;768:186:1:o;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:471::-;5084:3;5122:5;5116:12;5149:6;5144:3;5137:19;5174:1;5184:162;5198:6;5195:1;5192:13;5184:162;;;5260:4;5316:13;;;5312:22;;5306:29;5288:11;;;5284:20;;5277:59;5213:12;5184:162;;;5364:6;5361:1;5358:13;5355:87;;;5430:1;5423:4;5414:6;5409:3;5405:16;5401:27;5394:38;5355:87;-1:-1:-1;5496:2:1;5475:15;-1:-1:-1;;5471:29:1;5462:39;;;;5503:4;5458:50;;5043:471;-1:-1:-1;;5043:471:1:o;5519:1164::-;5675:3;5704:1;5737:6;5731:13;5767:3;5789:1;5817:9;5813:2;5809:18;5799:28;;5877:2;5866:9;5862:18;5899;5889:61;;5943:4;5935:6;5931:17;5921:27;;5889:61;5969:2;6017;6009:6;6006:14;5986:18;5983:38;5980:165;;;-1:-1:-1;;;6044:33:1;;6100:4;6097:1;6090:15;6130:4;6051:3;6118:17;5980:165;6161:18;6188:104;;;;6306:1;6301:320;;;;6154:467;;6188:104;-1:-1:-1;;6221:24:1;;6209:37;;6266:16;;;;-1:-1:-1;6188:104:1;;6301:320;19664:1;19657:14;;;19701:4;19688:18;;6396:1;6410:165;6424:6;6421:1;6418:13;6410:165;;;6502:14;;6489:11;;;6482:35;6545:16;;;;6439:10;;6410:165;;;6414:3;;6604:6;6599:3;6595:16;6588:23;;6154:467;-1:-1:-1;6630:19:1;;;-1:-1:-1;;;6665:12:1;;;5519:1164;-1:-1:-1;;;;5519:1164:1:o;6896:488::-;-1:-1:-1;;;;;7165:15:1;;;7147:34;;7217:15;;7212:2;7197:18;;7190:43;7264:2;7249:18;;7242:34;;;7312:3;7307:2;7292:18;;7285:31;;;7090:4;;7333:45;;7358:19;;7350:6;7333:45;:::i;:::-;7325:53;6896:488;-1:-1:-1;;;;;;6896:488:1:o;7581:219::-;7730:2;7719:9;7712:21;7693:4;7750:44;7790:2;7779:9;7775:18;7767:6;7750:44;:::i;8507:414::-;8709:2;8691:21;;;8748:2;8728:18;;;8721:30;8787:34;8782:2;8767:18;;8760:62;-1:-1:-1;;;8853:2:1;8838:18;;8831:48;8911:3;8896:19;;8507:414::o;11205:346::-;11407:2;11389:21;;;11446:2;11426:18;;;11419:30;-1:-1:-1;;;11480:2:1;11465:18;;11458:52;11542:2;11527:18;;11205:346::o;11899:349::-;12101:2;12083:21;;;12140:2;12120:18;;;12113:30;12179:27;12174:2;12159:18;;12152:55;12239:2;12224:18;;11899:349::o;13499:346::-;13701:2;13683:21;;;13740:2;13720:18;;;13713:30;-1:-1:-1;;;13774:2:1;13759:18;;13752:52;13836:2;13821:18;;13499:346::o;13850:399::-;14052:2;14034:21;;;14091:2;14071:18;;;14064:30;14130:34;14125:2;14110:18;;14103:62;-1:-1:-1;;;14196:2:1;14181:18;;14174:33;14239:3;14224:19;;13850:399::o;15028:356::-;15230:2;15212:21;;;15249:18;;;15242:30;15308:34;15303:2;15288:18;;15281:62;15375:2;15360:18;;15028:356::o;16967:348::-;17169:2;17151:21;;;17208:2;17188:18;;;17181:30;17247:26;17242:2;17227:18;;17220:54;17306:2;17291:18;;16967:348::o;17320:339::-;17522:2;17504:21;;;17561:2;17541:18;;;17534:30;-1:-1:-1;;;17595:2:1;17580:18;;17573:45;17650:2;17635:18;;17320:339::o;17664:413::-;17866:2;17848:21;;;17905:2;17885:18;;;17878:30;17944:34;17939:2;17924:18;;17917:62;-1:-1:-1;;;18010:2:1;17995:18;;17988:47;18067:3;18052:19;;17664:413::o;18082:347::-;18284:2;18266:21;;;18323:2;18303:18;;;18296:30;18362:25;18357:2;18342:18;;18335:53;18420:2;18405:18;;18082:347::o;18785:339::-;18987:2;18969:21;;;19026:2;19006:18;;;18999:30;-1:-1:-1;;;19060:2:1;19045:18;;19038:45;19115:2;19100:18;;18785:339::o;19311:275::-;19382:2;19376:9;19447:2;19428:13;;-1:-1:-1;;19424:27:1;19412:40;;19482:18;19467:34;;19503:22;;;19464:62;19461:88;;;19529:18;;:::i;:::-;19565:2;19558:22;19311:275;;-1:-1:-1;19311:275:1:o;19717:128::-;19757:3;19788:1;19784:6;19781:1;19778:13;19775:39;;;19794:18;;:::i;:::-;-1:-1:-1;19830:9:1;;19717:128::o;19850:168::-;19890:7;19956:1;19952;19948:6;19944:14;19941:1;19938:21;19933:1;19926:9;19919:17;19915:45;19912:71;;;19963:18;;:::i;:::-;-1:-1:-1;20003:9:1;;19850:168::o;20023:125::-;20063:4;20091:1;20088;20085:8;20082:34;;;20096:18;;:::i;:::-;-1:-1:-1;20133:9:1;;20023:125::o;20153:380::-;20232:1;20228:12;;;;20275;;;20296:61;;20350:4;20342:6;20338:17;20328:27;;20296:61;20403:2;20395:6;20392:14;20372:18;20369:38;20366:161;;;20449:10;20444:3;20440:20;20437:1;20430:31;20484:4;20481:1;20474:15;20512:4;20509:1;20502:15;20366:161;;20153:380;;;:::o;20538:135::-;20577:3;-1:-1:-1;;20598:17:1;;20595:43;;;20618:18;;:::i;:::-;-1:-1:-1;20665:1:1;20654:13;;20538:135::o;20678:127::-;20739:10;20734:3;20730:20;20727:1;20720:31;20770:4;20767:1;20760:15;20794:4;20791:1;20784:15;20810:127;20871:10;20866:3;20862:20;20859:1;20852:31;20902:4;20899:1;20892:15;20926:4;20923:1;20916:15;20942:127;21003:10;20998:3;20994:20;20991:1;20984:31;21034:4;21031:1;21024:15;21058:4;21055:1;21048:15;21074:131;-1:-1:-1;;;;;;21148:32:1;;21138:43;;21128:71;;21195:1;21192;21185:12

Swarm Source

ipfs://24157876fd9936da72e5d025c912968f2db132db4b0e560cebb8a5e111364b52
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.