ETH Price: $2,527.91 (+0.19%)

Token

The Crypt - 2nd Army (CRYPT2)
 

Overview

Max Total Supply

79 CRYPT2

Holders

77

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 CRYPT2
0xf5d0318692f822680b733955828a25507f031c95
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:
CryptSecondGen

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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/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/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/security/Pausable.sol


// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.5.0) (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 "https://racecar.mypinata.cloud/ipfs/QmUkTMhQaQCoiYC285C7mtounUMBDeWqFoi2gLPGiFTxKi/";
    }

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

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        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: contract-62a12fa4a0.sol


pragma solidity ^0.8.4;





contract CryptSecondGen is ERC721, ERC721Enumerable, Pausable, Ownable {
    uint256 immutable MINT_PRICE = .69 ether;
    uint256 immutable MAX_SUPPLY = 129;
    uint256 immutable NUM_OG = 99;

    uint256 startTokenId = 1;
    uint256 publicMintTokenID = 100;
    bool mintOpen = false;
    bool claimOpen = false;

    mapping(bytes32 => bool) hasClaimed;
    mapping(address => bool) hasMinted;
    mapping(address => bool) private _presaleEligible;

    //update before mainnet deploy
    address OG_CRYPT = 0x207b6ac212495C304aFDbd3f4564Fe0033D7a24f;

    constructor() ERC721("The Crypt - 2nd Army", "CRYPT2") {}

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function addToPresale(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Cannot add null address");

            _presaleEligible[addresses[i]] = true;

        }
    }

    function checkPresaleEligiblity(address addr) external view returns (bool) {
        return _presaleEligible[addr];
    }


    function mint() external payable {
        require(mintOpen, "Crypties Public Mint Not Started");
        require(msg.value >= MINT_PRICE, "Not Enough Eth to Mint");
        require(_presaleEligible[msg.sender], "Not Eligible for Mint");
        require(!hasMinted[msg.sender], "Wallet has Already Minted");
        require(
            publicMintTokenID <= MAX_SUPPLY,
            "Max Public Supply Minted"
        );
        if(!hasMinted[msg.sender]) {
            hasMinted[msg.sender] = true;
            _mint(msg.sender, publicMintTokenID++); 
        }
    }

    function claim() external {
        require(claimOpen, "Crypties Claiming Not Started");
        uint256 numOwned = ERC721(OG_CRYPT).balanceOf(msg.sender);
        for (uint256 j = 0; j < numOwned; j += 1) {
            uint256 tokenID = ERC721Enumerable(OG_CRYPT)
                .tokenOfOwnerByIndex(msg.sender, j);
            bytes32 _hash = keccak256(abi.encodePacked(OG_CRYPT, tokenID));
            if(!hasClaimed[_hash]) {
                hasClaimed[_hash] = true;
                _mint(msg.sender, startTokenId++);
            }
        }
    }

    function eligibleForClaim(address user) public view returns (uint256) {
        uint256 numOwned = ERC721(OG_CRYPT).balanceOf(user);
        uint256 sum;
        for (uint256 j = 0; j < numOwned; j += 1) {
            uint256 tokenID = ERC721Enumerable(OG_CRYPT)
                .tokenOfOwnerByIndex(user, j);
            bytes32 _hash = keccak256(abi.encodePacked(OG_CRYPT, tokenID));
            if(!hasClaimed[_hash]) {
                sum += 1;
            }
        }
        return sum;
    }

    function eligibleForMint(address user) external view returns (bool) {
        return hasMinted[user];
    }

    function mintingStarted()  public view returns (bool) {
        return mintOpen;
    }

    function claimStarted() public view returns (bool) {
        return claimOpen;
    }

    function toggleMintOpen() public onlyOwner {
        mintOpen = !mintOpen;
    }

    function toggleClaimOpen() public onlyOwner {
        claimOpen = !claimOpen;
    }

    function withdrawAll() public onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }


    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
        internal
        whenNotPaused
        override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    // The following functions are overrides required by Solidity.

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"checkPresaleEligiblity","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"eligibleForClaim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"eligibleForMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintingStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","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":[],"name":"toggleClaimOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleMintOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e06040526709935f581f050000608090815250608160a090815250606360c0908152506001600b556064600c556000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff02191690831515021790555073207b6ac212495c304afdbd3f4564fe0033d7a24f601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000c557600080fd5b506040518060400160405280601481526020017f546865204372797074202d20326e642041726d790000000000000000000000008152506040518060400160405280600681526020017f435259505432000000000000000000000000000000000000000000000000000081525081600090805190602001906200014a92919062000275565b5080600190805190602001906200016392919062000275565b5050506000600a60006101000a81548160ff021916908315150217905550620001a162000195620001a760201b60201c565b620001af60201b60201c565b6200038a565b600033905090565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002839062000325565b90600052602060002090601f016020900481019282620002a75760008555620002f3565b82601f10620002c257805160ff1916838001178555620002f3565b82800160010185558215620002f3579182015b82811115620002f2578251825591602001919060010190620002d5565b5b50905062000302919062000306565b5090565b5b808211156200032157600081600090555060010162000307565b5090565b600060028204905060018216806200033e57607f821691505b602082108114156200035557620003546200035b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805160a05160c051614ada620003b7600039600050506000610b9701526000610a1b0152614ada6000f3fe6080604052600436106101ee5760003560e01c80636f8608e41161010d57806395d89b41116100a0578063b88d4fde1161006f578063b88d4fde14610692578063c1664b13146106bb578063c87b56dd146106e6578063e985e9c514610723578063f2fde38b14610760576101ee565b806395d89b41146105d8578063a22cb46514610603578063aad5ed201461062c578063aef6ee1f14610669576101ee565b8063853828b6116100dc578063853828b6146105425780638da5cb5b146105595780638da9d3b1146105845780638dab7b7c146105c1576101ee565b80636f8608e4146104ac57806370a08231146104d7578063715018a6146105145780638456cb591461052b576101ee565b80632f745c59116101855780634f6ccce7116101545780634f6ccce7146103f05780635c975abb1461042d5780636352211e1461045857806367986daf14610495576101ee565b80632f745c591461035c5780633f4ba83a1461039957806342842e0e146103b05780634e71d92d146103d9576101ee565b80631249c58b116101c15780631249c58b146102c157806318160ddd146102cb578063191f65ac146102f657806323b872dd14610333576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190613528565b610789565b6040516102279190613b6b565b60405180910390f35b34801561023c57600080fd5b5061024561079b565b6040516102529190613b86565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190613582565b61082d565b60405161028f9190613adb565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba919061349b565b6108b2565b005b6102c96109ca565b005b3480156102d757600080fd5b506102e0610cc6565b6040516102ed9190613f08565b60405180910390f35b34801561030257600080fd5b5061031d60048036038101906103189190613318565b610cd3565b60405161032a9190613b6b565b60405180910390f35b34801561033f57600080fd5b5061035a60048036038101906103559190613385565b610d29565b005b34801561036857600080fd5b50610383600480360381019061037e919061349b565b610d89565b6040516103909190613f08565b60405180910390f35b3480156103a557600080fd5b506103ae610e2e565b005b3480156103bc57600080fd5b506103d760048036038101906103d29190613385565b610eb4565b005b3480156103e557600080fd5b506103ee610ed4565b005b3480156103fc57600080fd5b5061041760048036038101906104129190613582565b611169565b6040516104249190613f08565b60405180910390f35b34801561043957600080fd5b506104426111da565b60405161044f9190613b6b565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a9190613582565b6111f1565b60405161048c9190613adb565b60405180910390f35b3480156104a157600080fd5b506104aa6112a3565b005b3480156104b857600080fd5b506104c161134b565b6040516104ce9190613b6b565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190613318565b611362565b60405161050b9190613f08565b60405180910390f35b34801561052057600080fd5b5061052961141a565b005b34801561053757600080fd5b506105406114a2565b005b34801561054e57600080fd5b50610557611528565b005b34801561056557600080fd5b5061056e6115ed565b60405161057b9190613adb565b60405180910390f35b34801561059057600080fd5b506105ab60048036038101906105a69190613318565b611617565b6040516105b89190613b6b565b60405180910390f35b3480156105cd57600080fd5b506105d661166d565b005b3480156105e457600080fd5b506105ed611715565b6040516105fa9190613b86565b60405180910390f35b34801561060f57600080fd5b5061062a6004803603810190610625919061345b565b6117a7565b005b34801561063857600080fd5b50610653600480360381019061064e9190613318565b6117bd565b6040516106609190613f08565b60405180910390f35b34801561067557600080fd5b50610690600480360381019061068b91906134db565b6119d3565b005b34801561069e57600080fd5b506106b960048036038101906106b491906133d8565b611b8b565b005b3480156106c757600080fd5b506106d0611bed565b6040516106dd9190613b6b565b60405180910390f35b3480156106f257600080fd5b5061070d60048036038101906107089190613582565b611c04565b60405161071a9190613b86565b60405180910390f35b34801561072f57600080fd5b5061074a60048036038101906107459190613345565b611cab565b6040516107579190613b6b565b60405180910390f35b34801561076c57600080fd5b5061078760048036038101906107829190613318565b611d3f565b005b600061079482611e37565b9050919050565b6060600080546107aa9061412d565b80601f01602080910402602001604051908101604052809291908181526020018280546107d69061412d565b80156108235780601f106107f857610100808354040283529160200191610823565b820191906000526020600020905b81548152906001019060200180831161080657829003601f168201915b5050505050905090565b600061083882611eb1565b610877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086e90613da8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108bd826111f1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561092e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092590613e48565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661094d611f1d565b73ffffffffffffffffffffffffffffffffffffffff16148061097c575061097b81610976611f1d565b611cab565b5b6109bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b290613d28565b60405180910390fd5b6109c58383611f25565b505050565b600d60009054906101000a900460ff16610a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1090613ee8565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000341015610a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7390613ba8565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff90613de8565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c90613dc8565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000600c541115610bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf190613ec8565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610cc4576001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610cc333600c6000815480929190610cba90614190565b91905055611fde565b5b565b6000600880549050905090565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610d3a610d34611f1d565b826121b8565b610d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7090613e88565b60405180910390fd5b610d84838383612296565b505050565b6000610d9483611362565b8210610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc90613be8565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610e36611f1d565b73ffffffffffffffffffffffffffffffffffffffff16610e546115ed565b73ffffffffffffffffffffffffffffffffffffffff1614610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea190613e08565b60405180910390fd5b610eb26124fd565b565b610ecf83838360405180602001604052806000815250611b8b565b505050565b600d60019054906101000a900460ff16610f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1a90613cc8565b60405180910390fd5b6000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610f809190613adb565b60206040518083038186803b158015610f9857600080fd5b505afa158015610fac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd091906135af565b905060005b81811015611165576000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632f745c5933846040518363ffffffff1660e01b815260040161103c929190613b42565b60206040518083038186803b15801561105457600080fd5b505afa158015611068573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061108c91906135af565b90506000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826040516020016110c5929190613a8b565b604051602081830303815290604052805190602001209050600e600082815260200190815260200160002060009054906101000a900460ff1661114f576001600e600083815260200190815260200160002060006101000a81548160ff02191690831515021790555061114e33600b600081548092919061114590614190565b91905055611fde565b5b505060018161115e9190613fbc565b9050610fd5565b5050565b6000611173610cc6565b82106111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab90613ea8565b60405180910390fd5b600882815481106111c8576111c76142f4565b5b90600052602060002001549050919050565b6000600a60009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561129a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129190613d68565b60405180910390fd5b80915050919050565b6112ab611f1d565b73ffffffffffffffffffffffffffffffffffffffff166112c96115ed565b73ffffffffffffffffffffffffffffffffffffffff161461131f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131690613e08565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6000600d60009054906101000a900460ff16905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ca90613d48565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611422611f1d565b73ffffffffffffffffffffffffffffffffffffffff166114406115ed565b73ffffffffffffffffffffffffffffffffffffffff1614611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148d90613e08565b60405180910390fd5b6114a0600061259f565b565b6114aa611f1d565b73ffffffffffffffffffffffffffffffffffffffff166114c86115ed565b73ffffffffffffffffffffffffffffffffffffffff161461151e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151590613e08565b60405180910390fd5b611526612665565b565b611530611f1d565b73ffffffffffffffffffffffffffffffffffffffff1661154e6115ed565b73ffffffffffffffffffffffffffffffffffffffff16146115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b90613e08565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156115ea573d6000803e3d6000fd5b50565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611675611f1d565b73ffffffffffffffffffffffffffffffffffffffff166116936115ed565b73ffffffffffffffffffffffffffffffffffffffff16146116e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e090613e08565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b6060600180546117249061412d565b80601f01602080910402602001604051908101604052809291908181526020018280546117509061412d565b801561179d5780601f106117725761010080835404028352916020019161179d565b820191906000526020600020905b81548152906001019060200180831161178057829003601f168201915b5050505050905090565b6117b96117b2611f1d565b8383612708565b5050565b600080601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b815260040161181b9190613adb565b60206040518083038186803b15801561183357600080fd5b505afa158015611847573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061186b91906135af565b9050600080600090505b828110156119c8576000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632f745c5987846040518363ffffffff1660e01b81526004016118dc929190613b42565b60206040518083038186803b1580156118f457600080fd5b505afa158015611908573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061192c91906135af565b90506000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682604051602001611965929190613a8b565b604051602081830303815290604052805190602001209050600e600082815260200190815260200160002060009054906101000a900460ff166119b2576001846119af9190613fbc565b93505b50506001816119c19190613fbc565b9050611875565b508092505050919050565b6119db611f1d565b73ffffffffffffffffffffffffffffffffffffffff166119f96115ed565b73ffffffffffffffffffffffffffffffffffffffff1614611a4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4690613e08565b60405180910390fd5b60005b82829050811015611b8657600073ffffffffffffffffffffffffffffffffffffffff16838383818110611a8857611a876142f4565b5b9050602002016020810190611a9d9190613318565b73ffffffffffffffffffffffffffffffffffffffff161415611af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aeb90613e68565b60405180910390fd5b600160106000858585818110611b0d57611b0c6142f4565b5b9050602002016020810190611b229190613318565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611b7e90614190565b915050611a52565b505050565b611b9c611b96611f1d565b836121b8565b611bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd290613e88565b60405180910390fd5b611be784848484612875565b50505050565b6000600d60019054906101000a900460ff16905090565b6060611c0f82611eb1565b611c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4590613e28565b60405180910390fd5b6000611c586128d1565b90506000815111611c785760405180602001604052806000815250611ca3565b80611c82846128f1565b604051602001611c93929190613ab7565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d47611f1d565b73ffffffffffffffffffffffffffffffffffffffff16611d656115ed565b73ffffffffffffffffffffffffffffffffffffffff1614611dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db290613e08565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2290613c28565b60405180910390fd5b611e348161259f565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611eaa5750611ea982612a52565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f98836111f1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561204e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204590613d88565b60405180910390fd5b61205781611eb1565b15612097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208e90613c68565b60405180910390fd5b6120a360008383612b34565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120f39190613fbc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121b460008383612b8c565b5050565b60006121c382611eb1565b612202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f990613ce8565b60405180910390fd5b600061220d836111f1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061227c57508373ffffffffffffffffffffffffffffffffffffffff166122648461082d565b73ffffffffffffffffffffffffffffffffffffffff16145b8061228d575061228c8185611cab565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122b6826111f1565b73ffffffffffffffffffffffffffffffffffffffff161461230c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230390613c48565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561237c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237390613c88565b60405180910390fd5b612387838383612b34565b612392600082611f25565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123e29190614043565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124399190613fbc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124f8838383612b8c565b505050565b6125056111da565b612544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253b90613bc8565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612588611f1d565b6040516125959190613adb565b60405180910390a1565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61266d6111da565b156126ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a490613d08565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586126f1611f1d565b6040516126fe9190613adb565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276e90613ca8565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128689190613b6b565b60405180910390a3505050565b612880848484612296565b61288c84848484612b91565b6128cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c290613c08565b60405180910390fd5b50505050565b6060604051806080016040528060538152602001614a5260539139905090565b60606000821415612939576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a4d565b600082905060005b6000821461296b57808061295490614190565b915050600a826129649190614012565b9150612941565b60008167ffffffffffffffff81111561298757612986614323565b5b6040519080825280601f01601f1916602001820160405280156129b95781602001600182028036833780820191505090505b5090505b60008514612a46576001826129d29190614043565b9150600a856129e19190614207565b60306129ed9190613fbc565b60f81b818381518110612a0357612a026142f4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a3f9190614012565b94506129bd565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b1d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612b2d5750612b2c82612d28565b5b9050919050565b612b3c6111da565b15612b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7390613d08565b60405180910390fd5b612b87838383612d92565b505050565b505050565b6000612bb28473ffffffffffffffffffffffffffffffffffffffff16612ea6565b15612d1b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bdb611f1d565b8786866040518563ffffffff1660e01b8152600401612bfd9493929190613af6565b602060405180830381600087803b158015612c1757600080fd5b505af1925050508015612c4857506040513d601f19601f82011682018060405250810190612c459190613555565b60015b612ccb573d8060008114612c78576040519150601f19603f3d011682016040523d82523d6000602084013e612c7d565b606091505b50600081511415612cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cba90613c08565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d20565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612d9d838383612ec9565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612de057612ddb81612ece565b612e1f565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612e1e57612e1d8382612f17565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e6257612e5d81613084565b612ea1565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ea057612e9f8282613155565b5b5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612f2484611362565b612f2e9190614043565b9050600060076000848152602001908152602001600020549050818114613013576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506130989190614043565b90506000600960008481526020019081526020016000205490506000600883815481106130c8576130c76142f4565b5b9060005260206000200154905080600883815481106130ea576130e96142f4565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613139576131386142c5565b5b6001900381819060005260206000200160009055905550505050565b600061316083611362565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60006131e76131e284613f48565b613f23565b90508281526020810184848401111561320357613202614361565b5b61320e8482856140eb565b509392505050565b600081359050613225816149f5565b92915050565b60008083601f84011261324157613240614357565b5b8235905067ffffffffffffffff81111561325e5761325d614352565b5b60208301915083602082028301111561327a5761327961435c565b5b9250929050565b60008135905061329081614a0c565b92915050565b6000813590506132a581614a23565b92915050565b6000815190506132ba81614a23565b92915050565b600082601f8301126132d5576132d4614357565b5b81356132e58482602086016131d4565b91505092915050565b6000813590506132fd81614a3a565b92915050565b60008151905061331281614a3a565b92915050565b60006020828403121561332e5761332d61436b565b5b600061333c84828501613216565b91505092915050565b6000806040838503121561335c5761335b61436b565b5b600061336a85828601613216565b925050602061337b85828601613216565b9150509250929050565b60008060006060848603121561339e5761339d61436b565b5b60006133ac86828701613216565b93505060206133bd86828701613216565b92505060406133ce868287016132ee565b9150509250925092565b600080600080608085870312156133f2576133f161436b565b5b600061340087828801613216565b945050602061341187828801613216565b9350506040613422878288016132ee565b925050606085013567ffffffffffffffff81111561344357613442614366565b5b61344f878288016132c0565b91505092959194509250565b600080604083850312156134725761347161436b565b5b600061348085828601613216565b925050602061349185828601613281565b9150509250929050565b600080604083850312156134b2576134b161436b565b5b60006134c085828601613216565b92505060206134d1858286016132ee565b9150509250929050565b600080602083850312156134f2576134f161436b565b5b600083013567ffffffffffffffff8111156135105761350f614366565b5b61351c8582860161322b565b92509250509250929050565b60006020828403121561353e5761353d61436b565b5b600061354c84828501613296565b91505092915050565b60006020828403121561356b5761356a61436b565b5b6000613579848285016132ab565b91505092915050565b6000602082840312156135985761359761436b565b5b60006135a6848285016132ee565b91505092915050565b6000602082840312156135c5576135c461436b565b5b60006135d384828501613303565b91505092915050565b6135e581614077565b82525050565b6135fc6135f782614077565b6141d9565b82525050565b61360b81614089565b82525050565b600061361c82613f79565b6136268185613f8f565b93506136368185602086016140fa565b61363f81614370565b840191505092915050565b600061365582613f84565b61365f8185613fa0565b935061366f8185602086016140fa565b61367881614370565b840191505092915050565b600061368e82613f84565b6136988185613fb1565b93506136a88185602086016140fa565b80840191505092915050565b60006136c1601683613fa0565b91506136cc8261438e565b602082019050919050565b60006136e4601483613fa0565b91506136ef826143b7565b602082019050919050565b6000613707602b83613fa0565b9150613712826143e0565b604082019050919050565b600061372a603283613fa0565b91506137358261442f565b604082019050919050565b600061374d602683613fa0565b91506137588261447e565b604082019050919050565b6000613770602583613fa0565b915061377b826144cd565b604082019050919050565b6000613793601c83613fa0565b915061379e8261451c565b602082019050919050565b60006137b6602483613fa0565b91506137c182614545565b604082019050919050565b60006137d9601983613fa0565b91506137e482614594565b602082019050919050565b60006137fc601d83613fa0565b9150613807826145bd565b602082019050919050565b600061381f602c83613fa0565b915061382a826145e6565b604082019050919050565b6000613842601083613fa0565b915061384d82614635565b602082019050919050565b6000613865603883613fa0565b91506138708261465e565b604082019050919050565b6000613888602a83613fa0565b9150613893826146ad565b604082019050919050565b60006138ab602983613fa0565b91506138b6826146fc565b604082019050919050565b60006138ce602083613fa0565b91506138d98261474b565b602082019050919050565b60006138f1602c83613fa0565b91506138fc82614774565b604082019050919050565b6000613914601983613fa0565b915061391f826147c3565b602082019050919050565b6000613937601583613fa0565b9150613942826147ec565b602082019050919050565b600061395a602083613fa0565b915061396582614815565b602082019050919050565b600061397d602f83613fa0565b91506139888261483e565b604082019050919050565b60006139a0602183613fa0565b91506139ab8261488d565b604082019050919050565b60006139c3601783613fa0565b91506139ce826148dc565b602082019050919050565b60006139e6603183613fa0565b91506139f182614905565b604082019050919050565b6000613a09602c83613fa0565b9150613a1482614954565b604082019050919050565b6000613a2c601883613fa0565b9150613a37826149a3565b602082019050919050565b6000613a4f602083613fa0565b9150613a5a826149cc565b602082019050919050565b613a6e816140e1565b82525050565b613a85613a80826140e1565b6141fd565b82525050565b6000613a9782856135eb565b601482019150613aa78284613a74565b6020820191508190509392505050565b6000613ac38285613683565b9150613acf8284613683565b91508190509392505050565b6000602082019050613af060008301846135dc565b92915050565b6000608082019050613b0b60008301876135dc565b613b1860208301866135dc565b613b256040830185613a65565b8181036060830152613b378184613611565b905095945050505050565b6000604082019050613b5760008301856135dc565b613b646020830184613a65565b9392505050565b6000602082019050613b806000830184613602565b92915050565b60006020820190508181036000830152613ba0818461364a565b905092915050565b60006020820190508181036000830152613bc1816136b4565b9050919050565b60006020820190508181036000830152613be1816136d7565b9050919050565b60006020820190508181036000830152613c01816136fa565b9050919050565b60006020820190508181036000830152613c218161371d565b9050919050565b60006020820190508181036000830152613c4181613740565b9050919050565b60006020820190508181036000830152613c6181613763565b9050919050565b60006020820190508181036000830152613c8181613786565b9050919050565b60006020820190508181036000830152613ca1816137a9565b9050919050565b60006020820190508181036000830152613cc1816137cc565b9050919050565b60006020820190508181036000830152613ce1816137ef565b9050919050565b60006020820190508181036000830152613d0181613812565b9050919050565b60006020820190508181036000830152613d2181613835565b9050919050565b60006020820190508181036000830152613d4181613858565b9050919050565b60006020820190508181036000830152613d618161387b565b9050919050565b60006020820190508181036000830152613d818161389e565b9050919050565b60006020820190508181036000830152613da1816138c1565b9050919050565b60006020820190508181036000830152613dc1816138e4565b9050919050565b60006020820190508181036000830152613de181613907565b9050919050565b60006020820190508181036000830152613e018161392a565b9050919050565b60006020820190508181036000830152613e218161394d565b9050919050565b60006020820190508181036000830152613e4181613970565b9050919050565b60006020820190508181036000830152613e6181613993565b9050919050565b60006020820190508181036000830152613e81816139b6565b9050919050565b60006020820190508181036000830152613ea1816139d9565b9050919050565b60006020820190508181036000830152613ec1816139fc565b9050919050565b60006020820190508181036000830152613ee181613a1f565b9050919050565b60006020820190508181036000830152613f0181613a42565b9050919050565b6000602082019050613f1d6000830184613a65565b92915050565b6000613f2d613f3e565b9050613f39828261415f565b919050565b6000604051905090565b600067ffffffffffffffff821115613f6357613f62614323565b5b613f6c82614370565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fc7826140e1565b9150613fd2836140e1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561400757614006614238565b5b828201905092915050565b600061401d826140e1565b9150614028836140e1565b92508261403857614037614267565b5b828204905092915050565b600061404e826140e1565b9150614059836140e1565b92508282101561406c5761406b614238565b5b828203905092915050565b6000614082826140c1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141185780820151818401526020810190506140fd565b83811115614127576000848401525b50505050565b6000600282049050600182168061414557607f821691505b6020821081141561415957614158614296565b5b50919050565b61416882614370565b810181811067ffffffffffffffff8211171561418757614186614323565b5b80604052505050565b600061419b826140e1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141ce576141cd614238565b5b600182019050919050565b60006141e4826141eb565b9050919050565b60006141f682614381565b9050919050565b6000819050919050565b6000614212826140e1565b915061421d836140e1565b92508261422d5761422c614267565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4e6f7420456e6f7567682045746820746f204d696e7400000000000000000000600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f437279707469657320436c61696d696e67204e6f742053746172746564000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f57616c6c65742068617320416c7265616479204d696e74656400000000000000600082015250565b7f4e6f7420456c696769626c6520666f72204d696e740000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4d6178205075626c696320537570706c79204d696e7465640000000000000000600082015250565b7f4372797074696573205075626c6963204d696e74204e6f742053746172746564600082015250565b6149fe81614077565b8114614a0957600080fd5b50565b614a1581614089565b8114614a2057600080fd5b50565b614a2c81614095565b8114614a3757600080fd5b50565b614a43816140e1565b8114614a4e57600080fd5b5056fe68747470733a2f2f726163656361722e6d7970696e6174612e636c6f75642f697066732f516d556b544d68516151436f69594332383543376d746f756e554d4244655771466f6932674c5047694654784b692fa2646970667358221220e01d193c4e1467444423ecb8485f7ae49663c1cfde5ae510d2a80378aaafb37164736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80636f8608e41161010d57806395d89b41116100a0578063b88d4fde1161006f578063b88d4fde14610692578063c1664b13146106bb578063c87b56dd146106e6578063e985e9c514610723578063f2fde38b14610760576101ee565b806395d89b41146105d8578063a22cb46514610603578063aad5ed201461062c578063aef6ee1f14610669576101ee565b8063853828b6116100dc578063853828b6146105425780638da5cb5b146105595780638da9d3b1146105845780638dab7b7c146105c1576101ee565b80636f8608e4146104ac57806370a08231146104d7578063715018a6146105145780638456cb591461052b576101ee565b80632f745c59116101855780634f6ccce7116101545780634f6ccce7146103f05780635c975abb1461042d5780636352211e1461045857806367986daf14610495576101ee565b80632f745c591461035c5780633f4ba83a1461039957806342842e0e146103b05780634e71d92d146103d9576101ee565b80631249c58b116101c15780631249c58b146102c157806318160ddd146102cb578063191f65ac146102f657806323b872dd14610333576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190613528565b610789565b6040516102279190613b6b565b60405180910390f35b34801561023c57600080fd5b5061024561079b565b6040516102529190613b86565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190613582565b61082d565b60405161028f9190613adb565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba919061349b565b6108b2565b005b6102c96109ca565b005b3480156102d757600080fd5b506102e0610cc6565b6040516102ed9190613f08565b60405180910390f35b34801561030257600080fd5b5061031d60048036038101906103189190613318565b610cd3565b60405161032a9190613b6b565b60405180910390f35b34801561033f57600080fd5b5061035a60048036038101906103559190613385565b610d29565b005b34801561036857600080fd5b50610383600480360381019061037e919061349b565b610d89565b6040516103909190613f08565b60405180910390f35b3480156103a557600080fd5b506103ae610e2e565b005b3480156103bc57600080fd5b506103d760048036038101906103d29190613385565b610eb4565b005b3480156103e557600080fd5b506103ee610ed4565b005b3480156103fc57600080fd5b5061041760048036038101906104129190613582565b611169565b6040516104249190613f08565b60405180910390f35b34801561043957600080fd5b506104426111da565b60405161044f9190613b6b565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a9190613582565b6111f1565b60405161048c9190613adb565b60405180910390f35b3480156104a157600080fd5b506104aa6112a3565b005b3480156104b857600080fd5b506104c161134b565b6040516104ce9190613b6b565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190613318565b611362565b60405161050b9190613f08565b60405180910390f35b34801561052057600080fd5b5061052961141a565b005b34801561053757600080fd5b506105406114a2565b005b34801561054e57600080fd5b50610557611528565b005b34801561056557600080fd5b5061056e6115ed565b60405161057b9190613adb565b60405180910390f35b34801561059057600080fd5b506105ab60048036038101906105a69190613318565b611617565b6040516105b89190613b6b565b60405180910390f35b3480156105cd57600080fd5b506105d661166d565b005b3480156105e457600080fd5b506105ed611715565b6040516105fa9190613b86565b60405180910390f35b34801561060f57600080fd5b5061062a6004803603810190610625919061345b565b6117a7565b005b34801561063857600080fd5b50610653600480360381019061064e9190613318565b6117bd565b6040516106609190613f08565b60405180910390f35b34801561067557600080fd5b50610690600480360381019061068b91906134db565b6119d3565b005b34801561069e57600080fd5b506106b960048036038101906106b491906133d8565b611b8b565b005b3480156106c757600080fd5b506106d0611bed565b6040516106dd9190613b6b565b60405180910390f35b3480156106f257600080fd5b5061070d60048036038101906107089190613582565b611c04565b60405161071a9190613b86565b60405180910390f35b34801561072f57600080fd5b5061074a60048036038101906107459190613345565b611cab565b6040516107579190613b6b565b60405180910390f35b34801561076c57600080fd5b5061078760048036038101906107829190613318565b611d3f565b005b600061079482611e37565b9050919050565b6060600080546107aa9061412d565b80601f01602080910402602001604051908101604052809291908181526020018280546107d69061412d565b80156108235780601f106107f857610100808354040283529160200191610823565b820191906000526020600020905b81548152906001019060200180831161080657829003601f168201915b5050505050905090565b600061083882611eb1565b610877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086e90613da8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108bd826111f1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561092e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092590613e48565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661094d611f1d565b73ffffffffffffffffffffffffffffffffffffffff16148061097c575061097b81610976611f1d565b611cab565b5b6109bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b290613d28565b60405180910390fd5b6109c58383611f25565b505050565b600d60009054906101000a900460ff16610a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1090613ee8565b60405180910390fd5b7f00000000000000000000000000000000000000000000000009935f581f050000341015610a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7390613ba8565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff90613de8565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c90613dc8565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000081600c541115610bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf190613ec8565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610cc4576001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610cc333600c6000815480929190610cba90614190565b91905055611fde565b5b565b6000600880549050905090565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610d3a610d34611f1d565b826121b8565b610d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7090613e88565b60405180910390fd5b610d84838383612296565b505050565b6000610d9483611362565b8210610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc90613be8565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610e36611f1d565b73ffffffffffffffffffffffffffffffffffffffff16610e546115ed565b73ffffffffffffffffffffffffffffffffffffffff1614610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea190613e08565b60405180910390fd5b610eb26124fd565b565b610ecf83838360405180602001604052806000815250611b8b565b505050565b600d60019054906101000a900460ff16610f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1a90613cc8565b60405180910390fd5b6000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610f809190613adb565b60206040518083038186803b158015610f9857600080fd5b505afa158015610fac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd091906135af565b905060005b81811015611165576000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632f745c5933846040518363ffffffff1660e01b815260040161103c929190613b42565b60206040518083038186803b15801561105457600080fd5b505afa158015611068573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061108c91906135af565b90506000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826040516020016110c5929190613a8b565b604051602081830303815290604052805190602001209050600e600082815260200190815260200160002060009054906101000a900460ff1661114f576001600e600083815260200190815260200160002060006101000a81548160ff02191690831515021790555061114e33600b600081548092919061114590614190565b91905055611fde565b5b505060018161115e9190613fbc565b9050610fd5565b5050565b6000611173610cc6565b82106111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab90613ea8565b60405180910390fd5b600882815481106111c8576111c76142f4565b5b90600052602060002001549050919050565b6000600a60009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561129a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129190613d68565b60405180910390fd5b80915050919050565b6112ab611f1d565b73ffffffffffffffffffffffffffffffffffffffff166112c96115ed565b73ffffffffffffffffffffffffffffffffffffffff161461131f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131690613e08565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6000600d60009054906101000a900460ff16905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ca90613d48565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611422611f1d565b73ffffffffffffffffffffffffffffffffffffffff166114406115ed565b73ffffffffffffffffffffffffffffffffffffffff1614611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148d90613e08565b60405180910390fd5b6114a0600061259f565b565b6114aa611f1d565b73ffffffffffffffffffffffffffffffffffffffff166114c86115ed565b73ffffffffffffffffffffffffffffffffffffffff161461151e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151590613e08565b60405180910390fd5b611526612665565b565b611530611f1d565b73ffffffffffffffffffffffffffffffffffffffff1661154e6115ed565b73ffffffffffffffffffffffffffffffffffffffff16146115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b90613e08565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156115ea573d6000803e3d6000fd5b50565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611675611f1d565b73ffffffffffffffffffffffffffffffffffffffff166116936115ed565b73ffffffffffffffffffffffffffffffffffffffff16146116e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e090613e08565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b6060600180546117249061412d565b80601f01602080910402602001604051908101604052809291908181526020018280546117509061412d565b801561179d5780601f106117725761010080835404028352916020019161179d565b820191906000526020600020905b81548152906001019060200180831161178057829003601f168201915b5050505050905090565b6117b96117b2611f1d565b8383612708565b5050565b600080601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b815260040161181b9190613adb565b60206040518083038186803b15801561183357600080fd5b505afa158015611847573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061186b91906135af565b9050600080600090505b828110156119c8576000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632f745c5987846040518363ffffffff1660e01b81526004016118dc929190613b42565b60206040518083038186803b1580156118f457600080fd5b505afa158015611908573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061192c91906135af565b90506000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682604051602001611965929190613a8b565b604051602081830303815290604052805190602001209050600e600082815260200190815260200160002060009054906101000a900460ff166119b2576001846119af9190613fbc565b93505b50506001816119c19190613fbc565b9050611875565b508092505050919050565b6119db611f1d565b73ffffffffffffffffffffffffffffffffffffffff166119f96115ed565b73ffffffffffffffffffffffffffffffffffffffff1614611a4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4690613e08565b60405180910390fd5b60005b82829050811015611b8657600073ffffffffffffffffffffffffffffffffffffffff16838383818110611a8857611a876142f4565b5b9050602002016020810190611a9d9190613318565b73ffffffffffffffffffffffffffffffffffffffff161415611af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aeb90613e68565b60405180910390fd5b600160106000858585818110611b0d57611b0c6142f4565b5b9050602002016020810190611b229190613318565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611b7e90614190565b915050611a52565b505050565b611b9c611b96611f1d565b836121b8565b611bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd290613e88565b60405180910390fd5b611be784848484612875565b50505050565b6000600d60019054906101000a900460ff16905090565b6060611c0f82611eb1565b611c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4590613e28565b60405180910390fd5b6000611c586128d1565b90506000815111611c785760405180602001604052806000815250611ca3565b80611c82846128f1565b604051602001611c93929190613ab7565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d47611f1d565b73ffffffffffffffffffffffffffffffffffffffff16611d656115ed565b73ffffffffffffffffffffffffffffffffffffffff1614611dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db290613e08565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2290613c28565b60405180910390fd5b611e348161259f565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611eaa5750611ea982612a52565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f98836111f1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561204e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204590613d88565b60405180910390fd5b61205781611eb1565b15612097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208e90613c68565b60405180910390fd5b6120a360008383612b34565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120f39190613fbc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121b460008383612b8c565b5050565b60006121c382611eb1565b612202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f990613ce8565b60405180910390fd5b600061220d836111f1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061227c57508373ffffffffffffffffffffffffffffffffffffffff166122648461082d565b73ffffffffffffffffffffffffffffffffffffffff16145b8061228d575061228c8185611cab565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122b6826111f1565b73ffffffffffffffffffffffffffffffffffffffff161461230c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230390613c48565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561237c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237390613c88565b60405180910390fd5b612387838383612b34565b612392600082611f25565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123e29190614043565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124399190613fbc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124f8838383612b8c565b505050565b6125056111da565b612544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253b90613bc8565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612588611f1d565b6040516125959190613adb565b60405180910390a1565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61266d6111da565b156126ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a490613d08565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586126f1611f1d565b6040516126fe9190613adb565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276e90613ca8565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128689190613b6b565b60405180910390a3505050565b612880848484612296565b61288c84848484612b91565b6128cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c290613c08565b60405180910390fd5b50505050565b6060604051806080016040528060538152602001614a5260539139905090565b60606000821415612939576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a4d565b600082905060005b6000821461296b57808061295490614190565b915050600a826129649190614012565b9150612941565b60008167ffffffffffffffff81111561298757612986614323565b5b6040519080825280601f01601f1916602001820160405280156129b95781602001600182028036833780820191505090505b5090505b60008514612a46576001826129d29190614043565b9150600a856129e19190614207565b60306129ed9190613fbc565b60f81b818381518110612a0357612a026142f4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a3f9190614012565b94506129bd565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b1d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612b2d5750612b2c82612d28565b5b9050919050565b612b3c6111da565b15612b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7390613d08565b60405180910390fd5b612b87838383612d92565b505050565b505050565b6000612bb28473ffffffffffffffffffffffffffffffffffffffff16612ea6565b15612d1b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bdb611f1d565b8786866040518563ffffffff1660e01b8152600401612bfd9493929190613af6565b602060405180830381600087803b158015612c1757600080fd5b505af1925050508015612c4857506040513d601f19601f82011682018060405250810190612c459190613555565b60015b612ccb573d8060008114612c78576040519150601f19603f3d011682016040523d82523d6000602084013e612c7d565b606091505b50600081511415612cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cba90613c08565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d20565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612d9d838383612ec9565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612de057612ddb81612ece565b612e1f565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612e1e57612e1d8382612f17565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e6257612e5d81613084565b612ea1565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ea057612e9f8282613155565b5b5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612f2484611362565b612f2e9190614043565b9050600060076000848152602001908152602001600020549050818114613013576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506130989190614043565b90506000600960008481526020019081526020016000205490506000600883815481106130c8576130c76142f4565b5b9060005260206000200154905080600883815481106130ea576130e96142f4565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613139576131386142c5565b5b6001900381819060005260206000200160009055905550505050565b600061316083611362565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60006131e76131e284613f48565b613f23565b90508281526020810184848401111561320357613202614361565b5b61320e8482856140eb565b509392505050565b600081359050613225816149f5565b92915050565b60008083601f84011261324157613240614357565b5b8235905067ffffffffffffffff81111561325e5761325d614352565b5b60208301915083602082028301111561327a5761327961435c565b5b9250929050565b60008135905061329081614a0c565b92915050565b6000813590506132a581614a23565b92915050565b6000815190506132ba81614a23565b92915050565b600082601f8301126132d5576132d4614357565b5b81356132e58482602086016131d4565b91505092915050565b6000813590506132fd81614a3a565b92915050565b60008151905061331281614a3a565b92915050565b60006020828403121561332e5761332d61436b565b5b600061333c84828501613216565b91505092915050565b6000806040838503121561335c5761335b61436b565b5b600061336a85828601613216565b925050602061337b85828601613216565b9150509250929050565b60008060006060848603121561339e5761339d61436b565b5b60006133ac86828701613216565b93505060206133bd86828701613216565b92505060406133ce868287016132ee565b9150509250925092565b600080600080608085870312156133f2576133f161436b565b5b600061340087828801613216565b945050602061341187828801613216565b9350506040613422878288016132ee565b925050606085013567ffffffffffffffff81111561344357613442614366565b5b61344f878288016132c0565b91505092959194509250565b600080604083850312156134725761347161436b565b5b600061348085828601613216565b925050602061349185828601613281565b9150509250929050565b600080604083850312156134b2576134b161436b565b5b60006134c085828601613216565b92505060206134d1858286016132ee565b9150509250929050565b600080602083850312156134f2576134f161436b565b5b600083013567ffffffffffffffff8111156135105761350f614366565b5b61351c8582860161322b565b92509250509250929050565b60006020828403121561353e5761353d61436b565b5b600061354c84828501613296565b91505092915050565b60006020828403121561356b5761356a61436b565b5b6000613579848285016132ab565b91505092915050565b6000602082840312156135985761359761436b565b5b60006135a6848285016132ee565b91505092915050565b6000602082840312156135c5576135c461436b565b5b60006135d384828501613303565b91505092915050565b6135e581614077565b82525050565b6135fc6135f782614077565b6141d9565b82525050565b61360b81614089565b82525050565b600061361c82613f79565b6136268185613f8f565b93506136368185602086016140fa565b61363f81614370565b840191505092915050565b600061365582613f84565b61365f8185613fa0565b935061366f8185602086016140fa565b61367881614370565b840191505092915050565b600061368e82613f84565b6136988185613fb1565b93506136a88185602086016140fa565b80840191505092915050565b60006136c1601683613fa0565b91506136cc8261438e565b602082019050919050565b60006136e4601483613fa0565b91506136ef826143b7565b602082019050919050565b6000613707602b83613fa0565b9150613712826143e0565b604082019050919050565b600061372a603283613fa0565b91506137358261442f565b604082019050919050565b600061374d602683613fa0565b91506137588261447e565b604082019050919050565b6000613770602583613fa0565b915061377b826144cd565b604082019050919050565b6000613793601c83613fa0565b915061379e8261451c565b602082019050919050565b60006137b6602483613fa0565b91506137c182614545565b604082019050919050565b60006137d9601983613fa0565b91506137e482614594565b602082019050919050565b60006137fc601d83613fa0565b9150613807826145bd565b602082019050919050565b600061381f602c83613fa0565b915061382a826145e6565b604082019050919050565b6000613842601083613fa0565b915061384d82614635565b602082019050919050565b6000613865603883613fa0565b91506138708261465e565b604082019050919050565b6000613888602a83613fa0565b9150613893826146ad565b604082019050919050565b60006138ab602983613fa0565b91506138b6826146fc565b604082019050919050565b60006138ce602083613fa0565b91506138d98261474b565b602082019050919050565b60006138f1602c83613fa0565b91506138fc82614774565b604082019050919050565b6000613914601983613fa0565b915061391f826147c3565b602082019050919050565b6000613937601583613fa0565b9150613942826147ec565b602082019050919050565b600061395a602083613fa0565b915061396582614815565b602082019050919050565b600061397d602f83613fa0565b91506139888261483e565b604082019050919050565b60006139a0602183613fa0565b91506139ab8261488d565b604082019050919050565b60006139c3601783613fa0565b91506139ce826148dc565b602082019050919050565b60006139e6603183613fa0565b91506139f182614905565b604082019050919050565b6000613a09602c83613fa0565b9150613a1482614954565b604082019050919050565b6000613a2c601883613fa0565b9150613a37826149a3565b602082019050919050565b6000613a4f602083613fa0565b9150613a5a826149cc565b602082019050919050565b613a6e816140e1565b82525050565b613a85613a80826140e1565b6141fd565b82525050565b6000613a9782856135eb565b601482019150613aa78284613a74565b6020820191508190509392505050565b6000613ac38285613683565b9150613acf8284613683565b91508190509392505050565b6000602082019050613af060008301846135dc565b92915050565b6000608082019050613b0b60008301876135dc565b613b1860208301866135dc565b613b256040830185613a65565b8181036060830152613b378184613611565b905095945050505050565b6000604082019050613b5760008301856135dc565b613b646020830184613a65565b9392505050565b6000602082019050613b806000830184613602565b92915050565b60006020820190508181036000830152613ba0818461364a565b905092915050565b60006020820190508181036000830152613bc1816136b4565b9050919050565b60006020820190508181036000830152613be1816136d7565b9050919050565b60006020820190508181036000830152613c01816136fa565b9050919050565b60006020820190508181036000830152613c218161371d565b9050919050565b60006020820190508181036000830152613c4181613740565b9050919050565b60006020820190508181036000830152613c6181613763565b9050919050565b60006020820190508181036000830152613c8181613786565b9050919050565b60006020820190508181036000830152613ca1816137a9565b9050919050565b60006020820190508181036000830152613cc1816137cc565b9050919050565b60006020820190508181036000830152613ce1816137ef565b9050919050565b60006020820190508181036000830152613d0181613812565b9050919050565b60006020820190508181036000830152613d2181613835565b9050919050565b60006020820190508181036000830152613d4181613858565b9050919050565b60006020820190508181036000830152613d618161387b565b9050919050565b60006020820190508181036000830152613d818161389e565b9050919050565b60006020820190508181036000830152613da1816138c1565b9050919050565b60006020820190508181036000830152613dc1816138e4565b9050919050565b60006020820190508181036000830152613de181613907565b9050919050565b60006020820190508181036000830152613e018161392a565b9050919050565b60006020820190508181036000830152613e218161394d565b9050919050565b60006020820190508181036000830152613e4181613970565b9050919050565b60006020820190508181036000830152613e6181613993565b9050919050565b60006020820190508181036000830152613e81816139b6565b9050919050565b60006020820190508181036000830152613ea1816139d9565b9050919050565b60006020820190508181036000830152613ec1816139fc565b9050919050565b60006020820190508181036000830152613ee181613a1f565b9050919050565b60006020820190508181036000830152613f0181613a42565b9050919050565b6000602082019050613f1d6000830184613a65565b92915050565b6000613f2d613f3e565b9050613f39828261415f565b919050565b6000604051905090565b600067ffffffffffffffff821115613f6357613f62614323565b5b613f6c82614370565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fc7826140e1565b9150613fd2836140e1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561400757614006614238565b5b828201905092915050565b600061401d826140e1565b9150614028836140e1565b92508261403857614037614267565b5b828204905092915050565b600061404e826140e1565b9150614059836140e1565b92508282101561406c5761406b614238565b5b828203905092915050565b6000614082826140c1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141185780820151818401526020810190506140fd565b83811115614127576000848401525b50505050565b6000600282049050600182168061414557607f821691505b6020821081141561415957614158614296565b5b50919050565b61416882614370565b810181811067ffffffffffffffff8211171561418757614186614323565b5b80604052505050565b600061419b826140e1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141ce576141cd614238565b5b600182019050919050565b60006141e4826141eb565b9050919050565b60006141f682614381565b9050919050565b6000819050919050565b6000614212826140e1565b915061421d836140e1565b92508261422d5761422c614267565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4e6f7420456e6f7567682045746820746f204d696e7400000000000000000000600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f437279707469657320436c61696d696e67204e6f742053746172746564000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f57616c6c65742068617320416c7265616479204d696e74656400000000000000600082015250565b7f4e6f7420456c696769626c6520666f72204d696e740000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4d6178205075626c696320537570706c79204d696e7465640000000000000000600082015250565b7f4372797074696573205075626c6963204d696e74204e6f742053746172746564600082015250565b6149fe81614077565b8114614a0957600080fd5b50565b614a1581614089565b8114614a2057600080fd5b50565b614a2c81614095565b8114614a3757600080fd5b50565b614a43816140e1565b8114614a4e57600080fd5b5056fe68747470733a2f2f726163656361722e6d7970696e6174612e636c6f75642f697066732f516d556b544d68516151436f69594332383543376d746f756e554d4244655771466f6932674c5047694654784b692fa2646970667358221220e01d193c4e1467444423ecb8485f7ae49663c1cfde5ae510d2a80378aaafb37164736f6c63430008070033

Deployed Bytecode Sourcemap

47936:4017:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51738:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28452:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30094:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29617:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49144:580;;;:::i;:::-;;42355:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49011:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30844:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42023:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48649:65;;;;;;;;;;;;;:::i;:::-;;31254:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49732:565;;;;;;;;;;;;;:::i;:::-;;42545:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6679:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28146:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51130:82;;;;;;;;;;;;;:::i;:::-;;50940:88;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27876:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;;;;;;;;;;;:::i;:::-;;48580:61;;;;;;;;;;;;;:::i;:::-;;51313:110;;;;;;;;;;;;;:::i;:::-;;4079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50823:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51220:85;;;;;;;;;;;;;:::i;:::-;;28621:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30387:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50305:510;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48722:281;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31510:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51036:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28796:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30613:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4988:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51738:212;51877:4;51906:36;51930:11;51906:23;:36::i;:::-;51899:43;;51738:212;;;:::o;28452:100::-;28506:13;28539:5;28532:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28452:100;:::o;30094:221::-;30170:7;30198:16;30206:7;30198;:16::i;:::-;30190:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30283:15;:24;30299:7;30283:24;;;;;;;;;;;;;;;;;;;;;30276:31;;30094:221;;;:::o;29617:411::-;29698:13;29714:23;29729:7;29714:14;:23::i;:::-;29698:39;;29762:5;29756:11;;:2;:11;;;;29748:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;29856:5;29840:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;29865:37;29882:5;29889:12;:10;:12::i;:::-;29865:16;:37::i;:::-;29840:62;29818:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;29999:21;30008:2;30012:7;29999:8;:21::i;:::-;29687:341;29617:411;;:::o;49144:580::-;49196:8;;;;;;;;;;;49188:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;49273:10;49260:9;:23;;49252:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;49329:16;:28;49346:10;49329:28;;;;;;;;;;;;;;;;;;;;;;;;;49321:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;49403:9;:21;49413:10;49403:21;;;;;;;;;;;;;;;;;;;;;;;;;49402:22;49394:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;49508:10;49487:17;;:31;;49465:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;49585:9;:21;49595:10;49585:21;;;;;;;;;;;;;;;;;;;;;;;;;49581:136;;49647:4;49623:9;:21;49633:10;49623:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;49666:38;49672:10;49684:17;;:19;;;;;;;;;:::i;:::-;;;;;49666:5;:38::i;:::-;49581:136;49144:580::o;42355:113::-;42416:7;42443:10;:17;;;;42436:24;;42355:113;:::o;49011:123::-;49080:4;49104:16;:22;49121:4;49104:22;;;;;;;;;;;;;;;;;;;;;;;;;49097:29;;49011:123;;;:::o;30844:339::-;31039:41;31058:12;:10;:12::i;:::-;31072:7;31039:18;:41::i;:::-;31031:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;31147:28;31157:4;31163:2;31167:7;31147:9;:28::i;:::-;30844:339;;;:::o;42023:256::-;42120:7;42156:23;42173:5;42156:16;:23::i;:::-;42148:5;:31;42140:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;42245:12;:19;42258:5;42245:19;;;;;;;;;;;;;;;:26;42265:5;42245:26;;;;;;;;;;;;42238:33;;42023:256;;;;:::o;48649:65::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48696:10:::1;:8;:10::i;:::-;48649:65::o:0;31254:185::-;31392:39;31409:4;31415:2;31419:7;31392:39;;;;;;;;;;;;:16;:39::i;:::-;31254:185;;;:::o;49732:565::-;49777:9;;;;;;;;;;;49769:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;49831:16;49857:8;;;;;;;;;;;49850:26;;;49877:10;49850:38;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49831:57;;49904:9;49899:391;49923:8;49919:1;:12;49899:391;;;49956:15;49991:8;;;;;;;;;;;49974:64;;;50039:10;50051:1;49974:79;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49956:97;;50068:13;50111:8;;;;;;;;;;;50121:7;50094:35;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50084:46;;;;;;50068:62;;50149:10;:17;50160:5;50149:17;;;;;;;;;;;;;;;;;;;;;50145:134;;50207:4;50187:10;:17;50198:5;50187:17;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;50230:33;50236:10;50248:12;;:14;;;;;;;;;:::i;:::-;;;;;50230:5;:33::i;:::-;50145:134;49941:349;;49938:1;49933:6;;;;;:::i;:::-;;;49899:391;;;;49758:539;49732:565::o;42545:233::-;42620:7;42656:30;:28;:30::i;:::-;42648:5;:38;42640:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;42753:10;42764:5;42753:17;;;;;;;;:::i;:::-;;;;;;;;;;42746:24;;42545:233;;;:::o;6679:86::-;6726:4;6750:7;;;;;;;;;;;6743:14;;6679:86;:::o;28146:239::-;28218:7;28238:13;28254:7;:16;28262:7;28254:16;;;;;;;;;;;;;;;;;;;;;28238:32;;28306:1;28289:19;;:5;:19;;;;28281:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28372:5;28365:12;;;28146:239;;;:::o;51130:82::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51196:8:::1;;;;;;;;;;;51195:9;51184:8;;:20;;;;;;;;;;;;;;;;;;51130:82::o:0;50940:88::-;50988:4;51012:8;;;;;;;;;;;51005:15;;50940:88;:::o;27876:208::-;27948:7;27993:1;27976:19;;:5;:19;;;;27968:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;28060:9;:16;28070:5;28060:16;;;;;;;;;;;;;;;;28053:23;;27876:208;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;48580:61::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48625:8:::1;:6;:8::i;:::-;48580:61::o:0;51313:110::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51372:10:::1;51364:28;;:51;51393:21;51364:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;51313:110::o:0;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;50823:109::-;50885:4;50909:9;:15;50919:4;50909:15;;;;;;;;;;;;;;;;;;;;;;;;;50902:22;;50823:109;;;:::o;51220:85::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51288:9:::1;;;;;;;;;;;51287:10;51275:9;;:22;;;;;;;;;;;;;;;;;;51220:85::o:0;28621:104::-;28677:13;28710:7;28703:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28621:104;:::o;30387:155::-;30482:52;30501:12;:10;:12::i;:::-;30515:8;30525;30482:18;:52::i;:::-;30387:155;;:::o;50305:510::-;50366:7;50386:16;50412:8;;;;;;;;;;;50405:26;;;50432:4;50405:32;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50386:51;;50448:11;50475:9;50487:1;50475:13;;50470:317;50494:8;50490:1;:12;50470:317;;;50527:15;50562:8;;;;;;;;;;;50545:64;;;50610:4;50616:1;50545:73;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50527:91;;50633:13;50676:8;;;;;;;;;;;50686:7;50659:35;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50649:46;;;;;;50633:62;;50714:10;:17;50725:5;50714:17;;;;;;;;;;;;;;;;;;;;;50710:66;;50759:1;50752:8;;;;;:::i;:::-;;;50710:66;50512:275;;50509:1;50504:6;;;;;:::i;:::-;;;50470:317;;;;50804:3;50797:10;;;;50305:510;;;:::o;48722:281::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48809:9:::1;48804:192;48828:9;;:16;;48824:1;:20;48804:192;;;48898:1;48874:26;;:9;;48884:1;48874:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;:26;;;;48866:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48978:4;48945:16;:30;48962:9;;48972:1;48962:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;48945:30;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;48846:3;;;;;:::i;:::-;;;;48804:192;;;;48722:281:::0;;:::o;31510:328::-;31685:41;31704:12;:10;:12::i;:::-;31718:7;31685:18;:41::i;:::-;31677:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;31791:39;31805:4;31811:2;31815:7;31824:5;31791:13;:39::i;:::-;31510:328;;;;:::o;51036:86::-;51081:4;51105:9;;;;;;;;;;;51098:16;;51036:86;:::o;28796:334::-;28869:13;28903:16;28911:7;28903;:16::i;:::-;28895:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;28984:21;29008:10;:8;:10::i;:::-;28984:34;;29060:1;29042:7;29036:21;:25;:86;;;;;;;;;;;;;;;;;29088:7;29097:18;:7;:16;:18::i;:::-;29071:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29036:86;29029:93;;;28796:334;;;:::o;30613:164::-;30710:4;30734:18;:25;30753:5;30734:25;;;;;;;;;;;;;;;:35;30760:8;30734:35;;;;;;;;;;;;;;;;;;;;;;;;;30727:42;;30613:164;;;;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;;;5069:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;41715:224::-;41817:4;41856:35;41841:50;;;:11;:50;;;;:90;;;;41895:36;41919:11;41895:23;:36::i;:::-;41841:90;41834:97;;41715:224;;;:::o;33348:127::-;33413:4;33465:1;33437:30;;:7;:16;33445:7;33437:16;;;;;;;;;;;;;;;;;;;;;:30;;;;33430:37;;33348:127;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;37494:174::-;37596:2;37569:15;:24;37585:7;37569:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;37652:7;37648:2;37614:46;;37623:23;37638:7;37623:14;:23::i;:::-;37614:46;;;;;;;;;;;;37494:174;;:::o;35326:439::-;35420:1;35406:16;;:2;:16;;;;35398:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;35479:16;35487:7;35479;:16::i;:::-;35478:17;35470:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;35541:45;35570:1;35574:2;35578:7;35541:20;:45::i;:::-;35616:1;35599:9;:13;35609:2;35599:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35647:2;35628:7;:16;35636:7;35628:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35692:7;35688:2;35667:33;;35684:1;35667:33;;;;;;;;;;;;35713:44;35741:1;35745:2;35749:7;35713:19;:44::i;:::-;35326:439;;:::o;33642:348::-;33735:4;33760:16;33768:7;33760;:16::i;:::-;33752:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;33836:13;33852:23;33867:7;33852:14;:23::i;:::-;33836:39;;33905:5;33894:16;;:7;:16;;;:51;;;;33938:7;33914:31;;:20;33926:7;33914:11;:20::i;:::-;:31;;;33894:51;:87;;;;33949:32;33966:5;33973:7;33949:16;:32::i;:::-;33894:87;33886:96;;;33642:348;;;;:::o;36751:625::-;36910:4;36883:31;;:23;36898:7;36883:14;:23::i;:::-;:31;;;36875:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;36989:1;36975:16;;:2;:16;;;;36967:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;37045:39;37066:4;37072:2;37076:7;37045:20;:39::i;:::-;37149:29;37166:1;37170:7;37149:8;:29::i;:::-;37210:1;37191:9;:15;37201:4;37191:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;37239:1;37222:9;:13;37232:2;37222:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;37270:2;37251:7;:16;37259:7;37251:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;37309:7;37305:2;37290:27;;37299:4;37290:27;;;;;;;;;;;;37330:38;37350:4;37356:2;37360:7;37330:19;:38::i;:::-;36751:625;;;:::o;7738:120::-;7282:8;:6;:8::i;:::-;7274:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;7807:5:::1;7797:7;;:15;;;;;;;;;;;;;;;;;;7828:22;7837:12;:10;:12::i;:::-;7828:22;;;;;;:::i;:::-;;;;;;;;7738:120::o:0;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5412:128;5349:191;:::o;7479:118::-;7005:8;:6;:8::i;:::-;7004:9;6996:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;7549:4:::1;7539:7;;:14;;;;;;;;;;;;;;;;;;7569:20;7576:12;:10;:12::i;:::-;7569:20;;;;;;:::i;:::-;;;;;;;;7479:118::o:0;37810:315::-;37965:8;37956:17;;:5;:17;;;;37948:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;38052:8;38014:18;:25;38033:5;38014:25;;;;;;;;;;;;;;;:35;38040:8;38014:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;38098:8;38076:41;;38091:5;38076:41;;;38108:8;38076:41;;;;;;:::i;:::-;;;;;;;;37810:315;;;:::o;32720:::-;32877:28;32887:4;32893:2;32897:7;32877:9;:28::i;:::-;32924:48;32947:4;32953:2;32957:7;32966:5;32924:22;:48::i;:::-;32916:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;32720:315;;;;:::o;29378:177::-;29429:13;29455:92;;;;;;;;;;;;;;;;;;;29378:177;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;27507:305::-;27609:4;27661:25;27646:40;;;:11;:40;;;;:105;;;;27718:33;27703:48;;;:11;:48;;;;27646:105;:158;;;;27768:36;27792:11;27768:23;:36::i;:::-;27646:158;27626:178;;27507:305;;;:::o;51433:227::-;7005:8;:6;:8::i;:::-;7004:9;6996:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;51607:45:::1;51634:4;51640:2;51644:7;51607:26;:45::i;:::-;51433:227:::0;;;:::o;40572:125::-;;;;:::o;38690:799::-;38845:4;38866:15;:2;:13;;;:15::i;:::-;38862:620;;;38918:2;38902:36;;;38939:12;:10;:12::i;:::-;38953:4;38959:7;38968:5;38902:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38898:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39161:1;39144:6;:13;:18;39140:272;;;39187:60;;;;;;;;;;:::i;:::-;;;;;;;;39140:272;39362:6;39356:13;39347:6;39343:2;39339:15;39332:38;38898:529;39035:41;;;39025:51;;;:6;:51;;;;39018:58;;;;;38862:620;39466:4;39459:11;;38690:799;;;;;;;:::o;19181:157::-;19266:4;19305:25;19290:40;;;:11;:40;;;;19283:47;;19181:157;;;:::o;43391:589::-;43535:45;43562:4;43568:2;43572:7;43535:26;:45::i;:::-;43613:1;43597:18;;:4;:18;;;43593:187;;;43632:40;43664:7;43632:31;:40::i;:::-;43593:187;;;43702:2;43694:10;;:4;:10;;;43690:90;;43721:47;43754:4;43760:7;43721:32;:47::i;:::-;43690:90;43593:187;43808:1;43794:16;;:2;:16;;;43790:183;;;43827:45;43864:7;43827:36;:45::i;:::-;43790:183;;;43900:4;43894:10;;:2;:10;;;43890:83;;43921:40;43949:2;43953:7;43921:27;:40::i;:::-;43890:83;43790:183;43391:589;;;:::o;9098:326::-;9158:4;9415:1;9393:7;:19;;;:23;9386:30;;9098:326;;;:::o;40061:126::-;;;;:::o;44703:164::-;44807:10;:17;;;;44780:15;:24;44796:7;44780:24;;;;;;;;;;;:44;;;;44835:10;44851:7;44835:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44703:164;:::o;45494:988::-;45760:22;45810:1;45785:22;45802:4;45785:16;:22::i;:::-;:26;;;;:::i;:::-;45760:51;;45822:18;45843:17;:26;45861:7;45843:26;;;;;;;;;;;;45822:47;;45990:14;45976:10;:28;45972:328;;46021:19;46043:12;:18;46056:4;46043:18;;;;;;;;;;;;;;;:34;46062:14;46043:34;;;;;;;;;;;;46021:56;;46127:11;46094:12;:18;46107:4;46094:18;;;;;;;;;;;;;;;:30;46113:10;46094:30;;;;;;;;;;;:44;;;;46244:10;46211:17;:30;46229:11;46211:30;;;;;;;;;;;:43;;;;46006:294;45972:328;46396:17;:26;46414:7;46396:26;;;;;;;;;;;46389:33;;;46440:12;:18;46453:4;46440:18;;;;;;;;;;;;;;;:34;46459:14;46440:34;;;;;;;;;;;46433:41;;;45575:907;;45494:988;;:::o;46777:1079::-;47030:22;47075:1;47055:10;:17;;;;:21;;;;:::i;:::-;47030:46;;47087:18;47108:15;:24;47124:7;47108:24;;;;;;;;;;;;47087:45;;47459:19;47481:10;47492:14;47481:26;;;;;;;;:::i;:::-;;;;;;;;;;47459:48;;47545:11;47520:10;47531;47520:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;47656:10;47625:15;:28;47641:11;47625:28;;;;;;;;;;;:41;;;;47797:15;:24;47813:7;47797:24;;;;;;;;;;;47790:31;;;47832:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;46848:1008;;;46777:1079;:::o;44281:221::-;44366:14;44383:20;44400:2;44383:16;:20::i;:::-;44366:37;;44441:7;44414:12;:16;44427:2;44414:16;;;;;;;;;;;;;;;:24;44431:6;44414:24;;;;;;;;;;;:34;;;;44488:6;44459:17;:26;44477:7;44459:26;;;;;;;;;;;:35;;;;44355:147;44281:221;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;585:568::-;658:8;668:6;718:3;711:4;703:6;699:17;695:27;685:122;;726:79;;:::i;:::-;685:122;839:6;826:20;816:30;;869:18;861:6;858:30;855:117;;;891:79;;:::i;:::-;855:117;1005:4;997:6;993:17;981:29;;1059:3;1051:4;1043:6;1039:17;1029:8;1025:32;1022:41;1019:128;;;1066:79;;:::i;:::-;1019:128;585:568;;;;;:::o;1159:133::-;1202:5;1240:6;1227:20;1218:29;;1256:30;1280:5;1256:30;:::i;:::-;1159:133;;;;:::o;1298:137::-;1343:5;1381:6;1368:20;1359:29;;1397:32;1423:5;1397:32;:::i;:::-;1298:137;;;;:::o;1441:141::-;1497:5;1528:6;1522:13;1513:22;;1544:32;1570:5;1544:32;:::i;:::-;1441:141;;;;:::o;1601:338::-;1656:5;1705:3;1698:4;1690:6;1686:17;1682:27;1672:122;;1713:79;;:::i;:::-;1672:122;1830:6;1817:20;1855:78;1929:3;1921:6;1914:4;1906:6;1902:17;1855:78;:::i;:::-;1846:87;;1662:277;1601:338;;;;:::o;1945:139::-;1991:5;2029:6;2016:20;2007:29;;2045:33;2072:5;2045:33;:::i;:::-;1945:139;;;;:::o;2090:143::-;2147:5;2178:6;2172:13;2163:22;;2194:33;2221:5;2194:33;:::i;:::-;2090:143;;;;:::o;2239:329::-;2298:6;2347:2;2335:9;2326:7;2322:23;2318:32;2315:119;;;2353:79;;:::i;:::-;2315:119;2473:1;2498:53;2543:7;2534:6;2523:9;2519:22;2498:53;:::i;:::-;2488:63;;2444:117;2239:329;;;;:::o;2574:474::-;2642:6;2650;2699:2;2687:9;2678:7;2674:23;2670:32;2667:119;;;2705:79;;:::i;:::-;2667:119;2825:1;2850:53;2895:7;2886:6;2875:9;2871:22;2850:53;:::i;:::-;2840:63;;2796:117;2952:2;2978:53;3023:7;3014:6;3003:9;2999:22;2978:53;:::i;:::-;2968:63;;2923:118;2574:474;;;;;:::o;3054:619::-;3131:6;3139;3147;3196:2;3184:9;3175:7;3171:23;3167:32;3164:119;;;3202:79;;:::i;:::-;3164:119;3322:1;3347:53;3392:7;3383:6;3372:9;3368:22;3347:53;:::i;:::-;3337:63;;3293:117;3449:2;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3420:118;3577:2;3603:53;3648:7;3639:6;3628:9;3624:22;3603:53;:::i;:::-;3593:63;;3548:118;3054:619;;;;;:::o;3679:943::-;3774:6;3782;3790;3798;3847:3;3835:9;3826:7;3822:23;3818:33;3815:120;;;3854:79;;:::i;:::-;3815:120;3974:1;3999:53;4044:7;4035:6;4024:9;4020:22;3999:53;:::i;:::-;3989:63;;3945:117;4101:2;4127:53;4172:7;4163:6;4152:9;4148:22;4127:53;:::i;:::-;4117:63;;4072:118;4229:2;4255:53;4300:7;4291:6;4280:9;4276:22;4255:53;:::i;:::-;4245:63;;4200:118;4385:2;4374:9;4370:18;4357:32;4416:18;4408:6;4405:30;4402:117;;;4438:79;;:::i;:::-;4402:117;4543:62;4597:7;4588:6;4577:9;4573:22;4543:62;:::i;:::-;4533:72;;4328:287;3679:943;;;;;;;:::o;4628:468::-;4693:6;4701;4750:2;4738:9;4729:7;4725:23;4721:32;4718:119;;;4756:79;;:::i;:::-;4718:119;4876:1;4901:53;4946:7;4937:6;4926:9;4922:22;4901:53;:::i;:::-;4891:63;;4847:117;5003:2;5029:50;5071:7;5062:6;5051:9;5047:22;5029:50;:::i;:::-;5019:60;;4974:115;4628:468;;;;;:::o;5102:474::-;5170:6;5178;5227:2;5215:9;5206:7;5202:23;5198:32;5195:119;;;5233:79;;:::i;:::-;5195:119;5353:1;5378:53;5423:7;5414:6;5403:9;5399:22;5378:53;:::i;:::-;5368:63;;5324:117;5480:2;5506:53;5551:7;5542:6;5531:9;5527:22;5506:53;:::i;:::-;5496:63;;5451:118;5102:474;;;;;:::o;5582:559::-;5668:6;5676;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5879:1;5868:9;5864:17;5851:31;5909:18;5901:6;5898:30;5895:117;;;5931:79;;:::i;:::-;5895:117;6044:80;6116:7;6107:6;6096:9;6092:22;6044:80;:::i;:::-;6026:98;;;;5822:312;5582:559;;;;;:::o;6147:327::-;6205:6;6254:2;6242:9;6233:7;6229:23;6225:32;6222:119;;;6260:79;;:::i;:::-;6222:119;6380:1;6405:52;6449:7;6440:6;6429:9;6425:22;6405:52;:::i;:::-;6395:62;;6351:116;6147:327;;;;:::o;6480:349::-;6549:6;6598:2;6586:9;6577:7;6573:23;6569:32;6566:119;;;6604:79;;:::i;:::-;6566:119;6724:1;6749:63;6804:7;6795:6;6784:9;6780:22;6749:63;:::i;:::-;6739:73;;6695:127;6480:349;;;;:::o;6835:329::-;6894:6;6943:2;6931:9;6922:7;6918:23;6914:32;6911:119;;;6949:79;;:::i;:::-;6911:119;7069:1;7094:53;7139:7;7130:6;7119:9;7115:22;7094:53;:::i;:::-;7084:63;;7040:117;6835:329;;;;:::o;7170:351::-;7240:6;7289:2;7277:9;7268:7;7264:23;7260:32;7257:119;;;7295:79;;:::i;:::-;7257:119;7415:1;7440:64;7496:7;7487:6;7476:9;7472:22;7440:64;:::i;:::-;7430:74;;7386:128;7170:351;;;;:::o;7527:118::-;7614:24;7632:5;7614:24;:::i;:::-;7609:3;7602:37;7527:118;;:::o;7651:157::-;7756:45;7776:24;7794:5;7776:24;:::i;:::-;7756:45;:::i;:::-;7751:3;7744:58;7651:157;;:::o;7814:109::-;7895:21;7910:5;7895:21;:::i;:::-;7890:3;7883:34;7814:109;;:::o;7929:360::-;8015:3;8043:38;8075:5;8043:38;:::i;:::-;8097:70;8160:6;8155:3;8097:70;:::i;:::-;8090:77;;8176:52;8221:6;8216:3;8209:4;8202:5;8198:16;8176:52;:::i;:::-;8253:29;8275:6;8253:29;:::i;:::-;8248:3;8244:39;8237:46;;8019:270;7929:360;;;;:::o;8295:364::-;8383:3;8411:39;8444:5;8411:39;:::i;:::-;8466:71;8530:6;8525:3;8466:71;:::i;:::-;8459:78;;8546:52;8591:6;8586:3;8579:4;8572:5;8568:16;8546:52;:::i;:::-;8623:29;8645:6;8623:29;:::i;:::-;8618:3;8614:39;8607:46;;8387:272;8295:364;;;;:::o;8665:377::-;8771:3;8799:39;8832:5;8799:39;:::i;:::-;8854:89;8936:6;8931:3;8854:89;:::i;:::-;8847:96;;8952:52;8997:6;8992:3;8985:4;8978:5;8974:16;8952:52;:::i;:::-;9029:6;9024:3;9020:16;9013:23;;8775:267;8665:377;;;;:::o;9048:366::-;9190:3;9211:67;9275:2;9270:3;9211:67;:::i;:::-;9204:74;;9287:93;9376:3;9287:93;:::i;:::-;9405:2;9400:3;9396:12;9389:19;;9048:366;;;:::o;9420:::-;9562:3;9583:67;9647:2;9642:3;9583:67;:::i;:::-;9576:74;;9659:93;9748:3;9659:93;:::i;:::-;9777:2;9772:3;9768:12;9761:19;;9420:366;;;:::o;9792:::-;9934:3;9955:67;10019:2;10014:3;9955:67;:::i;:::-;9948:74;;10031:93;10120:3;10031:93;:::i;:::-;10149:2;10144:3;10140:12;10133:19;;9792:366;;;:::o;10164:::-;10306:3;10327:67;10391:2;10386:3;10327:67;:::i;:::-;10320:74;;10403:93;10492:3;10403:93;:::i;:::-;10521:2;10516:3;10512:12;10505:19;;10164:366;;;:::o;10536:::-;10678:3;10699:67;10763:2;10758:3;10699:67;:::i;:::-;10692:74;;10775:93;10864:3;10775:93;:::i;:::-;10893:2;10888:3;10884:12;10877:19;;10536:366;;;:::o;10908:::-;11050:3;11071:67;11135:2;11130:3;11071:67;:::i;:::-;11064:74;;11147:93;11236:3;11147:93;:::i;:::-;11265:2;11260:3;11256:12;11249:19;;10908:366;;;:::o;11280:::-;11422:3;11443:67;11507:2;11502:3;11443:67;:::i;:::-;11436:74;;11519:93;11608:3;11519:93;:::i;:::-;11637:2;11632:3;11628:12;11621:19;;11280:366;;;:::o;11652:::-;11794:3;11815:67;11879:2;11874:3;11815:67;:::i;:::-;11808:74;;11891:93;11980:3;11891:93;:::i;:::-;12009:2;12004:3;12000:12;11993:19;;11652:366;;;:::o;12024:::-;12166:3;12187:67;12251:2;12246:3;12187:67;:::i;:::-;12180:74;;12263:93;12352:3;12263:93;:::i;:::-;12381:2;12376:3;12372:12;12365:19;;12024:366;;;:::o;12396:::-;12538:3;12559:67;12623:2;12618:3;12559:67;:::i;:::-;12552:74;;12635:93;12724:3;12635:93;:::i;:::-;12753:2;12748:3;12744:12;12737:19;;12396:366;;;:::o;12768:::-;12910:3;12931:67;12995:2;12990:3;12931:67;:::i;:::-;12924:74;;13007:93;13096:3;13007:93;:::i;:::-;13125:2;13120:3;13116:12;13109:19;;12768:366;;;:::o;13140:::-;13282:3;13303:67;13367:2;13362:3;13303:67;:::i;:::-;13296:74;;13379:93;13468:3;13379:93;:::i;:::-;13497:2;13492:3;13488:12;13481:19;;13140:366;;;:::o;13512:::-;13654:3;13675:67;13739:2;13734:3;13675:67;:::i;:::-;13668:74;;13751:93;13840:3;13751:93;:::i;:::-;13869:2;13864:3;13860:12;13853:19;;13512:366;;;:::o;13884:::-;14026:3;14047:67;14111:2;14106:3;14047:67;:::i;:::-;14040:74;;14123:93;14212:3;14123:93;:::i;:::-;14241:2;14236:3;14232:12;14225:19;;13884:366;;;:::o;14256:::-;14398:3;14419:67;14483:2;14478:3;14419:67;:::i;:::-;14412:74;;14495:93;14584:3;14495:93;:::i;:::-;14613:2;14608:3;14604:12;14597:19;;14256:366;;;:::o;14628:::-;14770:3;14791:67;14855:2;14850:3;14791:67;:::i;:::-;14784:74;;14867:93;14956:3;14867:93;:::i;:::-;14985:2;14980:3;14976:12;14969:19;;14628:366;;;:::o;15000:::-;15142:3;15163:67;15227:2;15222:3;15163:67;:::i;:::-;15156:74;;15239:93;15328:3;15239:93;:::i;:::-;15357:2;15352:3;15348:12;15341:19;;15000:366;;;:::o;15372:::-;15514:3;15535:67;15599:2;15594:3;15535:67;:::i;:::-;15528:74;;15611:93;15700:3;15611:93;:::i;:::-;15729:2;15724:3;15720:12;15713:19;;15372:366;;;:::o;15744:::-;15886:3;15907:67;15971:2;15966:3;15907:67;:::i;:::-;15900:74;;15983:93;16072:3;15983:93;:::i;:::-;16101:2;16096:3;16092:12;16085:19;;15744:366;;;:::o;16116:::-;16258:3;16279:67;16343:2;16338:3;16279:67;:::i;:::-;16272:74;;16355:93;16444:3;16355:93;:::i;:::-;16473:2;16468:3;16464:12;16457:19;;16116:366;;;:::o;16488:::-;16630:3;16651:67;16715:2;16710:3;16651:67;:::i;:::-;16644:74;;16727:93;16816:3;16727:93;:::i;:::-;16845:2;16840:3;16836:12;16829:19;;16488:366;;;:::o;16860:::-;17002:3;17023:67;17087:2;17082:3;17023:67;:::i;:::-;17016:74;;17099:93;17188:3;17099:93;:::i;:::-;17217:2;17212:3;17208:12;17201:19;;16860:366;;;:::o;17232:::-;17374:3;17395:67;17459:2;17454:3;17395:67;:::i;:::-;17388:74;;17471:93;17560:3;17471:93;:::i;:::-;17589:2;17584:3;17580:12;17573:19;;17232:366;;;:::o;17604:::-;17746:3;17767:67;17831:2;17826:3;17767:67;:::i;:::-;17760:74;;17843:93;17932:3;17843:93;:::i;:::-;17961:2;17956:3;17952:12;17945:19;;17604:366;;;:::o;17976:::-;18118:3;18139:67;18203:2;18198:3;18139:67;:::i;:::-;18132:74;;18215:93;18304:3;18215:93;:::i;:::-;18333:2;18328:3;18324:12;18317:19;;17976:366;;;:::o;18348:::-;18490:3;18511:67;18575:2;18570:3;18511:67;:::i;:::-;18504:74;;18587:93;18676:3;18587:93;:::i;:::-;18705:2;18700:3;18696:12;18689:19;;18348:366;;;:::o;18720:::-;18862:3;18883:67;18947:2;18942:3;18883:67;:::i;:::-;18876:74;;18959:93;19048:3;18959:93;:::i;:::-;19077:2;19072:3;19068:12;19061:19;;18720:366;;;:::o;19092:118::-;19179:24;19197:5;19179:24;:::i;:::-;19174:3;19167:37;19092:118;;:::o;19216:157::-;19321:45;19341:24;19359:5;19341:24;:::i;:::-;19321:45;:::i;:::-;19316:3;19309:58;19216:157;;:::o;19379:397::-;19519:3;19534:75;19605:3;19596:6;19534:75;:::i;:::-;19634:2;19629:3;19625:12;19618:19;;19647:75;19718:3;19709:6;19647:75;:::i;:::-;19747:2;19742:3;19738:12;19731:19;;19767:3;19760:10;;19379:397;;;;;:::o;19782:435::-;19962:3;19984:95;20075:3;20066:6;19984:95;:::i;:::-;19977:102;;20096:95;20187:3;20178:6;20096:95;:::i;:::-;20089:102;;20208:3;20201:10;;19782:435;;;;;:::o;20223:222::-;20316:4;20354:2;20343:9;20339:18;20331:26;;20367:71;20435:1;20424:9;20420:17;20411:6;20367:71;:::i;:::-;20223:222;;;;:::o;20451:640::-;20646:4;20684:3;20673:9;20669:19;20661:27;;20698:71;20766:1;20755:9;20751:17;20742:6;20698:71;:::i;:::-;20779:72;20847:2;20836:9;20832:18;20823:6;20779:72;:::i;:::-;20861;20929:2;20918:9;20914:18;20905:6;20861:72;:::i;:::-;20980:9;20974:4;20970:20;20965:2;20954:9;20950:18;20943:48;21008:76;21079:4;21070:6;21008:76;:::i;:::-;21000:84;;20451:640;;;;;;;:::o;21097:332::-;21218:4;21256:2;21245:9;21241:18;21233:26;;21269:71;21337:1;21326:9;21322:17;21313:6;21269:71;:::i;:::-;21350:72;21418:2;21407:9;21403:18;21394:6;21350:72;:::i;:::-;21097:332;;;;;:::o;21435:210::-;21522:4;21560:2;21549:9;21545:18;21537:26;;21573:65;21635:1;21624:9;21620:17;21611:6;21573:65;:::i;:::-;21435:210;;;;:::o;21651:313::-;21764:4;21802:2;21791:9;21787:18;21779:26;;21851:9;21845:4;21841:20;21837:1;21826:9;21822:17;21815:47;21879:78;21952:4;21943:6;21879:78;:::i;:::-;21871:86;;21651:313;;;;:::o;21970:419::-;22136:4;22174:2;22163:9;22159:18;22151:26;;22223:9;22217:4;22213:20;22209:1;22198:9;22194:17;22187:47;22251:131;22377:4;22251:131;:::i;:::-;22243:139;;21970:419;;;:::o;22395:::-;22561:4;22599:2;22588:9;22584:18;22576:26;;22648:9;22642:4;22638:20;22634:1;22623:9;22619:17;22612:47;22676:131;22802:4;22676:131;:::i;:::-;22668:139;;22395:419;;;:::o;22820:::-;22986:4;23024:2;23013:9;23009:18;23001:26;;23073:9;23067:4;23063:20;23059:1;23048:9;23044:17;23037:47;23101:131;23227:4;23101:131;:::i;:::-;23093:139;;22820:419;;;:::o;23245:::-;23411:4;23449:2;23438:9;23434:18;23426:26;;23498:9;23492:4;23488:20;23484:1;23473:9;23469:17;23462:47;23526:131;23652:4;23526:131;:::i;:::-;23518:139;;23245:419;;;:::o;23670:::-;23836:4;23874:2;23863:9;23859:18;23851:26;;23923:9;23917:4;23913:20;23909:1;23898:9;23894:17;23887:47;23951:131;24077:4;23951:131;:::i;:::-;23943:139;;23670:419;;;:::o;24095:::-;24261:4;24299:2;24288:9;24284:18;24276:26;;24348:9;24342:4;24338:20;24334:1;24323:9;24319:17;24312:47;24376:131;24502:4;24376:131;:::i;:::-;24368:139;;24095:419;;;:::o;24520:::-;24686:4;24724:2;24713:9;24709:18;24701:26;;24773:9;24767:4;24763:20;24759:1;24748:9;24744:17;24737:47;24801:131;24927:4;24801:131;:::i;:::-;24793:139;;24520:419;;;:::o;24945:::-;25111:4;25149:2;25138:9;25134:18;25126:26;;25198:9;25192:4;25188:20;25184:1;25173:9;25169:17;25162:47;25226:131;25352:4;25226:131;:::i;:::-;25218:139;;24945:419;;;:::o;25370:::-;25536:4;25574:2;25563:9;25559:18;25551:26;;25623:9;25617:4;25613:20;25609:1;25598:9;25594:17;25587:47;25651:131;25777:4;25651:131;:::i;:::-;25643:139;;25370:419;;;:::o;25795:::-;25961:4;25999:2;25988:9;25984:18;25976:26;;26048:9;26042:4;26038:20;26034:1;26023:9;26019:17;26012:47;26076:131;26202:4;26076:131;:::i;:::-;26068:139;;25795:419;;;:::o;26220:::-;26386:4;26424:2;26413:9;26409:18;26401:26;;26473:9;26467:4;26463:20;26459:1;26448:9;26444:17;26437:47;26501:131;26627:4;26501:131;:::i;:::-;26493:139;;26220:419;;;:::o;26645:::-;26811:4;26849:2;26838:9;26834:18;26826:26;;26898:9;26892:4;26888:20;26884:1;26873:9;26869:17;26862:47;26926:131;27052:4;26926:131;:::i;:::-;26918:139;;26645:419;;;:::o;27070:::-;27236:4;27274:2;27263:9;27259:18;27251:26;;27323:9;27317:4;27313:20;27309:1;27298:9;27294:17;27287:47;27351:131;27477:4;27351:131;:::i;:::-;27343:139;;27070:419;;;:::o;27495:::-;27661:4;27699:2;27688:9;27684:18;27676:26;;27748:9;27742:4;27738:20;27734:1;27723:9;27719:17;27712:47;27776:131;27902:4;27776:131;:::i;:::-;27768:139;;27495:419;;;:::o;27920:::-;28086:4;28124:2;28113:9;28109:18;28101:26;;28173:9;28167:4;28163:20;28159:1;28148:9;28144:17;28137:47;28201:131;28327:4;28201:131;:::i;:::-;28193:139;;27920:419;;;:::o;28345:::-;28511:4;28549:2;28538:9;28534:18;28526:26;;28598:9;28592:4;28588:20;28584:1;28573:9;28569:17;28562:47;28626:131;28752:4;28626:131;:::i;:::-;28618:139;;28345:419;;;:::o;28770:::-;28936:4;28974:2;28963:9;28959:18;28951:26;;29023:9;29017:4;29013:20;29009:1;28998:9;28994:17;28987:47;29051:131;29177:4;29051:131;:::i;:::-;29043:139;;28770:419;;;:::o;29195:::-;29361:4;29399:2;29388:9;29384:18;29376:26;;29448:9;29442:4;29438:20;29434:1;29423:9;29419:17;29412:47;29476:131;29602:4;29476:131;:::i;:::-;29468:139;;29195:419;;;:::o;29620:::-;29786:4;29824:2;29813:9;29809:18;29801:26;;29873:9;29867:4;29863:20;29859:1;29848:9;29844:17;29837:47;29901:131;30027:4;29901:131;:::i;:::-;29893:139;;29620:419;;;:::o;30045:::-;30211:4;30249:2;30238:9;30234:18;30226:26;;30298:9;30292:4;30288:20;30284:1;30273:9;30269:17;30262:47;30326:131;30452:4;30326:131;:::i;:::-;30318:139;;30045:419;;;:::o;30470:::-;30636:4;30674:2;30663:9;30659:18;30651:26;;30723:9;30717:4;30713:20;30709:1;30698:9;30694:17;30687:47;30751:131;30877:4;30751:131;:::i;:::-;30743:139;;30470:419;;;:::o;30895:::-;31061:4;31099:2;31088:9;31084:18;31076:26;;31148:9;31142:4;31138:20;31134:1;31123:9;31119:17;31112:47;31176:131;31302:4;31176:131;:::i;:::-;31168:139;;30895:419;;;:::o;31320:::-;31486:4;31524:2;31513:9;31509:18;31501:26;;31573:9;31567:4;31563:20;31559:1;31548:9;31544:17;31537:47;31601:131;31727:4;31601:131;:::i;:::-;31593:139;;31320:419;;;:::o;31745:::-;31911:4;31949:2;31938:9;31934:18;31926:26;;31998:9;31992:4;31988:20;31984:1;31973:9;31969:17;31962:47;32026:131;32152:4;32026:131;:::i;:::-;32018:139;;31745:419;;;:::o;32170:::-;32336:4;32374:2;32363:9;32359:18;32351:26;;32423:9;32417:4;32413:20;32409:1;32398:9;32394:17;32387:47;32451:131;32577:4;32451:131;:::i;:::-;32443:139;;32170:419;;;:::o;32595:::-;32761:4;32799:2;32788:9;32784:18;32776:26;;32848:9;32842:4;32838:20;32834:1;32823:9;32819:17;32812:47;32876:131;33002:4;32876:131;:::i;:::-;32868:139;;32595:419;;;:::o;33020:::-;33186:4;33224:2;33213:9;33209:18;33201:26;;33273:9;33267:4;33263:20;33259:1;33248:9;33244:17;33237:47;33301:131;33427:4;33301:131;:::i;:::-;33293:139;;33020:419;;;:::o;33445:222::-;33538:4;33576:2;33565:9;33561:18;33553:26;;33589:71;33657:1;33646:9;33642:17;33633:6;33589:71;:::i;:::-;33445:222;;;;:::o;33673:129::-;33707:6;33734:20;;:::i;:::-;33724:30;;33763:33;33791:4;33783:6;33763:33;:::i;:::-;33673:129;;;:::o;33808:75::-;33841:6;33874:2;33868:9;33858:19;;33808:75;:::o;33889:307::-;33950:4;34040:18;34032:6;34029:30;34026:56;;;34062:18;;:::i;:::-;34026:56;34100:29;34122:6;34100:29;:::i;:::-;34092:37;;34184:4;34178;34174:15;34166:23;;33889:307;;;:::o;34202:98::-;34253:6;34287:5;34281:12;34271:22;;34202:98;;;:::o;34306:99::-;34358:6;34392:5;34386:12;34376:22;;34306:99;;;:::o;34411:168::-;34494:11;34528:6;34523:3;34516:19;34568:4;34563:3;34559:14;34544:29;;34411:168;;;;:::o;34585:169::-;34669:11;34703:6;34698:3;34691:19;34743:4;34738:3;34734:14;34719:29;;34585:169;;;;:::o;34760:148::-;34862:11;34899:3;34884:18;;34760:148;;;;:::o;34914:305::-;34954:3;34973:20;34991:1;34973:20;:::i;:::-;34968:25;;35007:20;35025:1;35007:20;:::i;:::-;35002:25;;35161:1;35093:66;35089:74;35086:1;35083:81;35080:107;;;35167:18;;:::i;:::-;35080:107;35211:1;35208;35204:9;35197:16;;34914:305;;;;:::o;35225:185::-;35265:1;35282:20;35300:1;35282:20;:::i;:::-;35277:25;;35316:20;35334:1;35316:20;:::i;:::-;35311:25;;35355:1;35345:35;;35360:18;;:::i;:::-;35345:35;35402:1;35399;35395:9;35390:14;;35225:185;;;;:::o;35416:191::-;35456:4;35476:20;35494:1;35476:20;:::i;:::-;35471:25;;35510:20;35528:1;35510:20;:::i;:::-;35505:25;;35549:1;35546;35543:8;35540:34;;;35554:18;;:::i;:::-;35540:34;35599:1;35596;35592:9;35584:17;;35416:191;;;;:::o;35613:96::-;35650:7;35679:24;35697:5;35679:24;:::i;:::-;35668:35;;35613:96;;;:::o;35715:90::-;35749:7;35792:5;35785:13;35778:21;35767:32;;35715:90;;;:::o;35811:149::-;35847:7;35887:66;35880:5;35876:78;35865:89;;35811:149;;;:::o;35966:126::-;36003:7;36043:42;36036:5;36032:54;36021:65;;35966:126;;;:::o;36098:77::-;36135:7;36164:5;36153:16;;36098:77;;;:::o;36181:154::-;36265:6;36260:3;36255;36242:30;36327:1;36318:6;36313:3;36309:16;36302:27;36181:154;;;:::o;36341:307::-;36409:1;36419:113;36433:6;36430:1;36427:13;36419:113;;;36518:1;36513:3;36509:11;36503:18;36499:1;36494:3;36490:11;36483:39;36455:2;36452:1;36448:10;36443:15;;36419:113;;;36550:6;36547:1;36544:13;36541:101;;;36630:1;36621:6;36616:3;36612:16;36605:27;36541:101;36390:258;36341:307;;;:::o;36654:320::-;36698:6;36735:1;36729:4;36725:12;36715:22;;36782:1;36776:4;36772:12;36803:18;36793:81;;36859:4;36851:6;36847:17;36837:27;;36793:81;36921:2;36913:6;36910:14;36890:18;36887:38;36884:84;;;36940:18;;:::i;:::-;36884:84;36705:269;36654:320;;;:::o;36980:281::-;37063:27;37085:4;37063:27;:::i;:::-;37055:6;37051:40;37193:6;37181:10;37178:22;37157:18;37145:10;37142:34;37139:62;37136:88;;;37204:18;;:::i;:::-;37136:88;37244:10;37240:2;37233:22;37023:238;36980:281;;:::o;37267:233::-;37306:3;37329:24;37347:5;37329:24;:::i;:::-;37320:33;;37375:66;37368:5;37365:77;37362:103;;;37445:18;;:::i;:::-;37362:103;37492:1;37485:5;37481:13;37474:20;;37267:233;;;:::o;37506:100::-;37545:7;37574:26;37594:5;37574:26;:::i;:::-;37563:37;;37506:100;;;:::o;37612:94::-;37651:7;37680:20;37694:5;37680:20;:::i;:::-;37669:31;;37612:94;;;:::o;37712:79::-;37751:7;37780:5;37769:16;;37712:79;;;:::o;37797:176::-;37829:1;37846:20;37864:1;37846:20;:::i;:::-;37841:25;;37880:20;37898:1;37880:20;:::i;:::-;37875:25;;37919:1;37909:35;;37924:18;;:::i;:::-;37909:35;37965:1;37962;37958:9;37953:14;;37797:176;;;;:::o;37979:180::-;38027:77;38024:1;38017:88;38124:4;38121:1;38114:15;38148:4;38145:1;38138:15;38165:180;38213:77;38210:1;38203:88;38310:4;38307:1;38300:15;38334:4;38331:1;38324:15;38351:180;38399:77;38396:1;38389:88;38496:4;38493:1;38486:15;38520:4;38517:1;38510:15;38537:180;38585:77;38582:1;38575:88;38682:4;38679:1;38672:15;38706:4;38703:1;38696:15;38723:180;38771:77;38768:1;38761:88;38868:4;38865:1;38858:15;38892:4;38889:1;38882:15;38909:180;38957:77;38954:1;38947:88;39054:4;39051:1;39044:15;39078:4;39075:1;39068:15;39095:117;39204:1;39201;39194:12;39218:117;39327:1;39324;39317:12;39341:117;39450:1;39447;39440:12;39464:117;39573:1;39570;39563:12;39587:117;39696:1;39693;39686:12;39710:117;39819:1;39816;39809:12;39833:102;39874:6;39925:2;39921:7;39916:2;39909:5;39905:14;39901:28;39891:38;;39833:102;;;:::o;39941:94::-;39974:8;40022:5;40018:2;40014:14;39993:35;;39941:94;;;:::o;40041:172::-;40181:24;40177:1;40169:6;40165:14;40158:48;40041:172;:::o;40219:170::-;40359:22;40355:1;40347:6;40343:14;40336:46;40219:170;:::o;40395:230::-;40535:34;40531:1;40523:6;40519:14;40512:58;40604:13;40599:2;40591:6;40587:15;40580:38;40395:230;:::o;40631:237::-;40771:34;40767:1;40759:6;40755:14;40748:58;40840:20;40835:2;40827:6;40823:15;40816:45;40631:237;:::o;40874:225::-;41014:34;41010:1;41002:6;40998:14;40991:58;41083:8;41078:2;41070:6;41066:15;41059:33;40874:225;:::o;41105:224::-;41245:34;41241:1;41233:6;41229:14;41222:58;41314:7;41309:2;41301:6;41297:15;41290:32;41105:224;:::o;41335:178::-;41475:30;41471:1;41463:6;41459:14;41452:54;41335:178;:::o;41519:223::-;41659:34;41655:1;41647:6;41643:14;41636:58;41728:6;41723:2;41715:6;41711:15;41704:31;41519:223;:::o;41748:175::-;41888:27;41884:1;41876:6;41872:14;41865:51;41748:175;:::o;41929:179::-;42069:31;42065:1;42057:6;42053:14;42046:55;41929:179;:::o;42114:231::-;42254:34;42250:1;42242:6;42238:14;42231:58;42323:14;42318:2;42310:6;42306:15;42299:39;42114:231;:::o;42351:166::-;42491:18;42487:1;42479:6;42475:14;42468:42;42351:166;:::o;42523:243::-;42663:34;42659:1;42651:6;42647:14;42640:58;42732:26;42727:2;42719:6;42715:15;42708:51;42523:243;:::o;42772:229::-;42912:34;42908:1;42900:6;42896:14;42889:58;42981:12;42976:2;42968:6;42964:15;42957:37;42772:229;:::o;43007:228::-;43147:34;43143:1;43135:6;43131:14;43124:58;43216:11;43211:2;43203:6;43199:15;43192:36;43007:228;:::o;43241:182::-;43381:34;43377:1;43369:6;43365:14;43358:58;43241:182;:::o;43429:231::-;43569:34;43565:1;43557:6;43553:14;43546:58;43638:14;43633:2;43625:6;43621:15;43614:39;43429:231;:::o;43666:175::-;43806:27;43802:1;43794:6;43790:14;43783:51;43666:175;:::o;43847:171::-;43987:23;43983:1;43975:6;43971:14;43964:47;43847:171;:::o;44024:182::-;44164:34;44160:1;44152:6;44148:14;44141:58;44024:182;:::o;44212:234::-;44352:34;44348:1;44340:6;44336:14;44329:58;44421:17;44416:2;44408:6;44404:15;44397:42;44212:234;:::o;44452:220::-;44592:34;44588:1;44580:6;44576:14;44569:58;44661:3;44656:2;44648:6;44644:15;44637:28;44452:220;:::o;44678:173::-;44818:25;44814:1;44806:6;44802:14;44795:49;44678:173;:::o;44857:236::-;44997:34;44993:1;44985:6;44981:14;44974:58;45066:19;45061:2;45053:6;45049:15;45042:44;44857:236;:::o;45099:231::-;45239:34;45235:1;45227:6;45223:14;45216:58;45308:14;45303:2;45295:6;45291:15;45284:39;45099:231;:::o;45336:174::-;45476:26;45472:1;45464:6;45460:14;45453:50;45336:174;:::o;45516:182::-;45656:34;45652:1;45644:6;45640:14;45633:58;45516:182;:::o;45704:122::-;45777:24;45795:5;45777:24;:::i;:::-;45770:5;45767:35;45757:63;;45816:1;45813;45806:12;45757:63;45704:122;:::o;45832:116::-;45902:21;45917:5;45902:21;:::i;:::-;45895:5;45892:32;45882:60;;45938:1;45935;45928:12;45882:60;45832:116;:::o;45954:120::-;46026:23;46043:5;46026:23;:::i;:::-;46019:5;46016:34;46006:62;;46064:1;46061;46054:12;46006:62;45954:120;:::o;46080:122::-;46153:24;46171:5;46153:24;:::i;:::-;46146:5;46143:35;46133:63;;46192:1;46189;46182:12;46133:63;46080:122;:::o

Swarm Source

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