ETH Price: $3,448.95 (-0.89%)
Gas: 4 Gwei

Token

Legends On The Block (LOTB)
 

Overview

Max Total Supply

1,230 LOTB

Holders

1,213

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 LOTB
0x050996E75Ba1a7b5d6C53Aee152d5A2DA376068D
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:
LegendsOnTheBlock

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
 *Submitted for verification at Etherscan.io on 2022-08-07
*/

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// 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 generally not needed starting with Solidity 0.8, since 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;
        }
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/utils/Counters.sol


// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

// File: contracts/LegendsOnTheBlock.sol

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





contract LegendsOnTheBlock is Ownable, ERC721Enumerable {
    using SafeMath for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIds;

    uint public constant MAX_SUPPLY = 1230;
    uint public constant MAX_PER_MINT = 3;

    string public baseTokenURI;

    bool public saleIsActive = false;
    uint public price = 0.0442 ether;

    mapping(address => bool) freeMintDone;

    constructor(string memory baseURI) ERC721("Legends On The Block", "LOTB") {
        setBaseURI(baseURI);
    }

    // Reserve a few NFTs
    function reserveNfts(uint _count, address _to) public onlyOwner {
        uint totalMinted = _tokenIds.current();

        require(totalMinted.add(_count) < MAX_SUPPLY, "Not enough NFTs left to reserve");

        for (uint i = 0; i < _count; i++) {
            _mintSingleNft(_to);
        }
    }

    // Override empty _baseURI function 
    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }

    // Allow owner to set baseTokenURI
    function setBaseURI(string memory _baseTokenURI) public onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    // Set Sale state
    function setSaleState(bool _activeState) public onlyOwner {
        saleIsActive = _activeState;
    }

    // Update price
    function updatePrice(uint _newPrice) public onlyOwner {
        price = _newPrice;
    }

    // Check if free mint is done
    function isFreeMintDone(address wAddress) public view returns (bool) {
        return freeMintDone[wAddress];
    }

    // Mint NFTs
    function mintNft(uint _count) public payable {
        uint totalMinted = _tokenIds.current();
        uint cost = 0;

        if (freeMintDone[msg.sender]) {
            cost = price.mul(_count);
        }
        else {
            cost = price.mul(_count - 1);
            freeMintDone[msg.sender] = true;
        }

        require(totalMinted.add(_count) <= MAX_SUPPLY, "Not enough NFTs left!");
        require(_count >0 && _count <= MAX_PER_MINT, "Cannot mint specified number of NFTs.");
        require(saleIsActive, "Sale is not currently active!");
        require(msg.value >= cost, "Not enough ether to purchase NFTs.");

        for (uint i = 0; i < _count; i++) {
            _mintSingleNft(msg.sender);
        }
    }

    // Mint a single NFT
    function _mintSingleNft(address _to) private {
        _tokenIds.increment();
        uint newTokenID = _tokenIds.current();
        _safeMint(_to, newTokenID);
    }

    // Withdraw ether
    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        require(balance > 0, "No ether left to withdraw");

        (bool success, ) = (msg.sender).call{value: balance}("");
        require(success, "Transfer failed.");
    }

    // Get tokens of an owner
    function tokensOfOwner(address _owner) external view returns (uint[] memory) {

        uint tokenCount = balanceOf(_owner);
        uint[] memory tokensId = new uint256[](tokenCount);

        for (uint i = 0; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"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":"MAX_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wAddress","type":"address"}],"name":"isFreeMintDone","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintNft","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"reserveNfts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_activeState","type":"bool"}],"name":"setSaleState","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"updatePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600d60006101000a81548160ff021916908315150217905550669d07aa73128000600e553480156200003757600080fd5b5060405162004d0338038062004d0383398181016040528101906200005d9190620003f7565b6040518060400160405280601481526020017f4c6567656e6473204f6e2054686520426c6f636b0000000000000000000000008152506040518060400160405280600481526020017f4c4f544200000000000000000000000000000000000000000000000000000000815250620000e9620000dd6200013560201b60201c565b6200013d60201b60201c565b816001908051906020019062000101929190620002d5565b5080600290805190602001906200011a929190620002d5565b5050506200012e816200020160201b60201c565b506200062f565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002116200013560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000237620002ac60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000290576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002879062000463565b60405180910390fd5b80600c9080519060200190620002a8929190620002d5565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002e3906200052b565b90600052602060002090601f01602090048101928262000307576000855562000353565b82601f106200032257805160ff191683800117855562000353565b8280016001018555821562000353579182015b828111156200035257825182559160200191906001019062000335565b5b50905062000362919062000366565b5090565b5b808211156200038157600081600090555060010162000367565b5090565b60006200039c6200039684620004ae565b62000485565b905082815260208101848484011115620003b557600080fd5b620003c2848285620004f5565b509392505050565b600082601f830112620003dc57600080fd5b8151620003ee84826020860162000385565b91505092915050565b6000602082840312156200040a57600080fd5b600082015167ffffffffffffffff8111156200042557600080fd5b6200043384828501620003ca565b91505092915050565b60006200044b602083620004e4565b9150620004588262000606565b602082019050919050565b600060208201905081810360008301526200047e816200043c565b9050919050565b600062000491620004a4565b90506200049f828262000561565b919050565b6000604051905090565b600067ffffffffffffffff821115620004cc57620004cb620005c6565b5b620004d782620005f5565b9050602081019050919050565b600082825260208201905092915050565b60005b8381101562000515578082015181840152602081019050620004f8565b8381111562000525576000848401525b50505050565b600060028204905060018216806200054457607f821691505b602082108114156200055b576200055a62000597565b5b50919050565b6200056c82620005f5565b810181811067ffffffffffffffff821117156200058e576200058d620005c6565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6146c4806200063f6000396000f3fe6080604052600436106101e35760003560e01c806370a0823111610102578063b88d4fde11610095578063d547cfb711610064578063d547cfb7146106f5578063e985e9c514610720578063eb8d24441461075d578063f2fde38b14610788576101e3565b8063b88d4fde1461063d578063ba9283d714610666578063c4e370951461068f578063c87b56dd146106b8576101e3565b80638da5cb5b116100d15780638da5cb5b1461059357806395d89b41146105be578063a035b1fe146105e9578063a22cb46514610614576101e3565b806370a08231146104d9578063715018a6146105165780638462151c1461052d5780638d6cc56d1461056a576101e3565b80632f745c591161017a5780634ab40e9e116101495780634ab40e9e146103f95780634f6ccce71461043657806355f804b3146104735780636352211e1461049c576101e3565b80632f745c591461035157806332cb6b0c1461038e5780633ccfd60b146103b957806342842e0e146103d0576101e3565b806309d42b30116101b657806309d42b30146102b65780630d730acc146102e157806318160ddd146102fd57806323b872dd14610328576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613136565b6107b1565b60405161021c91906137d3565b60405180910390f35b34801561023157600080fd5b5061023a61082b565b60405161024791906137ee565b60405180910390f35b34801561025c57600080fd5b50610277600480360381019061027291906131c9565b6108bd565b604051610284919061374a565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af91906130d1565b610942565b005b3480156102c257600080fd5b506102cb610a5a565b6040516102d89190613b30565b60405180910390f35b6102fb60048036038101906102f691906131c9565b610a5f565b005b34801561030957600080fd5b50610312610cbf565b60405161031f9190613b30565b60405180910390f35b34801561033457600080fd5b5061034f600480360381019061034a9190612fcb565b610ccc565b005b34801561035d57600080fd5b50610378600480360381019061037391906130d1565b610d2c565b6040516103859190613b30565b60405180910390f35b34801561039a57600080fd5b506103a3610dd1565b6040516103b09190613b30565b60405180910390f35b3480156103c557600080fd5b506103ce610dd7565b005b3480156103dc57600080fd5b506103f760048036038101906103f29190612fcb565b610f4b565b005b34801561040557600080fd5b50610420600480360381019061041b9190612f66565b610f6b565b60405161042d91906137d3565b60405180910390f35b34801561044257600080fd5b5061045d600480360381019061045891906131c9565b610fc1565b60405161046a9190613b30565b60405180910390f35b34801561047f57600080fd5b5061049a60048036038101906104959190613188565b611058565b005b3480156104a857600080fd5b506104c360048036038101906104be91906131c9565b6110ee565b6040516104d0919061374a565b60405180910390f35b3480156104e557600080fd5b5061050060048036038101906104fb9190612f66565b6111a0565b60405161050d9190613b30565b60405180910390f35b34801561052257600080fd5b5061052b611258565b005b34801561053957600080fd5b50610554600480360381019061054f9190612f66565b6112e0565b60405161056191906137b1565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c91906131c9565b6113da565b005b34801561059f57600080fd5b506105a8611460565b6040516105b5919061374a565b60405180910390f35b3480156105ca57600080fd5b506105d3611489565b6040516105e091906137ee565b60405180910390f35b3480156105f557600080fd5b506105fe61151b565b60405161060b9190613b30565b60405180910390f35b34801561062057600080fd5b5061063b60048036038101906106369190613095565b611521565b005b34801561064957600080fd5b50610664600480360381019061065f919061301a565b611537565b005b34801561067257600080fd5b5061068d600480360381019061068891906131f2565b611599565b005b34801561069b57600080fd5b506106b660048036038101906106b1919061310d565b6116a6565b005b3480156106c457600080fd5b506106df60048036038101906106da91906131c9565b61173f565b6040516106ec91906137ee565b60405180910390f35b34801561070157600080fd5b5061070a6117e6565b60405161071791906137ee565b60405180910390f35b34801561072c57600080fd5b5061074760048036038101906107429190612f8f565b611874565b60405161075491906137d3565b60405180910390f35b34801561076957600080fd5b50610772611908565b60405161077f91906137d3565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa9190612f66565b61191b565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610824575061082382611a13565b5b9050919050565b60606001805461083a90613e24565b80601f016020809104026020016040519081016040528092919081815260200182805461086690613e24565b80156108b35780601f10610888576101008083540402835291602001916108b3565b820191906000526020600020905b81548152906001019060200180831161089657829003601f168201915b5050505050905090565b60006108c882611af5565b610907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fe90613a10565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094d826110ee565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b590613a90565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109dd611b61565b73ffffffffffffffffffffffffffffffffffffffff161480610a0c5750610a0b81610a06611b61565b611874565b5b610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4290613970565b60405180910390fd5b610a558383611b69565b505050565b600381565b6000610a6b600b611c22565b90506000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610add57610ad683600e54611c3090919063ffffffff16565b9050610b59565b610afe600184610aed9190613d3a565b600e54611c3090919063ffffffff16565b90506001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b6104ce610b6f8484611c4690919063ffffffff16565b1115610bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba790613910565b60405180910390fd5b600083118015610bc1575060038311155b610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf790613930565b60405180910390fd5b600d60009054906101000a900460ff16610c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4690613b10565b60405180910390fd5b80341015610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c89906138f0565b60405180910390fd5b60005b83811015610cb957610ca633611c5c565b8080610cb190613e87565b915050610c95565b50505050565b6000600980549050905090565b610cdd610cd7611b61565b82611c82565b610d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1390613ad0565b60405180910390fd5b610d27838383611d60565b505050565b6000610d37836111a0565b8210610d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6f90613830565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6104ce81565b610ddf611b61565b73ffffffffffffffffffffffffffffffffffffffff16610dfd611460565b73ffffffffffffffffffffffffffffffffffffffff1614610e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4a90613a30565b60405180910390fd5b600047905060008111610e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e92906139f0565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1682604051610ec190613735565b60006040518083038185875af1925050503d8060008114610efe576040519150601f19603f3d011682016040523d82523d6000602084013e610f03565b606091505b5050905080610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e90613ab0565b60405180910390fd5b5050565b610f6683838360405180602001604052806000815250611537565b505050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000610fcb610cbf565b821061100c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100390613af0565b60405180910390fd5b60098281548110611046577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b611060611b61565b73ffffffffffffffffffffffffffffffffffffffff1661107e611460565b73ffffffffffffffffffffffffffffffffffffffff16146110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cb90613a30565b60405180910390fd5b80600c90805190602001906110ea929190612d8a565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e906139b0565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611211576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120890613990565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611260611b61565b73ffffffffffffffffffffffffffffffffffffffff1661127e611460565b73ffffffffffffffffffffffffffffffffffffffff16146112d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cb90613a30565b60405180910390fd5b6112de6000611fbc565b565b606060006112ed836111a0565b905060008167ffffffffffffffff811115611331577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561135f5781602001602082028036833780820191505090505b50905060005b828110156113cf576113778582610d2c565b8282815181106113b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806113c790613e87565b915050611365565b508092505050919050565b6113e2611b61565b73ffffffffffffffffffffffffffffffffffffffff16611400611460565b73ffffffffffffffffffffffffffffffffffffffff1614611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d90613a30565b60405180910390fd5b80600e8190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461149890613e24565b80601f01602080910402602001604051908101604052809291908181526020018280546114c490613e24565b80156115115780601f106114e657610100808354040283529160200191611511565b820191906000526020600020905b8154815290600101906020018083116114f457829003601f168201915b5050505050905090565b600e5481565b61153361152c611b61565b8383612080565b5050565b611548611542611b61565b83611c82565b611587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157e90613ad0565b60405180910390fd5b611593848484846121ed565b50505050565b6115a1611b61565b73ffffffffffffffffffffffffffffffffffffffff166115bf611460565b73ffffffffffffffffffffffffffffffffffffffff1614611615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160c90613a30565b60405180910390fd5b6000611621600b611c22565b90506104ce6116398483611c4690919063ffffffff16565b10611679576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167090613810565b60405180910390fd5b60005b838110156116a05761168d83611c5c565b808061169890613e87565b91505061167c565b50505050565b6116ae611b61565b73ffffffffffffffffffffffffffffffffffffffff166116cc611460565b73ffffffffffffffffffffffffffffffffffffffff1614611722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171990613a30565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b606061174a82611af5565b611789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178090613a70565b60405180910390fd5b6000611793612249565b905060008151116117b357604051806020016040528060008152506117de565b806117bd846122db565b6040516020016117ce929190613711565b6040516020818303038152906040525b915050919050565b600c80546117f390613e24565b80601f016020809104026020016040519081016040528092919081815260200182805461181f90613e24565b801561186c5780601f106118415761010080835404028352916020019161186c565b820191906000526020600020905b81548152906001019060200180831161184f57829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60009054906101000a900460ff1681565b611923611b61565b73ffffffffffffffffffffffffffffffffffffffff16611941611460565b73ffffffffffffffffffffffffffffffffffffffff1614611997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198e90613a30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fe90613870565b60405180910390fd5b611a1081611fbc565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ade57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611aee5750611aed82612488565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611bdc836110ee565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60008183611c3e9190613ce0565b905092915050565b60008183611c549190613c59565b905092915050565b611c66600b6124f2565b6000611c72600b611c22565b9050611c7e8282612508565b5050565b6000611c8d82611af5565b611ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc390613950565b60405180910390fd5b6000611cd7836110ee565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d4657508373ffffffffffffffffffffffffffffffffffffffff16611d2e846108bd565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d575750611d568185611874565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d80826110ee565b73ffffffffffffffffffffffffffffffffffffffff1614611dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcd90613a50565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3d906138b0565b60405180910390fd5b611e51838383612526565b611e5c600082611b69565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611eac9190613d3a565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f039190613c59565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e6906138d0565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121e091906137d3565b60405180910390a3505050565b6121f8848484611d60565b6122048484848461263a565b612243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223a90613850565b60405180910390fd5b50505050565b6060600c805461225890613e24565b80601f016020809104026020016040519081016040528092919081815260200182805461228490613e24565b80156122d15780601f106122a6576101008083540402835291602001916122d1565b820191906000526020600020905b8154815290600101906020018083116122b457829003601f168201915b5050505050905090565b60606000821415612323576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612483565b600082905060005b6000821461235557808061233e90613e87565b915050600a8261234e9190613caf565b915061232b565b60008167ffffffffffffffff811115612397577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123c95781602001600182028036833780820191505090505b5090505b6000851461247c576001826123e29190613d3a565b9150600a856123f19190613ed0565b60306123fd9190613c59565b60f81b818381518110612439577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124759190613caf565b94506123cd565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6001816000016000828254019250508190555050565b6125228282604051806020016040528060008152506127d1565b5050565b61253183838361282c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125745761256f81612831565b6125b3565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146125b2576125b1838261287a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125f6576125f1816129e7565b612635565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612634576126338282612b2a565b5b5b505050565b600061265b8473ffffffffffffffffffffffffffffffffffffffff16612ba9565b156127c4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612684611b61565b8786866040518563ffffffff1660e01b81526004016126a69493929190613765565b602060405180830381600087803b1580156126c057600080fd5b505af19250505080156126f157506040513d601f19601f820116820180604052508101906126ee919061315f565b60015b612774573d8060008114612721576040519150601f19603f3d011682016040523d82523d6000602084013e612726565b606091505b5060008151141561276c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276390613850565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127c9565b600190505b949350505050565b6127db8383612bbc565b6127e8600084848461263a565b612827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281e90613850565b60405180910390fd5b505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612887846111a0565b6128919190613d3a565b9050600060086000848152602001908152602001600020549050818114612976576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506129fb9190613d3a565b90506000600a6000848152602001908152602001600020549050600060098381548110612a51577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110612a99577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612b0e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612b35836111a0565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c23906139d0565b60405180910390fd5b612c3581611af5565b15612c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6c90613890565b60405180910390fd5b612c8160008383612526565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cd19190613c59565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612d9690613e24565b90600052602060002090601f016020900481019282612db85760008555612dff565b82601f10612dd157805160ff1916838001178555612dff565b82800160010185558215612dff579182015b82811115612dfe578251825591602001919060010190612de3565b5b509050612e0c9190612e10565b5090565b5b80821115612e29576000816000905550600101612e11565b5090565b6000612e40612e3b84613b70565b613b4b565b905082815260208101848484011115612e5857600080fd5b612e63848285613de2565b509392505050565b6000612e7e612e7984613ba1565b613b4b565b905082815260208101848484011115612e9657600080fd5b612ea1848285613de2565b509392505050565b600081359050612eb881614632565b92915050565b600081359050612ecd81614649565b92915050565b600081359050612ee281614660565b92915050565b600081519050612ef781614660565b92915050565b600082601f830112612f0e57600080fd5b8135612f1e848260208601612e2d565b91505092915050565b600082601f830112612f3857600080fd5b8135612f48848260208601612e6b565b91505092915050565b600081359050612f6081614677565b92915050565b600060208284031215612f7857600080fd5b6000612f8684828501612ea9565b91505092915050565b60008060408385031215612fa257600080fd5b6000612fb085828601612ea9565b9250506020612fc185828601612ea9565b9150509250929050565b600080600060608486031215612fe057600080fd5b6000612fee86828701612ea9565b9350506020612fff86828701612ea9565b925050604061301086828701612f51565b9150509250925092565b6000806000806080858703121561303057600080fd5b600061303e87828801612ea9565b945050602061304f87828801612ea9565b935050604061306087828801612f51565b925050606085013567ffffffffffffffff81111561307d57600080fd5b61308987828801612efd565b91505092959194509250565b600080604083850312156130a857600080fd5b60006130b685828601612ea9565b92505060206130c785828601612ebe565b9150509250929050565b600080604083850312156130e457600080fd5b60006130f285828601612ea9565b925050602061310385828601612f51565b9150509250929050565b60006020828403121561311f57600080fd5b600061312d84828501612ebe565b91505092915050565b60006020828403121561314857600080fd5b600061315684828501612ed3565b91505092915050565b60006020828403121561317157600080fd5b600061317f84828501612ee8565b91505092915050565b60006020828403121561319a57600080fd5b600082013567ffffffffffffffff8111156131b457600080fd5b6131c084828501612f27565b91505092915050565b6000602082840312156131db57600080fd5b60006131e984828501612f51565b91505092915050565b6000806040838503121561320557600080fd5b600061321385828601612f51565b925050602061322485828601612ea9565b9150509250929050565b600061323a83836136f3565b60208301905092915050565b61324f81613d6e565b82525050565b600061326082613be2565b61326a8185613c10565b935061327583613bd2565b8060005b838110156132a657815161328d888261322e565b975061329883613c03565b925050600181019050613279565b5085935050505092915050565b6132bc81613d80565b82525050565b60006132cd82613bed565b6132d78185613c21565b93506132e7818560208601613df1565b6132f081613fbd565b840191505092915050565b600061330682613bf8565b6133108185613c3d565b9350613320818560208601613df1565b61332981613fbd565b840191505092915050565b600061333f82613bf8565b6133498185613c4e565b9350613359818560208601613df1565b80840191505092915050565b6000613372601f83613c3d565b915061337d82613fce565b602082019050919050565b6000613395602b83613c3d565b91506133a082613ff7565b604082019050919050565b60006133b8603283613c3d565b91506133c382614046565b604082019050919050565b60006133db602683613c3d565b91506133e682614095565b604082019050919050565b60006133fe601c83613c3d565b9150613409826140e4565b602082019050919050565b6000613421602483613c3d565b915061342c8261410d565b604082019050919050565b6000613444601983613c3d565b915061344f8261415c565b602082019050919050565b6000613467602283613c3d565b915061347282614185565b604082019050919050565b600061348a601583613c3d565b9150613495826141d4565b602082019050919050565b60006134ad602583613c3d565b91506134b8826141fd565b604082019050919050565b60006134d0602c83613c3d565b91506134db8261424c565b604082019050919050565b60006134f3603883613c3d565b91506134fe8261429b565b604082019050919050565b6000613516602a83613c3d565b9150613521826142ea565b604082019050919050565b6000613539602983613c3d565b915061354482614339565b604082019050919050565b600061355c602083613c3d565b915061356782614388565b602082019050919050565b600061357f601983613c3d565b915061358a826143b1565b602082019050919050565b60006135a2602c83613c3d565b91506135ad826143da565b604082019050919050565b60006135c5602083613c3d565b91506135d082614429565b602082019050919050565b60006135e8602983613c3d565b91506135f382614452565b604082019050919050565b600061360b602f83613c3d565b9150613616826144a1565b604082019050919050565b600061362e602183613c3d565b9150613639826144f0565b604082019050919050565b6000613651600083613c32565b915061365c8261453f565b600082019050919050565b6000613674601083613c3d565b915061367f82614542565b602082019050919050565b6000613697603183613c3d565b91506136a28261456b565b604082019050919050565b60006136ba602c83613c3d565b91506136c5826145ba565b604082019050919050565b60006136dd601d83613c3d565b91506136e882614609565b602082019050919050565b6136fc81613dd8565b82525050565b61370b81613dd8565b82525050565b600061371d8285613334565b91506137298284613334565b91508190509392505050565b600061374082613644565b9150819050919050565b600060208201905061375f6000830184613246565b92915050565b600060808201905061377a6000830187613246565b6137876020830186613246565b6137946040830185613702565b81810360608301526137a681846132c2565b905095945050505050565b600060208201905081810360008301526137cb8184613255565b905092915050565b60006020820190506137e860008301846132b3565b92915050565b6000602082019050818103600083015261380881846132fb565b905092915050565b6000602082019050818103600083015261382981613365565b9050919050565b6000602082019050818103600083015261384981613388565b9050919050565b60006020820190508181036000830152613869816133ab565b9050919050565b60006020820190508181036000830152613889816133ce565b9050919050565b600060208201905081810360008301526138a9816133f1565b9050919050565b600060208201905081810360008301526138c981613414565b9050919050565b600060208201905081810360008301526138e981613437565b9050919050565b600060208201905081810360008301526139098161345a565b9050919050565b600060208201905081810360008301526139298161347d565b9050919050565b60006020820190508181036000830152613949816134a0565b9050919050565b60006020820190508181036000830152613969816134c3565b9050919050565b60006020820190508181036000830152613989816134e6565b9050919050565b600060208201905081810360008301526139a981613509565b9050919050565b600060208201905081810360008301526139c98161352c565b9050919050565b600060208201905081810360008301526139e98161354f565b9050919050565b60006020820190508181036000830152613a0981613572565b9050919050565b60006020820190508181036000830152613a2981613595565b9050919050565b60006020820190508181036000830152613a49816135b8565b9050919050565b60006020820190508181036000830152613a69816135db565b9050919050565b60006020820190508181036000830152613a89816135fe565b9050919050565b60006020820190508181036000830152613aa981613621565b9050919050565b60006020820190508181036000830152613ac981613667565b9050919050565b60006020820190508181036000830152613ae98161368a565b9050919050565b60006020820190508181036000830152613b09816136ad565b9050919050565b60006020820190508181036000830152613b29816136d0565b9050919050565b6000602082019050613b456000830184613702565b92915050565b6000613b55613b66565b9050613b618282613e56565b919050565b6000604051905090565b600067ffffffffffffffff821115613b8b57613b8a613f8e565b5b613b9482613fbd565b9050602081019050919050565b600067ffffffffffffffff821115613bbc57613bbb613f8e565b5b613bc582613fbd565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c6482613dd8565b9150613c6f83613dd8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ca457613ca3613f01565b5b828201905092915050565b6000613cba82613dd8565b9150613cc583613dd8565b925082613cd557613cd4613f30565b5b828204905092915050565b6000613ceb82613dd8565b9150613cf683613dd8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d2f57613d2e613f01565b5b828202905092915050565b6000613d4582613dd8565b9150613d5083613dd8565b925082821015613d6357613d62613f01565b5b828203905092915050565b6000613d7982613db8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e0f578082015181840152602081019050613df4565b83811115613e1e576000848401525b50505050565b60006002820490506001821680613e3c57607f821691505b60208210811415613e5057613e4f613f5f565b5b50919050565b613e5f82613fbd565b810181811067ffffffffffffffff82111715613e7e57613e7d613f8e565b5b80604052505050565b6000613e9282613dd8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ec557613ec4613f01565b5b600182019050919050565b6000613edb82613dd8565b9150613ee683613dd8565b925082613ef657613ef5613f30565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4e6f7420656e6f756768204e465473206c65667420746f207265736572766500600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e6f7420656e6f75676820657468657220746f207075726368617365204e465460008201527f732e000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204e465473206c656674210000000000000000000000600082015250565b7f43616e6e6f74206d696e7420737065636966696564206e756d626572206f662060008201527f4e4654732e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4e6f206574686572206c65667420746f20776974686472617700000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f742063757272656e746c792061637469766521000000600082015250565b61463b81613d6e565b811461464657600080fd5b50565b61465281613d80565b811461465d57600080fd5b50565b61466981613d8c565b811461467457600080fd5b50565b61468081613dd8565b811461468b57600080fd5b5056fea2646970667358221220119e29424579d5e4ba5dedcb618b75c92222d964060e2146ac523b1dfaa1b55564736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e5a6d4e65424a457756706b354a6b52644465455069376f5a636248685a6f3778534c354572666d647861552f00000000000000000000

Deployed Bytecode

0x6080604052600436106101e35760003560e01c806370a0823111610102578063b88d4fde11610095578063d547cfb711610064578063d547cfb7146106f5578063e985e9c514610720578063eb8d24441461075d578063f2fde38b14610788576101e3565b8063b88d4fde1461063d578063ba9283d714610666578063c4e370951461068f578063c87b56dd146106b8576101e3565b80638da5cb5b116100d15780638da5cb5b1461059357806395d89b41146105be578063a035b1fe146105e9578063a22cb46514610614576101e3565b806370a08231146104d9578063715018a6146105165780638462151c1461052d5780638d6cc56d1461056a576101e3565b80632f745c591161017a5780634ab40e9e116101495780634ab40e9e146103f95780634f6ccce71461043657806355f804b3146104735780636352211e1461049c576101e3565b80632f745c591461035157806332cb6b0c1461038e5780633ccfd60b146103b957806342842e0e146103d0576101e3565b806309d42b30116101b657806309d42b30146102b65780630d730acc146102e157806318160ddd146102fd57806323b872dd14610328576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613136565b6107b1565b60405161021c91906137d3565b60405180910390f35b34801561023157600080fd5b5061023a61082b565b60405161024791906137ee565b60405180910390f35b34801561025c57600080fd5b50610277600480360381019061027291906131c9565b6108bd565b604051610284919061374a565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af91906130d1565b610942565b005b3480156102c257600080fd5b506102cb610a5a565b6040516102d89190613b30565b60405180910390f35b6102fb60048036038101906102f691906131c9565b610a5f565b005b34801561030957600080fd5b50610312610cbf565b60405161031f9190613b30565b60405180910390f35b34801561033457600080fd5b5061034f600480360381019061034a9190612fcb565b610ccc565b005b34801561035d57600080fd5b50610378600480360381019061037391906130d1565b610d2c565b6040516103859190613b30565b60405180910390f35b34801561039a57600080fd5b506103a3610dd1565b6040516103b09190613b30565b60405180910390f35b3480156103c557600080fd5b506103ce610dd7565b005b3480156103dc57600080fd5b506103f760048036038101906103f29190612fcb565b610f4b565b005b34801561040557600080fd5b50610420600480360381019061041b9190612f66565b610f6b565b60405161042d91906137d3565b60405180910390f35b34801561044257600080fd5b5061045d600480360381019061045891906131c9565b610fc1565b60405161046a9190613b30565b60405180910390f35b34801561047f57600080fd5b5061049a60048036038101906104959190613188565b611058565b005b3480156104a857600080fd5b506104c360048036038101906104be91906131c9565b6110ee565b6040516104d0919061374a565b60405180910390f35b3480156104e557600080fd5b5061050060048036038101906104fb9190612f66565b6111a0565b60405161050d9190613b30565b60405180910390f35b34801561052257600080fd5b5061052b611258565b005b34801561053957600080fd5b50610554600480360381019061054f9190612f66565b6112e0565b60405161056191906137b1565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c91906131c9565b6113da565b005b34801561059f57600080fd5b506105a8611460565b6040516105b5919061374a565b60405180910390f35b3480156105ca57600080fd5b506105d3611489565b6040516105e091906137ee565b60405180910390f35b3480156105f557600080fd5b506105fe61151b565b60405161060b9190613b30565b60405180910390f35b34801561062057600080fd5b5061063b60048036038101906106369190613095565b611521565b005b34801561064957600080fd5b50610664600480360381019061065f919061301a565b611537565b005b34801561067257600080fd5b5061068d600480360381019061068891906131f2565b611599565b005b34801561069b57600080fd5b506106b660048036038101906106b1919061310d565b6116a6565b005b3480156106c457600080fd5b506106df60048036038101906106da91906131c9565b61173f565b6040516106ec91906137ee565b60405180910390f35b34801561070157600080fd5b5061070a6117e6565b60405161071791906137ee565b60405180910390f35b34801561072c57600080fd5b5061074760048036038101906107429190612f8f565b611874565b60405161075491906137d3565b60405180910390f35b34801561076957600080fd5b50610772611908565b60405161077f91906137d3565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa9190612f66565b61191b565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610824575061082382611a13565b5b9050919050565b60606001805461083a90613e24565b80601f016020809104026020016040519081016040528092919081815260200182805461086690613e24565b80156108b35780601f10610888576101008083540402835291602001916108b3565b820191906000526020600020905b81548152906001019060200180831161089657829003601f168201915b5050505050905090565b60006108c882611af5565b610907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fe90613a10565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094d826110ee565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b590613a90565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109dd611b61565b73ffffffffffffffffffffffffffffffffffffffff161480610a0c5750610a0b81610a06611b61565b611874565b5b610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4290613970565b60405180910390fd5b610a558383611b69565b505050565b600381565b6000610a6b600b611c22565b90506000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610add57610ad683600e54611c3090919063ffffffff16565b9050610b59565b610afe600184610aed9190613d3a565b600e54611c3090919063ffffffff16565b90506001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b6104ce610b6f8484611c4690919063ffffffff16565b1115610bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba790613910565b60405180910390fd5b600083118015610bc1575060038311155b610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf790613930565b60405180910390fd5b600d60009054906101000a900460ff16610c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4690613b10565b60405180910390fd5b80341015610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c89906138f0565b60405180910390fd5b60005b83811015610cb957610ca633611c5c565b8080610cb190613e87565b915050610c95565b50505050565b6000600980549050905090565b610cdd610cd7611b61565b82611c82565b610d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1390613ad0565b60405180910390fd5b610d27838383611d60565b505050565b6000610d37836111a0565b8210610d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6f90613830565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6104ce81565b610ddf611b61565b73ffffffffffffffffffffffffffffffffffffffff16610dfd611460565b73ffffffffffffffffffffffffffffffffffffffff1614610e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4a90613a30565b60405180910390fd5b600047905060008111610e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e92906139f0565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1682604051610ec190613735565b60006040518083038185875af1925050503d8060008114610efe576040519150601f19603f3d011682016040523d82523d6000602084013e610f03565b606091505b5050905080610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e90613ab0565b60405180910390fd5b5050565b610f6683838360405180602001604052806000815250611537565b505050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000610fcb610cbf565b821061100c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100390613af0565b60405180910390fd5b60098281548110611046577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b611060611b61565b73ffffffffffffffffffffffffffffffffffffffff1661107e611460565b73ffffffffffffffffffffffffffffffffffffffff16146110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cb90613a30565b60405180910390fd5b80600c90805190602001906110ea929190612d8a565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e906139b0565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611211576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120890613990565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611260611b61565b73ffffffffffffffffffffffffffffffffffffffff1661127e611460565b73ffffffffffffffffffffffffffffffffffffffff16146112d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cb90613a30565b60405180910390fd5b6112de6000611fbc565b565b606060006112ed836111a0565b905060008167ffffffffffffffff811115611331577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561135f5781602001602082028036833780820191505090505b50905060005b828110156113cf576113778582610d2c565b8282815181106113b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806113c790613e87565b915050611365565b508092505050919050565b6113e2611b61565b73ffffffffffffffffffffffffffffffffffffffff16611400611460565b73ffffffffffffffffffffffffffffffffffffffff1614611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d90613a30565b60405180910390fd5b80600e8190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461149890613e24565b80601f01602080910402602001604051908101604052809291908181526020018280546114c490613e24565b80156115115780601f106114e657610100808354040283529160200191611511565b820191906000526020600020905b8154815290600101906020018083116114f457829003601f168201915b5050505050905090565b600e5481565b61153361152c611b61565b8383612080565b5050565b611548611542611b61565b83611c82565b611587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157e90613ad0565b60405180910390fd5b611593848484846121ed565b50505050565b6115a1611b61565b73ffffffffffffffffffffffffffffffffffffffff166115bf611460565b73ffffffffffffffffffffffffffffffffffffffff1614611615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160c90613a30565b60405180910390fd5b6000611621600b611c22565b90506104ce6116398483611c4690919063ffffffff16565b10611679576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167090613810565b60405180910390fd5b60005b838110156116a05761168d83611c5c565b808061169890613e87565b91505061167c565b50505050565b6116ae611b61565b73ffffffffffffffffffffffffffffffffffffffff166116cc611460565b73ffffffffffffffffffffffffffffffffffffffff1614611722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171990613a30565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b606061174a82611af5565b611789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178090613a70565b60405180910390fd5b6000611793612249565b905060008151116117b357604051806020016040528060008152506117de565b806117bd846122db565b6040516020016117ce929190613711565b6040516020818303038152906040525b915050919050565b600c80546117f390613e24565b80601f016020809104026020016040519081016040528092919081815260200182805461181f90613e24565b801561186c5780601f106118415761010080835404028352916020019161186c565b820191906000526020600020905b81548152906001019060200180831161184f57829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60009054906101000a900460ff1681565b611923611b61565b73ffffffffffffffffffffffffffffffffffffffff16611941611460565b73ffffffffffffffffffffffffffffffffffffffff1614611997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198e90613a30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fe90613870565b60405180910390fd5b611a1081611fbc565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ade57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611aee5750611aed82612488565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611bdc836110ee565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60008183611c3e9190613ce0565b905092915050565b60008183611c549190613c59565b905092915050565b611c66600b6124f2565b6000611c72600b611c22565b9050611c7e8282612508565b5050565b6000611c8d82611af5565b611ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc390613950565b60405180910390fd5b6000611cd7836110ee565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d4657508373ffffffffffffffffffffffffffffffffffffffff16611d2e846108bd565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d575750611d568185611874565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d80826110ee565b73ffffffffffffffffffffffffffffffffffffffff1614611dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcd90613a50565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3d906138b0565b60405180910390fd5b611e51838383612526565b611e5c600082611b69565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611eac9190613d3a565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f039190613c59565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e6906138d0565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121e091906137d3565b60405180910390a3505050565b6121f8848484611d60565b6122048484848461263a565b612243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223a90613850565b60405180910390fd5b50505050565b6060600c805461225890613e24565b80601f016020809104026020016040519081016040528092919081815260200182805461228490613e24565b80156122d15780601f106122a6576101008083540402835291602001916122d1565b820191906000526020600020905b8154815290600101906020018083116122b457829003601f168201915b5050505050905090565b60606000821415612323576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612483565b600082905060005b6000821461235557808061233e90613e87565b915050600a8261234e9190613caf565b915061232b565b60008167ffffffffffffffff811115612397577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123c95781602001600182028036833780820191505090505b5090505b6000851461247c576001826123e29190613d3a565b9150600a856123f19190613ed0565b60306123fd9190613c59565b60f81b818381518110612439577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124759190613caf565b94506123cd565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6001816000016000828254019250508190555050565b6125228282604051806020016040528060008152506127d1565b5050565b61253183838361282c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125745761256f81612831565b6125b3565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146125b2576125b1838261287a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125f6576125f1816129e7565b612635565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612634576126338282612b2a565b5b5b505050565b600061265b8473ffffffffffffffffffffffffffffffffffffffff16612ba9565b156127c4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612684611b61565b8786866040518563ffffffff1660e01b81526004016126a69493929190613765565b602060405180830381600087803b1580156126c057600080fd5b505af19250505080156126f157506040513d601f19601f820116820180604052508101906126ee919061315f565b60015b612774573d8060008114612721576040519150601f19603f3d011682016040523d82523d6000602084013e612726565b606091505b5060008151141561276c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276390613850565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127c9565b600190505b949350505050565b6127db8383612bbc565b6127e8600084848461263a565b612827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281e90613850565b60405180910390fd5b505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612887846111a0565b6128919190613d3a565b9050600060086000848152602001908152602001600020549050818114612976576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506129fb9190613d3a565b90506000600a6000848152602001908152602001600020549050600060098381548110612a51577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110612a99577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612b0e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612b35836111a0565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c23906139d0565b60405180910390fd5b612c3581611af5565b15612c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6c90613890565b60405180910390fd5b612c8160008383612526565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cd19190613c59565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612d9690613e24565b90600052602060002090601f016020900481019282612db85760008555612dff565b82601f10612dd157805160ff1916838001178555612dff565b82800160010185558215612dff579182015b82811115612dfe578251825591602001919060010190612de3565b5b509050612e0c9190612e10565b5090565b5b80821115612e29576000816000905550600101612e11565b5090565b6000612e40612e3b84613b70565b613b4b565b905082815260208101848484011115612e5857600080fd5b612e63848285613de2565b509392505050565b6000612e7e612e7984613ba1565b613b4b565b905082815260208101848484011115612e9657600080fd5b612ea1848285613de2565b509392505050565b600081359050612eb881614632565b92915050565b600081359050612ecd81614649565b92915050565b600081359050612ee281614660565b92915050565b600081519050612ef781614660565b92915050565b600082601f830112612f0e57600080fd5b8135612f1e848260208601612e2d565b91505092915050565b600082601f830112612f3857600080fd5b8135612f48848260208601612e6b565b91505092915050565b600081359050612f6081614677565b92915050565b600060208284031215612f7857600080fd5b6000612f8684828501612ea9565b91505092915050565b60008060408385031215612fa257600080fd5b6000612fb085828601612ea9565b9250506020612fc185828601612ea9565b9150509250929050565b600080600060608486031215612fe057600080fd5b6000612fee86828701612ea9565b9350506020612fff86828701612ea9565b925050604061301086828701612f51565b9150509250925092565b6000806000806080858703121561303057600080fd5b600061303e87828801612ea9565b945050602061304f87828801612ea9565b935050604061306087828801612f51565b925050606085013567ffffffffffffffff81111561307d57600080fd5b61308987828801612efd565b91505092959194509250565b600080604083850312156130a857600080fd5b60006130b685828601612ea9565b92505060206130c785828601612ebe565b9150509250929050565b600080604083850312156130e457600080fd5b60006130f285828601612ea9565b925050602061310385828601612f51565b9150509250929050565b60006020828403121561311f57600080fd5b600061312d84828501612ebe565b91505092915050565b60006020828403121561314857600080fd5b600061315684828501612ed3565b91505092915050565b60006020828403121561317157600080fd5b600061317f84828501612ee8565b91505092915050565b60006020828403121561319a57600080fd5b600082013567ffffffffffffffff8111156131b457600080fd5b6131c084828501612f27565b91505092915050565b6000602082840312156131db57600080fd5b60006131e984828501612f51565b91505092915050565b6000806040838503121561320557600080fd5b600061321385828601612f51565b925050602061322485828601612ea9565b9150509250929050565b600061323a83836136f3565b60208301905092915050565b61324f81613d6e565b82525050565b600061326082613be2565b61326a8185613c10565b935061327583613bd2565b8060005b838110156132a657815161328d888261322e565b975061329883613c03565b925050600181019050613279565b5085935050505092915050565b6132bc81613d80565b82525050565b60006132cd82613bed565b6132d78185613c21565b93506132e7818560208601613df1565b6132f081613fbd565b840191505092915050565b600061330682613bf8565b6133108185613c3d565b9350613320818560208601613df1565b61332981613fbd565b840191505092915050565b600061333f82613bf8565b6133498185613c4e565b9350613359818560208601613df1565b80840191505092915050565b6000613372601f83613c3d565b915061337d82613fce565b602082019050919050565b6000613395602b83613c3d565b91506133a082613ff7565b604082019050919050565b60006133b8603283613c3d565b91506133c382614046565b604082019050919050565b60006133db602683613c3d565b91506133e682614095565b604082019050919050565b60006133fe601c83613c3d565b9150613409826140e4565b602082019050919050565b6000613421602483613c3d565b915061342c8261410d565b604082019050919050565b6000613444601983613c3d565b915061344f8261415c565b602082019050919050565b6000613467602283613c3d565b915061347282614185565b604082019050919050565b600061348a601583613c3d565b9150613495826141d4565b602082019050919050565b60006134ad602583613c3d565b91506134b8826141fd565b604082019050919050565b60006134d0602c83613c3d565b91506134db8261424c565b604082019050919050565b60006134f3603883613c3d565b91506134fe8261429b565b604082019050919050565b6000613516602a83613c3d565b9150613521826142ea565b604082019050919050565b6000613539602983613c3d565b915061354482614339565b604082019050919050565b600061355c602083613c3d565b915061356782614388565b602082019050919050565b600061357f601983613c3d565b915061358a826143b1565b602082019050919050565b60006135a2602c83613c3d565b91506135ad826143da565b604082019050919050565b60006135c5602083613c3d565b91506135d082614429565b602082019050919050565b60006135e8602983613c3d565b91506135f382614452565b604082019050919050565b600061360b602f83613c3d565b9150613616826144a1565b604082019050919050565b600061362e602183613c3d565b9150613639826144f0565b604082019050919050565b6000613651600083613c32565b915061365c8261453f565b600082019050919050565b6000613674601083613c3d565b915061367f82614542565b602082019050919050565b6000613697603183613c3d565b91506136a28261456b565b604082019050919050565b60006136ba602c83613c3d565b91506136c5826145ba565b604082019050919050565b60006136dd601d83613c3d565b91506136e882614609565b602082019050919050565b6136fc81613dd8565b82525050565b61370b81613dd8565b82525050565b600061371d8285613334565b91506137298284613334565b91508190509392505050565b600061374082613644565b9150819050919050565b600060208201905061375f6000830184613246565b92915050565b600060808201905061377a6000830187613246565b6137876020830186613246565b6137946040830185613702565b81810360608301526137a681846132c2565b905095945050505050565b600060208201905081810360008301526137cb8184613255565b905092915050565b60006020820190506137e860008301846132b3565b92915050565b6000602082019050818103600083015261380881846132fb565b905092915050565b6000602082019050818103600083015261382981613365565b9050919050565b6000602082019050818103600083015261384981613388565b9050919050565b60006020820190508181036000830152613869816133ab565b9050919050565b60006020820190508181036000830152613889816133ce565b9050919050565b600060208201905081810360008301526138a9816133f1565b9050919050565b600060208201905081810360008301526138c981613414565b9050919050565b600060208201905081810360008301526138e981613437565b9050919050565b600060208201905081810360008301526139098161345a565b9050919050565b600060208201905081810360008301526139298161347d565b9050919050565b60006020820190508181036000830152613949816134a0565b9050919050565b60006020820190508181036000830152613969816134c3565b9050919050565b60006020820190508181036000830152613989816134e6565b9050919050565b600060208201905081810360008301526139a981613509565b9050919050565b600060208201905081810360008301526139c98161352c565b9050919050565b600060208201905081810360008301526139e98161354f565b9050919050565b60006020820190508181036000830152613a0981613572565b9050919050565b60006020820190508181036000830152613a2981613595565b9050919050565b60006020820190508181036000830152613a49816135b8565b9050919050565b60006020820190508181036000830152613a69816135db565b9050919050565b60006020820190508181036000830152613a89816135fe565b9050919050565b60006020820190508181036000830152613aa981613621565b9050919050565b60006020820190508181036000830152613ac981613667565b9050919050565b60006020820190508181036000830152613ae98161368a565b9050919050565b60006020820190508181036000830152613b09816136ad565b9050919050565b60006020820190508181036000830152613b29816136d0565b9050919050565b6000602082019050613b456000830184613702565b92915050565b6000613b55613b66565b9050613b618282613e56565b919050565b6000604051905090565b600067ffffffffffffffff821115613b8b57613b8a613f8e565b5b613b9482613fbd565b9050602081019050919050565b600067ffffffffffffffff821115613bbc57613bbb613f8e565b5b613bc582613fbd565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c6482613dd8565b9150613c6f83613dd8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ca457613ca3613f01565b5b828201905092915050565b6000613cba82613dd8565b9150613cc583613dd8565b925082613cd557613cd4613f30565b5b828204905092915050565b6000613ceb82613dd8565b9150613cf683613dd8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d2f57613d2e613f01565b5b828202905092915050565b6000613d4582613dd8565b9150613d5083613dd8565b925082821015613d6357613d62613f01565b5b828203905092915050565b6000613d7982613db8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e0f578082015181840152602081019050613df4565b83811115613e1e576000848401525b50505050565b60006002820490506001821680613e3c57607f821691505b60208210811415613e5057613e4f613f5f565b5b50919050565b613e5f82613fbd565b810181811067ffffffffffffffff82111715613e7e57613e7d613f8e565b5b80604052505050565b6000613e9282613dd8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ec557613ec4613f01565b5b600182019050919050565b6000613edb82613dd8565b9150613ee683613dd8565b925082613ef657613ef5613f30565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4e6f7420656e6f756768204e465473206c65667420746f207265736572766500600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e6f7420656e6f75676820657468657220746f207075726368617365204e465460008201527f732e000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204e465473206c656674210000000000000000000000600082015250565b7f43616e6e6f74206d696e7420737065636966696564206e756d626572206f662060008201527f4e4654732e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4e6f206574686572206c65667420746f20776974686472617700000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f742063757272656e746c792061637469766521000000600082015250565b61463b81613d6e565b811461464657600080fd5b50565b61465281613d80565b811461465d57600080fd5b50565b61466981613d8c565b811461467457600080fd5b50565b61468081613dd8565b811461468b57600080fd5b5056fea2646970667358221220119e29424579d5e4ba5dedcb618b75c92222d964060e2146ac523b1dfaa1b55564736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e5a6d4e65424a457756706b354a6b52644465455069376f5a636248685a6f3778534c354572666d647861552f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmNZmNeBJEwVpk5JkRdDeEPi7oZcbHhZo7xSL5ErfmdxaU/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d4e5a6d4e65424a457756706b354a6b5264446545506937
Arg [3] : 6f5a636248685a6f3778534c354572666d647861552f00000000000000000000


Deployed Bytecode Sourcemap

53095:3292:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42841:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30335:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31894:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31417:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53323:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54747:754;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43481:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32644:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43149:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53278:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55736:268;;;;;;;;;;;;;:::i;:::-;;33054:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54604:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43671:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54194:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30029:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29759:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50702:103;;;;;;;;;;;;;:::i;:::-;;56043:341;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54471:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50051:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30504:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53443:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32187:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33310:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53677:306;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54338:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30679:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53369:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32413:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53404:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50960:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42841:224;42943:4;42982:35;42967:50;;;:11;:50;;;;:90;;;;43021:36;43045:11;43021:23;:36::i;:::-;42967:90;42960:97;;42841:224;;;:::o;30335:100::-;30389:13;30422:5;30415:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30335:100;:::o;31894:221::-;31970:7;31998:16;32006:7;31998;:16::i;:::-;31990:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;32083:15;:24;32099:7;32083:24;;;;;;;;;;;;;;;;;;;;;32076:31;;31894:221;;;:::o;31417:411::-;31498:13;31514:23;31529:7;31514:14;:23::i;:::-;31498:39;;31562:5;31556:11;;:2;:11;;;;31548:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;31656:5;31640:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;31665:37;31682:5;31689:12;:10;:12::i;:::-;31665:16;:37::i;:::-;31640:62;31618:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;31799:21;31808:2;31812:7;31799:8;:21::i;:::-;31417:411;;;:::o;53323:37::-;53359:1;53323:37;:::o;54747:754::-;54803:16;54822:19;:9;:17;:19::i;:::-;54803:38;;54852:9;54882:12;:24;54895:10;54882:24;;;;;;;;;;;;;;;;;;;;;;;;;54878:197;;;54930:17;54940:6;54930:5;;:9;;:17;;;;:::i;:::-;54923:24;;54878:197;;;54996:21;55015:1;55006:6;:10;;;;:::i;:::-;54996:5;;:9;;:21;;;;:::i;:::-;54989:28;;55059:4;55032:12;:24;55045:10;55032:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;54878:197;53312:4;55095:23;55111:6;55095:11;:15;;:23;;;;:::i;:::-;:37;;55087:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;55185:1;55177:6;:9;:35;;;;;53359:1;55190:6;:22;;55177:35;55169:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;55273:12;;;;;;;;;;;55265:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;55351:4;55338:9;:17;;55330:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;55412:6;55407:87;55428:6;55424:1;:10;55407:87;;;55456:26;55471:10;55456:14;:26::i;:::-;55436:3;;;;;:::i;:::-;;;;55407:87;;;;54747:754;;;:::o;43481:113::-;43542:7;43569:10;:17;;;;43562:24;;43481:113;:::o;32644:339::-;32839:41;32858:12;:10;:12::i;:::-;32872:7;32839:18;:41::i;:::-;32831:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;32947:28;32957:4;32963:2;32967:7;32947:9;:28::i;:::-;32644:339;;;:::o;43149:256::-;43246:7;43282:23;43299:5;43282:16;:23::i;:::-;43274:5;:31;43266:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;43371:12;:19;43384:5;43371:19;;;;;;;;;;;;;;;:26;43391:5;43371:26;;;;;;;;;;;;43364:33;;43149:256;;;;:::o;53278:38::-;53312:4;53278:38;:::o;55736:268::-;50282:12;:10;:12::i;:::-;50271:23;;:7;:5;:7::i;:::-;:23;;;50263:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55784:12:::1;55799:21;55784:36;;55849:1;55839:7;:11;55831:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;55894:12;55913:10;55912:17;;55937:7;55912:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55893:56;;;55968:7;55960:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;50342:1;;55736:268::o:0;33054:185::-;33192:39;33209:4;33215:2;33219:7;33192:39;;;;;;;;;;;;:16;:39::i;:::-;33054:185;;;:::o;54604:117::-;54667:4;54691:12;:22;54704:8;54691:22;;;;;;;;;;;;;;;;;;;;;;;;;54684:29;;54604:117;;;:::o;43671:233::-;43746:7;43782:30;:28;:30::i;:::-;43774:5;:38;43766:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;43879:10;43890:5;43879:17;;;;;;;;;;;;;;;;;;;;;;;;43872:24;;43671:233;;;:::o;54194:113::-;50282:12;:10;:12::i;:::-;50271:23;;:7;:5;:7::i;:::-;:23;;;50263:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54286:13:::1;54271:12;:28;;;;;;;;;;;;:::i;:::-;;54194:113:::0;:::o;30029:239::-;30101:7;30121:13;30137:7;:16;30145:7;30137:16;;;;;;;;;;;;;;;;;;;;;30121:32;;30189:1;30172:19;;:5;:19;;;;30164:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30255:5;30248:12;;;30029:239;;;:::o;29759:208::-;29831:7;29876:1;29859:19;;:5;:19;;;;29851:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;29943:9;:16;29953:5;29943:16;;;;;;;;;;;;;;;;29936:23;;29759:208;;;:::o;50702:103::-;50282:12;:10;:12::i;:::-;50271:23;;:7;:5;:7::i;:::-;:23;;;50263:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50767:30:::1;50794:1;50767:18;:30::i;:::-;50702:103::o:0;56043:341::-;56105:13;56133:15;56151:17;56161:6;56151:9;:17::i;:::-;56133:35;;56179:22;56218:10;56204:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56179:50;;56247:6;56242:109;56263:10;56259:1;:14;56242:109;;;56309:30;56329:6;56337:1;56309:19;:30::i;:::-;56295:8;56304:1;56295:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;56275:3;;;;;:::i;:::-;;;;56242:109;;;;56368:8;56361:15;;;;56043:341;;;:::o;54471:90::-;50282:12;:10;:12::i;:::-;50271:23;;:7;:5;:7::i;:::-;:23;;;50263:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54544:9:::1;54536:5;:17;;;;54471:90:::0;:::o;50051:87::-;50097:7;50124:6;;;;;;;;;;;50117:13;;50051:87;:::o;30504:104::-;30560:13;30593:7;30586:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30504:104;:::o;53443:32::-;;;;:::o;32187:155::-;32282:52;32301:12;:10;:12::i;:::-;32315:8;32325;32282:18;:52::i;:::-;32187:155;;:::o;33310:328::-;33485:41;33504:12;:10;:12::i;:::-;33518:7;33485:18;:41::i;:::-;33477:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;33591:39;33605:4;33611:2;33615:7;33624:5;33591:13;:39::i;:::-;33310:328;;;;:::o;53677:306::-;50282:12;:10;:12::i;:::-;50271:23;;:7;:5;:7::i;:::-;:23;;;50263:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53752:16:::1;53771:19;:9;:17;:19::i;:::-;53752:38;;53312:4;53811:23;53827:6;53811:11;:15;;:23;;;;:::i;:::-;:36;53803:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;53901:6;53896:80;53917:6;53913:1;:10;53896:80;;;53945:19;53960:3;53945:14;:19::i;:::-;53925:3;;;;;:::i;:::-;;;;53896:80;;;;50342:1;53677:306:::0;;:::o;54338:104::-;50282:12;:10;:12::i;:::-;50271:23;;:7;:5;:7::i;:::-;:23;;;50263:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54422:12:::1;54407;;:27;;;;;;;;;;;;;;;;;;54338:104:::0;:::o;30679:334::-;30752:13;30786:16;30794:7;30786;:16::i;:::-;30778:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;30867:21;30891:10;:8;:10::i;:::-;30867:34;;30943:1;30925:7;30919:21;:25;:86;;;;;;;;;;;;;;;;;30971:7;30980:18;:7;:16;:18::i;:::-;30954:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30919:86;30912:93;;;30679:334;;;:::o;53369:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32413:164::-;32510:4;32534:18;:25;32553:5;32534:25;;;;;;;;;;;;;;;:35;32560:8;32534:35;;;;;;;;;;;;;;;;;;;;;;;;;32527:42;;32413:164;;;;:::o;53404:32::-;;;;;;;;;;;;;:::o;50960:201::-;50282:12;:10;:12::i;:::-;50271:23;;:7;:5;:7::i;:::-;:23;;;50263:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51069:1:::1;51049:22;;:8;:22;;;;51041:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;51125:28;51144:8;51125:18;:28::i;:::-;50960:201:::0;:::o;29390:305::-;29492:4;29544:25;29529:40;;;:11;:40;;;;:105;;;;29601:33;29586:48;;;:11;:48;;;;29529:105;:158;;;;29651:36;29675:11;29651:23;:36::i;:::-;29529:158;29509:178;;29390:305;;;:::o;35148:127::-;35213:4;35265:1;35237:30;;:7;:16;35245:7;35237:16;;;;;;;;;;;;;;;;;;;;;:30;;;;35230:37;;35148:127;;;:::o;27784:98::-;27837:7;27864:10;27857:17;;27784:98;:::o;39130:174::-;39232:2;39205:15;:24;39221:7;39205:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39288:7;39284:2;39250:46;;39259:23;39274:7;39259:14;:23::i;:::-;39250:46;;;;;;;;;;;;39130:174;;:::o;52391:114::-;52456:7;52483;:14;;;52476:21;;52391:114;;;:::o;23678:98::-;23736:7;23767:1;23763;:5;;;;:::i;:::-;23756:12;;23678:98;;;;:::o;22940:::-;22998:7;23029:1;23025;:5;;;;:::i;:::-;23018:12;;22940:98;;;;:::o;55535:170::-;55591:21;:9;:19;:21::i;:::-;55623:15;55641:19;:9;:17;:19::i;:::-;55623:37;;55671:26;55681:3;55686:10;55671:9;:26::i;:::-;55535:170;;:::o;35442:348::-;35535:4;35560:16;35568:7;35560;:16::i;:::-;35552:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;35636:13;35652:23;35667:7;35652:14;:23::i;:::-;35636:39;;35705:5;35694:16;;:7;:16;;;:51;;;;35738:7;35714:31;;:20;35726:7;35714:11;:20::i;:::-;:31;;;35694:51;:87;;;;35749:32;35766:5;35773:7;35749:16;:32::i;:::-;35694:87;35686:96;;;35442:348;;;;:::o;38434:578::-;38593:4;38566:31;;:23;38581:7;38566:14;:23::i;:::-;:31;;;38558:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;38676:1;38662:16;;:2;:16;;;;38654:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;38732:39;38753:4;38759:2;38763:7;38732:20;:39::i;:::-;38836:29;38853:1;38857:7;38836:8;:29::i;:::-;38897:1;38878:9;:15;38888:4;38878:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;38926:1;38909:9;:13;38919:2;38909:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;38957:2;38938:7;:16;38946:7;38938:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;38996:7;38992:2;38977:27;;38986:4;38977:27;;;;;;;;;;;;38434:578;;;:::o;51321:191::-;51395:16;51414:6;;;;;;;;;;;51395:25;;51440:8;51431:6;;:17;;;;;;;;;;;;;;;;;;51495:8;51464:40;;51485:8;51464:40;;;;;;;;;;;;51321:191;;:::o;39446:315::-;39601:8;39592:17;;:5;:17;;;;39584:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;39688:8;39650:18;:25;39669:5;39650:25;;;;;;;;;;;;;;;:35;39676:8;39650:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39734:8;39712:41;;39727:5;39712:41;;;39744:8;39712:41;;;;;;:::i;:::-;;;;;;;;39446:315;;;:::o;34520:::-;34677:28;34687:4;34693:2;34697:7;34677:9;:28::i;:::-;34724:48;34747:4;34753:2;34757:7;34766:5;34724:22;:48::i;:::-;34716:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;34520:315;;;;:::o;54033:113::-;54093:13;54126:12;54119:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54033:113;:::o;436:723::-;492:13;722:1;713:5;:10;709:53;;;740:10;;;;;;;;;;;;;;;;;;;;;709:53;772:12;787:5;772:20;;803:14;828:78;843:1;835:4;:9;828:78;;861:8;;;;;:::i;:::-;;;;892:2;884:10;;;;;:::i;:::-;;;828:78;;;916:19;948:6;938:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;916:39;;966:154;982:1;973:5;:10;966:154;;1010:1;1000:11;;;;;:::i;:::-;;;1077:2;1069:5;:10;;;;:::i;:::-;1056:2;:24;;;;:::i;:::-;1043:39;;1026:6;1033;1026:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;1106:2;1097:11;;;;;:::i;:::-;;;966:154;;;1144:6;1130:21;;;;;436:723;;;;:::o;13159:157::-;13244:4;13283:25;13268:40;;;:11;:40;;;;13261:47;;13159:157;;;:::o;52513:127::-;52620:1;52602:7;:14;;;:19;;;;;;;;;;;52513:127;:::o;36132:110::-;36208:26;36218:2;36222:7;36208:26;;;;;;;;;;;;:9;:26::i;:::-;36132:110;;:::o;44517:589::-;44661:45;44688:4;44694:2;44698:7;44661:26;:45::i;:::-;44739:1;44723:18;;:4;:18;;;44719:187;;;44758:40;44790:7;44758:31;:40::i;:::-;44719:187;;;44828:2;44820:10;;:4;:10;;;44816:90;;44847:47;44880:4;44886:7;44847:32;:47::i;:::-;44816:90;44719:187;44934:1;44920:16;;:2;:16;;;44916:183;;;44953:45;44990:7;44953:36;:45::i;:::-;44916:183;;;45026:4;45020:10;;:2;:10;;;45016:83;;45047:40;45075:2;45079:7;45047:27;:40::i;:::-;45016:83;44916:183;44517:589;;;:::o;40326:799::-;40481:4;40502:15;:2;:13;;;:15::i;:::-;40498:620;;;40554:2;40538:36;;;40575:12;:10;:12::i;:::-;40589:4;40595:7;40604:5;40538:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40534:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40797:1;40780:6;:13;:18;40776:272;;;40823:60;;;;;;;;;;:::i;:::-;;;;;;;;40776:272;40998:6;40992:13;40983:6;40979:2;40975:15;40968:38;40534:529;40671:41;;;40661:51;;;:6;:51;;;;40654:58;;;;;40498:620;41102:4;41095:11;;40326:799;;;;;;;:::o;36469:321::-;36599:18;36605:2;36609:7;36599:5;:18::i;:::-;36650:54;36681:1;36685:2;36689:7;36698:5;36650:22;:54::i;:::-;36628:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;36469:321;;;:::o;41697:126::-;;;;:::o;45829:164::-;45933:10;:17;;;;45906:15;:24;45922:7;45906:24;;;;;;;;;;;:44;;;;45961:10;45977:7;45961:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45829:164;:::o;46620:988::-;46886:22;46936:1;46911:22;46928:4;46911:16;:22::i;:::-;:26;;;;:::i;:::-;46886:51;;46948:18;46969:17;:26;46987:7;46969:26;;;;;;;;;;;;46948:47;;47116:14;47102:10;:28;47098:328;;47147:19;47169:12;:18;47182:4;47169:18;;;;;;;;;;;;;;;:34;47188:14;47169:34;;;;;;;;;;;;47147:56;;47253:11;47220:12;:18;47233:4;47220:18;;;;;;;;;;;;;;;:30;47239:10;47220:30;;;;;;;;;;;:44;;;;47370:10;47337:17;:30;47355:11;47337:30;;;;;;;;;;;:43;;;;47098:328;;47522:17;:26;47540:7;47522:26;;;;;;;;;;;47515:33;;;47566:12;:18;47579:4;47566:18;;;;;;;;;;;;;;;:34;47585:14;47566:34;;;;;;;;;;;47559:41;;;46620:988;;;;:::o;47903:1079::-;48156:22;48201:1;48181:10;:17;;;;:21;;;;:::i;:::-;48156:46;;48213:18;48234:15;:24;48250:7;48234:24;;;;;;;;;;;;48213:45;;48585:19;48607:10;48618:14;48607:26;;;;;;;;;;;;;;;;;;;;;;;;48585:48;;48671:11;48646:10;48657;48646:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;48782:10;48751:15;:28;48767:11;48751:28;;;;;;;;;;;:41;;;;48923:15;:24;48939:7;48923:24;;;;;;;;;;;48916:31;;;48958:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47903:1079;;;;:::o;45407:221::-;45492:14;45509:20;45526:2;45509:16;:20::i;:::-;45492:37;;45567:7;45540:12;:16;45553:2;45540:16;;;;;;;;;;;;;;;:24;45557:6;45540:24;;;;;;;;;;;:34;;;;45614:6;45585:17;:26;45603:7;45585:26;;;;;;;;;;;:35;;;;45407:221;;;:::o;3015:387::-;3075:4;3283:12;3350:7;3338:20;3330:28;;3393:1;3386:4;:8;3379:15;;;3015:387;;;:::o;37126:382::-;37220:1;37206:16;;:2;:16;;;;37198:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;37279:16;37287:7;37279;:16::i;:::-;37278:17;37270:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;37341:45;37370:1;37374:2;37378:7;37341:20;:45::i;:::-;37416:1;37399:9;:13;37409:2;37399:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;37447:2;37428:7;:16;37436:7;37428:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;37492:7;37488:2;37467:33;;37484:1;37467:33;;;;;;;;;;;;37126:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:256::-;4939:6;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:50;5114:7;5105:6;5094:9;5090:22;5072:50;:::i;:::-;5062:60;;5018:114;4946:193;;;;:::o;5145:260::-;5203:6;5252:2;5240:9;5231:7;5227:23;5223:32;5220:2;;;5268:1;5265;5258:12;5220:2;5311:1;5336:52;5380:7;5371:6;5360:9;5356:22;5336:52;:::i;:::-;5326:62;;5282:116;5210:195;;;;:::o;5411:282::-;5480:6;5529:2;5517:9;5508:7;5504:23;5500:32;5497:2;;;5545:1;5542;5535:12;5497:2;5588:1;5613:63;5668:7;5659:6;5648:9;5644:22;5613:63;:::i;:::-;5603:73;;5559:127;5487:206;;;;:::o;5699:375::-;5768:6;5817:2;5805:9;5796:7;5792:23;5788:32;5785:2;;;5833:1;5830;5823:12;5785:2;5904:1;5893:9;5889:17;5876:31;5934:18;5926:6;5923:30;5920:2;;;5966:1;5963;5956:12;5920:2;5994:63;6049:7;6040:6;6029:9;6025:22;5994:63;:::i;:::-;5984:73;;5847:220;5775:299;;;;:::o;6080:262::-;6139:6;6188:2;6176:9;6167:7;6163:23;6159:32;6156:2;;;6204:1;6201;6194:12;6156:2;6247:1;6272:53;6317:7;6308:6;6297:9;6293:22;6272:53;:::i;:::-;6262:63;;6218:117;6146:196;;;;:::o;6348:407::-;6416:6;6424;6473:2;6461:9;6452:7;6448:23;6444:32;6441:2;;;6489:1;6486;6479:12;6441:2;6532:1;6557:53;6602:7;6593:6;6582:9;6578:22;6557:53;:::i;:::-;6547:63;;6503:117;6659:2;6685:53;6730:7;6721:6;6710:9;6706:22;6685:53;:::i;:::-;6675:63;;6630:118;6431:324;;;;;:::o;6761:179::-;6830:10;6851:46;6893:3;6885:6;6851:46;:::i;:::-;6929:4;6924:3;6920:14;6906:28;;6841:99;;;;:::o;6946:118::-;7033:24;7051:5;7033:24;:::i;:::-;7028:3;7021:37;7011:53;;:::o;7100:732::-;7219:3;7248:54;7296:5;7248:54;:::i;:::-;7318:86;7397:6;7392:3;7318:86;:::i;:::-;7311:93;;7428:56;7478:5;7428:56;:::i;:::-;7507:7;7538:1;7523:284;7548:6;7545:1;7542:13;7523:284;;;7624:6;7618:13;7651:63;7710:3;7695:13;7651:63;:::i;:::-;7644:70;;7737:60;7790:6;7737:60;:::i;:::-;7727:70;;7583:224;7570:1;7567;7563:9;7558:14;;7523:284;;;7527:14;7823:3;7816:10;;7224:608;;;;;;;:::o;7838:109::-;7919:21;7934:5;7919:21;:::i;:::-;7914:3;7907:34;7897:50;;:::o;7953:360::-;8039:3;8067:38;8099:5;8067:38;:::i;:::-;8121:70;8184:6;8179:3;8121:70;:::i;:::-;8114:77;;8200:52;8245:6;8240:3;8233:4;8226:5;8222:16;8200:52;:::i;:::-;8277:29;8299:6;8277:29;:::i;:::-;8272:3;8268:39;8261:46;;8043:270;;;;;:::o;8319:364::-;8407:3;8435:39;8468:5;8435:39;:::i;:::-;8490:71;8554:6;8549:3;8490:71;:::i;:::-;8483:78;;8570:52;8615:6;8610:3;8603:4;8596:5;8592:16;8570:52;:::i;:::-;8647:29;8669:6;8647:29;:::i;:::-;8642:3;8638:39;8631:46;;8411:272;;;;;:::o;8689:377::-;8795:3;8823:39;8856:5;8823:39;:::i;:::-;8878:89;8960:6;8955:3;8878:89;:::i;:::-;8871:96;;8976:52;9021:6;9016:3;9009:4;9002:5;8998:16;8976:52;:::i;:::-;9053:6;9048:3;9044:16;9037:23;;8799:267;;;;;:::o;9072:366::-;9214:3;9235:67;9299:2;9294:3;9235:67;:::i;:::-;9228:74;;9311:93;9400:3;9311:93;:::i;:::-;9429:2;9424:3;9420:12;9413:19;;9218:220;;;:::o;9444:366::-;9586:3;9607:67;9671:2;9666:3;9607:67;:::i;:::-;9600:74;;9683:93;9772:3;9683:93;:::i;:::-;9801:2;9796:3;9792:12;9785:19;;9590:220;;;:::o;9816:366::-;9958:3;9979:67;10043:2;10038:3;9979:67;:::i;:::-;9972:74;;10055:93;10144:3;10055:93;:::i;:::-;10173:2;10168:3;10164:12;10157:19;;9962:220;;;:::o;10188:366::-;10330:3;10351:67;10415:2;10410:3;10351:67;:::i;:::-;10344:74;;10427:93;10516:3;10427:93;:::i;:::-;10545:2;10540:3;10536:12;10529:19;;10334:220;;;:::o;10560:366::-;10702:3;10723:67;10787:2;10782:3;10723:67;:::i;:::-;10716:74;;10799:93;10888:3;10799:93;:::i;:::-;10917:2;10912:3;10908:12;10901:19;;10706:220;;;:::o;10932:366::-;11074:3;11095:67;11159:2;11154:3;11095:67;:::i;:::-;11088:74;;11171:93;11260:3;11171:93;:::i;:::-;11289:2;11284:3;11280:12;11273:19;;11078:220;;;:::o;11304:366::-;11446:3;11467:67;11531:2;11526:3;11467:67;:::i;:::-;11460:74;;11543:93;11632:3;11543:93;:::i;:::-;11661:2;11656:3;11652:12;11645:19;;11450:220;;;:::o;11676:366::-;11818:3;11839:67;11903:2;11898:3;11839:67;:::i;:::-;11832:74;;11915:93;12004:3;11915:93;:::i;:::-;12033:2;12028:3;12024:12;12017:19;;11822:220;;;:::o;12048:366::-;12190:3;12211:67;12275:2;12270:3;12211:67;:::i;:::-;12204:74;;12287:93;12376:3;12287:93;:::i;:::-;12405:2;12400:3;12396:12;12389:19;;12194:220;;;:::o;12420:366::-;12562:3;12583:67;12647:2;12642:3;12583:67;:::i;:::-;12576:74;;12659:93;12748:3;12659:93;:::i;:::-;12777:2;12772:3;12768:12;12761:19;;12566:220;;;:::o;12792:366::-;12934:3;12955:67;13019:2;13014:3;12955:67;:::i;:::-;12948:74;;13031:93;13120:3;13031:93;:::i;:::-;13149:2;13144:3;13140:12;13133:19;;12938:220;;;:::o;13164:366::-;13306:3;13327:67;13391:2;13386:3;13327:67;:::i;:::-;13320:74;;13403:93;13492:3;13403:93;:::i;:::-;13521:2;13516:3;13512:12;13505:19;;13310:220;;;:::o;13536:366::-;13678:3;13699:67;13763:2;13758:3;13699:67;:::i;:::-;13692:74;;13775:93;13864:3;13775:93;:::i;:::-;13893:2;13888:3;13884:12;13877:19;;13682:220;;;:::o;13908:366::-;14050:3;14071:67;14135:2;14130:3;14071:67;:::i;:::-;14064:74;;14147:93;14236:3;14147:93;:::i;:::-;14265:2;14260:3;14256:12;14249:19;;14054:220;;;:::o;14280:366::-;14422:3;14443:67;14507:2;14502:3;14443:67;:::i;:::-;14436:74;;14519:93;14608:3;14519:93;:::i;:::-;14637:2;14632:3;14628:12;14621:19;;14426:220;;;:::o;14652:366::-;14794:3;14815:67;14879:2;14874:3;14815:67;:::i;:::-;14808:74;;14891:93;14980:3;14891:93;:::i;:::-;15009:2;15004:3;15000:12;14993:19;;14798:220;;;:::o;15024:366::-;15166:3;15187:67;15251:2;15246:3;15187:67;:::i;:::-;15180:74;;15263:93;15352:3;15263:93;:::i;:::-;15381:2;15376:3;15372:12;15365:19;;15170:220;;;:::o;15396:366::-;15538:3;15559:67;15623:2;15618:3;15559:67;:::i;:::-;15552:74;;15635:93;15724:3;15635:93;:::i;:::-;15753:2;15748:3;15744:12;15737:19;;15542:220;;;:::o;15768:366::-;15910:3;15931:67;15995:2;15990:3;15931:67;:::i;:::-;15924:74;;16007:93;16096:3;16007:93;:::i;:::-;16125:2;16120:3;16116:12;16109:19;;15914:220;;;:::o;16140:366::-;16282:3;16303:67;16367:2;16362:3;16303:67;:::i;:::-;16296:74;;16379:93;16468:3;16379:93;:::i;:::-;16497:2;16492:3;16488:12;16481:19;;16286:220;;;:::o;16512:366::-;16654:3;16675:67;16739:2;16734:3;16675:67;:::i;:::-;16668:74;;16751:93;16840:3;16751:93;:::i;:::-;16869:2;16864:3;16860:12;16853:19;;16658:220;;;:::o;16884:398::-;17043:3;17064:83;17145:1;17140:3;17064:83;:::i;:::-;17057:90;;17156:93;17245:3;17156:93;:::i;:::-;17274:1;17269:3;17265:11;17258:18;;17047:235;;;:::o;17288:366::-;17430:3;17451:67;17515:2;17510:3;17451:67;:::i;:::-;17444:74;;17527:93;17616:3;17527:93;:::i;:::-;17645:2;17640:3;17636:12;17629:19;;17434:220;;;:::o;17660:366::-;17802:3;17823:67;17887:2;17882:3;17823:67;:::i;:::-;17816:74;;17899:93;17988:3;17899:93;:::i;:::-;18017:2;18012:3;18008:12;18001:19;;17806:220;;;:::o;18032:366::-;18174:3;18195:67;18259:2;18254:3;18195:67;:::i;:::-;18188:74;;18271:93;18360:3;18271:93;:::i;:::-;18389:2;18384:3;18380:12;18373:19;;18178:220;;;:::o;18404:366::-;18546:3;18567:67;18631:2;18626:3;18567:67;:::i;:::-;18560:74;;18643:93;18732:3;18643:93;:::i;:::-;18761:2;18756:3;18752:12;18745:19;;18550:220;;;:::o;18776:108::-;18853:24;18871:5;18853:24;:::i;:::-;18848:3;18841:37;18831:53;;:::o;18890:118::-;18977:24;18995:5;18977:24;:::i;:::-;18972:3;18965:37;18955:53;;:::o;19014:435::-;19194:3;19216:95;19307:3;19298:6;19216:95;:::i;:::-;19209:102;;19328:95;19419:3;19410:6;19328:95;:::i;:::-;19321:102;;19440:3;19433:10;;19198:251;;;;;:::o;19455:379::-;19639:3;19661:147;19804:3;19661:147;:::i;:::-;19654:154;;19825:3;19818:10;;19643:191;;;:::o;19840:222::-;19933:4;19971:2;19960:9;19956:18;19948:26;;19984:71;20052:1;20041:9;20037:17;20028:6;19984:71;:::i;:::-;19938:124;;;;:::o;20068:640::-;20263:4;20301:3;20290:9;20286:19;20278:27;;20315:71;20383:1;20372:9;20368:17;20359:6;20315:71;:::i;:::-;20396:72;20464:2;20453:9;20449:18;20440:6;20396:72;:::i;:::-;20478;20546:2;20535:9;20531:18;20522:6;20478:72;:::i;:::-;20597:9;20591:4;20587:20;20582:2;20571:9;20567:18;20560:48;20625:76;20696:4;20687:6;20625:76;:::i;:::-;20617:84;;20268:440;;;;;;;:::o;20714:373::-;20857:4;20895:2;20884:9;20880:18;20872:26;;20944:9;20938:4;20934:20;20930:1;20919:9;20915:17;20908:47;20972:108;21075:4;21066:6;20972:108;:::i;:::-;20964:116;;20862:225;;;;:::o;21093:210::-;21180:4;21218:2;21207:9;21203:18;21195:26;;21231:65;21293:1;21282:9;21278:17;21269:6;21231:65;:::i;:::-;21185:118;;;;:::o;21309:313::-;21422:4;21460:2;21449:9;21445:18;21437:26;;21509:9;21503:4;21499:20;21495:1;21484:9;21480:17;21473:47;21537:78;21610:4;21601:6;21537:78;:::i;:::-;21529:86;;21427:195;;;;:::o;21628:419::-;21794:4;21832:2;21821:9;21817:18;21809:26;;21881:9;21875:4;21871:20;21867:1;21856:9;21852:17;21845:47;21909:131;22035:4;21909:131;:::i;:::-;21901:139;;21799:248;;;:::o;22053:419::-;22219:4;22257:2;22246:9;22242:18;22234:26;;22306:9;22300:4;22296:20;22292:1;22281:9;22277:17;22270:47;22334:131;22460:4;22334:131;:::i;:::-;22326:139;;22224:248;;;:::o;22478:419::-;22644:4;22682:2;22671:9;22667:18;22659:26;;22731:9;22725:4;22721:20;22717:1;22706:9;22702:17;22695:47;22759:131;22885:4;22759:131;:::i;:::-;22751:139;;22649:248;;;:::o;22903:419::-;23069:4;23107:2;23096:9;23092:18;23084:26;;23156:9;23150:4;23146:20;23142:1;23131:9;23127:17;23120:47;23184:131;23310:4;23184:131;:::i;:::-;23176:139;;23074:248;;;:::o;23328:419::-;23494:4;23532:2;23521:9;23517:18;23509:26;;23581:9;23575:4;23571:20;23567:1;23556:9;23552:17;23545:47;23609:131;23735:4;23609:131;:::i;:::-;23601:139;;23499:248;;;:::o;23753:419::-;23919:4;23957:2;23946:9;23942:18;23934:26;;24006:9;24000:4;23996:20;23992:1;23981:9;23977:17;23970:47;24034:131;24160:4;24034:131;:::i;:::-;24026:139;;23924:248;;;:::o;24178:419::-;24344:4;24382:2;24371:9;24367:18;24359:26;;24431:9;24425:4;24421:20;24417:1;24406:9;24402:17;24395:47;24459:131;24585:4;24459:131;:::i;:::-;24451:139;;24349:248;;;:::o;24603:419::-;24769:4;24807:2;24796:9;24792:18;24784:26;;24856:9;24850:4;24846:20;24842:1;24831:9;24827:17;24820:47;24884:131;25010:4;24884:131;:::i;:::-;24876:139;;24774:248;;;:::o;25028:419::-;25194:4;25232:2;25221:9;25217:18;25209:26;;25281:9;25275:4;25271:20;25267:1;25256:9;25252:17;25245:47;25309:131;25435:4;25309:131;:::i;:::-;25301:139;;25199:248;;;:::o;25453:419::-;25619:4;25657:2;25646:9;25642:18;25634:26;;25706:9;25700:4;25696:20;25692:1;25681:9;25677:17;25670:47;25734:131;25860:4;25734:131;:::i;:::-;25726:139;;25624:248;;;:::o;25878:419::-;26044:4;26082:2;26071:9;26067:18;26059:26;;26131:9;26125:4;26121:20;26117:1;26106:9;26102:17;26095:47;26159:131;26285:4;26159:131;:::i;:::-;26151:139;;26049:248;;;:::o;26303:419::-;26469:4;26507:2;26496:9;26492:18;26484:26;;26556:9;26550:4;26546:20;26542:1;26531:9;26527:17;26520:47;26584:131;26710:4;26584:131;:::i;:::-;26576:139;;26474:248;;;:::o;26728:419::-;26894:4;26932:2;26921:9;26917:18;26909:26;;26981:9;26975:4;26971:20;26967:1;26956:9;26952:17;26945:47;27009:131;27135:4;27009:131;:::i;:::-;27001:139;;26899:248;;;:::o;27153:419::-;27319:4;27357:2;27346:9;27342:18;27334:26;;27406:9;27400:4;27396:20;27392:1;27381:9;27377:17;27370:47;27434:131;27560:4;27434:131;:::i;:::-;27426:139;;27324:248;;;:::o;27578:419::-;27744:4;27782:2;27771:9;27767:18;27759:26;;27831:9;27825:4;27821:20;27817:1;27806:9;27802:17;27795:47;27859:131;27985:4;27859:131;:::i;:::-;27851:139;;27749:248;;;:::o;28003:419::-;28169:4;28207:2;28196:9;28192:18;28184:26;;28256:9;28250:4;28246:20;28242:1;28231:9;28227:17;28220:47;28284:131;28410:4;28284:131;:::i;:::-;28276:139;;28174:248;;;:::o;28428:419::-;28594:4;28632:2;28621:9;28617:18;28609:26;;28681:9;28675:4;28671:20;28667:1;28656:9;28652:17;28645:47;28709:131;28835:4;28709:131;:::i;:::-;28701:139;;28599:248;;;:::o;28853:419::-;29019:4;29057:2;29046:9;29042:18;29034:26;;29106:9;29100:4;29096:20;29092:1;29081:9;29077:17;29070:47;29134:131;29260:4;29134:131;:::i;:::-;29126:139;;29024:248;;;:::o;29278:419::-;29444:4;29482:2;29471:9;29467:18;29459:26;;29531:9;29525:4;29521:20;29517:1;29506:9;29502:17;29495:47;29559:131;29685:4;29559:131;:::i;:::-;29551:139;;29449:248;;;:::o;29703:419::-;29869:4;29907:2;29896:9;29892:18;29884:26;;29956:9;29950:4;29946:20;29942:1;29931:9;29927:17;29920:47;29984:131;30110:4;29984:131;:::i;:::-;29976:139;;29874:248;;;:::o;30128:419::-;30294:4;30332:2;30321:9;30317:18;30309:26;;30381:9;30375:4;30371:20;30367:1;30356:9;30352:17;30345:47;30409:131;30535:4;30409:131;:::i;:::-;30401:139;;30299:248;;;:::o;30553:419::-;30719:4;30757:2;30746:9;30742:18;30734:26;;30806:9;30800:4;30796:20;30792:1;30781:9;30777:17;30770:47;30834:131;30960:4;30834:131;:::i;:::-;30826:139;;30724:248;;;:::o;30978:419::-;31144:4;31182:2;31171:9;31167:18;31159:26;;31231:9;31225:4;31221:20;31217:1;31206:9;31202:17;31195:47;31259:131;31385:4;31259:131;:::i;:::-;31251:139;;31149:248;;;:::o;31403:419::-;31569:4;31607:2;31596:9;31592:18;31584:26;;31656:9;31650:4;31646:20;31642:1;31631:9;31627:17;31620:47;31684:131;31810:4;31684:131;:::i;:::-;31676:139;;31574:248;;;:::o;31828:419::-;31994:4;32032:2;32021:9;32017:18;32009:26;;32081:9;32075:4;32071:20;32067:1;32056:9;32052:17;32045:47;32109:131;32235:4;32109:131;:::i;:::-;32101:139;;31999:248;;;:::o;32253:222::-;32346:4;32384:2;32373:9;32369:18;32361:26;;32397:71;32465:1;32454:9;32450:17;32441:6;32397:71;:::i;:::-;32351:124;;;;:::o;32481:129::-;32515:6;32542:20;;:::i;:::-;32532:30;;32571:33;32599:4;32591:6;32571:33;:::i;:::-;32522:88;;;:::o;32616:75::-;32649:6;32682:2;32676:9;32666:19;;32656:35;:::o;32697:307::-;32758:4;32848:18;32840:6;32837:30;32834:2;;;32870:18;;:::i;:::-;32834:2;32908:29;32930:6;32908:29;:::i;:::-;32900:37;;32992:4;32986;32982:15;32974:23;;32763:241;;;:::o;33010:308::-;33072:4;33162:18;33154:6;33151:30;33148:2;;;33184:18;;:::i;:::-;33148:2;33222:29;33244:6;33222:29;:::i;:::-;33214:37;;33306:4;33300;33296:15;33288:23;;33077:241;;;:::o;33324:132::-;33391:4;33414:3;33406:11;;33444:4;33439:3;33435:14;33427:22;;33396:60;;;:::o;33462:114::-;33529:6;33563:5;33557:12;33547:22;;33536:40;;;:::o;33582:98::-;33633:6;33667:5;33661:12;33651:22;;33640:40;;;:::o;33686:99::-;33738:6;33772:5;33766:12;33756:22;;33745:40;;;:::o;33791:113::-;33861:4;33893;33888:3;33884:14;33876:22;;33866:38;;;:::o;33910:184::-;34009:11;34043:6;34038:3;34031:19;34083:4;34078:3;34074:14;34059:29;;34021:73;;;;:::o;34100:168::-;34183:11;34217:6;34212:3;34205:19;34257:4;34252:3;34248:14;34233:29;;34195:73;;;;:::o;34274:147::-;34375:11;34412:3;34397:18;;34387:34;;;;:::o;34427:169::-;34511:11;34545:6;34540:3;34533:19;34585:4;34580:3;34576:14;34561:29;;34523:73;;;;:::o;34602:148::-;34704:11;34741:3;34726:18;;34716:34;;;;:::o;34756:305::-;34796:3;34815:20;34833:1;34815:20;:::i;:::-;34810:25;;34849:20;34867:1;34849:20;:::i;:::-;34844:25;;35003:1;34935:66;34931:74;34928:1;34925:81;34922:2;;;35009:18;;:::i;:::-;34922:2;35053:1;35050;35046:9;35039:16;;34800:261;;;;:::o;35067:185::-;35107:1;35124:20;35142:1;35124:20;:::i;:::-;35119:25;;35158:20;35176:1;35158:20;:::i;:::-;35153:25;;35197:1;35187:2;;35202:18;;:::i;:::-;35187:2;35244:1;35241;35237:9;35232:14;;35109:143;;;;:::o;35258:348::-;35298:7;35321:20;35339:1;35321:20;:::i;:::-;35316:25;;35355:20;35373:1;35355:20;:::i;:::-;35350:25;;35543:1;35475:66;35471:74;35468:1;35465:81;35460:1;35453:9;35446:17;35442:105;35439:2;;;35550:18;;:::i;:::-;35439:2;35598:1;35595;35591:9;35580:20;;35306:300;;;;:::o;35612:191::-;35652:4;35672:20;35690:1;35672:20;:::i;:::-;35667:25;;35706:20;35724:1;35706:20;:::i;:::-;35701:25;;35745:1;35742;35739:8;35736:2;;;35750:18;;:::i;:::-;35736:2;35795:1;35792;35788:9;35780:17;;35657:146;;;;:::o;35809:96::-;35846:7;35875:24;35893:5;35875:24;:::i;:::-;35864:35;;35854:51;;;:::o;35911:90::-;35945:7;35988:5;35981:13;35974:21;35963:32;;35953:48;;;:::o;36007:149::-;36043:7;36083:66;36076:5;36072:78;36061:89;;36051:105;;;:::o;36162:126::-;36199:7;36239:42;36232:5;36228:54;36217:65;;36207:81;;;:::o;36294:77::-;36331:7;36360:5;36349:16;;36339:32;;;:::o;36377:154::-;36461:6;36456:3;36451;36438:30;36523:1;36514:6;36509:3;36505:16;36498:27;36428:103;;;:::o;36537:307::-;36605:1;36615:113;36629:6;36626:1;36623:13;36615:113;;;36714:1;36709:3;36705:11;36699:18;36695:1;36690:3;36686:11;36679:39;36651:2;36648:1;36644:10;36639:15;;36615:113;;;36746:6;36743:1;36740:13;36737:2;;;36826:1;36817:6;36812:3;36808:16;36801:27;36737:2;36586:258;;;;:::o;36850:320::-;36894:6;36931:1;36925:4;36921:12;36911:22;;36978:1;36972:4;36968:12;36999:18;36989:2;;37055:4;37047:6;37043:17;37033:27;;36989:2;37117;37109:6;37106:14;37086:18;37083:38;37080:2;;;37136:18;;:::i;:::-;37080:2;36901:269;;;;:::o;37176:281::-;37259:27;37281:4;37259:27;:::i;:::-;37251:6;37247:40;37389:6;37377:10;37374:22;37353:18;37341:10;37338:34;37335:62;37332:2;;;37400:18;;:::i;:::-;37332:2;37440:10;37436:2;37429:22;37219:238;;;:::o;37463:233::-;37502:3;37525:24;37543:5;37525:24;:::i;:::-;37516:33;;37571:66;37564:5;37561:77;37558:2;;;37641:18;;:::i;:::-;37558:2;37688:1;37681:5;37677:13;37670:20;;37506:190;;;:::o;37702:176::-;37734:1;37751:20;37769:1;37751:20;:::i;:::-;37746:25;;37785:20;37803:1;37785:20;:::i;:::-;37780:25;;37824:1;37814:2;;37829:18;;:::i;:::-;37814:2;37870:1;37867;37863:9;37858:14;;37736:142;;;;:::o;37884:180::-;37932:77;37929:1;37922:88;38029:4;38026:1;38019:15;38053:4;38050:1;38043:15;38070:180;38118:77;38115:1;38108:88;38215:4;38212:1;38205:15;38239:4;38236:1;38229:15;38256:180;38304:77;38301:1;38294:88;38401:4;38398:1;38391:15;38425:4;38422:1;38415:15;38442:180;38490:77;38487:1;38480:88;38587:4;38584:1;38577:15;38611:4;38608:1;38601:15;38628:102;38669:6;38720:2;38716:7;38711:2;38704:5;38700:14;38696:28;38686:38;;38676:54;;;:::o;38736:181::-;38876:33;38872:1;38864:6;38860:14;38853:57;38842:75;:::o;38923:230::-;39063:34;39059:1;39051:6;39047:14;39040:58;39132:13;39127:2;39119:6;39115:15;39108:38;39029:124;:::o;39159:237::-;39299:34;39295:1;39287:6;39283:14;39276:58;39368:20;39363:2;39355:6;39351:15;39344:45;39265:131;:::o;39402:225::-;39542:34;39538:1;39530:6;39526:14;39519:58;39611:8;39606:2;39598:6;39594:15;39587:33;39508:119;:::o;39633:178::-;39773:30;39769:1;39761:6;39757:14;39750:54;39739:72;:::o;39817:223::-;39957:34;39953:1;39945:6;39941:14;39934:58;40026:6;40021:2;40013:6;40009:15;40002:31;39923:117;:::o;40046:175::-;40186:27;40182:1;40174:6;40170:14;40163:51;40152:69;:::o;40227:221::-;40367:34;40363:1;40355:6;40351:14;40344:58;40436:4;40431:2;40423:6;40419:15;40412:29;40333:115;:::o;40454:171::-;40594:23;40590:1;40582:6;40578:14;40571:47;40560:65;:::o;40631:224::-;40771:34;40767:1;40759:6;40755:14;40748:58;40840:7;40835:2;40827:6;40823:15;40816:32;40737:118;:::o;40861:231::-;41001:34;40997:1;40989:6;40985:14;40978:58;41070:14;41065:2;41057:6;41053:15;41046:39;40967:125;:::o;41098:243::-;41238:34;41234:1;41226:6;41222:14;41215:58;41307:26;41302:2;41294:6;41290:15;41283:51;41204:137;:::o;41347:229::-;41487:34;41483:1;41475:6;41471:14;41464:58;41556:12;41551:2;41543:6;41539:15;41532:37;41453:123;:::o;41582:228::-;41722:34;41718:1;41710:6;41706:14;41699:58;41791:11;41786:2;41778:6;41774:15;41767:36;41688:122;:::o;41816:182::-;41956:34;41952:1;41944:6;41940:14;41933:58;41922:76;:::o;42004:175::-;42144:27;42140:1;42132:6;42128:14;42121:51;42110:69;:::o;42185:231::-;42325:34;42321:1;42313:6;42309:14;42302:58;42394:14;42389:2;42381:6;42377:15;42370:39;42291:125;:::o;42422:182::-;42562:34;42558:1;42550:6;42546:14;42539:58;42528:76;:::o;42610:228::-;42750:34;42746:1;42738:6;42734:14;42727:58;42819:11;42814:2;42806:6;42802:15;42795:36;42716:122;:::o;42844:234::-;42984:34;42980:1;42972:6;42968:14;42961:58;43053:17;43048:2;43040:6;43036:15;43029:42;42950:128;:::o;43084:220::-;43224:34;43220:1;43212:6;43208:14;43201:58;43293:3;43288:2;43280:6;43276:15;43269:28;43190:114;:::o;43310:::-;43416:8;:::o;43430:166::-;43570:18;43566:1;43558:6;43554:14;43547:42;43536:60;:::o;43602:236::-;43742:34;43738:1;43730:6;43726:14;43719:58;43811:19;43806:2;43798:6;43794:15;43787:44;43708:130;:::o;43844:231::-;43984:34;43980:1;43972:6;43968:14;43961:58;44053:14;44048:2;44040:6;44036:15;44029:39;43950:125;:::o;44081:179::-;44221:31;44217:1;44209:6;44205:14;44198:55;44187:73;:::o;44266:122::-;44339:24;44357:5;44339:24;:::i;:::-;44332:5;44329:35;44319:2;;44378:1;44375;44368:12;44319:2;44309:79;:::o;44394:116::-;44464:21;44479:5;44464:21;:::i;:::-;44457:5;44454:32;44444:2;;44500:1;44497;44490:12;44444:2;44434:76;:::o;44516:120::-;44588:23;44605:5;44588:23;:::i;:::-;44581:5;44578:34;44568:2;;44626:1;44623;44616:12;44568:2;44558:78;:::o;44642:122::-;44715:24;44733:5;44715:24;:::i;:::-;44708:5;44705:35;44695:2;;44754:1;44751;44744:12;44695:2;44685:79;:::o

Swarm Source

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