ETH Price: $3,442.11 (+1.49%)
Gas: 4 Gwei

Token

SEKUSHI GIRLS (SKG)
 

Overview

Max Total Supply

7,601 SKG

Holders

2,654

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
grip710.eth
Balance
1 SKG
0x94f64856e55ab61447f22f90e49ebef60d39b9a1
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.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-31
*/

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




// Creator: Chiru Labs









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







/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}





/**
 * @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 and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 0;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        for (uint256 curr = tokenId; ; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: 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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), 'ERC721A: token already minted');
        require(quantity > 0, 'ERC721A: quantity must be greater 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                'ERC721A: transfer to non ERC721Receiver implementer'
            );
            updatedIndex++;
        }

        currentIndex = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp);
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, 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('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) 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 ERC721A, Ownable, ReentrancyGuard {
  using Counters for Counters.Counter;
  using SafeMath for uint256;
  uint256 private _mintCost;
  uint256 private _maxSupply;
  bool private _isPublicMintEnabled;
  uint256 private _freeSupply;
  
  /**
  * @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) ERC721A(tokenName, symbol) Ownable() {
    _mintCost = cost;
    _maxSupply = supply;
    _isPublicMintEnabled = false;
    _freeSupply = 0;
  }

  /**
  * @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(totalSupply()) < (_maxSupply+1), "Exceeds max supply");
    require(owner() == msg.sender || msg.value >= _mintCost.mul(count),
           "Ether value sent is below the price");
    
    _mint(msg.sender, count);
  }

  /**
  * @dev Mint a token to each Address of `recipients`.
  * Can only be called if requirements are satisfied.
  */
  function mintTokens(address[] calldata recipients)
  public
  payable
  nonReentrant{
    require(recipients.length>0,"Missing recipient addresses");
    require(owner() == msg.sender || _isPublicMintEnabled, "Mint disabled");
    require(recipients.length > 0 && recipients.length <= 100, "You can drop minimum 1, maximum 100 NFTs");
    require(recipients.length.add(totalSupply()) < (_maxSupply+1), "Exceeds max supply");
    require(owner() == msg.sender || msg.value >= _mintCost.mul(recipients.length),
           "Ether value sent is below the price");
    for(uint i=0; i<recipients.length; i++){
        _mint(recipients[i], 1);
     }
  }

  /**
  * @dev Mint `count` tokens if requirements are satisfied.
  */
  function freeMint(uint256 count) 
  public 
  payable 
  nonReentrant{
    require(owner() == msg.sender || _isPublicMintEnabled, "Mint disabled");
    require(totalSupply() + count <= _freeSupply, "Exceed max free supply");
    require(count == 1, "Cant mint more than 1");
    require(count > 0, "Must mint at least 1 token");

    _safeMint(msg.sender, count);
  }

  /**
  * @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 Update the max free supply.
  * Can only be called by the current owner.
  */
  function setFreeSupply(uint256 max) public onlyOwner{
    _freeSupply = 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, uint256 count) internal virtual returns (uint256){
    _safeMint(to, count);

    return count;
  }

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

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":"count","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"getFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxSupply","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":"setFreeSupply","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600080553480156200001557600080fd5b5060405162004f8b38038062004f8b83398181016040528101906200003b9190620002e7565b8383816001908051906020019062000055929190620001a2565b5080600290805190602001906200006e929190620001a2565b5050506200009162000085620000d460201b60201c565b620000dc60201b60201c565b60016008819055508160098190555080600a819055506000600b60006101000a81548160ff0219169083151502179055506000600c81905550505050506200053f565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b09062000436565b90600052602060002090601f016020900481019282620001d4576000855562000220565b82601f10620001ef57805160ff191683800117855562000220565b8280016001018555821562000220579182015b828111156200021f57825182559160200191906001019062000202565b5b5090506200022f919062000233565b5090565b5b808211156200024e57600081600090555060010162000234565b5090565b6000620002696200026384620003c0565b62000397565b90508281526020810184848401111562000288576200028762000505565b5b6200029584828562000400565b509392505050565b600082601f830112620002b557620002b462000500565b5b8151620002c784826020860162000252565b91505092915050565b600081519050620002e18162000525565b92915050565b600080600080608085870312156200030457620003036200050f565b5b600085015167ffffffffffffffff8111156200032557620003246200050a565b5b62000333878288016200029d565b945050602085015167ffffffffffffffff8111156200035757620003566200050a565b5b62000365878288016200029d565b93505060406200037887828801620002d0565b92505060606200038b87828801620002d0565b91505092959194509250565b6000620003a3620003b6565b9050620003b182826200046c565b919050565b6000604051905090565b600067ffffffffffffffff821115620003de57620003dd620004d1565b5b620003e98262000514565b9050602081019050919050565b6000819050919050565b60005b838110156200042057808201518184015260208101905062000403565b8381111562000430576000848401525b50505050565b600060028204905060018216806200044f57607f821691505b60208210811415620004665762000465620004a2565b5b50919050565b620004778262000514565b810181811067ffffffffffffffff82111715620004995762000498620004d1565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200053081620003f6565b81146200053c57600080fd5b50565b614a3c806200054f6000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146106be578063e8a3d485146106fb578063e985e9c514610726578063f2fde38b14610763578063f676308a1461078c576101f9565b8063a22cb46514610616578063b05051321461063f578063b88d4fde1461066a578063bd3e19d414610693576101f9565b8063941ada0e116100dc578063941ada0e1461058d57806395d89b41146105b857806397304ced146105e35780639edcc310146105ff576101f9565b806370a08231146104f2578063715018a61461052f5780637c928fe9146105465780638da5cb5b14610562576101f9565b80633ccfd60b116101905780634c0f38c21161015f5780634c0f38c2146103f95780634f3e1efc146104245780634f6ccce71461044f5780636352211e1461048c5780636f8b44b0146104c9576101f9565b80633ccfd60b146103745780633fa40f941461038b57806342842e0e146103a757806344a0d68a146103d0576101f9565b806318160ddd116101cc57806318160ddd146102cc57806323b872dd146102f75780632f745c591461032057806335133b401461035d576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b506102256004803603810190610220919061336d565b6107b5565b6040516102329190613923565b60405180910390f35b34801561024757600080fd5b506102506108ff565b60405161025d919061393e565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906133c7565b610991565b60405161029a91906138bc565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c591906132e0565b610a16565b005b3480156102d857600080fd5b506102e1610b2f565b6040516102ee9190613ce0565b60405180910390f35b34801561030357600080fd5b5061031e600480360381019061031991906131ca565b610b38565b005b34801561032c57600080fd5b50610347600480360381019061034291906132e0565b610b48565b6040516103549190613ce0565b60405180910390f35b34801561036957600080fd5b50610372610d46565b005b34801561038057600080fd5b50610389610ddf565b005b6103a560048036038101906103a09190613320565b610eab565b005b3480156103b357600080fd5b506103ce60048036038101906103c991906131ca565b611185565b005b3480156103dc57600080fd5b506103f760048036038101906103f291906133c7565b6111a5565b005b34801561040557600080fd5b5061040e61122b565b60405161041b9190613ce0565b60405180910390f35b34801561043057600080fd5b50610439611235565b6040516104469190613ce0565b60405180910390f35b34801561045b57600080fd5b50610476600480360381019061047191906133c7565b611244565b6040516104839190613ce0565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae91906133c7565b611297565b6040516104c091906138bc565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb91906133c7565b6112ad565b005b3480156104fe57600080fd5b506105196004803603810190610514919061315d565b611333565b6040516105269190613ce0565b60405180910390f35b34801561053b57600080fd5b5061054461141c565b005b610560600480360381019061055b91906133c7565b6114a4565b005b34801561056e57600080fd5b50610577611670565b60405161058491906138bc565b60405180910390f35b34801561059957600080fd5b506105a261169a565b6040516105af9190613923565b60405180910390f35b3480156105c457600080fd5b506105cd6116b1565b6040516105da919061393e565b60405180910390f35b6105fd60048036038101906105f891906133c7565b611743565b005b34801561060b57600080fd5b50610614611943565b005b34801561062257600080fd5b5061063d600480360381019061063891906132a0565b6119dc565b005b34801561064b57600080fd5b50610654611b5d565b6040516106619190613ce0565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c919061321d565b611b67565b005b34801561069f57600080fd5b506106a8611bc3565b6040516106b59190613ce0565b60405180910390f35b3480156106ca57600080fd5b506106e560048036038101906106e091906133c7565b611bcd565b6040516106f2919061393e565b60405180910390f35b34801561070757600080fd5b50610710611c74565b60405161071d919061393e565b60405180910390f35b34801561073257600080fd5b5061074d6004803603810190610748919061318a565b611c94565b60405161075a9190613923565b60405180910390f35b34801561076f57600080fd5b5061078a6004803603810190610785919061315d565b611d28565b005b34801561079857600080fd5b506107b360048036038101906107ae91906133c7565b611e20565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f857506108f782611ea6565b5b9050919050565b60606001805461090e90613feb565b80601f016020809104026020016040519081016040528092919081815260200182805461093a90613feb565b80156109875780601f1061095c57610100808354040283529160200191610987565b820191906000526020600020905b81548152906001019060200180831161096a57829003601f168201915b5050505050905090565b600061099c82611f10565b6109db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d290613cc0565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2182611297565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8990613ba0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ab1611f1d565b73ffffffffffffffffffffffffffffffffffffffff161480610ae05750610adf81610ada611f1d565b611c94565b5b610b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1690613a40565b60405180910390fd5b610b2a838383611f25565b505050565b60008054905090565b610b43838383611fd7565b505050565b6000610b5383611333565b8210610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b90613960565b60405180910390fd5b6000610b9e610b2f565b905060008060005b83811015610d04576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c9857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cf05786841415610ce1578195505050505050610d40565b8380610cec9061404e565b9450505b508080610cfc9061404e565b915050610ba6565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3790613c80565b60405180910390fd5b92915050565b610d4e611f1d565b73ffffffffffffffffffffffffffffffffffffffff16610d6c611670565b73ffffffffffffffffffffffffffffffffffffffff1614610dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db990613ae0565b60405180910390fd5b6000600b60006101000a81548160ff021916908315150217905550565b610de7611f1d565b73ffffffffffffffffffffffffffffffffffffffff16610e05611670565b73ffffffffffffffffffffffffffffffffffffffff1614610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5290613ae0565b60405180910390fd5b610e63611670565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ea8573d6000803e3d6000fd5b50565b60026008541415610ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee890613ca0565b60405180910390fd5b600260088190555060008282905011610f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3690613b60565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16610f5e611670565b73ffffffffffffffffffffffffffffffffffffffff161480610f8c5750600b60009054906101000a900460ff165b610fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc290613c60565b60405180910390fd5b600082829050118015610fe2575060648282905011155b611021576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101890613a20565b60405180910390fd5b6001600a546110309190613dda565b61104d61103b610b2f565b8484905061257e90919063ffffffff16565b1061108d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108490613a60565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166110ac611670565b73ffffffffffffffffffffffffffffffffffffffff1614806110e557506110e18282905060095461259490919063ffffffff16565b3410155b611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b90613a80565b60405180910390fd5b60005b828290508110156111785761116483838381811061114857611147614155565b5b905060200201602081019061115d919061315d565b60016125aa565b5080806111709061404e565b915050611127565b5060016008819055505050565b6111a083838360405180602001604052806000815250611b67565b505050565b6111ad611f1d565b73ffffffffffffffffffffffffffffffffffffffff166111cb611670565b73ffffffffffffffffffffffffffffffffffffffff1614611221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121890613ae0565b60405180910390fd5b8060098190555050565b6000600a54905090565b600061123f610b2f565b905090565b600061124e610b2f565b821061128f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611286906139e0565b60405180910390fd5b819050919050565b60006112a2826125bf565b600001519050919050565b6112b5611f1d565b73ffffffffffffffffffffffffffffffffffffffff166112d3611670565b73ffffffffffffffffffffffffffffffffffffffff1614611329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132090613ae0565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139b90613aa0565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611424611f1d565b73ffffffffffffffffffffffffffffffffffffffff16611442611670565b73ffffffffffffffffffffffffffffffffffffffff1614611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f90613ae0565b60405180910390fd5b6114a2600061271a565b565b600260085414156114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e190613ca0565b60405180910390fd5b60026008819055503373ffffffffffffffffffffffffffffffffffffffff16611511611670565b73ffffffffffffffffffffffffffffffffffffffff16148061153f5750600b60009054906101000a900460ff165b61157e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157590613c60565b60405180910390fd5b600c548161158a610b2f565b6115949190613dda565b11156115d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cc90613c20565b60405180910390fd5b60018114611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f90613b80565b60405180910390fd5b6000811161165b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611652906139c0565b60405180910390fd5b61166533826127e0565b600160088190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600b60009054906101000a900460ff16905090565b6060600280546116c090613feb565b80601f01602080910402602001604051908101604052809291908181526020018280546116ec90613feb565b80156117395780601f1061170e57610100808354040283529160200191611739565b820191906000526020600020905b81548152906001019060200180831161171c57829003601f168201915b5050505050905090565b60026008541415611789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178090613ca0565b60405180910390fd5b6002600881905550600b60009054906101000a900460ff166117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d790613c60565b60405180910390fd5b6000811180156117f1575060648111155b611830576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182790613a20565b60405180910390fd5b6001600a5461183f9190613dda565b61185961184a610b2f565b8361257e90919063ffffffff16565b10611899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189090613a60565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166118b8611670565b73ffffffffffffffffffffffffffffffffffffffff1614806118ee57506118ea8160095461259490919063ffffffff16565b3410155b61192d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192490613a80565b60405180910390fd5b61193733826125aa565b50600160088190555050565b61194b611f1d565b73ffffffffffffffffffffffffffffffffffffffff16611969611670565b73ffffffffffffffffffffffffffffffffffffffff16146119bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b690613ae0565b60405180910390fd5b6001600b60006101000a81548160ff021916908315150217905550565b6119e4611f1d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4990613b20565b60405180910390fd5b8060066000611a5f611f1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b0c611f1d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b519190613923565b60405180910390a35050565b6000600c54905090565b611b72848484611fd7565b611b7e848484846127fe565b611bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb490613be0565b60405180910390fd5b50505050565b6000600954905090565b6060611bd882611f10565b611c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0e90613b00565b60405180910390fd5b6000611c21612995565b90506000815111611c415760405180602001604052806000815250611c6c565b80611c4b846129b5565b604051602001611c5c929190613898565b6040516020818303038152906040525b915050919050565b60606040518060800160405280605181526020016149b660519139905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d30611f1d565b73ffffffffffffffffffffffffffffffffffffffff16611d4e611670565b73ffffffffffffffffffffffffffffffffffffffff1614611da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9b90613ae0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0b90613980565b60405180910390fd5b611e1d8161271a565b50565b611e28611f1d565b73ffffffffffffffffffffffffffffffffffffffff16611e46611670565b73ffffffffffffffffffffffffffffffffffffffff1614611e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9390613ae0565b60405180910390fd5b80600c8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611fe2826125bf565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612009611f1d565b73ffffffffffffffffffffffffffffffffffffffff161480612065575061202e611f1d565b73ffffffffffffffffffffffffffffffffffffffff1661204d84610991565b73ffffffffffffffffffffffffffffffffffffffff16145b806120815750612080826000015161207b611f1d565b611c94565b5b9050806120c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ba90613b40565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212c90613ac0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156121a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219c90613a00565b60405180910390fd5b6121b28585856001612b16565b6121c26000848460000151611f25565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846123c89190613dda565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561250e5761243e81611f10565b1561250d576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125768686866001612b1c565b505050505050565b6000818361258c9190613dda565b905092915050565b600081836125a29190613e61565b905092915050565b60006125b683836127e0565b81905092915050565b6125c7612ff4565b6125d082611f10565b61260f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612606906139a0565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612701578092505050612715565b50808061270d90613fc1565b915050612615565b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127fa828260405180602001604052806000815250612b22565b5050565b600061281f8473ffffffffffffffffffffffffffffffffffffffff16612fe1565b15612988578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612848611f1d565b8786866040518563ffffffff1660e01b815260040161286a94939291906138d7565b602060405180830381600087803b15801561288457600080fd5b505af19250505080156128b557506040513d601f19601f820116820180604052508101906128b2919061339a565b60015b612938573d80600081146128e5576040519150601f19603f3d011682016040523d82523d6000602084013e6128ea565b606091505b50600081511415612930576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292790613be0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061298d565b600190505b949350505050565b60606040518060800160405280604f8152602001614967604f9139905090565b606060008214156129fd576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b11565b600082905060005b60008214612a2f578080612a189061404e565b915050600a82612a289190613e30565b9150612a05565b60008167ffffffffffffffff811115612a4b57612a4a614184565b5b6040519080825280601f01601f191660200182016040528015612a7d5781602001600182028036833780820191505090505b5090505b60008514612b0a57600182612a969190613ebb565b9150600a85612aa59190614097565b6030612ab19190613dda565b60f81b818381518110612ac757612ac6614155565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b039190613e30565b9450612a81565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8f90613c40565b60405180910390fd5b612ba181611f10565b15612be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd890613c00565b60405180910390fd5b60008311612c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1b90613bc0565b60405180910390fd5b612c316000858386612b16565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612d2e9190613d94565b6fffffffffffffffffffffffffffffffff168152602001858360200151612d559190613d94565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612fc457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f6460008884886127fe565b612fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9a90613be0565b60405180910390fd5b8180612fae9061404e565b9250508080612fbc9061404e565b915050612ef3565b5080600081905550612fd96000878588612b1c565b505050505050565b600080823b905060008111915050919050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b600061304161303c84613d20565b613cfb565b90508281526020810184848401111561305d5761305c6141c2565b5b613068848285613f7f565b509392505050565b60008135905061307f8161490a565b92915050565b60008083601f84011261309b5761309a6141b8565b5b8235905067ffffffffffffffff8111156130b8576130b76141b3565b5b6020830191508360208202830111156130d4576130d36141bd565b5b9250929050565b6000813590506130ea81614921565b92915050565b6000813590506130ff81614938565b92915050565b60008151905061311481614938565b92915050565b600082601f83011261312f5761312e6141b8565b5b813561313f84826020860161302e565b91505092915050565b6000813590506131578161494f565b92915050565b600060208284031215613173576131726141cc565b5b600061318184828501613070565b91505092915050565b600080604083850312156131a1576131a06141cc565b5b60006131af85828601613070565b92505060206131c085828601613070565b9150509250929050565b6000806000606084860312156131e3576131e26141cc565b5b60006131f186828701613070565b935050602061320286828701613070565b925050604061321386828701613148565b9150509250925092565b60008060008060808587031215613237576132366141cc565b5b600061324587828801613070565b945050602061325687828801613070565b935050604061326787828801613148565b925050606085013567ffffffffffffffff811115613288576132876141c7565b5b6132948782880161311a565b91505092959194509250565b600080604083850312156132b7576132b66141cc565b5b60006132c585828601613070565b92505060206132d6858286016130db565b9150509250929050565b600080604083850312156132f7576132f66141cc565b5b600061330585828601613070565b925050602061331685828601613148565b9150509250929050565b60008060208385031215613337576133366141cc565b5b600083013567ffffffffffffffff811115613355576133546141c7565b5b61336185828601613085565b92509250509250929050565b600060208284031215613383576133826141cc565b5b6000613391848285016130f0565b91505092915050565b6000602082840312156133b0576133af6141cc565b5b60006133be84828501613105565b91505092915050565b6000602082840312156133dd576133dc6141cc565b5b60006133eb84828501613148565b91505092915050565b6133fd81613eef565b82525050565b61340c81613f01565b82525050565b600061341d82613d51565b6134278185613d67565b9350613437818560208601613f8e565b613440816141d1565b840191505092915050565b600061345682613d5c565b6134608185613d78565b9350613470818560208601613f8e565b613479816141d1565b840191505092915050565b600061348f82613d5c565b6134998185613d89565b93506134a9818560208601613f8e565b80840191505092915050565b60006134c2602283613d78565b91506134cd826141e2565b604082019050919050565b60006134e5602683613d78565b91506134f082614231565b604082019050919050565b6000613508602a83613d78565b915061351382614280565b604082019050919050565b600061352b601a83613d78565b9150613536826142cf565b602082019050919050565b600061354e602383613d78565b9150613559826142f8565b604082019050919050565b6000613571602583613d78565b915061357c82614347565b604082019050919050565b6000613594602883613d78565b915061359f82614396565b604082019050919050565b60006135b7603983613d78565b91506135c2826143e5565b604082019050919050565b60006135da601283613d78565b91506135e582614434565b602082019050919050565b60006135fd602383613d78565b91506136088261445d565b604082019050919050565b6000613620602b83613d78565b915061362b826144ac565b604082019050919050565b6000613643602683613d78565b915061364e826144fb565b604082019050919050565b6000613666602083613d78565b91506136718261454a565b602082019050919050565b6000613689602f83613d78565b915061369482614573565b604082019050919050565b60006136ac601a83613d78565b91506136b7826145c2565b602082019050919050565b60006136cf603283613d78565b91506136da826145eb565b604082019050919050565b60006136f2601b83613d78565b91506136fd8261463a565b602082019050919050565b6000613715601583613d78565b915061372082614663565b602082019050919050565b6000613738602283613d78565b91506137438261468c565b604082019050919050565b600061375b602383613d78565b9150613766826146db565b604082019050919050565b600061377e603383613d78565b91506137898261472a565b604082019050919050565b60006137a1601d83613d78565b91506137ac82614779565b602082019050919050565b60006137c4601683613d78565b91506137cf826147a2565b602082019050919050565b60006137e7602183613d78565b91506137f2826147cb565b604082019050919050565b600061380a600d83613d78565b91506138158261481a565b602082019050919050565b600061382d602e83613d78565b915061383882614843565b604082019050919050565b6000613850601f83613d78565b915061385b82614892565b602082019050919050565b6000613873602d83613d78565b915061387e826148bb565b604082019050919050565b61389281613f75565b82525050565b60006138a48285613484565b91506138b08284613484565b91508190509392505050565b60006020820190506138d160008301846133f4565b92915050565b60006080820190506138ec60008301876133f4565b6138f960208301866133f4565b6139066040830185613889565b81810360608301526139188184613412565b905095945050505050565b60006020820190506139386000830184613403565b92915050565b60006020820190508181036000830152613958818461344b565b905092915050565b60006020820190508181036000830152613979816134b5565b9050919050565b60006020820190508181036000830152613999816134d8565b9050919050565b600060208201905081810360008301526139b9816134fb565b9050919050565b600060208201905081810360008301526139d98161351e565b9050919050565b600060208201905081810360008301526139f981613541565b9050919050565b60006020820190508181036000830152613a1981613564565b9050919050565b60006020820190508181036000830152613a3981613587565b9050919050565b60006020820190508181036000830152613a59816135aa565b9050919050565b60006020820190508181036000830152613a79816135cd565b9050919050565b60006020820190508181036000830152613a99816135f0565b9050919050565b60006020820190508181036000830152613ab981613613565b9050919050565b60006020820190508181036000830152613ad981613636565b9050919050565b60006020820190508181036000830152613af981613659565b9050919050565b60006020820190508181036000830152613b198161367c565b9050919050565b60006020820190508181036000830152613b398161369f565b9050919050565b60006020820190508181036000830152613b59816136c2565b9050919050565b60006020820190508181036000830152613b79816136e5565b9050919050565b60006020820190508181036000830152613b9981613708565b9050919050565b60006020820190508181036000830152613bb98161372b565b9050919050565b60006020820190508181036000830152613bd98161374e565b9050919050565b60006020820190508181036000830152613bf981613771565b9050919050565b60006020820190508181036000830152613c1981613794565b9050919050565b60006020820190508181036000830152613c39816137b7565b9050919050565b60006020820190508181036000830152613c59816137da565b9050919050565b60006020820190508181036000830152613c79816137fd565b9050919050565b60006020820190508181036000830152613c9981613820565b9050919050565b60006020820190508181036000830152613cb981613843565b9050919050565b60006020820190508181036000830152613cd981613866565b9050919050565b6000602082019050613cf56000830184613889565b92915050565b6000613d05613d16565b9050613d11828261401d565b919050565b6000604051905090565b600067ffffffffffffffff821115613d3b57613d3a614184565b5b613d44826141d1565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d9f82613f39565b9150613daa83613f39565b9250826fffffffffffffffffffffffffffffffff03821115613dcf57613dce6140c8565b5b828201905092915050565b6000613de582613f75565b9150613df083613f75565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e2557613e246140c8565b5b828201905092915050565b6000613e3b82613f75565b9150613e4683613f75565b925082613e5657613e556140f7565b5b828204905092915050565b6000613e6c82613f75565b9150613e7783613f75565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613eb057613eaf6140c8565b5b828202905092915050565b6000613ec682613f75565b9150613ed183613f75565b925082821015613ee457613ee36140c8565b5b828203905092915050565b6000613efa82613f55565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613fac578082015181840152602081019050613f91565b83811115613fbb576000848401525b50505050565b6000613fcc82613f75565b91506000821415613fe057613fdf6140c8565b5b600182039050919050565b6000600282049050600182168061400357607f821691505b6020821081141561401757614016614126565b5b50919050565b614026826141d1565b810181811067ffffffffffffffff8211171561404557614044614184565b5b80604052505050565b600061405982613f75565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561408c5761408b6140c8565b5b600182019050919050565b60006140a282613f75565b91506140ad83613f75565b9250826140bd576140bc6140f7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4d757374206d696e74206174206c65617374203120746f6b656e000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f596f752063616e2064726f70206d696e696d756d20312c206d6178696d756d2060008201527f313030204e465473000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f45746865722076616c75652073656e742069732062656c6f772074686520707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4d697373696e6720726563697069656e74206164647265737365730000000000600082015250565b7f43616e74206d696e74206d6f7265207468616e20310000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f457863656564206d6178206672656520737570706c7900000000000000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e742064697361626c656400000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b61491381613eef565b811461491e57600080fd5b50565b61492a81613f01565b811461493557600080fd5b50565b61494181613f0d565b811461494c57600080fd5b50565b61495881613f75565b811461496357600080fd5b5056fe68747470733a2f2f6d7739737069646862632e657865637574652d6170692e75732d656173742d312e616d617a6f6e6177732e636f6d2f6465762f746f6b656e2f73656b757368692d6769726c732f68747470733a2f2f6d7739737069646862632e657865637574652d6170692e75732d656173742d312e616d617a6f6e6177732e636f6d2f6465762f636f6e74726163742f73656b757368692d6769726c73a26469706673582212205d35a054df4133ae4deaced8089d6a9cb39cf45ad8a8200c75e588386c7d021d64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000008e1bc9bf0400000000000000000000000000000000000000000000000000000000000000001e61000000000000000000000000000000000000000000000000000000000000000d53454b55534849204749524c53000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003534b470000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146106be578063e8a3d485146106fb578063e985e9c514610726578063f2fde38b14610763578063f676308a1461078c576101f9565b8063a22cb46514610616578063b05051321461063f578063b88d4fde1461066a578063bd3e19d414610693576101f9565b8063941ada0e116100dc578063941ada0e1461058d57806395d89b41146105b857806397304ced146105e35780639edcc310146105ff576101f9565b806370a08231146104f2578063715018a61461052f5780637c928fe9146105465780638da5cb5b14610562576101f9565b80633ccfd60b116101905780634c0f38c21161015f5780634c0f38c2146103f95780634f3e1efc146104245780634f6ccce71461044f5780636352211e1461048c5780636f8b44b0146104c9576101f9565b80633ccfd60b146103745780633fa40f941461038b57806342842e0e146103a757806344a0d68a146103d0576101f9565b806318160ddd116101cc57806318160ddd146102cc57806323b872dd146102f75780632f745c591461032057806335133b401461035d576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b506102256004803603810190610220919061336d565b6107b5565b6040516102329190613923565b60405180910390f35b34801561024757600080fd5b506102506108ff565b60405161025d919061393e565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906133c7565b610991565b60405161029a91906138bc565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c591906132e0565b610a16565b005b3480156102d857600080fd5b506102e1610b2f565b6040516102ee9190613ce0565b60405180910390f35b34801561030357600080fd5b5061031e600480360381019061031991906131ca565b610b38565b005b34801561032c57600080fd5b50610347600480360381019061034291906132e0565b610b48565b6040516103549190613ce0565b60405180910390f35b34801561036957600080fd5b50610372610d46565b005b34801561038057600080fd5b50610389610ddf565b005b6103a560048036038101906103a09190613320565b610eab565b005b3480156103b357600080fd5b506103ce60048036038101906103c991906131ca565b611185565b005b3480156103dc57600080fd5b506103f760048036038101906103f291906133c7565b6111a5565b005b34801561040557600080fd5b5061040e61122b565b60405161041b9190613ce0565b60405180910390f35b34801561043057600080fd5b50610439611235565b6040516104469190613ce0565b60405180910390f35b34801561045b57600080fd5b50610476600480360381019061047191906133c7565b611244565b6040516104839190613ce0565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae91906133c7565b611297565b6040516104c091906138bc565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb91906133c7565b6112ad565b005b3480156104fe57600080fd5b506105196004803603810190610514919061315d565b611333565b6040516105269190613ce0565b60405180910390f35b34801561053b57600080fd5b5061054461141c565b005b610560600480360381019061055b91906133c7565b6114a4565b005b34801561056e57600080fd5b50610577611670565b60405161058491906138bc565b60405180910390f35b34801561059957600080fd5b506105a261169a565b6040516105af9190613923565b60405180910390f35b3480156105c457600080fd5b506105cd6116b1565b6040516105da919061393e565b60405180910390f35b6105fd60048036038101906105f891906133c7565b611743565b005b34801561060b57600080fd5b50610614611943565b005b34801561062257600080fd5b5061063d600480360381019061063891906132a0565b6119dc565b005b34801561064b57600080fd5b50610654611b5d565b6040516106619190613ce0565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c919061321d565b611b67565b005b34801561069f57600080fd5b506106a8611bc3565b6040516106b59190613ce0565b60405180910390f35b3480156106ca57600080fd5b506106e560048036038101906106e091906133c7565b611bcd565b6040516106f2919061393e565b60405180910390f35b34801561070757600080fd5b50610710611c74565b60405161071d919061393e565b60405180910390f35b34801561073257600080fd5b5061074d6004803603810190610748919061318a565b611c94565b60405161075a9190613923565b60405180910390f35b34801561076f57600080fd5b5061078a6004803603810190610785919061315d565b611d28565b005b34801561079857600080fd5b506107b360048036038101906107ae91906133c7565b611e20565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f857506108f782611ea6565b5b9050919050565b60606001805461090e90613feb565b80601f016020809104026020016040519081016040528092919081815260200182805461093a90613feb565b80156109875780601f1061095c57610100808354040283529160200191610987565b820191906000526020600020905b81548152906001019060200180831161096a57829003601f168201915b5050505050905090565b600061099c82611f10565b6109db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d290613cc0565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2182611297565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8990613ba0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ab1611f1d565b73ffffffffffffffffffffffffffffffffffffffff161480610ae05750610adf81610ada611f1d565b611c94565b5b610b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1690613a40565b60405180910390fd5b610b2a838383611f25565b505050565b60008054905090565b610b43838383611fd7565b505050565b6000610b5383611333565b8210610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b90613960565b60405180910390fd5b6000610b9e610b2f565b905060008060005b83811015610d04576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c9857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cf05786841415610ce1578195505050505050610d40565b8380610cec9061404e565b9450505b508080610cfc9061404e565b915050610ba6565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3790613c80565b60405180910390fd5b92915050565b610d4e611f1d565b73ffffffffffffffffffffffffffffffffffffffff16610d6c611670565b73ffffffffffffffffffffffffffffffffffffffff1614610dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db990613ae0565b60405180910390fd5b6000600b60006101000a81548160ff021916908315150217905550565b610de7611f1d565b73ffffffffffffffffffffffffffffffffffffffff16610e05611670565b73ffffffffffffffffffffffffffffffffffffffff1614610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5290613ae0565b60405180910390fd5b610e63611670565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ea8573d6000803e3d6000fd5b50565b60026008541415610ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee890613ca0565b60405180910390fd5b600260088190555060008282905011610f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3690613b60565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16610f5e611670565b73ffffffffffffffffffffffffffffffffffffffff161480610f8c5750600b60009054906101000a900460ff165b610fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc290613c60565b60405180910390fd5b600082829050118015610fe2575060648282905011155b611021576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101890613a20565b60405180910390fd5b6001600a546110309190613dda565b61104d61103b610b2f565b8484905061257e90919063ffffffff16565b1061108d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108490613a60565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166110ac611670565b73ffffffffffffffffffffffffffffffffffffffff1614806110e557506110e18282905060095461259490919063ffffffff16565b3410155b611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b90613a80565b60405180910390fd5b60005b828290508110156111785761116483838381811061114857611147614155565b5b905060200201602081019061115d919061315d565b60016125aa565b5080806111709061404e565b915050611127565b5060016008819055505050565b6111a083838360405180602001604052806000815250611b67565b505050565b6111ad611f1d565b73ffffffffffffffffffffffffffffffffffffffff166111cb611670565b73ffffffffffffffffffffffffffffffffffffffff1614611221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121890613ae0565b60405180910390fd5b8060098190555050565b6000600a54905090565b600061123f610b2f565b905090565b600061124e610b2f565b821061128f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611286906139e0565b60405180910390fd5b819050919050565b60006112a2826125bf565b600001519050919050565b6112b5611f1d565b73ffffffffffffffffffffffffffffffffffffffff166112d3611670565b73ffffffffffffffffffffffffffffffffffffffff1614611329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132090613ae0565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139b90613aa0565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611424611f1d565b73ffffffffffffffffffffffffffffffffffffffff16611442611670565b73ffffffffffffffffffffffffffffffffffffffff1614611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f90613ae0565b60405180910390fd5b6114a2600061271a565b565b600260085414156114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e190613ca0565b60405180910390fd5b60026008819055503373ffffffffffffffffffffffffffffffffffffffff16611511611670565b73ffffffffffffffffffffffffffffffffffffffff16148061153f5750600b60009054906101000a900460ff165b61157e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157590613c60565b60405180910390fd5b600c548161158a610b2f565b6115949190613dda565b11156115d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cc90613c20565b60405180910390fd5b60018114611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f90613b80565b60405180910390fd5b6000811161165b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611652906139c0565b60405180910390fd5b61166533826127e0565b600160088190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600b60009054906101000a900460ff16905090565b6060600280546116c090613feb565b80601f01602080910402602001604051908101604052809291908181526020018280546116ec90613feb565b80156117395780601f1061170e57610100808354040283529160200191611739565b820191906000526020600020905b81548152906001019060200180831161171c57829003601f168201915b5050505050905090565b60026008541415611789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178090613ca0565b60405180910390fd5b6002600881905550600b60009054906101000a900460ff166117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d790613c60565b60405180910390fd5b6000811180156117f1575060648111155b611830576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182790613a20565b60405180910390fd5b6001600a5461183f9190613dda565b61185961184a610b2f565b8361257e90919063ffffffff16565b10611899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189090613a60565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166118b8611670565b73ffffffffffffffffffffffffffffffffffffffff1614806118ee57506118ea8160095461259490919063ffffffff16565b3410155b61192d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192490613a80565b60405180910390fd5b61193733826125aa565b50600160088190555050565b61194b611f1d565b73ffffffffffffffffffffffffffffffffffffffff16611969611670565b73ffffffffffffffffffffffffffffffffffffffff16146119bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b690613ae0565b60405180910390fd5b6001600b60006101000a81548160ff021916908315150217905550565b6119e4611f1d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4990613b20565b60405180910390fd5b8060066000611a5f611f1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b0c611f1d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b519190613923565b60405180910390a35050565b6000600c54905090565b611b72848484611fd7565b611b7e848484846127fe565b611bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb490613be0565b60405180910390fd5b50505050565b6000600954905090565b6060611bd882611f10565b611c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0e90613b00565b60405180910390fd5b6000611c21612995565b90506000815111611c415760405180602001604052806000815250611c6c565b80611c4b846129b5565b604051602001611c5c929190613898565b6040516020818303038152906040525b915050919050565b60606040518060800160405280605181526020016149b660519139905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d30611f1d565b73ffffffffffffffffffffffffffffffffffffffff16611d4e611670565b73ffffffffffffffffffffffffffffffffffffffff1614611da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9b90613ae0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0b90613980565b60405180910390fd5b611e1d8161271a565b50565b611e28611f1d565b73ffffffffffffffffffffffffffffffffffffffff16611e46611670565b73ffffffffffffffffffffffffffffffffffffffff1614611e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9390613ae0565b60405180910390fd5b80600c8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611fe2826125bf565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612009611f1d565b73ffffffffffffffffffffffffffffffffffffffff161480612065575061202e611f1d565b73ffffffffffffffffffffffffffffffffffffffff1661204d84610991565b73ffffffffffffffffffffffffffffffffffffffff16145b806120815750612080826000015161207b611f1d565b611c94565b5b9050806120c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ba90613b40565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212c90613ac0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156121a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219c90613a00565b60405180910390fd5b6121b28585856001612b16565b6121c26000848460000151611f25565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846123c89190613dda565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561250e5761243e81611f10565b1561250d576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125768686866001612b1c565b505050505050565b6000818361258c9190613dda565b905092915050565b600081836125a29190613e61565b905092915050565b60006125b683836127e0565b81905092915050565b6125c7612ff4565b6125d082611f10565b61260f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612606906139a0565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612701578092505050612715565b50808061270d90613fc1565b915050612615565b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127fa828260405180602001604052806000815250612b22565b5050565b600061281f8473ffffffffffffffffffffffffffffffffffffffff16612fe1565b15612988578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612848611f1d565b8786866040518563ffffffff1660e01b815260040161286a94939291906138d7565b602060405180830381600087803b15801561288457600080fd5b505af19250505080156128b557506040513d601f19601f820116820180604052508101906128b2919061339a565b60015b612938573d80600081146128e5576040519150601f19603f3d011682016040523d82523d6000602084013e6128ea565b606091505b50600081511415612930576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292790613be0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061298d565b600190505b949350505050565b60606040518060800160405280604f8152602001614967604f9139905090565b606060008214156129fd576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b11565b600082905060005b60008214612a2f578080612a189061404e565b915050600a82612a289190613e30565b9150612a05565b60008167ffffffffffffffff811115612a4b57612a4a614184565b5b6040519080825280601f01601f191660200182016040528015612a7d5781602001600182028036833780820191505090505b5090505b60008514612b0a57600182612a969190613ebb565b9150600a85612aa59190614097565b6030612ab19190613dda565b60f81b818381518110612ac757612ac6614155565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b039190613e30565b9450612a81565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8f90613c40565b60405180910390fd5b612ba181611f10565b15612be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd890613c00565b60405180910390fd5b60008311612c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1b90613bc0565b60405180910390fd5b612c316000858386612b16565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612d2e9190613d94565b6fffffffffffffffffffffffffffffffff168152602001858360200151612d559190613d94565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612fc457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f6460008884886127fe565b612fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9a90613be0565b60405180910390fd5b8180612fae9061404e565b9250508080612fbc9061404e565b915050612ef3565b5080600081905550612fd96000878588612b1c565b505050505050565b600080823b905060008111915050919050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b600061304161303c84613d20565b613cfb565b90508281526020810184848401111561305d5761305c6141c2565b5b613068848285613f7f565b509392505050565b60008135905061307f8161490a565b92915050565b60008083601f84011261309b5761309a6141b8565b5b8235905067ffffffffffffffff8111156130b8576130b76141b3565b5b6020830191508360208202830111156130d4576130d36141bd565b5b9250929050565b6000813590506130ea81614921565b92915050565b6000813590506130ff81614938565b92915050565b60008151905061311481614938565b92915050565b600082601f83011261312f5761312e6141b8565b5b813561313f84826020860161302e565b91505092915050565b6000813590506131578161494f565b92915050565b600060208284031215613173576131726141cc565b5b600061318184828501613070565b91505092915050565b600080604083850312156131a1576131a06141cc565b5b60006131af85828601613070565b92505060206131c085828601613070565b9150509250929050565b6000806000606084860312156131e3576131e26141cc565b5b60006131f186828701613070565b935050602061320286828701613070565b925050604061321386828701613148565b9150509250925092565b60008060008060808587031215613237576132366141cc565b5b600061324587828801613070565b945050602061325687828801613070565b935050604061326787828801613148565b925050606085013567ffffffffffffffff811115613288576132876141c7565b5b6132948782880161311a565b91505092959194509250565b600080604083850312156132b7576132b66141cc565b5b60006132c585828601613070565b92505060206132d6858286016130db565b9150509250929050565b600080604083850312156132f7576132f66141cc565b5b600061330585828601613070565b925050602061331685828601613148565b9150509250929050565b60008060208385031215613337576133366141cc565b5b600083013567ffffffffffffffff811115613355576133546141c7565b5b61336185828601613085565b92509250509250929050565b600060208284031215613383576133826141cc565b5b6000613391848285016130f0565b91505092915050565b6000602082840312156133b0576133af6141cc565b5b60006133be84828501613105565b91505092915050565b6000602082840312156133dd576133dc6141cc565b5b60006133eb84828501613148565b91505092915050565b6133fd81613eef565b82525050565b61340c81613f01565b82525050565b600061341d82613d51565b6134278185613d67565b9350613437818560208601613f8e565b613440816141d1565b840191505092915050565b600061345682613d5c565b6134608185613d78565b9350613470818560208601613f8e565b613479816141d1565b840191505092915050565b600061348f82613d5c565b6134998185613d89565b93506134a9818560208601613f8e565b80840191505092915050565b60006134c2602283613d78565b91506134cd826141e2565b604082019050919050565b60006134e5602683613d78565b91506134f082614231565b604082019050919050565b6000613508602a83613d78565b915061351382614280565b604082019050919050565b600061352b601a83613d78565b9150613536826142cf565b602082019050919050565b600061354e602383613d78565b9150613559826142f8565b604082019050919050565b6000613571602583613d78565b915061357c82614347565b604082019050919050565b6000613594602883613d78565b915061359f82614396565b604082019050919050565b60006135b7603983613d78565b91506135c2826143e5565b604082019050919050565b60006135da601283613d78565b91506135e582614434565b602082019050919050565b60006135fd602383613d78565b91506136088261445d565b604082019050919050565b6000613620602b83613d78565b915061362b826144ac565b604082019050919050565b6000613643602683613d78565b915061364e826144fb565b604082019050919050565b6000613666602083613d78565b91506136718261454a565b602082019050919050565b6000613689602f83613d78565b915061369482614573565b604082019050919050565b60006136ac601a83613d78565b91506136b7826145c2565b602082019050919050565b60006136cf603283613d78565b91506136da826145eb565b604082019050919050565b60006136f2601b83613d78565b91506136fd8261463a565b602082019050919050565b6000613715601583613d78565b915061372082614663565b602082019050919050565b6000613738602283613d78565b91506137438261468c565b604082019050919050565b600061375b602383613d78565b9150613766826146db565b604082019050919050565b600061377e603383613d78565b91506137898261472a565b604082019050919050565b60006137a1601d83613d78565b91506137ac82614779565b602082019050919050565b60006137c4601683613d78565b91506137cf826147a2565b602082019050919050565b60006137e7602183613d78565b91506137f2826147cb565b604082019050919050565b600061380a600d83613d78565b91506138158261481a565b602082019050919050565b600061382d602e83613d78565b915061383882614843565b604082019050919050565b6000613850601f83613d78565b915061385b82614892565b602082019050919050565b6000613873602d83613d78565b915061387e826148bb565b604082019050919050565b61389281613f75565b82525050565b60006138a48285613484565b91506138b08284613484565b91508190509392505050565b60006020820190506138d160008301846133f4565b92915050565b60006080820190506138ec60008301876133f4565b6138f960208301866133f4565b6139066040830185613889565b81810360608301526139188184613412565b905095945050505050565b60006020820190506139386000830184613403565b92915050565b60006020820190508181036000830152613958818461344b565b905092915050565b60006020820190508181036000830152613979816134b5565b9050919050565b60006020820190508181036000830152613999816134d8565b9050919050565b600060208201905081810360008301526139b9816134fb565b9050919050565b600060208201905081810360008301526139d98161351e565b9050919050565b600060208201905081810360008301526139f981613541565b9050919050565b60006020820190508181036000830152613a1981613564565b9050919050565b60006020820190508181036000830152613a3981613587565b9050919050565b60006020820190508181036000830152613a59816135aa565b9050919050565b60006020820190508181036000830152613a79816135cd565b9050919050565b60006020820190508181036000830152613a99816135f0565b9050919050565b60006020820190508181036000830152613ab981613613565b9050919050565b60006020820190508181036000830152613ad981613636565b9050919050565b60006020820190508181036000830152613af981613659565b9050919050565b60006020820190508181036000830152613b198161367c565b9050919050565b60006020820190508181036000830152613b398161369f565b9050919050565b60006020820190508181036000830152613b59816136c2565b9050919050565b60006020820190508181036000830152613b79816136e5565b9050919050565b60006020820190508181036000830152613b9981613708565b9050919050565b60006020820190508181036000830152613bb98161372b565b9050919050565b60006020820190508181036000830152613bd98161374e565b9050919050565b60006020820190508181036000830152613bf981613771565b9050919050565b60006020820190508181036000830152613c1981613794565b9050919050565b60006020820190508181036000830152613c39816137b7565b9050919050565b60006020820190508181036000830152613c59816137da565b9050919050565b60006020820190508181036000830152613c79816137fd565b9050919050565b60006020820190508181036000830152613c9981613820565b9050919050565b60006020820190508181036000830152613cb981613843565b9050919050565b60006020820190508181036000830152613cd981613866565b9050919050565b6000602082019050613cf56000830184613889565b92915050565b6000613d05613d16565b9050613d11828261401d565b919050565b6000604051905090565b600067ffffffffffffffff821115613d3b57613d3a614184565b5b613d44826141d1565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d9f82613f39565b9150613daa83613f39565b9250826fffffffffffffffffffffffffffffffff03821115613dcf57613dce6140c8565b5b828201905092915050565b6000613de582613f75565b9150613df083613f75565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e2557613e246140c8565b5b828201905092915050565b6000613e3b82613f75565b9150613e4683613f75565b925082613e5657613e556140f7565b5b828204905092915050565b6000613e6c82613f75565b9150613e7783613f75565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613eb057613eaf6140c8565b5b828202905092915050565b6000613ec682613f75565b9150613ed183613f75565b925082821015613ee457613ee36140c8565b5b828203905092915050565b6000613efa82613f55565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613fac578082015181840152602081019050613f91565b83811115613fbb576000848401525b50505050565b6000613fcc82613f75565b91506000821415613fe057613fdf6140c8565b5b600182039050919050565b6000600282049050600182168061400357607f821691505b6020821081141561401757614016614126565b5b50919050565b614026826141d1565b810181811067ffffffffffffffff8211171561404557614044614184565b5b80604052505050565b600061405982613f75565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561408c5761408b6140c8565b5b600182019050919050565b60006140a282613f75565b91506140ad83613f75565b9250826140bd576140bc6140f7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4d757374206d696e74206174206c65617374203120746f6b656e000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f596f752063616e2064726f70206d696e696d756d20312c206d6178696d756d2060008201527f313030204e465473000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f45746865722076616c75652073656e742069732062656c6f772074686520707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4d697373696e6720726563697069656e74206164647265737365730000000000600082015250565b7f43616e74206d696e74206d6f7265207468616e20310000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f457863656564206d6178206672656520737570706c7900000000000000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e742064697361626c656400000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b61491381613eef565b811461491e57600080fd5b50565b61492a81613f01565b811461493557600080fd5b50565b61494181613f0d565b811461494c57600080fd5b50565b61495881613f75565b811461496357600080fd5b5056fe68747470733a2f2f6d7739737069646862632e657865637574652d6170692e75732d656173742d312e616d617a6f6e6177732e636f6d2f6465762f746f6b656e2f73656b757368692d6769726c732f68747470733a2f2f6d7739737069646862632e657865637574652d6170692e75732d656173742d312e616d617a6f6e6177732e636f6d2f6465762f636f6e74726163742f73656b757368692d6769726c73a26469706673582212205d35a054df4133ae4deaced8089d6a9cb39cf45ad8a8200c75e588386c7d021d64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000008e1bc9bf0400000000000000000000000000000000000000000000000000000000000000001e61000000000000000000000000000000000000000000000000000000000000000d53454b55534849204749524c53000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003534b470000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : tokenName (string): SEKUSHI GIRLS
Arg [1] : symbol (string): SKG
Arg [2] : cost (uint256): 40000000000000000
Arg [3] : supply (uint256): 7777

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000000000000000000000000000008e1bc9bf040000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000001e61
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [5] : 53454b55534849204749524c5300000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 534b470000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

47657:4772:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22657:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24284:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25845:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25366:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21098:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26721:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21762:823;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48726:89;;;;;;;;;;;;;:::i;:::-;;51273:97;;;;;;;;;;;;;:::i;:::-;;49487:661;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26954:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50713:76;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51725:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51812:90;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21275:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24093:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50887:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23093:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37548:94;;;;;;;;;;;;;:::i;:::-;;50228:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36897:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51906:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24453:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48901:456;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48489:89;;;;;;;;;;;;;:::i;:::-;;26131:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52002:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27202:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51644:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24628:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52264:162;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26490:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37797:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51070:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22657:372;22759:4;22811:25;22796:40;;;:11;:40;;;;:105;;;;22868:33;22853:48;;;:11;:48;;;;22796:105;:172;;;;22933:35;22918:50;;;:11;:50;;;;22796:172;:225;;;;22985:36;23009:11;22985:23;:36::i;:::-;22796:225;22776:245;;22657:372;;;:::o;24284:100::-;24338:13;24371:5;24364:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24284:100;:::o;25845:214::-;25913:7;25941:16;25949:7;25941;:16::i;:::-;25933:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;26027:15;:24;26043:7;26027:24;;;;;;;;;;;;;;;;;;;;;26020:31;;25845:214;;;:::o;25366:413::-;25439:13;25455:24;25471:7;25455:15;:24::i;:::-;25439:40;;25504:5;25498:11;;:2;:11;;;;25490:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;25599:5;25583:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;25608:37;25625:5;25632:12;:10;:12::i;:::-;25608:16;:37::i;:::-;25583:62;25561:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;25743:28;25752:2;25756:7;25765:5;25743:8;:28::i;:::-;25428:351;25366:413;;:::o;21098:100::-;21151:7;21178:12;;21171:19;;21098:100;:::o;26721:162::-;26847:28;26857:4;26863:2;26867:7;26847:9;:28::i;:::-;26721:162;;;:::o;21762:823::-;21851:7;21887:16;21897:5;21887:9;:16::i;:::-;21879:5;:24;21871:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;21953:22;21978:13;:11;:13::i;:::-;21953:38;;22002:19;22036:25;22090:9;22085:426;22109:14;22105:1;:18;22085:426;;;22145:31;22179:11;:14;22191:1;22179:14;;;;;;;;;;;22145:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22238:1;22212:28;;:9;:14;;;:28;;;22208:103;;22281:9;:14;;;22261:34;;22208:103;22350:5;22329:26;;:17;:26;;;22325:175;;;22395:5;22380:11;:20;22376:77;;;22432:1;22425:8;;;;;;;;;22376:77;22471:13;;;;;:::i;:::-;;;;22325:175;22130:381;22125:3;;;;;:::i;:::-;;;;22085:426;;;;22521:56;;;;;;;;;;:::i;:::-;;;;;;;;21762:823;;;;;:::o;48726:89::-;37128:12;:10;:12::i;:::-;37117:23;;:7;:5;:7::i;:::-;:23;;;37109:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48804:5:::1;48781:20;;:28;;;;;;;;;;;;;;;;;;48726:89::o:0;51273:97::-;37128:12;:10;:12::i;:::-;37117:23;;:7;:5;:7::i;:::-;:23;;;37109:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51324:7:::1;:5;:7::i;:::-;51316:25;;:48;51342:21;51316:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;51273:97::o:0;49487:661::-;46710:1;47306:7;;:19;;47298:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46710:1;47439:7;:18;;;;49607:1:::1;49589:10;;:17;;:19;49581:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;49665:10;49654:21;;:7;:5;:7::i;:::-;:21;;;:45;;;;49679:20;;;;;;;;;;;49654:45;49646:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;49752:1;49732:10;;:17;;:21;:49;;;;;49778:3;49757:10;;:17;;:24;;49732:49;49724:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;49892:1;49881:10;;:12;;;;:::i;:::-;49841:36;49863:13;:11;:13::i;:::-;49841:10;;:17;;:21;;:36;;;;:::i;:::-;:53;49833:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;49943:10;49932:21;;:7;:5;:7::i;:::-;:21;;;:70;;;;49970:32;49984:10;;:17;;49970:9;;:13;;:32;;;;:::i;:::-;49957:9;:45;;49932:70;49924:130;;;;;;;;;;;;:::i;:::-;;;;;;;;;50065:6;50061:82;50077:10;;:17;;50075:1;:19;50061:82;;;50111:23;50117:10;;50128:1;50117:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;50132:1;50111:5;:23::i;:::-;;50096:3;;;;;:::i;:::-;;;;50061:82;;;;46666:1:::0;47618:7;:22;;;;49487:661;;:::o;26954:177::-;27084:39;27101:4;27107:2;27111:7;27084:39;;;;;;;;;;;;:16;:39::i;:::-;26954:177;;;:::o;50713:76::-;37128:12;:10;:12::i;:::-;37117:23;;:7;:5;:7::i;:::-;:23;;;37109:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50779:4:::1;50767:9;:16;;;;50713:76:::0;:::o;51725:83::-;51770:7;51792:10;;51785:17;;51725:83;:::o;51812:90::-;51861:7;51883:13;:11;:13::i;:::-;51876:20;;51812:90;:::o;21275:187::-;21342:7;21378:13;:11;:13::i;:::-;21370:5;:21;21362:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;21449:5;21442:12;;21275:187;;;:::o;24093:124::-;24157:7;24184:20;24196:7;24184:11;:20::i;:::-;:25;;;24177:32;;24093:124;;;:::o;50887:80::-;37128:12;:10;:12::i;:::-;37117:23;;:7;:5;:7::i;:::-;:23;;;37109:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50958:3:::1;50945:10;:16;;;;50887:80:::0;:::o;23093:221::-;23157:7;23202:1;23185:19;;:5;:19;;;;23177:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;23278:12;:19;23291:5;23278:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;23270:36;;23263:43;;23093:221;;;:::o;37548:94::-;37128:12;:10;:12::i;:::-;37117:23;;:7;:5;:7::i;:::-;:23;;;37109:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37613:21:::1;37631:1;37613:9;:21::i;:::-;37548:94::o:0;50228:377::-;46710:1;47306:7;;:19;;47298:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46710:1;47439:7;:18;;;;50326:10:::1;50315:21;;:7;:5;:7::i;:::-;:21;;;:45;;;;50340:20;;;;;;;;;;;50315:45;50307:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;50418:11;;50409:5;50393:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:36;;50385:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;50480:1;50471:5;:10;50463:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;50530:1;50522:5;:9;50514:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;50571:28;50581:10;50593:5;50571:9;:28::i;:::-;46666:1:::0;47618:7;:22;;;;50228:377;:::o;36897:87::-;36943:7;36970:6;;;;;;;;;;;36963:13;;36897:87;:::o;51906:92::-;51952:4;51972:20;;;;;;;;;;;51965:27;;51906:92;:::o;24453:104::-;24509:13;24542:7;24535:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24453:104;:::o;48901:456::-;46710:1;47306:7;;:19;;47298:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46710:1;47439:7;:18;;;;48987:20:::1;;;;;;;;;;;48979:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;49048:1;49040:5;:9;:25;;;;;49062:3;49053:5;:12;;49040:25;49032:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;49164:1;49153:10;;:12;;;;:::i;:::-;49125:24;49135:13;:11;:13::i;:::-;49125:5;:9;;:24;;;;:::i;:::-;:41;49117:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;49215:10;49204:21;;:7;:5;:7::i;:::-;:21;;;:58;;;;49242:20;49256:5;49242:9;;:13;;:20;;;;:::i;:::-;49229:9;:33;;49204:58;49196:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;49327:24;49333:10;49345:5;49327;:24::i;:::-;;46666:1:::0;47618:7;:22;;;;48901:456;:::o;48489:89::-;37128:12;:10;:12::i;:::-;37117:23;;:7;:5;:7::i;:::-;:23;;;37109:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48568:4:::1;48545:20;;:27;;;;;;;;;;;;;;;;;;48489:89::o:0;26131:288::-;26238:12;:10;:12::i;:::-;26226:24;;:8;:24;;;;26218:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;26339:8;26294:18;:32;26313:12;:10;:12::i;:::-;26294:32;;;;;;;;;;;;;;;:42;26327:8;26294:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;26392:8;26363:48;;26378:12;:10;:12::i;:::-;26363:48;;;26402:8;26363:48;;;;;;:::i;:::-;;;;;;;;26131:288;;:::o;52002:86::-;52048:7;52071:11;;52064:18;;52002:86;:::o;27202:355::-;27361:28;27371:4;27377:2;27381:7;27361:9;:28::i;:::-;27422:48;27445:4;27451:2;27455:7;27464:5;27422:22;:48::i;:::-;27400:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;27202:355;;;;:::o;51644:77::-;51684:7;51706:9;;51699:16;;51644:77;:::o;24628:334::-;24701:13;24735:16;24743:7;24735;:16::i;:::-;24727:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;24816:21;24840:10;:8;:10::i;:::-;24816:34;;24892:1;24874:7;24868:21;:25;:86;;;;;;;;;;;;;;;;;24920:7;24929:18;:7;:16;:18::i;:::-;24903:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24868:86;24861:93;;;24628:334;;;:::o;52264:162::-;52308:13;52330:90;;;;;;;;;;;;;;;;;;;52264:162;:::o;26490:164::-;26587:4;26611:18;:25;26630:5;26611:25;;;;;;;;;;;;;;;:35;26637:8;26611:35;;;;;;;;;;;;;;;;;;;;;;;;;26604:42;;26490:164;;;;:::o;37797:192::-;37128:12;:10;:12::i;:::-;37117:23;;:7;:5;:7::i;:::-;:23;;;37109:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37906:1:::1;37886:22;;:8;:22;;;;37878:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;37962:19;37972:8;37962:9;:19::i;:::-;37797:192:::0;:::o;51070:82::-;37128:12;:10;:12::i;:::-;37117:23;;:7;:5;:7::i;:::-;:23;;;37109:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51143:3:::1;51129:11;:17;;;;51070:82:::0;:::o;19224:157::-;19309:4;19348:25;19333:40;;;:11;:40;;;;19326:47;;19224:157;;;:::o;27812:111::-;27869:4;27903:12;;27893:7;:22;27886:29;;27812:111;;;:::o;1357:98::-;1410:7;1437:10;1430:17;;1357:98;:::o;31856:196::-;31998:2;31971:15;:24;31987:7;31971:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;32036:7;32032:2;32016:28;;32025:5;32016:28;;;;;;;;;;;;31856:196;;;:::o;29955:1783::-;30070:35;30108:20;30120:7;30108:11;:20::i;:::-;30070:58;;30141:22;30183:13;:18;;;30167:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;30242:12;:10;:12::i;:::-;30218:36;;:20;30230:7;30218:11;:20::i;:::-;:36;;;30167:87;:154;;;;30271:50;30288:13;:18;;;30308:12;:10;:12::i;:::-;30271:16;:50::i;:::-;30167:154;30141:181;;30343:17;30335:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;30458:4;30436:26;;:13;:18;;;:26;;;30428:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;30538:1;30524:16;;:2;:16;;;;30516:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;30595:43;30617:4;30623:2;30627:7;30636:1;30595:21;:43::i;:::-;30703:49;30720:1;30724:7;30733:13;:18;;;30703:8;:49::i;:::-;30987:1;30957:12;:18;30970:4;30957:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31031:1;31003:12;:16;31016:2;31003:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31079:43;;;;;;;;31094:2;31079:43;;;;;;31105:15;31079:43;;;;;31056:11;:20;31068:7;31056:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31362:19;31394:1;31384:7;:11;;;;:::i;:::-;31362:33;;31451:1;31410:43;;:11;:24;31422:11;31410:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;31406:227;;;31474:20;31482:11;31474:7;:20::i;:::-;31470:152;;;31542:64;;;;;;;;31557:13;:18;;;31542:64;;;;;;31577:13;:28;;;31542:64;;;;;31515:11;:24;31527:11;31515:24;;;;;;;;;;;:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31470:152;31406:227;31669:7;31665:2;31650:27;;31659:4;31650:27;;;;;;;;;;;;31688:42;31709:4;31715:2;31719:7;31728:1;31688:20;:42::i;:::-;30059:1679;;;29955:1783;;;:::o;40886:98::-;40944:7;40975:1;40971;:5;;;;:::i;:::-;40964:12;;40886:98;;;;:::o;41624:::-;41682:7;41713:1;41709;:5;;;;:::i;:::-;41702:12;;41624:98;;;;:::o;51508:130::-;51576:7;51591:20;51601:2;51605:5;51591:9;:20::i;:::-;51627:5;51620:12;;51508:130;;;;:::o;23559:472::-;23620:21;;:::i;:::-;23662:16;23670:7;23662;:16::i;:::-;23654:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;23743:12;23758:7;23743:22;;23738:216;23792:31;23826:11;:17;23838:4;23826:17;;;;;;;;;;;23792:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23888:1;23862:28;;:9;:14;;;:28;;;23858:85;;23918:9;23911:16;;;;;;23858:85;23777:177;23769:6;;;;;:::i;:::-;;;;23738:216;;23559:472;;;;:::o;37997:173::-;38053:16;38072:6;;;;;;;;;;;38053:25;;38098:8;38089:6;;:17;;;;;;;;;;;;;;;;;;38153:8;38122:40;;38143:8;38122:40;;;;;;;;;;;;38042:128;37997:173;:::o;27931:104::-;28000:27;28010:2;28014:8;28000:27;;;;;;;;;;;;:9;:27::i;:::-;27931:104;;:::o;32617:804::-;32772:4;32793:15;:2;:13;;;:15::i;:::-;32789:625;;;32845:2;32829:36;;;32866:12;:10;:12::i;:::-;32880:4;32886:7;32895:5;32829:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32825:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33092:1;33075:6;:13;:18;33071:273;;;33118:61;;;;;;;;;;:::i;:::-;;;;;;;;33071:273;33294:6;33288:13;33279:6;33275:2;33271:15;33264:38;32825:534;32962:45;;;32952:55;;;:6;:55;;;;32945:62;;;;;32789:625;33398:4;33391:11;;32617:804;;;;;;;:::o;52092:168::-;52144:13;52166:88;;;;;;;;;;;;;;;;;;;52092:168;:::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;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2473:2;2464:11;;;;;:::i;:::-;;;2333:154;;;2511:6;2497:21;;;;;1803:723;;;;:::o;33909:159::-;;;;;:::o;34480:158::-;;;;;:::o;28312:1389::-;28435:20;28458:12;;28435:35;;28503:1;28489:16;;:2;:16;;;;28481:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;28688:21;28696:12;28688:7;:21::i;:::-;28687:22;28679:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;28773:1;28762:8;:12;28754:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;28827:61;28857:1;28861:2;28865:12;28879:8;28827:21;:61::i;:::-;28901:30;28934:12;:16;28947:2;28934:16;;;;;;;;;;;;;;;28901:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28980:135;;;;;;;;29036:8;29006:11;:19;;;:39;;;;:::i;:::-;28980:135;;;;;;29095:8;29060:11;:24;;;:44;;;;:::i;:::-;28980:135;;;;;28961:12;:16;28974:2;28961:16;;;;;;;;;;;;;;;:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29154:43;;;;;;;;29169:2;29154:43;;;;;;29180:15;29154:43;;;;;29126:11;:25;29138:12;29126:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29210:20;29233:12;29210:35;;29263:9;29258:325;29282:8;29278:1;:12;29258:325;;;29342:12;29338:2;29317:38;;29334:1;29317:38;;;;;;;;;;;;29396:59;29427:1;29431:2;29435:12;29449:5;29396:22;:59::i;:::-;29370:172;;;;;;;;;;;;:::i;:::-;;;;;;;;;29557:14;;;;;:::i;:::-;;;;29292:3;;;;;:::i;:::-;;;;29258:325;;;;29610:12;29595;:27;;;;29633:60;29662:1;29666:2;29670:12;29684:8;29633:20;:60::i;:::-;28424:1277;;;28312:1389;;;:::o;11396:387::-;11456:4;11664:12;11731:7;11719:20;11711:28;;11774:1;11767:4;:8;11760:15;;;11396:387;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;:::o;7:410: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:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;585:568::-;658:8;668:6;718:3;711:4;703:6;699:17;695:27;685:122;;726:79;;:::i;:::-;685:122;839:6;826:20;816:30;;869:18;861:6;858:30;855:117;;;891:79;;:::i;:::-;855:117;1005:4;997:6;993:17;981:29;;1059:3;1051:4;1043:6;1039:17;1029:8;1025:32;1022:41;1019:128;;;1066:79;;:::i;:::-;1019:128;585:568;;;;;:::o;1159:133::-;1202:5;1240:6;1227:20;1218:29;;1256:30;1280:5;1256:30;:::i;:::-;1159:133;;;;:::o;1298:137::-;1343:5;1381:6;1368:20;1359:29;;1397:32;1423:5;1397:32;:::i;:::-;1298:137;;;;:::o;1441:141::-;1497:5;1528:6;1522:13;1513:22;;1544:32;1570:5;1544:32;:::i;:::-;1441:141;;;;:::o;1601:338::-;1656:5;1705:3;1698:4;1690:6;1686:17;1682:27;1672:122;;1713:79;;:::i;:::-;1672:122;1830:6;1817:20;1855:78;1929:3;1921:6;1914:4;1906:6;1902:17;1855:78;:::i;:::-;1846:87;;1662:277;1601:338;;;;:::o;1945:139::-;1991:5;2029:6;2016:20;2007:29;;2045:33;2072:5;2045:33;:::i;:::-;1945:139;;;;:::o;2090:329::-;2149:6;2198:2;2186:9;2177:7;2173:23;2169:32;2166:119;;;2204:79;;:::i;:::-;2166:119;2324:1;2349:53;2394:7;2385:6;2374:9;2370:22;2349:53;:::i;:::-;2339:63;;2295:117;2090:329;;;;:::o;2425:474::-;2493:6;2501;2550:2;2538:9;2529:7;2525:23;2521:32;2518:119;;;2556:79;;:::i;:::-;2518:119;2676:1;2701:53;2746:7;2737:6;2726:9;2722:22;2701:53;:::i;:::-;2691:63;;2647:117;2803:2;2829:53;2874:7;2865:6;2854:9;2850:22;2829:53;:::i;:::-;2819:63;;2774:118;2425:474;;;;;:::o;2905:619::-;2982:6;2990;2998;3047:2;3035:9;3026:7;3022:23;3018:32;3015:119;;;3053:79;;:::i;:::-;3015:119;3173:1;3198:53;3243:7;3234:6;3223:9;3219:22;3198:53;:::i;:::-;3188:63;;3144:117;3300:2;3326:53;3371:7;3362:6;3351:9;3347:22;3326:53;:::i;:::-;3316:63;;3271:118;3428:2;3454:53;3499:7;3490:6;3479:9;3475:22;3454:53;:::i;:::-;3444:63;;3399:118;2905:619;;;;;:::o;3530:943::-;3625:6;3633;3641;3649;3698:3;3686:9;3677:7;3673:23;3669:33;3666:120;;;3705:79;;:::i;:::-;3666:120;3825:1;3850:53;3895:7;3886:6;3875:9;3871:22;3850:53;:::i;:::-;3840:63;;3796:117;3952:2;3978:53;4023:7;4014:6;4003:9;3999:22;3978:53;:::i;:::-;3968:63;;3923:118;4080:2;4106:53;4151:7;4142:6;4131:9;4127:22;4106:53;:::i;:::-;4096:63;;4051:118;4236:2;4225:9;4221:18;4208:32;4267:18;4259:6;4256:30;4253:117;;;4289:79;;:::i;:::-;4253:117;4394:62;4448:7;4439:6;4428:9;4424:22;4394:62;:::i;:::-;4384:72;;4179:287;3530:943;;;;;;;:::o;4479:468::-;4544:6;4552;4601:2;4589:9;4580:7;4576:23;4572:32;4569:119;;;4607:79;;:::i;:::-;4569:119;4727:1;4752:53;4797:7;4788:6;4777:9;4773:22;4752:53;:::i;:::-;4742:63;;4698:117;4854:2;4880:50;4922:7;4913:6;4902:9;4898:22;4880:50;:::i;:::-;4870:60;;4825:115;4479:468;;;;;:::o;4953:474::-;5021:6;5029;5078:2;5066:9;5057:7;5053:23;5049:32;5046:119;;;5084:79;;:::i;:::-;5046:119;5204:1;5229:53;5274:7;5265:6;5254:9;5250:22;5229:53;:::i;:::-;5219:63;;5175:117;5331:2;5357:53;5402:7;5393:6;5382:9;5378:22;5357:53;:::i;:::-;5347:63;;5302:118;4953:474;;;;;:::o;5433:559::-;5519:6;5527;5576:2;5564:9;5555:7;5551:23;5547:32;5544:119;;;5582:79;;:::i;:::-;5544:119;5730:1;5719:9;5715:17;5702:31;5760:18;5752:6;5749:30;5746:117;;;5782:79;;:::i;:::-;5746:117;5895:80;5967:7;5958:6;5947:9;5943:22;5895:80;:::i;:::-;5877:98;;;;5673:312;5433:559;;;;;:::o;5998:327::-;6056:6;6105:2;6093:9;6084:7;6080:23;6076:32;6073:119;;;6111:79;;:::i;:::-;6073:119;6231:1;6256:52;6300:7;6291:6;6280:9;6276:22;6256:52;:::i;:::-;6246:62;;6202:116;5998:327;;;;:::o;6331:349::-;6400:6;6449:2;6437:9;6428:7;6424:23;6420:32;6417:119;;;6455:79;;:::i;:::-;6417:119;6575:1;6600:63;6655:7;6646:6;6635:9;6631:22;6600:63;:::i;:::-;6590:73;;6546:127;6331:349;;;;:::o;6686:329::-;6745:6;6794:2;6782:9;6773:7;6769:23;6765:32;6762:119;;;6800:79;;:::i;:::-;6762:119;6920:1;6945:53;6990:7;6981:6;6970:9;6966:22;6945:53;:::i;:::-;6935:63;;6891:117;6686:329;;;;:::o;7021:118::-;7108:24;7126:5;7108:24;:::i;:::-;7103:3;7096:37;7021:118;;:::o;7145:109::-;7226:21;7241:5;7226:21;:::i;:::-;7221:3;7214:34;7145:109;;:::o;7260:360::-;7346:3;7374:38;7406:5;7374:38;:::i;:::-;7428:70;7491:6;7486:3;7428:70;:::i;:::-;7421:77;;7507:52;7552:6;7547:3;7540:4;7533:5;7529:16;7507:52;:::i;:::-;7584:29;7606:6;7584:29;:::i;:::-;7579:3;7575:39;7568:46;;7350:270;7260:360;;;;:::o;7626:364::-;7714:3;7742:39;7775:5;7742:39;:::i;:::-;7797:71;7861:6;7856:3;7797:71;:::i;:::-;7790:78;;7877:52;7922:6;7917:3;7910:4;7903:5;7899:16;7877:52;:::i;:::-;7954:29;7976:6;7954:29;:::i;:::-;7949:3;7945:39;7938:46;;7718:272;7626:364;;;;:::o;7996:377::-;8102:3;8130:39;8163:5;8130:39;:::i;:::-;8185:89;8267:6;8262:3;8185:89;:::i;:::-;8178:96;;8283:52;8328:6;8323:3;8316:4;8309:5;8305:16;8283:52;:::i;:::-;8360:6;8355:3;8351:16;8344:23;;8106:267;7996:377;;;;:::o;8379:366::-;8521:3;8542:67;8606:2;8601:3;8542:67;:::i;:::-;8535:74;;8618:93;8707:3;8618:93;:::i;:::-;8736:2;8731:3;8727:12;8720:19;;8379:366;;;:::o;8751:::-;8893:3;8914:67;8978:2;8973:3;8914:67;:::i;:::-;8907:74;;8990:93;9079:3;8990:93;:::i;:::-;9108:2;9103:3;9099:12;9092:19;;8751:366;;;:::o;9123:::-;9265:3;9286:67;9350:2;9345:3;9286:67;:::i;:::-;9279:74;;9362:93;9451:3;9362:93;:::i;:::-;9480:2;9475:3;9471:12;9464:19;;9123:366;;;:::o;9495:::-;9637:3;9658:67;9722:2;9717:3;9658:67;:::i;:::-;9651:74;;9734:93;9823:3;9734:93;:::i;:::-;9852:2;9847:3;9843:12;9836:19;;9495:366;;;:::o;9867:::-;10009:3;10030:67;10094:2;10089:3;10030:67;:::i;:::-;10023:74;;10106:93;10195:3;10106:93;:::i;:::-;10224:2;10219:3;10215:12;10208:19;;9867:366;;;:::o;10239:::-;10381:3;10402:67;10466:2;10461:3;10402:67;:::i;:::-;10395:74;;10478:93;10567:3;10478:93;:::i;:::-;10596:2;10591:3;10587:12;10580:19;;10239:366;;;:::o;10611:::-;10753:3;10774:67;10838:2;10833:3;10774:67;:::i;:::-;10767:74;;10850:93;10939:3;10850:93;:::i;:::-;10968:2;10963:3;10959:12;10952:19;;10611:366;;;:::o;10983:::-;11125:3;11146:67;11210:2;11205:3;11146:67;:::i;:::-;11139:74;;11222:93;11311:3;11222:93;:::i;:::-;11340:2;11335:3;11331:12;11324:19;;10983:366;;;:::o;11355:::-;11497:3;11518:67;11582:2;11577:3;11518:67;:::i;:::-;11511:74;;11594:93;11683:3;11594:93;:::i;:::-;11712:2;11707:3;11703:12;11696:19;;11355:366;;;:::o;11727:::-;11869:3;11890:67;11954:2;11949:3;11890:67;:::i;:::-;11883:74;;11966:93;12055:3;11966:93;:::i;:::-;12084:2;12079:3;12075:12;12068:19;;11727:366;;;:::o;12099:::-;12241:3;12262:67;12326:2;12321:3;12262:67;:::i;:::-;12255:74;;12338:93;12427:3;12338:93;:::i;:::-;12456:2;12451:3;12447:12;12440:19;;12099:366;;;:::o;12471:::-;12613:3;12634:67;12698:2;12693:3;12634:67;:::i;:::-;12627:74;;12710:93;12799:3;12710:93;:::i;:::-;12828:2;12823:3;12819:12;12812:19;;12471:366;;;:::o;12843:::-;12985:3;13006:67;13070:2;13065:3;13006:67;:::i;:::-;12999:74;;13082:93;13171:3;13082:93;:::i;:::-;13200:2;13195:3;13191:12;13184:19;;12843:366;;;:::o;13215:::-;13357:3;13378:67;13442:2;13437:3;13378:67;:::i;:::-;13371:74;;13454:93;13543:3;13454:93;:::i;:::-;13572:2;13567:3;13563:12;13556:19;;13215:366;;;:::o;13587:::-;13729:3;13750:67;13814:2;13809:3;13750:67;:::i;:::-;13743:74;;13826:93;13915:3;13826:93;:::i;:::-;13944:2;13939:3;13935:12;13928:19;;13587:366;;;:::o;13959:::-;14101:3;14122:67;14186:2;14181:3;14122:67;:::i;:::-;14115:74;;14198:93;14287:3;14198:93;:::i;:::-;14316:2;14311:3;14307:12;14300:19;;13959:366;;;:::o;14331:::-;14473:3;14494:67;14558:2;14553:3;14494:67;:::i;:::-;14487:74;;14570:93;14659:3;14570:93;:::i;:::-;14688:2;14683:3;14679:12;14672:19;;14331:366;;;:::o;14703:::-;14845:3;14866:67;14930:2;14925:3;14866:67;:::i;:::-;14859:74;;14942:93;15031:3;14942:93;:::i;:::-;15060:2;15055:3;15051:12;15044:19;;14703:366;;;:::o;15075:::-;15217:3;15238:67;15302:2;15297:3;15238:67;:::i;:::-;15231:74;;15314:93;15403:3;15314:93;:::i;:::-;15432:2;15427:3;15423:12;15416:19;;15075:366;;;:::o;15447:::-;15589:3;15610:67;15674:2;15669:3;15610:67;:::i;:::-;15603:74;;15686:93;15775:3;15686:93;:::i;:::-;15804:2;15799:3;15795:12;15788:19;;15447:366;;;:::o;15819:::-;15961:3;15982:67;16046:2;16041:3;15982:67;:::i;:::-;15975:74;;16058:93;16147:3;16058:93;:::i;:::-;16176:2;16171:3;16167:12;16160:19;;15819:366;;;:::o;16191:::-;16333:3;16354:67;16418:2;16413:3;16354:67;:::i;:::-;16347:74;;16430:93;16519:3;16430:93;:::i;:::-;16548:2;16543:3;16539:12;16532:19;;16191:366;;;:::o;16563:::-;16705:3;16726:67;16790:2;16785:3;16726:67;:::i;:::-;16719:74;;16802:93;16891:3;16802:93;:::i;:::-;16920:2;16915:3;16911:12;16904:19;;16563:366;;;:::o;16935:::-;17077:3;17098:67;17162:2;17157:3;17098:67;:::i;:::-;17091:74;;17174:93;17263:3;17174:93;:::i;:::-;17292:2;17287:3;17283:12;17276:19;;16935:366;;;:::o;17307:::-;17449:3;17470:67;17534:2;17529:3;17470:67;:::i;:::-;17463:74;;17546:93;17635:3;17546:93;:::i;:::-;17664:2;17659:3;17655:12;17648:19;;17307:366;;;:::o;17679:::-;17821:3;17842:67;17906:2;17901:3;17842:67;:::i;:::-;17835:74;;17918:93;18007:3;17918:93;:::i;:::-;18036:2;18031:3;18027:12;18020:19;;17679:366;;;:::o;18051:::-;18193:3;18214:67;18278:2;18273:3;18214:67;:::i;:::-;18207:74;;18290:93;18379:3;18290:93;:::i;:::-;18408:2;18403:3;18399:12;18392:19;;18051:366;;;:::o;18795:::-;18937:3;18958:67;19022:2;19017:3;18958:67;:::i;:::-;18951:74;;19034:93;19123:3;19034:93;:::i;:::-;19152:2;19147:3;19143:12;19136:19;;18795:366;;;:::o;19167:118::-;19254:24;19272:5;19254:24;:::i;:::-;19249:3;19242:37;19167:118;;:::o;19291:435::-;19471:3;19493:95;19584:3;19575:6;19493:95;:::i;:::-;19486:102;;19605:95;19696:3;19687:6;19605:95;:::i;:::-;19598:102;;19717:3;19710:10;;19291:435;;;;;:::o;19732:222::-;19825:4;19863:2;19852:9;19848:18;19840:26;;19876:71;19944:1;19933:9;19929:17;19920:6;19876:71;:::i;:::-;19732:222;;;;:::o;19960:640::-;20155:4;20193:3;20182:9;20178:19;20170:27;;20207:71;20275:1;20264:9;20260:17;20251:6;20207:71;:::i;:::-;20288:72;20356:2;20345:9;20341:18;20332:6;20288:72;:::i;:::-;20370;20438:2;20427:9;20423:18;20414:6;20370:72;:::i;:::-;20489:9;20483:4;20479:20;20474:2;20463:9;20459:18;20452:48;20517:76;20588:4;20579:6;20517:76;:::i;:::-;20509:84;;19960:640;;;;;;;:::o;20606:210::-;20693:4;20731:2;20720:9;20716:18;20708:26;;20744:65;20806:1;20795:9;20791:17;20782:6;20744:65;:::i;:::-;20606:210;;;;:::o;20822:313::-;20935:4;20973:2;20962:9;20958:18;20950:26;;21022:9;21016:4;21012:20;21008:1;20997:9;20993:17;20986:47;21050:78;21123:4;21114:6;21050:78;:::i;:::-;21042:86;;20822:313;;;;:::o;21141:419::-;21307:4;21345:2;21334:9;21330:18;21322:26;;21394:9;21388:4;21384:20;21380:1;21369:9;21365:17;21358:47;21422:131;21548:4;21422:131;:::i;:::-;21414:139;;21141:419;;;:::o;21566:::-;21732:4;21770:2;21759:9;21755:18;21747:26;;21819:9;21813:4;21809:20;21805:1;21794:9;21790:17;21783:47;21847:131;21973:4;21847:131;:::i;:::-;21839:139;;21566:419;;;:::o;21991:::-;22157:4;22195:2;22184:9;22180:18;22172:26;;22244:9;22238:4;22234:20;22230:1;22219:9;22215:17;22208:47;22272:131;22398:4;22272:131;:::i;:::-;22264:139;;21991:419;;;:::o;22416:::-;22582:4;22620:2;22609:9;22605:18;22597:26;;22669:9;22663:4;22659:20;22655:1;22644:9;22640:17;22633:47;22697:131;22823:4;22697:131;:::i;:::-;22689:139;;22416:419;;;:::o;22841:::-;23007:4;23045:2;23034:9;23030:18;23022:26;;23094:9;23088:4;23084:20;23080:1;23069:9;23065:17;23058:47;23122:131;23248:4;23122:131;:::i;:::-;23114:139;;22841:419;;;:::o;23266:::-;23432:4;23470:2;23459:9;23455:18;23447:26;;23519:9;23513:4;23509:20;23505:1;23494:9;23490:17;23483:47;23547:131;23673:4;23547:131;:::i;:::-;23539:139;;23266:419;;;:::o;23691:::-;23857:4;23895:2;23884:9;23880:18;23872:26;;23944:9;23938:4;23934:20;23930:1;23919:9;23915:17;23908:47;23972:131;24098:4;23972:131;:::i;:::-;23964:139;;23691:419;;;:::o;24116:::-;24282:4;24320:2;24309:9;24305:18;24297:26;;24369:9;24363:4;24359:20;24355:1;24344:9;24340:17;24333:47;24397:131;24523:4;24397:131;:::i;:::-;24389:139;;24116:419;;;:::o;24541:::-;24707:4;24745:2;24734:9;24730:18;24722:26;;24794:9;24788:4;24784:20;24780:1;24769:9;24765:17;24758:47;24822:131;24948:4;24822:131;:::i;:::-;24814:139;;24541:419;;;:::o;24966:::-;25132:4;25170:2;25159:9;25155:18;25147:26;;25219:9;25213:4;25209:20;25205:1;25194:9;25190:17;25183:47;25247:131;25373:4;25247:131;:::i;:::-;25239:139;;24966:419;;;:::o;25391:::-;25557:4;25595:2;25584:9;25580:18;25572:26;;25644:9;25638:4;25634:20;25630:1;25619:9;25615:17;25608:47;25672:131;25798:4;25672:131;:::i;:::-;25664:139;;25391:419;;;:::o;25816:::-;25982:4;26020:2;26009:9;26005:18;25997:26;;26069:9;26063:4;26059:20;26055:1;26044:9;26040:17;26033:47;26097:131;26223:4;26097:131;:::i;:::-;26089:139;;25816:419;;;:::o;26241:::-;26407:4;26445:2;26434:9;26430:18;26422:26;;26494:9;26488:4;26484:20;26480:1;26469:9;26465:17;26458:47;26522:131;26648:4;26522:131;:::i;:::-;26514:139;;26241:419;;;:::o;26666:::-;26832:4;26870:2;26859:9;26855:18;26847:26;;26919:9;26913:4;26909:20;26905:1;26894:9;26890:17;26883:47;26947:131;27073:4;26947:131;:::i;:::-;26939:139;;26666:419;;;:::o;27091:::-;27257:4;27295:2;27284:9;27280:18;27272:26;;27344:9;27338:4;27334:20;27330:1;27319:9;27315:17;27308:47;27372:131;27498:4;27372:131;:::i;:::-;27364:139;;27091:419;;;:::o;27516:::-;27682:4;27720:2;27709:9;27705:18;27697:26;;27769:9;27763:4;27759:20;27755:1;27744:9;27740:17;27733:47;27797:131;27923:4;27797:131;:::i;:::-;27789:139;;27516:419;;;:::o;27941:::-;28107:4;28145:2;28134:9;28130:18;28122:26;;28194:9;28188:4;28184:20;28180:1;28169:9;28165:17;28158:47;28222:131;28348:4;28222:131;:::i;:::-;28214:139;;27941:419;;;:::o;28366:::-;28532:4;28570:2;28559:9;28555:18;28547:26;;28619:9;28613:4;28609:20;28605:1;28594:9;28590:17;28583:47;28647:131;28773:4;28647:131;:::i;:::-;28639:139;;28366:419;;;:::o;28791:::-;28957:4;28995:2;28984:9;28980:18;28972:26;;29044:9;29038:4;29034:20;29030:1;29019:9;29015:17;29008:47;29072:131;29198:4;29072:131;:::i;:::-;29064:139;;28791:419;;;:::o;29216:::-;29382:4;29420:2;29409:9;29405:18;29397:26;;29469:9;29463:4;29459:20;29455:1;29444:9;29440:17;29433:47;29497:131;29623:4;29497:131;:::i;:::-;29489:139;;29216:419;;;:::o;29641:::-;29807:4;29845:2;29834:9;29830:18;29822:26;;29894:9;29888:4;29884:20;29880:1;29869:9;29865:17;29858:47;29922:131;30048:4;29922:131;:::i;:::-;29914:139;;29641:419;;;:::o;30066:::-;30232:4;30270:2;30259:9;30255:18;30247:26;;30319:9;30313:4;30309:20;30305:1;30294:9;30290:17;30283:47;30347:131;30473:4;30347:131;:::i;:::-;30339:139;;30066:419;;;:::o;30491:::-;30657:4;30695:2;30684:9;30680:18;30672:26;;30744:9;30738:4;30734:20;30730:1;30719:9;30715:17;30708:47;30772:131;30898:4;30772:131;:::i;:::-;30764:139;;30491:419;;;:::o;30916:::-;31082:4;31120:2;31109:9;31105:18;31097:26;;31169:9;31163:4;31159:20;31155:1;31144:9;31140:17;31133:47;31197:131;31323:4;31197:131;:::i;:::-;31189:139;;30916:419;;;:::o;31341:::-;31507:4;31545:2;31534:9;31530:18;31522:26;;31594:9;31588:4;31584:20;31580:1;31569:9;31565:17;31558:47;31622:131;31748:4;31622:131;:::i;:::-;31614:139;;31341:419;;;:::o;31766:::-;31932:4;31970:2;31959:9;31955:18;31947:26;;32019:9;32013:4;32009:20;32005:1;31994:9;31990:17;31983:47;32047:131;32173:4;32047:131;:::i;:::-;32039:139;;31766:419;;;:::o;32191:::-;32357:4;32395:2;32384:9;32380:18;32372:26;;32444:9;32438:4;32434:20;32430:1;32419:9;32415:17;32408:47;32472:131;32598:4;32472:131;:::i;:::-;32464:139;;32191:419;;;:::o;33041:::-;33207:4;33245:2;33234:9;33230:18;33222:26;;33294:9;33288:4;33284:20;33280:1;33269:9;33265:17;33258:47;33322:131;33448:4;33322:131;:::i;:::-;33314:139;;33041:419;;;:::o;33466:222::-;33559:4;33597:2;33586:9;33582:18;33574:26;;33610:71;33678:1;33667:9;33663:17;33654:6;33610:71;:::i;:::-;33466:222;;;;:::o;33694:129::-;33728:6;33755:20;;:::i;:::-;33745:30;;33784:33;33812:4;33804:6;33784:33;:::i;:::-;33694:129;;;:::o;33829:75::-;33862:6;33895:2;33889:9;33879:19;;33829:75;:::o;33910:307::-;33971:4;34061:18;34053:6;34050:30;34047:56;;;34083:18;;:::i;:::-;34047:56;34121:29;34143:6;34121:29;:::i;:::-;34113:37;;34205:4;34199;34195:15;34187:23;;33910:307;;;:::o;34223:98::-;34274:6;34308:5;34302:12;34292:22;;34223:98;;;:::o;34327:99::-;34379:6;34413:5;34407:12;34397:22;;34327:99;;;:::o;34432:168::-;34515:11;34549:6;34544:3;34537:19;34589:4;34584:3;34580:14;34565:29;;34432:168;;;;:::o;34606:169::-;34690:11;34724:6;34719:3;34712:19;34764:4;34759:3;34755:14;34740:29;;34606:169;;;;:::o;34781:148::-;34883:11;34920:3;34905:18;;34781:148;;;;:::o;34935:273::-;34975:3;34994:20;35012:1;34994:20;:::i;:::-;34989:25;;35028:20;35046:1;35028:20;:::i;:::-;35023:25;;35150:1;35114:34;35110:42;35107:1;35104:49;35101:75;;;35156:18;;:::i;:::-;35101:75;35200:1;35197;35193:9;35186:16;;34935:273;;;;:::o;35214:305::-;35254:3;35273:20;35291:1;35273:20;:::i;:::-;35268:25;;35307:20;35325:1;35307:20;:::i;:::-;35302:25;;35461:1;35393:66;35389:74;35386:1;35383:81;35380:107;;;35467:18;;:::i;:::-;35380:107;35511:1;35508;35504:9;35497:16;;35214:305;;;;:::o;35525:185::-;35565:1;35582:20;35600:1;35582:20;:::i;:::-;35577:25;;35616:20;35634:1;35616:20;:::i;:::-;35611:25;;35655:1;35645:35;;35660:18;;:::i;:::-;35645:35;35702:1;35699;35695:9;35690:14;;35525:185;;;;:::o;35716:348::-;35756:7;35779:20;35797:1;35779:20;:::i;:::-;35774:25;;35813:20;35831:1;35813:20;:::i;:::-;35808:25;;36001:1;35933:66;35929:74;35926:1;35923:81;35918:1;35911:9;35904:17;35900:105;35897:131;;;36008:18;;:::i;:::-;35897:131;36056:1;36053;36049:9;36038:20;;35716:348;;;;:::o;36070:191::-;36110:4;36130:20;36148:1;36130:20;:::i;:::-;36125:25;;36164:20;36182:1;36164:20;:::i;:::-;36159:25;;36203:1;36200;36197:8;36194:34;;;36208:18;;:::i;:::-;36194:34;36253:1;36250;36246:9;36238:17;;36070:191;;;;:::o;36267:96::-;36304:7;36333:24;36351:5;36333:24;:::i;:::-;36322:35;;36267:96;;;:::o;36369:90::-;36403:7;36446:5;36439:13;36432:21;36421:32;;36369:90;;;:::o;36465:149::-;36501:7;36541:66;36534:5;36530:78;36519:89;;36465:149;;;:::o;36620:118::-;36657:7;36697:34;36690:5;36686:46;36675:57;;36620:118;;;:::o;36744:126::-;36781:7;36821:42;36814:5;36810:54;36799:65;;36744:126;;;:::o;36876:77::-;36913:7;36942:5;36931:16;;36876:77;;;:::o;36959:154::-;37043:6;37038:3;37033;37020:30;37105:1;37096:6;37091:3;37087:16;37080:27;36959:154;;;:::o;37119:307::-;37187:1;37197:113;37211:6;37208:1;37205:13;37197:113;;;37296:1;37291:3;37287:11;37281:18;37277:1;37272:3;37268:11;37261:39;37233:2;37230:1;37226:10;37221:15;;37197:113;;;37328:6;37325:1;37322:13;37319:101;;;37408:1;37399:6;37394:3;37390:16;37383:27;37319:101;37168:258;37119:307;;;:::o;37432:171::-;37471:3;37494:24;37512:5;37494:24;:::i;:::-;37485:33;;37540:4;37533:5;37530:15;37527:41;;;37548:18;;:::i;:::-;37527:41;37595:1;37588:5;37584:13;37577:20;;37432:171;;;:::o;37609:320::-;37653:6;37690:1;37684:4;37680:12;37670:22;;37737:1;37731:4;37727:12;37758:18;37748:81;;37814:4;37806:6;37802:17;37792:27;;37748:81;37876:2;37868:6;37865:14;37845:18;37842:38;37839:84;;;37895:18;;:::i;:::-;37839:84;37660:269;37609:320;;;:::o;37935:281::-;38018:27;38040:4;38018:27;:::i;:::-;38010:6;38006:40;38148:6;38136:10;38133:22;38112:18;38100:10;38097:34;38094:62;38091:88;;;38159:18;;:::i;:::-;38091:88;38199:10;38195:2;38188:22;37978:238;37935:281;;:::o;38222:233::-;38261:3;38284:24;38302:5;38284:24;:::i;:::-;38275:33;;38330:66;38323:5;38320:77;38317:103;;;38400:18;;:::i;:::-;38317:103;38447:1;38440:5;38436:13;38429:20;;38222:233;;;:::o;38461:176::-;38493:1;38510:20;38528:1;38510:20;:::i;:::-;38505:25;;38544:20;38562:1;38544:20;:::i;:::-;38539:25;;38583:1;38573:35;;38588:18;;:::i;:::-;38573:35;38629:1;38626;38622:9;38617:14;;38461:176;;;;:::o;38643:180::-;38691:77;38688:1;38681:88;38788:4;38785:1;38778:15;38812:4;38809:1;38802:15;38829:180;38877:77;38874:1;38867:88;38974:4;38971:1;38964:15;38998:4;38995:1;38988:15;39015:180;39063:77;39060:1;39053:88;39160:4;39157:1;39150:15;39184:4;39181:1;39174:15;39201:180;39249:77;39246:1;39239:88;39346:4;39343:1;39336:15;39370:4;39367:1;39360:15;39387:180;39435:77;39432:1;39425:88;39532:4;39529:1;39522:15;39556:4;39553:1;39546:15;39573:117;39682:1;39679;39672:12;39696:117;39805:1;39802;39795:12;39819:117;39928:1;39925;39918:12;39942:117;40051:1;40048;40041:12;40065:117;40174:1;40171;40164:12;40188:117;40297:1;40294;40287:12;40311:102;40352:6;40403:2;40399:7;40394:2;40387:5;40383:14;40379:28;40369:38;;40311:102;;;:::o;40419:221::-;40559:34;40555:1;40547:6;40543:14;40536:58;40628:4;40623:2;40615:6;40611:15;40604:29;40419:221;:::o;40646:225::-;40786:34;40782:1;40774:6;40770:14;40763:58;40855:8;40850:2;40842:6;40838:15;40831:33;40646:225;:::o;40877:229::-;41017:34;41013:1;41005:6;41001:14;40994:58;41086:12;41081:2;41073:6;41069:15;41062:37;40877:229;:::o;41112:176::-;41252:28;41248:1;41240:6;41236:14;41229:52;41112:176;:::o;41294:222::-;41434:34;41430:1;41422:6;41418:14;41411:58;41503:5;41498:2;41490:6;41486:15;41479:30;41294:222;:::o;41522:224::-;41662:34;41658:1;41650:6;41646:14;41639:58;41731:7;41726:2;41718:6;41714:15;41707:32;41522:224;:::o;41752:227::-;41892:34;41888:1;41880:6;41876:14;41869:58;41961:10;41956:2;41948:6;41944:15;41937:35;41752:227;:::o;41985:244::-;42125:34;42121:1;42113:6;42109:14;42102:58;42194:27;42189:2;42181:6;42177:15;42170:52;41985:244;:::o;42235:168::-;42375:20;42371:1;42363:6;42359:14;42352:44;42235:168;:::o;42409:222::-;42549:34;42545:1;42537:6;42533:14;42526:58;42618:5;42613:2;42605:6;42601:15;42594:30;42409:222;:::o;42637:230::-;42777:34;42773:1;42765:6;42761:14;42754:58;42846:13;42841:2;42833:6;42829:15;42822:38;42637:230;:::o;42873:225::-;43013:34;43009:1;43001:6;42997:14;42990:58;43082:8;43077:2;43069:6;43065:15;43058:33;42873:225;:::o;43104:182::-;43244:34;43240:1;43232:6;43228:14;43221:58;43104:182;:::o;43292:234::-;43432:34;43428:1;43420:6;43416:14;43409:58;43501:17;43496:2;43488:6;43484:15;43477:42;43292:234;:::o;43532:176::-;43672:28;43668:1;43660:6;43656:14;43649:52;43532:176;:::o;43714:237::-;43854:34;43850:1;43842:6;43838:14;43831:58;43923:20;43918:2;43910:6;43906:15;43899:45;43714:237;:::o;43957:177::-;44097:29;44093:1;44085:6;44081:14;44074:53;43957:177;:::o;44140:171::-;44280:23;44276:1;44268:6;44264:14;44257:47;44140:171;:::o;44317:221::-;44457:34;44453:1;44445:6;44441:14;44434:58;44526:4;44521:2;44513:6;44509:15;44502:29;44317:221;:::o;44544:222::-;44684:34;44680:1;44672:6;44668:14;44661:58;44753:5;44748:2;44740:6;44736:15;44729:30;44544:222;:::o;44772:238::-;44912:34;44908:1;44900:6;44896:14;44889:58;44981:21;44976:2;44968:6;44964:15;44957:46;44772:238;:::o;45016:179::-;45156:31;45152:1;45144:6;45140:14;45133:55;45016:179;:::o;45201:172::-;45341:24;45337:1;45329:6;45325:14;45318:48;45201:172;:::o;45379:220::-;45519:34;45515:1;45507:6;45503:14;45496:58;45588:3;45583:2;45575:6;45571:15;45564:28;45379:220;:::o;45605:163::-;45745:15;45741:1;45733:6;45729:14;45722:39;45605:163;:::o;45774:233::-;45914:34;45910:1;45902:6;45898:14;45891:58;45983:16;45978:2;45970:6;45966:15;45959:41;45774:233;:::o;46013:181::-;46153:33;46149:1;46141:6;46137:14;46130:57;46013:181;:::o;46440:232::-;46580:34;46576:1;46568:6;46564:14;46557:58;46649:15;46644:2;46636:6;46632:15;46625:40;46440:232;:::o;46678:122::-;46751:24;46769:5;46751:24;:::i;:::-;46744:5;46741:35;46731:63;;46790:1;46787;46780:12;46731:63;46678:122;:::o;46806:116::-;46876:21;46891:5;46876:21;:::i;:::-;46869:5;46866:32;46856:60;;46912:1;46909;46902:12;46856:60;46806:116;:::o;46928:120::-;47000:23;47017:5;47000:23;:::i;:::-;46993:5;46990:34;46980:62;;47038:1;47035;47028:12;46980:62;46928:120;:::o;47054:122::-;47127:24;47145:5;47127:24;:::i;:::-;47120:5;47117:35;47107:63;;47166:1;47163;47156:12;47107:63;47054:122;:::o

Swarm Source

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