ETH Price: $3,517.78 (+0.52%)
Gas: 6 Gwei

Token

Baby Medicated Mice (BMICE)
 

Overview

Max Total Supply

1,305 BMICE

Holders

151

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BMICE
0x6a2c76a3115bd04249f9fd35b2c334f46116d25c
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:
Mice

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/Strings.sol
// SPDX-License-Identifier: MIT

// 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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

// 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/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

// File: @openzeppelin/contracts/utils/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.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 1;
    }

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        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 (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 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) 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;

            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 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: Mice.sol

/**
 * @title Medicated Mice Contract
 * @author Trippy (Discord: Trippy#1937)
 * @collection Medicated Mice (https://discord.gg/medicatedmice)
 * @notice This contract handles minting and whitelisting for Medicated Mice with the implementation of ERC721a.
 */





pragma solidity >=0.7.0 <0.9.0;


contract Mice is ERC721A, Ownable {

  using Strings for uint256;
  using MerkleProof for bytes32[];

  // STRINGS
  string public uriPrefix = "ipfs://QmYb7Jdtvpmywb9uEhpPowbsFPVYsdYUk7CqA2oSUpfuip/";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  // INTEGERS
  uint256 public cost = 0.045 ether;
  uint256 public maxSupply = 1420;
  uint256 public maxMintAmountPerTx = 1420;
  uint256 public maxNFTPerAddress = 4;

  // BOOLEAN
  bool public paused = true;
  bool public revealed = false;
  bool public presale = true;

  // BYTES
  bytes32 public merkleRoot = 0x475be11e96826210727bb9a6582dc3e449c4673fd37cfa885245491f62188195;

  // MAPS
  mapping(address => uint256) public addressMintedBalance;


  constructor() ERC721A("Baby Medicated Mice", "BMICE") {
    setHiddenMetadataUri("ipfs://QmXoxUByEESqZicptzhp48fT9CwHi4jvBSD2wuKnf1ntU3/hidden.json");
  }

  modifier mintCompliance(uint256 _mintAmount) {
    uint256 holderMintedCount = addressMintedBalance[msg.sender];

    require(!paused, "Medicated Mice: The contract is paused!");
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Medicated Mice: Invalid mint amount!");
    require(holderMintedCount + _mintAmount <= maxNFTPerAddress, "Medicated Mice: You have reached the MAX NFT per address limit!");
    require(_mintAmount <= maxMintAmountPerTx, "Medicated Mice: Max You have reached the max amount per transaction!");
    require(totalSupply() + _mintAmount <= maxSupply, "Medicated Mice: The Collection has sold out!");
    _;
  }

  function mint(uint256 _mintAmount, bytes32[] calldata _merkleProof) public payable mintCompliance(_mintAmount) {
    require(msg.value >= cost * _mintAmount, "Medicated Mice: You do not have sufficient funds to purchase!");

        if (msg.sender != owner()) {
        if (presale == true && isWhitelisted(_merkleProof)) {

        }
      }

    addressMintedBalance[msg.sender]++;
     _safeMint(msg.sender, _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 = 1;
    uint256 ownedTokenIndex = 0;

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

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

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

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

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

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

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

  function setMaxNFTPerLimit(uint256 _limit) public onlyOwner {
    maxNFTPerAddress = _limit;
  }

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

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

  function setMerkleRoot(bytes32 _root) external onlyOwner {
    merkleRoot = _root;
  }

  function isValid(address _to, uint256 _tokenID, bytes32[] memory _proof) public view returns (bool) {
    bytes32 leaf = keccak256(abi.encodePacked(_to, _tokenID));

    return _proof.verify(merkleRoot, leaf);
  }

  function isWhitelisted(bytes32[] calldata _merkleProof) public view returns (bool) {
        require(
            MerkleProof.verify(
                _merkleProof,
                merkleRoot,
                keccak256(abi.encodePacked(msg.sender))
            ),
            'Medicated Mice: Your Address is not whitelisted!'
        );

        return true;
    }

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

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

}

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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenID","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"isValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxNFTPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxNFTPerLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setMerkleRoot","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":"setPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806060016040528060368152602001620053c0603691396009908051906020019062000035929190620003d8565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a908051906020019062000083929190620003d8565b50669fdf42f6e48000600c5561058c600d5561058c600e556004600f556001601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055506001601060026101000a81548160ff0219169083151502179055507f475be11e96826210727bb9a6582dc3e449c4673fd37cfa885245491f6218819560001b6011553480156200012557600080fd5b506040518060400160405280601381526020017f42616279204d6564696361746564204d696365000000000000000000000000008152506040518060400160405280600581526020017f424d4943450000000000000000000000000000000000000000000000000000008152508160029080519060200190620001aa929190620003d8565b508060039080519060200190620001c3929190620003d8565b50620001d46200022c60201b60201c565b6000819055505050620001fc620001f06200023560201b60201c565b6200023d60201b60201c565b620002266040518060800160405280604181526020016200537f604191396200030360201b60201c565b62000570565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003136200023560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000339620003ae60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000392576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038990620004af565b60405180910390fd5b80600b9080519060200190620003aa929190620003d8565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003e690620004e2565b90600052602060002090601f0160209004810192826200040a576000855562000456565b82601f106200042557805160ff191683800117855562000456565b8280016001018555821562000456579182015b828111156200045557825182559160200191906001019062000438565b5b50905062000465919062000469565b5090565b5b80821115620004845760008160009055506001016200046a565b5090565b600062000497602083620004d1565b9150620004a48262000547565b602082019050919050565b60006020820190508181036000830152620004ca8162000488565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620004fb57607f821691505b6020821081141562000512576200051162000518565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614dff80620005806000396000f3fe60806040526004361061027d5760003560e01c80636f8b44b01161014f578063a45ba8e7116100c1578063d5abeb011161007a578063d5abeb0114610987578063e0a80853146109b2578063e985e9c5146109db578063efbd73f414610a18578063f2fde38b14610a41578063fdea8e0b14610a6a5761027d565b8063a45ba8e714610888578063b071401b146108b3578063b88d4fde146108dc578063ba41b0c614610905578063c54e73e314610921578063c87b56dd1461094a5761027d565b8063837aea6c11610113578063837aea6c1461078a5780638da5cb5b146107b557806394354fd0146107e057806394da744f1461080b57806395d89b4114610834578063a22cb4651461085f5761027d565b80636f8b44b0146106bb57806370a08231146106e4578063715018a6146107215780637cb64759146107385780637ec4a659146107615761027d565b80632eb4a7ab116101f357806351830227116101ac57806351830227146105955780635503a0e8146105c057806358fcb8ca146105eb5780635c975abb1461062857806362b99ad4146106535780636352211e1461067e5761027d565b80632eb4a7ab1461049b5780633ccfd60b146104c657806342842e0e146104dd578063438b63001461050657806344a0d68a146105435780634fdd43cb1461056c5761027d565b806313faede61161024557806313faede61461038d57806316ba10e0146103b857806316c38b3c146103e157806318160ddd1461040a57806318cae2691461043557806323b872dd146104725761027d565b806301ffc9a714610282578063069824fb146102bf57806306fdde03146102fc578063081812fc14610327578063095ea7b314610364575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613d1c565b610a95565b6040516102b69190614334565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190613c75565b610b77565b6040516102f39190614334565b60405180910390f35b34801561030857600080fd5b50610311610c36565b60405161031e919061436a565b60405180910390f35b34801561033357600080fd5b5061034e60048036038101906103499190613dbf565b610cc8565b60405161035b91906142ab565b60405180910390f35b34801561037057600080fd5b5061038b60048036038101906103869190613bc6565b610d44565b005b34801561039957600080fd5b506103a2610e4f565b6040516103af91906144cc565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da9190613d76565b610e55565b005b3480156103ed57600080fd5b5061040860048036038101906104039190613cc2565b610eeb565b005b34801561041657600080fd5b5061041f610f84565b60405161042c91906144cc565b60405180910390f35b34801561044157600080fd5b5061045c60048036038101906104579190613a43565b610f9b565b60405161046991906144cc565b60405180910390f35b34801561047e57600080fd5b5061049960048036038101906104949190613ab0565b610fb3565b005b3480156104a757600080fd5b506104b0610fc3565b6040516104bd919061434f565b60405180910390f35b3480156104d257600080fd5b506104db610fc9565b005b3480156104e957600080fd5b5061050460048036038101906104ff9190613ab0565b6110c5565b005b34801561051257600080fd5b5061052d60048036038101906105289190613a43565b6110e5565b60405161053a9190614312565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190613dbf565b6111f0565b005b34801561057857600080fd5b50610593600480360381019061058e9190613d76565b611276565b005b3480156105a157600080fd5b506105aa61130c565b6040516105b79190614334565b60405180910390f35b3480156105cc57600080fd5b506105d561131f565b6040516105e2919061436a565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190613c06565b6113ad565b60405161061f9190614334565b60405180910390f35b34801561063457600080fd5b5061063d6113fc565b60405161064a9190614334565b60405180910390f35b34801561065f57600080fd5b5061066861140f565b604051610675919061436a565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a09190613dbf565b61149d565b6040516106b291906142ab565b60405180910390f35b3480156106c757600080fd5b506106e260048036038101906106dd9190613dbf565b6114b3565b005b3480156106f057600080fd5b5061070b60048036038101906107069190613a43565b611539565b60405161071891906144cc565b60405180910390f35b34801561072d57600080fd5b50610736611609565b005b34801561074457600080fd5b5061075f600480360381019061075a9190613cef565b611691565b005b34801561076d57600080fd5b5061078860048036038101906107839190613d76565b611717565b005b34801561079657600080fd5b5061079f6117ad565b6040516107ac91906144cc565b60405180910390f35b3480156107c157600080fd5b506107ca6117b3565b6040516107d791906142ab565b60405180910390f35b3480156107ec57600080fd5b506107f56117dd565b60405161080291906144cc565b60405180910390f35b34801561081757600080fd5b50610832600480360381019061082d9190613dbf565b6117e3565b005b34801561084057600080fd5b50610849611869565b604051610856919061436a565b60405180910390f35b34801561086b57600080fd5b5061088660048036038101906108819190613b86565b6118fb565b005b34801561089457600080fd5b5061089d611a73565b6040516108aa919061436a565b60405180910390f35b3480156108bf57600080fd5b506108da60048036038101906108d59190613dbf565b611b01565b005b3480156108e857600080fd5b5061090360048036038101906108fe9190613b03565b611b87565b005b61091f600480360381019061091a9190613e2c565b611c03565b005b34801561092d57600080fd5b5061094860048036038101906109439190613cc2565b611ef0565b005b34801561095657600080fd5b50610971600480360381019061096c9190613dbf565b611f89565b60405161097e919061436a565b60405180910390f35b34801561099357600080fd5b5061099c6120e2565b6040516109a991906144cc565b60405180910390f35b3480156109be57600080fd5b506109d960048036038101906109d49190613cc2565b6120e8565b005b3480156109e757600080fd5b50610a0260048036038101906109fd9190613a70565b612181565b604051610a0f9190614334565b60405180910390f35b348015610a2457600080fd5b50610a3f6004803603810190610a3a9190613dec565b612215565b005b348015610a4d57600080fd5b50610a686004803603810190610a639190613a43565b612473565b005b348015610a7657600080fd5b50610a7f61256b565b604051610a8c9190614334565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b6057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b705750610b6f8261257e565b5b9050919050565b6000610bed838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060115433604051602001610bd2919061421e565b604051602081830303815290604052805190602001206125e8565b610c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c239061446c565b60405180910390fd5b6001905092915050565b606060028054610c459061480b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c719061480b565b8015610cbe5780601f10610c9357610100808354040283529160200191610cbe565b820191906000526020600020905b815481529060010190602001808311610ca157829003601f168201915b5050505050905090565b6000610cd3826125ff565b610d09576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d4f8261149d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610db7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dd661264d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610e085750610e0681610e0161264d565b612181565b155b15610e3f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e4a838383612655565b505050565b600c5481565b610e5d61264d565b73ffffffffffffffffffffffffffffffffffffffff16610e7b6117b3565b73ffffffffffffffffffffffffffffffffffffffff1614610ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec8906143ec565b60405180910390fd5b80600a9080519060200190610ee792919061370b565b5050565b610ef361264d565b73ffffffffffffffffffffffffffffffffffffffff16610f116117b3565b73ffffffffffffffffffffffffffffffffffffffff1614610f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5e906143ec565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000610f8e612707565b6001546000540303905090565b60126020528060005260406000206000915090505481565b610fbe838383612710565b505050565b60115481565b610fd161264d565b73ffffffffffffffffffffffffffffffffffffffff16610fef6117b3565b73ffffffffffffffffffffffffffffffffffffffff1614611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c906143ec565b60405180910390fd5b600061104f6117b3565b73ffffffffffffffffffffffffffffffffffffffff164760405161107290614296565b60006040518083038185875af1925050503d80600081146110af576040519150601f19603f3d011682016040523d82523d6000602084013e6110b4565b606091505b50509050806110c257600080fd5b50565b6110e083838360405180602001604052806000815250611b87565b505050565b606060006110f283611539565b905060008167ffffffffffffffff8111156111105761110f6149d2565b5b60405190808252806020026020018201604052801561113e5781602001602082028036833780820191505090505b50905060006001905060005b838110801561115b5750600d548211155b156111e457600061116b8361149d565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111d057828483815181106111b5576111b46149a3565b5b60200260200101818152505081806111cc9061486e565b9250505b82806111db9061486e565b9350505061114a565b82945050505050919050565b6111f861264d565b73ffffffffffffffffffffffffffffffffffffffff166112166117b3565b73ffffffffffffffffffffffffffffffffffffffff161461126c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611263906143ec565b60405180910390fd5b80600c8190555050565b61127e61264d565b73ffffffffffffffffffffffffffffffffffffffff1661129c6117b3565b73ffffffffffffffffffffffffffffffffffffffff16146112f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e9906143ec565b60405180910390fd5b80600b908051906020019061130892919061370b565b5050565b601060019054906101000a900460ff1681565b600a805461132c9061480b565b80601f01602080910402602001604051908101604052809291908181526020018280546113589061480b565b80156113a55780601f1061137a576101008083540402835291602001916113a5565b820191906000526020600020905b81548152906001019060200180831161138857829003601f168201915b505050505081565b60008084846040516020016113c3929190614239565b6040516020818303038152906040528051906020012090506113f260115482856125e89092919063ffffffff16565b9150509392505050565b601060009054906101000a900460ff1681565b6009805461141c9061480b565b80601f01602080910402602001604051908101604052809291908181526020018280546114489061480b565b80156114955780601f1061146a57610100808354040283529160200191611495565b820191906000526020600020905b81548152906001019060200180831161147857829003601f168201915b505050505081565b60006114a882612bc6565b600001519050919050565b6114bb61264d565b73ffffffffffffffffffffffffffffffffffffffff166114d96117b3565b73ffffffffffffffffffffffffffffffffffffffff161461152f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611526906143ec565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115a1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61161161264d565b73ffffffffffffffffffffffffffffffffffffffff1661162f6117b3565b73ffffffffffffffffffffffffffffffffffffffff1614611685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167c906143ec565b60405180910390fd5b61168f6000612e55565b565b61169961264d565b73ffffffffffffffffffffffffffffffffffffffff166116b76117b3565b73ffffffffffffffffffffffffffffffffffffffff161461170d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611704906143ec565b60405180910390fd5b8060118190555050565b61171f61264d565b73ffffffffffffffffffffffffffffffffffffffff1661173d6117b3565b73ffffffffffffffffffffffffffffffffffffffff1614611793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178a906143ec565b60405180910390fd5b80600990805190602001906117a992919061370b565b5050565b600f5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b6117eb61264d565b73ffffffffffffffffffffffffffffffffffffffff166118096117b3565b73ffffffffffffffffffffffffffffffffffffffff161461185f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611856906143ec565b60405180910390fd5b80600f8190555050565b6060600380546118789061480b565b80601f01602080910402602001604051908101604052809291908181526020018280546118a49061480b565b80156118f15780601f106118c6576101008083540402835291602001916118f1565b820191906000526020600020905b8154815290600101906020018083116118d457829003601f168201915b5050505050905090565b61190361264d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611968576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061197561264d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a2261264d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a679190614334565b60405180910390a35050565b600b8054611a809061480b565b80601f0160208091040260200160405190810160405280929190818152602001828054611aac9061480b565b8015611af95780601f10611ace57610100808354040283529160200191611af9565b820191906000526020600020905b815481529060010190602001808311611adc57829003601f168201915b505050505081565b611b0961264d565b73ffffffffffffffffffffffffffffffffffffffff16611b276117b3565b73ffffffffffffffffffffffffffffffffffffffff1614611b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b74906143ec565b60405180910390fd5b80600e8190555050565b611b92848484612710565b611bb18373ffffffffffffffffffffffffffffffffffffffff16612f1b565b8015611bc65750611bc484848484612f3e565b155b15611bfd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b826000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601060009054906101000a900460ff1615611c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8f9061448c565b60405180910390fd5b600082118015611caa5750600e548211155b611ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce09061442c565b60405180910390fd5b600f548282611cf89190614636565b1115611d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d309061438c565b60405180910390fd5b600e54821115611d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d75906143ac565b60405180910390fd5b600d5482611d8a610f84565b611d949190614636565b1115611dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcc906144ac565b60405180910390fd5b84600c54611de391906146bd565b341015611e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1c9061444c565b60405180910390fd5b611e2d6117b3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e8a5760011515601060029054906101000a900460ff161515148015611e885750611e878484610b77565b5b505b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611eda9061486e565b9190505550611ee9338661309e565b5050505050565b611ef861264d565b73ffffffffffffffffffffffffffffffffffffffff16611f166117b3565b73ffffffffffffffffffffffffffffffffffffffff1614611f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f63906143ec565b60405180910390fd5b80601060026101000a81548160ff02191690831515021790555050565b6060611f94826125ff565b611fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fca9061440c565b60405180910390fd5b60001515601060019054906101000a900460ff161515141561208157600b8054611ffc9061480b565b80601f01602080910402602001604051908101604052809291908181526020018280546120289061480b565b80156120755780601f1061204a57610100808354040283529160200191612075565b820191906000526020600020905b81548152906001019060200180831161205857829003601f168201915b505050505090506120dd565b600061208b6130bc565b905060008151116120ab57604051806020016040528060008152506120d9565b806120b58461314e565b600a6040516020016120c993929190614265565b6040516020818303038152906040525b9150505b919050565b600d5481565b6120f061264d565b73ffffffffffffffffffffffffffffffffffffffff1661210e6117b3565b73ffffffffffffffffffffffffffffffffffffffff1614612164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215b906143ec565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601060009054906101000a900460ff16156122aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a19061448c565b60405180910390fd5b6000821180156122bc5750600e548211155b6122fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f29061442c565b60405180910390fd5b600f54828261230a9190614636565b111561234b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123429061438c565b60405180910390fd5b600e54821115612390576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612387906143ac565b60405180910390fd5b600d548261239c610f84565b6123a69190614636565b11156123e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123de906144ac565b60405180910390fd5b6123ef61264d565b73ffffffffffffffffffffffffffffffffffffffff1661240d6117b3565b73ffffffffffffffffffffffffffffffffffffffff1614612463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245a906143ec565b60405180910390fd5b61246d838561309e565b50505050565b61247b61264d565b73ffffffffffffffffffffffffffffffffffffffff166124996117b3565b73ffffffffffffffffffffffffffffffffffffffff16146124ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e6906143ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561255f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612556906143cc565b60405180910390fd5b61256881612e55565b50565b601060029054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000826125f585846132af565b1490509392505050565b60008161260a612707565b11158015612619575060005482105b8015612646575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061271b82612bc6565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612786576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166127a761264d565b73ffffffffffffffffffffffffffffffffffffffff1614806127d657506127d5856127d061264d565b612181565b5b8061281b57506127e461264d565b73ffffffffffffffffffffffffffffffffffffffff1661280384610cc8565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612854576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128bb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128c88585856001613324565b6128d460008487612655565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b54576000548214612b5357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bbf858585600161332a565b5050505050565b612bce613791565b600082905080612bdc612707565b11158015612beb575060005481105b15612e1e576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612e1c57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d00578092505050612e50565b5b600115612e1b57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e16578092505050612e50565b612d01565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f6461264d565b8786866040518563ffffffff1660e01b8152600401612f8694939291906142c6565b602060405180830381600087803b158015612fa057600080fd5b505af1925050508015612fd157506040513d601f19601f82011682018060405250810190612fce9190613d49565b60015b61304b573d8060008114613001576040519150601f19603f3d011682016040523d82523d6000602084013e613006565b606091505b50600081511415613043576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6130b8828260405180602001604052806000815250613330565b5050565b6060600980546130cb9061480b565b80601f01602080910402602001604051908101604052809291908181526020018280546130f79061480b565b80156131445780601f1061311957610100808354040283529160200191613144565b820191906000526020600020905b81548152906001019060200180831161312757829003601f168201915b5050505050905090565b60606000821415613196576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132aa565b600082905060005b600082146131c85780806131b19061486e565b915050600a826131c1919061468c565b915061319e565b60008167ffffffffffffffff8111156131e4576131e36149d2565b5b6040519080825280601f01601f1916602001820160405280156132165781602001600182028036833780820191505090505b5090505b600085146132a35760018261322f9190614717565b9150600a8561323e91906148e5565b603061324a9190614636565b60f81b8183815181106132605761325f6149a3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561329c919061468c565b945061321a565b8093505050505b919050565b60008082905060005b84518110156133195760008582815181106132d6576132d56149a3565b5b602002602001015190508083116132f8576132f183826136f4565b9250613305565b61330281846136f4565b92505b5080806133119061486e565b9150506132b8565b508091505092915050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561339d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156133d8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6133e56000858386613324565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506135a68673ffffffffffffffffffffffffffffffffffffffff16612f1b565b1561366c575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461361b6000878480600101955087612f3e565b613651576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156135ac57826000541461366757600080fd5b6136d8565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561366d575b8160008190555050506136ee600085838661332a565b50505050565b600082600052816020526040600020905092915050565b8280546137179061480b565b90600052602060002090601f0160209004810192826137395760008555613780565b82601f1061375257805160ff1916838001178555613780565b82800160010185558215613780579182015b8281111561377f578251825591602001919060010190613764565b5b50905061378d91906137d4565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156137ed5760008160009055506001016137d5565b5090565b60006138046137ff8461450c565b6144e7565b9050808382526020820190508285602086028201111561382757613826614a0b565b5b60005b85811015613857578161383d8882613993565b84526020840193506020830192505060018101905061382a565b5050509392505050565b600061387461386f84614538565b6144e7565b9050828152602081018484840111156138905761388f614a10565b5b61389b8482856147c9565b509392505050565b60006138b66138b184614569565b6144e7565b9050828152602081018484840111156138d2576138d1614a10565b5b6138dd8482856147c9565b509392505050565b6000813590506138f481614d56565b92915050565b60008083601f8401126139105761390f614a06565b5b8235905067ffffffffffffffff81111561392d5761392c614a01565b5b60208301915083602082028301111561394957613948614a0b565b5b9250929050565b600082601f83011261396557613964614a06565b5b81356139758482602086016137f1565b91505092915050565b60008135905061398d81614d6d565b92915050565b6000813590506139a281614d84565b92915050565b6000813590506139b781614d9b565b92915050565b6000815190506139cc81614d9b565b92915050565b600082601f8301126139e7576139e6614a06565b5b81356139f7848260208601613861565b91505092915050565b600082601f830112613a1557613a14614a06565b5b8135613a258482602086016138a3565b91505092915050565b600081359050613a3d81614db2565b92915050565b600060208284031215613a5957613a58614a1a565b5b6000613a67848285016138e5565b91505092915050565b60008060408385031215613a8757613a86614a1a565b5b6000613a95858286016138e5565b9250506020613aa6858286016138e5565b9150509250929050565b600080600060608486031215613ac957613ac8614a1a565b5b6000613ad7868287016138e5565b9350506020613ae8868287016138e5565b9250506040613af986828701613a2e565b9150509250925092565b60008060008060808587031215613b1d57613b1c614a1a565b5b6000613b2b878288016138e5565b9450506020613b3c878288016138e5565b9350506040613b4d87828801613a2e565b925050606085013567ffffffffffffffff811115613b6e57613b6d614a15565b5b613b7a878288016139d2565b91505092959194509250565b60008060408385031215613b9d57613b9c614a1a565b5b6000613bab858286016138e5565b9250506020613bbc8582860161397e565b9150509250929050565b60008060408385031215613bdd57613bdc614a1a565b5b6000613beb858286016138e5565b9250506020613bfc85828601613a2e565b9150509250929050565b600080600060608486031215613c1f57613c1e614a1a565b5b6000613c2d868287016138e5565b9350506020613c3e86828701613a2e565b925050604084013567ffffffffffffffff811115613c5f57613c5e614a15565b5b613c6b86828701613950565b9150509250925092565b60008060208385031215613c8c57613c8b614a1a565b5b600083013567ffffffffffffffff811115613caa57613ca9614a15565b5b613cb6858286016138fa565b92509250509250929050565b600060208284031215613cd857613cd7614a1a565b5b6000613ce68482850161397e565b91505092915050565b600060208284031215613d0557613d04614a1a565b5b6000613d1384828501613993565b91505092915050565b600060208284031215613d3257613d31614a1a565b5b6000613d40848285016139a8565b91505092915050565b600060208284031215613d5f57613d5e614a1a565b5b6000613d6d848285016139bd565b91505092915050565b600060208284031215613d8c57613d8b614a1a565b5b600082013567ffffffffffffffff811115613daa57613da9614a15565b5b613db684828501613a00565b91505092915050565b600060208284031215613dd557613dd4614a1a565b5b6000613de384828501613a2e565b91505092915050565b60008060408385031215613e0357613e02614a1a565b5b6000613e1185828601613a2e565b9250506020613e22858286016138e5565b9150509250929050565b600080600060408486031215613e4557613e44614a1a565b5b6000613e5386828701613a2e565b935050602084013567ffffffffffffffff811115613e7457613e73614a15565b5b613e80868287016138fa565b92509250509250925092565b6000613e9883836141e9565b60208301905092915050565b613ead8161474b565b82525050565b613ec4613ebf8261474b565b6148b7565b82525050565b6000613ed5826145bf565b613edf81856145ed565b9350613eea8361459a565b8060005b83811015613f1b578151613f028882613e8c565b9750613f0d836145e0565b925050600181019050613eee565b5085935050505092915050565b613f318161475d565b82525050565b613f4081614769565b82525050565b6000613f51826145ca565b613f5b81856145fe565b9350613f6b8185602086016147d8565b613f7481614a1f565b840191505092915050565b6000613f8a826145d5565b613f94818561461a565b9350613fa48185602086016147d8565b613fad81614a1f565b840191505092915050565b6000613fc3826145d5565b613fcd818561462b565b9350613fdd8185602086016147d8565b80840191505092915050565b60008154613ff68161480b565b614000818661462b565b9450600182166000811461401b576001811461402c5761405f565b60ff1983168652818601935061405f565b614035856145aa565b60005b8381101561405757815481890152600182019150602081019050614038565b838801955050505b50505092915050565b6000614075603f8361461a565b915061408082614a3d565b604082019050919050565b600061409860448361461a565b91506140a382614a8c565b606082019050919050565b60006140bb60268361461a565b91506140c682614b01565b604082019050919050565b60006140de60208361461a565b91506140e982614b50565b602082019050919050565b6000614101602f8361461a565b915061410c82614b79565b604082019050919050565b600061412460248361461a565b915061412f82614bc8565b604082019050919050565b6000614147603d8361461a565b915061415282614c17565b604082019050919050565b600061416a60308361461a565b915061417582614c66565b604082019050919050565b600061418d60008361460f565b915061419882614cb5565b600082019050919050565b60006141b060278361461a565b91506141bb82614cb8565b604082019050919050565b60006141d3602c8361461a565b91506141de82614d07565b604082019050919050565b6141f2816147bf565b82525050565b614201816147bf565b82525050565b614218614213826147bf565b6148db565b82525050565b600061422a8284613eb3565b60148201915081905092915050565b60006142458285613eb3565b6014820191506142558284614207565b6020820191508190509392505050565b60006142718286613fb8565b915061427d8285613fb8565b91506142898284613fe9565b9150819050949350505050565b60006142a182614180565b9150819050919050565b60006020820190506142c06000830184613ea4565b92915050565b60006080820190506142db6000830187613ea4565b6142e86020830186613ea4565b6142f560408301856141f8565b81810360608301526143078184613f46565b905095945050505050565b6000602082019050818103600083015261432c8184613eca565b905092915050565b60006020820190506143496000830184613f28565b92915050565b60006020820190506143646000830184613f37565b92915050565b600060208201905081810360008301526143848184613f7f565b905092915050565b600060208201905081810360008301526143a581614068565b9050919050565b600060208201905081810360008301526143c58161408b565b9050919050565b600060208201905081810360008301526143e5816140ae565b9050919050565b60006020820190508181036000830152614405816140d1565b9050919050565b60006020820190508181036000830152614425816140f4565b9050919050565b6000602082019050818103600083015261444581614117565b9050919050565b600060208201905081810360008301526144658161413a565b9050919050565b600060208201905081810360008301526144858161415d565b9050919050565b600060208201905081810360008301526144a5816141a3565b9050919050565b600060208201905081810360008301526144c5816141c6565b9050919050565b60006020820190506144e160008301846141f8565b92915050565b60006144f1614502565b90506144fd828261483d565b919050565b6000604051905090565b600067ffffffffffffffff821115614527576145266149d2565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614553576145526149d2565b5b61455c82614a1f565b9050602081019050919050565b600067ffffffffffffffff821115614584576145836149d2565b5b61458d82614a1f565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614641826147bf565b915061464c836147bf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561468157614680614916565b5b828201905092915050565b6000614697826147bf565b91506146a2836147bf565b9250826146b2576146b1614945565b5b828204905092915050565b60006146c8826147bf565b91506146d3836147bf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561470c5761470b614916565b5b828202905092915050565b6000614722826147bf565b915061472d836147bf565b9250828210156147405761473f614916565b5b828203905092915050565b60006147568261479f565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156147f65780820151818401526020810190506147db565b83811115614805576000848401525b50505050565b6000600282049050600182168061482357607f821691505b6020821081141561483757614836614974565b5b50919050565b61484682614a1f565b810181811067ffffffffffffffff82111715614865576148646149d2565b5b80604052505050565b6000614879826147bf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148ac576148ab614916565b5b600182019050919050565b60006148c2826148c9565b9050919050565b60006148d482614a30565b9050919050565b6000819050919050565b60006148f0826147bf565b91506148fb836147bf565b92508261490b5761490a614945565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4d6564696361746564204d6963653a20596f752068617665207265616368656460008201527f20746865204d4158204e4654207065722061646472657373206c696d69742100602082015250565b7f4d6564696361746564204d6963653a204d617820596f7520686176652072656160008201527f6368656420746865206d617820616d6f756e7420706572207472616e7361637460208201527f696f6e2100000000000000000000000000000000000000000000000000000000604082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d6564696361746564204d6963653a20496e76616c6964206d696e7420616d6f60008201527f756e742100000000000000000000000000000000000000000000000000000000602082015250565b7f4d6564696361746564204d6963653a20596f7520646f206e6f7420686176652060008201527f73756666696369656e742066756e647320746f20707572636861736521000000602082015250565b7f4d6564696361746564204d6963653a20596f757220416464726573732069732060008201527f6e6f742077686974656c69737465642100000000000000000000000000000000602082015250565b50565b7f4d6564696361746564204d6963653a2054686520636f6e74726163742069732060008201527f7061757365642100000000000000000000000000000000000000000000000000602082015250565b7f4d6564696361746564204d6963653a2054686520436f6c6c656374696f6e206860008201527f617320736f6c64206f7574210000000000000000000000000000000000000000602082015250565b614d5f8161474b565b8114614d6a57600080fd5b50565b614d768161475d565b8114614d8157600080fd5b50565b614d8d81614769565b8114614d9857600080fd5b50565b614da481614773565b8114614daf57600080fd5b50565b614dbb816147bf565b8114614dc657600080fd5b5056fea264697066735822122018dc7eae4ba4b0871fc993092f53a8069b569184f5d6fab64e4d4a1d135540b564736f6c63430008070033697066733a2f2f516d586f78554279454553715a696370747a6870343866543943774869346a764253443277754b6e66316e7455332f68696464656e2e6a736f6e697066733a2f2f516d5962374a647476706d7977623975456870506f77627346505659736459556b37437141326f535570667569702f

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80636f8b44b01161014f578063a45ba8e7116100c1578063d5abeb011161007a578063d5abeb0114610987578063e0a80853146109b2578063e985e9c5146109db578063efbd73f414610a18578063f2fde38b14610a41578063fdea8e0b14610a6a5761027d565b8063a45ba8e714610888578063b071401b146108b3578063b88d4fde146108dc578063ba41b0c614610905578063c54e73e314610921578063c87b56dd1461094a5761027d565b8063837aea6c11610113578063837aea6c1461078a5780638da5cb5b146107b557806394354fd0146107e057806394da744f1461080b57806395d89b4114610834578063a22cb4651461085f5761027d565b80636f8b44b0146106bb57806370a08231146106e4578063715018a6146107215780637cb64759146107385780637ec4a659146107615761027d565b80632eb4a7ab116101f357806351830227116101ac57806351830227146105955780635503a0e8146105c057806358fcb8ca146105eb5780635c975abb1461062857806362b99ad4146106535780636352211e1461067e5761027d565b80632eb4a7ab1461049b5780633ccfd60b146104c657806342842e0e146104dd578063438b63001461050657806344a0d68a146105435780634fdd43cb1461056c5761027d565b806313faede61161024557806313faede61461038d57806316ba10e0146103b857806316c38b3c146103e157806318160ddd1461040a57806318cae2691461043557806323b872dd146104725761027d565b806301ffc9a714610282578063069824fb146102bf57806306fdde03146102fc578063081812fc14610327578063095ea7b314610364575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613d1c565b610a95565b6040516102b69190614334565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190613c75565b610b77565b6040516102f39190614334565b60405180910390f35b34801561030857600080fd5b50610311610c36565b60405161031e919061436a565b60405180910390f35b34801561033357600080fd5b5061034e60048036038101906103499190613dbf565b610cc8565b60405161035b91906142ab565b60405180910390f35b34801561037057600080fd5b5061038b60048036038101906103869190613bc6565b610d44565b005b34801561039957600080fd5b506103a2610e4f565b6040516103af91906144cc565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da9190613d76565b610e55565b005b3480156103ed57600080fd5b5061040860048036038101906104039190613cc2565b610eeb565b005b34801561041657600080fd5b5061041f610f84565b60405161042c91906144cc565b60405180910390f35b34801561044157600080fd5b5061045c60048036038101906104579190613a43565b610f9b565b60405161046991906144cc565b60405180910390f35b34801561047e57600080fd5b5061049960048036038101906104949190613ab0565b610fb3565b005b3480156104a757600080fd5b506104b0610fc3565b6040516104bd919061434f565b60405180910390f35b3480156104d257600080fd5b506104db610fc9565b005b3480156104e957600080fd5b5061050460048036038101906104ff9190613ab0565b6110c5565b005b34801561051257600080fd5b5061052d60048036038101906105289190613a43565b6110e5565b60405161053a9190614312565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190613dbf565b6111f0565b005b34801561057857600080fd5b50610593600480360381019061058e9190613d76565b611276565b005b3480156105a157600080fd5b506105aa61130c565b6040516105b79190614334565b60405180910390f35b3480156105cc57600080fd5b506105d561131f565b6040516105e2919061436a565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190613c06565b6113ad565b60405161061f9190614334565b60405180910390f35b34801561063457600080fd5b5061063d6113fc565b60405161064a9190614334565b60405180910390f35b34801561065f57600080fd5b5061066861140f565b604051610675919061436a565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a09190613dbf565b61149d565b6040516106b291906142ab565b60405180910390f35b3480156106c757600080fd5b506106e260048036038101906106dd9190613dbf565b6114b3565b005b3480156106f057600080fd5b5061070b60048036038101906107069190613a43565b611539565b60405161071891906144cc565b60405180910390f35b34801561072d57600080fd5b50610736611609565b005b34801561074457600080fd5b5061075f600480360381019061075a9190613cef565b611691565b005b34801561076d57600080fd5b5061078860048036038101906107839190613d76565b611717565b005b34801561079657600080fd5b5061079f6117ad565b6040516107ac91906144cc565b60405180910390f35b3480156107c157600080fd5b506107ca6117b3565b6040516107d791906142ab565b60405180910390f35b3480156107ec57600080fd5b506107f56117dd565b60405161080291906144cc565b60405180910390f35b34801561081757600080fd5b50610832600480360381019061082d9190613dbf565b6117e3565b005b34801561084057600080fd5b50610849611869565b604051610856919061436a565b60405180910390f35b34801561086b57600080fd5b5061088660048036038101906108819190613b86565b6118fb565b005b34801561089457600080fd5b5061089d611a73565b6040516108aa919061436a565b60405180910390f35b3480156108bf57600080fd5b506108da60048036038101906108d59190613dbf565b611b01565b005b3480156108e857600080fd5b5061090360048036038101906108fe9190613b03565b611b87565b005b61091f600480360381019061091a9190613e2c565b611c03565b005b34801561092d57600080fd5b5061094860048036038101906109439190613cc2565b611ef0565b005b34801561095657600080fd5b50610971600480360381019061096c9190613dbf565b611f89565b60405161097e919061436a565b60405180910390f35b34801561099357600080fd5b5061099c6120e2565b6040516109a991906144cc565b60405180910390f35b3480156109be57600080fd5b506109d960048036038101906109d49190613cc2565b6120e8565b005b3480156109e757600080fd5b50610a0260048036038101906109fd9190613a70565b612181565b604051610a0f9190614334565b60405180910390f35b348015610a2457600080fd5b50610a3f6004803603810190610a3a9190613dec565b612215565b005b348015610a4d57600080fd5b50610a686004803603810190610a639190613a43565b612473565b005b348015610a7657600080fd5b50610a7f61256b565b604051610a8c9190614334565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b6057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b705750610b6f8261257e565b5b9050919050565b6000610bed838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060115433604051602001610bd2919061421e565b604051602081830303815290604052805190602001206125e8565b610c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c239061446c565b60405180910390fd5b6001905092915050565b606060028054610c459061480b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c719061480b565b8015610cbe5780601f10610c9357610100808354040283529160200191610cbe565b820191906000526020600020905b815481529060010190602001808311610ca157829003601f168201915b5050505050905090565b6000610cd3826125ff565b610d09576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d4f8261149d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610db7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dd661264d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610e085750610e0681610e0161264d565b612181565b155b15610e3f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e4a838383612655565b505050565b600c5481565b610e5d61264d565b73ffffffffffffffffffffffffffffffffffffffff16610e7b6117b3565b73ffffffffffffffffffffffffffffffffffffffff1614610ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec8906143ec565b60405180910390fd5b80600a9080519060200190610ee792919061370b565b5050565b610ef361264d565b73ffffffffffffffffffffffffffffffffffffffff16610f116117b3565b73ffffffffffffffffffffffffffffffffffffffff1614610f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5e906143ec565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000610f8e612707565b6001546000540303905090565b60126020528060005260406000206000915090505481565b610fbe838383612710565b505050565b60115481565b610fd161264d565b73ffffffffffffffffffffffffffffffffffffffff16610fef6117b3565b73ffffffffffffffffffffffffffffffffffffffff1614611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c906143ec565b60405180910390fd5b600061104f6117b3565b73ffffffffffffffffffffffffffffffffffffffff164760405161107290614296565b60006040518083038185875af1925050503d80600081146110af576040519150601f19603f3d011682016040523d82523d6000602084013e6110b4565b606091505b50509050806110c257600080fd5b50565b6110e083838360405180602001604052806000815250611b87565b505050565b606060006110f283611539565b905060008167ffffffffffffffff8111156111105761110f6149d2565b5b60405190808252806020026020018201604052801561113e5781602001602082028036833780820191505090505b50905060006001905060005b838110801561115b5750600d548211155b156111e457600061116b8361149d565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111d057828483815181106111b5576111b46149a3565b5b60200260200101818152505081806111cc9061486e565b9250505b82806111db9061486e565b9350505061114a565b82945050505050919050565b6111f861264d565b73ffffffffffffffffffffffffffffffffffffffff166112166117b3565b73ffffffffffffffffffffffffffffffffffffffff161461126c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611263906143ec565b60405180910390fd5b80600c8190555050565b61127e61264d565b73ffffffffffffffffffffffffffffffffffffffff1661129c6117b3565b73ffffffffffffffffffffffffffffffffffffffff16146112f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e9906143ec565b60405180910390fd5b80600b908051906020019061130892919061370b565b5050565b601060019054906101000a900460ff1681565b600a805461132c9061480b565b80601f01602080910402602001604051908101604052809291908181526020018280546113589061480b565b80156113a55780601f1061137a576101008083540402835291602001916113a5565b820191906000526020600020905b81548152906001019060200180831161138857829003601f168201915b505050505081565b60008084846040516020016113c3929190614239565b6040516020818303038152906040528051906020012090506113f260115482856125e89092919063ffffffff16565b9150509392505050565b601060009054906101000a900460ff1681565b6009805461141c9061480b565b80601f01602080910402602001604051908101604052809291908181526020018280546114489061480b565b80156114955780601f1061146a57610100808354040283529160200191611495565b820191906000526020600020905b81548152906001019060200180831161147857829003601f168201915b505050505081565b60006114a882612bc6565b600001519050919050565b6114bb61264d565b73ffffffffffffffffffffffffffffffffffffffff166114d96117b3565b73ffffffffffffffffffffffffffffffffffffffff161461152f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611526906143ec565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115a1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61161161264d565b73ffffffffffffffffffffffffffffffffffffffff1661162f6117b3565b73ffffffffffffffffffffffffffffffffffffffff1614611685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167c906143ec565b60405180910390fd5b61168f6000612e55565b565b61169961264d565b73ffffffffffffffffffffffffffffffffffffffff166116b76117b3565b73ffffffffffffffffffffffffffffffffffffffff161461170d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611704906143ec565b60405180910390fd5b8060118190555050565b61171f61264d565b73ffffffffffffffffffffffffffffffffffffffff1661173d6117b3565b73ffffffffffffffffffffffffffffffffffffffff1614611793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178a906143ec565b60405180910390fd5b80600990805190602001906117a992919061370b565b5050565b600f5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b6117eb61264d565b73ffffffffffffffffffffffffffffffffffffffff166118096117b3565b73ffffffffffffffffffffffffffffffffffffffff161461185f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611856906143ec565b60405180910390fd5b80600f8190555050565b6060600380546118789061480b565b80601f01602080910402602001604051908101604052809291908181526020018280546118a49061480b565b80156118f15780601f106118c6576101008083540402835291602001916118f1565b820191906000526020600020905b8154815290600101906020018083116118d457829003601f168201915b5050505050905090565b61190361264d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611968576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061197561264d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a2261264d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a679190614334565b60405180910390a35050565b600b8054611a809061480b565b80601f0160208091040260200160405190810160405280929190818152602001828054611aac9061480b565b8015611af95780601f10611ace57610100808354040283529160200191611af9565b820191906000526020600020905b815481529060010190602001808311611adc57829003601f168201915b505050505081565b611b0961264d565b73ffffffffffffffffffffffffffffffffffffffff16611b276117b3565b73ffffffffffffffffffffffffffffffffffffffff1614611b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b74906143ec565b60405180910390fd5b80600e8190555050565b611b92848484612710565b611bb18373ffffffffffffffffffffffffffffffffffffffff16612f1b565b8015611bc65750611bc484848484612f3e565b155b15611bfd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b826000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601060009054906101000a900460ff1615611c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8f9061448c565b60405180910390fd5b600082118015611caa5750600e548211155b611ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce09061442c565b60405180910390fd5b600f548282611cf89190614636565b1115611d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d309061438c565b60405180910390fd5b600e54821115611d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d75906143ac565b60405180910390fd5b600d5482611d8a610f84565b611d949190614636565b1115611dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcc906144ac565b60405180910390fd5b84600c54611de391906146bd565b341015611e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1c9061444c565b60405180910390fd5b611e2d6117b3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e8a5760011515601060029054906101000a900460ff161515148015611e885750611e878484610b77565b5b505b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611eda9061486e565b9190505550611ee9338661309e565b5050505050565b611ef861264d565b73ffffffffffffffffffffffffffffffffffffffff16611f166117b3565b73ffffffffffffffffffffffffffffffffffffffff1614611f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f63906143ec565b60405180910390fd5b80601060026101000a81548160ff02191690831515021790555050565b6060611f94826125ff565b611fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fca9061440c565b60405180910390fd5b60001515601060019054906101000a900460ff161515141561208157600b8054611ffc9061480b565b80601f01602080910402602001604051908101604052809291908181526020018280546120289061480b565b80156120755780601f1061204a57610100808354040283529160200191612075565b820191906000526020600020905b81548152906001019060200180831161205857829003601f168201915b505050505090506120dd565b600061208b6130bc565b905060008151116120ab57604051806020016040528060008152506120d9565b806120b58461314e565b600a6040516020016120c993929190614265565b6040516020818303038152906040525b9150505b919050565b600d5481565b6120f061264d565b73ffffffffffffffffffffffffffffffffffffffff1661210e6117b3565b73ffffffffffffffffffffffffffffffffffffffff1614612164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215b906143ec565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601060009054906101000a900460ff16156122aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a19061448c565b60405180910390fd5b6000821180156122bc5750600e548211155b6122fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f29061442c565b60405180910390fd5b600f54828261230a9190614636565b111561234b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123429061438c565b60405180910390fd5b600e54821115612390576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612387906143ac565b60405180910390fd5b600d548261239c610f84565b6123a69190614636565b11156123e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123de906144ac565b60405180910390fd5b6123ef61264d565b73ffffffffffffffffffffffffffffffffffffffff1661240d6117b3565b73ffffffffffffffffffffffffffffffffffffffff1614612463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245a906143ec565b60405180910390fd5b61246d838561309e565b50505050565b61247b61264d565b73ffffffffffffffffffffffffffffffffffffffff166124996117b3565b73ffffffffffffffffffffffffffffffffffffffff16146124ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e6906143ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561255f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612556906143cc565b60405180910390fd5b61256881612e55565b50565b601060029054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000826125f585846132af565b1490509392505050565b60008161260a612707565b11158015612619575060005482105b8015612646575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061271b82612bc6565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612786576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166127a761264d565b73ffffffffffffffffffffffffffffffffffffffff1614806127d657506127d5856127d061264d565b612181565b5b8061281b57506127e461264d565b73ffffffffffffffffffffffffffffffffffffffff1661280384610cc8565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612854576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128bb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128c88585856001613324565b6128d460008487612655565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b54576000548214612b5357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bbf858585600161332a565b5050505050565b612bce613791565b600082905080612bdc612707565b11158015612beb575060005481105b15612e1e576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612e1c57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d00578092505050612e50565b5b600115612e1b57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e16578092505050612e50565b612d01565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f6461264d565b8786866040518563ffffffff1660e01b8152600401612f8694939291906142c6565b602060405180830381600087803b158015612fa057600080fd5b505af1925050508015612fd157506040513d601f19601f82011682018060405250810190612fce9190613d49565b60015b61304b573d8060008114613001576040519150601f19603f3d011682016040523d82523d6000602084013e613006565b606091505b50600081511415613043576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6130b8828260405180602001604052806000815250613330565b5050565b6060600980546130cb9061480b565b80601f01602080910402602001604051908101604052809291908181526020018280546130f79061480b565b80156131445780601f1061311957610100808354040283529160200191613144565b820191906000526020600020905b81548152906001019060200180831161312757829003601f168201915b5050505050905090565b60606000821415613196576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132aa565b600082905060005b600082146131c85780806131b19061486e565b915050600a826131c1919061468c565b915061319e565b60008167ffffffffffffffff8111156131e4576131e36149d2565b5b6040519080825280601f01601f1916602001820160405280156132165781602001600182028036833780820191505090505b5090505b600085146132a35760018261322f9190614717565b9150600a8561323e91906148e5565b603061324a9190614636565b60f81b8183815181106132605761325f6149a3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561329c919061468c565b945061321a565b8093505050505b919050565b60008082905060005b84518110156133195760008582815181106132d6576132d56149a3565b5b602002602001015190508083116132f8576132f183826136f4565b9250613305565b61330281846136f4565b92505b5080806133119061486e565b9150506132b8565b508091505092915050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561339d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156133d8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6133e56000858386613324565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506135a68673ffffffffffffffffffffffffffffffffffffffff16612f1b565b1561366c575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461361b6000878480600101955087612f3e565b613651576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156135ac57826000541461366757600080fd5b6136d8565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561366d575b8160008190555050506136ee600085838661332a565b50505050565b600082600052816020526040600020905092915050565b8280546137179061480b565b90600052602060002090601f0160209004810192826137395760008555613780565b82601f1061375257805160ff1916838001178555613780565b82800160010185558215613780579182015b8281111561377f578251825591602001919060010190613764565b5b50905061378d91906137d4565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156137ed5760008160009055506001016137d5565b5090565b60006138046137ff8461450c565b6144e7565b9050808382526020820190508285602086028201111561382757613826614a0b565b5b60005b85811015613857578161383d8882613993565b84526020840193506020830192505060018101905061382a565b5050509392505050565b600061387461386f84614538565b6144e7565b9050828152602081018484840111156138905761388f614a10565b5b61389b8482856147c9565b509392505050565b60006138b66138b184614569565b6144e7565b9050828152602081018484840111156138d2576138d1614a10565b5b6138dd8482856147c9565b509392505050565b6000813590506138f481614d56565b92915050565b60008083601f8401126139105761390f614a06565b5b8235905067ffffffffffffffff81111561392d5761392c614a01565b5b60208301915083602082028301111561394957613948614a0b565b5b9250929050565b600082601f83011261396557613964614a06565b5b81356139758482602086016137f1565b91505092915050565b60008135905061398d81614d6d565b92915050565b6000813590506139a281614d84565b92915050565b6000813590506139b781614d9b565b92915050565b6000815190506139cc81614d9b565b92915050565b600082601f8301126139e7576139e6614a06565b5b81356139f7848260208601613861565b91505092915050565b600082601f830112613a1557613a14614a06565b5b8135613a258482602086016138a3565b91505092915050565b600081359050613a3d81614db2565b92915050565b600060208284031215613a5957613a58614a1a565b5b6000613a67848285016138e5565b91505092915050565b60008060408385031215613a8757613a86614a1a565b5b6000613a95858286016138e5565b9250506020613aa6858286016138e5565b9150509250929050565b600080600060608486031215613ac957613ac8614a1a565b5b6000613ad7868287016138e5565b9350506020613ae8868287016138e5565b9250506040613af986828701613a2e565b9150509250925092565b60008060008060808587031215613b1d57613b1c614a1a565b5b6000613b2b878288016138e5565b9450506020613b3c878288016138e5565b9350506040613b4d87828801613a2e565b925050606085013567ffffffffffffffff811115613b6e57613b6d614a15565b5b613b7a878288016139d2565b91505092959194509250565b60008060408385031215613b9d57613b9c614a1a565b5b6000613bab858286016138e5565b9250506020613bbc8582860161397e565b9150509250929050565b60008060408385031215613bdd57613bdc614a1a565b5b6000613beb858286016138e5565b9250506020613bfc85828601613a2e565b9150509250929050565b600080600060608486031215613c1f57613c1e614a1a565b5b6000613c2d868287016138e5565b9350506020613c3e86828701613a2e565b925050604084013567ffffffffffffffff811115613c5f57613c5e614a15565b5b613c6b86828701613950565b9150509250925092565b60008060208385031215613c8c57613c8b614a1a565b5b600083013567ffffffffffffffff811115613caa57613ca9614a15565b5b613cb6858286016138fa565b92509250509250929050565b600060208284031215613cd857613cd7614a1a565b5b6000613ce68482850161397e565b91505092915050565b600060208284031215613d0557613d04614a1a565b5b6000613d1384828501613993565b91505092915050565b600060208284031215613d3257613d31614a1a565b5b6000613d40848285016139a8565b91505092915050565b600060208284031215613d5f57613d5e614a1a565b5b6000613d6d848285016139bd565b91505092915050565b600060208284031215613d8c57613d8b614a1a565b5b600082013567ffffffffffffffff811115613daa57613da9614a15565b5b613db684828501613a00565b91505092915050565b600060208284031215613dd557613dd4614a1a565b5b6000613de384828501613a2e565b91505092915050565b60008060408385031215613e0357613e02614a1a565b5b6000613e1185828601613a2e565b9250506020613e22858286016138e5565b9150509250929050565b600080600060408486031215613e4557613e44614a1a565b5b6000613e5386828701613a2e565b935050602084013567ffffffffffffffff811115613e7457613e73614a15565b5b613e80868287016138fa565b92509250509250925092565b6000613e9883836141e9565b60208301905092915050565b613ead8161474b565b82525050565b613ec4613ebf8261474b565b6148b7565b82525050565b6000613ed5826145bf565b613edf81856145ed565b9350613eea8361459a565b8060005b83811015613f1b578151613f028882613e8c565b9750613f0d836145e0565b925050600181019050613eee565b5085935050505092915050565b613f318161475d565b82525050565b613f4081614769565b82525050565b6000613f51826145ca565b613f5b81856145fe565b9350613f6b8185602086016147d8565b613f7481614a1f565b840191505092915050565b6000613f8a826145d5565b613f94818561461a565b9350613fa48185602086016147d8565b613fad81614a1f565b840191505092915050565b6000613fc3826145d5565b613fcd818561462b565b9350613fdd8185602086016147d8565b80840191505092915050565b60008154613ff68161480b565b614000818661462b565b9450600182166000811461401b576001811461402c5761405f565b60ff1983168652818601935061405f565b614035856145aa565b60005b8381101561405757815481890152600182019150602081019050614038565b838801955050505b50505092915050565b6000614075603f8361461a565b915061408082614a3d565b604082019050919050565b600061409860448361461a565b91506140a382614a8c565b606082019050919050565b60006140bb60268361461a565b91506140c682614b01565b604082019050919050565b60006140de60208361461a565b91506140e982614b50565b602082019050919050565b6000614101602f8361461a565b915061410c82614b79565b604082019050919050565b600061412460248361461a565b915061412f82614bc8565b604082019050919050565b6000614147603d8361461a565b915061415282614c17565b604082019050919050565b600061416a60308361461a565b915061417582614c66565b604082019050919050565b600061418d60008361460f565b915061419882614cb5565b600082019050919050565b60006141b060278361461a565b91506141bb82614cb8565b604082019050919050565b60006141d3602c8361461a565b91506141de82614d07565b604082019050919050565b6141f2816147bf565b82525050565b614201816147bf565b82525050565b614218614213826147bf565b6148db565b82525050565b600061422a8284613eb3565b60148201915081905092915050565b60006142458285613eb3565b6014820191506142558284614207565b6020820191508190509392505050565b60006142718286613fb8565b915061427d8285613fb8565b91506142898284613fe9565b9150819050949350505050565b60006142a182614180565b9150819050919050565b60006020820190506142c06000830184613ea4565b92915050565b60006080820190506142db6000830187613ea4565b6142e86020830186613ea4565b6142f560408301856141f8565b81810360608301526143078184613f46565b905095945050505050565b6000602082019050818103600083015261432c8184613eca565b905092915050565b60006020820190506143496000830184613f28565b92915050565b60006020820190506143646000830184613f37565b92915050565b600060208201905081810360008301526143848184613f7f565b905092915050565b600060208201905081810360008301526143a581614068565b9050919050565b600060208201905081810360008301526143c58161408b565b9050919050565b600060208201905081810360008301526143e5816140ae565b9050919050565b60006020820190508181036000830152614405816140d1565b9050919050565b60006020820190508181036000830152614425816140f4565b9050919050565b6000602082019050818103600083015261444581614117565b9050919050565b600060208201905081810360008301526144658161413a565b9050919050565b600060208201905081810360008301526144858161415d565b9050919050565b600060208201905081810360008301526144a5816141a3565b9050919050565b600060208201905081810360008301526144c5816141c6565b9050919050565b60006020820190506144e160008301846141f8565b92915050565b60006144f1614502565b90506144fd828261483d565b919050565b6000604051905090565b600067ffffffffffffffff821115614527576145266149d2565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614553576145526149d2565b5b61455c82614a1f565b9050602081019050919050565b600067ffffffffffffffff821115614584576145836149d2565b5b61458d82614a1f565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614641826147bf565b915061464c836147bf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561468157614680614916565b5b828201905092915050565b6000614697826147bf565b91506146a2836147bf565b9250826146b2576146b1614945565b5b828204905092915050565b60006146c8826147bf565b91506146d3836147bf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561470c5761470b614916565b5b828202905092915050565b6000614722826147bf565b915061472d836147bf565b9250828210156147405761473f614916565b5b828203905092915050565b60006147568261479f565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156147f65780820151818401526020810190506147db565b83811115614805576000848401525b50505050565b6000600282049050600182168061482357607f821691505b6020821081141561483757614836614974565b5b50919050565b61484682614a1f565b810181811067ffffffffffffffff82111715614865576148646149d2565b5b80604052505050565b6000614879826147bf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148ac576148ab614916565b5b600182019050919050565b60006148c2826148c9565b9050919050565b60006148d482614a30565b9050919050565b6000819050919050565b60006148f0826147bf565b91506148fb836147bf565b92508261490b5761490a614945565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4d6564696361746564204d6963653a20596f752068617665207265616368656460008201527f20746865204d4158204e4654207065722061646472657373206c696d69742100602082015250565b7f4d6564696361746564204d6963653a204d617820596f7520686176652072656160008201527f6368656420746865206d617820616d6f756e7420706572207472616e7361637460208201527f696f6e2100000000000000000000000000000000000000000000000000000000604082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d6564696361746564204d6963653a20496e76616c6964206d696e7420616d6f60008201527f756e742100000000000000000000000000000000000000000000000000000000602082015250565b7f4d6564696361746564204d6963653a20596f7520646f206e6f7420686176652060008201527f73756666696369656e742066756e647320746f20707572636861736521000000602082015250565b7f4d6564696361746564204d6963653a20596f757220416464726573732069732060008201527f6e6f742077686974656c69737465642100000000000000000000000000000000602082015250565b50565b7f4d6564696361746564204d6963653a2054686520636f6e74726163742069732060008201527f7061757365642100000000000000000000000000000000000000000000000000602082015250565b7f4d6564696361746564204d6963653a2054686520436f6c6c656374696f6e206860008201527f617320736f6c64206f7574210000000000000000000000000000000000000000602082015250565b614d5f8161474b565b8114614d6a57600080fd5b50565b614d768161475d565b8114614d8157600080fd5b50565b614d8d81614769565b8114614d9857600080fd5b50565b614da481614773565b8114614daf57600080fd5b50565b614dbb816147bf565b8114614dc657600080fd5b5056fea264697066735822122018dc7eae4ba4b0871fc993092f53a8069b569184f5d6fab64e4d4a1d135540b564736f6c63430008070033

Deployed Bytecode Sourcemap

48855:5323:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27178:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53545:375;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30291:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31794:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31357:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49158:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52954:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53060:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26427:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49553:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32659:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49441:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54036:137;;;;;;;;;;;;;:::i;:::-;;32900:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51062:635;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52290:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52710:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49363:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49065:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53322:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49333:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48978:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30099:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52474:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27547:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47703:103;;;;;;;;;;;;;:::i;:::-;;53228:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52848:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49277:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47052:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49232:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52370:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30460:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32070:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49103:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52574:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33156:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50446:447;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53143:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51703:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49196:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52203:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32428:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50901:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47961:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49396:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27178:305;27280:4;27332:25;27317:40;;;:11;:40;;;;:105;;;;27389:33;27374:48;;;:11;:48;;;;27317:105;:158;;;;27439:36;27463:11;27439:23;:36::i;:::-;27317:158;27297:178;;27178:305;;;:::o;53545:375::-;53622:4;53661:151;53698:12;;53661:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53729:10;;53785;53768:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;53758:39;;;;;;53661:18;:151::i;:::-;53639:249;;;;;;;;;;;;:::i;:::-;;;;;;;;;53908:4;53901:11;;53545:375;;;;:::o;30291:100::-;30345:13;30378:5;30371:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30291:100;:::o;31794:204::-;31862:7;31887:16;31895:7;31887;:16::i;:::-;31882:64;;31912:34;;;;;;;;;;;;;;31882:64;31966:15;:24;31982:7;31966:24;;;;;;;;;;;;;;;;;;;;;31959:31;;31794:204;;;:::o;31357:371::-;31430:13;31446:24;31462:7;31446:15;:24::i;:::-;31430:40;;31491:5;31485:11;;:2;:11;;;31481:48;;;31505:24;;;;;;;;;;;;;;31481:48;31562:5;31546:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;31572:37;31589:5;31596:12;:10;:12::i;:::-;31572:16;:37::i;:::-;31571:38;31546:63;31542:138;;;31633:35;;;;;;;;;;;;;;31542:138;31692:28;31701:2;31705:7;31714:5;31692:8;:28::i;:::-;31419:309;31357:371;;:::o;49158:33::-;;;;:::o;52954:100::-;47283:12;:10;:12::i;:::-;47272:23;;:7;:5;:7::i;:::-;:23;;;47264:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53038:10:::1;53026:9;:22;;;;;;;;;;;;:::i;:::-;;52954:100:::0;:::o;53060:77::-;47283:12;:10;:12::i;:::-;47272:23;;:7;:5;:7::i;:::-;:23;;;47264:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53125:6:::1;53116;;:15;;;;;;;;;;;;;;;;;;53060:77:::0;:::o;26427:303::-;26471:7;26696:15;:13;:15::i;:::-;26681:12;;26665:13;;:28;:46;26658:53;;26427:303;:::o;49553:55::-;;;;;;;;;;;;;;;;;:::o;32659:170::-;32793:28;32803:4;32809:2;32813:7;32793:9;:28::i;:::-;32659:170;;;:::o;49441:94::-;;;;:::o;54036:137::-;47283:12;:10;:12::i;:::-;47272:23;;:7;:5;:7::i;:::-;:23;;;47264:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54081:7:::1;54102;:5;:7::i;:::-;54094:21;;54123;54094:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54080:69;;;54164:2;54156:11;;;::::0;::::1;;54073:100;54036:137::o:0;32900:185::-;33038:39;33055:4;33061:2;33065:7;33038:39;;;;;;;;;;;;:16;:39::i;:::-;32900:185;;;:::o;51062:635::-;51137:16;51165:23;51191:17;51201:6;51191:9;:17::i;:::-;51165:43;;51215:30;51262:15;51248:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51215:63;;51285:22;51310:1;51285:26;;51318:23;51354:309;51379:15;51361;:33;:64;;;;;51416:9;;51398:14;:27;;51361:64;51354:309;;;51436:25;51464:23;51472:14;51464:7;:23::i;:::-;51436:51;;51523:6;51502:27;;:17;:27;;;51498:131;;;51575:14;51542:13;51556:15;51542:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;51602:17;;;;;:::i;:::-;;;;51498:131;51639:16;;;;;:::i;:::-;;;;51427:236;51354:309;;;51678:13;51671:20;;;;;;51062:635;;;:::o;52290:74::-;47283:12;:10;:12::i;:::-;47272:23;;:7;:5;:7::i;:::-;:23;;;47264:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52353:5:::1;52346:4;:12;;;;52290:74:::0;:::o;52710:132::-;47283:12;:10;:12::i;:::-;47272:23;;:7;:5;:7::i;:::-;:23;;;47264:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52818:18:::1;52798:17;:38;;;;;;;;;;;;:::i;:::-;;52710:132:::0;:::o;49363:28::-;;;;;;;;;;;;;:::o;49065:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53322:217::-;53416:4;53429:12;53471:3;53476:8;53454:31;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53444:42;;;;;;53429:57;;53502:31;53516:10;;53528:4;53502:6;:13;;:31;;;;;:::i;:::-;53495:38;;;53322:217;;;;;:::o;49333:25::-;;;;;;;;;;;;;:::o;48978:82::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30099:125::-;30163:7;30190:21;30203:7;30190:12;:21::i;:::-;:26;;;30183:33;;30099:125;;;:::o;52474:94::-;47283:12;:10;:12::i;:::-;47272:23;;:7;:5;:7::i;:::-;:23;;;47264:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52552:10:::1;52540:9;:22;;;;52474:94:::0;:::o;27547:206::-;27611:7;27652:1;27635:19;;:5;:19;;;27631:60;;;27663:28;;;;;;;;;;;;;;27631:60;27717:12;:19;27730:5;27717:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;27709:36;;27702:43;;27547:206;;;:::o;47703:103::-;47283:12;:10;:12::i;:::-;47272:23;;:7;:5;:7::i;:::-;:23;;;47264:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47768:30:::1;47795:1;47768:18;:30::i;:::-;47703:103::o:0;53228:88::-;47283:12;:10;:12::i;:::-;47272:23;;:7;:5;:7::i;:::-;:23;;;47264:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53305:5:::1;53292:10;:18;;;;53228:88:::0;:::o;52848:100::-;47283:12;:10;:12::i;:::-;47272:23;;:7;:5;:7::i;:::-;:23;;;47264:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52932:10:::1;52920:9;:22;;;;;;;;;;;;:::i;:::-;;52848:100:::0;:::o;49277:35::-;;;;:::o;47052:87::-;47098:7;47125:6;;;;;;;;;;;47118:13;;47052:87;:::o;49232:40::-;;;;:::o;52370:98::-;47283:12;:10;:12::i;:::-;47272:23;;:7;:5;:7::i;:::-;:23;;;47264:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52456:6:::1;52437:16;:25;;;;52370:98:::0;:::o;30460:104::-;30516:13;30549:7;30542:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30460:104;:::o;32070:287::-;32181:12;:10;:12::i;:::-;32169:24;;:8;:24;;;32165:54;;;32202:17;;;;;;;;;;;;;;32165:54;32277:8;32232:18;:32;32251:12;:10;:12::i;:::-;32232:32;;;;;;;;;;;;;;;:42;32265:8;32232:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;32330:8;32301:48;;32316:12;:10;:12::i;:::-;32301:48;;;32340:8;32301:48;;;;;;:::i;:::-;;;;;;;;32070:287;;:::o;49103:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52574:130::-;47283:12;:10;:12::i;:::-;47272:23;;:7;:5;:7::i;:::-;:23;;;47264:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52679:19:::1;52658:18;:40;;;;52574:130:::0;:::o;33156:369::-;33323:28;33333:4;33339:2;33343:7;33323:9;:28::i;:::-;33366:15;:2;:13;;;:15::i;:::-;:76;;;;;33386:56;33417:4;33423:2;33427:7;33436:5;33386:30;:56::i;:::-;33385:57;33366:76;33362:156;;;33466:40;;;;;;;;;;;;;;33362:156;33156:369;;;;:::o;50446:447::-;50544:11;49831:25;49859:20;:32;49880:10;49859:32;;;;;;;;;;;;;;;;49831:60;;49909:6;;;;;;;;;;;49908:7;49900:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;49988:1;49974:11;:15;:52;;;;;50008:18;;49993:11;:33;;49974:52;49966:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;50117:16;;50102:11;50082:17;:31;;;;:::i;:::-;:51;;50074:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;50231:18;;50216:11;:33;;50208:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;50368:9;;50353:11;50337:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;50329:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;50592:11:::1;50585:4;;:18;;;;:::i;:::-;50572:9;:31;;50564:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;50700:7;:5;:7::i;:::-;50686:21;;:10;:21;;;50682:113;;50735:4;50724:15;;:7;;;;;;;;;;;:15;;;:46;;;;;50743:27;50757:12;;50743:13;:27::i;:::-;50724:46;50720:66:::0;50682:113:::1;50803:20;:32;50824:10;50803:32;;;;;;;;;;;;;;;;:34;;;;;;;;;:::i;:::-;;;;;;50845;50855:10;50867:11;50845:9;:34::i;:::-;49824:616:::0;50446:447;;;;:::o;53143:79::-;47283:12;:10;:12::i;:::-;47272:23;;:7;:5;:7::i;:::-;:23;;;47264:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53210:6:::1;53200:7;;:16;;;;;;;;;;;;;;;;;;53143:79:::0;:::o;51703:494::-;51802:13;51843:17;51851:8;51843:7;:17::i;:::-;51827:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;51950:5;51938:17;;:8;;;;;;;;;;;:17;;;51934:64;;;51973:17;51966:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51934:64;52006:28;52037:10;:8;:10::i;:::-;52006:41;;52092:1;52067:14;52061:28;:32;:130;;;;;;;;;;;;;;;;;52129:14;52145:19;:8;:17;:19::i;:::-;52166:9;52112:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52061:130;52054:137;;;51703:494;;;;:::o;49196:31::-;;;;:::o;52203:81::-;47283:12;:10;:12::i;:::-;47272:23;;:7;:5;:7::i;:::-;:23;;;47264:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52272:6:::1;52261:8;;:17;;;;;;;;;;;;;;;;;;52203:81:::0;:::o;32428:164::-;32525:4;32549:18;:25;32568:5;32549:25;;;;;;;;;;;;;;;:35;32575:8;32549:35;;;;;;;;;;;;;;;;;;;;;;;;;32542:42;;32428:164;;;;:::o;50901:155::-;50987:11;49831:25;49859:20;:32;49880:10;49859:32;;;;;;;;;;;;;;;;49831:60;;49909:6;;;;;;;;;;;49908:7;49900:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;49988:1;49974:11;:15;:52;;;;;50008:18;;49993:11;:33;;49974:52;49966:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;50117:16;;50102:11;50082:17;:31;;;;:::i;:::-;:51;;50074:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;50231:18;;50216:11;:33;;50208:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;50368:9;;50353:11;50337:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;50329:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;47283:12:::1;:10;:12::i;:::-;47272:23;;:7;:5;:7::i;:::-;:23;;;47264:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51017:33:::2;51027:9;51038:11;51017:9;:33::i;:::-;49824:616:::0;50901:155;;;:::o;47961:201::-;47283:12;:10;:12::i;:::-;47272:23;;:7;:5;:7::i;:::-;:23;;;47264:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48070:1:::1;48050:22;;:8;:22;;;;48042:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48126:28;48145:8;48126:18;:28::i;:::-;47961:201:::0;:::o;49396:26::-;;;;;;;;;;;;;:::o;13494:157::-;13579:4;13618:25;13603:40;;;:11;:40;;;;13596:47;;13494:157;;;:::o;20568:190::-;20693:4;20746;20717:25;20730:5;20737:4;20717:12;:25::i;:::-;:33;20710:40;;20568:190;;;;;:::o;33780:174::-;33837:4;33880:7;33861:15;:13;:15::i;:::-;:26;;:53;;;;;33901:13;;33891:7;:23;33861:53;:85;;;;;33919:11;:20;33931:7;33919:20;;;;;;;;;;;:27;;;;;;;;;;;;33918:28;33861:85;33854:92;;33780:174;;;:::o;22712:98::-;22765:7;22792:10;22785:17;;22712:98;:::o;43006:196::-;43148:2;43121:15;:24;43137:7;43121:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43186:7;43182:2;43166:28;;43175:5;43166:28;;;;;;;;;;;;43006:196;;;:::o;26201:92::-;26257:7;26284:1;26277:8;;26201:92;:::o;37954:2130::-;38069:35;38107:21;38120:7;38107:12;:21::i;:::-;38069:59;;38167:4;38145:26;;:13;:18;;;:26;;;38141:67;;38180:28;;;;;;;;;;;;;;38141:67;38221:22;38263:4;38247:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;38284:36;38301:4;38307:12;:10;:12::i;:::-;38284:16;:36::i;:::-;38247:73;:126;;;;38361:12;:10;:12::i;:::-;38337:36;;:20;38349:7;38337:11;:20::i;:::-;:36;;;38247:126;38221:153;;38392:17;38387:66;;38418:35;;;;;;;;;;;;;;38387:66;38482:1;38468:16;;:2;:16;;;38464:52;;;38493:23;;;;;;;;;;;;;;38464:52;38529:43;38551:4;38557:2;38561:7;38570:1;38529:21;:43::i;:::-;38637:35;38654:1;38658:7;38667:4;38637:8;:35::i;:::-;38998:1;38968:12;:18;38981:4;38968:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39042:1;39014:12;:16;39027:2;39014:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39060:31;39094:11;:20;39106:7;39094:20;;;;;;;;;;;39060:54;;39145:2;39129:8;:13;;;:18;;;;;;;;;;;;;;;;;;39195:15;39162:8;:23;;;:49;;;;;;;;;;;;;;;;;;39463:19;39495:1;39485:7;:11;39463:33;;39511:31;39545:11;:24;39557:11;39545:24;;;;;;;;;;;39511:58;;39613:1;39588:27;;:8;:13;;;;;;;;;;;;:27;;;39584:384;;;39798:13;;39783:11;:28;39779:174;;39852:4;39836:8;:13;;;:20;;;;;;;;;;;;;;;;;;39905:13;:28;;;39879:8;:23;;;:54;;;;;;;;;;;;;;;;;;39779:174;39584:384;38943:1036;;;40015:7;40011:2;39996:27;;40005:4;39996:27;;;;;;;;;;;;40034:42;40055:4;40061:2;40065:7;40074:1;40034:20;:42::i;:::-;38058:2026;;37954:2130;;;:::o;28928:1109::-;28990:21;;:::i;:::-;29024:12;29039:7;29024:22;;29107:4;29088:15;:13;:15::i;:::-;:23;;:47;;;;;29122:13;;29115:4;:20;29088:47;29084:886;;;29156:31;29190:11;:17;29202:4;29190:17;;;;;;;;;;;29156:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29231:9;:16;;;29226:729;;29302:1;29276:28;;:9;:14;;;:28;;;29272:101;;29340:9;29333:16;;;;;;29272:101;29675:261;29682:4;29675:261;;;29715:6;;;;;;;;29760:11;:17;29772:4;29760:17;;;;;;;;;;;29748:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29834:1;29808:28;;:9;:14;;;:28;;;29804:109;;29876:9;29869:16;;;;;;29804:109;29675:261;;;29226:729;29137:833;29084:886;29998:31;;;;;;;;;;;;;;28928:1109;;;;:::o;48322:191::-;48396:16;48415:6;;;;;;;;;;;48396:25;;48441:8;48432:6;;:17;;;;;;;;;;;;;;;;;;48496:8;48465:40;;48486:8;48465:40;;;;;;;;;;;;48385:128;48322:191;:::o;3388:326::-;3448:4;3705:1;3683:7;:19;;;:23;3676:30;;3388:326;;;:::o;43694:667::-;43857:4;43894:2;43878:36;;;43915:12;:10;:12::i;:::-;43929:4;43935:7;43944:5;43878:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43874:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44129:1;44112:6;:13;:18;44108:235;;;44158:40;;;;;;;;;;;;;;44108:235;44301:6;44295:13;44286:6;44282:2;44278:15;44271:38;43874:480;44007:45;;;43997:55;;;:6;:55;;;;43990:62;;;43694:667;;;;;;:::o;34038:104::-;34107:27;34117:2;34121:8;34107:27;;;;;;;;;;;;:9;:27::i;:::-;34038:104;;:::o;53926:::-;53986:13;54015:9;54008:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53926:104;:::o;396:723::-;452:13;682:1;673:5;:10;669:53;;;700:10;;;;;;;;;;;;;;;;;;;;;669:53;732:12;747:5;732:20;;763:14;788:78;803:1;795:4;:9;788:78;;821:8;;;;;:::i;:::-;;;;852:2;844:10;;;;;:::i;:::-;;;788:78;;;876:19;908:6;898:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;876:39;;926:154;942:1;933:5;:10;926:154;;970:1;960:11;;;;;:::i;:::-;;;1037:2;1029:5;:10;;;;:::i;:::-;1016:2;:24;;;;:::i;:::-;1003:39;;986:6;993;986:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1066:2;1057:11;;;;;:::i;:::-;;;926:154;;;1104:6;1090:21;;;;;396:723;;;;:::o;21119:675::-;21202:7;21222:20;21245:4;21222:27;;21265:9;21260:497;21284:5;:12;21280:1;:16;21260:497;;;21318:20;21341:5;21347:1;21341:8;;;;;;;;:::i;:::-;;;;;;;;21318:31;;21384:12;21368;:28;21364:382;;21511:42;21526:12;21540;21511:14;:42::i;:::-;21496:57;;21364:382;;;21688:42;21703:12;21717;21688:14;:42::i;:::-;21673:57;;21364:382;21303:454;21298:3;;;;;:::i;:::-;;;;21260:497;;;;21774:12;21767:19;;;21119:675;;;;:::o;45009:159::-;;;;;:::o;45827:158::-;;;;;:::o;34516:1751::-;34639:20;34662:13;;34639:36;;34704:1;34690:16;;:2;:16;;;34686:48;;;34715:19;;;;;;;;;;;;;;34686:48;34761:1;34749:8;:13;34745:44;;;34771:18;;;;;;;;;;;;;;34745:44;34802:61;34832:1;34836:2;34840:12;34854:8;34802:21;:61::i;:::-;35175:8;35140:12;:16;35153:2;35140:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35239:8;35199:12;:16;35212:2;35199:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35298:2;35265:11;:25;35277:12;35265:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;35365:15;35315:11;:25;35327:12;35315:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;35398:20;35421:12;35398:35;;35448:11;35477:8;35462:12;:23;35448:37;;35506:15;:2;:13;;;:15::i;:::-;35502:633;;;35542:314;35598:12;35594:2;35573:38;;35590:1;35573:38;;;;;;;;;;;;35639:69;35678:1;35682:2;35686:14;;;;;;35702:5;35639:30;:69::i;:::-;35634:174;;35744:40;;;;;;;;;;;;;;35634:174;35851:3;35835:12;:19;;35542:314;;35937:12;35920:13;;:29;35916:43;;35951:8;;;35916:43;35502:633;;;36000:120;36056:14;;;;;;36052:2;36031:40;;36048:1;36031:40;;;;;;;;;;;;36115:3;36099:12;:19;;36000:120;;35502:633;36165:12;36149:13;:28;;;;35115:1074;;36199:60;36228:1;36232:2;36236:12;36250:8;36199:20;:60::i;:::-;34628:1639;34516:1751;;;:::o;21802:224::-;21870:13;21933:1;21927:4;21920:15;21962:1;21956:4;21949:15;22003:4;21997;21987:21;21978:30;;21802:224;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:568::-;1821:8;1831:6;1881:3;1874:4;1866:6;1862:17;1858:27;1848:122;;1889:79;;:::i;:::-;1848:122;2002:6;1989:20;1979:30;;2032:18;2024:6;2021:30;2018:117;;;2054:79;;:::i;:::-;2018:117;2168:4;2160:6;2156:17;2144:29;;2222:3;2214:4;2206:6;2202:17;2192:8;2188:32;2185:41;2182:128;;;2229:79;;:::i;:::-;2182:128;1748:568;;;;;:::o;2339:370::-;2410:5;2459:3;2452:4;2444:6;2440:17;2436:27;2426:122;;2467:79;;:::i;:::-;2426:122;2584:6;2571:20;2609:94;2699:3;2691:6;2684:4;2676:6;2672:17;2609:94;:::i;:::-;2600:103;;2416:293;2339:370;;;;:::o;2715:133::-;2758:5;2796:6;2783:20;2774:29;;2812:30;2836:5;2812:30;:::i;:::-;2715:133;;;;:::o;2854:139::-;2900:5;2938:6;2925:20;2916:29;;2954:33;2981:5;2954:33;:::i;:::-;2854:139;;;;:::o;2999:137::-;3044:5;3082:6;3069:20;3060:29;;3098:32;3124:5;3098:32;:::i;:::-;2999:137;;;;:::o;3142:141::-;3198:5;3229:6;3223:13;3214:22;;3245:32;3271:5;3245:32;:::i;:::-;3142:141;;;;:::o;3302:338::-;3357:5;3406:3;3399:4;3391:6;3387:17;3383:27;3373:122;;3414:79;;:::i;:::-;3373:122;3531:6;3518:20;3556:78;3630:3;3622:6;3615:4;3607:6;3603:17;3556:78;:::i;:::-;3547:87;;3363:277;3302:338;;;;:::o;3660:340::-;3716:5;3765:3;3758:4;3750:6;3746:17;3742:27;3732:122;;3773:79;;:::i;:::-;3732:122;3890:6;3877:20;3915:79;3990:3;3982:6;3975:4;3967:6;3963:17;3915:79;:::i;:::-;3906:88;;3722:278;3660:340;;;;:::o;4006:139::-;4052:5;4090:6;4077:20;4068:29;;4106:33;4133:5;4106:33;:::i;:::-;4006:139;;;;:::o;4151:329::-;4210:6;4259:2;4247:9;4238:7;4234:23;4230:32;4227:119;;;4265:79;;:::i;:::-;4227:119;4385:1;4410:53;4455:7;4446:6;4435:9;4431:22;4410:53;:::i;:::-;4400:63;;4356:117;4151:329;;;;:::o;4486:474::-;4554:6;4562;4611:2;4599:9;4590:7;4586:23;4582:32;4579:119;;;4617:79;;:::i;:::-;4579:119;4737:1;4762:53;4807:7;4798:6;4787:9;4783:22;4762:53;:::i;:::-;4752:63;;4708:117;4864:2;4890:53;4935:7;4926:6;4915:9;4911:22;4890:53;:::i;:::-;4880:63;;4835:118;4486:474;;;;;:::o;4966:619::-;5043:6;5051;5059;5108:2;5096:9;5087:7;5083:23;5079:32;5076:119;;;5114:79;;:::i;:::-;5076:119;5234:1;5259:53;5304:7;5295:6;5284:9;5280:22;5259:53;:::i;:::-;5249:63;;5205:117;5361:2;5387:53;5432:7;5423:6;5412:9;5408:22;5387:53;:::i;:::-;5377:63;;5332:118;5489:2;5515:53;5560:7;5551:6;5540:9;5536:22;5515:53;:::i;:::-;5505:63;;5460:118;4966:619;;;;;:::o;5591:943::-;5686:6;5694;5702;5710;5759:3;5747:9;5738:7;5734:23;5730:33;5727:120;;;5766:79;;:::i;:::-;5727:120;5886:1;5911:53;5956:7;5947:6;5936:9;5932:22;5911:53;:::i;:::-;5901:63;;5857:117;6013:2;6039:53;6084:7;6075:6;6064:9;6060:22;6039:53;:::i;:::-;6029:63;;5984:118;6141:2;6167:53;6212:7;6203:6;6192:9;6188:22;6167:53;:::i;:::-;6157:63;;6112:118;6297:2;6286:9;6282:18;6269:32;6328:18;6320:6;6317:30;6314:117;;;6350:79;;:::i;:::-;6314:117;6455:62;6509:7;6500:6;6489:9;6485:22;6455:62;:::i;:::-;6445:72;;6240:287;5591:943;;;;;;;:::o;6540:468::-;6605:6;6613;6662:2;6650:9;6641:7;6637:23;6633:32;6630:119;;;6668:79;;:::i;:::-;6630:119;6788:1;6813:53;6858:7;6849:6;6838:9;6834:22;6813:53;:::i;:::-;6803:63;;6759:117;6915:2;6941:50;6983:7;6974:6;6963:9;6959:22;6941:50;:::i;:::-;6931:60;;6886:115;6540:468;;;;;:::o;7014:474::-;7082:6;7090;7139:2;7127:9;7118:7;7114:23;7110:32;7107:119;;;7145:79;;:::i;:::-;7107:119;7265:1;7290:53;7335:7;7326:6;7315:9;7311:22;7290:53;:::i;:::-;7280:63;;7236:117;7392:2;7418:53;7463:7;7454:6;7443:9;7439:22;7418:53;:::i;:::-;7408:63;;7363:118;7014:474;;;;;:::o;7494:829::-;7596:6;7604;7612;7661:2;7649:9;7640:7;7636:23;7632:32;7629:119;;;7667:79;;:::i;:::-;7629:119;7787:1;7812:53;7857:7;7848:6;7837:9;7833:22;7812:53;:::i;:::-;7802:63;;7758:117;7914:2;7940:53;7985:7;7976:6;7965:9;7961:22;7940:53;:::i;:::-;7930:63;;7885:118;8070:2;8059:9;8055:18;8042:32;8101:18;8093:6;8090:30;8087:117;;;8123:79;;:::i;:::-;8087:117;8228:78;8298:7;8289:6;8278:9;8274:22;8228:78;:::i;:::-;8218:88;;8013:303;7494:829;;;;;:::o;8329:559::-;8415:6;8423;8472:2;8460:9;8451:7;8447:23;8443:32;8440:119;;;8478:79;;:::i;:::-;8440:119;8626:1;8615:9;8611:17;8598:31;8656:18;8648:6;8645:30;8642:117;;;8678:79;;:::i;:::-;8642:117;8791:80;8863:7;8854:6;8843:9;8839:22;8791:80;:::i;:::-;8773:98;;;;8569:312;8329:559;;;;;:::o;8894:323::-;8950:6;8999:2;8987:9;8978:7;8974:23;8970:32;8967:119;;;9005:79;;:::i;:::-;8967:119;9125:1;9150:50;9192:7;9183:6;9172:9;9168:22;9150:50;:::i;:::-;9140:60;;9096:114;8894:323;;;;:::o;9223:329::-;9282:6;9331:2;9319:9;9310:7;9306:23;9302:32;9299:119;;;9337:79;;:::i;:::-;9299:119;9457:1;9482:53;9527:7;9518:6;9507:9;9503:22;9482:53;:::i;:::-;9472:63;;9428:117;9223:329;;;;:::o;9558:327::-;9616:6;9665:2;9653:9;9644:7;9640:23;9636:32;9633:119;;;9671:79;;:::i;:::-;9633:119;9791:1;9816:52;9860:7;9851:6;9840:9;9836:22;9816:52;:::i;:::-;9806:62;;9762:116;9558:327;;;;:::o;9891:349::-;9960:6;10009:2;9997:9;9988:7;9984:23;9980:32;9977:119;;;10015:79;;:::i;:::-;9977:119;10135:1;10160:63;10215:7;10206:6;10195:9;10191:22;10160:63;:::i;:::-;10150:73;;10106:127;9891:349;;;;:::o;10246:509::-;10315:6;10364:2;10352:9;10343:7;10339:23;10335:32;10332:119;;;10370:79;;:::i;:::-;10332:119;10518:1;10507:9;10503:17;10490:31;10548:18;10540:6;10537:30;10534:117;;;10570:79;;:::i;:::-;10534:117;10675:63;10730:7;10721:6;10710:9;10706:22;10675:63;:::i;:::-;10665:73;;10461:287;10246:509;;;;:::o;10761:329::-;10820:6;10869:2;10857:9;10848:7;10844:23;10840:32;10837:119;;;10875:79;;:::i;:::-;10837:119;10995:1;11020:53;11065:7;11056:6;11045:9;11041:22;11020:53;:::i;:::-;11010:63;;10966:117;10761:329;;;;:::o;11096:474::-;11164:6;11172;11221:2;11209:9;11200:7;11196:23;11192:32;11189:119;;;11227:79;;:::i;:::-;11189:119;11347:1;11372:53;11417:7;11408:6;11397:9;11393:22;11372:53;:::i;:::-;11362:63;;11318:117;11474:2;11500:53;11545:7;11536:6;11525:9;11521:22;11500:53;:::i;:::-;11490:63;;11445:118;11096:474;;;;;:::o;11576:704::-;11671:6;11679;11687;11736:2;11724:9;11715:7;11711:23;11707:32;11704:119;;;11742:79;;:::i;:::-;11704:119;11862:1;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11833:117;12017:2;12006:9;12002:18;11989:32;12048:18;12040:6;12037:30;12034:117;;;12070:79;;:::i;:::-;12034:117;12183:80;12255:7;12246:6;12235:9;12231:22;12183:80;:::i;:::-;12165:98;;;;11960:313;11576:704;;;;;:::o;12286:179::-;12355:10;12376:46;12418:3;12410:6;12376:46;:::i;:::-;12454:4;12449:3;12445:14;12431:28;;12286:179;;;;:::o;12471:118::-;12558:24;12576:5;12558:24;:::i;:::-;12553:3;12546:37;12471:118;;:::o;12595:157::-;12700:45;12720:24;12738:5;12720:24;:::i;:::-;12700:45;:::i;:::-;12695:3;12688:58;12595:157;;:::o;12788:732::-;12907:3;12936:54;12984:5;12936:54;:::i;:::-;13006:86;13085:6;13080:3;13006:86;:::i;:::-;12999:93;;13116:56;13166:5;13116:56;:::i;:::-;13195:7;13226:1;13211:284;13236:6;13233:1;13230:13;13211:284;;;13312:6;13306:13;13339:63;13398:3;13383:13;13339:63;:::i;:::-;13332:70;;13425:60;13478:6;13425:60;:::i;:::-;13415:70;;13271:224;13258:1;13255;13251:9;13246:14;;13211:284;;;13215:14;13511:3;13504:10;;12912:608;;;12788:732;;;;:::o;13526:109::-;13607:21;13622:5;13607:21;:::i;:::-;13602:3;13595:34;13526:109;;:::o;13641:118::-;13728:24;13746:5;13728:24;:::i;:::-;13723:3;13716:37;13641:118;;:::o;13765:360::-;13851:3;13879:38;13911:5;13879:38;:::i;:::-;13933:70;13996:6;13991:3;13933:70;:::i;:::-;13926:77;;14012:52;14057:6;14052:3;14045:4;14038:5;14034:16;14012:52;:::i;:::-;14089:29;14111:6;14089:29;:::i;:::-;14084:3;14080:39;14073:46;;13855:270;13765:360;;;;:::o;14131:364::-;14219:3;14247:39;14280:5;14247:39;:::i;:::-;14302:71;14366:6;14361:3;14302:71;:::i;:::-;14295:78;;14382:52;14427:6;14422:3;14415:4;14408:5;14404:16;14382:52;:::i;:::-;14459:29;14481:6;14459:29;:::i;:::-;14454:3;14450:39;14443:46;;14223:272;14131:364;;;;:::o;14501:377::-;14607:3;14635:39;14668:5;14635:39;:::i;:::-;14690:89;14772:6;14767:3;14690:89;:::i;:::-;14683:96;;14788:52;14833:6;14828:3;14821:4;14814:5;14810:16;14788:52;:::i;:::-;14865:6;14860:3;14856:16;14849:23;;14611:267;14501:377;;;;:::o;14908:845::-;15011:3;15048:5;15042:12;15077:36;15103:9;15077:36;:::i;:::-;15129:89;15211:6;15206:3;15129:89;:::i;:::-;15122:96;;15249:1;15238:9;15234:17;15265:1;15260:137;;;;15411:1;15406:341;;;;15227:520;;15260:137;15344:4;15340:9;15329;15325:25;15320:3;15313:38;15380:6;15375:3;15371:16;15364:23;;15260:137;;15406:341;15473:38;15505:5;15473:38;:::i;:::-;15533:1;15547:154;15561:6;15558:1;15555:13;15547:154;;;15635:7;15629:14;15625:1;15620:3;15616:11;15609:35;15685:1;15676:7;15672:15;15661:26;;15583:4;15580:1;15576:12;15571:17;;15547:154;;;15730:6;15725:3;15721:16;15714:23;;15413:334;;15227:520;;15015:738;;14908:845;;;;:::o;15759:366::-;15901:3;15922:67;15986:2;15981:3;15922:67;:::i;:::-;15915:74;;15998:93;16087:3;15998:93;:::i;:::-;16116:2;16111:3;16107:12;16100:19;;15759:366;;;:::o;16131:::-;16273:3;16294:67;16358:2;16353:3;16294:67;:::i;:::-;16287:74;;16370:93;16459:3;16370:93;:::i;:::-;16488:2;16483:3;16479:12;16472:19;;16131:366;;;:::o;16503:::-;16645:3;16666:67;16730:2;16725:3;16666:67;:::i;:::-;16659:74;;16742:93;16831:3;16742:93;:::i;:::-;16860:2;16855:3;16851:12;16844:19;;16503:366;;;:::o;16875:::-;17017:3;17038:67;17102:2;17097:3;17038:67;:::i;:::-;17031:74;;17114:93;17203:3;17114:93;:::i;:::-;17232:2;17227:3;17223:12;17216:19;;16875:366;;;:::o;17247:::-;17389:3;17410:67;17474:2;17469:3;17410:67;:::i;:::-;17403:74;;17486:93;17575:3;17486:93;:::i;:::-;17604:2;17599:3;17595:12;17588:19;;17247:366;;;:::o;17619:::-;17761:3;17782:67;17846:2;17841:3;17782:67;:::i;:::-;17775:74;;17858:93;17947:3;17858:93;:::i;:::-;17976:2;17971:3;17967:12;17960:19;;17619:366;;;:::o;17991:::-;18133:3;18154:67;18218:2;18213:3;18154:67;:::i;:::-;18147:74;;18230:93;18319:3;18230:93;:::i;:::-;18348:2;18343:3;18339:12;18332:19;;17991:366;;;:::o;18363:::-;18505:3;18526:67;18590:2;18585:3;18526:67;:::i;:::-;18519:74;;18602:93;18691:3;18602:93;:::i;:::-;18720:2;18715:3;18711:12;18704:19;;18363:366;;;:::o;18735:398::-;18894:3;18915:83;18996:1;18991:3;18915:83;:::i;:::-;18908:90;;19007:93;19096:3;19007:93;:::i;:::-;19125:1;19120:3;19116:11;19109:18;;18735:398;;;:::o;19139:366::-;19281:3;19302:67;19366:2;19361:3;19302:67;:::i;:::-;19295:74;;19378:93;19467:3;19378:93;:::i;:::-;19496:2;19491:3;19487:12;19480:19;;19139:366;;;:::o;19511:::-;19653:3;19674:67;19738:2;19733:3;19674:67;:::i;:::-;19667:74;;19750:93;19839:3;19750:93;:::i;:::-;19868:2;19863:3;19859:12;19852:19;;19511:366;;;:::o;19883:108::-;19960:24;19978:5;19960:24;:::i;:::-;19955:3;19948:37;19883:108;;:::o;19997:118::-;20084:24;20102:5;20084:24;:::i;:::-;20079:3;20072:37;19997:118;;:::o;20121:157::-;20226:45;20246:24;20264:5;20246:24;:::i;:::-;20226:45;:::i;:::-;20221:3;20214:58;20121:157;;:::o;20284:256::-;20396:3;20411:75;20482:3;20473:6;20411:75;:::i;:::-;20511:2;20506:3;20502:12;20495:19;;20531:3;20524:10;;20284:256;;;;:::o;20546:397::-;20686:3;20701:75;20772:3;20763:6;20701:75;:::i;:::-;20801:2;20796:3;20792:12;20785:19;;20814:75;20885:3;20876:6;20814:75;:::i;:::-;20914:2;20909:3;20905:12;20898:19;;20934:3;20927:10;;20546:397;;;;;:::o;20949:589::-;21174:3;21196:95;21287:3;21278:6;21196:95;:::i;:::-;21189:102;;21308:95;21399:3;21390:6;21308:95;:::i;:::-;21301:102;;21420:92;21508:3;21499:6;21420:92;:::i;:::-;21413:99;;21529:3;21522:10;;20949:589;;;;;;:::o;21544:379::-;21728:3;21750:147;21893:3;21750:147;:::i;:::-;21743:154;;21914:3;21907:10;;21544:379;;;:::o;21929:222::-;22022:4;22060:2;22049:9;22045:18;22037:26;;22073:71;22141:1;22130:9;22126:17;22117:6;22073:71;:::i;:::-;21929:222;;;;:::o;22157:640::-;22352:4;22390:3;22379:9;22375:19;22367:27;;22404:71;22472:1;22461:9;22457:17;22448:6;22404:71;:::i;:::-;22485:72;22553:2;22542:9;22538:18;22529:6;22485:72;:::i;:::-;22567;22635:2;22624:9;22620:18;22611:6;22567:72;:::i;:::-;22686:9;22680:4;22676:20;22671:2;22660:9;22656:18;22649:48;22714:76;22785:4;22776:6;22714:76;:::i;:::-;22706:84;;22157:640;;;;;;;:::o;22803:373::-;22946:4;22984:2;22973:9;22969:18;22961:26;;23033:9;23027:4;23023:20;23019:1;23008:9;23004:17;22997:47;23061:108;23164:4;23155:6;23061:108;:::i;:::-;23053:116;;22803:373;;;;:::o;23182:210::-;23269:4;23307:2;23296:9;23292:18;23284:26;;23320:65;23382:1;23371:9;23367:17;23358:6;23320:65;:::i;:::-;23182:210;;;;:::o;23398:222::-;23491:4;23529:2;23518:9;23514:18;23506:26;;23542:71;23610:1;23599:9;23595:17;23586:6;23542:71;:::i;:::-;23398:222;;;;:::o;23626:313::-;23739:4;23777:2;23766:9;23762:18;23754:26;;23826:9;23820:4;23816:20;23812:1;23801:9;23797:17;23790:47;23854:78;23927:4;23918:6;23854:78;:::i;:::-;23846:86;;23626:313;;;;:::o;23945:419::-;24111:4;24149:2;24138:9;24134:18;24126:26;;24198:9;24192:4;24188:20;24184:1;24173:9;24169:17;24162:47;24226:131;24352:4;24226:131;:::i;:::-;24218:139;;23945:419;;;:::o;24370:::-;24536:4;24574:2;24563:9;24559:18;24551:26;;24623:9;24617:4;24613:20;24609:1;24598:9;24594:17;24587:47;24651:131;24777:4;24651:131;:::i;:::-;24643:139;;24370:419;;;:::o;24795:::-;24961:4;24999:2;24988:9;24984:18;24976:26;;25048:9;25042:4;25038:20;25034:1;25023:9;25019:17;25012:47;25076:131;25202:4;25076:131;:::i;:::-;25068:139;;24795:419;;;:::o;25220:::-;25386:4;25424:2;25413:9;25409:18;25401:26;;25473:9;25467:4;25463:20;25459:1;25448:9;25444:17;25437:47;25501:131;25627:4;25501:131;:::i;:::-;25493:139;;25220:419;;;:::o;25645:::-;25811:4;25849:2;25838:9;25834:18;25826:26;;25898:9;25892:4;25888:20;25884:1;25873:9;25869:17;25862:47;25926:131;26052:4;25926:131;:::i;:::-;25918:139;;25645:419;;;:::o;26070:::-;26236:4;26274:2;26263:9;26259:18;26251:26;;26323:9;26317:4;26313:20;26309:1;26298:9;26294:17;26287:47;26351:131;26477:4;26351:131;:::i;:::-;26343:139;;26070:419;;;:::o;26495:::-;26661:4;26699:2;26688:9;26684:18;26676:26;;26748:9;26742:4;26738:20;26734:1;26723:9;26719:17;26712:47;26776:131;26902:4;26776:131;:::i;:::-;26768:139;;26495:419;;;:::o;26920:::-;27086:4;27124:2;27113:9;27109:18;27101:26;;27173:9;27167:4;27163:20;27159:1;27148:9;27144:17;27137:47;27201:131;27327:4;27201:131;:::i;:::-;27193:139;;26920:419;;;:::o;27345:::-;27511:4;27549:2;27538:9;27534:18;27526:26;;27598:9;27592:4;27588:20;27584:1;27573:9;27569:17;27562:47;27626:131;27752:4;27626:131;:::i;:::-;27618:139;;27345:419;;;:::o;27770:::-;27936:4;27974:2;27963:9;27959:18;27951:26;;28023:9;28017:4;28013:20;28009:1;27998:9;27994:17;27987:47;28051:131;28177:4;28051:131;:::i;:::-;28043:139;;27770:419;;;:::o;28195:222::-;28288:4;28326:2;28315:9;28311:18;28303:26;;28339:71;28407:1;28396:9;28392:17;28383:6;28339:71;:::i;:::-;28195:222;;;;:::o;28423:129::-;28457:6;28484:20;;:::i;:::-;28474:30;;28513:33;28541:4;28533:6;28513:33;:::i;:::-;28423:129;;;:::o;28558:75::-;28591:6;28624:2;28618:9;28608:19;;28558:75;:::o;28639:311::-;28716:4;28806:18;28798:6;28795:30;28792:56;;;28828:18;;:::i;:::-;28792:56;28878:4;28870:6;28866:17;28858:25;;28938:4;28932;28928:15;28920:23;;28639:311;;;:::o;28956:307::-;29017:4;29107:18;29099:6;29096:30;29093:56;;;29129:18;;:::i;:::-;29093:56;29167:29;29189:6;29167:29;:::i;:::-;29159:37;;29251:4;29245;29241:15;29233:23;;28956:307;;;:::o;29269:308::-;29331:4;29421:18;29413:6;29410:30;29407:56;;;29443:18;;:::i;:::-;29407:56;29481:29;29503:6;29481:29;:::i;:::-;29473:37;;29565:4;29559;29555:15;29547:23;;29269:308;;;:::o;29583:132::-;29650:4;29673:3;29665:11;;29703:4;29698:3;29694:14;29686:22;;29583:132;;;:::o;29721:141::-;29770:4;29793:3;29785:11;;29816:3;29813:1;29806:14;29850:4;29847:1;29837:18;29829:26;;29721:141;;;:::o;29868:114::-;29935:6;29969:5;29963:12;29953:22;;29868:114;;;:::o;29988:98::-;30039:6;30073:5;30067:12;30057:22;;29988:98;;;:::o;30092:99::-;30144:6;30178:5;30172:12;30162:22;;30092:99;;;:::o;30197:113::-;30267:4;30299;30294:3;30290:14;30282:22;;30197:113;;;:::o;30316:184::-;30415:11;30449:6;30444:3;30437:19;30489:4;30484:3;30480:14;30465:29;;30316:184;;;;:::o;30506:168::-;30589:11;30623:6;30618:3;30611:19;30663:4;30658:3;30654:14;30639:29;;30506:168;;;;:::o;30680:147::-;30781:11;30818:3;30803:18;;30680:147;;;;:::o;30833:169::-;30917:11;30951:6;30946:3;30939:19;30991:4;30986:3;30982:14;30967:29;;30833:169;;;;:::o;31008:148::-;31110:11;31147:3;31132:18;;31008:148;;;;:::o;31162:305::-;31202:3;31221:20;31239:1;31221:20;:::i;:::-;31216:25;;31255:20;31273:1;31255:20;:::i;:::-;31250:25;;31409:1;31341:66;31337:74;31334:1;31331:81;31328:107;;;31415:18;;:::i;:::-;31328:107;31459:1;31456;31452:9;31445:16;;31162:305;;;;:::o;31473:185::-;31513:1;31530:20;31548:1;31530:20;:::i;:::-;31525:25;;31564:20;31582:1;31564:20;:::i;:::-;31559:25;;31603:1;31593:35;;31608:18;;:::i;:::-;31593:35;31650:1;31647;31643:9;31638:14;;31473:185;;;;:::o;31664:348::-;31704:7;31727:20;31745:1;31727:20;:::i;:::-;31722:25;;31761:20;31779:1;31761:20;:::i;:::-;31756:25;;31949:1;31881:66;31877:74;31874:1;31871:81;31866:1;31859:9;31852:17;31848:105;31845:131;;;31956:18;;:::i;:::-;31845:131;32004:1;32001;31997:9;31986:20;;31664:348;;;;:::o;32018:191::-;32058:4;32078:20;32096:1;32078:20;:::i;:::-;32073:25;;32112:20;32130:1;32112:20;:::i;:::-;32107:25;;32151:1;32148;32145:8;32142:34;;;32156:18;;:::i;:::-;32142:34;32201:1;32198;32194:9;32186:17;;32018:191;;;;:::o;32215:96::-;32252:7;32281:24;32299:5;32281:24;:::i;:::-;32270:35;;32215:96;;;:::o;32317:90::-;32351:7;32394:5;32387:13;32380:21;32369:32;;32317:90;;;:::o;32413:77::-;32450:7;32479:5;32468:16;;32413:77;;;:::o;32496:149::-;32532:7;32572:66;32565:5;32561:78;32550:89;;32496:149;;;:::o;32651:126::-;32688:7;32728:42;32721:5;32717:54;32706:65;;32651:126;;;:::o;32783:77::-;32820:7;32849:5;32838:16;;32783:77;;;:::o;32866:154::-;32950:6;32945:3;32940;32927:30;33012:1;33003:6;32998:3;32994:16;32987:27;32866:154;;;:::o;33026:307::-;33094:1;33104:113;33118:6;33115:1;33112:13;33104:113;;;33203:1;33198:3;33194:11;33188:18;33184:1;33179:3;33175:11;33168:39;33140:2;33137:1;33133:10;33128:15;;33104:113;;;33235:6;33232:1;33229:13;33226:101;;;33315:1;33306:6;33301:3;33297:16;33290:27;33226:101;33075:258;33026:307;;;:::o;33339:320::-;33383:6;33420:1;33414:4;33410:12;33400:22;;33467:1;33461:4;33457:12;33488:18;33478:81;;33544:4;33536:6;33532:17;33522:27;;33478:81;33606:2;33598:6;33595:14;33575:18;33572:38;33569:84;;;33625:18;;:::i;:::-;33569:84;33390:269;33339:320;;;:::o;33665:281::-;33748:27;33770:4;33748:27;:::i;:::-;33740:6;33736:40;33878:6;33866:10;33863:22;33842:18;33830:10;33827:34;33824:62;33821:88;;;33889:18;;:::i;:::-;33821:88;33929:10;33925:2;33918:22;33708:238;33665:281;;:::o;33952:233::-;33991:3;34014:24;34032:5;34014:24;:::i;:::-;34005:33;;34060:66;34053:5;34050:77;34047:103;;;34130:18;;:::i;:::-;34047:103;34177:1;34170:5;34166:13;34159:20;;33952:233;;;:::o;34191:100::-;34230:7;34259:26;34279:5;34259:26;:::i;:::-;34248:37;;34191:100;;;:::o;34297:94::-;34336:7;34365:20;34379:5;34365:20;:::i;:::-;34354:31;;34297:94;;;:::o;34397:79::-;34436:7;34465:5;34454:16;;34397:79;;;:::o;34482:176::-;34514:1;34531:20;34549:1;34531:20;:::i;:::-;34526:25;;34565:20;34583:1;34565:20;:::i;:::-;34560:25;;34604:1;34594:35;;34609:18;;:::i;:::-;34594:35;34650:1;34647;34643:9;34638:14;;34482:176;;;;:::o;34664:180::-;34712:77;34709:1;34702:88;34809:4;34806:1;34799:15;34833:4;34830:1;34823:15;34850:180;34898:77;34895:1;34888:88;34995:4;34992:1;34985:15;35019:4;35016:1;35009:15;35036:180;35084:77;35081:1;35074:88;35181:4;35178:1;35171:15;35205:4;35202:1;35195:15;35222:180;35270:77;35267:1;35260:88;35367:4;35364:1;35357:15;35391:4;35388:1;35381:15;35408:180;35456:77;35453:1;35446:88;35553:4;35550:1;35543:15;35577:4;35574:1;35567:15;35594:117;35703:1;35700;35693:12;35717:117;35826:1;35823;35816:12;35840:117;35949:1;35946;35939:12;35963:117;36072:1;36069;36062:12;36086:117;36195:1;36192;36185:12;36209:117;36318:1;36315;36308:12;36332:102;36373:6;36424:2;36420:7;36415:2;36408:5;36404:14;36400:28;36390:38;;36332:102;;;:::o;36440:94::-;36473:8;36521:5;36517:2;36513:14;36492:35;;36440:94;;;:::o;36540:250::-;36680:34;36676:1;36668:6;36664:14;36657:58;36749:33;36744:2;36736:6;36732:15;36725:58;36540:250;:::o;36796:292::-;36936:34;36932:1;36924:6;36920:14;36913:58;37005:34;37000:2;36992:6;36988:15;36981:59;37074:6;37069:2;37061:6;37057:15;37050:31;36796:292;:::o;37094:225::-;37234:34;37230:1;37222:6;37218:14;37211:58;37303:8;37298:2;37290:6;37286:15;37279:33;37094:225;:::o;37325:182::-;37465:34;37461:1;37453:6;37449:14;37442:58;37325:182;:::o;37513:234::-;37653:34;37649:1;37641:6;37637:14;37630:58;37722:17;37717:2;37709:6;37705:15;37698:42;37513:234;:::o;37753:223::-;37893:34;37889:1;37881:6;37877:14;37870:58;37962:6;37957:2;37949:6;37945:15;37938:31;37753:223;:::o;37982:248::-;38122:34;38118:1;38110:6;38106:14;38099:58;38191:31;38186:2;38178:6;38174:15;38167:56;37982:248;:::o;38236:235::-;38376:34;38372:1;38364:6;38360:14;38353:58;38445:18;38440:2;38432:6;38428:15;38421:43;38236:235;:::o;38477:114::-;;:::o;38597:226::-;38737:34;38733:1;38725:6;38721:14;38714:58;38806:9;38801:2;38793:6;38789:15;38782:34;38597:226;:::o;38829:231::-;38969:34;38965:1;38957:6;38953:14;38946:58;39038:14;39033:2;39025:6;39021:15;39014:39;38829:231;:::o;39066:122::-;39139:24;39157:5;39139:24;:::i;:::-;39132:5;39129:35;39119:63;;39178:1;39175;39168:12;39119:63;39066:122;:::o;39194:116::-;39264:21;39279:5;39264:21;:::i;:::-;39257:5;39254:32;39244:60;;39300:1;39297;39290:12;39244:60;39194:116;:::o;39316:122::-;39389:24;39407:5;39389:24;:::i;:::-;39382:5;39379:35;39369:63;;39428:1;39425;39418:12;39369:63;39316:122;:::o;39444:120::-;39516:23;39533:5;39516:23;:::i;:::-;39509:5;39506:34;39496:62;;39554:1;39551;39544:12;39496:62;39444:120;:::o;39570:122::-;39643:24;39661:5;39643:24;:::i;:::-;39636:5;39633:35;39623:63;;39682:1;39679;39672:12;39623:63;39570:122;:::o

Swarm Source

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