ETH Price: $3,272.96 (-4.03%)
Gas: 7 Gwei

Token

CRYPTOES (CTS)
 

Overview

Max Total Supply

10,000 CTS

Holders

610

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
tosshed.eth
Balance
3 CTS
0x597cedae7830a6d7ae884589e769b7016f3af7d5
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:
NFT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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




/*
 * @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;
    }
}




/**
 * @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);
    }
}













/**
 * @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;
}





/**
 * @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);
}







/**
 * @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);
}





/**
 * @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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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);
            }
        }
    }
}









/**
 * @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;
    }
}


/**
 * @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(to).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 {}
}





/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}







/**
 * @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);
    }
}





// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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





/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


contract NFT is ERC721, Ownable, ReentrancyGuard {
  using Counters for Counters.Counter;
  using SafeMath for uint256;
  Counters.Counter private _tokenIds;
  uint256 private _mintCost;
  uint256 private _maxSupply;
  bool private _isPublicMintEnabled;
  
  /**
  * @dev Initializes the contract setting the `tokenName` and `symbol` of the nft, `cost` of each mint call, and maximum `supply` of the nft.
  * Note: `cost` is in wei. 
  */
  constructor(string memory tokenName, string memory symbol, uint256 cost, uint256 supply) ERC721(tokenName, symbol) Ownable() {
    _mintCost = cost;
    _maxSupply = supply;
    _isPublicMintEnabled = false;
  }

  /**
  * @dev Changes contract state to enable public access to `mintTokens` function
  * Can only be called by the current owner.
  */
  function allowPublicMint()
  public
  onlyOwner{
    _isPublicMintEnabled = true;
  }

  /**
  * @dev Changes contract state to disable public access to `mintTokens` function
  * Can only be called by the current owner.
  */
  function denyPublicMint()
  public
  onlyOwner{
    _isPublicMintEnabled = false;
  }

  /**
  * @dev Mint `count` tokens if requirements are satisfied.
  * 
  */
  function mintTokens(uint256 count)
  public
  payable
  nonReentrant{
    require(_isPublicMintEnabled, "Mint disabled");
    require(count > 0 && count <= 100, "You can drop minimum 1, maximum 100 NFTs");
    require(count.add(_tokenIds.current()) < _maxSupply, "Exceeds max supply");
    require(owner() == msg.sender || msg.value >= _mintCost.mul(count),
           "Ether value sent is below the price");
    for(uint i=0; i<count; i++){
        _mint(msg.sender);
     }
  }

  /**
  * @dev Mint a token to each Address of `recipients`.
  * Can only be called by the current owner.
  */
  function mintTokens(address[] calldata recipients)
  public
  payable
  onlyOwner{
    for(uint i=0; i<recipients.length; i++){
        _mint(recipients[i]);
     }
  }

  /**
  * @dev Update the cost to mint a token.
  * Can only be called by the current owner.
  */
  function setCost(uint256 cost) public onlyOwner{
    _mintCost = cost;
  }

  /**
  * @dev Update the max supply.
  * Can only be called by the current owner.
  */
  function setMaxSupply(uint256 max) public onlyOwner{
    _maxSupply = max;
  }

  /**
  * @dev Transfers contract balance to contract owner.
  * Can only be called by the current owner.
  */
  function withdraw() public onlyOwner{
    payable(owner()).transfer(address(this).balance);
  }

  /**
  * @dev Used by public mint functions and by owner functions.
  * Can only be called internally by other functions.
  */
  function _mint(address to) internal virtual returns (uint256){
    _tokenIds.increment();
    uint256 id = _tokenIds.current();
    _safeMint(to, id);

    return id;
  }

  function getCost() public view returns (uint256){
    return _mintCost;
  }
  function totalSupply() public view returns (uint256){
    return _maxSupply;
  }
  function getCurrentSupply() public view returns (uint256){
    return _tokenIds.current();
  }
  function getMintStatus() public view returns (bool) {
    return _isPublicMintEnabled;
  }
  function _baseURI() override internal pure returns (string memory) {
    return "https://z97beh7bt6.execute-api.us-east-1.amazonaws.com/dev/token/";
  }
  function contractURI() public pure returns (string memory) {
    return "https://z97beh7bt6.execute-api.us-east-1.amazonaws.com/dev/contract";
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"cost","type":"uint256"},{"internalType":"uint256","name":"supply","type":"uint256"}],"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":[],"name":"allowPublicMint","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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"denyPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"mintTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"setMaxSupply","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"}]

60806040523480156200001157600080fd5b5060405162003db338038062003db38339818101604052810190620000379190620002cf565b838381600090805190602001906200005192919062000196565b5080600190805190602001906200006a92919062000196565b5050506200008d62000081620000c860201b60201c565b620000d060201b60201c565b60016007819055508160098190555080600a819055506000600b60006101000a81548160ff0219169083151502179055505050505062000501565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001a4906200040c565b90600052602060002090601f016020900481019282620001c8576000855562000214565b82601f10620001e357805160ff191683800117855562000214565b8280016001018555821562000214579182015b8281111562000213578251825591602001919060010190620001f6565b5b50905062000223919062000227565b5090565b5b808211156200024257600081600090555060010162000228565b5090565b60006200025d620002578462000396565b6200036d565b9050828152602081018484840111156200027657600080fd5b62000283848285620003d6565b509392505050565b600082601f8301126200029d57600080fd5b8151620002af84826020860162000246565b91505092915050565b600081519050620002c981620004e7565b92915050565b60008060008060808587031215620002e657600080fd5b600085015167ffffffffffffffff8111156200030157600080fd5b6200030f878288016200028b565b945050602085015167ffffffffffffffff8111156200032d57600080fd5b6200033b878288016200028b565b93505060406200034e87828801620002b8565b92505060606200036187828801620002b8565b91505092959194509250565b6000620003796200038c565b905062000387828262000442565b919050565b6000604051905090565b600067ffffffffffffffff821115620003b457620003b3620004a7565b5b620003bf82620004d6565b9050602081019050919050565b6000819050919050565b60005b83811015620003f6578082015181840152602081019050620003d9565b8381111562000406576000848401525b50505050565b600060028204905060018216806200042557607f821691505b602082108114156200043c576200043b62000478565b5b50919050565b6200044d82620004d6565b810181811067ffffffffffffffff821117156200046f576200046e620004a7565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620004f281620003cc565b8114620004fe57600080fd5b50565b6138a280620005116000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd14610590578063e8a3d485146105cd578063e985e9c5146105f8578063f2fde38b14610635576101b7565b8063a22cb46514610513578063b88d4fde1461053c578063bd3e19d414610565576101b7565b8063941ada0e116100c6578063941ada0e1461048a57806395d89b41146104b557806397304ced146104e05780639edcc310146104fc576101b7565b806370a082311461040b578063715018a6146104485780638da5cb5b1461045f576101b7565b80633ccfd60b1161015957806344a0d68a1161013357806344a0d68a146103515780634f3e1efc1461037a5780636352211e146103a55780636f8b44b0146103e2576101b7565b80633ccfd60b146102f55780633fa40f941461030c57806342842e0e14610328576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b557806335133b40146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612660565b61065e565b6040516101f09190612b15565b60405180910390f35b34801561020557600080fd5b5061020e610740565b60405161021b9190612b30565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906126b2565b6107d2565b6040516102589190612aae565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906125df565b610857565b005b34801561029657600080fd5b5061029f61096f565b6040516102ac9190612df2565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d791906124d9565b610979565b005b3480156102ea57600080fd5b506102f36109d9565b005b34801561030157600080fd5b5061030a610a72565b005b6103266004803603810190610321919061261b565b610b3e565b005b34801561033457600080fd5b5061034f600480360381019061034a91906124d9565b610c37565b005b34801561035d57600080fd5b50610378600480360381019061037391906126b2565b610c57565b005b34801561038657600080fd5b5061038f610cdd565b60405161039c9190612df2565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c791906126b2565b610cee565b6040516103d99190612aae565b60405180910390f35b3480156103ee57600080fd5b50610409600480360381019061040491906126b2565b610da0565b005b34801561041757600080fd5b50610432600480360381019061042d9190612474565b610e26565b60405161043f9190612df2565b60405180910390f35b34801561045457600080fd5b5061045d610ede565b005b34801561046b57600080fd5b50610474610f66565b6040516104819190612aae565b60405180910390f35b34801561049657600080fd5b5061049f610f90565b6040516104ac9190612b15565b60405180910390f35b3480156104c157600080fd5b506104ca610fa7565b6040516104d79190612b30565b60405180910390f35b6104fa60048036038101906104f591906126b2565b611039565b005b34801561050857600080fd5b5061051161124d565b005b34801561051f57600080fd5b5061053a600480360381019061053591906125a3565b6112e6565b005b34801561054857600080fd5b50610563600480360381019061055e9190612528565b611467565b005b34801561057157600080fd5b5061057a6114c9565b6040516105879190612df2565b60405180910390f35b34801561059c57600080fd5b506105b760048036038101906105b291906126b2565b6114d3565b6040516105c49190612b30565b60405180910390f35b3480156105d957600080fd5b506105e261157a565b6040516105ef9190612b30565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a919061249d565b61159a565b60405161062c9190612b15565b60405180910390f35b34801561064157600080fd5b5061065c60048036038101906106579190612474565b61162e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610739575061073882611726565b5b9050919050565b60606000805461074f90613071565b80601f016020809104026020016040519081016040528092919081815260200182805461077b90613071565b80156107c85780601f1061079d576101008083540402835291602001916107c8565b820191906000526020600020905b8154815290600101906020018083116107ab57829003601f168201915b5050505050905090565b60006107dd82611790565b61081c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081390612cf2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086282610cee565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca90612d72565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108f26117fc565b73ffffffffffffffffffffffffffffffffffffffff16148061092157506109208161091b6117fc565b61159a565b5b610960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095790612c12565b60405180910390fd5b61096a8383611804565b505050565b6000600a54905090565b61098a6109846117fc565b826118bd565b6109c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c090612d92565b60405180910390fd5b6109d483838361199b565b505050565b6109e16117fc565b73ffffffffffffffffffffffffffffffffffffffff166109ff610f66565b73ffffffffffffffffffffffffffffffffffffffff1614610a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4c90612d12565b60405180910390fd5b6000600b60006101000a81548160ff021916908315150217905550565b610a7a6117fc565b73ffffffffffffffffffffffffffffffffffffffff16610a98610f66565b73ffffffffffffffffffffffffffffffffffffffff1614610aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae590612d12565b60405180910390fd5b610af6610f66565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b3b573d6000803e3d6000fd5b50565b610b466117fc565b73ffffffffffffffffffffffffffffffffffffffff16610b64610f66565b73ffffffffffffffffffffffffffffffffffffffff1614610bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb190612d12565b60405180910390fd5b60005b82829050811015610c3257610c1e838383818110610c04577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610c199190612474565b611bf7565b508080610c2a906130d4565b915050610bbd565b505050565b610c5283838360405180602001604052806000815250611467565b505050565b610c5f6117fc565b73ffffffffffffffffffffffffffffffffffffffff16610c7d610f66565b73ffffffffffffffffffffffffffffffffffffffff1614610cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cca90612d12565b60405180910390fd5b8060098190555050565b6000610ce96008611c24565b905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e90612c72565b60405180910390fd5b80915050919050565b610da86117fc565b73ffffffffffffffffffffffffffffffffffffffff16610dc6610f66565b73ffffffffffffffffffffffffffffffffffffffff1614610e1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1390612d12565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8e90612c52565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ee66117fc565b73ffffffffffffffffffffffffffffffffffffffff16610f04610f66565b73ffffffffffffffffffffffffffffffffffffffff1614610f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5190612d12565b60405180910390fd5b610f646000611c32565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600b60009054906101000a900460ff16905090565b606060018054610fb690613071565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe290613071565b801561102f5780601f106110045761010080835404028352916020019161102f565b820191906000526020600020905b81548152906001019060200180831161101257829003601f168201915b5050505050905090565b6002600754141561107f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107690612dd2565b60405180910390fd5b6002600781905550600b60009054906101000a900460ff166110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90612db2565b60405180910390fd5b6000811180156110e7575060648111155b611126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111d90612c32565b60405180910390fd5b600a546111456111366008611c24565b83611cf890919063ffffffff16565b10611185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117c90612c92565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166111a4610f66565b73ffffffffffffffffffffffffffffffffffffffff1614806111da57506111d681600954611d0e90919063ffffffff16565b3410155b611219576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121090612cb2565b60405180910390fd5b60005b818110156112415761122d33611bf7565b508080611239906130d4565b91505061121c565b50600160078190555050565b6112556117fc565b73ffffffffffffffffffffffffffffffffffffffff16611273610f66565b73ffffffffffffffffffffffffffffffffffffffff16146112c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c090612d12565b60405180910390fd5b6001600b60006101000a81548160ff021916908315150217905550565b6112ee6117fc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561135c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135390612bd2565b60405180910390fd5b80600560006113696117fc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114166117fc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161145b9190612b15565b60405180910390a35050565b6114786114726117fc565b836118bd565b6114b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ae90612d92565b60405180910390fd5b6114c384848484611d24565b50505050565b6000600954905090565b60606114de82611790565b61151d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151490612d52565b60405180910390fd5b6000611527611d80565b905060008151116115475760405180602001604052806000815250611572565b8061155184611da0565b604051602001611562929190612a8a565b6040516020818303038152906040525b915050919050565b606060405180608001604052806043815260200161382a60439139905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116366117fc565b73ffffffffffffffffffffffffffffffffffffffff16611654610f66565b73ffffffffffffffffffffffffffffffffffffffff16146116aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a190612d12565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561171a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171190612b72565b60405180910390fd5b61172381611c32565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661187783610cee565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006118c882611790565b611907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fe90612bf2565b60405180910390fd5b600061191283610cee565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061198157508373ffffffffffffffffffffffffffffffffffffffff16611969846107d2565b73ffffffffffffffffffffffffffffffffffffffff16145b806119925750611991818561159a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166119bb82610cee565b73ffffffffffffffffffffffffffffffffffffffff1614611a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0890612d32565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7890612bb2565b60405180910390fd5b611a8c838383611f4d565b611a97600082611804565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ae79190612f87565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b3e9190612ea6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000611c036008611f52565b6000611c0f6008611c24565b9050611c1b8382611f68565b80915050919050565b600081600001549050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611d069190612ea6565b905092915050565b60008183611d1c9190612f2d565b905092915050565b611d2f84848461199b565b611d3b84848484611f86565b611d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7190612b52565b60405180910390fd5b50505050565b60606040518060800160405280604181526020016137e960419139905090565b60606000821415611de8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f48565b600082905060005b60008214611e1a578080611e03906130d4565b915050600a82611e139190612efc565b9150611df0565b60008167ffffffffffffffff811115611e5c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e8e5781602001600182028036833780820191505090505b5090505b60008514611f4157600182611ea79190612f87565b9150600a85611eb6919061311d565b6030611ec29190612ea6565b60f81b818381518110611efe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f3a9190612efc565b9450611e92565b8093505050505b919050565b505050565b6001816000016000828254019250508190555050565b611f8282826040518060200160405280600081525061211d565b5050565b6000611fa78473ffffffffffffffffffffffffffffffffffffffff16612178565b15612110578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fd06117fc565b8786866040518563ffffffff1660e01b8152600401611ff29493929190612ac9565b602060405180830381600087803b15801561200c57600080fd5b505af192505050801561203d57506040513d601f19601f8201168201806040525081019061203a9190612689565b60015b6120c0573d806000811461206d576040519150601f19603f3d011682016040523d82523d6000602084013e612072565b606091505b506000815114156120b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120af90612b52565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612115565b600190505b949350505050565b612127838361218b565b6121346000848484611f86565b612173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216a90612b52565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f290612cd2565b60405180910390fd5b61220481611790565b15612244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223b90612b92565b60405180910390fd5b61225060008383611f4d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122a09190612ea6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061236c61236784612e32565b612e0d565b90508281526020810184848401111561238457600080fd5b61238f84828561302f565b509392505050565b6000813590506123a68161378c565b92915050565b60008083601f8401126123be57600080fd5b8235905067ffffffffffffffff8111156123d757600080fd5b6020830191508360208202830111156123ef57600080fd5b9250929050565b600081359050612405816137a3565b92915050565b60008135905061241a816137ba565b92915050565b60008151905061242f816137ba565b92915050565b600082601f83011261244657600080fd5b8135612456848260208601612359565b91505092915050565b60008135905061246e816137d1565b92915050565b60006020828403121561248657600080fd5b600061249484828501612397565b91505092915050565b600080604083850312156124b057600080fd5b60006124be85828601612397565b92505060206124cf85828601612397565b9150509250929050565b6000806000606084860312156124ee57600080fd5b60006124fc86828701612397565b935050602061250d86828701612397565b925050604061251e8682870161245f565b9150509250925092565b6000806000806080858703121561253e57600080fd5b600061254c87828801612397565b945050602061255d87828801612397565b935050604061256e8782880161245f565b925050606085013567ffffffffffffffff81111561258b57600080fd5b61259787828801612435565b91505092959194509250565b600080604083850312156125b657600080fd5b60006125c485828601612397565b92505060206125d5858286016123f6565b9150509250929050565b600080604083850312156125f257600080fd5b600061260085828601612397565b92505060206126118582860161245f565b9150509250929050565b6000806020838503121561262e57600080fd5b600083013567ffffffffffffffff81111561264857600080fd5b612654858286016123ac565b92509250509250929050565b60006020828403121561267257600080fd5b60006126808482850161240b565b91505092915050565b60006020828403121561269b57600080fd5b60006126a984828501612420565b91505092915050565b6000602082840312156126c457600080fd5b60006126d28482850161245f565b91505092915050565b6126e481612fbb565b82525050565b6126f381612fcd565b82525050565b600061270482612e63565b61270e8185612e79565b935061271e81856020860161303e565b6127278161320a565b840191505092915050565b600061273d82612e6e565b6127478185612e8a565b935061275781856020860161303e565b6127608161320a565b840191505092915050565b600061277682612e6e565b6127808185612e9b565b935061279081856020860161303e565b80840191505092915050565b60006127a9603283612e8a565b91506127b48261321b565b604082019050919050565b60006127cc602683612e8a565b91506127d78261326a565b604082019050919050565b60006127ef601c83612e8a565b91506127fa826132b9565b602082019050919050565b6000612812602483612e8a565b915061281d826132e2565b604082019050919050565b6000612835601983612e8a565b915061284082613331565b602082019050919050565b6000612858602c83612e8a565b91506128638261335a565b604082019050919050565b600061287b603883612e8a565b9150612886826133a9565b604082019050919050565b600061289e602883612e8a565b91506128a9826133f8565b604082019050919050565b60006128c1602a83612e8a565b91506128cc82613447565b604082019050919050565b60006128e4602983612e8a565b91506128ef82613496565b604082019050919050565b6000612907601283612e8a565b9150612912826134e5565b602082019050919050565b600061292a602383612e8a565b91506129358261350e565b604082019050919050565b600061294d602083612e8a565b91506129588261355d565b602082019050919050565b6000612970602c83612e8a565b915061297b82613586565b604082019050919050565b6000612993602083612e8a565b915061299e826135d5565b602082019050919050565b60006129b6602983612e8a565b91506129c1826135fe565b604082019050919050565b60006129d9602f83612e8a565b91506129e48261364d565b604082019050919050565b60006129fc602183612e8a565b9150612a078261369c565b604082019050919050565b6000612a1f603183612e8a565b9150612a2a826136eb565b604082019050919050565b6000612a42600d83612e8a565b9150612a4d8261373a565b602082019050919050565b6000612a65601f83612e8a565b9150612a7082613763565b602082019050919050565b612a8481613025565b82525050565b6000612a96828561276b565b9150612aa2828461276b565b91508190509392505050565b6000602082019050612ac360008301846126db565b92915050565b6000608082019050612ade60008301876126db565b612aeb60208301866126db565b612af86040830185612a7b565b8181036060830152612b0a81846126f9565b905095945050505050565b6000602082019050612b2a60008301846126ea565b92915050565b60006020820190508181036000830152612b4a8184612732565b905092915050565b60006020820190508181036000830152612b6b8161279c565b9050919050565b60006020820190508181036000830152612b8b816127bf565b9050919050565b60006020820190508181036000830152612bab816127e2565b9050919050565b60006020820190508181036000830152612bcb81612805565b9050919050565b60006020820190508181036000830152612beb81612828565b9050919050565b60006020820190508181036000830152612c0b8161284b565b9050919050565b60006020820190508181036000830152612c2b8161286e565b9050919050565b60006020820190508181036000830152612c4b81612891565b9050919050565b60006020820190508181036000830152612c6b816128b4565b9050919050565b60006020820190508181036000830152612c8b816128d7565b9050919050565b60006020820190508181036000830152612cab816128fa565b9050919050565b60006020820190508181036000830152612ccb8161291d565b9050919050565b60006020820190508181036000830152612ceb81612940565b9050919050565b60006020820190508181036000830152612d0b81612963565b9050919050565b60006020820190508181036000830152612d2b81612986565b9050919050565b60006020820190508181036000830152612d4b816129a9565b9050919050565b60006020820190508181036000830152612d6b816129cc565b9050919050565b60006020820190508181036000830152612d8b816129ef565b9050919050565b60006020820190508181036000830152612dab81612a12565b9050919050565b60006020820190508181036000830152612dcb81612a35565b9050919050565b60006020820190508181036000830152612deb81612a58565b9050919050565b6000602082019050612e076000830184612a7b565b92915050565b6000612e17612e28565b9050612e2382826130a3565b919050565b6000604051905090565b600067ffffffffffffffff821115612e4d57612e4c6131db565b5b612e568261320a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612eb182613025565b9150612ebc83613025565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ef157612ef061314e565b5b828201905092915050565b6000612f0782613025565b9150612f1283613025565b925082612f2257612f2161317d565b5b828204905092915050565b6000612f3882613025565b9150612f4383613025565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f7c57612f7b61314e565b5b828202905092915050565b6000612f9282613025565b9150612f9d83613025565b925082821015612fb057612faf61314e565b5b828203905092915050565b6000612fc682613005565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561305c578082015181840152602081019050613041565b8381111561306b576000848401525b50505050565b6000600282049050600182168061308957607f821691505b6020821081141561309d5761309c6131ac565b5b50919050565b6130ac8261320a565b810181811067ffffffffffffffff821117156130cb576130ca6131db565b5b80604052505050565b60006130df82613025565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156131125761311161314e565b5b600182019050919050565b600061312882613025565b915061313383613025565b9250826131435761314261317d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f596f752063616e2064726f70206d696e696d756d20312c206d6178696d756d2060008201527f313030204e465473000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f45746865722076616c75652073656e742069732062656c6f772074686520707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d696e742064697361626c656400000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61379581612fbb565b81146137a057600080fd5b50565b6137ac81612fcd565b81146137b757600080fd5b50565b6137c381612fd9565b81146137ce57600080fd5b50565b6137da81613025565b81146137e557600080fd5b5056fe68747470733a2f2f7a3937626568376274362e657865637574652d6170692e75732d656173742d312e616d617a6f6e6177732e636f6d2f6465762f746f6b656e2f68747470733a2f2f7a3937626568376274362e657865637574652d6170692e75732d656173742d312e616d617a6f6e6177732e636f6d2f6465762f636f6e7472616374a2646970667358221220ff77020625710a079f68e18231df73185d1ba408735c701d53c128cd9f91405364736f6c63430008040033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000b1a2bc2ec500000000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000843525950544f455300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034354530000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd14610590578063e8a3d485146105cd578063e985e9c5146105f8578063f2fde38b14610635576101b7565b8063a22cb46514610513578063b88d4fde1461053c578063bd3e19d414610565576101b7565b8063941ada0e116100c6578063941ada0e1461048a57806395d89b41146104b557806397304ced146104e05780639edcc310146104fc576101b7565b806370a082311461040b578063715018a6146104485780638da5cb5b1461045f576101b7565b80633ccfd60b1161015957806344a0d68a1161013357806344a0d68a146103515780634f3e1efc1461037a5780636352211e146103a55780636f8b44b0146103e2576101b7565b80633ccfd60b146102f55780633fa40f941461030c57806342842e0e14610328576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b557806335133b40146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612660565b61065e565b6040516101f09190612b15565b60405180910390f35b34801561020557600080fd5b5061020e610740565b60405161021b9190612b30565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906126b2565b6107d2565b6040516102589190612aae565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906125df565b610857565b005b34801561029657600080fd5b5061029f61096f565b6040516102ac9190612df2565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d791906124d9565b610979565b005b3480156102ea57600080fd5b506102f36109d9565b005b34801561030157600080fd5b5061030a610a72565b005b6103266004803603810190610321919061261b565b610b3e565b005b34801561033457600080fd5b5061034f600480360381019061034a91906124d9565b610c37565b005b34801561035d57600080fd5b50610378600480360381019061037391906126b2565b610c57565b005b34801561038657600080fd5b5061038f610cdd565b60405161039c9190612df2565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c791906126b2565b610cee565b6040516103d99190612aae565b60405180910390f35b3480156103ee57600080fd5b50610409600480360381019061040491906126b2565b610da0565b005b34801561041757600080fd5b50610432600480360381019061042d9190612474565b610e26565b60405161043f9190612df2565b60405180910390f35b34801561045457600080fd5b5061045d610ede565b005b34801561046b57600080fd5b50610474610f66565b6040516104819190612aae565b60405180910390f35b34801561049657600080fd5b5061049f610f90565b6040516104ac9190612b15565b60405180910390f35b3480156104c157600080fd5b506104ca610fa7565b6040516104d79190612b30565b60405180910390f35b6104fa60048036038101906104f591906126b2565b611039565b005b34801561050857600080fd5b5061051161124d565b005b34801561051f57600080fd5b5061053a600480360381019061053591906125a3565b6112e6565b005b34801561054857600080fd5b50610563600480360381019061055e9190612528565b611467565b005b34801561057157600080fd5b5061057a6114c9565b6040516105879190612df2565b60405180910390f35b34801561059c57600080fd5b506105b760048036038101906105b291906126b2565b6114d3565b6040516105c49190612b30565b60405180910390f35b3480156105d957600080fd5b506105e261157a565b6040516105ef9190612b30565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a919061249d565b61159a565b60405161062c9190612b15565b60405180910390f35b34801561064157600080fd5b5061065c60048036038101906106579190612474565b61162e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610739575061073882611726565b5b9050919050565b60606000805461074f90613071565b80601f016020809104026020016040519081016040528092919081815260200182805461077b90613071565b80156107c85780601f1061079d576101008083540402835291602001916107c8565b820191906000526020600020905b8154815290600101906020018083116107ab57829003601f168201915b5050505050905090565b60006107dd82611790565b61081c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081390612cf2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086282610cee565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca90612d72565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108f26117fc565b73ffffffffffffffffffffffffffffffffffffffff16148061092157506109208161091b6117fc565b61159a565b5b610960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095790612c12565b60405180910390fd5b61096a8383611804565b505050565b6000600a54905090565b61098a6109846117fc565b826118bd565b6109c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c090612d92565b60405180910390fd5b6109d483838361199b565b505050565b6109e16117fc565b73ffffffffffffffffffffffffffffffffffffffff166109ff610f66565b73ffffffffffffffffffffffffffffffffffffffff1614610a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4c90612d12565b60405180910390fd5b6000600b60006101000a81548160ff021916908315150217905550565b610a7a6117fc565b73ffffffffffffffffffffffffffffffffffffffff16610a98610f66565b73ffffffffffffffffffffffffffffffffffffffff1614610aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae590612d12565b60405180910390fd5b610af6610f66565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b3b573d6000803e3d6000fd5b50565b610b466117fc565b73ffffffffffffffffffffffffffffffffffffffff16610b64610f66565b73ffffffffffffffffffffffffffffffffffffffff1614610bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb190612d12565b60405180910390fd5b60005b82829050811015610c3257610c1e838383818110610c04577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610c199190612474565b611bf7565b508080610c2a906130d4565b915050610bbd565b505050565b610c5283838360405180602001604052806000815250611467565b505050565b610c5f6117fc565b73ffffffffffffffffffffffffffffffffffffffff16610c7d610f66565b73ffffffffffffffffffffffffffffffffffffffff1614610cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cca90612d12565b60405180910390fd5b8060098190555050565b6000610ce96008611c24565b905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e90612c72565b60405180910390fd5b80915050919050565b610da86117fc565b73ffffffffffffffffffffffffffffffffffffffff16610dc6610f66565b73ffffffffffffffffffffffffffffffffffffffff1614610e1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1390612d12565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8e90612c52565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ee66117fc565b73ffffffffffffffffffffffffffffffffffffffff16610f04610f66565b73ffffffffffffffffffffffffffffffffffffffff1614610f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5190612d12565b60405180910390fd5b610f646000611c32565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600b60009054906101000a900460ff16905090565b606060018054610fb690613071565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe290613071565b801561102f5780601f106110045761010080835404028352916020019161102f565b820191906000526020600020905b81548152906001019060200180831161101257829003601f168201915b5050505050905090565b6002600754141561107f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107690612dd2565b60405180910390fd5b6002600781905550600b60009054906101000a900460ff166110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90612db2565b60405180910390fd5b6000811180156110e7575060648111155b611126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111d90612c32565b60405180910390fd5b600a546111456111366008611c24565b83611cf890919063ffffffff16565b10611185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117c90612c92565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166111a4610f66565b73ffffffffffffffffffffffffffffffffffffffff1614806111da57506111d681600954611d0e90919063ffffffff16565b3410155b611219576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121090612cb2565b60405180910390fd5b60005b818110156112415761122d33611bf7565b508080611239906130d4565b91505061121c565b50600160078190555050565b6112556117fc565b73ffffffffffffffffffffffffffffffffffffffff16611273610f66565b73ffffffffffffffffffffffffffffffffffffffff16146112c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c090612d12565b60405180910390fd5b6001600b60006101000a81548160ff021916908315150217905550565b6112ee6117fc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561135c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135390612bd2565b60405180910390fd5b80600560006113696117fc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114166117fc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161145b9190612b15565b60405180910390a35050565b6114786114726117fc565b836118bd565b6114b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ae90612d92565b60405180910390fd5b6114c384848484611d24565b50505050565b6000600954905090565b60606114de82611790565b61151d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151490612d52565b60405180910390fd5b6000611527611d80565b905060008151116115475760405180602001604052806000815250611572565b8061155184611da0565b604051602001611562929190612a8a565b6040516020818303038152906040525b915050919050565b606060405180608001604052806043815260200161382a60439139905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116366117fc565b73ffffffffffffffffffffffffffffffffffffffff16611654610f66565b73ffffffffffffffffffffffffffffffffffffffff16146116aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a190612d12565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561171a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171190612b72565b60405180910390fd5b61172381611c32565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661187783610cee565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006118c882611790565b611907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fe90612bf2565b60405180910390fd5b600061191283610cee565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061198157508373ffffffffffffffffffffffffffffffffffffffff16611969846107d2565b73ffffffffffffffffffffffffffffffffffffffff16145b806119925750611991818561159a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166119bb82610cee565b73ffffffffffffffffffffffffffffffffffffffff1614611a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0890612d32565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7890612bb2565b60405180910390fd5b611a8c838383611f4d565b611a97600082611804565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ae79190612f87565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b3e9190612ea6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000611c036008611f52565b6000611c0f6008611c24565b9050611c1b8382611f68565b80915050919050565b600081600001549050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611d069190612ea6565b905092915050565b60008183611d1c9190612f2d565b905092915050565b611d2f84848461199b565b611d3b84848484611f86565b611d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7190612b52565b60405180910390fd5b50505050565b60606040518060800160405280604181526020016137e960419139905090565b60606000821415611de8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f48565b600082905060005b60008214611e1a578080611e03906130d4565b915050600a82611e139190612efc565b9150611df0565b60008167ffffffffffffffff811115611e5c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e8e5781602001600182028036833780820191505090505b5090505b60008514611f4157600182611ea79190612f87565b9150600a85611eb6919061311d565b6030611ec29190612ea6565b60f81b818381518110611efe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f3a9190612efc565b9450611e92565b8093505050505b919050565b505050565b6001816000016000828254019250508190555050565b611f8282826040518060200160405280600081525061211d565b5050565b6000611fa78473ffffffffffffffffffffffffffffffffffffffff16612178565b15612110578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fd06117fc565b8786866040518563ffffffff1660e01b8152600401611ff29493929190612ac9565b602060405180830381600087803b15801561200c57600080fd5b505af192505050801561203d57506040513d601f19601f8201168201806040525081019061203a9190612689565b60015b6120c0573d806000811461206d576040519150601f19603f3d011682016040523d82523d6000602084013e612072565b606091505b506000815114156120b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120af90612b52565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612115565b600190505b949350505050565b612127838361218b565b6121346000848484611f86565b612173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216a90612b52565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f290612cd2565b60405180910390fd5b61220481611790565b15612244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223b90612b92565b60405180910390fd5b61225060008383611f4d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122a09190612ea6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061236c61236784612e32565b612e0d565b90508281526020810184848401111561238457600080fd5b61238f84828561302f565b509392505050565b6000813590506123a68161378c565b92915050565b60008083601f8401126123be57600080fd5b8235905067ffffffffffffffff8111156123d757600080fd5b6020830191508360208202830111156123ef57600080fd5b9250929050565b600081359050612405816137a3565b92915050565b60008135905061241a816137ba565b92915050565b60008151905061242f816137ba565b92915050565b600082601f83011261244657600080fd5b8135612456848260208601612359565b91505092915050565b60008135905061246e816137d1565b92915050565b60006020828403121561248657600080fd5b600061249484828501612397565b91505092915050565b600080604083850312156124b057600080fd5b60006124be85828601612397565b92505060206124cf85828601612397565b9150509250929050565b6000806000606084860312156124ee57600080fd5b60006124fc86828701612397565b935050602061250d86828701612397565b925050604061251e8682870161245f565b9150509250925092565b6000806000806080858703121561253e57600080fd5b600061254c87828801612397565b945050602061255d87828801612397565b935050604061256e8782880161245f565b925050606085013567ffffffffffffffff81111561258b57600080fd5b61259787828801612435565b91505092959194509250565b600080604083850312156125b657600080fd5b60006125c485828601612397565b92505060206125d5858286016123f6565b9150509250929050565b600080604083850312156125f257600080fd5b600061260085828601612397565b92505060206126118582860161245f565b9150509250929050565b6000806020838503121561262e57600080fd5b600083013567ffffffffffffffff81111561264857600080fd5b612654858286016123ac565b92509250509250929050565b60006020828403121561267257600080fd5b60006126808482850161240b565b91505092915050565b60006020828403121561269b57600080fd5b60006126a984828501612420565b91505092915050565b6000602082840312156126c457600080fd5b60006126d28482850161245f565b91505092915050565b6126e481612fbb565b82525050565b6126f381612fcd565b82525050565b600061270482612e63565b61270e8185612e79565b935061271e81856020860161303e565b6127278161320a565b840191505092915050565b600061273d82612e6e565b6127478185612e8a565b935061275781856020860161303e565b6127608161320a565b840191505092915050565b600061277682612e6e565b6127808185612e9b565b935061279081856020860161303e565b80840191505092915050565b60006127a9603283612e8a565b91506127b48261321b565b604082019050919050565b60006127cc602683612e8a565b91506127d78261326a565b604082019050919050565b60006127ef601c83612e8a565b91506127fa826132b9565b602082019050919050565b6000612812602483612e8a565b915061281d826132e2565b604082019050919050565b6000612835601983612e8a565b915061284082613331565b602082019050919050565b6000612858602c83612e8a565b91506128638261335a565b604082019050919050565b600061287b603883612e8a565b9150612886826133a9565b604082019050919050565b600061289e602883612e8a565b91506128a9826133f8565b604082019050919050565b60006128c1602a83612e8a565b91506128cc82613447565b604082019050919050565b60006128e4602983612e8a565b91506128ef82613496565b604082019050919050565b6000612907601283612e8a565b9150612912826134e5565b602082019050919050565b600061292a602383612e8a565b91506129358261350e565b604082019050919050565b600061294d602083612e8a565b91506129588261355d565b602082019050919050565b6000612970602c83612e8a565b915061297b82613586565b604082019050919050565b6000612993602083612e8a565b915061299e826135d5565b602082019050919050565b60006129b6602983612e8a565b91506129c1826135fe565b604082019050919050565b60006129d9602f83612e8a565b91506129e48261364d565b604082019050919050565b60006129fc602183612e8a565b9150612a078261369c565b604082019050919050565b6000612a1f603183612e8a565b9150612a2a826136eb565b604082019050919050565b6000612a42600d83612e8a565b9150612a4d8261373a565b602082019050919050565b6000612a65601f83612e8a565b9150612a7082613763565b602082019050919050565b612a8481613025565b82525050565b6000612a96828561276b565b9150612aa2828461276b565b91508190509392505050565b6000602082019050612ac360008301846126db565b92915050565b6000608082019050612ade60008301876126db565b612aeb60208301866126db565b612af86040830185612a7b565b8181036060830152612b0a81846126f9565b905095945050505050565b6000602082019050612b2a60008301846126ea565b92915050565b60006020820190508181036000830152612b4a8184612732565b905092915050565b60006020820190508181036000830152612b6b8161279c565b9050919050565b60006020820190508181036000830152612b8b816127bf565b9050919050565b60006020820190508181036000830152612bab816127e2565b9050919050565b60006020820190508181036000830152612bcb81612805565b9050919050565b60006020820190508181036000830152612beb81612828565b9050919050565b60006020820190508181036000830152612c0b8161284b565b9050919050565b60006020820190508181036000830152612c2b8161286e565b9050919050565b60006020820190508181036000830152612c4b81612891565b9050919050565b60006020820190508181036000830152612c6b816128b4565b9050919050565b60006020820190508181036000830152612c8b816128d7565b9050919050565b60006020820190508181036000830152612cab816128fa565b9050919050565b60006020820190508181036000830152612ccb8161291d565b9050919050565b60006020820190508181036000830152612ceb81612940565b9050919050565b60006020820190508181036000830152612d0b81612963565b9050919050565b60006020820190508181036000830152612d2b81612986565b9050919050565b60006020820190508181036000830152612d4b816129a9565b9050919050565b60006020820190508181036000830152612d6b816129cc565b9050919050565b60006020820190508181036000830152612d8b816129ef565b9050919050565b60006020820190508181036000830152612dab81612a12565b9050919050565b60006020820190508181036000830152612dcb81612a35565b9050919050565b60006020820190508181036000830152612deb81612a58565b9050919050565b6000602082019050612e076000830184612a7b565b92915050565b6000612e17612e28565b9050612e2382826130a3565b919050565b6000604051905090565b600067ffffffffffffffff821115612e4d57612e4c6131db565b5b612e568261320a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612eb182613025565b9150612ebc83613025565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ef157612ef061314e565b5b828201905092915050565b6000612f0782613025565b9150612f1283613025565b925082612f2257612f2161317d565b5b828204905092915050565b6000612f3882613025565b9150612f4383613025565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f7c57612f7b61314e565b5b828202905092915050565b6000612f9282613025565b9150612f9d83613025565b925082821015612fb057612faf61314e565b5b828203905092915050565b6000612fc682613005565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561305c578082015181840152602081019050613041565b8381111561306b576000848401525b50505050565b6000600282049050600182168061308957607f821691505b6020821081141561309d5761309c6131ac565b5b50919050565b6130ac8261320a565b810181811067ffffffffffffffff821117156130cb576130ca6131db565b5b80604052505050565b60006130df82613025565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156131125761311161314e565b5b600182019050919050565b600061312882613025565b915061313383613025565b9250826131435761314261317d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f596f752063616e2064726f70206d696e696d756d20312c206d6178696d756d2060008201527f313030204e465473000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f45746865722076616c75652073656e742069732062656c6f772074686520707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d696e742064697361626c656400000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61379581612fbb565b81146137a057600080fd5b50565b6137ac81612fcd565b81146137b757600080fd5b50565b6137c381612fd9565b81146137ce57600080fd5b50565b6137da81613025565b81146137e557600080fd5b5056fe68747470733a2f2f7a3937626568376274362e657865637574652d6170692e75732d656173742d312e616d617a6f6e6177732e636f6d2f6465762f746f6b656e2f68747470733a2f2f7a3937626568376274362e657865637574652d6170692e75732d656173742d312e616d617a6f6e6177732e636f6d2f6465762f636f6e7472616374a2646970667358221220ff77020625710a079f68e18231df73185d1ba408735c701d53c128cd9f91405364736f6c63430008040033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000b1a2bc2ec500000000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000843525950544f455300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034354530000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : tokenName (string): CRYPTOES
Arg [1] : symbol (string): CTS
Arg [2] : cost (uint256): 50000000000000000
Arg [3] : supply (uint256): 10000

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000000000000000000000000000000b1a2bc2ec50000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 43525950544f4553000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4354530000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

44846:3586:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19705:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20650:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22209:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21732:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47841:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23099:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45898:89;;;;;;;;;;;;;:::i;:::-;;47343:97;;;;;;;;;;;;;:::i;:::-;;46685:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23509:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46968:76;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47927:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20344:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47142:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20074:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34737:94;;;;;;;;;;;;;:::i;:::-;;34086:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48027:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20819:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46073:491;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45661:89;;;;;;;;;;;;;:::i;:::-;;22502:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23765:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47760:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20994:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48281:148;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22868:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34986:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19705:305;19807:4;19859:25;19844:40;;;:11;:40;;;;:105;;;;19916:33;19901:48;;;:11;:48;;;;19844:105;:158;;;;19966:36;19990:11;19966:23;:36::i;:::-;19844:158;19824:178;;19705:305;;;:::o;20650:100::-;20704:13;20737:5;20730:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20650:100;:::o;22209:221::-;22285:7;22313:16;22321:7;22313;:16::i;:::-;22305:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22398:15;:24;22414:7;22398:24;;;;;;;;;;;;;;;;;;;;;22391:31;;22209:221;;;:::o;21732:411::-;21813:13;21829:23;21844:7;21829:14;:23::i;:::-;21813:39;;21877:5;21871:11;;:2;:11;;;;21863:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;21971:5;21955:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;21980:37;21997:5;22004:12;:10;:12::i;:::-;21980:16;:37::i;:::-;21955:62;21933:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;22114:21;22123:2;22127:7;22114:8;:21::i;:::-;21732:411;;;:::o;47841:82::-;47885:7;47907:10;;47900:17;;47841:82;:::o;23099:339::-;23294:41;23313:12;:10;:12::i;:::-;23327:7;23294:18;:41::i;:::-;23286:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23402:28;23412:4;23418:2;23422:7;23402:9;:28::i;:::-;23099:339;;;:::o;45898:89::-;34317:12;:10;:12::i;:::-;34306:23;;:7;:5;:7::i;:::-;:23;;;34298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45976:5:::1;45953:20;;:28;;;;;;;;;;;;;;;;;;45898:89::o:0;47343:97::-;34317:12;:10;:12::i;:::-;34306:23;;:7;:5;:7::i;:::-;:23;;;34298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47394:7:::1;:5;:7::i;:::-;47386:25;;:48;47412:21;47386:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;47343:97::o:0;46685:175::-;34317:12;:10;:12::i;:::-;34306:23;;:7;:5;:7::i;:::-;:23;;;34298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46780:6:::1;46776:79;46792:10;;:17;;46790:1;:19;46776:79;;;46826:20;46832:10;;46843:1;46832:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46826:5;:20::i;:::-;;46811:3;;;;;:::i;:::-;;;;46776:79;;;;46685:175:::0;;:::o;23509:185::-;23647:39;23664:4;23670:2;23674:7;23647:39;;;;;;;;;;;;:16;:39::i;:::-;23509:185;;;:::o;46968:76::-;34317:12;:10;:12::i;:::-;34306:23;;:7;:5;:7::i;:::-;:23;;;34298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47034:4:::1;47022:9;:16;;;;46968:76:::0;:::o;47927:96::-;47976:7;47998:19;:9;:17;:19::i;:::-;47991:26;;47927:96;:::o;20344:239::-;20416:7;20436:13;20452:7;:16;20460:7;20452:16;;;;;;;;;;;;;;;;;;;;;20436:32;;20504:1;20487:19;;:5;:19;;;;20479:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20570:5;20563:12;;;20344:239;;;:::o;47142:80::-;34317:12;:10;:12::i;:::-;34306:23;;:7;:5;:7::i;:::-;:23;;;34298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47213:3:::1;47200:10;:16;;;;47142:80:::0;:::o;20074:208::-;20146:7;20191:1;20174:19;;:5;:19;;;;20166:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;20258:9;:16;20268:5;20258:16;;;;;;;;;;;;;;;;20251:23;;20074:208;;;:::o;34737:94::-;34317:12;:10;:12::i;:::-;34306:23;;:7;:5;:7::i;:::-;:23;;;34298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34802:21:::1;34820:1;34802:9;:21::i;:::-;34737:94::o:0;34086:87::-;34132:7;34159:6;;;;;;;;;;;34152:13;;34086:87;:::o;48027:92::-;48073:4;48093:20;;;;;;;;;;;48086:27;;48027:92;:::o;20819:104::-;20875:13;20908:7;20901:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20819:104;:::o;46073:491::-;43899:1;44495:7;;:19;;44487:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;43899:1;44628:7;:18;;;;46159:20:::1;;;;;;;;;;;46151:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;46220:1;46212:5;:9;:25;;;;;46234:3;46225:5;:12;;46212:25;46204:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;46330:10;;46297:30;46307:19;:9;:17;:19::i;:::-;46297:5;:9;;:30;;;;:::i;:::-;:43;46289:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;46389:10;46378:21;;:7;:5;:7::i;:::-;:21;;;:58;;;;46416:20;46430:5;46416:9;;:13;;:20;;;;:::i;:::-;46403:9;:33;;46378:58;46370:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;46499:6;46495:64;46511:5;46509:1;:7;46495:64;;;46533:17;46539:10;46533:5;:17::i;:::-;;46518:3;;;;;:::i;:::-;;;;46495:64;;;;43855:1:::0;44807:7;:22;;;;46073:491;:::o;45661:89::-;34317:12;:10;:12::i;:::-;34306:23;;:7;:5;:7::i;:::-;:23;;;34298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45740:4:::1;45717:20;;:27;;;;;;;;;;;;;;;;;;45661:89::o:0;22502:295::-;22617:12;:10;:12::i;:::-;22605:24;;:8;:24;;;;22597:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;22717:8;22672:18;:32;22691:12;:10;:12::i;:::-;22672:32;;;;;;;;;;;;;;;:42;22705:8;22672:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;22770:8;22741:48;;22756:12;:10;:12::i;:::-;22741:48;;;22780:8;22741:48;;;;;;:::i;:::-;;;;;;;;22502:295;;:::o;23765:328::-;23940:41;23959:12;:10;:12::i;:::-;23973:7;23940:18;:41::i;:::-;23932:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24046:39;24060:4;24066:2;24070:7;24079:5;24046:13;:39::i;:::-;23765:328;;;;:::o;47760:77::-;47800:7;47822:9;;47815:16;;47760:77;:::o;20994:334::-;21067:13;21101:16;21109:7;21101;:16::i;:::-;21093:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;21182:21;21206:10;:8;:10::i;:::-;21182:34;;21258:1;21240:7;21234:21;:25;:86;;;;;;;;;;;;;;;;;21286:7;21295:18;:7;:16;:18::i;:::-;21269:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21234:86;21227:93;;;20994:334;;;:::o;48281:148::-;48325:13;48347:76;;;;;;;;;;;;;;;;;;;48281:148;:::o;22868:164::-;22965:4;22989:18;:25;23008:5;22989:25;;;;;;;;;;;;;;;:35;23015:8;22989:35;;;;;;;;;;;;;;;;;;;;;;;;;22982:42;;22868:164;;;;:::o;34986:192::-;34317:12;:10;:12::i;:::-;34306:23;;:7;:5;:7::i;:::-;:23;;;34298:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35095:1:::1;35075:22;;:8;:22;;;;35067:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;35151:19;35161:8;35151:9;:19::i;:::-;34986:192:::0;:::o;18312:157::-;18397:4;18436:25;18421:40;;;:11;:40;;;;18414:47;;18312:157;;;:::o;25603:127::-;25668:4;25720:1;25692:30;;:7;:16;25700:7;25692:16;;;;;;;;;;;;;;;;;;;;;:30;;;;25685:37;;25603:127;;;:::o;1357:98::-;1410:7;1437:10;1430:17;;1357:98;:::o;29585:174::-;29687:2;29660:15;:24;29676:7;29660:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;29743:7;29739:2;29705:46;;29714:23;29729:7;29714:14;:23::i;:::-;29705:46;;;;;;;;;;;;29585:174;;:::o;25897:348::-;25990:4;26015:16;26023:7;26015;:16::i;:::-;26007:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26091:13;26107:23;26122:7;26107:14;:23::i;:::-;26091:39;;26160:5;26149:16;;:7;:16;;;:51;;;;26193:7;26169:31;;:20;26181:7;26169:11;:20::i;:::-;:31;;;26149:51;:87;;;;26204:32;26221:5;26228:7;26204:16;:32::i;:::-;26149:87;26141:96;;;25897:348;;;;:::o;28889:578::-;29048:4;29021:31;;:23;29036:7;29021:14;:23::i;:::-;:31;;;29013:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29131:1;29117:16;;:2;:16;;;;29109:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29187:39;29208:4;29214:2;29218:7;29187:20;:39::i;:::-;29291:29;29308:1;29312:7;29291:8;:29::i;:::-;29352:1;29333:9;:15;29343:4;29333:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29381:1;29364:9;:13;29374:2;29364:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29412:2;29393:7;:16;29401:7;29393:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29451:7;29447:2;29432:27;;29441:4;29432:27;;;;;;;;;;;;28889:578;;;:::o;47578:176::-;47631:7;47646:21;:9;:19;:21::i;:::-;47674:10;47687:19;:9;:17;:19::i;:::-;47674:32;;47713:17;47723:2;47727;47713:9;:17::i;:::-;47746:2;47739:9;;;47578:176;;;:::o;32571:114::-;32636:7;32663;:14;;;32656:21;;32571:114;;;:::o;35186:173::-;35242:16;35261:6;;;;;;;;;;;35242:25;;35287:8;35278:6;;:17;;;;;;;;;;;;;;;;;;35342:8;35311:40;;35332:8;35311:40;;;;;;;;;;;;35186:173;;:::o;38075:98::-;38133:7;38164:1;38160;:5;;;;:::i;:::-;38153:12;;38075:98;;;;:::o;38813:::-;38871:7;38902:1;38898;:5;;;;:::i;:::-;38891:12;;38813:98;;;;:::o;24975:315::-;25132:28;25142:4;25148:2;25152:7;25132:9;:28::i;:::-;25179:48;25202:4;25208:2;25212:7;25221:5;25179:22;:48::i;:::-;25171:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;24975:315;;;;:::o;48123:154::-;48175:13;48197:74;;;;;;;;;;;;;;;;;;;48123:154;:::o;1803:723::-;1859:13;2089:1;2080:5;:10;2076:53;;;2107:10;;;;;;;;;;;;;;;;;;;;;2076:53;2139:12;2154:5;2139:20;;2170:14;2195:78;2210:1;2202:4;:9;2195:78;;2228:8;;;;;:::i;:::-;;;;2259:2;2251:10;;;;;:::i;:::-;;;2195:78;;;2283:19;2315:6;2305:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2283:39;;2333:154;2349:1;2340:5;:10;2333:154;;2377:1;2367:11;;;;;:::i;:::-;;;2444:2;2436:5;:10;;;;:::i;:::-;2423:2;:24;;;;:::i;:::-;2410:39;;2393:6;2400;2393:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;2473:2;2464:11;;;;;:::i;:::-;;;2333:154;;;2511:6;2497:21;;;;;1803:723;;;;:::o;31699:126::-;;;;:::o;32693:127::-;32800:1;32782:7;:14;;;:19;;;;;;;;;;;32693:127;:::o;26587:110::-;26663:26;26673:2;26677:7;26663:26;;;;;;;;;;;;:9;:26::i;:::-;26587:110;;:::o;30324:803::-;30479:4;30500:15;:2;:13;;;:15::i;:::-;30496:624;;;30552:2;30536:36;;;30573:12;:10;:12::i;:::-;30587:4;30593:7;30602:5;30536:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;30532:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30799:1;30782:6;:13;:18;30778:272;;;30825:60;;;;;;;;;;:::i;:::-;;;;;;;;30778:272;31000:6;30994:13;30985:6;30981:2;30977:15;30970:38;30532:533;30669:45;;;30659:55;;;:6;:55;;;;30652:62;;;;;30496:624;31104:4;31097:11;;30324:803;;;;;;;:::o;26924:321::-;27054:18;27060:2;27064:7;27054:5;:18::i;:::-;27105:54;27136:1;27140:2;27144:7;27153:5;27105:22;:54::i;:::-;27083:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;26924:321;;;:::o;10484:387::-;10544:4;10752:12;10819:7;10807:20;10799:28;;10862:1;10855:4;:8;10848:15;;;10484:387;;;:::o;27581:382::-;27675:1;27661:16;;:2;:16;;;;27653:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;27734:16;27742:7;27734;:16::i;:::-;27733:17;27725:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27796:45;27825:1;27829:2;27833:7;27796:20;:45::i;:::-;27871:1;27854:9;:13;27864:2;27854:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;27902:2;27883:7;:16;27891:7;27883:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;27947:7;27943:2;27922:33;;27939:1;27922:33;;;;;;;;;;;;27581:382;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:139::-;402:5;440:6;427:20;418:29;;456:33;483:5;456:33;:::i;:::-;408:87;;;;:::o;518:367::-;591:8;601:6;651:3;644:4;636:6;632:17;628:27;618:2;;669:1;666;659:12;618:2;705:6;692:20;682:30;;735:18;727:6;724:30;721:2;;;767:1;764;757:12;721:2;804:4;796:6;792:17;780:29;;858:3;850:4;842:6;838:17;828:8;824:32;821:41;818:2;;;875:1;872;865:12;818:2;608:277;;;;;:::o;891:133::-;934:5;972:6;959:20;950:29;;988:30;1012:5;988:30;:::i;:::-;940:84;;;;:::o;1030:137::-;1075:5;1113:6;1100:20;1091:29;;1129:32;1155:5;1129:32;:::i;:::-;1081:86;;;;:::o;1173:141::-;1229:5;1260:6;1254:13;1245:22;;1276:32;1302:5;1276:32;:::i;:::-;1235:79;;;;:::o;1333:271::-;1388:5;1437:3;1430:4;1422:6;1418:17;1414:27;1404:2;;1455:1;1452;1445:12;1404:2;1495:6;1482:20;1520:78;1594:3;1586:6;1579:4;1571:6;1567:17;1520:78;:::i;:::-;1511:87;;1394:210;;;;;:::o;1610:139::-;1656:5;1694:6;1681:20;1672:29;;1710:33;1737:5;1710:33;:::i;:::-;1662:87;;;;:::o;1755:262::-;1814:6;1863:2;1851:9;1842:7;1838:23;1834:32;1831:2;;;1879:1;1876;1869:12;1831:2;1922:1;1947:53;1992:7;1983:6;1972:9;1968:22;1947:53;:::i;:::-;1937:63;;1893:117;1821:196;;;;:::o;2023:407::-;2091:6;2099;2148:2;2136:9;2127:7;2123:23;2119:32;2116:2;;;2164:1;2161;2154:12;2116:2;2207:1;2232:53;2277:7;2268:6;2257:9;2253:22;2232:53;:::i;:::-;2222:63;;2178:117;2334:2;2360:53;2405:7;2396:6;2385:9;2381:22;2360:53;:::i;:::-;2350:63;;2305:118;2106:324;;;;;:::o;2436:552::-;2513:6;2521;2529;2578:2;2566:9;2557:7;2553:23;2549:32;2546:2;;;2594:1;2591;2584:12;2546:2;2637:1;2662:53;2707:7;2698:6;2687:9;2683:22;2662:53;:::i;:::-;2652:63;;2608:117;2764:2;2790:53;2835:7;2826:6;2815:9;2811:22;2790:53;:::i;:::-;2780:63;;2735:118;2892:2;2918:53;2963:7;2954:6;2943:9;2939:22;2918:53;:::i;:::-;2908:63;;2863:118;2536:452;;;;;:::o;2994:809::-;3089:6;3097;3105;3113;3162:3;3150:9;3141:7;3137:23;3133:33;3130:2;;;3179:1;3176;3169:12;3130:2;3222:1;3247:53;3292:7;3283:6;3272:9;3268:22;3247:53;:::i;:::-;3237:63;;3193:117;3349:2;3375:53;3420:7;3411:6;3400:9;3396:22;3375:53;:::i;:::-;3365:63;;3320:118;3477:2;3503:53;3548:7;3539:6;3528:9;3524:22;3503:53;:::i;:::-;3493:63;;3448:118;3633:2;3622:9;3618:18;3605:32;3664:18;3656:6;3653:30;3650:2;;;3696:1;3693;3686:12;3650:2;3724:62;3778:7;3769:6;3758:9;3754:22;3724:62;:::i;:::-;3714:72;;3576:220;3120:683;;;;;;;:::o;3809:401::-;3874:6;3882;3931:2;3919:9;3910:7;3906:23;3902:32;3899:2;;;3947:1;3944;3937:12;3899:2;3990:1;4015:53;4060:7;4051:6;4040:9;4036:22;4015:53;:::i;:::-;4005:63;;3961:117;4117:2;4143:50;4185:7;4176:6;4165:9;4161:22;4143:50;:::i;:::-;4133:60;;4088:115;3889:321;;;;;:::o;4216:407::-;4284:6;4292;4341:2;4329:9;4320:7;4316:23;4312:32;4309:2;;;4357:1;4354;4347:12;4309:2;4400:1;4425:53;4470:7;4461:6;4450:9;4446:22;4425:53;:::i;:::-;4415:63;;4371:117;4527:2;4553:53;4598:7;4589:6;4578:9;4574:22;4553:53;:::i;:::-;4543:63;;4498:118;4299:324;;;;;:::o;4629:425::-;4715:6;4723;4772:2;4760:9;4751:7;4747:23;4743:32;4740:2;;;4788:1;4785;4778:12;4740:2;4859:1;4848:9;4844:17;4831:31;4889:18;4881:6;4878:30;4875:2;;;4921:1;4918;4911:12;4875:2;4957:80;5029:7;5020:6;5009:9;5005:22;4957:80;:::i;:::-;4939:98;;;;4802:245;4730:324;;;;;:::o;5060:260::-;5118:6;5167:2;5155:9;5146:7;5142:23;5138:32;5135:2;;;5183:1;5180;5173:12;5135:2;5226:1;5251:52;5295:7;5286:6;5275:9;5271:22;5251:52;:::i;:::-;5241:62;;5197:116;5125:195;;;;:::o;5326:282::-;5395:6;5444:2;5432:9;5423:7;5419:23;5415:32;5412:2;;;5460:1;5457;5450:12;5412:2;5503:1;5528:63;5583:7;5574:6;5563:9;5559:22;5528:63;:::i;:::-;5518:73;;5474:127;5402:206;;;;:::o;5614:262::-;5673:6;5722:2;5710:9;5701:7;5697:23;5693:32;5690:2;;;5738:1;5735;5728:12;5690:2;5781:1;5806:53;5851:7;5842:6;5831:9;5827:22;5806:53;:::i;:::-;5796:63;;5752:117;5680:196;;;;:::o;5882:118::-;5969:24;5987:5;5969:24;:::i;:::-;5964:3;5957:37;5947:53;;:::o;6006:109::-;6087:21;6102:5;6087:21;:::i;:::-;6082:3;6075:34;6065:50;;:::o;6121:360::-;6207:3;6235:38;6267:5;6235:38;:::i;:::-;6289:70;6352:6;6347:3;6289:70;:::i;:::-;6282:77;;6368:52;6413:6;6408:3;6401:4;6394:5;6390:16;6368:52;:::i;:::-;6445:29;6467:6;6445:29;:::i;:::-;6440:3;6436:39;6429:46;;6211:270;;;;;:::o;6487:364::-;6575:3;6603:39;6636:5;6603:39;:::i;:::-;6658:71;6722:6;6717:3;6658:71;:::i;:::-;6651:78;;6738:52;6783:6;6778:3;6771:4;6764:5;6760:16;6738:52;:::i;:::-;6815:29;6837:6;6815:29;:::i;:::-;6810:3;6806:39;6799:46;;6579:272;;;;;:::o;6857:377::-;6963:3;6991:39;7024:5;6991:39;:::i;:::-;7046:89;7128:6;7123:3;7046:89;:::i;:::-;7039:96;;7144:52;7189:6;7184:3;7177:4;7170:5;7166:16;7144:52;:::i;:::-;7221:6;7216:3;7212:16;7205:23;;6967:267;;;;;:::o;7240:366::-;7382:3;7403:67;7467:2;7462:3;7403:67;:::i;:::-;7396:74;;7479:93;7568:3;7479:93;:::i;:::-;7597:2;7592:3;7588:12;7581:19;;7386:220;;;:::o;7612:366::-;7754:3;7775:67;7839:2;7834:3;7775:67;:::i;:::-;7768:74;;7851:93;7940:3;7851:93;:::i;:::-;7969:2;7964:3;7960:12;7953:19;;7758:220;;;:::o;7984:366::-;8126:3;8147:67;8211:2;8206:3;8147:67;:::i;:::-;8140:74;;8223:93;8312:3;8223:93;:::i;:::-;8341:2;8336:3;8332:12;8325:19;;8130:220;;;:::o;8356:366::-;8498:3;8519:67;8583:2;8578:3;8519:67;:::i;:::-;8512:74;;8595:93;8684:3;8595:93;:::i;:::-;8713:2;8708:3;8704:12;8697:19;;8502:220;;;:::o;8728:366::-;8870:3;8891:67;8955:2;8950:3;8891:67;:::i;:::-;8884:74;;8967:93;9056:3;8967:93;:::i;:::-;9085:2;9080:3;9076:12;9069:19;;8874:220;;;:::o;9100:366::-;9242:3;9263:67;9327:2;9322:3;9263:67;:::i;:::-;9256:74;;9339:93;9428:3;9339:93;:::i;:::-;9457:2;9452:3;9448:12;9441:19;;9246:220;;;:::o;9472:366::-;9614:3;9635:67;9699:2;9694:3;9635:67;:::i;:::-;9628:74;;9711:93;9800:3;9711:93;:::i;:::-;9829:2;9824:3;9820:12;9813:19;;9618:220;;;:::o;9844:366::-;9986:3;10007:67;10071:2;10066:3;10007:67;:::i;:::-;10000:74;;10083:93;10172:3;10083:93;:::i;:::-;10201:2;10196:3;10192:12;10185:19;;9990:220;;;:::o;10216:366::-;10358:3;10379:67;10443:2;10438:3;10379:67;:::i;:::-;10372:74;;10455:93;10544:3;10455:93;:::i;:::-;10573:2;10568:3;10564:12;10557:19;;10362:220;;;:::o;10588:366::-;10730:3;10751:67;10815:2;10810:3;10751:67;:::i;:::-;10744:74;;10827:93;10916:3;10827:93;:::i;:::-;10945:2;10940:3;10936:12;10929:19;;10734:220;;;:::o;10960:366::-;11102:3;11123:67;11187:2;11182:3;11123:67;:::i;:::-;11116:74;;11199:93;11288:3;11199:93;:::i;:::-;11317:2;11312:3;11308:12;11301:19;;11106:220;;;:::o;11332:366::-;11474:3;11495:67;11559:2;11554:3;11495:67;:::i;:::-;11488:74;;11571:93;11660:3;11571:93;:::i;:::-;11689:2;11684:3;11680:12;11673:19;;11478:220;;;:::o;11704:366::-;11846:3;11867:67;11931:2;11926:3;11867:67;:::i;:::-;11860:74;;11943:93;12032:3;11943:93;:::i;:::-;12061:2;12056:3;12052:12;12045:19;;11850:220;;;:::o;12076:366::-;12218:3;12239:67;12303:2;12298:3;12239:67;:::i;:::-;12232:74;;12315:93;12404:3;12315:93;:::i;:::-;12433:2;12428:3;12424:12;12417:19;;12222:220;;;:::o;12448:366::-;12590:3;12611:67;12675:2;12670:3;12611:67;:::i;:::-;12604:74;;12687:93;12776:3;12687:93;:::i;:::-;12805:2;12800:3;12796:12;12789:19;;12594:220;;;:::o;12820:366::-;12962:3;12983:67;13047:2;13042:3;12983:67;:::i;:::-;12976:74;;13059:93;13148:3;13059:93;:::i;:::-;13177:2;13172:3;13168:12;13161:19;;12966:220;;;:::o;13192:366::-;13334:3;13355:67;13419:2;13414:3;13355:67;:::i;:::-;13348:74;;13431:93;13520:3;13431:93;:::i;:::-;13549:2;13544:3;13540:12;13533:19;;13338:220;;;:::o;13564:366::-;13706:3;13727:67;13791:2;13786:3;13727:67;:::i;:::-;13720:74;;13803:93;13892:3;13803:93;:::i;:::-;13921:2;13916:3;13912:12;13905:19;;13710:220;;;:::o;13936:366::-;14078:3;14099:67;14163:2;14158:3;14099:67;:::i;:::-;14092:74;;14175:93;14264:3;14175:93;:::i;:::-;14293:2;14288:3;14284:12;14277:19;;14082:220;;;:::o;14308:366::-;14450:3;14471:67;14535:2;14530:3;14471:67;:::i;:::-;14464:74;;14547:93;14636:3;14547:93;:::i;:::-;14665:2;14660:3;14656:12;14649:19;;14454:220;;;:::o;14680:366::-;14822:3;14843:67;14907:2;14902:3;14843:67;:::i;:::-;14836:74;;14919:93;15008:3;14919:93;:::i;:::-;15037:2;15032:3;15028:12;15021:19;;14826:220;;;:::o;15052:118::-;15139:24;15157:5;15139:24;:::i;:::-;15134:3;15127:37;15117:53;;:::o;15176:435::-;15356:3;15378:95;15469:3;15460:6;15378:95;:::i;:::-;15371:102;;15490:95;15581:3;15572:6;15490:95;:::i;:::-;15483:102;;15602:3;15595:10;;15360:251;;;;;:::o;15617:222::-;15710:4;15748:2;15737:9;15733:18;15725:26;;15761:71;15829:1;15818:9;15814:17;15805:6;15761:71;:::i;:::-;15715:124;;;;:::o;15845:640::-;16040:4;16078:3;16067:9;16063:19;16055:27;;16092:71;16160:1;16149:9;16145:17;16136:6;16092:71;:::i;:::-;16173:72;16241:2;16230:9;16226:18;16217:6;16173:72;:::i;:::-;16255;16323:2;16312:9;16308:18;16299:6;16255:72;:::i;:::-;16374:9;16368:4;16364:20;16359:2;16348:9;16344:18;16337:48;16402:76;16473:4;16464:6;16402:76;:::i;:::-;16394:84;;16045:440;;;;;;;:::o;16491:210::-;16578:4;16616:2;16605:9;16601:18;16593:26;;16629:65;16691:1;16680:9;16676:17;16667:6;16629:65;:::i;:::-;16583:118;;;;:::o;16707:313::-;16820:4;16858:2;16847:9;16843:18;16835:26;;16907:9;16901:4;16897:20;16893:1;16882:9;16878:17;16871:47;16935:78;17008:4;16999:6;16935:78;:::i;:::-;16927:86;;16825:195;;;;:::o;17026:419::-;17192:4;17230:2;17219:9;17215:18;17207:26;;17279:9;17273:4;17269:20;17265:1;17254:9;17250:17;17243:47;17307:131;17433:4;17307:131;:::i;:::-;17299:139;;17197:248;;;:::o;17451:419::-;17617:4;17655:2;17644:9;17640:18;17632:26;;17704:9;17698:4;17694:20;17690:1;17679:9;17675:17;17668:47;17732:131;17858:4;17732:131;:::i;:::-;17724:139;;17622:248;;;:::o;17876:419::-;18042:4;18080:2;18069:9;18065:18;18057:26;;18129:9;18123:4;18119:20;18115:1;18104:9;18100:17;18093:47;18157:131;18283:4;18157:131;:::i;:::-;18149:139;;18047:248;;;:::o;18301:419::-;18467:4;18505:2;18494:9;18490:18;18482:26;;18554:9;18548:4;18544:20;18540:1;18529:9;18525:17;18518:47;18582:131;18708:4;18582:131;:::i;:::-;18574:139;;18472:248;;;:::o;18726:419::-;18892:4;18930:2;18919:9;18915:18;18907:26;;18979:9;18973:4;18969:20;18965:1;18954:9;18950:17;18943:47;19007:131;19133:4;19007:131;:::i;:::-;18999:139;;18897:248;;;:::o;19151:419::-;19317:4;19355:2;19344:9;19340:18;19332:26;;19404:9;19398:4;19394:20;19390:1;19379:9;19375:17;19368:47;19432:131;19558:4;19432:131;:::i;:::-;19424:139;;19322:248;;;:::o;19576:419::-;19742:4;19780:2;19769:9;19765:18;19757:26;;19829:9;19823:4;19819:20;19815:1;19804:9;19800:17;19793:47;19857:131;19983:4;19857:131;:::i;:::-;19849:139;;19747:248;;;:::o;20001:419::-;20167:4;20205:2;20194:9;20190:18;20182:26;;20254:9;20248:4;20244:20;20240:1;20229:9;20225:17;20218:47;20282:131;20408:4;20282:131;:::i;:::-;20274:139;;20172:248;;;:::o;20426:419::-;20592:4;20630:2;20619:9;20615:18;20607:26;;20679:9;20673:4;20669:20;20665:1;20654:9;20650:17;20643:47;20707:131;20833:4;20707:131;:::i;:::-;20699:139;;20597:248;;;:::o;20851:419::-;21017:4;21055:2;21044:9;21040:18;21032:26;;21104:9;21098:4;21094:20;21090:1;21079:9;21075:17;21068:47;21132:131;21258:4;21132:131;:::i;:::-;21124:139;;21022:248;;;:::o;21276:419::-;21442:4;21480:2;21469:9;21465:18;21457:26;;21529:9;21523:4;21519:20;21515:1;21504:9;21500:17;21493:47;21557:131;21683:4;21557:131;:::i;:::-;21549:139;;21447:248;;;:::o;21701:419::-;21867:4;21905:2;21894:9;21890:18;21882:26;;21954:9;21948:4;21944:20;21940:1;21929:9;21925:17;21918:47;21982:131;22108:4;21982:131;:::i;:::-;21974:139;;21872:248;;;:::o;22126:419::-;22292:4;22330:2;22319:9;22315:18;22307:26;;22379:9;22373:4;22369:20;22365:1;22354:9;22350:17;22343:47;22407:131;22533:4;22407:131;:::i;:::-;22399:139;;22297:248;;;:::o;22551:419::-;22717:4;22755:2;22744:9;22740:18;22732:26;;22804:9;22798:4;22794:20;22790:1;22779:9;22775:17;22768:47;22832:131;22958:4;22832:131;:::i;:::-;22824:139;;22722:248;;;:::o;22976:419::-;23142:4;23180:2;23169:9;23165:18;23157:26;;23229:9;23223:4;23219:20;23215:1;23204:9;23200:17;23193:47;23257:131;23383:4;23257:131;:::i;:::-;23249:139;;23147:248;;;:::o;23401:419::-;23567:4;23605:2;23594:9;23590:18;23582:26;;23654:9;23648:4;23644:20;23640:1;23629:9;23625:17;23618:47;23682:131;23808:4;23682:131;:::i;:::-;23674:139;;23572:248;;;:::o;23826:419::-;23992:4;24030:2;24019:9;24015:18;24007:26;;24079:9;24073:4;24069:20;24065:1;24054:9;24050:17;24043:47;24107:131;24233:4;24107:131;:::i;:::-;24099:139;;23997:248;;;:::o;24251:419::-;24417:4;24455:2;24444:9;24440:18;24432:26;;24504:9;24498:4;24494:20;24490:1;24479:9;24475:17;24468:47;24532:131;24658:4;24532:131;:::i;:::-;24524:139;;24422:248;;;:::o;24676:419::-;24842:4;24880:2;24869:9;24865:18;24857:26;;24929:9;24923:4;24919:20;24915:1;24904:9;24900:17;24893:47;24957:131;25083:4;24957:131;:::i;:::-;24949:139;;24847:248;;;:::o;25101:419::-;25267:4;25305:2;25294:9;25290:18;25282:26;;25354:9;25348:4;25344:20;25340:1;25329:9;25325:17;25318:47;25382:131;25508:4;25382:131;:::i;:::-;25374:139;;25272:248;;;:::o;25526:419::-;25692:4;25730:2;25719:9;25715:18;25707:26;;25779:9;25773:4;25769:20;25765:1;25754:9;25750:17;25743:47;25807:131;25933:4;25807:131;:::i;:::-;25799:139;;25697:248;;;:::o;25951:222::-;26044:4;26082:2;26071:9;26067:18;26059:26;;26095:71;26163:1;26152:9;26148:17;26139:6;26095:71;:::i;:::-;26049:124;;;;:::o;26179:129::-;26213:6;26240:20;;:::i;:::-;26230:30;;26269:33;26297:4;26289:6;26269:33;:::i;:::-;26220:88;;;:::o;26314:75::-;26347:6;26380:2;26374:9;26364:19;;26354:35;:::o;26395:307::-;26456:4;26546:18;26538:6;26535:30;26532:2;;;26568:18;;:::i;:::-;26532:2;26606:29;26628:6;26606:29;:::i;:::-;26598:37;;26690:4;26684;26680:15;26672:23;;26461:241;;;:::o;26708:98::-;26759:6;26793:5;26787:12;26777:22;;26766:40;;;:::o;26812:99::-;26864:6;26898:5;26892:12;26882:22;;26871:40;;;:::o;26917:168::-;27000:11;27034:6;27029:3;27022:19;27074:4;27069:3;27065:14;27050:29;;27012:73;;;;:::o;27091:169::-;27175:11;27209:6;27204:3;27197:19;27249:4;27244:3;27240:14;27225:29;;27187:73;;;;:::o;27266:148::-;27368:11;27405:3;27390:18;;27380:34;;;;:::o;27420:305::-;27460:3;27479:20;27497:1;27479:20;:::i;:::-;27474:25;;27513:20;27531:1;27513:20;:::i;:::-;27508:25;;27667:1;27599:66;27595:74;27592:1;27589:81;27586:2;;;27673:18;;:::i;:::-;27586:2;27717:1;27714;27710:9;27703:16;;27464:261;;;;:::o;27731:185::-;27771:1;27788:20;27806:1;27788:20;:::i;:::-;27783:25;;27822:20;27840:1;27822:20;:::i;:::-;27817:25;;27861:1;27851:2;;27866:18;;:::i;:::-;27851:2;27908:1;27905;27901:9;27896:14;;27773:143;;;;:::o;27922:348::-;27962:7;27985:20;28003:1;27985:20;:::i;:::-;27980:25;;28019:20;28037:1;28019:20;:::i;:::-;28014:25;;28207:1;28139:66;28135:74;28132:1;28129:81;28124:1;28117:9;28110:17;28106:105;28103:2;;;28214:18;;:::i;:::-;28103:2;28262:1;28259;28255:9;28244:20;;27970:300;;;;:::o;28276:191::-;28316:4;28336:20;28354:1;28336:20;:::i;:::-;28331:25;;28370:20;28388:1;28370:20;:::i;:::-;28365:25;;28409:1;28406;28403:8;28400:2;;;28414:18;;:::i;:::-;28400:2;28459:1;28456;28452:9;28444:17;;28321:146;;;;:::o;28473:96::-;28510:7;28539:24;28557:5;28539:24;:::i;:::-;28528:35;;28518:51;;;:::o;28575:90::-;28609:7;28652:5;28645:13;28638:21;28627:32;;28617:48;;;:::o;28671:149::-;28707:7;28747:66;28740:5;28736:78;28725:89;;28715:105;;;:::o;28826:126::-;28863:7;28903:42;28896:5;28892:54;28881:65;;28871:81;;;:::o;28958:77::-;28995:7;29024:5;29013:16;;29003:32;;;:::o;29041:154::-;29125:6;29120:3;29115;29102:30;29187:1;29178:6;29173:3;29169:16;29162:27;29092:103;;;:::o;29201:307::-;29269:1;29279:113;29293:6;29290:1;29287:13;29279:113;;;29378:1;29373:3;29369:11;29363:18;29359:1;29354:3;29350:11;29343:39;29315:2;29312:1;29308:10;29303:15;;29279:113;;;29410:6;29407:1;29404:13;29401:2;;;29490:1;29481:6;29476:3;29472:16;29465:27;29401:2;29250:258;;;;:::o;29514:320::-;29558:6;29595:1;29589:4;29585:12;29575:22;;29642:1;29636:4;29632:12;29663:18;29653:2;;29719:4;29711:6;29707:17;29697:27;;29653:2;29781;29773:6;29770:14;29750:18;29747:38;29744:2;;;29800:18;;:::i;:::-;29744:2;29565:269;;;;:::o;29840:281::-;29923:27;29945:4;29923:27;:::i;:::-;29915:6;29911:40;30053:6;30041:10;30038:22;30017:18;30005:10;30002:34;29999:62;29996:2;;;30064:18;;:::i;:::-;29996:2;30104:10;30100:2;30093:22;29883:238;;;:::o;30127:233::-;30166:3;30189:24;30207:5;30189:24;:::i;:::-;30180:33;;30235:66;30228:5;30225:77;30222:2;;;30305:18;;:::i;:::-;30222:2;30352:1;30345:5;30341:13;30334:20;;30170:190;;;:::o;30366:176::-;30398:1;30415:20;30433:1;30415:20;:::i;:::-;30410:25;;30449:20;30467:1;30449:20;:::i;:::-;30444:25;;30488:1;30478:2;;30493:18;;:::i;:::-;30478:2;30534:1;30531;30527:9;30522:14;;30400:142;;;;:::o;30548:180::-;30596:77;30593:1;30586:88;30693:4;30690:1;30683:15;30717:4;30714:1;30707:15;30734:180;30782:77;30779:1;30772:88;30879:4;30876:1;30869:15;30903:4;30900:1;30893:15;30920:180;30968:77;30965:1;30958:88;31065:4;31062:1;31055:15;31089:4;31086:1;31079:15;31106:180;31154:77;31151:1;31144:88;31251:4;31248:1;31241:15;31275:4;31272:1;31265:15;31292:102;31333:6;31384:2;31380:7;31375:2;31368:5;31364:14;31360:28;31350:38;;31340:54;;;:::o;31400:237::-;31540:34;31536:1;31528:6;31524:14;31517:58;31609:20;31604:2;31596:6;31592:15;31585:45;31506:131;:::o;31643:225::-;31783:34;31779:1;31771:6;31767:14;31760:58;31852:8;31847:2;31839:6;31835:15;31828:33;31749:119;:::o;31874:178::-;32014:30;32010:1;32002:6;31998:14;31991:54;31980:72;:::o;32058:223::-;32198:34;32194:1;32186:6;32182:14;32175:58;32267:6;32262:2;32254:6;32250:15;32243:31;32164:117;:::o;32287:175::-;32427:27;32423:1;32415:6;32411:14;32404:51;32393:69;:::o;32468:231::-;32608:34;32604:1;32596:6;32592:14;32585:58;32677:14;32672:2;32664:6;32660:15;32653:39;32574:125;:::o;32705:243::-;32845:34;32841:1;32833:6;32829:14;32822:58;32914:26;32909:2;32901:6;32897:15;32890:51;32811:137;:::o;32954:227::-;33094:34;33090:1;33082:6;33078:14;33071:58;33163:10;33158:2;33150:6;33146:15;33139:35;33060:121;:::o;33187:229::-;33327:34;33323:1;33315:6;33311:14;33304:58;33396:12;33391:2;33383:6;33379:15;33372:37;33293:123;:::o;33422:228::-;33562:34;33558:1;33550:6;33546:14;33539:58;33631:11;33626:2;33618:6;33614:15;33607:36;33528:122;:::o;33656:168::-;33796:20;33792:1;33784:6;33780:14;33773:44;33762:62;:::o;33830:222::-;33970:34;33966:1;33958:6;33954:14;33947:58;34039:5;34034:2;34026:6;34022:15;34015:30;33936:116;:::o;34058:182::-;34198:34;34194:1;34186:6;34182:14;34175:58;34164:76;:::o;34246:231::-;34386:34;34382:1;34374:6;34370:14;34363:58;34455:14;34450:2;34442:6;34438:15;34431:39;34352:125;:::o;34483:182::-;34623:34;34619:1;34611:6;34607:14;34600:58;34589:76;:::o;34671:228::-;34811:34;34807:1;34799:6;34795:14;34788:58;34880:11;34875:2;34867:6;34863:15;34856:36;34777:122;:::o;34905:234::-;35045:34;35041:1;35033:6;35029:14;35022:58;35114:17;35109:2;35101:6;35097:15;35090:42;35011:128;:::o;35145:220::-;35285:34;35281:1;35273:6;35269:14;35262:58;35354:3;35349:2;35341:6;35337:15;35330:28;35251:114;:::o;35371:236::-;35511:34;35507:1;35499:6;35495:14;35488:58;35580:19;35575:2;35567:6;35563:15;35556:44;35477:130;:::o;35613:163::-;35753:15;35749:1;35741:6;35737:14;35730:39;35719:57;:::o;35782:181::-;35922:33;35918:1;35910:6;35906:14;35899:57;35888:75;:::o;35969:122::-;36042:24;36060:5;36042:24;:::i;:::-;36035:5;36032:35;36022:2;;36081:1;36078;36071:12;36022:2;36012:79;:::o;36097:116::-;36167:21;36182:5;36167:21;:::i;:::-;36160:5;36157:32;36147:2;;36203:1;36200;36193:12;36147:2;36137:76;:::o;36219:120::-;36291:23;36308:5;36291:23;:::i;:::-;36284:5;36281:34;36271:2;;36329:1;36326;36319:12;36271:2;36261:78;:::o;36345:122::-;36418:24;36436:5;36418:24;:::i;:::-;36411:5;36408:35;36398:2;;36457:1;36454;36447:12;36398:2;36388:79;:::o

Swarm Source

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