ETH Price: $3,164.88 (+1.44%)
Gas: 1 Gwei

Token

Myst3ry L4nd (M3L4)
 

Overview

Max Total Supply

999 M3L4

Holders

284

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 M3L4
0x3c0c713419b2be829bb33ac26572a033d3d4767d
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:
Myst3ryL4nd

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT 
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/utils/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: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// 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: contracts/Myst3ryL4nd.sol
// Zynga Inc. 2022

pragma solidity >=0.8.0 <0.9.0;

contract Myst3ryL4nd is ERC721A, Ownable { 

  using Strings for uint256;

  string public uriPrefix = "";
  string public uriSuffix = ".json"; 
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.002 ether; 

  uint256 public maxSupply = 999; 
  uint256 public maxMintAmountPerTx = 10; 
  uint256 public totalMaxMintAmount = 10; 

  uint256 public freeMaxMintAmount = 2; 

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

  string public merge_initiation_block = '1664780000';
  string public land_merge_status = '0';
  string public number_of_citizens = '0';
  string public number_of_buildings = '0';
  string public myst3ry_token_claimed = '0';
  string public get_current_epoch = '0';
  

  mapping(address => uint256) public addressMintedBalance; 

  constructor() ERC721A("Myst3ry L4nd", "M3L4") { 
         setHiddenMetadataUri("ipfs://bafkreiaph6o7eguw7mjym2eukrjffn2pqeesaf7dxitrscbvj76ykfts24/hidden.json"); 
            ownerMint(20); 
    } 

  // MODIFIERS 
  
  modifier mintCompliance(uint256 _mintAmount) {
    if (msg.sender != owner()) { 
        require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    }
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _;
  } 

  modifier mintPriceCompliance(uint256 _mintAmount) {
    uint256 ownerMintedCount = addressMintedBalance[msg.sender];
   if (ownerMintedCount >= freeMaxMintAmount) {
        require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
   }
        _;
  }

  // MINTS 

   function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    require(!paused, 'The contract is paused!'); 
    require(publicSale, "Not open to public yet!");
    uint256 ownerMintedCount = addressMintedBalance[msg.sender];

    if (ownerMintedCount < freeMaxMintAmount) {  
            require(ownerMintedCount + _mintAmount <= freeMaxMintAmount, "Exceeded Free Mint Limit");
        } else if (ownerMintedCount >= freeMaxMintAmount) { 
            require(ownerMintedCount + _mintAmount <= totalMaxMintAmount, "Exceeded Mint Limit");
        }

    _safeMint(_msgSender(), _mintAmount);
    for (uint256 i = 1; i <=_mintAmount; i++){
        addressMintedBalance[msg.sender]++;
    }
  }

  function ownerMint(uint256 _mintAmount) public payable onlyOwner {
     require(_mintAmount > 0, 'Invalid mint amount!');
     require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _safeMint(_msgSender(), _mintAmount);
  }

function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }
  
  function walletOfOwner(address _owner) public view returns (uint256[] memory) {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = _startTokenId();
    uint256 ownedTokenIndex = 0;
    address latestOwnerAddress;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      TokenOwnership memory ownership = _ownerships[currentTokenId];

      if (!ownership.burned && ownership.addr != address(0)) {
        latestOwnerAddress = ownership.addr;
      }

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

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }

  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 setFreeMaxMintAmount(uint256 _freeMaxMintAmount) public onlyOwner {
    freeMaxMintAmount = _freeMaxMintAmount; 
  }

  function setTotalMaxMintAmount(uint _amount) public onlyOwner {
      require(_amount <= maxSupply, "Exceed total amount");
      totalMaxMintAmount = _amount;
  }

  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 setPublicSale(bool _state) public onlyOwner {
    publicSale = _state;
  }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"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":[],"name":"freeMaxMintAmount","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":"get_current_epoch","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"land_merge_status","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"merge_initiation_block","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"myst3ry_token_claimed","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"number_of_buildings","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"number_of_citizens","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"payable","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":"publicSale","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":"uint256","name":"_freeMaxMintAmount","type":"uint256"}],"name":"setFreeMaxMintAmount","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":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setTotalMaxMintAmount","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":"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":"totalMaxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405260405180602001604052806000815250600990805190602001906200002b92919062000cea565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90805190602001906200007992919062000cea565b5066071afd498d0000600c556103e7600d55600a600e55600a600f5560026010556001601160006101000a81548160ff0219169083151502179055506001601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506040518060400160405280600a81526020017f3136363437383030303000000000000000000000000000000000000000000000815250601290805190602001906200013892919062000cea565b506040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250601390805190602001906200018692919062000cea565b506040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525060149080519060200190620001d492919062000cea565b506040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250601590805190602001906200022292919062000cea565b506040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250601690805190602001906200027092919062000cea565b506040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525060179080519060200190620002be92919062000cea565b50348015620002cc57600080fd5b506040518060400160405280600c81526020017f4d797374337279204c346e6400000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d334c340000000000000000000000000000000000000000000000000000000081525081600290805190602001906200035192919062000cea565b5080600390805190602001906200036a92919062000cea565b506200037b620003e560201b60201c565b6000819055505050620003a362000397620003ee60201b60201c565b620003f660201b60201c565b620003cd6040518060800160405280604e815260200162005feb604e9139620004bc60201b60201c565b620003df60146200056760201b60201c565b620011de565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620004cc620003ee60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004f2620006c460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200054b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005429062000dfb565b60405180910390fd5b80600b90805190602001906200056392919062000cea565b5050565b62000577620003ee60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200059d620006c460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620005f6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005ed9062000dfb565b60405180910390fd5b600081116200063c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006339062000e6d565b60405180910390fd5b600d548162000650620006ee60201b60201c565b6200065c919062000ec8565b1115620006a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006979062000f75565b60405180910390fd5b620006c1620006b4620003ee60201b60201c565b826200070d60201b60201c565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600062000700620003e560201b60201c565b6001546000540303905090565b6200072f8282604051806020016040528060008152506200073360201b60201c565b5050565b6200074883838360016200074d60201b60201c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415620007bb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415620007f7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200080c600086838762000b4960201b60201c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015620009e45750620009e38773ffffffffffffffffffffffffffffffffffffffff1662000b4f60201b62002a4a1760201c565b5b1562000ab7575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a462000a62600088848060010195508862000b7260201b60201c565b62000a99576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415620009eb57826000541462000ab157600080fd5b62000b24565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141562000ab8575b81600081905550505062000b42600086838762000ce460201b60201c565b5050505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000ba0620003ee60201b60201c565b8786866040518563ffffffff1660e01b815260040162000bc4949392919062001091565b602060405180830381600087803b15801562000bdf57600080fd5b505af192505050801562000c1357506040513d601f19601f8201168201806040525081019062000c10919062001147565b60015b62000c91573d806000811462000c46576040519150601f19603f3d011682016040523d82523d6000602084013e62000c4b565b606091505b5060008151141562000c89576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b82805462000cf890620011a8565b90600052602060002090601f01602090048101928262000d1c576000855562000d68565b82601f1062000d3757805160ff191683800117855562000d68565b8280016001018555821562000d68579182015b8281111562000d6757825182559160200191906001019062000d4a565b5b50905062000d77919062000d7b565b5090565b5b8082111562000d9657600081600090555060010162000d7c565b5090565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000de360208362000d9a565b915062000df08262000dab565b602082019050919050565b6000602082019050818103600083015262000e168162000dd4565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b600062000e5560148362000d9a565b915062000e628262000e1d565b602082019050919050565b6000602082019050818103600083015262000e888162000e46565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ed58262000e8f565b915062000ee28362000e8f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000f1a5762000f1962000e99565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b600062000f5d60148362000d9a565b915062000f6a8262000f25565b602082019050919050565b6000602082019050818103600083015262000f908162000f4e565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000fc48262000f97565b9050919050565b62000fd68162000fb7565b82525050565b62000fe78162000e8f565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b83811015620010295780820151818401526020810190506200100c565b8381111562001039576000848401525b50505050565b6000601f19601f8301169050919050565b60006200105d8262000fed565b62001069818562000ff8565b93506200107b81856020860162001009565b62001086816200103f565b840191505092915050565b6000608082019050620010a8600083018762000fcb565b620010b7602083018662000fcb565b620010c6604083018562000fdc565b8181036060830152620010da818462001050565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6200112181620010ea565b81146200112d57600080fd5b50565b600081519050620011418162001116565b92915050565b60006020828403121562001160576200115f620010e5565b5b6000620011708482850162001130565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620011c157607f821691505b60208210811415620011d857620011d762001179565b5b50919050565b614dfd80620011ee6000396000f3fe6080604052600436106102c95760003560e01c80636352211e11610175578063b88d4fde116100dc578063e0a8085311610095578063e985e9c51161006f578063e985e9c514610aa4578063efbd73f414610ae1578063f19e75d414610b0a578063f2fde38b14610b26576102c9565b8063e0a8085314610a25578063e1a38e8914610a4e578063e4386d2614610a79576102c9565b8063b88d4fde14610915578063c87b56dd1461093e578063d27d94211461097b578063d4fcb2ae146109a6578063d5abeb01146109cf578063d83a690f146109fa576102c9565b806394354fd01161012e57806394354fd01461082657806395d89b4114610851578063a0712d681461087c578063a22cb46514610898578063a45ba8e7146108c1578063b071401b146108ec576102c9565b80636352211e1461071657806370a0823114610753578063715018a6146107905780637ec4a659146107a7578063837a9bc7146107d05780638da5cb5b146107fb576102c9565b806333bc1c5c116102345780634fdd43cb116101ed5780635aca1bb6116101c75780635aca1bb61461066c5780635c975abb1461069557806362b99ad4146106c05780636328c678146106eb576102c9565b80634fdd43cb146105ed57806351830227146106165780635503a0e814610641576102c9565b806333bc1c5c146104fe578063370970df146105295780633ccfd60b1461055457806342842e0e1461055e578063438b63001461058757806344a0d68a146105c4576102c9565b806313faede61161028657806313faede6146103f057806316ba10e01461041b57806316c38b3c1461044457806318160ddd1461046d57806318cae2691461049857806323b872dd146104d5576102c9565b806301ffc9a7146102ce57806306fdde031461030b578063081812fc14610336578063095ea7b3146103735780631042779c1461039c5780631159aca4146103c5575b600080fd5b3480156102da57600080fd5b506102f560048036038101906102f09190613ca2565b610b4f565b6040516103029190613cea565b60405180910390f35b34801561031757600080fd5b50610320610c31565b60405161032d9190613d9e565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190613df6565b610cc3565b60405161036a9190613e64565b60405180910390f35b34801561037f57600080fd5b5061039a60048036038101906103959190613eab565b610d3f565b005b3480156103a857600080fd5b506103c360048036038101906103be9190613df6565b610e4a565b005b3480156103d157600080fd5b506103da610f15565b6040516103e79190613efa565b60405180910390f35b3480156103fc57600080fd5b50610405610f1b565b6040516104129190613efa565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d919061404a565b610f21565b005b34801561045057600080fd5b5061046b600480360381019061046691906140bf565b610fb7565b005b34801561047957600080fd5b50610482611050565b60405161048f9190613efa565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba91906140ec565b611067565b6040516104cc9190613efa565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f79190614119565b61107f565b005b34801561050a57600080fd5b5061051361108f565b6040516105209190613cea565b60405180910390f35b34801561053557600080fd5b5061053e6110a2565b60405161054b9190613d9e565b60405180910390f35b61055c611130565b005b34801561056a57600080fd5b5061058560048036038101906105809190614119565b61122c565b005b34801561059357600080fd5b506105ae60048036038101906105a991906140ec565b61124c565b6040516105bb919061422a565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e69190613df6565b611467565b005b3480156105f957600080fd5b50610614600480360381019061060f919061404a565b6114ed565b005b34801561062257600080fd5b5061062b611583565b6040516106389190613cea565b60405180910390f35b34801561064d57600080fd5b50610656611596565b6040516106639190613d9e565b60405180910390f35b34801561067857600080fd5b50610693600480360381019061068e91906140bf565b611624565b005b3480156106a157600080fd5b506106aa6116bd565b6040516106b79190613cea565b60405180910390f35b3480156106cc57600080fd5b506106d56116d0565b6040516106e29190613d9e565b60405180910390f35b3480156106f757600080fd5b5061070061175e565b60405161070d9190613d9e565b60405180910390f35b34801561072257600080fd5b5061073d60048036038101906107389190613df6565b6117ec565b60405161074a9190613e64565b60405180910390f35b34801561075f57600080fd5b5061077a600480360381019061077591906140ec565b611802565b6040516107879190613efa565b60405180910390f35b34801561079c57600080fd5b506107a56118d2565b005b3480156107b357600080fd5b506107ce60048036038101906107c9919061404a565b61195a565b005b3480156107dc57600080fd5b506107e56119f0565b6040516107f29190613d9e565b60405180910390f35b34801561080757600080fd5b50610810611a7e565b60405161081d9190613e64565b60405180910390f35b34801561083257600080fd5b5061083b611aa8565b6040516108489190613efa565b60405180910390f35b34801561085d57600080fd5b50610866611aae565b6040516108739190613d9e565b60405180910390f35b61089660048036038101906108919190613df6565b611b40565b005b3480156108a457600080fd5b506108bf60048036038101906108ba919061424c565b611eef565b005b3480156108cd57600080fd5b506108d6612067565b6040516108e39190613d9e565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190613df6565b6120f5565b005b34801561092157600080fd5b5061093c6004803603810190610937919061432d565b61217b565b005b34801561094a57600080fd5b5061096560048036038101906109609190613df6565b6121f7565b6040516109729190613d9e565b60405180910390f35b34801561098757600080fd5b50610990612350565b60405161099d9190613d9e565b60405180910390f35b3480156109b257600080fd5b506109cd60048036038101906109c89190613df6565b6123de565b005b3480156109db57600080fd5b506109e4612464565b6040516109f19190613efa565b60405180910390f35b348015610a0657600080fd5b50610a0f61246a565b604051610a1c9190613d9e565b60405180910390f35b348015610a3157600080fd5b50610a4c6004803603810190610a4791906140bf565b6124f8565b005b348015610a5a57600080fd5b50610a63612591565b604051610a709190613d9e565b60405180910390f35b348015610a8557600080fd5b50610a8e61261f565b604051610a9b9190613efa565b60405180910390f35b348015610ab057600080fd5b50610acb6004803603810190610ac691906143b0565b612625565b604051610ad89190613cea565b60405180910390f35b348015610aed57600080fd5b50610b086004803603810190610b0391906143f0565b6126b9565b005b610b246004803603810190610b1f9190613df6565b612828565b005b348015610b3257600080fd5b50610b4d6004803603810190610b4891906140ec565b612952565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c1a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c2a5750610c2982612a6d565b5b9050919050565b606060028054610c409061445f565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6c9061445f565b8015610cb95780601f10610c8e57610100808354040283529160200191610cb9565b820191906000526020600020905b815481529060010190602001808311610c9c57829003601f168201915b5050505050905090565b6000610cce82612ad7565b610d04576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d4a826117ec565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610db2576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dd1612b25565b73ffffffffffffffffffffffffffffffffffffffff1614158015610e035750610e0181610dfc612b25565b612625565b155b15610e3a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e45838383612b2d565b505050565b610e52612b25565b73ffffffffffffffffffffffffffffffffffffffff16610e70611a7e565b73ffffffffffffffffffffffffffffffffffffffff1614610ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebd906144dd565b60405180910390fd5b600d54811115610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0290614549565b60405180910390fd5b80600f8190555050565b60105481565b600c5481565b610f29612b25565b73ffffffffffffffffffffffffffffffffffffffff16610f47611a7e565b73ffffffffffffffffffffffffffffffffffffffff1614610f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f94906144dd565b60405180910390fd5b80600a9080519060200190610fb3929190613b50565b5050565b610fbf612b25565b73ffffffffffffffffffffffffffffffffffffffff16610fdd611a7e565b73ffffffffffffffffffffffffffffffffffffffff1614611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a906144dd565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b600061105a612bdf565b6001546000540303905090565b60186020528060005260406000206000915090505481565b61108a838383612be8565b505050565b601160019054906101000a900460ff1681565b601580546110af9061445f565b80601f01602080910402602001604051908101604052809291908181526020018280546110db9061445f565b80156111285780601f106110fd57610100808354040283529160200191611128565b820191906000526020600020905b81548152906001019060200180831161110b57829003601f168201915b505050505081565b611138612b25565b73ffffffffffffffffffffffffffffffffffffffff16611156611a7e565b73ffffffffffffffffffffffffffffffffffffffff16146111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a3906144dd565b60405180910390fd5b60006111b6611a7e565b73ffffffffffffffffffffffffffffffffffffffff16476040516111d99061459a565b60006040518083038185875af1925050503d8060008114611216576040519150601f19603f3d011682016040523d82523d6000602084013e61121b565b606091505b505090508061122957600080fd5b50565b6112478383836040518060200160405280600081525061217b565b505050565b6060600061125983611802565b905060008167ffffffffffffffff81111561127757611276613f1f565b5b6040519080825280602002602001820160405280156112a55781602001602082028036833780820191505090505b50905060006112b2612bdf565b90506000805b84821080156112c95750600d548311155b1561145a576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511580156113d65750600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614155b156113e357806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611446578385848151811061142b5761142a6145af565b5b60200260200101818152505082806114429061460d565b9350505b83806114519061460d565b945050506112b8565b8395505050505050919050565b61146f612b25565b73ffffffffffffffffffffffffffffffffffffffff1661148d611a7e565b73ffffffffffffffffffffffffffffffffffffffff16146114e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114da906144dd565b60405180910390fd5b80600c8190555050565b6114f5612b25565b73ffffffffffffffffffffffffffffffffffffffff16611513611a7e565b73ffffffffffffffffffffffffffffffffffffffff1614611569576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611560906144dd565b60405180910390fd5b80600b908051906020019061157f929190613b50565b5050565b601160029054906101000a900460ff1681565b600a80546115a39061445f565b80601f01602080910402602001604051908101604052809291908181526020018280546115cf9061445f565b801561161c5780601f106115f15761010080835404028352916020019161161c565b820191906000526020600020905b8154815290600101906020018083116115ff57829003601f168201915b505050505081565b61162c612b25565b73ffffffffffffffffffffffffffffffffffffffff1661164a611a7e565b73ffffffffffffffffffffffffffffffffffffffff16146116a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611697906144dd565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b601160009054906101000a900460ff1681565b600980546116dd9061445f565b80601f01602080910402602001604051908101604052809291908181526020018280546117099061445f565b80156117565780601f1061172b57610100808354040283529160200191611756565b820191906000526020600020905b81548152906001019060200180831161173957829003601f168201915b505050505081565b6014805461176b9061445f565b80601f01602080910402602001604051908101604052809291908181526020018280546117979061445f565b80156117e45780601f106117b9576101008083540402835291602001916117e4565b820191906000526020600020905b8154815290600101906020018083116117c757829003601f168201915b505050505081565b60006117f78261309e565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561186a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6118da612b25565b73ffffffffffffffffffffffffffffffffffffffff166118f8611a7e565b73ffffffffffffffffffffffffffffffffffffffff161461194e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611945906144dd565b60405180910390fd5b611958600061332d565b565b611962612b25565b73ffffffffffffffffffffffffffffffffffffffff16611980611a7e565b73ffffffffffffffffffffffffffffffffffffffff16146119d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cd906144dd565b60405180910390fd5b80600990805190602001906119ec929190613b50565b5050565b601780546119fd9061445f565b80601f0160208091040260200160405190810160405280929190818152602001828054611a299061445f565b8015611a765780601f10611a4b57610100808354040283529160200191611a76565b820191906000526020600020905b815481529060010190602001808311611a5957829003601f168201915b505050505081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b606060038054611abd9061445f565b80601f0160208091040260200160405190810160405280929190818152602001828054611ae99061445f565b8015611b365780601f10611b0b57610100808354040283529160200191611b36565b820191906000526020600020905b815481529060010190602001808311611b1957829003601f168201915b5050505050905090565b80611b49611a7e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611bcd57600081118015611b8d5750600e548111155b611bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc3906146a2565b60405180910390fd5b5b600d5481611bd9611050565b611be391906146c2565b1115611c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1b90614764565b60405180910390fd5b816000601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506010548110611cc35781600c54611c809190614784565b341015611cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb99061482a565b60405180910390fd5b5b601160009054906101000a900460ff1615611d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0a90614896565b60405180910390fd5b601160019054906101000a900460ff16611d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5990614902565b60405180910390fd5b6000601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601054811015611e05576010548582611dbf91906146c2565b1115611e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df79061496e565b60405180910390fd5b611e60565b6010548110611e5f57600f548582611e1d91906146c2565b1115611e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e55906149da565b60405180910390fd5b5b5b611e71611e6b612b25565b866133f3565b6000600190505b858111611ee757601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611ecf9061460d565b91905055508080611edf9061460d565b915050611e78565b505050505050565b611ef7612b25565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f5c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611f69612b25565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612016612b25565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161205b9190613cea565b60405180910390a35050565b600b80546120749061445f565b80601f01602080910402602001604051908101604052809291908181526020018280546120a09061445f565b80156120ed5780601f106120c2576101008083540402835291602001916120ed565b820191906000526020600020905b8154815290600101906020018083116120d057829003601f168201915b505050505081565b6120fd612b25565b73ffffffffffffffffffffffffffffffffffffffff1661211b611a7e565b73ffffffffffffffffffffffffffffffffffffffff1614612171576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612168906144dd565b60405180910390fd5b80600e8190555050565b612186848484612be8565b6121a58373ffffffffffffffffffffffffffffffffffffffff16612a4a565b80156121ba57506121b884848484613411565b155b156121f1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061220282612ad7565b612241576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223890614a6c565b60405180910390fd5b60001515601160029054906101000a900460ff16151514156122ef57600b805461226a9061445f565b80601f01602080910402602001604051908101604052809291908181526020018280546122969061445f565b80156122e35780601f106122b8576101008083540402835291602001916122e3565b820191906000526020600020905b8154815290600101906020018083116122c657829003601f168201915b5050505050905061234b565b60006122f9613571565b905060008151116123195760405180602001604052806000815250612347565b8061232384613603565b600a60405160200161233793929190614b5c565b6040516020818303038152906040525b9150505b919050565b6012805461235d9061445f565b80601f01602080910402602001604051908101604052809291908181526020018280546123899061445f565b80156123d65780601f106123ab576101008083540402835291602001916123d6565b820191906000526020600020905b8154815290600101906020018083116123b957829003601f168201915b505050505081565b6123e6612b25565b73ffffffffffffffffffffffffffffffffffffffff16612404611a7e565b73ffffffffffffffffffffffffffffffffffffffff161461245a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612451906144dd565b60405180910390fd5b8060108190555050565b600d5481565b601380546124779061445f565b80601f01602080910402602001604051908101604052809291908181526020018280546124a39061445f565b80156124f05780601f106124c5576101008083540402835291602001916124f0565b820191906000526020600020905b8154815290600101906020018083116124d357829003601f168201915b505050505081565b612500612b25565b73ffffffffffffffffffffffffffffffffffffffff1661251e611a7e565b73ffffffffffffffffffffffffffffffffffffffff1614612574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256b906144dd565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b6016805461259e9061445f565b80601f01602080910402602001604051908101604052809291908181526020018280546125ca9061445f565b80156126175780601f106125ec57610100808354040283529160200191612617565b820191906000526020600020905b8154815290600101906020018083116125fa57829003601f168201915b505050505081565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816126c2611a7e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612746576000811180156127065750600e548111155b612745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273c906146a2565b60405180910390fd5b5b600d5481612752611050565b61275c91906146c2565b111561279d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279490614764565b60405180910390fd5b6127a5612b25565b73ffffffffffffffffffffffffffffffffffffffff166127c3611a7e565b73ffffffffffffffffffffffffffffffffffffffff1614612819576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612810906144dd565b60405180910390fd5b61282382846133f3565b505050565b612830612b25565b73ffffffffffffffffffffffffffffffffffffffff1661284e611a7e565b73ffffffffffffffffffffffffffffffffffffffff16146128a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289b906144dd565b60405180910390fd5b600081116128e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128de906146a2565b60405180910390fd5b600d54816128f3611050565b6128fd91906146c2565b111561293e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293590614764565b60405180910390fd5b61294f612949612b25565b826133f3565b50565b61295a612b25565b73ffffffffffffffffffffffffffffffffffffffff16612978611a7e565b73ffffffffffffffffffffffffffffffffffffffff16146129ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c5906144dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3590614bff565b60405180910390fd5b612a478161332d565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612ae2612bdf565b11158015612af1575060005482105b8015612b1e575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000612bf38261309e565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c5e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612c7f612b25565b73ffffffffffffffffffffffffffffffffffffffff161480612cae5750612cad85612ca8612b25565b612625565b5b80612cf35750612cbc612b25565b73ffffffffffffffffffffffffffffffffffffffff16612cdb84610cc3565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612d2c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612d93576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612da08585856001613764565b612dac60008487612b2d565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561302c57600054821461302b57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613097858585600161376a565b5050505050565b6130a6613bd6565b6000829050806130b4612bdf565b111580156130c3575060005481105b156132f6576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516132f457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146131d8578092505050613328565b5b6001156132f357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146132ee578092505050613328565b6131d9565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61340d828260405180602001604052806000815250613770565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613437612b25565b8786866040518563ffffffff1660e01b81526004016134599493929190614c74565b602060405180830381600087803b15801561347357600080fd5b505af19250505080156134a457506040513d601f19601f820116820180604052508101906134a19190614cd5565b60015b61351e573d80600081146134d4576040519150601f19603f3d011682016040523d82523d6000602084013e6134d9565b606091505b50600081511415613516576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546135809061445f565b80601f01602080910402602001604051908101604052809291908181526020018280546135ac9061445f565b80156135f95780601f106135ce576101008083540402835291602001916135f9565b820191906000526020600020905b8154815290600101906020018083116135dc57829003601f168201915b5050505050905090565b6060600082141561364b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061375f565b600082905060005b6000821461367d5780806136669061460d565b915050600a826136769190614d31565b9150613653565b60008167ffffffffffffffff81111561369957613698613f1f565b5b6040519080825280601f01601f1916602001820160405280156136cb5781602001600182028036833780820191505090505b5090505b60008514613758576001826136e49190614d62565b9150600a856136f39190614d96565b60306136ff91906146c2565b60f81b818381518110613715576137146145af565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856137519190614d31565b94506136cf565b8093505050505b919050565b50505050565b50505050565b61377d8383836001613782565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156137ef576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561382a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6138376000868387613764565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015613a015750613a008773ffffffffffffffffffffffffffffffffffffffff16612a4a565b5b15613ac7575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613a766000888480600101955088613411565b613aac576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415613a07578260005414613ac257600080fd5b613b33565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613ac8575b816000819055505050613b49600086838761376a565b5050505050565b828054613b5c9061445f565b90600052602060002090601f016020900481019282613b7e5760008555613bc5565b82601f10613b9757805160ff1916838001178555613bc5565b82800160010185558215613bc5579182015b82811115613bc4578251825591602001919060010190613ba9565b5b509050613bd29190613c19565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613c32576000816000905550600101613c1a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613c7f81613c4a565b8114613c8a57600080fd5b50565b600081359050613c9c81613c76565b92915050565b600060208284031215613cb857613cb7613c40565b5b6000613cc684828501613c8d565b91505092915050565b60008115159050919050565b613ce481613ccf565b82525050565b6000602082019050613cff6000830184613cdb565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d3f578082015181840152602081019050613d24565b83811115613d4e576000848401525b50505050565b6000601f19601f8301169050919050565b6000613d7082613d05565b613d7a8185613d10565b9350613d8a818560208601613d21565b613d9381613d54565b840191505092915050565b60006020820190508181036000830152613db88184613d65565b905092915050565b6000819050919050565b613dd381613dc0565b8114613dde57600080fd5b50565b600081359050613df081613dca565b92915050565b600060208284031215613e0c57613e0b613c40565b5b6000613e1a84828501613de1565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e4e82613e23565b9050919050565b613e5e81613e43565b82525050565b6000602082019050613e796000830184613e55565b92915050565b613e8881613e43565b8114613e9357600080fd5b50565b600081359050613ea581613e7f565b92915050565b60008060408385031215613ec257613ec1613c40565b5b6000613ed085828601613e96565b9250506020613ee185828601613de1565b9150509250929050565b613ef481613dc0565b82525050565b6000602082019050613f0f6000830184613eeb565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f5782613d54565b810181811067ffffffffffffffff82111715613f7657613f75613f1f565b5b80604052505050565b6000613f89613c36565b9050613f958282613f4e565b919050565b600067ffffffffffffffff821115613fb557613fb4613f1f565b5b613fbe82613d54565b9050602081019050919050565b82818337600083830152505050565b6000613fed613fe884613f9a565b613f7f565b90508281526020810184848401111561400957614008613f1a565b5b614014848285613fcb565b509392505050565b600082601f83011261403157614030613f15565b5b8135614041848260208601613fda565b91505092915050565b6000602082840312156140605761405f613c40565b5b600082013567ffffffffffffffff81111561407e5761407d613c45565b5b61408a8482850161401c565b91505092915050565b61409c81613ccf565b81146140a757600080fd5b50565b6000813590506140b981614093565b92915050565b6000602082840312156140d5576140d4613c40565b5b60006140e3848285016140aa565b91505092915050565b60006020828403121561410257614101613c40565b5b600061411084828501613e96565b91505092915050565b60008060006060848603121561413257614131613c40565b5b600061414086828701613e96565b935050602061415186828701613e96565b925050604061416286828701613de1565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6141a181613dc0565b82525050565b60006141b38383614198565b60208301905092915050565b6000602082019050919050565b60006141d78261416c565b6141e18185614177565b93506141ec83614188565b8060005b8381101561421d57815161420488826141a7565b975061420f836141bf565b9250506001810190506141f0565b5085935050505092915050565b6000602082019050818103600083015261424481846141cc565b905092915050565b6000806040838503121561426357614262613c40565b5b600061427185828601613e96565b9250506020614282858286016140aa565b9150509250929050565b600067ffffffffffffffff8211156142a7576142a6613f1f565b5b6142b082613d54565b9050602081019050919050565b60006142d06142cb8461428c565b613f7f565b9050828152602081018484840111156142ec576142eb613f1a565b5b6142f7848285613fcb565b509392505050565b600082601f83011261431457614313613f15565b5b81356143248482602086016142bd565b91505092915050565b6000806000806080858703121561434757614346613c40565b5b600061435587828801613e96565b945050602061436687828801613e96565b935050604061437787828801613de1565b925050606085013567ffffffffffffffff81111561439857614397613c45565b5b6143a4878288016142ff565b91505092959194509250565b600080604083850312156143c7576143c6613c40565b5b60006143d585828601613e96565b92505060206143e685828601613e96565b9150509250929050565b6000806040838503121561440757614406613c40565b5b600061441585828601613de1565b925050602061442685828601613e96565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061447757607f821691505b6020821081141561448b5761448a614430565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006144c7602083613d10565b91506144d282614491565b602082019050919050565b600060208201905081810360008301526144f6816144ba565b9050919050565b7f45786365656420746f74616c20616d6f756e7400000000000000000000000000600082015250565b6000614533601383613d10565b915061453e826144fd565b602082019050919050565b6000602082019050818103600083015261456281614526565b9050919050565b600081905092915050565b50565b6000614584600083614569565b915061458f82614574565b600082019050919050565b60006145a582614577565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061461882613dc0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561464b5761464a6145de565b5b600182019050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b600061468c601483613d10565b915061469782614656565b602082019050919050565b600060208201905081810360008301526146bb8161467f565b9050919050565b60006146cd82613dc0565b91506146d883613dc0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561470d5761470c6145de565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b600061474e601483613d10565b915061475982614718565b602082019050919050565b6000602082019050818103600083015261477d81614741565b9050919050565b600061478f82613dc0565b915061479a83613dc0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147d3576147d26145de565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000614814601383613d10565b915061481f826147de565b602082019050919050565b6000602082019050818103600083015261484381614807565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000614880601783613d10565b915061488b8261484a565b602082019050919050565b600060208201905081810360008301526148af81614873565b9050919050565b7f4e6f74206f70656e20746f207075626c69632079657421000000000000000000600082015250565b60006148ec601783613d10565b91506148f7826148b6565b602082019050919050565b6000602082019050818103600083015261491b816148df565b9050919050565b7f45786365656465642046726565204d696e74204c696d69740000000000000000600082015250565b6000614958601883613d10565b915061496382614922565b602082019050919050565b600060208201905081810360008301526149878161494b565b9050919050565b7f4578636565646564204d696e74204c696d697400000000000000000000000000600082015250565b60006149c4601383613d10565b91506149cf8261498e565b602082019050919050565b600060208201905081810360008301526149f3816149b7565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614a56602f83613d10565b9150614a61826149fa565b604082019050919050565b60006020820190508181036000830152614a8581614a49565b9050919050565b600081905092915050565b6000614aa282613d05565b614aac8185614a8c565b9350614abc818560208601613d21565b80840191505092915050565b60008190508160005260206000209050919050565b60008154614aea8161445f565b614af48186614a8c565b94506001821660008114614b0f5760018114614b2057614b53565b60ff19831686528186019350614b53565b614b2985614ac8565b60005b83811015614b4b57815481890152600182019150602081019050614b2c565b838801955050505b50505092915050565b6000614b688286614a97565b9150614b748285614a97565b9150614b808284614add565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614be9602683613d10565b9150614bf482614b8d565b604082019050919050565b60006020820190508181036000830152614c1881614bdc565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614c4682614c1f565b614c508185614c2a565b9350614c60818560208601613d21565b614c6981613d54565b840191505092915050565b6000608082019050614c896000830187613e55565b614c966020830186613e55565b614ca36040830185613eeb565b8181036060830152614cb58184614c3b565b905095945050505050565b600081519050614ccf81613c76565b92915050565b600060208284031215614ceb57614cea613c40565b5b6000614cf984828501614cc0565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d3c82613dc0565b9150614d4783613dc0565b925082614d5757614d56614d02565b5b828204905092915050565b6000614d6d82613dc0565b9150614d7883613dc0565b925082821015614d8b57614d8a6145de565b5b828203905092915050565b6000614da182613dc0565b9150614dac83613dc0565b925082614dbc57614dbb614d02565b5b82820690509291505056fea2646970667358221220d83e7d7a6e5a5d2ef6576dbbc8c3e3c746ae6b5c50513261f5b8d60698a1e30c64736f6c63430008090033697066733a2f2f6261666b726569617068366f3765677577376d6a796d3265756b726a66666e3270716565736166376478697472736362766a3736796b66747332342f68696464656e2e6a736f6e

Deployed Bytecode

0x6080604052600436106102c95760003560e01c80636352211e11610175578063b88d4fde116100dc578063e0a8085311610095578063e985e9c51161006f578063e985e9c514610aa4578063efbd73f414610ae1578063f19e75d414610b0a578063f2fde38b14610b26576102c9565b8063e0a8085314610a25578063e1a38e8914610a4e578063e4386d2614610a79576102c9565b8063b88d4fde14610915578063c87b56dd1461093e578063d27d94211461097b578063d4fcb2ae146109a6578063d5abeb01146109cf578063d83a690f146109fa576102c9565b806394354fd01161012e57806394354fd01461082657806395d89b4114610851578063a0712d681461087c578063a22cb46514610898578063a45ba8e7146108c1578063b071401b146108ec576102c9565b80636352211e1461071657806370a0823114610753578063715018a6146107905780637ec4a659146107a7578063837a9bc7146107d05780638da5cb5b146107fb576102c9565b806333bc1c5c116102345780634fdd43cb116101ed5780635aca1bb6116101c75780635aca1bb61461066c5780635c975abb1461069557806362b99ad4146106c05780636328c678146106eb576102c9565b80634fdd43cb146105ed57806351830227146106165780635503a0e814610641576102c9565b806333bc1c5c146104fe578063370970df146105295780633ccfd60b1461055457806342842e0e1461055e578063438b63001461058757806344a0d68a146105c4576102c9565b806313faede61161028657806313faede6146103f057806316ba10e01461041b57806316c38b3c1461044457806318160ddd1461046d57806318cae2691461049857806323b872dd146104d5576102c9565b806301ffc9a7146102ce57806306fdde031461030b578063081812fc14610336578063095ea7b3146103735780631042779c1461039c5780631159aca4146103c5575b600080fd5b3480156102da57600080fd5b506102f560048036038101906102f09190613ca2565b610b4f565b6040516103029190613cea565b60405180910390f35b34801561031757600080fd5b50610320610c31565b60405161032d9190613d9e565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190613df6565b610cc3565b60405161036a9190613e64565b60405180910390f35b34801561037f57600080fd5b5061039a60048036038101906103959190613eab565b610d3f565b005b3480156103a857600080fd5b506103c360048036038101906103be9190613df6565b610e4a565b005b3480156103d157600080fd5b506103da610f15565b6040516103e79190613efa565b60405180910390f35b3480156103fc57600080fd5b50610405610f1b565b6040516104129190613efa565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d919061404a565b610f21565b005b34801561045057600080fd5b5061046b600480360381019061046691906140bf565b610fb7565b005b34801561047957600080fd5b50610482611050565b60405161048f9190613efa565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba91906140ec565b611067565b6040516104cc9190613efa565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f79190614119565b61107f565b005b34801561050a57600080fd5b5061051361108f565b6040516105209190613cea565b60405180910390f35b34801561053557600080fd5b5061053e6110a2565b60405161054b9190613d9e565b60405180910390f35b61055c611130565b005b34801561056a57600080fd5b5061058560048036038101906105809190614119565b61122c565b005b34801561059357600080fd5b506105ae60048036038101906105a991906140ec565b61124c565b6040516105bb919061422a565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e69190613df6565b611467565b005b3480156105f957600080fd5b50610614600480360381019061060f919061404a565b6114ed565b005b34801561062257600080fd5b5061062b611583565b6040516106389190613cea565b60405180910390f35b34801561064d57600080fd5b50610656611596565b6040516106639190613d9e565b60405180910390f35b34801561067857600080fd5b50610693600480360381019061068e91906140bf565b611624565b005b3480156106a157600080fd5b506106aa6116bd565b6040516106b79190613cea565b60405180910390f35b3480156106cc57600080fd5b506106d56116d0565b6040516106e29190613d9e565b60405180910390f35b3480156106f757600080fd5b5061070061175e565b60405161070d9190613d9e565b60405180910390f35b34801561072257600080fd5b5061073d60048036038101906107389190613df6565b6117ec565b60405161074a9190613e64565b60405180910390f35b34801561075f57600080fd5b5061077a600480360381019061077591906140ec565b611802565b6040516107879190613efa565b60405180910390f35b34801561079c57600080fd5b506107a56118d2565b005b3480156107b357600080fd5b506107ce60048036038101906107c9919061404a565b61195a565b005b3480156107dc57600080fd5b506107e56119f0565b6040516107f29190613d9e565b60405180910390f35b34801561080757600080fd5b50610810611a7e565b60405161081d9190613e64565b60405180910390f35b34801561083257600080fd5b5061083b611aa8565b6040516108489190613efa565b60405180910390f35b34801561085d57600080fd5b50610866611aae565b6040516108739190613d9e565b60405180910390f35b61089660048036038101906108919190613df6565b611b40565b005b3480156108a457600080fd5b506108bf60048036038101906108ba919061424c565b611eef565b005b3480156108cd57600080fd5b506108d6612067565b6040516108e39190613d9e565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190613df6565b6120f5565b005b34801561092157600080fd5b5061093c6004803603810190610937919061432d565b61217b565b005b34801561094a57600080fd5b5061096560048036038101906109609190613df6565b6121f7565b6040516109729190613d9e565b60405180910390f35b34801561098757600080fd5b50610990612350565b60405161099d9190613d9e565b60405180910390f35b3480156109b257600080fd5b506109cd60048036038101906109c89190613df6565b6123de565b005b3480156109db57600080fd5b506109e4612464565b6040516109f19190613efa565b60405180910390f35b348015610a0657600080fd5b50610a0f61246a565b604051610a1c9190613d9e565b60405180910390f35b348015610a3157600080fd5b50610a4c6004803603810190610a4791906140bf565b6124f8565b005b348015610a5a57600080fd5b50610a63612591565b604051610a709190613d9e565b60405180910390f35b348015610a8557600080fd5b50610a8e61261f565b604051610a9b9190613efa565b60405180910390f35b348015610ab057600080fd5b50610acb6004803603810190610ac691906143b0565b612625565b604051610ad89190613cea565b60405180910390f35b348015610aed57600080fd5b50610b086004803603810190610b0391906143f0565b6126b9565b005b610b246004803603810190610b1f9190613df6565b612828565b005b348015610b3257600080fd5b50610b4d6004803603810190610b4891906140ec565b612952565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c1a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c2a5750610c2982612a6d565b5b9050919050565b606060028054610c409061445f565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6c9061445f565b8015610cb95780601f10610c8e57610100808354040283529160200191610cb9565b820191906000526020600020905b815481529060010190602001808311610c9c57829003601f168201915b5050505050905090565b6000610cce82612ad7565b610d04576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d4a826117ec565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610db2576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dd1612b25565b73ffffffffffffffffffffffffffffffffffffffff1614158015610e035750610e0181610dfc612b25565b612625565b155b15610e3a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e45838383612b2d565b505050565b610e52612b25565b73ffffffffffffffffffffffffffffffffffffffff16610e70611a7e565b73ffffffffffffffffffffffffffffffffffffffff1614610ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebd906144dd565b60405180910390fd5b600d54811115610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0290614549565b60405180910390fd5b80600f8190555050565b60105481565b600c5481565b610f29612b25565b73ffffffffffffffffffffffffffffffffffffffff16610f47611a7e565b73ffffffffffffffffffffffffffffffffffffffff1614610f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f94906144dd565b60405180910390fd5b80600a9080519060200190610fb3929190613b50565b5050565b610fbf612b25565b73ffffffffffffffffffffffffffffffffffffffff16610fdd611a7e565b73ffffffffffffffffffffffffffffffffffffffff1614611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a906144dd565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b600061105a612bdf565b6001546000540303905090565b60186020528060005260406000206000915090505481565b61108a838383612be8565b505050565b601160019054906101000a900460ff1681565b601580546110af9061445f565b80601f01602080910402602001604051908101604052809291908181526020018280546110db9061445f565b80156111285780601f106110fd57610100808354040283529160200191611128565b820191906000526020600020905b81548152906001019060200180831161110b57829003601f168201915b505050505081565b611138612b25565b73ffffffffffffffffffffffffffffffffffffffff16611156611a7e565b73ffffffffffffffffffffffffffffffffffffffff16146111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a3906144dd565b60405180910390fd5b60006111b6611a7e565b73ffffffffffffffffffffffffffffffffffffffff16476040516111d99061459a565b60006040518083038185875af1925050503d8060008114611216576040519150601f19603f3d011682016040523d82523d6000602084013e61121b565b606091505b505090508061122957600080fd5b50565b6112478383836040518060200160405280600081525061217b565b505050565b6060600061125983611802565b905060008167ffffffffffffffff81111561127757611276613f1f565b5b6040519080825280602002602001820160405280156112a55781602001602082028036833780820191505090505b50905060006112b2612bdf565b90506000805b84821080156112c95750600d548311155b1561145a576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511580156113d65750600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614155b156113e357806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611446578385848151811061142b5761142a6145af565b5b60200260200101818152505082806114429061460d565b9350505b83806114519061460d565b945050506112b8565b8395505050505050919050565b61146f612b25565b73ffffffffffffffffffffffffffffffffffffffff1661148d611a7e565b73ffffffffffffffffffffffffffffffffffffffff16146114e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114da906144dd565b60405180910390fd5b80600c8190555050565b6114f5612b25565b73ffffffffffffffffffffffffffffffffffffffff16611513611a7e565b73ffffffffffffffffffffffffffffffffffffffff1614611569576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611560906144dd565b60405180910390fd5b80600b908051906020019061157f929190613b50565b5050565b601160029054906101000a900460ff1681565b600a80546115a39061445f565b80601f01602080910402602001604051908101604052809291908181526020018280546115cf9061445f565b801561161c5780601f106115f15761010080835404028352916020019161161c565b820191906000526020600020905b8154815290600101906020018083116115ff57829003601f168201915b505050505081565b61162c612b25565b73ffffffffffffffffffffffffffffffffffffffff1661164a611a7e565b73ffffffffffffffffffffffffffffffffffffffff16146116a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611697906144dd565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b601160009054906101000a900460ff1681565b600980546116dd9061445f565b80601f01602080910402602001604051908101604052809291908181526020018280546117099061445f565b80156117565780601f1061172b57610100808354040283529160200191611756565b820191906000526020600020905b81548152906001019060200180831161173957829003601f168201915b505050505081565b6014805461176b9061445f565b80601f01602080910402602001604051908101604052809291908181526020018280546117979061445f565b80156117e45780601f106117b9576101008083540402835291602001916117e4565b820191906000526020600020905b8154815290600101906020018083116117c757829003601f168201915b505050505081565b60006117f78261309e565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561186a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6118da612b25565b73ffffffffffffffffffffffffffffffffffffffff166118f8611a7e565b73ffffffffffffffffffffffffffffffffffffffff161461194e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611945906144dd565b60405180910390fd5b611958600061332d565b565b611962612b25565b73ffffffffffffffffffffffffffffffffffffffff16611980611a7e565b73ffffffffffffffffffffffffffffffffffffffff16146119d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cd906144dd565b60405180910390fd5b80600990805190602001906119ec929190613b50565b5050565b601780546119fd9061445f565b80601f0160208091040260200160405190810160405280929190818152602001828054611a299061445f565b8015611a765780601f10611a4b57610100808354040283529160200191611a76565b820191906000526020600020905b815481529060010190602001808311611a5957829003601f168201915b505050505081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b606060038054611abd9061445f565b80601f0160208091040260200160405190810160405280929190818152602001828054611ae99061445f565b8015611b365780601f10611b0b57610100808354040283529160200191611b36565b820191906000526020600020905b815481529060010190602001808311611b1957829003601f168201915b5050505050905090565b80611b49611a7e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611bcd57600081118015611b8d5750600e548111155b611bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc3906146a2565b60405180910390fd5b5b600d5481611bd9611050565b611be391906146c2565b1115611c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1b90614764565b60405180910390fd5b816000601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506010548110611cc35781600c54611c809190614784565b341015611cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb99061482a565b60405180910390fd5b5b601160009054906101000a900460ff1615611d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0a90614896565b60405180910390fd5b601160019054906101000a900460ff16611d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5990614902565b60405180910390fd5b6000601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601054811015611e05576010548582611dbf91906146c2565b1115611e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df79061496e565b60405180910390fd5b611e60565b6010548110611e5f57600f548582611e1d91906146c2565b1115611e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e55906149da565b60405180910390fd5b5b5b611e71611e6b612b25565b866133f3565b6000600190505b858111611ee757601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611ecf9061460d565b91905055508080611edf9061460d565b915050611e78565b505050505050565b611ef7612b25565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f5c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611f69612b25565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612016612b25565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161205b9190613cea565b60405180910390a35050565b600b80546120749061445f565b80601f01602080910402602001604051908101604052809291908181526020018280546120a09061445f565b80156120ed5780601f106120c2576101008083540402835291602001916120ed565b820191906000526020600020905b8154815290600101906020018083116120d057829003601f168201915b505050505081565b6120fd612b25565b73ffffffffffffffffffffffffffffffffffffffff1661211b611a7e565b73ffffffffffffffffffffffffffffffffffffffff1614612171576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612168906144dd565b60405180910390fd5b80600e8190555050565b612186848484612be8565b6121a58373ffffffffffffffffffffffffffffffffffffffff16612a4a565b80156121ba57506121b884848484613411565b155b156121f1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061220282612ad7565b612241576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223890614a6c565b60405180910390fd5b60001515601160029054906101000a900460ff16151514156122ef57600b805461226a9061445f565b80601f01602080910402602001604051908101604052809291908181526020018280546122969061445f565b80156122e35780601f106122b8576101008083540402835291602001916122e3565b820191906000526020600020905b8154815290600101906020018083116122c657829003601f168201915b5050505050905061234b565b60006122f9613571565b905060008151116123195760405180602001604052806000815250612347565b8061232384613603565b600a60405160200161233793929190614b5c565b6040516020818303038152906040525b9150505b919050565b6012805461235d9061445f565b80601f01602080910402602001604051908101604052809291908181526020018280546123899061445f565b80156123d65780601f106123ab576101008083540402835291602001916123d6565b820191906000526020600020905b8154815290600101906020018083116123b957829003601f168201915b505050505081565b6123e6612b25565b73ffffffffffffffffffffffffffffffffffffffff16612404611a7e565b73ffffffffffffffffffffffffffffffffffffffff161461245a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612451906144dd565b60405180910390fd5b8060108190555050565b600d5481565b601380546124779061445f565b80601f01602080910402602001604051908101604052809291908181526020018280546124a39061445f565b80156124f05780601f106124c5576101008083540402835291602001916124f0565b820191906000526020600020905b8154815290600101906020018083116124d357829003601f168201915b505050505081565b612500612b25565b73ffffffffffffffffffffffffffffffffffffffff1661251e611a7e565b73ffffffffffffffffffffffffffffffffffffffff1614612574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256b906144dd565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b6016805461259e9061445f565b80601f01602080910402602001604051908101604052809291908181526020018280546125ca9061445f565b80156126175780601f106125ec57610100808354040283529160200191612617565b820191906000526020600020905b8154815290600101906020018083116125fa57829003601f168201915b505050505081565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816126c2611a7e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612746576000811180156127065750600e548111155b612745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273c906146a2565b60405180910390fd5b5b600d5481612752611050565b61275c91906146c2565b111561279d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279490614764565b60405180910390fd5b6127a5612b25565b73ffffffffffffffffffffffffffffffffffffffff166127c3611a7e565b73ffffffffffffffffffffffffffffffffffffffff1614612819576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612810906144dd565b60405180910390fd5b61282382846133f3565b505050565b612830612b25565b73ffffffffffffffffffffffffffffffffffffffff1661284e611a7e565b73ffffffffffffffffffffffffffffffffffffffff16146128a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289b906144dd565b60405180910390fd5b600081116128e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128de906146a2565b60405180910390fd5b600d54816128f3611050565b6128fd91906146c2565b111561293e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293590614764565b60405180910390fd5b61294f612949612b25565b826133f3565b50565b61295a612b25565b73ffffffffffffffffffffffffffffffffffffffff16612978611a7e565b73ffffffffffffffffffffffffffffffffffffffff16146129ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c5906144dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3590614bff565b60405180910390fd5b612a478161332d565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612ae2612bdf565b11158015612af1575060005482105b8015612b1e575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000612bf38261309e565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c5e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612c7f612b25565b73ffffffffffffffffffffffffffffffffffffffff161480612cae5750612cad85612ca8612b25565b612625565b5b80612cf35750612cbc612b25565b73ffffffffffffffffffffffffffffffffffffffff16612cdb84610cc3565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612d2c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612d93576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612da08585856001613764565b612dac60008487612b2d565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561302c57600054821461302b57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613097858585600161376a565b5050505050565b6130a6613bd6565b6000829050806130b4612bdf565b111580156130c3575060005481105b156132f6576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516132f457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146131d8578092505050613328565b5b6001156132f357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146132ee578092505050613328565b6131d9565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61340d828260405180602001604052806000815250613770565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613437612b25565b8786866040518563ffffffff1660e01b81526004016134599493929190614c74565b602060405180830381600087803b15801561347357600080fd5b505af19250505080156134a457506040513d601f19601f820116820180604052508101906134a19190614cd5565b60015b61351e573d80600081146134d4576040519150601f19603f3d011682016040523d82523d6000602084013e6134d9565b606091505b50600081511415613516576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546135809061445f565b80601f01602080910402602001604051908101604052809291908181526020018280546135ac9061445f565b80156135f95780601f106135ce576101008083540402835291602001916135f9565b820191906000526020600020905b8154815290600101906020018083116135dc57829003601f168201915b5050505050905090565b6060600082141561364b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061375f565b600082905060005b6000821461367d5780806136669061460d565b915050600a826136769190614d31565b9150613653565b60008167ffffffffffffffff81111561369957613698613f1f565b5b6040519080825280601f01601f1916602001820160405280156136cb5781602001600182028036833780820191505090505b5090505b60008514613758576001826136e49190614d62565b9150600a856136f39190614d96565b60306136ff91906146c2565b60f81b818381518110613715576137146145af565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856137519190614d31565b94506136cf565b8093505050505b919050565b50505050565b50505050565b61377d8383836001613782565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156137ef576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561382a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6138376000868387613764565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015613a015750613a008773ffffffffffffffffffffffffffffffffffffffff16612a4a565b5b15613ac7575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613a766000888480600101955088613411565b613aac576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415613a07578260005414613ac257600080fd5b613b33565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613ac8575b816000819055505050613b49600086838761376a565b5050505050565b828054613b5c9061445f565b90600052602060002090601f016020900481019282613b7e5760008555613bc5565b82601f10613b9757805160ff1916838001178555613bc5565b82800160010185558215613bc5579182015b82811115613bc4578251825591602001919060010190613ba9565b5b509050613bd29190613c19565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613c32576000816000905550600101613c1a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613c7f81613c4a565b8114613c8a57600080fd5b50565b600081359050613c9c81613c76565b92915050565b600060208284031215613cb857613cb7613c40565b5b6000613cc684828501613c8d565b91505092915050565b60008115159050919050565b613ce481613ccf565b82525050565b6000602082019050613cff6000830184613cdb565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d3f578082015181840152602081019050613d24565b83811115613d4e576000848401525b50505050565b6000601f19601f8301169050919050565b6000613d7082613d05565b613d7a8185613d10565b9350613d8a818560208601613d21565b613d9381613d54565b840191505092915050565b60006020820190508181036000830152613db88184613d65565b905092915050565b6000819050919050565b613dd381613dc0565b8114613dde57600080fd5b50565b600081359050613df081613dca565b92915050565b600060208284031215613e0c57613e0b613c40565b5b6000613e1a84828501613de1565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e4e82613e23565b9050919050565b613e5e81613e43565b82525050565b6000602082019050613e796000830184613e55565b92915050565b613e8881613e43565b8114613e9357600080fd5b50565b600081359050613ea581613e7f565b92915050565b60008060408385031215613ec257613ec1613c40565b5b6000613ed085828601613e96565b9250506020613ee185828601613de1565b9150509250929050565b613ef481613dc0565b82525050565b6000602082019050613f0f6000830184613eeb565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f5782613d54565b810181811067ffffffffffffffff82111715613f7657613f75613f1f565b5b80604052505050565b6000613f89613c36565b9050613f958282613f4e565b919050565b600067ffffffffffffffff821115613fb557613fb4613f1f565b5b613fbe82613d54565b9050602081019050919050565b82818337600083830152505050565b6000613fed613fe884613f9a565b613f7f565b90508281526020810184848401111561400957614008613f1a565b5b614014848285613fcb565b509392505050565b600082601f83011261403157614030613f15565b5b8135614041848260208601613fda565b91505092915050565b6000602082840312156140605761405f613c40565b5b600082013567ffffffffffffffff81111561407e5761407d613c45565b5b61408a8482850161401c565b91505092915050565b61409c81613ccf565b81146140a757600080fd5b50565b6000813590506140b981614093565b92915050565b6000602082840312156140d5576140d4613c40565b5b60006140e3848285016140aa565b91505092915050565b60006020828403121561410257614101613c40565b5b600061411084828501613e96565b91505092915050565b60008060006060848603121561413257614131613c40565b5b600061414086828701613e96565b935050602061415186828701613e96565b925050604061416286828701613de1565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6141a181613dc0565b82525050565b60006141b38383614198565b60208301905092915050565b6000602082019050919050565b60006141d78261416c565b6141e18185614177565b93506141ec83614188565b8060005b8381101561421d57815161420488826141a7565b975061420f836141bf565b9250506001810190506141f0565b5085935050505092915050565b6000602082019050818103600083015261424481846141cc565b905092915050565b6000806040838503121561426357614262613c40565b5b600061427185828601613e96565b9250506020614282858286016140aa565b9150509250929050565b600067ffffffffffffffff8211156142a7576142a6613f1f565b5b6142b082613d54565b9050602081019050919050565b60006142d06142cb8461428c565b613f7f565b9050828152602081018484840111156142ec576142eb613f1a565b5b6142f7848285613fcb565b509392505050565b600082601f83011261431457614313613f15565b5b81356143248482602086016142bd565b91505092915050565b6000806000806080858703121561434757614346613c40565b5b600061435587828801613e96565b945050602061436687828801613e96565b935050604061437787828801613de1565b925050606085013567ffffffffffffffff81111561439857614397613c45565b5b6143a4878288016142ff565b91505092959194509250565b600080604083850312156143c7576143c6613c40565b5b60006143d585828601613e96565b92505060206143e685828601613e96565b9150509250929050565b6000806040838503121561440757614406613c40565b5b600061441585828601613de1565b925050602061442685828601613e96565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061447757607f821691505b6020821081141561448b5761448a614430565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006144c7602083613d10565b91506144d282614491565b602082019050919050565b600060208201905081810360008301526144f6816144ba565b9050919050565b7f45786365656420746f74616c20616d6f756e7400000000000000000000000000600082015250565b6000614533601383613d10565b915061453e826144fd565b602082019050919050565b6000602082019050818103600083015261456281614526565b9050919050565b600081905092915050565b50565b6000614584600083614569565b915061458f82614574565b600082019050919050565b60006145a582614577565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061461882613dc0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561464b5761464a6145de565b5b600182019050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b600061468c601483613d10565b915061469782614656565b602082019050919050565b600060208201905081810360008301526146bb8161467f565b9050919050565b60006146cd82613dc0565b91506146d883613dc0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561470d5761470c6145de565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b600061474e601483613d10565b915061475982614718565b602082019050919050565b6000602082019050818103600083015261477d81614741565b9050919050565b600061478f82613dc0565b915061479a83613dc0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147d3576147d26145de565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000614814601383613d10565b915061481f826147de565b602082019050919050565b6000602082019050818103600083015261484381614807565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000614880601783613d10565b915061488b8261484a565b602082019050919050565b600060208201905081810360008301526148af81614873565b9050919050565b7f4e6f74206f70656e20746f207075626c69632079657421000000000000000000600082015250565b60006148ec601783613d10565b91506148f7826148b6565b602082019050919050565b6000602082019050818103600083015261491b816148df565b9050919050565b7f45786365656465642046726565204d696e74204c696d69740000000000000000600082015250565b6000614958601883613d10565b915061496382614922565b602082019050919050565b600060208201905081810360008301526149878161494b565b9050919050565b7f4578636565646564204d696e74204c696d697400000000000000000000000000600082015250565b60006149c4601383613d10565b91506149cf8261498e565b602082019050919050565b600060208201905081810360008301526149f3816149b7565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614a56602f83613d10565b9150614a61826149fa565b604082019050919050565b60006020820190508181036000830152614a8581614a49565b9050919050565b600081905092915050565b6000614aa282613d05565b614aac8185614a8c565b9350614abc818560208601613d21565b80840191505092915050565b60008190508160005260206000209050919050565b60008154614aea8161445f565b614af48186614a8c565b94506001821660008114614b0f5760018114614b2057614b53565b60ff19831686528186019350614b53565b614b2985614ac8565b60005b83811015614b4b57815481890152600182019150602081019050614b2c565b838801955050505b50505092915050565b6000614b688286614a97565b9150614b748285614a97565b9150614b808284614add565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614be9602683613d10565b9150614bf482614b8d565b604082019050919050565b60006020820190508181036000830152614c1881614bdc565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614c4682614c1f565b614c508185614c2a565b9350614c60818560208601613d21565b614c6981613d54565b840191505092915050565b6000608082019050614c896000830187613e55565b614c966020830186613e55565b614ca36040830185613eeb565b8181036060830152614cb58184614c3b565b905095945050505050565b600081519050614ccf81613c76565b92915050565b600060208284031215614ceb57614cea613c40565b5b6000614cf984828501614cc0565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d3c82613dc0565b9150614d4783613dc0565b925082614d5757614d56614d02565b5b828204905092915050565b6000614d6d82613dc0565b9150614d7883613dc0565b925082821015614d8b57614d8a6145de565b5b828203905092915050565b6000614da182613dc0565b9150614dac83613dc0565b925082614dbc57614dbb614d02565b5b82820690509291505056fea2646970667358221220d83e7d7a6e5a5d2ef6576dbbc8c3e3c746ae6b5c50513261f5b8d60698a1e30c64736f6c63430008090033

Deployed Bytecode Sourcemap

44840:5598:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24472:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27585:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29088:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28651:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49321:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45200:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45033:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49873:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49979:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23721:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45622:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29953:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45274:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45484:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50170:155;;;:::i;:::-;;30194:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47665:796;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49106:75;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49629:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45308:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44954:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50062:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45244:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44921:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45441:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27393:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24841:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43930:103;;;;;;;;;;;;;:::i;:::-;;49767:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45574:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43279:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45110:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27754:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46481:760;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29364:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44993:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49493:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30450:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48568:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45343:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49188:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45074:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45399:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49019:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45528:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45154:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29722:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47502:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47247:251;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44188:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24472:305;24574:4;24626:25;24611:40;;;:11;:40;;;;:105;;;;24683:33;24668:48;;;:11;:48;;;;24611:105;:158;;;;24733:36;24757:11;24733:23;:36::i;:::-;24611:158;24591:178;;24472:305;;;:::o;27585:100::-;27639:13;27672:5;27665:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27585:100;:::o;29088:204::-;29156:7;29181:16;29189:7;29181;:16::i;:::-;29176:64;;29206:34;;;;;;;;;;;;;;29176:64;29260:15;:24;29276:7;29260:24;;;;;;;;;;;;;;;;;;;;;29253:31;;29088:204;;;:::o;28651:371::-;28724:13;28740:24;28756:7;28740:15;:24::i;:::-;28724:40;;28785:5;28779:11;;:2;:11;;;28775:48;;;28799:24;;;;;;;;;;;;;;28775:48;28856:5;28840:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;28866:37;28883:5;28890:12;:10;:12::i;:::-;28866:16;:37::i;:::-;28865:38;28840:63;28836:138;;;28927:35;;;;;;;;;;;;;;28836:138;28986:28;28995:2;28999:7;29008:5;28986:8;:28::i;:::-;28713:309;28651:371;;:::o;49321:166::-;43510:12;:10;:12::i;:::-;43499:23;;:7;:5;:7::i;:::-;:23;;;43491:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49411:9:::1;;49400:7;:20;;49392:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;49474:7;49453:18;:28;;;;49321:166:::0;:::o;45200:36::-;;;;:::o;45033:33::-;;;;:::o;49873:100::-;43510:12;:10;:12::i;:::-;43499:23;;:7;:5;:7::i;:::-;:23;;;43491:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49957:10:::1;49945:9;:22;;;;;;;;;;;;:::i;:::-;;49873:100:::0;:::o;49979:77::-;43510:12;:10;:12::i;:::-;43499:23;;:7;:5;:7::i;:::-;:23;;;43491:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50044:6:::1;50035;;:15;;;;;;;;;;;;;;;;;;49979:77:::0;:::o;23721:303::-;23765:7;23990:15;:13;:15::i;:::-;23975:12;;23959:13;;:28;:46;23952:53;;23721:303;:::o;45622:55::-;;;;;;;;;;;;;;;;;:::o;29953:170::-;30087:28;30097:4;30103:2;30107:7;30087:9;:28::i;:::-;29953:170;;;:::o;45274:29::-;;;;;;;;;;;;;:::o;45484:39::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50170:155::-;43510:12;:10;:12::i;:::-;43499:23;;:7;:5;:7::i;:::-;:23;;;43491:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50227:7:::1;50248;:5;:7::i;:::-;50240:21;;50269;50240:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50226:69;;;50311:2;50303:11;;;::::0;::::1;;50215:110;50170:155::o:0;30194:185::-;30332:39;30349:4;30355:2;30359:7;30332:39;;;;;;;;;;;;:16;:39::i;:::-;30194:185;;;:::o;47665:796::-;47725:16;47750:23;47776:17;47786:6;47776:9;:17::i;:::-;47750:43;;47800:30;47847:15;47833:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47800:63;;47870:22;47895:15;:13;:15::i;:::-;47870:40;;47917:23;47951:26;47986:441;48011:15;47993;:33;:64;;;;;48048:9;;48030:14;:27;;47993:64;47986:441;;;48068:31;48102:11;:27;48114:14;48102:27;;;;;;;;;;;48068:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48145:9;:16;;;48144:17;:49;;;;;48191:1;48165:28;;:9;:14;;;:28;;;;48144:49;48140:111;;;48227:9;:14;;;48206:35;;48140:111;48287:6;48265:28;;:18;:28;;;48261:132;;;48339:14;48306:13;48320:15;48306:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;48366:17;;;;;:::i;:::-;;;;48261:132;48403:16;;;;;:::i;:::-;;;;48059:368;47986:441;;;48442:13;48435:20;;;;;;;47665:796;;;:::o;49106:75::-;43510:12;:10;:12::i;:::-;43499:23;;:7;:5;:7::i;:::-;:23;;;43491:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49169:5:::1;49162:4;:12;;;;49106:75:::0;:::o;49629:132::-;43510:12;:10;:12::i;:::-;43499:23;;:7;:5;:7::i;:::-;:23;;;43491:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49737:18:::1;49717:17;:38;;;;;;;;;;;;:::i;:::-;;49629:132:::0;:::o;45308:28::-;;;;;;;;;;;;;:::o;44954:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50062:85::-;43510:12;:10;:12::i;:::-;43499:23;;:7;:5;:7::i;:::-;:23;;;43491:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50135:6:::1;50122:10;;:19;;;;;;;;;;;;;;;;;;50062:85:::0;:::o;45244:25::-;;;;;;;;;;;;;:::o;44921:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45441:38::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27393:125::-;27457:7;27484:21;27497:7;27484:12;:21::i;:::-;:26;;;27477:33;;27393:125;;;:::o;24841:206::-;24905:7;24946:1;24929:19;;:5;:19;;;24925:60;;;24957:28;;;;;;;;;;;;;;24925:60;25011:12;:19;25024:5;25011:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25003:36;;24996:43;;24841:206;;;:::o;43930:103::-;43510:12;:10;:12::i;:::-;43499:23;;:7;:5;:7::i;:::-;:23;;;43491:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43995:30:::1;44022:1;43995:18;:30::i;:::-;43930:103::o:0;49767:100::-;43510:12;:10;:12::i;:::-;43499:23;;:7;:5;:7::i;:::-;:23;;;43491:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49851:10:::1;49839:9;:22;;;;;;;;;;;;:::i;:::-;;49767:100:::0;:::o;45574:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43279:87::-;43325:7;43352:6;;;;;;;;;;;43345:13;;43279:87;:::o;45110:38::-;;;;:::o;27754:104::-;27810:13;27843:7;27836:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27754:104;:::o;46481:760::-;46546:11;45982:7;:5;:7::i;:::-;45968:21;;:10;:21;;;45964:132;;46025:1;46011:11;:15;:52;;;;;46045:18;;46030:11;:33;;46011:52;46003:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;45964:132;46141:9;;46126:11;46110:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;46102:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;46579:11:::1;46253:24;46280:20;:32;46301:10;46280:32;;;;;;;;;;;;;;;;46253:59;;46342:17;;46322:16;:37;46318:124;;46400:11;46393:4;;:18;;;;:::i;:::-;46380:9;:31;;46372:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46318:124;46608:6:::2;;;;;;;;;;;46607:7;46599:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;46658:10;;;;;;;;;;;46650:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;46703:24;46730:20;:32;46751:10;46730:32;;;;;;;;;;;;;;;;46703:59;;46794:17;;46775:16;:36;46771:320;;;46872:17;;46857:11;46838:16;:30;;;;:::i;:::-;:51;;46830:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;46771:320;;;46960:17;;46940:16;:37;46936:155;;47037:18;;47022:11;47003:16;:30;;;;:::i;:::-;:52;;46995:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;46936:155;46771:320;47099:36;47109:12;:10;:12::i;:::-;47123:11;47099:9;:36::i;:::-;47147:9;47159:1;47147:13;;47142:94;47166:11;47162:1;:15;47142:94;;47194:20;:32;47215:10;47194:32;;;;;;;;;;;;;;;;:34;;;;;;;;;:::i;:::-;;;;;;47179:3;;;;;:::i;:::-;;;;47142:94;;;;46592:649;46246:213:::1;46182:1;46481:760:::0;;:::o;29364:287::-;29475:12;:10;:12::i;:::-;29463:24;;:8;:24;;;29459:54;;;29496:17;;;;;;;;;;;;;;29459:54;29571:8;29526:18;:32;29545:12;:10;:12::i;:::-;29526:32;;;;;;;;;;;;;;;:42;29559:8;29526:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29624:8;29595:48;;29610:12;:10;:12::i;:::-;29595:48;;;29634:8;29595:48;;;;;;:::i;:::-;;;;;;;;29364:287;;:::o;44993:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49493:130::-;43510:12;:10;:12::i;:::-;43499:23;;:7;:5;:7::i;:::-;:23;;;43491:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49598:19:::1;49577:18;:40;;;;49493:130:::0;:::o;30450:369::-;30617:28;30627:4;30633:2;30637:7;30617:9;:28::i;:::-;30660:15;:2;:13;;;:15::i;:::-;:76;;;;;30680:56;30711:4;30717:2;30721:7;30730:5;30680:30;:56::i;:::-;30679:57;30660:76;30656:156;;;30760:40;;;;;;;;;;;;;;30656:156;30450:369;;;;:::o;48568:445::-;48642:13;48672:17;48680:8;48672:7;:17::i;:::-;48664:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;48766:5;48754:17;;:8;;;;;;;;;;;:17;;;48750:64;;;48789:17;48782:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48750:64;48822:28;48853:10;:8;:10::i;:::-;48822:41;;48908:1;48883:14;48877:28;:32;:130;;;;;;;;;;;;;;;;;48945:14;48961:19;:8;:17;:19::i;:::-;48982:9;48928:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48877:130;48870:137;;;48568:445;;;;:::o;45343:51::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49188:127::-;43510:12;:10;:12::i;:::-;43499:23;;:7;:5;:7::i;:::-;:23;;;43491:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49290:18:::1;49270:17;:38;;;;49188:127:::0;:::o;45074:30::-;;;;:::o;45399:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49019:81::-;43510:12;:10;:12::i;:::-;43499:23;;:7;:5;:7::i;:::-;:23;;;43491:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49088:6:::1;49077:8;;:17;;;;;;;;;;;;;;;;;;49019:81:::0;:::o;45528:41::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45154:38::-;;;;:::o;29722:164::-;29819:4;29843:18;:25;29862:5;29843:25;;;;;;;;;;;;;;;:35;29869:8;29843:35;;;;;;;;;;;;;;;;;;;;;;;;;29836:42;;29722:164;;;;:::o;47502:155::-;47588:11;45982:7;:5;:7::i;:::-;45968:21;;:10;:21;;;45964:132;;46025:1;46011:11;:15;:52;;;;;46045:18;;46030:11;:33;;46011:52;46003:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;45964:132;46141:9;;46126:11;46110:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;46102:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43510:12:::1;:10;:12::i;:::-;43499:23;;:7;:5;:7::i;:::-;:23;;;43491:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47618:33:::2;47628:9;47639:11;47618:9;:33::i;:::-;47502:155:::0;;;:::o;47247:251::-;43510:12;:10;:12::i;:::-;43499:23;;:7;:5;:7::i;:::-;:23;;;43491:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47342:1:::1;47328:11;:15;47320:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;47415:9;;47400:11;47384:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;47376:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;47456:36;47466:12;:10;:12::i;:::-;47480:11;47456:9;:36::i;:::-;47247:251:::0;:::o;44188:201::-;43510:12;:10;:12::i;:::-;43499:23;;:7;:5;:7::i;:::-;:23;;;43491:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44297:1:::1;44277:22;;:8;:22;;;;44269:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44353:28;44372:8;44353:18;:28::i;:::-;44188:201:::0;:::o;3387:326::-;3447:4;3704:1;3682:7;:19;;;:23;3675:30;;3387:326;;;:::o;13470:157::-;13555:4;13594:25;13579:40;;;:11;:40;;;;13572:47;;13470:157;;;:::o;31074:174::-;31131:4;31174:7;31155:15;:13;:15::i;:::-;:26;;:53;;;;;31195:13;;31185:7;:23;31155:53;:85;;;;;31213:11;:20;31225:7;31213:20;;;;;;;;;;;:27;;;;;;;;;;;;31212:28;31155:85;31148:92;;31074:174;;;:::o;19988:98::-;20041:7;20068:10;20061:17;;19988:98;:::o;39231:196::-;39373:2;39346:15;:24;39362:7;39346:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39411:7;39407:2;39391:28;;39400:5;39391:28;;;;;;;;;;;;39231:196;;;:::o;48467:95::-;48532:7;48555:1;48548:8;;48467:95;:::o;34174:2130::-;34289:35;34327:21;34340:7;34327:12;:21::i;:::-;34289:59;;34387:4;34365:26;;:13;:18;;;:26;;;34361:67;;34400:28;;;;;;;;;;;;;;34361:67;34441:22;34483:4;34467:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;34504:36;34521:4;34527:12;:10;:12::i;:::-;34504:16;:36::i;:::-;34467:73;:126;;;;34581:12;:10;:12::i;:::-;34557:36;;:20;34569:7;34557:11;:20::i;:::-;:36;;;34467:126;34441:153;;34612:17;34607:66;;34638:35;;;;;;;;;;;;;;34607:66;34702:1;34688:16;;:2;:16;;;34684:52;;;34713:23;;;;;;;;;;;;;;34684:52;34749:43;34771:4;34777:2;34781:7;34790:1;34749:21;:43::i;:::-;34857:35;34874:1;34878:7;34887:4;34857:8;:35::i;:::-;35218:1;35188:12;:18;35201:4;35188:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35262:1;35234:12;:16;35247:2;35234:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35280:31;35314:11;:20;35326:7;35314:20;;;;;;;;;;;35280:54;;35365:2;35349:8;:13;;;:18;;;;;;;;;;;;;;;;;;35415:15;35382:8;:23;;;:49;;;;;;;;;;;;;;;;;;35683:19;35715:1;35705:7;:11;35683:33;;35731:31;35765:11;:24;35777:11;35765:24;;;;;;;;;;;35731:58;;35833:1;35808:27;;:8;:13;;;;;;;;;;;;:27;;;35804:384;;;36018:13;;36003:11;:28;35999:174;;36072:4;36056:8;:13;;;:20;;;;;;;;;;;;;;;;;;36125:13;:28;;;36099:8;:23;;;:54;;;;;;;;;;;;;;;;;;35999:174;35804:384;35163:1036;;;36235:7;36231:2;36216:27;;36225:4;36216:27;;;;;;;;;;;;36254:42;36275:4;36281:2;36285:7;36294:1;36254:20;:42::i;:::-;34278:2026;;34174:2130;;;:::o;26222:1109::-;26284:21;;:::i;:::-;26318:12;26333:7;26318:22;;26401:4;26382:15;:13;:15::i;:::-;:23;;:47;;;;;26416:13;;26409:4;:20;26382:47;26378:886;;;26450:31;26484:11;:17;26496:4;26484:17;;;;;;;;;;;26450:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26525:9;:16;;;26520:729;;26596:1;26570:28;;:9;:14;;;:28;;;26566:101;;26634:9;26627:16;;;;;;26566:101;26969:261;26976:4;26969:261;;;27009:6;;;;;;;;27054:11;:17;27066:4;27054:17;;;;;;;;;;;27042:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27128:1;27102:28;;:9;:14;;;:28;;;27098:109;;27170:9;27163:16;;;;;;27098:109;26969:261;;;26520:729;26431:833;26378:886;27292:31;;;;;;;;;;;;;;26222:1109;;;;:::o;44549:191::-;44623:16;44642:6;;;;;;;;;;;44623:25;;44668:8;44659:6;;:17;;;;;;;;;;;;;;;;;;44723:8;44692:40;;44713:8;44692:40;;;;;;;;;;;;44612:128;44549:191;:::o;31256:104::-;31325:27;31335:2;31339:8;31325:27;;;;;;;;;;;;:9;:27::i;:::-;31256:104;;:::o;39919:667::-;40082:4;40119:2;40103:36;;;40140:12;:10;:12::i;:::-;40154:4;40160:7;40169:5;40103:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40099:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40354:1;40337:6;:13;:18;40333:235;;;40383:40;;;;;;;;;;;;;;40333:235;40526:6;40520:13;40511:6;40507:2;40503:15;40496:38;40099:480;40232:45;;;40222:55;;;:6;:55;;;;40215:62;;;39919:667;;;;;;:::o;50331:104::-;50391:13;50420:9;50413:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50331:104;:::o;395:723::-;451:13;681:1;672:5;:10;668:53;;;699:10;;;;;;;;;;;;;;;;;;;;;668:53;731:12;746:5;731:20;;762:14;787:78;802:1;794:4;:9;787:78;;820:8;;;;;:::i;:::-;;;;851:2;843:10;;;;;:::i;:::-;;;787:78;;;875:19;907:6;897:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;875:39;;925:154;941:1;932:5;:10;925:154;;969:1;959:11;;;;;:::i;:::-;;;1036:2;1028:5;:10;;;;:::i;:::-;1015:2;:24;;;;:::i;:::-;1002:39;;985:6;992;985:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1065:2;1056:11;;;;;:::i;:::-;;;925:154;;;1103:6;1089:21;;;;;395:723;;;;:::o;41234:159::-;;;;;:::o;42052:158::-;;;;;:::o;31723:163::-;31846:32;31852:2;31856:8;31866:5;31873:4;31846:5;:32::i;:::-;31723:163;;;:::o;32145:1775::-;32284:20;32307:13;;32284:36;;32349:1;32335:16;;:2;:16;;;32331:48;;;32360:19;;;;;;;;;;;;;;32331:48;32406:1;32394:8;:13;32390:44;;;32416:18;;;;;;;;;;;;;;32390:44;32447:61;32477:1;32481:2;32485:12;32499:8;32447:21;:61::i;:::-;32820:8;32785:12;:16;32798:2;32785:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32884:8;32844:12;:16;32857:2;32844:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32943:2;32910:11;:25;32922:12;32910:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;33010:15;32960:11;:25;32972:12;32960:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;33043:20;33066:12;33043:35;;33093:11;33122:8;33107:12;:23;33093:37;;33151:4;:23;;;;;33159:15;:2;:13;;;:15::i;:::-;33151:23;33147:641;;;33195:314;33251:12;33247:2;33226:38;;33243:1;33226:38;;;;;;;;;;;;33292:69;33331:1;33335:2;33339:14;;;;;;33355:5;33292:30;:69::i;:::-;33287:174;;33397:40;;;;;;;;;;;;;;33287:174;33504:3;33488:12;:19;;33195:314;;33590:12;33573:13;;:29;33569:43;;33604:8;;;33569:43;33147:641;;;33653:120;33709:14;;;;;;33705:2;33684:40;;33701:1;33684:40;;;;;;;;;;;;33768:3;33752:12;:19;;33653:120;;33147:641;33818:12;33802:13;:28;;;;32760:1082;;33852:60;33881:1;33885:2;33889:12;33903:8;33852:20;:60::i;:::-;32273:1647;32145:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:116::-;7981:21;7996:5;7981:21;:::i;:::-;7974:5;7971:32;7961:60;;8017:1;8014;8007:12;7961:60;7911:116;:::o;8033:133::-;8076:5;8114:6;8101:20;8092:29;;8130:30;8154:5;8130:30;:::i;:::-;8033:133;;;;:::o;8172:323::-;8228:6;8277:2;8265:9;8256:7;8252:23;8248:32;8245:119;;;8283:79;;:::i;:::-;8245:119;8403:1;8428:50;8470:7;8461:6;8450:9;8446:22;8428:50;:::i;:::-;8418:60;;8374:114;8172:323;;;;:::o;8501:329::-;8560:6;8609:2;8597:9;8588:7;8584:23;8580:32;8577:119;;;8615:79;;:::i;:::-;8577:119;8735:1;8760:53;8805:7;8796:6;8785:9;8781:22;8760:53;:::i;:::-;8750:63;;8706:117;8501:329;;;;:::o;8836:619::-;8913:6;8921;8929;8978:2;8966:9;8957:7;8953:23;8949:32;8946:119;;;8984:79;;:::i;:::-;8946:119;9104:1;9129:53;9174:7;9165:6;9154:9;9150:22;9129:53;:::i;:::-;9119:63;;9075:117;9231:2;9257:53;9302:7;9293:6;9282:9;9278:22;9257:53;:::i;:::-;9247:63;;9202:118;9359:2;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9330:118;8836:619;;;;;:::o;9461:114::-;9528:6;9562:5;9556:12;9546:22;;9461:114;;;:::o;9581:184::-;9680:11;9714:6;9709:3;9702:19;9754:4;9749:3;9745:14;9730:29;;9581:184;;;;:::o;9771:132::-;9838:4;9861:3;9853:11;;9891:4;9886:3;9882:14;9874:22;;9771:132;;;:::o;9909:108::-;9986:24;10004:5;9986:24;:::i;:::-;9981:3;9974:37;9909:108;;:::o;10023:179::-;10092:10;10113:46;10155:3;10147:6;10113:46;:::i;:::-;10191:4;10186:3;10182:14;10168:28;;10023:179;;;;:::o;10208:113::-;10278:4;10310;10305:3;10301:14;10293:22;;10208:113;;;:::o;10357:732::-;10476:3;10505:54;10553:5;10505:54;:::i;:::-;10575:86;10654:6;10649:3;10575:86;:::i;:::-;10568:93;;10685:56;10735:5;10685:56;:::i;:::-;10764:7;10795:1;10780:284;10805:6;10802:1;10799:13;10780:284;;;10881:6;10875:13;10908:63;10967:3;10952:13;10908:63;:::i;:::-;10901:70;;10994:60;11047:6;10994:60;:::i;:::-;10984:70;;10840:224;10827:1;10824;10820:9;10815:14;;10780:284;;;10784:14;11080:3;11073:10;;10481:608;;;10357:732;;;;:::o;11095:373::-;11238:4;11276:2;11265:9;11261:18;11253:26;;11325:9;11319:4;11315:20;11311:1;11300:9;11296:17;11289:47;11353:108;11456:4;11447:6;11353:108;:::i;:::-;11345:116;;11095:373;;;;:::o;11474:468::-;11539:6;11547;11596:2;11584:9;11575:7;11571:23;11567:32;11564:119;;;11602:79;;:::i;:::-;11564:119;11722:1;11747:53;11792:7;11783:6;11772:9;11768:22;11747:53;:::i;:::-;11737:63;;11693:117;11849:2;11875:50;11917:7;11908:6;11897:9;11893:22;11875:50;:::i;:::-;11865:60;;11820:115;11474:468;;;;;:::o;11948:307::-;12009:4;12099:18;12091:6;12088:30;12085:56;;;12121:18;;:::i;:::-;12085:56;12159:29;12181:6;12159:29;:::i;:::-;12151:37;;12243:4;12237;12233:15;12225:23;;11948:307;;;:::o;12261:410::-;12338:5;12363:65;12379:48;12420:6;12379:48;:::i;:::-;12363:65;:::i;:::-;12354:74;;12451:6;12444:5;12437:21;12489:4;12482:5;12478:16;12527:3;12518:6;12513:3;12509:16;12506:25;12503:112;;;12534:79;;:::i;:::-;12503:112;12624:41;12658:6;12653:3;12648;12624:41;:::i;:::-;12344:327;12261:410;;;;;:::o;12690:338::-;12745:5;12794:3;12787:4;12779:6;12775:17;12771:27;12761:122;;12802:79;;:::i;:::-;12761:122;12919:6;12906:20;12944:78;13018:3;13010:6;13003:4;12995:6;12991:17;12944:78;:::i;:::-;12935:87;;12751:277;12690:338;;;;:::o;13034:943::-;13129:6;13137;13145;13153;13202:3;13190:9;13181:7;13177:23;13173:33;13170:120;;;13209:79;;:::i;:::-;13170:120;13329:1;13354:53;13399:7;13390:6;13379:9;13375:22;13354:53;:::i;:::-;13344:63;;13300:117;13456:2;13482:53;13527:7;13518:6;13507:9;13503:22;13482:53;:::i;:::-;13472:63;;13427:118;13584:2;13610:53;13655:7;13646:6;13635:9;13631:22;13610:53;:::i;:::-;13600:63;;13555:118;13740:2;13729:9;13725:18;13712:32;13771:18;13763:6;13760:30;13757:117;;;13793:79;;:::i;:::-;13757:117;13898:62;13952:7;13943:6;13932:9;13928:22;13898:62;:::i;:::-;13888:72;;13683:287;13034:943;;;;;;;:::o;13983:474::-;14051:6;14059;14108:2;14096:9;14087:7;14083:23;14079:32;14076:119;;;14114:79;;:::i;:::-;14076:119;14234:1;14259:53;14304:7;14295:6;14284:9;14280:22;14259:53;:::i;:::-;14249:63;;14205:117;14361:2;14387:53;14432:7;14423:6;14412:9;14408:22;14387:53;:::i;:::-;14377:63;;14332:118;13983:474;;;;;:::o;14463:::-;14531:6;14539;14588:2;14576:9;14567:7;14563:23;14559:32;14556:119;;;14594:79;;:::i;:::-;14556:119;14714:1;14739:53;14784:7;14775:6;14764:9;14760:22;14739:53;:::i;:::-;14729:63;;14685:117;14841:2;14867:53;14912:7;14903:6;14892:9;14888:22;14867:53;:::i;:::-;14857:63;;14812:118;14463:474;;;;;:::o;14943:180::-;14991:77;14988:1;14981:88;15088:4;15085:1;15078:15;15112:4;15109:1;15102:15;15129:320;15173:6;15210:1;15204:4;15200:12;15190:22;;15257:1;15251:4;15247:12;15278:18;15268:81;;15334:4;15326:6;15322:17;15312:27;;15268:81;15396:2;15388:6;15385:14;15365:18;15362:38;15359:84;;;15415:18;;:::i;:::-;15359:84;15180:269;15129:320;;;:::o;15455:182::-;15595:34;15591:1;15583:6;15579:14;15572:58;15455:182;:::o;15643:366::-;15785:3;15806:67;15870:2;15865:3;15806:67;:::i;:::-;15799:74;;15882:93;15971:3;15882:93;:::i;:::-;16000:2;15995:3;15991:12;15984:19;;15643:366;;;:::o;16015:419::-;16181:4;16219:2;16208:9;16204:18;16196:26;;16268:9;16262:4;16258:20;16254:1;16243:9;16239:17;16232:47;16296:131;16422:4;16296:131;:::i;:::-;16288:139;;16015:419;;;:::o;16440:169::-;16580:21;16576:1;16568:6;16564:14;16557:45;16440:169;:::o;16615:366::-;16757:3;16778:67;16842:2;16837:3;16778:67;:::i;:::-;16771:74;;16854:93;16943:3;16854:93;:::i;:::-;16972:2;16967:3;16963:12;16956:19;;16615:366;;;:::o;16987:419::-;17153:4;17191:2;17180:9;17176:18;17168:26;;17240:9;17234:4;17230:20;17226:1;17215:9;17211:17;17204:47;17268:131;17394:4;17268:131;:::i;:::-;17260:139;;16987:419;;;:::o;17412:147::-;17513:11;17550:3;17535:18;;17412:147;;;;:::o;17565:114::-;;:::o;17685:398::-;17844:3;17865:83;17946:1;17941:3;17865:83;:::i;:::-;17858:90;;17957:93;18046:3;17957:93;:::i;:::-;18075:1;18070:3;18066:11;18059:18;;17685:398;;;:::o;18089:379::-;18273:3;18295:147;18438:3;18295:147;:::i;:::-;18288:154;;18459:3;18452:10;;18089:379;;;:::o;18474:180::-;18522:77;18519:1;18512:88;18619:4;18616:1;18609:15;18643:4;18640:1;18633:15;18660:180;18708:77;18705:1;18698:88;18805:4;18802:1;18795:15;18829:4;18826:1;18819:15;18846:233;18885:3;18908:24;18926:5;18908:24;:::i;:::-;18899:33;;18954:66;18947:5;18944:77;18941:103;;;19024:18;;:::i;:::-;18941:103;19071:1;19064:5;19060:13;19053:20;;18846:233;;;:::o;19085:170::-;19225:22;19221:1;19213:6;19209:14;19202:46;19085:170;:::o;19261:366::-;19403:3;19424:67;19488:2;19483:3;19424:67;:::i;:::-;19417:74;;19500:93;19589:3;19500:93;:::i;:::-;19618:2;19613:3;19609:12;19602:19;;19261:366;;;:::o;19633:419::-;19799:4;19837:2;19826:9;19822:18;19814:26;;19886:9;19880:4;19876:20;19872:1;19861:9;19857:17;19850:47;19914:131;20040:4;19914:131;:::i;:::-;19906:139;;19633:419;;;:::o;20058:305::-;20098:3;20117:20;20135:1;20117:20;:::i;:::-;20112:25;;20151:20;20169:1;20151:20;:::i;:::-;20146:25;;20305:1;20237:66;20233:74;20230:1;20227:81;20224:107;;;20311:18;;:::i;:::-;20224:107;20355:1;20352;20348:9;20341:16;;20058:305;;;;:::o;20369:170::-;20509:22;20505:1;20497:6;20493:14;20486:46;20369:170;:::o;20545:366::-;20687:3;20708:67;20772:2;20767:3;20708:67;:::i;:::-;20701:74;;20784:93;20873:3;20784:93;:::i;:::-;20902:2;20897:3;20893:12;20886:19;;20545:366;;;:::o;20917:419::-;21083:4;21121:2;21110:9;21106:18;21098:26;;21170:9;21164:4;21160:20;21156:1;21145:9;21141:17;21134:47;21198:131;21324:4;21198:131;:::i;:::-;21190:139;;20917:419;;;:::o;21342:348::-;21382:7;21405:20;21423:1;21405:20;:::i;:::-;21400:25;;21439:20;21457:1;21439:20;:::i;:::-;21434:25;;21627:1;21559:66;21555:74;21552:1;21549:81;21544:1;21537:9;21530:17;21526:105;21523:131;;;21634:18;;:::i;:::-;21523:131;21682:1;21679;21675:9;21664:20;;21342:348;;;;:::o;21696:169::-;21836:21;21832:1;21824:6;21820:14;21813:45;21696:169;:::o;21871:366::-;22013:3;22034:67;22098:2;22093:3;22034:67;:::i;:::-;22027:74;;22110:93;22199:3;22110:93;:::i;:::-;22228:2;22223:3;22219:12;22212:19;;21871:366;;;:::o;22243:419::-;22409:4;22447:2;22436:9;22432:18;22424:26;;22496:9;22490:4;22486:20;22482:1;22471:9;22467:17;22460:47;22524:131;22650:4;22524:131;:::i;:::-;22516:139;;22243:419;;;:::o;22668:173::-;22808:25;22804:1;22796:6;22792:14;22785:49;22668:173;:::o;22847:366::-;22989:3;23010:67;23074:2;23069:3;23010:67;:::i;:::-;23003:74;;23086:93;23175:3;23086:93;:::i;:::-;23204:2;23199:3;23195:12;23188:19;;22847:366;;;:::o;23219:419::-;23385:4;23423:2;23412:9;23408:18;23400:26;;23472:9;23466:4;23462:20;23458:1;23447:9;23443:17;23436:47;23500:131;23626:4;23500:131;:::i;:::-;23492:139;;23219:419;;;:::o;23644:173::-;23784:25;23780:1;23772:6;23768:14;23761:49;23644:173;:::o;23823:366::-;23965:3;23986:67;24050:2;24045:3;23986:67;:::i;:::-;23979:74;;24062:93;24151:3;24062:93;:::i;:::-;24180:2;24175:3;24171:12;24164:19;;23823:366;;;:::o;24195:419::-;24361:4;24399:2;24388:9;24384:18;24376:26;;24448:9;24442:4;24438:20;24434:1;24423:9;24419:17;24412:47;24476:131;24602:4;24476:131;:::i;:::-;24468:139;;24195:419;;;:::o;24620:174::-;24760:26;24756:1;24748:6;24744:14;24737:50;24620:174;:::o;24800:366::-;24942:3;24963:67;25027:2;25022:3;24963:67;:::i;:::-;24956:74;;25039:93;25128:3;25039:93;:::i;:::-;25157:2;25152:3;25148:12;25141:19;;24800:366;;;:::o;25172:419::-;25338:4;25376:2;25365:9;25361:18;25353:26;;25425:9;25419:4;25415:20;25411:1;25400:9;25396:17;25389:47;25453:131;25579:4;25453:131;:::i;:::-;25445:139;;25172:419;;;:::o;25597:169::-;25737:21;25733:1;25725:6;25721:14;25714:45;25597:169;:::o;25772:366::-;25914:3;25935:67;25999:2;25994:3;25935:67;:::i;:::-;25928:74;;26011:93;26100:3;26011:93;:::i;:::-;26129:2;26124:3;26120:12;26113:19;;25772:366;;;:::o;26144:419::-;26310:4;26348:2;26337:9;26333:18;26325:26;;26397:9;26391:4;26387:20;26383:1;26372:9;26368:17;26361:47;26425:131;26551:4;26425:131;:::i;:::-;26417:139;;26144:419;;;:::o;26569:234::-;26709:34;26705:1;26697:6;26693:14;26686:58;26778:17;26773:2;26765:6;26761:15;26754:42;26569:234;:::o;26809:366::-;26951:3;26972:67;27036:2;27031:3;26972:67;:::i;:::-;26965:74;;27048:93;27137:3;27048:93;:::i;:::-;27166:2;27161:3;27157:12;27150:19;;26809:366;;;:::o;27181:419::-;27347:4;27385:2;27374:9;27370:18;27362:26;;27434:9;27428:4;27424:20;27420:1;27409:9;27405:17;27398:47;27462:131;27588:4;27462:131;:::i;:::-;27454:139;;27181:419;;;:::o;27606:148::-;27708:11;27745:3;27730:18;;27606:148;;;;:::o;27760:377::-;27866:3;27894:39;27927:5;27894:39;:::i;:::-;27949:89;28031:6;28026:3;27949:89;:::i;:::-;27942:96;;28047:52;28092:6;28087:3;28080:4;28073:5;28069:16;28047:52;:::i;:::-;28124:6;28119:3;28115:16;28108:23;;27870:267;27760:377;;;;:::o;28143:141::-;28192:4;28215:3;28207:11;;28238:3;28235:1;28228:14;28272:4;28269:1;28259:18;28251:26;;28143:141;;;:::o;28314:845::-;28417:3;28454:5;28448:12;28483:36;28509:9;28483:36;:::i;:::-;28535:89;28617:6;28612:3;28535:89;:::i;:::-;28528:96;;28655:1;28644:9;28640:17;28671:1;28666:137;;;;28817:1;28812:341;;;;28633:520;;28666:137;28750:4;28746:9;28735;28731:25;28726:3;28719:38;28786:6;28781:3;28777:16;28770:23;;28666:137;;28812:341;28879:38;28911:5;28879:38;:::i;:::-;28939:1;28953:154;28967:6;28964:1;28961:13;28953:154;;;29041:7;29035:14;29031:1;29026:3;29022:11;29015:35;29091:1;29082:7;29078:15;29067:26;;28989:4;28986:1;28982:12;28977:17;;28953:154;;;29136:6;29131:3;29127:16;29120:23;;28819:334;;28633:520;;28421:738;;28314:845;;;;:::o;29165:589::-;29390:3;29412:95;29503:3;29494:6;29412:95;:::i;:::-;29405:102;;29524:95;29615:3;29606:6;29524:95;:::i;:::-;29517:102;;29636:92;29724:3;29715:6;29636:92;:::i;:::-;29629:99;;29745:3;29738:10;;29165:589;;;;;;:::o;29760:225::-;29900:34;29896:1;29888:6;29884:14;29877:58;29969:8;29964:2;29956:6;29952:15;29945:33;29760:225;:::o;29991:366::-;30133:3;30154:67;30218:2;30213:3;30154:67;:::i;:::-;30147:74;;30230:93;30319:3;30230:93;:::i;:::-;30348:2;30343:3;30339:12;30332:19;;29991:366;;;:::o;30363:419::-;30529:4;30567:2;30556:9;30552:18;30544:26;;30616:9;30610:4;30606:20;30602:1;30591:9;30587:17;30580:47;30644:131;30770:4;30644:131;:::i;:::-;30636:139;;30363:419;;;:::o;30788:98::-;30839:6;30873:5;30867:12;30857:22;;30788:98;;;:::o;30892:168::-;30975:11;31009:6;31004:3;30997:19;31049:4;31044:3;31040:14;31025:29;;30892:168;;;;:::o;31066:360::-;31152:3;31180:38;31212:5;31180:38;:::i;:::-;31234:70;31297:6;31292:3;31234:70;:::i;:::-;31227:77;;31313:52;31358:6;31353:3;31346:4;31339:5;31335:16;31313:52;:::i;:::-;31390:29;31412:6;31390:29;:::i;:::-;31385:3;31381:39;31374:46;;31156:270;31066:360;;;;:::o;31432:640::-;31627:4;31665:3;31654:9;31650:19;31642:27;;31679:71;31747:1;31736:9;31732:17;31723:6;31679:71;:::i;:::-;31760:72;31828:2;31817:9;31813:18;31804:6;31760:72;:::i;:::-;31842;31910:2;31899:9;31895:18;31886:6;31842:72;:::i;:::-;31961:9;31955:4;31951:20;31946:2;31935:9;31931:18;31924:48;31989:76;32060:4;32051:6;31989:76;:::i;:::-;31981:84;;31432:640;;;;;;;:::o;32078:141::-;32134:5;32165:6;32159:13;32150:22;;32181:32;32207:5;32181:32;:::i;:::-;32078:141;;;;:::o;32225:349::-;32294:6;32343:2;32331:9;32322:7;32318:23;32314:32;32311:119;;;32349:79;;:::i;:::-;32311:119;32469:1;32494:63;32549:7;32540:6;32529:9;32525:22;32494:63;:::i;:::-;32484:73;;32440:127;32225:349;;;;:::o;32580:180::-;32628:77;32625:1;32618:88;32725:4;32722:1;32715:15;32749:4;32746:1;32739:15;32766:185;32806:1;32823:20;32841:1;32823:20;:::i;:::-;32818:25;;32857:20;32875:1;32857:20;:::i;:::-;32852:25;;32896:1;32886:35;;32901:18;;:::i;:::-;32886:35;32943:1;32940;32936:9;32931:14;;32766:185;;;;:::o;32957:191::-;32997:4;33017:20;33035:1;33017:20;:::i;:::-;33012:25;;33051:20;33069:1;33051:20;:::i;:::-;33046:25;;33090:1;33087;33084:8;33081:34;;;33095:18;;:::i;:::-;33081:34;33140:1;33137;33133:9;33125:17;;32957:191;;;;:::o;33154:176::-;33186:1;33203:20;33221:1;33203:20;:::i;:::-;33198:25;;33237:20;33255:1;33237:20;:::i;:::-;33232:25;;33276:1;33266:35;;33281:18;;:::i;:::-;33266:35;33322:1;33319;33315:9;33310:14;;33154:176;;;;:::o

Swarm Source

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