ETH Price: $2,359.68 (+0.79%)
Gas: 6.57 Gwei

Token

Musical Martian Invasion (MMI)
 

Overview

Max Total Supply

251 MMI

Holders

114

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
5 MMI
0xef52c0d14f75f57ebffee05441e0d00afed1891d
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:
MusicalMartianInvasion

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-01-28
*/

// SPDX-License-Identifier: MIT
// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @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/utils/Address.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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 v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

// File: contracts/martianContract.sol


// Written by Andrew Olson

pragma solidity >=0.7.0 <0.9.0;






contract MusicalMartianInvasion is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.033 ether;
  uint256 public maxSupply = 3253;
  uint256 public maxMintAmountPerTx = 5;
  uint256 public nftPerAddressLimit = 5;
  


  bytes32 public merkleRoot;

  bool public paused = true;
  bool public revealed = false;
  bool public publicMint = false;

  mapping(address => bool) public whitelistClaimed;
  mapping(address => uint256) public addressMintedBalance;

  constructor() ERC721("Musical Martian Invasion", "MMI") {
    setHiddenMetadataUri("ipfs://QmewVS81BNac8SghgkbEr7bTTUqxXa6MrXw6gvvJGsqjBL/unrevealed.json");
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    uint256 ownerMintedAmount = addressMintedBalance[msg.sender];
    require(ownerMintedAmount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");

    _;
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }

  function WhitelistMint(bytes32[] calldata _merkleProof, uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    require(publicMint == false);
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    require(!whitelistClaimed[msg.sender], "Address has already claimed.");
    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
    require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "Invalid proof.");
    whitelistClaimed[msg.sender] = true;


    _mintLoop(msg.sender, _mintAmount);
  }

  function Mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(publicMint == true);
    require(!paused, "The contract is paused!");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

    _mintLoop(msg.sender, _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _mintLoop(_receiver, _mintAmount);
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    if (revealed == false) {
      return hiddenMetadataUri;
    }

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

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }
 
  function setMintPaused(bool _state) public onlyOwner {
    publicMint = _state;
  }

  function setmerkleRoot(bytes32 _merkleRoot) public onlyOwner {
    merkleRoot = _merkleRoot;
  }

  function setMaxSupply(uint256 _newSupply) public onlyOwner {
    maxSupply = _newSupply;
  }
  
  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }

  function withdraw() public onlyOwner {
  
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return uriPrefix;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"WhitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setMintPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setmerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600890805190602001906200002b92919062000387565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600990805190602001906200007992919062000387565b5066753d533d968000600b55610cb5600c556005600d556005600e556001601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055506000601060026101000a81548160ff021916908315150217905550348015620000f357600080fd5b506040518060400160405280601881526020017f4d75736963616c204d61727469616e20496e766173696f6e00000000000000008152506040518060400160405280600381526020017f4d4d49000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200017892919062000387565b5080600190805190602001906200019192919062000387565b505050620001b4620001a8620001e460201b60201c565b620001ec60201b60201c565b620001de6040518060800160405280604581526020016200543860459139620002b260201b60201c565b6200051f565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002c2620001e460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002e86200035d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000338906200045e565b60405180910390fd5b80600a90805190602001906200035992919062000387565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003959062000491565b90600052602060002090601f016020900481019282620003b9576000855562000405565b82601f10620003d457805160ff191683800117855562000405565b8280016001018555821562000405579182015b8281111562000404578251825591602001919060010190620003e7565b5b50905062000414919062000418565b5090565b5b808211156200043357600081600090555060010162000419565b5090565b60006200044660208362000480565b91506200045382620004f6565b602082019050919050565b60006020820190508181036000830152620004798162000437565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620004aa57607f821691505b60208210811415620004c157620004c0620004c7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614f09806200052f6000396000f3fe60806040526004361061027d5760003560e01c80636f8b44b01161014f578063b88d4fde116100c1578063dd6cede71161007a578063dd6cede714610977578063e0a8085314610993578063e858ad03146109bc578063e985e9c5146109e5578063efbd73f414610a22578063f2fde38b14610a4b5761027d565b8063b88d4fde14610855578063ba7d2c761461087e578063c87b56dd146108a9578063d0eb26b0146108e6578063d5abeb011461090f578063db4bec441461093a5761027d565b806394354fd01161011357806394354fd01461075957806395d89b4114610784578063a22cb465146107af578063a45ba8e7146107d8578063b071401b14610803578063b69355011461082c5761027d565b80636f8b44b01461068857806370a08231146106b1578063715018a6146106ee5780637ec4a659146107055780638da5cb5b1461072e5761027d565b806326092b83116101f35780634fdd43cb116101ac5780634fdd43cb14610576578063518302271461059f5780635503a0e8146105ca5780635c975abb146105f557806362b99ad4146106205780636352211e1461064b5761027d565b806326092b831461047a5780632eb4a7ab146104a55780633ccfd60b146104d057806342842e0e146104e7578063438b63001461051057806344a0d68a1461054d5761027d565b806313faede61161024557806313faede61461036c57806316ba10e01461039757806316c38b3c146103c057806318160ddd146103e957806318cae2691461041457806323b872dd146104515761027d565b806301ffc9a71461028257806306fdde03146102bf57806307883703146102ea578063081812fc14610306578063095ea7b314610343575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613937565b610a74565b6040516102b69190614073565b60405180910390f35b3480156102cb57600080fd5b506102d4610b56565b6040516102e191906140a9565b60405180910390f35b61030460048036038101906102ff91906139da565b610be8565b005b34801561031257600080fd5b5061032d600480360381019061032891906139da565b610df6565b60405161033a9190613fea565b60405180910390f35b34801561034f57600080fd5b5061036a6004803603810190610365919061383d565b610e7b565b005b34801561037857600080fd5b50610381610f93565b60405161038e91906143ab565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b99190613991565b610f99565b005b3480156103cc57600080fd5b506103e760048036038101906103e291906138dd565b61102f565b005b3480156103f557600080fd5b506103fe6110c8565b60405161040b91906143ab565b60405180910390f35b34801561042057600080fd5b5061043b600480360381019061043691906136ba565b6110d9565b60405161044891906143ab565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190613727565b6110f1565b005b34801561048657600080fd5b5061048f611151565b60405161049c9190614073565b60405180910390f35b3480156104b157600080fd5b506104ba611164565b6040516104c7919061408e565b60405180910390f35b3480156104dc57600080fd5b506104e561116a565b005b3480156104f357600080fd5b5061050e60048036038101906105099190613727565b611266565b005b34801561051c57600080fd5b50610537600480360381019061053291906136ba565b611286565b6040516105449190614051565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f91906139da565b611391565b005b34801561058257600080fd5b5061059d60048036038101906105989190613991565b611417565b005b3480156105ab57600080fd5b506105b46114ad565b6040516105c19190614073565b60405180910390f35b3480156105d657600080fd5b506105df6114c0565b6040516105ec91906140a9565b60405180910390f35b34801561060157600080fd5b5061060a61154e565b6040516106179190614073565b60405180910390f35b34801561062c57600080fd5b50610635611561565b60405161064291906140a9565b60405180910390f35b34801561065757600080fd5b50610672600480360381019061066d91906139da565b6115ef565b60405161067f9190613fea565b60405180910390f35b34801561069457600080fd5b506106af60048036038101906106aa91906139da565b6116a1565b005b3480156106bd57600080fd5b506106d860048036038101906106d391906136ba565b611727565b6040516106e591906143ab565b60405180910390f35b3480156106fa57600080fd5b506107036117df565b005b34801561071157600080fd5b5061072c60048036038101906107279190613991565b611867565b005b34801561073a57600080fd5b506107436118fd565b6040516107509190613fea565b60405180910390f35b34801561076557600080fd5b5061076e611927565b60405161077b91906143ab565b60405180910390f35b34801561079057600080fd5b5061079961192d565b6040516107a691906140a9565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d191906137fd565b6119bf565b005b3480156107e457600080fd5b506107ed6119d5565b6040516107fa91906140a9565b60405180910390f35b34801561080f57600080fd5b5061082a600480360381019061082591906139da565b611a63565b005b34801561083857600080fd5b50610853600480360381019061084e91906138dd565b611ae9565b005b34801561086157600080fd5b5061087c6004803603810190610877919061377a565b611b82565b005b34801561088a57600080fd5b50610893611be4565b6040516108a091906143ab565b60405180910390f35b3480156108b557600080fd5b506108d060048036038101906108cb91906139da565b611bea565b6040516108dd91906140a9565b60405180910390f35b3480156108f257600080fd5b5061090d600480360381019061090891906139da565b611d43565b005b34801561091b57600080fd5b50610924611dc9565b60405161093191906143ab565b60405180910390f35b34801561094657600080fd5b50610961600480360381019061095c91906136ba565b611dcf565b60405161096e9190614073565b60405180910390f35b610991600480360381019061098c919061387d565b611def565b005b34801561099f57600080fd5b506109ba60048036038101906109b591906138dd565b61219d565b005b3480156109c857600080fd5b506109e360048036038101906109de919061390a565b612236565b005b3480156109f157600080fd5b50610a0c6004803603810190610a0791906136e7565b6122bc565b604051610a199190614073565b60405180910390f35b348015610a2e57600080fd5b50610a496004803603810190610a449190613a07565b612350565b005b348015610a5757600080fd5b50610a726004803603810190610a6d91906136ba565b61251b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b3f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b4f5750610b4e82612613565b5b9050919050565b606060008054610b65906146be565b80601f0160208091040260200160405190810160405280929190818152602001828054610b91906146be565b8015610bde5780601f10610bb357610100808354040283529160200191610bde565b820191906000526020600020905b815481529060010190602001808311610bc157829003601f168201915b5050505050905090565b80600081118015610bfb5750600d548111155b610c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c319061414b565b60405180910390fd5b600c5481610c48600761267d565b610c5291906144e9565b1115610c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8a9061432b565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e548282610ce691906144e9565b1115610d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1e9061416b565b60405180910390fd5b60011515601060029054906101000a900460ff16151514610d4757600080fd5b601060009054906101000a900460ff1615610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e906142ab565b60405180910390fd5b82600b54610da59190614570565b341015610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde9061438b565b60405180910390fd5b610df1338461268b565b505050565b6000610e01826126cb565b610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e379061426b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e86826115ef565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee9061430b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f16612737565b73ffffffffffffffffffffffffffffffffffffffff161480610f455750610f4481610f3f612737565b6122bc565b5b610f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7b906141eb565b60405180910390fd5b610f8e838361273f565b505050565b600b5481565b610fa1612737565b73ffffffffffffffffffffffffffffffffffffffff16610fbf6118fd565b73ffffffffffffffffffffffffffffffffffffffff1614611015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100c9061428b565b60405180910390fd5b806009908051906020019061102b929190613463565b5050565b611037612737565b73ffffffffffffffffffffffffffffffffffffffff166110556118fd565b73ffffffffffffffffffffffffffffffffffffffff16146110ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a29061428b565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b60006110d4600761267d565b905090565b60126020528060005260406000206000915090505481565b6111026110fc612737565b826127f8565b611141576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111389061434b565b60405180910390fd5b61114c8383836128d6565b505050565b601060029054906101000a900460ff1681565b600f5481565b611172612737565b73ffffffffffffffffffffffffffffffffffffffff166111906118fd565b73ffffffffffffffffffffffffffffffffffffffff16146111e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dd9061428b565b60405180910390fd5b60006111f06118fd565b73ffffffffffffffffffffffffffffffffffffffff164760405161121390613fd5565b60006040518083038185875af1925050503d8060008114611250576040519150601f19603f3d011682016040523d82523d6000602084013e611255565b606091505b505090508061126357600080fd5b50565b61128183838360405180602001604052806000815250611b82565b505050565b6060600061129383611727565b905060008167ffffffffffffffff8111156112b1576112b061487b565b5b6040519080825280602002602001820160405280156112df5781602001602082028036833780820191505090505b50905060006001905060005b83811080156112fc5750600c548211155b1561138557600061130c836115ef565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561137157828483815181106113565761135561484c565b5b602002602001018181525050818061136d90614721565b9250505b828061137c90614721565b935050506112eb565b82945050505050919050565b611399612737565b73ffffffffffffffffffffffffffffffffffffffff166113b76118fd565b73ffffffffffffffffffffffffffffffffffffffff161461140d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114049061428b565b60405180910390fd5b80600b8190555050565b61141f612737565b73ffffffffffffffffffffffffffffffffffffffff1661143d6118fd565b73ffffffffffffffffffffffffffffffffffffffff1614611493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148a9061428b565b60405180910390fd5b80600a90805190602001906114a9929190613463565b5050565b601060019054906101000a900460ff1681565b600980546114cd906146be565b80601f01602080910402602001604051908101604052809291908181526020018280546114f9906146be565b80156115465780601f1061151b57610100808354040283529160200191611546565b820191906000526020600020905b81548152906001019060200180831161152957829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b6008805461156e906146be565b80601f016020809104026020016040519081016040528092919081815260200182805461159a906146be565b80156115e75780601f106115bc576101008083540402835291602001916115e7565b820191906000526020600020905b8154815290600101906020018083116115ca57829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168f9061422b565b60405180910390fd5b80915050919050565b6116a9612737565b73ffffffffffffffffffffffffffffffffffffffff166116c76118fd565b73ffffffffffffffffffffffffffffffffffffffff161461171d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117149061428b565b60405180910390fd5b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f9061420b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117e7612737565b73ffffffffffffffffffffffffffffffffffffffff166118056118fd565b73ffffffffffffffffffffffffffffffffffffffff161461185b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118529061428b565b60405180910390fd5b6118656000612b32565b565b61186f612737565b73ffffffffffffffffffffffffffffffffffffffff1661188d6118fd565b73ffffffffffffffffffffffffffffffffffffffff16146118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da9061428b565b60405180910390fd5b80600890805190602001906118f9929190613463565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b60606001805461193c906146be565b80601f0160208091040260200160405190810160405280929190818152602001828054611968906146be565b80156119b55780601f1061198a576101008083540402835291602001916119b5565b820191906000526020600020905b81548152906001019060200180831161199857829003601f168201915b5050505050905090565b6119d16119ca612737565b8383612bf8565b5050565b600a80546119e2906146be565b80601f0160208091040260200160405190810160405280929190818152602001828054611a0e906146be565b8015611a5b5780601f10611a3057610100808354040283529160200191611a5b565b820191906000526020600020905b815481529060010190602001808311611a3e57829003601f168201915b505050505081565b611a6b612737565b73ffffffffffffffffffffffffffffffffffffffff16611a896118fd565b73ffffffffffffffffffffffffffffffffffffffff1614611adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad69061428b565b60405180910390fd5b80600d8190555050565b611af1612737565b73ffffffffffffffffffffffffffffffffffffffff16611b0f6118fd565b73ffffffffffffffffffffffffffffffffffffffff1614611b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5c9061428b565b60405180910390fd5b80601060026101000a81548160ff02191690831515021790555050565b611b93611b8d612737565b836127f8565b611bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc99061434b565b60405180910390fd5b611bde84848484612d65565b50505050565b600e5481565b6060611bf5826126cb565b611c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2b906142eb565b60405180910390fd5b60001515601060019054906101000a900460ff1615151415611ce257600a8054611c5d906146be565b80601f0160208091040260200160405190810160405280929190818152602001828054611c89906146be565b8015611cd65780601f10611cab57610100808354040283529160200191611cd6565b820191906000526020600020905b815481529060010190602001808311611cb957829003601f168201915b50505050509050611d3e565b6000611cec612dc1565b90506000815111611d0c5760405180602001604052806000815250611d3a565b80611d1684612e53565b6009604051602001611d2a93929190613fa4565b6040516020818303038152906040525b9150505b919050565b611d4b612737565b73ffffffffffffffffffffffffffffffffffffffff16611d696118fd565b73ffffffffffffffffffffffffffffffffffffffff1614611dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db69061428b565b60405180910390fd5b80600e8190555050565b600c5481565b60116020528060005260406000206000915054906101000a900460ff1681565b80600081118015611e025750600d548111155b611e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e389061414b565b60405180910390fd5b600c5481611e4f600761267d565b611e5991906144e9565b1115611e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e919061432b565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e548282611eed91906144e9565b1115611f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f259061416b565b60405180910390fd5b601060009054906101000a900460ff1615611f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f75906142ab565b60405180910390fd5b60001515601060029054906101000a900460ff16151514611f9e57600080fd5b82600b54611fac9190614570565b341015611fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe59061438b565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561207b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612072906140cb565b60405180910390fd5b60003360405160200161208e9190613f89565b6040516020818303038152906040528051906020012090506120f4868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5483612fb4565b612133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212a9061436b565b60405180910390fd5b6001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612195338561268b565b505050505050565b6121a5612737565b73ffffffffffffffffffffffffffffffffffffffff166121c36118fd565b73ffffffffffffffffffffffffffffffffffffffff1614612219576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122109061428b565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b61223e612737565b73ffffffffffffffffffffffffffffffffffffffff1661225c6118fd565b73ffffffffffffffffffffffffffffffffffffffff16146122b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a99061428b565b60405180910390fd5b80600f8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156123635750600d548111155b6123a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123999061414b565b60405180910390fd5b600c54816123b0600761267d565b6123ba91906144e9565b11156123fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f29061432b565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e54828261244e91906144e9565b111561248f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124869061416b565b60405180910390fd5b612497612737565b73ffffffffffffffffffffffffffffffffffffffff166124b56118fd565b73ffffffffffffffffffffffffffffffffffffffff161461250b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125029061428b565b60405180910390fd5b612515838561268b565b50505050565b612523612737565b73ffffffffffffffffffffffffffffffffffffffff166125416118fd565b73ffffffffffffffffffffffffffffffffffffffff1614612597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258e9061428b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fe9061410b565b60405180910390fd5b61261081612b32565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081600001549050919050565b60005b818110156126c6576126a06007612fcb565b6126b3836126ae600761267d565b612fe1565b80806126be90614721565b91505061268e565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127b2836115ef565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612803826126cb565b612842576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612839906141cb565b60405180910390fd5b600061284d836115ef565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128bc57508373ffffffffffffffffffffffffffffffffffffffff166128a484610df6565b73ffffffffffffffffffffffffffffffffffffffff16145b806128cd57506128cc81856122bc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128f6826115ef565b73ffffffffffffffffffffffffffffffffffffffff161461294c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612943906142cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b39061418b565b60405180910390fd5b6129c7838383612fff565b6129d260008261273f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a2291906145ca565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a7991906144e9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5e906141ab565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612d589190614073565b60405180910390a3505050565b612d708484846128d6565b612d7c84848484613004565b612dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db2906140eb565b60405180910390fd5b50505050565b606060088054612dd0906146be565b80601f0160208091040260200160405190810160405280929190818152602001828054612dfc906146be565b8015612e495780601f10612e1e57610100808354040283529160200191612e49565b820191906000526020600020905b815481529060010190602001808311612e2c57829003601f168201915b5050505050905090565b60606000821415612e9b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612faf565b600082905060005b60008214612ecd578080612eb690614721565b915050600a82612ec6919061453f565b9150612ea3565b60008167ffffffffffffffff811115612ee957612ee861487b565b5b6040519080825280601f01601f191660200182016040528015612f1b5781602001600182028036833780820191505090505b5090505b60008514612fa857600182612f3491906145ca565b9150600a85612f43919061478e565b6030612f4f91906144e9565b60f81b818381518110612f6557612f6461484c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fa1919061453f565b9450612f1f565b8093505050505b919050565b600082612fc1858461319b565b1490509392505050565b6001816000016000828254019250508190555050565b612ffb828260405180602001604052806000815250613210565b5050565b505050565b60006130258473ffffffffffffffffffffffffffffffffffffffff1661326b565b1561318e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261304e612737565b8786866040518563ffffffff1660e01b81526004016130709493929190614005565b602060405180830381600087803b15801561308a57600080fd5b505af19250505080156130bb57506040513d601f19601f820116820180604052508101906130b89190613964565b60015b61313e573d80600081146130eb576040519150601f19603f3d011682016040523d82523d6000602084013e6130f0565b606091505b50600081511415613136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312d906140eb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613193565b600190505b949350505050565b60008082905060005b84518110156132055760008582815181106131c2576131c161484c565b5b602002602001015190508083116131e4576131dd838261327e565b92506131f1565b6131ee818461327e565b92505b5080806131fd90614721565b9150506131a4565b508091505092915050565b61321a8383613295565b6132276000848484613004565b613266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325d906140eb565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600082600052816020526040600020905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132fc9061424b565b60405180910390fd5b61330e816126cb565b1561334e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133459061412b565b60405180910390fd5b61335a60008383612fff565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133aa91906144e9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461346f906146be565b90600052602060002090601f01602090048101928261349157600085556134d8565b82601f106134aa57805160ff19168380011785556134d8565b828001600101855582156134d8579182015b828111156134d75782518255916020019190600101906134bc565b5b5090506134e591906134e9565b5090565b5b808211156135025760008160009055506001016134ea565b5090565b6000613519613514846143eb565b6143c6565b905082815260208101848484011115613535576135346148b9565b5b61354084828561467c565b509392505050565b600061355b6135568461441c565b6143c6565b905082815260208101848484011115613577576135766148b9565b5b61358284828561467c565b509392505050565b60008135905061359981614e60565b92915050565b60008083601f8401126135b5576135b46148af565b5b8235905067ffffffffffffffff8111156135d2576135d16148aa565b5b6020830191508360208202830111156135ee576135ed6148b4565b5b9250929050565b60008135905061360481614e77565b92915050565b60008135905061361981614e8e565b92915050565b60008135905061362e81614ea5565b92915050565b60008151905061364381614ea5565b92915050565b600082601f83011261365e5761365d6148af565b5b813561366e848260208601613506565b91505092915050565b600082601f83011261368c5761368b6148af565b5b813561369c848260208601613548565b91505092915050565b6000813590506136b481614ebc565b92915050565b6000602082840312156136d0576136cf6148c3565b5b60006136de8482850161358a565b91505092915050565b600080604083850312156136fe576136fd6148c3565b5b600061370c8582860161358a565b925050602061371d8582860161358a565b9150509250929050565b6000806000606084860312156137405761373f6148c3565b5b600061374e8682870161358a565b935050602061375f8682870161358a565b9250506040613770868287016136a5565b9150509250925092565b60008060008060808587031215613794576137936148c3565b5b60006137a28782880161358a565b94505060206137b38782880161358a565b93505060406137c4878288016136a5565b925050606085013567ffffffffffffffff8111156137e5576137e46148be565b5b6137f187828801613649565b91505092959194509250565b60008060408385031215613814576138136148c3565b5b60006138228582860161358a565b9250506020613833858286016135f5565b9150509250929050565b60008060408385031215613854576138536148c3565b5b60006138628582860161358a565b9250506020613873858286016136a5565b9150509250929050565b600080600060408486031215613896576138956148c3565b5b600084013567ffffffffffffffff8111156138b4576138b36148be565b5b6138c08682870161359f565b935093505060206138d3868287016136a5565b9150509250925092565b6000602082840312156138f3576138f26148c3565b5b6000613901848285016135f5565b91505092915050565b6000602082840312156139205761391f6148c3565b5b600061392e8482850161360a565b91505092915050565b60006020828403121561394d5761394c6148c3565b5b600061395b8482850161361f565b91505092915050565b60006020828403121561397a576139796148c3565b5b600061398884828501613634565b91505092915050565b6000602082840312156139a7576139a66148c3565b5b600082013567ffffffffffffffff8111156139c5576139c46148be565b5b6139d184828501613677565b91505092915050565b6000602082840312156139f0576139ef6148c3565b5b60006139fe848285016136a5565b91505092915050565b60008060408385031215613a1e57613a1d6148c3565b5b6000613a2c858286016136a5565b9250506020613a3d8582860161358a565b9150509250929050565b6000613a538383613f6b565b60208301905092915050565b613a68816145fe565b82525050565b613a7f613a7a826145fe565b61476a565b82525050565b6000613a9082614472565b613a9a81856144a0565b9350613aa58361444d565b8060005b83811015613ad6578151613abd8882613a47565b9750613ac883614493565b925050600181019050613aa9565b5085935050505092915050565b613aec81614610565b82525050565b613afb8161461c565b82525050565b6000613b0c8261447d565b613b1681856144b1565b9350613b2681856020860161468b565b613b2f816148c8565b840191505092915050565b6000613b4582614488565b613b4f81856144cd565b9350613b5f81856020860161468b565b613b68816148c8565b840191505092915050565b6000613b7e82614488565b613b8881856144de565b9350613b9881856020860161468b565b80840191505092915050565b60008154613bb1816146be565b613bbb81866144de565b94506001821660008114613bd65760018114613be757613c1a565b60ff19831686528186019350613c1a565b613bf08561445d565b60005b83811015613c1257815481890152600182019150602081019050613bf3565b838801955050505b50505092915050565b6000613c30601c836144cd565b9150613c3b826148e6565b602082019050919050565b6000613c536032836144cd565b9150613c5e8261490f565b604082019050919050565b6000613c766026836144cd565b9150613c818261495e565b604082019050919050565b6000613c99601c836144cd565b9150613ca4826149ad565b602082019050919050565b6000613cbc6014836144cd565b9150613cc7826149d6565b602082019050919050565b6000613cdf601c836144cd565b9150613cea826149ff565b602082019050919050565b6000613d026024836144cd565b9150613d0d82614a28565b604082019050919050565b6000613d256019836144cd565b9150613d3082614a77565b602082019050919050565b6000613d48602c836144cd565b9150613d5382614aa0565b604082019050919050565b6000613d6b6038836144cd565b9150613d7682614aef565b604082019050919050565b6000613d8e602a836144cd565b9150613d9982614b3e565b604082019050919050565b6000613db16029836144cd565b9150613dbc82614b8d565b604082019050919050565b6000613dd46020836144cd565b9150613ddf82614bdc565b602082019050919050565b6000613df7602c836144cd565b9150613e0282614c05565b604082019050919050565b6000613e1a6020836144cd565b9150613e2582614c54565b602082019050919050565b6000613e3d6017836144cd565b9150613e4882614c7d565b602082019050919050565b6000613e606029836144cd565b9150613e6b82614ca6565b604082019050919050565b6000613e83602f836144cd565b9150613e8e82614cf5565b604082019050919050565b6000613ea66021836144cd565b9150613eb182614d44565b604082019050919050565b6000613ec96000836144c2565b9150613ed482614d93565b600082019050919050565b6000613eec6014836144cd565b9150613ef782614d96565b602082019050919050565b6000613f0f6031836144cd565b9150613f1a82614dbf565b604082019050919050565b6000613f32600e836144cd565b9150613f3d82614e0e565b602082019050919050565b6000613f556013836144cd565b9150613f6082614e37565b602082019050919050565b613f7481614672565b82525050565b613f8381614672565b82525050565b6000613f958284613a6e565b60148201915081905092915050565b6000613fb08286613b73565b9150613fbc8285613b73565b9150613fc88284613ba4565b9150819050949350505050565b6000613fe082613ebc565b9150819050919050565b6000602082019050613fff6000830184613a5f565b92915050565b600060808201905061401a6000830187613a5f565b6140276020830186613a5f565b6140346040830185613f7a565b81810360608301526140468184613b01565b905095945050505050565b6000602082019050818103600083015261406b8184613a85565b905092915050565b60006020820190506140886000830184613ae3565b92915050565b60006020820190506140a36000830184613af2565b92915050565b600060208201905081810360008301526140c38184613b3a565b905092915050565b600060208201905081810360008301526140e481613c23565b9050919050565b6000602082019050818103600083015261410481613c46565b9050919050565b6000602082019050818103600083015261412481613c69565b9050919050565b6000602082019050818103600083015261414481613c8c565b9050919050565b6000602082019050818103600083015261416481613caf565b9050919050565b6000602082019050818103600083015261418481613cd2565b9050919050565b600060208201905081810360008301526141a481613cf5565b9050919050565b600060208201905081810360008301526141c481613d18565b9050919050565b600060208201905081810360008301526141e481613d3b565b9050919050565b6000602082019050818103600083015261420481613d5e565b9050919050565b6000602082019050818103600083015261422481613d81565b9050919050565b6000602082019050818103600083015261424481613da4565b9050919050565b6000602082019050818103600083015261426481613dc7565b9050919050565b6000602082019050818103600083015261428481613dea565b9050919050565b600060208201905081810360008301526142a481613e0d565b9050919050565b600060208201905081810360008301526142c481613e30565b9050919050565b600060208201905081810360008301526142e481613e53565b9050919050565b6000602082019050818103600083015261430481613e76565b9050919050565b6000602082019050818103600083015261432481613e99565b9050919050565b6000602082019050818103600083015261434481613edf565b9050919050565b6000602082019050818103600083015261436481613f02565b9050919050565b6000602082019050818103600083015261438481613f25565b9050919050565b600060208201905081810360008301526143a481613f48565b9050919050565b60006020820190506143c06000830184613f7a565b92915050565b60006143d06143e1565b90506143dc82826146f0565b919050565b6000604051905090565b600067ffffffffffffffff8211156144065761440561487b565b5b61440f826148c8565b9050602081019050919050565b600067ffffffffffffffff8211156144375761443661487b565b5b614440826148c8565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006144f482614672565b91506144ff83614672565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614534576145336147bf565b5b828201905092915050565b600061454a82614672565b915061455583614672565b925082614565576145646147ee565b5b828204905092915050565b600061457b82614672565b915061458683614672565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145bf576145be6147bf565b5b828202905092915050565b60006145d582614672565b91506145e083614672565b9250828210156145f3576145f26147bf565b5b828203905092915050565b600061460982614652565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156146a957808201518184015260208101905061468e565b838111156146b8576000848401525b50505050565b600060028204905060018216806146d657607f821691505b602082108114156146ea576146e961481d565b5b50919050565b6146f9826148c8565b810181811067ffffffffffffffff821117156147185761471761487b565b5b80604052505050565b600061472c82614672565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561475f5761475e6147bf565b5b600182019050919050565b60006147758261477c565b9050919050565b6000614787826148d9565b9050919050565b600061479982614672565b91506147a483614672565b9250826147b4576147b36147ee565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f416464726573732068617320616c726561647920636c61696d65642e00000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f662e000000000000000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b614e69816145fe565b8114614e7457600080fd5b50565b614e8081614610565b8114614e8b57600080fd5b50565b614e978161461c565b8114614ea257600080fd5b50565b614eae81614626565b8114614eb957600080fd5b50565b614ec581614672565b8114614ed057600080fd5b5056fea2646970667358221220d6b885d2fcb99cdf47e80c08459b16376e84bd3ebae9fc5d53e2d6c00e69a80364736f6c63430008070033697066733a2f2f516d657756533831424e616338536768676b624572376254545571785861364d725877366776764a4773716a424c2f756e72657665616c65642e6a736f6e

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80636f8b44b01161014f578063b88d4fde116100c1578063dd6cede71161007a578063dd6cede714610977578063e0a8085314610993578063e858ad03146109bc578063e985e9c5146109e5578063efbd73f414610a22578063f2fde38b14610a4b5761027d565b8063b88d4fde14610855578063ba7d2c761461087e578063c87b56dd146108a9578063d0eb26b0146108e6578063d5abeb011461090f578063db4bec441461093a5761027d565b806394354fd01161011357806394354fd01461075957806395d89b4114610784578063a22cb465146107af578063a45ba8e7146107d8578063b071401b14610803578063b69355011461082c5761027d565b80636f8b44b01461068857806370a08231146106b1578063715018a6146106ee5780637ec4a659146107055780638da5cb5b1461072e5761027d565b806326092b83116101f35780634fdd43cb116101ac5780634fdd43cb14610576578063518302271461059f5780635503a0e8146105ca5780635c975abb146105f557806362b99ad4146106205780636352211e1461064b5761027d565b806326092b831461047a5780632eb4a7ab146104a55780633ccfd60b146104d057806342842e0e146104e7578063438b63001461051057806344a0d68a1461054d5761027d565b806313faede61161024557806313faede61461036c57806316ba10e01461039757806316c38b3c146103c057806318160ddd146103e957806318cae2691461041457806323b872dd146104515761027d565b806301ffc9a71461028257806306fdde03146102bf57806307883703146102ea578063081812fc14610306578063095ea7b314610343575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613937565b610a74565b6040516102b69190614073565b60405180910390f35b3480156102cb57600080fd5b506102d4610b56565b6040516102e191906140a9565b60405180910390f35b61030460048036038101906102ff91906139da565b610be8565b005b34801561031257600080fd5b5061032d600480360381019061032891906139da565b610df6565b60405161033a9190613fea565b60405180910390f35b34801561034f57600080fd5b5061036a6004803603810190610365919061383d565b610e7b565b005b34801561037857600080fd5b50610381610f93565b60405161038e91906143ab565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b99190613991565b610f99565b005b3480156103cc57600080fd5b506103e760048036038101906103e291906138dd565b61102f565b005b3480156103f557600080fd5b506103fe6110c8565b60405161040b91906143ab565b60405180910390f35b34801561042057600080fd5b5061043b600480360381019061043691906136ba565b6110d9565b60405161044891906143ab565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190613727565b6110f1565b005b34801561048657600080fd5b5061048f611151565b60405161049c9190614073565b60405180910390f35b3480156104b157600080fd5b506104ba611164565b6040516104c7919061408e565b60405180910390f35b3480156104dc57600080fd5b506104e561116a565b005b3480156104f357600080fd5b5061050e60048036038101906105099190613727565b611266565b005b34801561051c57600080fd5b50610537600480360381019061053291906136ba565b611286565b6040516105449190614051565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f91906139da565b611391565b005b34801561058257600080fd5b5061059d60048036038101906105989190613991565b611417565b005b3480156105ab57600080fd5b506105b46114ad565b6040516105c19190614073565b60405180910390f35b3480156105d657600080fd5b506105df6114c0565b6040516105ec91906140a9565b60405180910390f35b34801561060157600080fd5b5061060a61154e565b6040516106179190614073565b60405180910390f35b34801561062c57600080fd5b50610635611561565b60405161064291906140a9565b60405180910390f35b34801561065757600080fd5b50610672600480360381019061066d91906139da565b6115ef565b60405161067f9190613fea565b60405180910390f35b34801561069457600080fd5b506106af60048036038101906106aa91906139da565b6116a1565b005b3480156106bd57600080fd5b506106d860048036038101906106d391906136ba565b611727565b6040516106e591906143ab565b60405180910390f35b3480156106fa57600080fd5b506107036117df565b005b34801561071157600080fd5b5061072c60048036038101906107279190613991565b611867565b005b34801561073a57600080fd5b506107436118fd565b6040516107509190613fea565b60405180910390f35b34801561076557600080fd5b5061076e611927565b60405161077b91906143ab565b60405180910390f35b34801561079057600080fd5b5061079961192d565b6040516107a691906140a9565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d191906137fd565b6119bf565b005b3480156107e457600080fd5b506107ed6119d5565b6040516107fa91906140a9565b60405180910390f35b34801561080f57600080fd5b5061082a600480360381019061082591906139da565b611a63565b005b34801561083857600080fd5b50610853600480360381019061084e91906138dd565b611ae9565b005b34801561086157600080fd5b5061087c6004803603810190610877919061377a565b611b82565b005b34801561088a57600080fd5b50610893611be4565b6040516108a091906143ab565b60405180910390f35b3480156108b557600080fd5b506108d060048036038101906108cb91906139da565b611bea565b6040516108dd91906140a9565b60405180910390f35b3480156108f257600080fd5b5061090d600480360381019061090891906139da565b611d43565b005b34801561091b57600080fd5b50610924611dc9565b60405161093191906143ab565b60405180910390f35b34801561094657600080fd5b50610961600480360381019061095c91906136ba565b611dcf565b60405161096e9190614073565b60405180910390f35b610991600480360381019061098c919061387d565b611def565b005b34801561099f57600080fd5b506109ba60048036038101906109b591906138dd565b61219d565b005b3480156109c857600080fd5b506109e360048036038101906109de919061390a565b612236565b005b3480156109f157600080fd5b50610a0c6004803603810190610a0791906136e7565b6122bc565b604051610a199190614073565b60405180910390f35b348015610a2e57600080fd5b50610a496004803603810190610a449190613a07565b612350565b005b348015610a5757600080fd5b50610a726004803603810190610a6d91906136ba565b61251b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b3f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b4f5750610b4e82612613565b5b9050919050565b606060008054610b65906146be565b80601f0160208091040260200160405190810160405280929190818152602001828054610b91906146be565b8015610bde5780601f10610bb357610100808354040283529160200191610bde565b820191906000526020600020905b815481529060010190602001808311610bc157829003601f168201915b5050505050905090565b80600081118015610bfb5750600d548111155b610c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c319061414b565b60405180910390fd5b600c5481610c48600761267d565b610c5291906144e9565b1115610c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8a9061432b565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e548282610ce691906144e9565b1115610d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1e9061416b565b60405180910390fd5b60011515601060029054906101000a900460ff16151514610d4757600080fd5b601060009054906101000a900460ff1615610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e906142ab565b60405180910390fd5b82600b54610da59190614570565b341015610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde9061438b565b60405180910390fd5b610df1338461268b565b505050565b6000610e01826126cb565b610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e379061426b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e86826115ef565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee9061430b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f16612737565b73ffffffffffffffffffffffffffffffffffffffff161480610f455750610f4481610f3f612737565b6122bc565b5b610f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7b906141eb565b60405180910390fd5b610f8e838361273f565b505050565b600b5481565b610fa1612737565b73ffffffffffffffffffffffffffffffffffffffff16610fbf6118fd565b73ffffffffffffffffffffffffffffffffffffffff1614611015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100c9061428b565b60405180910390fd5b806009908051906020019061102b929190613463565b5050565b611037612737565b73ffffffffffffffffffffffffffffffffffffffff166110556118fd565b73ffffffffffffffffffffffffffffffffffffffff16146110ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a29061428b565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b60006110d4600761267d565b905090565b60126020528060005260406000206000915090505481565b6111026110fc612737565b826127f8565b611141576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111389061434b565b60405180910390fd5b61114c8383836128d6565b505050565b601060029054906101000a900460ff1681565b600f5481565b611172612737565b73ffffffffffffffffffffffffffffffffffffffff166111906118fd565b73ffffffffffffffffffffffffffffffffffffffff16146111e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dd9061428b565b60405180910390fd5b60006111f06118fd565b73ffffffffffffffffffffffffffffffffffffffff164760405161121390613fd5565b60006040518083038185875af1925050503d8060008114611250576040519150601f19603f3d011682016040523d82523d6000602084013e611255565b606091505b505090508061126357600080fd5b50565b61128183838360405180602001604052806000815250611b82565b505050565b6060600061129383611727565b905060008167ffffffffffffffff8111156112b1576112b061487b565b5b6040519080825280602002602001820160405280156112df5781602001602082028036833780820191505090505b50905060006001905060005b83811080156112fc5750600c548211155b1561138557600061130c836115ef565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561137157828483815181106113565761135561484c565b5b602002602001018181525050818061136d90614721565b9250505b828061137c90614721565b935050506112eb565b82945050505050919050565b611399612737565b73ffffffffffffffffffffffffffffffffffffffff166113b76118fd565b73ffffffffffffffffffffffffffffffffffffffff161461140d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114049061428b565b60405180910390fd5b80600b8190555050565b61141f612737565b73ffffffffffffffffffffffffffffffffffffffff1661143d6118fd565b73ffffffffffffffffffffffffffffffffffffffff1614611493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148a9061428b565b60405180910390fd5b80600a90805190602001906114a9929190613463565b5050565b601060019054906101000a900460ff1681565b600980546114cd906146be565b80601f01602080910402602001604051908101604052809291908181526020018280546114f9906146be565b80156115465780601f1061151b57610100808354040283529160200191611546565b820191906000526020600020905b81548152906001019060200180831161152957829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b6008805461156e906146be565b80601f016020809104026020016040519081016040528092919081815260200182805461159a906146be565b80156115e75780601f106115bc576101008083540402835291602001916115e7565b820191906000526020600020905b8154815290600101906020018083116115ca57829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168f9061422b565b60405180910390fd5b80915050919050565b6116a9612737565b73ffffffffffffffffffffffffffffffffffffffff166116c76118fd565b73ffffffffffffffffffffffffffffffffffffffff161461171d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117149061428b565b60405180910390fd5b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f9061420b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117e7612737565b73ffffffffffffffffffffffffffffffffffffffff166118056118fd565b73ffffffffffffffffffffffffffffffffffffffff161461185b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118529061428b565b60405180910390fd5b6118656000612b32565b565b61186f612737565b73ffffffffffffffffffffffffffffffffffffffff1661188d6118fd565b73ffffffffffffffffffffffffffffffffffffffff16146118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da9061428b565b60405180910390fd5b80600890805190602001906118f9929190613463565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b60606001805461193c906146be565b80601f0160208091040260200160405190810160405280929190818152602001828054611968906146be565b80156119b55780601f1061198a576101008083540402835291602001916119b5565b820191906000526020600020905b81548152906001019060200180831161199857829003601f168201915b5050505050905090565b6119d16119ca612737565b8383612bf8565b5050565b600a80546119e2906146be565b80601f0160208091040260200160405190810160405280929190818152602001828054611a0e906146be565b8015611a5b5780601f10611a3057610100808354040283529160200191611a5b565b820191906000526020600020905b815481529060010190602001808311611a3e57829003601f168201915b505050505081565b611a6b612737565b73ffffffffffffffffffffffffffffffffffffffff16611a896118fd565b73ffffffffffffffffffffffffffffffffffffffff1614611adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad69061428b565b60405180910390fd5b80600d8190555050565b611af1612737565b73ffffffffffffffffffffffffffffffffffffffff16611b0f6118fd565b73ffffffffffffffffffffffffffffffffffffffff1614611b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5c9061428b565b60405180910390fd5b80601060026101000a81548160ff02191690831515021790555050565b611b93611b8d612737565b836127f8565b611bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc99061434b565b60405180910390fd5b611bde84848484612d65565b50505050565b600e5481565b6060611bf5826126cb565b611c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2b906142eb565b60405180910390fd5b60001515601060019054906101000a900460ff1615151415611ce257600a8054611c5d906146be565b80601f0160208091040260200160405190810160405280929190818152602001828054611c89906146be565b8015611cd65780601f10611cab57610100808354040283529160200191611cd6565b820191906000526020600020905b815481529060010190602001808311611cb957829003601f168201915b50505050509050611d3e565b6000611cec612dc1565b90506000815111611d0c5760405180602001604052806000815250611d3a565b80611d1684612e53565b6009604051602001611d2a93929190613fa4565b6040516020818303038152906040525b9150505b919050565b611d4b612737565b73ffffffffffffffffffffffffffffffffffffffff16611d696118fd565b73ffffffffffffffffffffffffffffffffffffffff1614611dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db69061428b565b60405180910390fd5b80600e8190555050565b600c5481565b60116020528060005260406000206000915054906101000a900460ff1681565b80600081118015611e025750600d548111155b611e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e389061414b565b60405180910390fd5b600c5481611e4f600761267d565b611e5991906144e9565b1115611e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e919061432b565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e548282611eed91906144e9565b1115611f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f259061416b565b60405180910390fd5b601060009054906101000a900460ff1615611f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f75906142ab565b60405180910390fd5b60001515601060029054906101000a900460ff16151514611f9e57600080fd5b82600b54611fac9190614570565b341015611fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe59061438b565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561207b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612072906140cb565b60405180910390fd5b60003360405160200161208e9190613f89565b6040516020818303038152906040528051906020012090506120f4868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5483612fb4565b612133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212a9061436b565b60405180910390fd5b6001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612195338561268b565b505050505050565b6121a5612737565b73ffffffffffffffffffffffffffffffffffffffff166121c36118fd565b73ffffffffffffffffffffffffffffffffffffffff1614612219576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122109061428b565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b61223e612737565b73ffffffffffffffffffffffffffffffffffffffff1661225c6118fd565b73ffffffffffffffffffffffffffffffffffffffff16146122b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a99061428b565b60405180910390fd5b80600f8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156123635750600d548111155b6123a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123999061414b565b60405180910390fd5b600c54816123b0600761267d565b6123ba91906144e9565b11156123fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f29061432b565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e54828261244e91906144e9565b111561248f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124869061416b565b60405180910390fd5b612497612737565b73ffffffffffffffffffffffffffffffffffffffff166124b56118fd565b73ffffffffffffffffffffffffffffffffffffffff161461250b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125029061428b565b60405180910390fd5b612515838561268b565b50505050565b612523612737565b73ffffffffffffffffffffffffffffffffffffffff166125416118fd565b73ffffffffffffffffffffffffffffffffffffffff1614612597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258e9061428b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fe9061410b565b60405180910390fd5b61261081612b32565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081600001549050919050565b60005b818110156126c6576126a06007612fcb565b6126b3836126ae600761267d565b612fe1565b80806126be90614721565b91505061268e565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127b2836115ef565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612803826126cb565b612842576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612839906141cb565b60405180910390fd5b600061284d836115ef565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128bc57508373ffffffffffffffffffffffffffffffffffffffff166128a484610df6565b73ffffffffffffffffffffffffffffffffffffffff16145b806128cd57506128cc81856122bc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128f6826115ef565b73ffffffffffffffffffffffffffffffffffffffff161461294c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612943906142cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b39061418b565b60405180910390fd5b6129c7838383612fff565b6129d260008261273f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a2291906145ca565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a7991906144e9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5e906141ab565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612d589190614073565b60405180910390a3505050565b612d708484846128d6565b612d7c84848484613004565b612dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db2906140eb565b60405180910390fd5b50505050565b606060088054612dd0906146be565b80601f0160208091040260200160405190810160405280929190818152602001828054612dfc906146be565b8015612e495780601f10612e1e57610100808354040283529160200191612e49565b820191906000526020600020905b815481529060010190602001808311612e2c57829003601f168201915b5050505050905090565b60606000821415612e9b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612faf565b600082905060005b60008214612ecd578080612eb690614721565b915050600a82612ec6919061453f565b9150612ea3565b60008167ffffffffffffffff811115612ee957612ee861487b565b5b6040519080825280601f01601f191660200182016040528015612f1b5781602001600182028036833780820191505090505b5090505b60008514612fa857600182612f3491906145ca565b9150600a85612f43919061478e565b6030612f4f91906144e9565b60f81b818381518110612f6557612f6461484c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fa1919061453f565b9450612f1f565b8093505050505b919050565b600082612fc1858461319b565b1490509392505050565b6001816000016000828254019250508190555050565b612ffb828260405180602001604052806000815250613210565b5050565b505050565b60006130258473ffffffffffffffffffffffffffffffffffffffff1661326b565b1561318e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261304e612737565b8786866040518563ffffffff1660e01b81526004016130709493929190614005565b602060405180830381600087803b15801561308a57600080fd5b505af19250505080156130bb57506040513d601f19601f820116820180604052508101906130b89190613964565b60015b61313e573d80600081146130eb576040519150601f19603f3d011682016040523d82523d6000602084013e6130f0565b606091505b50600081511415613136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312d906140eb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613193565b600190505b949350505050565b60008082905060005b84518110156132055760008582815181106131c2576131c161484c565b5b602002602001015190508083116131e4576131dd838261327e565b92506131f1565b6131ee818461327e565b92505b5080806131fd90614721565b9150506131a4565b508091505092915050565b61321a8383613295565b6132276000848484613004565b613266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325d906140eb565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600082600052816020526040600020905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132fc9061424b565b60405180910390fd5b61330e816126cb565b1561334e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133459061412b565b60405180910390fd5b61335a60008383612fff565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133aa91906144e9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461346f906146be565b90600052602060002090601f01602090048101928261349157600085556134d8565b82601f106134aa57805160ff19168380011785556134d8565b828001600101855582156134d8579182015b828111156134d75782518255916020019190600101906134bc565b5b5090506134e591906134e9565b5090565b5b808211156135025760008160009055506001016134ea565b5090565b6000613519613514846143eb565b6143c6565b905082815260208101848484011115613535576135346148b9565b5b61354084828561467c565b509392505050565b600061355b6135568461441c565b6143c6565b905082815260208101848484011115613577576135766148b9565b5b61358284828561467c565b509392505050565b60008135905061359981614e60565b92915050565b60008083601f8401126135b5576135b46148af565b5b8235905067ffffffffffffffff8111156135d2576135d16148aa565b5b6020830191508360208202830111156135ee576135ed6148b4565b5b9250929050565b60008135905061360481614e77565b92915050565b60008135905061361981614e8e565b92915050565b60008135905061362e81614ea5565b92915050565b60008151905061364381614ea5565b92915050565b600082601f83011261365e5761365d6148af565b5b813561366e848260208601613506565b91505092915050565b600082601f83011261368c5761368b6148af565b5b813561369c848260208601613548565b91505092915050565b6000813590506136b481614ebc565b92915050565b6000602082840312156136d0576136cf6148c3565b5b60006136de8482850161358a565b91505092915050565b600080604083850312156136fe576136fd6148c3565b5b600061370c8582860161358a565b925050602061371d8582860161358a565b9150509250929050565b6000806000606084860312156137405761373f6148c3565b5b600061374e8682870161358a565b935050602061375f8682870161358a565b9250506040613770868287016136a5565b9150509250925092565b60008060008060808587031215613794576137936148c3565b5b60006137a28782880161358a565b94505060206137b38782880161358a565b93505060406137c4878288016136a5565b925050606085013567ffffffffffffffff8111156137e5576137e46148be565b5b6137f187828801613649565b91505092959194509250565b60008060408385031215613814576138136148c3565b5b60006138228582860161358a565b9250506020613833858286016135f5565b9150509250929050565b60008060408385031215613854576138536148c3565b5b60006138628582860161358a565b9250506020613873858286016136a5565b9150509250929050565b600080600060408486031215613896576138956148c3565b5b600084013567ffffffffffffffff8111156138b4576138b36148be565b5b6138c08682870161359f565b935093505060206138d3868287016136a5565b9150509250925092565b6000602082840312156138f3576138f26148c3565b5b6000613901848285016135f5565b91505092915050565b6000602082840312156139205761391f6148c3565b5b600061392e8482850161360a565b91505092915050565b60006020828403121561394d5761394c6148c3565b5b600061395b8482850161361f565b91505092915050565b60006020828403121561397a576139796148c3565b5b600061398884828501613634565b91505092915050565b6000602082840312156139a7576139a66148c3565b5b600082013567ffffffffffffffff8111156139c5576139c46148be565b5b6139d184828501613677565b91505092915050565b6000602082840312156139f0576139ef6148c3565b5b60006139fe848285016136a5565b91505092915050565b60008060408385031215613a1e57613a1d6148c3565b5b6000613a2c858286016136a5565b9250506020613a3d8582860161358a565b9150509250929050565b6000613a538383613f6b565b60208301905092915050565b613a68816145fe565b82525050565b613a7f613a7a826145fe565b61476a565b82525050565b6000613a9082614472565b613a9a81856144a0565b9350613aa58361444d565b8060005b83811015613ad6578151613abd8882613a47565b9750613ac883614493565b925050600181019050613aa9565b5085935050505092915050565b613aec81614610565b82525050565b613afb8161461c565b82525050565b6000613b0c8261447d565b613b1681856144b1565b9350613b2681856020860161468b565b613b2f816148c8565b840191505092915050565b6000613b4582614488565b613b4f81856144cd565b9350613b5f81856020860161468b565b613b68816148c8565b840191505092915050565b6000613b7e82614488565b613b8881856144de565b9350613b9881856020860161468b565b80840191505092915050565b60008154613bb1816146be565b613bbb81866144de565b94506001821660008114613bd65760018114613be757613c1a565b60ff19831686528186019350613c1a565b613bf08561445d565b60005b83811015613c1257815481890152600182019150602081019050613bf3565b838801955050505b50505092915050565b6000613c30601c836144cd565b9150613c3b826148e6565b602082019050919050565b6000613c536032836144cd565b9150613c5e8261490f565b604082019050919050565b6000613c766026836144cd565b9150613c818261495e565b604082019050919050565b6000613c99601c836144cd565b9150613ca4826149ad565b602082019050919050565b6000613cbc6014836144cd565b9150613cc7826149d6565b602082019050919050565b6000613cdf601c836144cd565b9150613cea826149ff565b602082019050919050565b6000613d026024836144cd565b9150613d0d82614a28565b604082019050919050565b6000613d256019836144cd565b9150613d3082614a77565b602082019050919050565b6000613d48602c836144cd565b9150613d5382614aa0565b604082019050919050565b6000613d6b6038836144cd565b9150613d7682614aef565b604082019050919050565b6000613d8e602a836144cd565b9150613d9982614b3e565b604082019050919050565b6000613db16029836144cd565b9150613dbc82614b8d565b604082019050919050565b6000613dd46020836144cd565b9150613ddf82614bdc565b602082019050919050565b6000613df7602c836144cd565b9150613e0282614c05565b604082019050919050565b6000613e1a6020836144cd565b9150613e2582614c54565b602082019050919050565b6000613e3d6017836144cd565b9150613e4882614c7d565b602082019050919050565b6000613e606029836144cd565b9150613e6b82614ca6565b604082019050919050565b6000613e83602f836144cd565b9150613e8e82614cf5565b604082019050919050565b6000613ea66021836144cd565b9150613eb182614d44565b604082019050919050565b6000613ec96000836144c2565b9150613ed482614d93565b600082019050919050565b6000613eec6014836144cd565b9150613ef782614d96565b602082019050919050565b6000613f0f6031836144cd565b9150613f1a82614dbf565b604082019050919050565b6000613f32600e836144cd565b9150613f3d82614e0e565b602082019050919050565b6000613f556013836144cd565b9150613f6082614e37565b602082019050919050565b613f7481614672565b82525050565b613f8381614672565b82525050565b6000613f958284613a6e565b60148201915081905092915050565b6000613fb08286613b73565b9150613fbc8285613b73565b9150613fc88284613ba4565b9150819050949350505050565b6000613fe082613ebc565b9150819050919050565b6000602082019050613fff6000830184613a5f565b92915050565b600060808201905061401a6000830187613a5f565b6140276020830186613a5f565b6140346040830185613f7a565b81810360608301526140468184613b01565b905095945050505050565b6000602082019050818103600083015261406b8184613a85565b905092915050565b60006020820190506140886000830184613ae3565b92915050565b60006020820190506140a36000830184613af2565b92915050565b600060208201905081810360008301526140c38184613b3a565b905092915050565b600060208201905081810360008301526140e481613c23565b9050919050565b6000602082019050818103600083015261410481613c46565b9050919050565b6000602082019050818103600083015261412481613c69565b9050919050565b6000602082019050818103600083015261414481613c8c565b9050919050565b6000602082019050818103600083015261416481613caf565b9050919050565b6000602082019050818103600083015261418481613cd2565b9050919050565b600060208201905081810360008301526141a481613cf5565b9050919050565b600060208201905081810360008301526141c481613d18565b9050919050565b600060208201905081810360008301526141e481613d3b565b9050919050565b6000602082019050818103600083015261420481613d5e565b9050919050565b6000602082019050818103600083015261422481613d81565b9050919050565b6000602082019050818103600083015261424481613da4565b9050919050565b6000602082019050818103600083015261426481613dc7565b9050919050565b6000602082019050818103600083015261428481613dea565b9050919050565b600060208201905081810360008301526142a481613e0d565b9050919050565b600060208201905081810360008301526142c481613e30565b9050919050565b600060208201905081810360008301526142e481613e53565b9050919050565b6000602082019050818103600083015261430481613e76565b9050919050565b6000602082019050818103600083015261432481613e99565b9050919050565b6000602082019050818103600083015261434481613edf565b9050919050565b6000602082019050818103600083015261436481613f02565b9050919050565b6000602082019050818103600083015261438481613f25565b9050919050565b600060208201905081810360008301526143a481613f48565b9050919050565b60006020820190506143c06000830184613f7a565b92915050565b60006143d06143e1565b90506143dc82826146f0565b919050565b6000604051905090565b600067ffffffffffffffff8211156144065761440561487b565b5b61440f826148c8565b9050602081019050919050565b600067ffffffffffffffff8211156144375761443661487b565b5b614440826148c8565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006144f482614672565b91506144ff83614672565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614534576145336147bf565b5b828201905092915050565b600061454a82614672565b915061455583614672565b925082614565576145646147ee565b5b828204905092915050565b600061457b82614672565b915061458683614672565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145bf576145be6147bf565b5b828202905092915050565b60006145d582614672565b91506145e083614672565b9250828210156145f3576145f26147bf565b5b828203905092915050565b600061460982614652565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156146a957808201518184015260208101905061468e565b838111156146b8576000848401525b50505050565b600060028204905060018216806146d657607f821691505b602082108114156146ea576146e961481d565b5b50919050565b6146f9826148c8565b810181811067ffffffffffffffff821117156147185761471761487b565b5b80604052505050565b600061472c82614672565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561475f5761475e6147bf565b5b600182019050919050565b60006147758261477c565b9050919050565b6000614787826148d9565b9050919050565b600061479982614672565b91506147a483614672565b9250826147b4576147b36147ee565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f416464726573732068617320616c726561647920636c61696d65642e00000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f662e000000000000000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b614e69816145fe565b8114614e7457600080fd5b50565b614e8081614610565b8114614e8b57600080fd5b50565b614e978161461c565b8114614ea257600080fd5b50565b614eae81614626565b8114614eb957600080fd5b50565b614ec581614672565b8114614ed057600080fd5b5056fea2646970667358221220d6b885d2fcb99cdf47e80c08459b16376e84bd3ebae9fc5d53e2d6c00e69a80364736f6c63430008070033

Deployed Bytecode Sourcemap

40226:5158:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27667:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28612:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42185:281;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30171:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29694:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40503:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44323:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44429:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41494:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40854:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30921:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40764:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40669:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44920:141;;;;;;;;;;;;;:::i;:::-;;31331:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42635:635;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43863:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44079:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40731:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40425:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40701:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40392:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28306:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44708:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28036:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8655:103;;;;;;;;;;;;;:::i;:::-;;44217:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8004:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40577:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28781:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30464:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40463:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43943:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44513:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31587:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40619:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43276:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44810:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40541:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40801:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41589:590;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43776:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44604:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30690:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42474:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8913:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27667:305;27769:4;27821:25;27806:40;;;:11;:40;;;;:105;;;;27878:33;27863:48;;;:11;:48;;;;27806:105;:158;;;;27928:36;27952:11;27928:23;:36::i;:::-;27806:158;27786:178;;27667:305;;;:::o;28612:100::-;28666:13;28699:5;28692:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28612:100;:::o;42185:281::-;42250:11;41158:1;41144:11;:15;:52;;;;;41178:18;;41163:11;:33;;41144:52;41136:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;41270:9;;41255:11;41236:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;41228:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;41311:25;41339:20;:32;41360:10;41339:32;;;;;;;;;;;;;;;;41311:60;;41421:18;;41406:11;41386:17;:31;;;;:::i;:::-;:53;;41378:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;42292:4:::1;42278:18;;:10;;;;;;;;;;;:18;;;42270:27;;;::::0;::::1;;42313:6;;;;;;;;;;;42312:7;42304:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;42382:11;42375:4;;:18;;;;:::i;:::-;42362:9;:31;;42354:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;42426:34;42436:10;42448:11;42426:9;:34::i;:::-;41129:359:::0;42185:281;;:::o;30171:221::-;30247:7;30275:16;30283:7;30275;:16::i;:::-;30267:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30360:15;:24;30376:7;30360:24;;;;;;;;;;;;;;;;;;;;;30353:31;;30171:221;;;:::o;29694:411::-;29775:13;29791:23;29806:7;29791:14;:23::i;:::-;29775:39;;29839:5;29833:11;;:2;:11;;;;29825:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;29933:5;29917:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;29942:37;29959:5;29966:12;:10;:12::i;:::-;29942:16;:37::i;:::-;29917:62;29895:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;30076:21;30085:2;30089:7;30076:8;:21::i;:::-;29764:341;29694:411;;:::o;40503:33::-;;;;:::o;44323:100::-;8235:12;:10;:12::i;:::-;8224:23;;:7;:5;:7::i;:::-;:23;;;8216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44407:10:::1;44395:9;:22;;;;;;;;;;;;:::i;:::-;;44323:100:::0;:::o;44429:77::-;8235:12;:10;:12::i;:::-;8224:23;;:7;:5;:7::i;:::-;:23;;;8216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44494:6:::1;44485;;:15;;;;;;;;;;;;;;;;;;44429:77:::0;:::o;41494:89::-;41538:7;41561:16;:6;:14;:16::i;:::-;41554:23;;41494:89;:::o;40854:55::-;;;;;;;;;;;;;;;;;:::o;30921:339::-;31116:41;31135:12;:10;:12::i;:::-;31149:7;31116:18;:41::i;:::-;31108:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;31224:28;31234:4;31240:2;31244:7;31224:9;:28::i;:::-;30921:339;;;:::o;40764:30::-;;;;;;;;;;;;;:::o;40669:25::-;;;;:::o;44920:141::-;8235:12;:10;:12::i;:::-;8224:23;;:7;:5;:7::i;:::-;:23;;;8216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44969:7:::1;44990;:5;:7::i;:::-;44982:21;;45011;44982:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44968:69;;;45052:2;45044:11;;;::::0;::::1;;44957:104;44920:141::o:0;31331:185::-;31469:39;31486:4;31492:2;31496:7;31469:39;;;;;;;;;;;;:16;:39::i;:::-;31331:185;;;:::o;42635:635::-;42710:16;42738:23;42764:17;42774:6;42764:9;:17::i;:::-;42738:43;;42788:30;42835:15;42821:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42788:63;;42858:22;42883:1;42858:26;;42891:23;42927:309;42952:15;42934;:33;:64;;;;;42989:9;;42971:14;:27;;42934:64;42927:309;;;43009:25;43037:23;43045:14;43037:7;:23::i;:::-;43009:51;;43096:6;43075:27;;:17;:27;;;43071:131;;;43148:14;43115:13;43129:15;43115:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;43175:17;;;;;:::i;:::-;;;;43071:131;43212:16;;;;;:::i;:::-;;;;43000:236;42927:309;;;43251:13;43244:20;;;;;;42635:635;;;:::o;43863:74::-;8235:12;:10;:12::i;:::-;8224:23;;:7;:5;:7::i;:::-;:23;;;8216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43926:5:::1;43919:4;:12;;;;43863:74:::0;:::o;44079:132::-;8235:12;:10;:12::i;:::-;8224:23;;:7;:5;:7::i;:::-;:23;;;8216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44187:18:::1;44167:17;:38;;;;;;;;;;;;:::i;:::-;;44079:132:::0;:::o;40731:28::-;;;;;;;;;;;;;:::o;40425:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40701:25::-;;;;;;;;;;;;;:::o;40392:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28306:239::-;28378:7;28398:13;28414:7;:16;28422:7;28414:16;;;;;;;;;;;;;;;;;;;;;28398:32;;28466:1;28449:19;;:5;:19;;;;28441:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28532:5;28525:12;;;28306:239;;;:::o;44708:94::-;8235:12;:10;:12::i;:::-;8224:23;;:7;:5;:7::i;:::-;:23;;;8216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44786:10:::1;44774:9;:22;;;;44708:94:::0;:::o;28036:208::-;28108:7;28153:1;28136:19;;:5;:19;;;;28128:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;28220:9;:16;28230:5;28220:16;;;;;;;;;;;;;;;;28213:23;;28036:208;;;:::o;8655:103::-;8235:12;:10;:12::i;:::-;8224:23;;:7;:5;:7::i;:::-;:23;;;8216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8720:30:::1;8747:1;8720:18;:30::i;:::-;8655:103::o:0;44217:100::-;8235:12;:10;:12::i;:::-;8224:23;;:7;:5;:7::i;:::-;:23;;;8216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44301:10:::1;44289:9;:22;;;;;;;;;;;;:::i;:::-;;44217:100:::0;:::o;8004:87::-;8050:7;8077:6;;;;;;;;;;;8070:13;;8004:87;:::o;40577:37::-;;;;:::o;28781:104::-;28837:13;28870:7;28863:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28781:104;:::o;30464:155::-;30559:52;30578:12;:10;:12::i;:::-;30592:8;30602;30559:18;:52::i;:::-;30464:155;;:::o;40463:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43943:130::-;8235:12;:10;:12::i;:::-;8224:23;;:7;:5;:7::i;:::-;:23;;;8216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44048:19:::1;44027:18;:40;;;;43943:130:::0;:::o;44513:85::-;8235:12;:10;:12::i;:::-;8224:23;;:7;:5;:7::i;:::-;:23;;;8216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44586:6:::1;44573:10;;:19;;;;;;;;;;;;;;;;;;44513:85:::0;:::o;31587:328::-;31762:41;31781:12;:10;:12::i;:::-;31795:7;31762:18;:41::i;:::-;31754:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;31868:39;31882:4;31888:2;31892:7;31901:5;31868:13;:39::i;:::-;31587:328;;;;:::o;40619:37::-;;;;:::o;43276:494::-;43375:13;43416:17;43424:8;43416:7;:17::i;:::-;43400:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;43523:5;43511:17;;:8;;;;;;;;;;;:17;;;43507:64;;;43546:17;43539:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43507:64;43579:28;43610:10;:8;:10::i;:::-;43579:41;;43665:1;43640:14;43634:28;:32;:130;;;;;;;;;;;;;;;;;43702:14;43718:19;:8;:17;:19::i;:::-;43739:9;43685:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43634:130;43627:137;;;43276:494;;;;:::o;44810:104::-;8235:12;:10;:12::i;:::-;8224:23;;:7;:5;:7::i;:::-;:23;;;8216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44902:6:::1;44881:18;:27;;;;44810:104:::0;:::o;40541:31::-;;;;:::o;40801:48::-;;;;;;;;;;;;;;;;;;;;;;:::o;41589:590::-;41696:11;41158:1;41144:11;:15;:52;;;;;41178:18;;41163:11;:33;;41144:52;41136:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;41270:9;;41255:11;41236:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;41228:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;41311:25;41339:20;:32;41360:10;41339:32;;;;;;;;;;;;;;;;41311:60;;41421:18;;41406:11;41386:17;:31;;;;:::i;:::-;:53;;41378:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;41725:6:::1;;;;;;;;;;;41724:7;41716:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;41788:5;41774:19;;:10;;;;;;;;;;;:19;;;41766:28;;;::::0;::::1;;41829:11;41822:4;;:18;;;;:::i;:::-;41809:9;:31;;41801:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;41880:16;:28;41897:10;41880:28;;;;;;;;;;;;;;;;;;;;;;;;;41879:29;41871:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;41948:12;41990:10;41973:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;41963:39;;;;;;41948:54;;42017:50;42036:12;;42017:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42050:10;;42062:4;42017:18;:50::i;:::-;42009:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;42124:4;42093:16;:28;42110:10;42093:28;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;42139:34;42149:10;42161:11;42139:9;:34::i;:::-;41709:470;41129:359:::0;41589:590;;;;:::o;43776:81::-;8235:12;:10;:12::i;:::-;8224:23;;:7;:5;:7::i;:::-;:23;;;8216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43845:6:::1;43834:8;;:17;;;;;;;;;;;;;;;;;;43776:81:::0;:::o;44604:98::-;8235:12;:10;:12::i;:::-;8224:23;;:7;:5;:7::i;:::-;:23;;;8216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44685:11:::1;44672:10;:24;;;;44604:98:::0;:::o;30690:164::-;30787:4;30811:18;:25;30830:5;30811:25;;;;;;;;;;;;;;;:35;30837:8;30811:35;;;;;;;;;;;;;;;;;;;;;;;;;30804:42;;30690:164;;;;:::o;42474:155::-;42560:11;41158:1;41144:11;:15;:52;;;;;41178:18;;41163:11;:33;;41144:52;41136:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;41270:9;;41255:11;41236:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;41228:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;41311:25;41339:20;:32;41360:10;41339:32;;;;;;;;;;;;;;;;41311:60;;41421:18;;41406:11;41386:17;:31;;;;:::i;:::-;:53;;41378:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;8235:12:::1;:10;:12::i;:::-;8224:23;;:7;:5;:7::i;:::-;:23;;;8216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42590:33:::2;42600:9;42611:11;42590:9;:33::i;:::-;41129:359:::0;42474:155;;;:::o;8913:201::-;8235:12;:10;:12::i;:::-;8224:23;;:7;:5;:7::i;:::-;:23;;;8216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9022:1:::1;9002:22;;:8;:22;;;;8994:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;9078:28;9097:8;9078:18;:28::i;:::-;8913:201:::0;:::o;20436:157::-;20521:4;20560:25;20545:40;;;:11;:40;;;;20538:47;;20436:157;;;:::o;3332:114::-;3397:7;3424;:14;;;3417:21;;3332:114;;;:::o;45067:204::-;45147:9;45142:124;45166:11;45162:1;:15;45142:124;;;45193:18;:6;:16;:18::i;:::-;45220:38;45230:9;45241:16;:6;:14;:16::i;:::-;45220:9;:38::i;:::-;45179:3;;;;;:::i;:::-;;;;45142:124;;;;45067:204;;:::o;33425:127::-;33490:4;33542:1;33514:30;;:7;:16;33522:7;33514:16;;;;;;;;;;;;;;;;;;;;;:30;;;;33507:37;;33425:127;;;:::o;6728:98::-;6781:7;6808:10;6801:17;;6728:98;:::o;37407:174::-;37509:2;37482:15;:24;37498:7;37482:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;37565:7;37561:2;37527:46;;37536:23;37551:7;37536:14;:23::i;:::-;37527:46;;;;;;;;;;;;37407:174;;:::o;33719:348::-;33812:4;33837:16;33845:7;33837;:16::i;:::-;33829:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;33913:13;33929:23;33944:7;33929:14;:23::i;:::-;33913:39;;33982:5;33971:16;;:7;:16;;;:51;;;;34015:7;33991:31;;:20;34003:7;33991:11;:20::i;:::-;:31;;;33971:51;:87;;;;34026:32;34043:5;34050:7;34026:16;:32::i;:::-;33971:87;33963:96;;;33719:348;;;;:::o;36711:578::-;36870:4;36843:31;;:23;36858:7;36843:14;:23::i;:::-;:31;;;36835:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;36953:1;36939:16;;:2;:16;;;;36931:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;37009:39;37030:4;37036:2;37040:7;37009:20;:39::i;:::-;37113:29;37130:1;37134:7;37113:8;:29::i;:::-;37174:1;37155:9;:15;37165:4;37155:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;37203:1;37186:9;:13;37196:2;37186:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;37234:2;37215:7;:16;37223:7;37215:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;37273:7;37269:2;37254:27;;37263:4;37254:27;;;;;;;;;;;;36711:578;;;:::o;9274:191::-;9348:16;9367:6;;;;;;;;;;;9348:25;;9393:8;9384:6;;:17;;;;;;;;;;;;;;;;;;9448:8;9417:40;;9438:8;9417:40;;;;;;;;;;;;9337:128;9274:191;:::o;37723:315::-;37878:8;37869:17;;:5;:17;;;;37861:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;37965:8;37927:18;:25;37946:5;37927:25;;;;;;;;;;;;;;;:35;37953:8;37927:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;38011:8;37989:41;;38004:5;37989:41;;;38021:8;37989:41;;;;;;:::i;:::-;;;;;;;;37723:315;;;:::o;32797:::-;32954:28;32964:4;32970:2;32974:7;32954:9;:28::i;:::-;33001:48;33024:4;33030:2;33034:7;33043:5;33001:22;:48::i;:::-;32993:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;32797:315;;;;:::o;45277:104::-;45337:13;45366:9;45359:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45277:104;:::o;4290:723::-;4346:13;4576:1;4567:5;:10;4563:53;;;4594:10;;;;;;;;;;;;;;;;;;;;;4563:53;4626:12;4641:5;4626:20;;4657:14;4682:78;4697:1;4689:4;:9;4682:78;;4715:8;;;;;:::i;:::-;;;;4746:2;4738:10;;;;;:::i;:::-;;;4682:78;;;4770:19;4802:6;4792:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4770:39;;4820:154;4836:1;4827:5;:10;4820:154;;4864:1;4854:11;;;;;:::i;:::-;;;4931:2;4923:5;:10;;;;:::i;:::-;4910:2;:24;;;;:::i;:::-;4897:39;;4880:6;4887;4880:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;4960:2;4951:11;;;;;:::i;:::-;;;4820:154;;;4998:6;4984:21;;;;;4290:723;;;;:::o;994:190::-;1119:4;1172;1143:25;1156:5;1163:4;1143:12;:25::i;:::-;:33;1136:40;;994:190;;;;;:::o;3454:127::-;3561:1;3543:7;:14;;;:19;;;;;;;;;;;3454:127;:::o;34409:110::-;34485:26;34495:2;34499:7;34485:26;;;;;;;;;;;;:9;:26::i;:::-;34409:110;;:::o;39974:126::-;;;;:::o;38603:799::-;38758:4;38779:15;:2;:13;;;:15::i;:::-;38775:620;;;38831:2;38815:36;;;38852:12;:10;:12::i;:::-;38866:4;38872:7;38881:5;38815:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38811:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39074:1;39057:6;:13;:18;39053:272;;;39100:60;;;;;;;;;;:::i;:::-;;;;;;;;39053:272;39275:6;39269:13;39260:6;39256:2;39252:15;39245:38;38811:529;38948:41;;;38938:51;;;:6;:51;;;;38931:58;;;;;38775:620;39379:4;39372:11;;38603:799;;;;;;;:::o;1546:675::-;1629:7;1649:20;1672:4;1649:27;;1692:9;1687:497;1711:5;:12;1707:1;:16;1687:497;;;1745:20;1768:5;1774:1;1768:8;;;;;;;;:::i;:::-;;;;;;;;1745:31;;1811:12;1795;:28;1791:382;;1938:42;1953:12;1967;1938:14;:42::i;:::-;1923:57;;1791:382;;;2115:42;2130:12;2144;2115:14;:42::i;:::-;2100:57;;1791:382;1730:454;1725:3;;;;;:::i;:::-;;;;1687:497;;;;2201:12;2194:19;;;1546:675;;;;:::o;34746:321::-;34876:18;34882:2;34886:7;34876:5;:18::i;:::-;34927:54;34958:1;34962:2;34966:7;34975:5;34927:22;:54::i;:::-;34905:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;34746:321;;;:::o;10292:387::-;10352:4;10560:12;10627:7;10615:20;10607:28;;10670:1;10663:4;:8;10656:15;;;10292:387;;;:::o;2229:224::-;2297:13;2360:1;2354:4;2347:15;2389:1;2383:4;2376:15;2430:4;2424;2414:21;2405:30;;2229:224;;;;:::o;35403:382::-;35497:1;35483:16;;:2;:16;;;;35475:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;35556:16;35564:7;35556;:16::i;:::-;35555:17;35547:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;35618:45;35647:1;35651:2;35655:7;35618:20;:45::i;:::-;35693:1;35676:9;:13;35686:2;35676:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35724:2;35705:7;:16;35713:7;35705:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35769:7;35765:2;35744:33;;35761:1;35744:33;;;;;;;;;;;;35403:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::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:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:139::-;2914:5;2952:6;2939:20;2930:29;;2968:33;2995:5;2968:33;:::i;:::-;2868:139;;;;:::o;3013:329::-;3072:6;3121:2;3109:9;3100:7;3096:23;3092:32;3089:119;;;3127:79;;:::i;:::-;3089:119;3247:1;3272:53;3317:7;3308:6;3297:9;3293:22;3272:53;:::i;:::-;3262:63;;3218:117;3013:329;;;;:::o;3348:474::-;3416:6;3424;3473:2;3461:9;3452:7;3448:23;3444:32;3441:119;;;3479:79;;:::i;:::-;3441:119;3599:1;3624:53;3669:7;3660:6;3649:9;3645:22;3624:53;:::i;:::-;3614:63;;3570:117;3726:2;3752:53;3797:7;3788:6;3777:9;3773:22;3752:53;:::i;:::-;3742:63;;3697:118;3348:474;;;;;:::o;3828:619::-;3905:6;3913;3921;3970:2;3958:9;3949:7;3945:23;3941:32;3938:119;;;3976:79;;:::i;:::-;3938:119;4096:1;4121:53;4166:7;4157:6;4146:9;4142:22;4121:53;:::i;:::-;4111:63;;4067:117;4223:2;4249:53;4294:7;4285:6;4274:9;4270:22;4249:53;:::i;:::-;4239:63;;4194:118;4351:2;4377:53;4422:7;4413:6;4402:9;4398:22;4377:53;:::i;:::-;4367:63;;4322:118;3828:619;;;;;:::o;4453:943::-;4548:6;4556;4564;4572;4621:3;4609:9;4600:7;4596:23;4592:33;4589:120;;;4628:79;;:::i;:::-;4589:120;4748:1;4773:53;4818:7;4809:6;4798:9;4794:22;4773:53;:::i;:::-;4763:63;;4719:117;4875:2;4901:53;4946:7;4937:6;4926:9;4922:22;4901:53;:::i;:::-;4891:63;;4846:118;5003:2;5029:53;5074:7;5065:6;5054:9;5050:22;5029:53;:::i;:::-;5019:63;;4974:118;5159:2;5148:9;5144:18;5131:32;5190:18;5182:6;5179:30;5176:117;;;5212:79;;:::i;:::-;5176:117;5317:62;5371:7;5362:6;5351:9;5347:22;5317:62;:::i;:::-;5307:72;;5102:287;4453:943;;;;;;;:::o;5402:468::-;5467:6;5475;5524:2;5512:9;5503:7;5499:23;5495:32;5492:119;;;5530:79;;:::i;:::-;5492:119;5650:1;5675:53;5720:7;5711:6;5700:9;5696:22;5675:53;:::i;:::-;5665:63;;5621:117;5777:2;5803:50;5845:7;5836:6;5825:9;5821:22;5803:50;:::i;:::-;5793:60;;5748:115;5402:468;;;;;:::o;5876:474::-;5944:6;5952;6001:2;5989:9;5980:7;5976:23;5972:32;5969:119;;;6007:79;;:::i;:::-;5969:119;6127:1;6152:53;6197:7;6188:6;6177:9;6173:22;6152:53;:::i;:::-;6142:63;;6098:117;6254:2;6280:53;6325:7;6316:6;6305:9;6301:22;6280:53;:::i;:::-;6270:63;;6225:118;5876:474;;;;;:::o;6356:704::-;6451:6;6459;6467;6516:2;6504:9;6495:7;6491:23;6487:32;6484:119;;;6522:79;;:::i;:::-;6484:119;6670:1;6659:9;6655:17;6642:31;6700:18;6692:6;6689:30;6686:117;;;6722:79;;:::i;:::-;6686:117;6835:80;6907:7;6898:6;6887:9;6883:22;6835:80;:::i;:::-;6817:98;;;;6613:312;6964:2;6990:53;7035:7;7026:6;7015:9;7011:22;6990:53;:::i;:::-;6980:63;;6935:118;6356:704;;;;;:::o;7066:323::-;7122:6;7171:2;7159:9;7150:7;7146:23;7142:32;7139:119;;;7177:79;;:::i;:::-;7139:119;7297:1;7322:50;7364:7;7355:6;7344:9;7340:22;7322:50;:::i;:::-;7312:60;;7268:114;7066:323;;;;:::o;7395:329::-;7454:6;7503:2;7491:9;7482:7;7478:23;7474:32;7471:119;;;7509:79;;:::i;:::-;7471:119;7629:1;7654:53;7699:7;7690:6;7679:9;7675:22;7654:53;:::i;:::-;7644:63;;7600:117;7395:329;;;;:::o;7730:327::-;7788:6;7837:2;7825:9;7816:7;7812:23;7808:32;7805:119;;;7843:79;;:::i;:::-;7805:119;7963:1;7988:52;8032:7;8023:6;8012:9;8008:22;7988:52;:::i;:::-;7978:62;;7934:116;7730:327;;;;:::o;8063:349::-;8132:6;8181:2;8169:9;8160:7;8156:23;8152:32;8149:119;;;8187:79;;:::i;:::-;8149:119;8307:1;8332:63;8387:7;8378:6;8367:9;8363:22;8332:63;:::i;:::-;8322:73;;8278:127;8063:349;;;;:::o;8418:509::-;8487:6;8536:2;8524:9;8515:7;8511:23;8507:32;8504:119;;;8542:79;;:::i;:::-;8504:119;8690:1;8679:9;8675:17;8662:31;8720:18;8712:6;8709:30;8706:117;;;8742:79;;:::i;:::-;8706:117;8847:63;8902:7;8893:6;8882:9;8878:22;8847:63;:::i;:::-;8837:73;;8633:287;8418:509;;;;:::o;8933:329::-;8992:6;9041:2;9029:9;9020:7;9016:23;9012:32;9009:119;;;9047:79;;:::i;:::-;9009:119;9167:1;9192:53;9237:7;9228:6;9217:9;9213:22;9192:53;:::i;:::-;9182:63;;9138:117;8933:329;;;;:::o;9268:474::-;9336:6;9344;9393:2;9381:9;9372:7;9368:23;9364:32;9361:119;;;9399:79;;:::i;:::-;9361:119;9519:1;9544:53;9589:7;9580:6;9569:9;9565:22;9544:53;:::i;:::-;9534:63;;9490:117;9646:2;9672:53;9717:7;9708:6;9697:9;9693:22;9672:53;:::i;:::-;9662:63;;9617:118;9268:474;;;;;:::o;9748:179::-;9817:10;9838:46;9880:3;9872:6;9838:46;:::i;:::-;9916:4;9911:3;9907:14;9893:28;;9748:179;;;;:::o;9933:118::-;10020:24;10038:5;10020:24;:::i;:::-;10015:3;10008:37;9933:118;;:::o;10057:157::-;10162:45;10182:24;10200:5;10182:24;:::i;:::-;10162:45;:::i;:::-;10157:3;10150:58;10057:157;;:::o;10250:732::-;10369:3;10398:54;10446:5;10398:54;:::i;:::-;10468:86;10547:6;10542:3;10468:86;:::i;:::-;10461:93;;10578:56;10628:5;10578:56;:::i;:::-;10657:7;10688:1;10673:284;10698:6;10695:1;10692:13;10673:284;;;10774:6;10768:13;10801:63;10860:3;10845:13;10801:63;:::i;:::-;10794:70;;10887:60;10940:6;10887:60;:::i;:::-;10877:70;;10733:224;10720:1;10717;10713:9;10708:14;;10673:284;;;10677:14;10973:3;10966:10;;10374:608;;;10250:732;;;;:::o;10988:109::-;11069:21;11084:5;11069:21;:::i;:::-;11064:3;11057:34;10988:109;;:::o;11103:118::-;11190:24;11208:5;11190:24;:::i;:::-;11185:3;11178:37;11103:118;;:::o;11227:360::-;11313:3;11341:38;11373:5;11341:38;:::i;:::-;11395:70;11458:6;11453:3;11395:70;:::i;:::-;11388:77;;11474:52;11519:6;11514:3;11507:4;11500:5;11496:16;11474:52;:::i;:::-;11551:29;11573:6;11551:29;:::i;:::-;11546:3;11542:39;11535:46;;11317:270;11227:360;;;;:::o;11593:364::-;11681:3;11709:39;11742:5;11709:39;:::i;:::-;11764:71;11828:6;11823:3;11764:71;:::i;:::-;11757:78;;11844:52;11889:6;11884:3;11877:4;11870:5;11866:16;11844:52;:::i;:::-;11921:29;11943:6;11921:29;:::i;:::-;11916:3;11912:39;11905:46;;11685:272;11593:364;;;;:::o;11963:377::-;12069:3;12097:39;12130:5;12097:39;:::i;:::-;12152:89;12234:6;12229:3;12152:89;:::i;:::-;12145:96;;12250:52;12295:6;12290:3;12283:4;12276:5;12272:16;12250:52;:::i;:::-;12327:6;12322:3;12318:16;12311:23;;12073:267;11963:377;;;;:::o;12370:845::-;12473:3;12510:5;12504:12;12539:36;12565:9;12539:36;:::i;:::-;12591:89;12673:6;12668:3;12591:89;:::i;:::-;12584:96;;12711:1;12700:9;12696:17;12727:1;12722:137;;;;12873:1;12868:341;;;;12689:520;;12722:137;12806:4;12802:9;12791;12787:25;12782:3;12775:38;12842:6;12837:3;12833:16;12826:23;;12722:137;;12868:341;12935:38;12967:5;12935:38;:::i;:::-;12995:1;13009:154;13023:6;13020:1;13017:13;13009:154;;;13097:7;13091:14;13087:1;13082:3;13078:11;13071:35;13147:1;13138:7;13134:15;13123:26;;13045:4;13042:1;13038:12;13033:17;;13009:154;;;13192:6;13187:3;13183:16;13176:23;;12875:334;;12689:520;;12477:738;;12370:845;;;;:::o;13221:366::-;13363:3;13384:67;13448:2;13443:3;13384:67;:::i;:::-;13377:74;;13460:93;13549:3;13460:93;:::i;:::-;13578:2;13573:3;13569:12;13562:19;;13221:366;;;:::o;13593:::-;13735:3;13756:67;13820:2;13815:3;13756:67;:::i;:::-;13749:74;;13832:93;13921:3;13832:93;:::i;:::-;13950:2;13945:3;13941:12;13934:19;;13593:366;;;:::o;13965:::-;14107:3;14128:67;14192:2;14187:3;14128:67;:::i;:::-;14121:74;;14204:93;14293:3;14204:93;:::i;:::-;14322:2;14317:3;14313:12;14306:19;;13965:366;;;:::o;14337:::-;14479:3;14500:67;14564:2;14559:3;14500:67;:::i;:::-;14493:74;;14576:93;14665:3;14576:93;:::i;:::-;14694:2;14689:3;14685:12;14678:19;;14337:366;;;:::o;14709:::-;14851:3;14872:67;14936:2;14931:3;14872:67;:::i;:::-;14865:74;;14948:93;15037:3;14948:93;:::i;:::-;15066:2;15061:3;15057:12;15050:19;;14709:366;;;:::o;15081:::-;15223:3;15244:67;15308:2;15303:3;15244:67;:::i;:::-;15237:74;;15320:93;15409:3;15320:93;:::i;:::-;15438:2;15433:3;15429:12;15422:19;;15081:366;;;:::o;15453:::-;15595:3;15616:67;15680:2;15675:3;15616:67;:::i;:::-;15609:74;;15692:93;15781:3;15692:93;:::i;:::-;15810:2;15805:3;15801:12;15794:19;;15453:366;;;:::o;15825:::-;15967:3;15988:67;16052:2;16047:3;15988:67;:::i;:::-;15981:74;;16064:93;16153:3;16064:93;:::i;:::-;16182:2;16177:3;16173:12;16166:19;;15825:366;;;:::o;16197:::-;16339:3;16360:67;16424:2;16419:3;16360:67;:::i;:::-;16353:74;;16436:93;16525:3;16436:93;:::i;:::-;16554:2;16549:3;16545:12;16538:19;;16197:366;;;:::o;16569:::-;16711:3;16732:67;16796:2;16791:3;16732:67;:::i;:::-;16725:74;;16808:93;16897:3;16808:93;:::i;:::-;16926:2;16921:3;16917:12;16910:19;;16569:366;;;:::o;16941:::-;17083:3;17104:67;17168:2;17163:3;17104:67;:::i;:::-;17097:74;;17180:93;17269:3;17180:93;:::i;:::-;17298:2;17293:3;17289:12;17282:19;;16941:366;;;:::o;17313:::-;17455:3;17476:67;17540:2;17535:3;17476:67;:::i;:::-;17469:74;;17552:93;17641:3;17552:93;:::i;:::-;17670:2;17665:3;17661:12;17654:19;;17313:366;;;:::o;17685:::-;17827:3;17848:67;17912:2;17907:3;17848:67;:::i;:::-;17841:74;;17924:93;18013:3;17924:93;:::i;:::-;18042:2;18037:3;18033:12;18026:19;;17685:366;;;:::o;18057:::-;18199:3;18220:67;18284:2;18279:3;18220:67;:::i;:::-;18213:74;;18296:93;18385:3;18296:93;:::i;:::-;18414:2;18409:3;18405:12;18398:19;;18057:366;;;:::o;18429:::-;18571:3;18592:67;18656:2;18651:3;18592:67;:::i;:::-;18585:74;;18668:93;18757:3;18668:93;:::i;:::-;18786:2;18781:3;18777:12;18770:19;;18429:366;;;:::o;18801:::-;18943:3;18964:67;19028:2;19023:3;18964:67;:::i;:::-;18957:74;;19040:93;19129:3;19040:93;:::i;:::-;19158:2;19153:3;19149:12;19142:19;;18801:366;;;:::o;19173:::-;19315:3;19336:67;19400:2;19395:3;19336:67;:::i;:::-;19329:74;;19412:93;19501:3;19412:93;:::i;:::-;19530:2;19525:3;19521:12;19514:19;;19173:366;;;:::o;19545:::-;19687:3;19708:67;19772:2;19767:3;19708:67;:::i;:::-;19701:74;;19784:93;19873:3;19784:93;:::i;:::-;19902:2;19897:3;19893:12;19886:19;;19545:366;;;:::o;19917:::-;20059:3;20080:67;20144:2;20139:3;20080:67;:::i;:::-;20073:74;;20156:93;20245:3;20156:93;:::i;:::-;20274:2;20269:3;20265:12;20258:19;;19917:366;;;:::o;20289:398::-;20448:3;20469:83;20550:1;20545:3;20469:83;:::i;:::-;20462:90;;20561:93;20650:3;20561:93;:::i;:::-;20679:1;20674:3;20670:11;20663:18;;20289:398;;;:::o;20693:366::-;20835:3;20856:67;20920:2;20915:3;20856:67;:::i;:::-;20849:74;;20932:93;21021:3;20932:93;:::i;:::-;21050:2;21045:3;21041:12;21034:19;;20693:366;;;:::o;21065:::-;21207:3;21228:67;21292:2;21287:3;21228:67;:::i;:::-;21221:74;;21304:93;21393:3;21304:93;:::i;:::-;21422:2;21417:3;21413:12;21406:19;;21065:366;;;:::o;21437:::-;21579:3;21600:67;21664:2;21659:3;21600:67;:::i;:::-;21593:74;;21676:93;21765:3;21676:93;:::i;:::-;21794:2;21789:3;21785:12;21778:19;;21437:366;;;:::o;21809:::-;21951:3;21972:67;22036:2;22031:3;21972:67;:::i;:::-;21965:74;;22048:93;22137:3;22048:93;:::i;:::-;22166:2;22161:3;22157:12;22150:19;;21809:366;;;:::o;22181:108::-;22258:24;22276:5;22258:24;:::i;:::-;22253:3;22246:37;22181:108;;:::o;22295:118::-;22382:24;22400:5;22382:24;:::i;:::-;22377:3;22370:37;22295:118;;:::o;22419:256::-;22531:3;22546:75;22617:3;22608:6;22546:75;:::i;:::-;22646:2;22641:3;22637:12;22630:19;;22666:3;22659:10;;22419:256;;;;:::o;22681:589::-;22906:3;22928:95;23019:3;23010:6;22928:95;:::i;:::-;22921:102;;23040:95;23131:3;23122:6;23040:95;:::i;:::-;23033:102;;23152:92;23240:3;23231:6;23152:92;:::i;:::-;23145:99;;23261:3;23254:10;;22681:589;;;;;;:::o;23276:379::-;23460:3;23482:147;23625:3;23482:147;:::i;:::-;23475:154;;23646:3;23639:10;;23276:379;;;:::o;23661:222::-;23754:4;23792:2;23781:9;23777:18;23769:26;;23805:71;23873:1;23862:9;23858:17;23849:6;23805:71;:::i;:::-;23661:222;;;;:::o;23889:640::-;24084:4;24122:3;24111:9;24107:19;24099:27;;24136:71;24204:1;24193:9;24189:17;24180:6;24136:71;:::i;:::-;24217:72;24285:2;24274:9;24270:18;24261:6;24217:72;:::i;:::-;24299;24367:2;24356:9;24352:18;24343:6;24299:72;:::i;:::-;24418:9;24412:4;24408:20;24403:2;24392:9;24388:18;24381:48;24446:76;24517:4;24508:6;24446:76;:::i;:::-;24438:84;;23889:640;;;;;;;:::o;24535:373::-;24678:4;24716:2;24705:9;24701:18;24693:26;;24765:9;24759:4;24755:20;24751:1;24740:9;24736:17;24729:47;24793:108;24896:4;24887:6;24793:108;:::i;:::-;24785:116;;24535:373;;;;:::o;24914:210::-;25001:4;25039:2;25028:9;25024:18;25016:26;;25052:65;25114:1;25103:9;25099:17;25090:6;25052:65;:::i;:::-;24914:210;;;;:::o;25130:222::-;25223:4;25261:2;25250:9;25246:18;25238:26;;25274:71;25342:1;25331:9;25327:17;25318:6;25274:71;:::i;:::-;25130:222;;;;:::o;25358:313::-;25471:4;25509:2;25498:9;25494:18;25486:26;;25558:9;25552:4;25548:20;25544:1;25533:9;25529:17;25522:47;25586:78;25659:4;25650:6;25586:78;:::i;:::-;25578:86;;25358:313;;;;:::o;25677:419::-;25843:4;25881:2;25870:9;25866:18;25858:26;;25930:9;25924:4;25920:20;25916:1;25905:9;25901:17;25894:47;25958:131;26084:4;25958:131;:::i;:::-;25950:139;;25677:419;;;:::o;26102:::-;26268:4;26306:2;26295:9;26291:18;26283:26;;26355:9;26349:4;26345:20;26341:1;26330:9;26326:17;26319:47;26383:131;26509:4;26383:131;:::i;:::-;26375:139;;26102:419;;;:::o;26527:::-;26693:4;26731:2;26720:9;26716:18;26708:26;;26780:9;26774:4;26770:20;26766:1;26755:9;26751:17;26744:47;26808:131;26934:4;26808:131;:::i;:::-;26800:139;;26527:419;;;:::o;26952:::-;27118:4;27156:2;27145:9;27141:18;27133:26;;27205:9;27199:4;27195:20;27191:1;27180:9;27176:17;27169:47;27233:131;27359:4;27233:131;:::i;:::-;27225:139;;26952:419;;;:::o;27377:::-;27543:4;27581:2;27570:9;27566:18;27558:26;;27630:9;27624:4;27620:20;27616:1;27605:9;27601:17;27594:47;27658:131;27784:4;27658:131;:::i;:::-;27650:139;;27377:419;;;:::o;27802:::-;27968:4;28006:2;27995:9;27991:18;27983:26;;28055:9;28049:4;28045:20;28041:1;28030:9;28026:17;28019:47;28083:131;28209:4;28083:131;:::i;:::-;28075:139;;27802:419;;;:::o;28227:::-;28393:4;28431:2;28420:9;28416:18;28408:26;;28480:9;28474:4;28470:20;28466:1;28455:9;28451:17;28444:47;28508:131;28634:4;28508:131;:::i;:::-;28500:139;;28227:419;;;:::o;28652:::-;28818:4;28856:2;28845:9;28841:18;28833:26;;28905:9;28899:4;28895:20;28891:1;28880:9;28876:17;28869:47;28933:131;29059:4;28933:131;:::i;:::-;28925:139;;28652:419;;;:::o;29077:::-;29243:4;29281:2;29270:9;29266:18;29258:26;;29330:9;29324:4;29320:20;29316:1;29305:9;29301:17;29294:47;29358:131;29484:4;29358:131;:::i;:::-;29350:139;;29077:419;;;:::o;29502:::-;29668:4;29706:2;29695:9;29691:18;29683:26;;29755:9;29749:4;29745:20;29741:1;29730:9;29726:17;29719:47;29783:131;29909:4;29783:131;:::i;:::-;29775:139;;29502:419;;;:::o;29927:::-;30093:4;30131:2;30120:9;30116:18;30108:26;;30180:9;30174:4;30170:20;30166:1;30155:9;30151:17;30144:47;30208:131;30334:4;30208:131;:::i;:::-;30200:139;;29927:419;;;:::o;30352:::-;30518:4;30556:2;30545:9;30541:18;30533:26;;30605:9;30599:4;30595:20;30591:1;30580:9;30576:17;30569:47;30633:131;30759:4;30633:131;:::i;:::-;30625:139;;30352:419;;;:::o;30777:::-;30943:4;30981:2;30970:9;30966:18;30958:26;;31030:9;31024:4;31020:20;31016:1;31005:9;31001:17;30994:47;31058:131;31184:4;31058:131;:::i;:::-;31050:139;;30777:419;;;:::o;31202:::-;31368:4;31406:2;31395:9;31391:18;31383:26;;31455:9;31449:4;31445:20;31441:1;31430:9;31426:17;31419:47;31483:131;31609:4;31483:131;:::i;:::-;31475:139;;31202:419;;;:::o;31627:::-;31793:4;31831:2;31820:9;31816:18;31808:26;;31880:9;31874:4;31870:20;31866:1;31855:9;31851:17;31844:47;31908:131;32034:4;31908:131;:::i;:::-;31900:139;;31627:419;;;:::o;32052:::-;32218:4;32256:2;32245:9;32241:18;32233:26;;32305:9;32299:4;32295:20;32291:1;32280:9;32276:17;32269:47;32333:131;32459:4;32333:131;:::i;:::-;32325:139;;32052:419;;;:::o;32477:::-;32643:4;32681:2;32670:9;32666:18;32658:26;;32730:9;32724:4;32720:20;32716:1;32705:9;32701:17;32694:47;32758:131;32884:4;32758:131;:::i;:::-;32750:139;;32477:419;;;:::o;32902:::-;33068:4;33106:2;33095:9;33091:18;33083:26;;33155:9;33149:4;33145:20;33141:1;33130:9;33126:17;33119:47;33183:131;33309:4;33183:131;:::i;:::-;33175:139;;32902:419;;;:::o;33327:::-;33493:4;33531:2;33520:9;33516:18;33508:26;;33580:9;33574:4;33570:20;33566:1;33555:9;33551:17;33544:47;33608:131;33734:4;33608:131;:::i;:::-;33600:139;;33327:419;;;:::o;33752:::-;33918:4;33956:2;33945:9;33941:18;33933:26;;34005:9;33999:4;33995:20;33991:1;33980:9;33976:17;33969:47;34033:131;34159:4;34033:131;:::i;:::-;34025:139;;33752:419;;;:::o;34177:::-;34343:4;34381:2;34370:9;34366:18;34358:26;;34430:9;34424:4;34420:20;34416:1;34405:9;34401:17;34394:47;34458:131;34584:4;34458:131;:::i;:::-;34450:139;;34177:419;;;:::o;34602:::-;34768:4;34806:2;34795:9;34791:18;34783:26;;34855:9;34849:4;34845:20;34841:1;34830:9;34826:17;34819:47;34883:131;35009:4;34883:131;:::i;:::-;34875:139;;34602:419;;;:::o;35027:::-;35193:4;35231:2;35220:9;35216:18;35208:26;;35280:9;35274:4;35270:20;35266:1;35255:9;35251:17;35244:47;35308:131;35434:4;35308:131;:::i;:::-;35300:139;;35027:419;;;:::o;35452:222::-;35545:4;35583:2;35572:9;35568:18;35560:26;;35596:71;35664:1;35653:9;35649:17;35640:6;35596:71;:::i;:::-;35452:222;;;;:::o;35680:129::-;35714:6;35741:20;;:::i;:::-;35731:30;;35770:33;35798:4;35790:6;35770:33;:::i;:::-;35680:129;;;:::o;35815:75::-;35848:6;35881:2;35875:9;35865:19;;35815:75;:::o;35896:307::-;35957:4;36047:18;36039:6;36036:30;36033:56;;;36069:18;;:::i;:::-;36033:56;36107:29;36129:6;36107:29;:::i;:::-;36099:37;;36191:4;36185;36181:15;36173:23;;35896:307;;;:::o;36209:308::-;36271:4;36361:18;36353:6;36350:30;36347:56;;;36383:18;;:::i;:::-;36347:56;36421:29;36443:6;36421:29;:::i;:::-;36413:37;;36505:4;36499;36495:15;36487:23;;36209:308;;;:::o;36523:132::-;36590:4;36613:3;36605:11;;36643:4;36638:3;36634:14;36626:22;;36523:132;;;:::o;36661:141::-;36710:4;36733:3;36725:11;;36756:3;36753:1;36746:14;36790:4;36787:1;36777:18;36769:26;;36661:141;;;:::o;36808:114::-;36875:6;36909:5;36903:12;36893:22;;36808:114;;;:::o;36928:98::-;36979:6;37013:5;37007:12;36997:22;;36928:98;;;:::o;37032:99::-;37084:6;37118:5;37112:12;37102:22;;37032:99;;;:::o;37137:113::-;37207:4;37239;37234:3;37230:14;37222:22;;37137:113;;;:::o;37256:184::-;37355:11;37389:6;37384:3;37377:19;37429:4;37424:3;37420:14;37405:29;;37256:184;;;;:::o;37446:168::-;37529:11;37563:6;37558:3;37551:19;37603:4;37598:3;37594:14;37579:29;;37446:168;;;;:::o;37620:147::-;37721:11;37758:3;37743:18;;37620:147;;;;:::o;37773:169::-;37857:11;37891:6;37886:3;37879:19;37931:4;37926:3;37922:14;37907:29;;37773:169;;;;:::o;37948:148::-;38050:11;38087:3;38072:18;;37948:148;;;;:::o;38102:305::-;38142:3;38161:20;38179:1;38161:20;:::i;:::-;38156:25;;38195:20;38213:1;38195:20;:::i;:::-;38190:25;;38349:1;38281:66;38277:74;38274:1;38271:81;38268:107;;;38355:18;;:::i;:::-;38268:107;38399:1;38396;38392:9;38385:16;;38102:305;;;;:::o;38413:185::-;38453:1;38470:20;38488:1;38470:20;:::i;:::-;38465:25;;38504:20;38522:1;38504:20;:::i;:::-;38499:25;;38543:1;38533:35;;38548:18;;:::i;:::-;38533:35;38590:1;38587;38583:9;38578:14;;38413:185;;;;:::o;38604:348::-;38644:7;38667:20;38685:1;38667:20;:::i;:::-;38662:25;;38701:20;38719:1;38701:20;:::i;:::-;38696:25;;38889:1;38821:66;38817:74;38814:1;38811:81;38806:1;38799:9;38792:17;38788:105;38785:131;;;38896:18;;:::i;:::-;38785:131;38944:1;38941;38937:9;38926:20;;38604:348;;;;:::o;38958:191::-;38998:4;39018:20;39036:1;39018:20;:::i;:::-;39013:25;;39052:20;39070:1;39052:20;:::i;:::-;39047:25;;39091:1;39088;39085:8;39082:34;;;39096:18;;:::i;:::-;39082:34;39141:1;39138;39134:9;39126:17;;38958:191;;;;:::o;39155:96::-;39192:7;39221:24;39239:5;39221:24;:::i;:::-;39210:35;;39155:96;;;:::o;39257:90::-;39291:7;39334:5;39327:13;39320:21;39309:32;;39257:90;;;:::o;39353:77::-;39390:7;39419:5;39408:16;;39353:77;;;:::o;39436:149::-;39472:7;39512:66;39505:5;39501:78;39490:89;;39436:149;;;:::o;39591:126::-;39628:7;39668:42;39661:5;39657:54;39646:65;;39591:126;;;:::o;39723:77::-;39760:7;39789:5;39778:16;;39723:77;;;:::o;39806:154::-;39890:6;39885:3;39880;39867:30;39952:1;39943:6;39938:3;39934:16;39927:27;39806:154;;;:::o;39966:307::-;40034:1;40044:113;40058:6;40055:1;40052:13;40044:113;;;40143:1;40138:3;40134:11;40128:18;40124:1;40119:3;40115:11;40108:39;40080:2;40077:1;40073:10;40068:15;;40044:113;;;40175:6;40172:1;40169:13;40166:101;;;40255:1;40246:6;40241:3;40237:16;40230:27;40166:101;40015:258;39966:307;;;:::o;40279:320::-;40323:6;40360:1;40354:4;40350:12;40340:22;;40407:1;40401:4;40397:12;40428:18;40418:81;;40484:4;40476:6;40472:17;40462:27;;40418:81;40546:2;40538:6;40535:14;40515:18;40512:38;40509:84;;;40565:18;;:::i;:::-;40509:84;40330:269;40279:320;;;:::o;40605:281::-;40688:27;40710:4;40688:27;:::i;:::-;40680:6;40676:40;40818:6;40806:10;40803:22;40782:18;40770:10;40767:34;40764:62;40761:88;;;40829:18;;:::i;:::-;40761:88;40869:10;40865:2;40858:22;40648:238;40605:281;;:::o;40892:233::-;40931:3;40954:24;40972:5;40954:24;:::i;:::-;40945:33;;41000:66;40993:5;40990:77;40987:103;;;41070:18;;:::i;:::-;40987:103;41117:1;41110:5;41106:13;41099:20;;40892:233;;;:::o;41131:100::-;41170:7;41199:26;41219:5;41199:26;:::i;:::-;41188:37;;41131:100;;;:::o;41237:94::-;41276:7;41305:20;41319:5;41305:20;:::i;:::-;41294:31;;41237:94;;;:::o;41337:176::-;41369:1;41386:20;41404:1;41386:20;:::i;:::-;41381:25;;41420:20;41438:1;41420:20;:::i;:::-;41415:25;;41459:1;41449:35;;41464:18;;:::i;:::-;41449:35;41505:1;41502;41498:9;41493:14;;41337:176;;;;:::o;41519:180::-;41567:77;41564:1;41557:88;41664:4;41661:1;41654:15;41688:4;41685:1;41678:15;41705:180;41753:77;41750:1;41743:88;41850:4;41847:1;41840:15;41874:4;41871:1;41864:15;41891:180;41939:77;41936:1;41929:88;42036:4;42033:1;42026:15;42060:4;42057:1;42050:15;42077:180;42125:77;42122:1;42115:88;42222:4;42219:1;42212:15;42246:4;42243:1;42236:15;42263:180;42311:77;42308:1;42301:88;42408:4;42405:1;42398:15;42432:4;42429:1;42422:15;42449:117;42558:1;42555;42548:12;42572:117;42681:1;42678;42671:12;42695:117;42804:1;42801;42794:12;42818:117;42927:1;42924;42917:12;42941:117;43050:1;43047;43040:12;43064:117;43173:1;43170;43163:12;43187:102;43228:6;43279:2;43275:7;43270:2;43263:5;43259:14;43255:28;43245:38;;43187:102;;;:::o;43295:94::-;43328:8;43376:5;43372:2;43368:14;43347:35;;43295:94;;;:::o;43395:178::-;43535:30;43531:1;43523:6;43519:14;43512:54;43395:178;:::o;43579:237::-;43719:34;43715:1;43707:6;43703:14;43696:58;43788:20;43783:2;43775:6;43771:15;43764:45;43579:237;:::o;43822:225::-;43962:34;43958:1;43950:6;43946:14;43939:58;44031:8;44026:2;44018:6;44014:15;44007:33;43822:225;:::o;44053:178::-;44193:30;44189:1;44181:6;44177:14;44170:54;44053:178;:::o;44237:170::-;44377:22;44373:1;44365:6;44361:14;44354:46;44237:170;:::o;44413:178::-;44553:30;44549:1;44541:6;44537:14;44530:54;44413:178;:::o;44597:223::-;44737:34;44733:1;44725:6;44721:14;44714:58;44806:6;44801:2;44793:6;44789:15;44782:31;44597:223;:::o;44826:175::-;44966:27;44962:1;44954:6;44950:14;44943:51;44826:175;:::o;45007:231::-;45147:34;45143:1;45135:6;45131:14;45124:58;45216:14;45211:2;45203:6;45199:15;45192:39;45007:231;:::o;45244:243::-;45384:34;45380:1;45372:6;45368:14;45361:58;45453:26;45448:2;45440:6;45436:15;45429:51;45244:243;:::o;45493:229::-;45633:34;45629:1;45621:6;45617:14;45610:58;45702:12;45697:2;45689:6;45685:15;45678:37;45493:229;:::o;45728:228::-;45868:34;45864:1;45856:6;45852:14;45845:58;45937:11;45932:2;45924:6;45920:15;45913:36;45728:228;:::o;45962:182::-;46102:34;46098:1;46090:6;46086:14;46079:58;45962:182;:::o;46150:231::-;46290:34;46286:1;46278:6;46274:14;46267:58;46359:14;46354:2;46346:6;46342:15;46335:39;46150:231;:::o;46387:182::-;46527:34;46523:1;46515:6;46511:14;46504:58;46387:182;:::o;46575:173::-;46715:25;46711:1;46703:6;46699:14;46692:49;46575:173;:::o;46754:228::-;46894:34;46890:1;46882:6;46878:14;46871:58;46963:11;46958:2;46950:6;46946:15;46939:36;46754:228;:::o;46988:234::-;47128:34;47124:1;47116:6;47112:14;47105:58;47197:17;47192:2;47184:6;47180:15;47173:42;46988:234;:::o;47228:220::-;47368:34;47364:1;47356:6;47352:14;47345:58;47437:3;47432:2;47424:6;47420:15;47413:28;47228:220;:::o;47454:114::-;;:::o;47574:170::-;47714:22;47710:1;47702:6;47698:14;47691:46;47574:170;:::o;47750:236::-;47890:34;47886:1;47878:6;47874:14;47867:58;47959:19;47954:2;47946:6;47942:15;47935:44;47750:236;:::o;47992:164::-;48132:16;48128:1;48120:6;48116:14;48109:40;47992:164;:::o;48162:169::-;48302:21;48298:1;48290:6;48286:14;48279:45;48162:169;:::o;48337:122::-;48410:24;48428:5;48410:24;:::i;:::-;48403:5;48400:35;48390:63;;48449:1;48446;48439:12;48390:63;48337:122;:::o;48465:116::-;48535:21;48550:5;48535:21;:::i;:::-;48528:5;48525:32;48515:60;;48571:1;48568;48561:12;48515:60;48465:116;:::o;48587:122::-;48660:24;48678:5;48660:24;:::i;:::-;48653:5;48650:35;48640:63;;48699:1;48696;48689:12;48640:63;48587:122;:::o;48715:120::-;48787:23;48804:5;48787:23;:::i;:::-;48780:5;48777:34;48767:62;;48825:1;48822;48815:12;48767:62;48715:120;:::o;48841:122::-;48914:24;48932:5;48914:24;:::i;:::-;48907:5;48904:35;48894:63;;48953:1;48950;48943:12;48894:63;48841:122;:::o

Swarm Source

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