ETH Price: $2,916.51 (-3.75%)
Gas: 1 Gwei

Token

Tree Frens (FREN)
 

Overview

Max Total Supply

421 FREN

Holders

132

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
kongbtc.eth
Balance
2 FREN
0x9D9167849Eb0946656FF85Ff9E40a7B0B7a30549
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Tree Frens is a collection of 6,969 NFTs on the Ethereum blockchain. The Frens community will plant over 420,000 trees across the planet to combat climate change.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TreeFrens

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

// File: contracts/TreeFren.sol

//SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

contract TreeFrens is ERC721, Ownable {

    using Strings for uint256;
    using Counters for Counters.Counter; 
    Counters.Counter private supply; 

    string public baseURI = ""; 
    string public uriExt = ".json";
    string public hiddenURI; 

    uint256 public price = 0.069 ether; 
    uint256 public MAX_FRENS = 6969; 
    uint256 public whitelistSaleCount = 2; 

    bool public paused = false; 
    bool public revealed = false; 
    bool public whitelistSale = false; 
    bool public frenpassSale = true; 
    bool public publicMint = false;
    address public FRENPASSHOLDERS;

    bytes32 private _presaleMerkleRoot; 

    constructor() ERC721("Tree Frens", "FREN") {
        setHiddenURI("ipfs://QmX8wPH9cTetsvKLZTQsM6WGDHtW75sW72qdkfV9YUmjLw/hidden.json"); 
        setFrenPassAddress(0x192ba0a52D9E59Aad7dD9cAA05B9BB12e2e2b7E1);
    } 

    modifier whitelistHelper(uint256 _frenAmount) {
        require(supply.current() + _frenAmount <= MAX_FRENS, "We are sold out!");
        require(_frenAmount > 0 && _frenAmount <= whitelistSaleCount, "You can only mint 2 during whitelist sale");
        _;
    }

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

    function mint(uint256 _frenAmount) public payable {
        require(!paused && !frenpassSale && !whitelistSale && publicMint, "Sale is currently paused.");
        require(msg.value >= price * _frenAmount, "Please send more ETH");
        require(supply.current() + _frenAmount <= MAX_FRENS, "We are sold out!");

        _mintCycle(msg.sender, _frenAmount); 
    } 

    function frenPassMint(uint256 _frenAmount) public payable {
        require(!paused && !whitelistSale && !publicMint && frenpassSale, "Sale is currently not active.");
        IERC721 frenpass = IERC721(FRENPASSHOLDERS);
        uint256 amountFrenPass = frenpass.balanceOf(msg.sender);
        require(amountFrenPass >= 1, "You don't have the Fren Pass");
        require(msg.value >= price * _frenAmount, "Please send more ETH");
        require(supply.current() + _frenAmount <= MAX_FRENS, "We are sold out! Hit Opensea to find your Tree Frens"); 

        _mintCycle(msg.sender, _frenAmount);
    }

    function whitelistMint(uint256 _frenAmount, bytes32[] calldata _merkleProof) public payable whitelistHelper(_frenAmount){
        require(!paused && !frenpassSale && !publicMint && whitelistSale, "Whitelist Sale not active yet");
        require(_verifyPresaleStatus(msg.sender, _merkleProof), "Address not on whitelist");
        require(msg.value >= price * _frenAmount, "Please send more ETH");

        _mintCycle(msg.sender, _frenAmount);
    }

    function airDropMint(uint256 _frenAmount, address _receiver) public onlyOwner {

         _mintCycle(_receiver, _frenAmount);
  }

    function setPresaleMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        _presaleMerkleRoot = _merkleRoot; 
    }

    function _verifyPresaleStatus(address _account, bytes32[] calldata _merkleProof) private view returns (bool) {
    bytes32 node = keccak256(abi.encodePacked(_account));
    return MerkleProof.verify(_merkleProof, _presaleMerkleRoot, node);

    }

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

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

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

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

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

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

  function togglePublicMint() external onlyOwner {
      publicMint = !publicMint;
  }

  function toggleWhitelistMint() external onlyOwner {
      whitelistSale = !whitelistSale;
  }

  function toggleFrenPassMint() external onlyOwner {
      frenpassSale = !frenpassSale;
  }

  function setFrenPassAddress(address _newAddress) public onlyOwner {
      FRENPASSHOLDERS = _newAddress;
  }

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

  function setPrice(uint256 _price) public onlyOwner {
      price = _price;
  }

  function setWhitelistSaleCount(uint256 _whitelistSaleCount) public onlyOwner {
      whitelistSaleCount = _whitelistSaleCount;
  }

  function setHiddenURI(string memory _hiddenURI) public onlyOwner {
      hiddenURI = _hiddenURI;
  }

  function setBaseURI(string memory _baseURIPrefix) public onlyOwner {
      baseURI = _baseURIPrefix;
  }

  function setURIExt(string memory _URIExt) public onlyOwner {
      uriExt = _URIExt;
  }

  function setSalePause(bool _state) public onlyOwner {
      paused = _state;
  }

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FRENPASSHOLDERS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FRENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frenAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"airDropMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"changeReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frenAmount","type":"uint256"}],"name":"frenPassMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"frenpassSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frenAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURIPrefix","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"setFrenPassAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenURI","type":"string"}],"name":"setHiddenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setPresaleMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setSalePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URIExt","type":"string"}],"name":"setURIExt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistSaleCount","type":"uint256"}],"name":"setWhitelistSaleCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleFrenPassMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhitelistMint","outputs":[],"stateMutability":"nonpayable","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":"uriExt","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frenAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSaleCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b9160089162000284565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a9160099162000284565b5066f5232269808000600b55611b39600c556002600d55600e805464ffffffffff191663010000001790553480156200008257600080fd5b50604080518082018252600a81526954726565204672656e7360b01b602080830191825283518085019094526004845263232922a760e11b908401528151919291620000d19160009162000284565b508051620000e790600190602084019062000284565b50505062000104620000fe6200014d60201b60201c565b62000151565b6200012860405180608001604052806041815260200162002e7f60419139620001a3565b6200014773192ba0a52d9e59aad7dd9caa05b9bb12e2e2b7e16200020b565b62000367565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001f25760405162461bcd60e51b8152602060048201819052602482015260008051602062002ec083398151915260448201526064015b60405180910390fd5b80516200020790600a90602084019062000284565b5050565b6006546001600160a01b03163314620002565760405162461bcd60e51b8152602060048201819052602482015260008051602062002ec08339815191526044820152606401620001e9565b600e80546001600160a01b039092166501000000000002600160281b600160c81b0319909216919091179055565b82805462000292906200032a565b90600052602060002090601f016020900481019282620002b6576000855562000301565b82601f10620002d157805160ff191683800117855562000301565b8280016001018555821562000301579182015b8281111562000301578251825591602001919060010190620002e4565b506200030f92915062000313565b5090565b5b808211156200030f576000815560010162000314565b600181811c908216806200033f57607f821691505b602082108114156200036157634e487b7160e01b600052602260045260246000fd5b50919050565b612b0880620003776000396000f3fe6080604052600436106102885760003560e01c80638cc54e7f1161015a578063bbaac02f116100c1578063d01b555d1161007a578063d01b555d14610760578063d2cab05614610780578063d8a1813f14610793578063e985e9c5146107a9578063f2fde38b146107f2578063fb033fc81461081257600080fd5b8063bbaac02f146106ac578063bd651aa3146106cc578063bde2ab36146106e1578063c87b56dd14610701578063c961550014610721578063ce272ca01461074a57600080fd5b8063a22cb46511610113578063a22cb4651461060f578063a88dcae41461062f578063ac4460021461064f578063ad08d9ac14610664578063b88d4fde14610677578063bb3eeace1461069757600080fd5b80638cc54e7f1461057e5780638da5cb5b1461059357806391b7f5ed146105b157806395d89b41146105d1578063a035b1fe146105e6578063a0712d68146105fc57600080fd5b80634047638d116101fe5780635c975abb116101b75780635c975abb146104e55780636352211e146104ff5780636c0360eb1461051f5780636f63b60a1461053457806370a0823114610549578063715018a61461056957600080fd5b80634047638d1461042457806342842e0e14610439578063438b630014610459578063518302271461048657806355f804b3146104a5578063585d2ddd146104c557600080fd5b806317118dbf1161025057806317118dbf1461035e57806318160ddd1461037f57806323b872dd146103a257806326092b83146103c257806328d7b276146103e457806331ffd6f11461040457600080fd5b806301ffc9a71461028d57806306fdde03146102c2578063081812fc146102e4578063095ea7b31461031c5780630e3d312d1461033e575b600080fd5b34801561029957600080fd5b506102ad6102a83660046125a4565b610832565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d7610884565b6040516102b99190612853565b3480156102f057600080fd5b506103046102ff36600461258b565b610916565b6040516001600160a01b0390911681526020016102b9565b34801561032857600080fd5b5061033c610337366004612546565b6109b0565b005b34801561034a57600080fd5b5061033c610359366004612416565b610ac6565b34801561036a57600080fd5b50600e546102ad906301000000900460ff1681565b34801561038b57600080fd5b50610394610b20565b6040519081526020016102b9565b3480156103ae57600080fd5b5061033c6103bd366004612464565b610b30565b3480156103ce57600080fd5b50600e546102ad90640100000000900460ff1681565b3480156103f057600080fd5b5061033c6103ff36600461258b565b610b61565b34801561041057600080fd5b50600e546102ad9062010000900460ff1681565b34801561043057600080fd5b5061033c610b90565b34801561044557600080fd5b5061033c610454366004612464565b610bdd565b34801561046557600080fd5b50610479610474366004612416565b610bf8565b6040516102b9919061280f565b34801561049257600080fd5b50600e546102ad90610100900460ff1681565b3480156104b157600080fd5b5061033c6104c03660046125de565b610cd9565b3480156104d157600080fd5b5061033c6104e0366004612640565b610d1a565b3480156104f157600080fd5b50600e546102ad9060ff1681565b34801561050b57600080fd5b5061030461051a36600461258b565b610d4e565b34801561052b57600080fd5b506102d7610dc5565b34801561054057600080fd5b5061033c610e53565b34801561055557600080fd5b50610394610564366004612416565b610e9c565b34801561057557600080fd5b5061033c610f23565b34801561058a57600080fd5b506102d7610f59565b34801561059f57600080fd5b506006546001600160a01b0316610304565b3480156105bd57600080fd5b5061033c6105cc36600461258b565b610f66565b3480156105dd57600080fd5b506102d7610f95565b3480156105f257600080fd5b50610394600b5481565b61033c61060a36600461258b565b610fa4565b34801561061b57600080fd5b5061033c61062a36600461251c565b6110ca565b34801561063b57600080fd5b5061033c61064a3660046125de565b6110d5565b34801561065b57600080fd5b5061033c611112565b61033c61067236600461258b565b6111ad565b34801561068357600080fd5b5061033c6106923660046124a0565b6113d5565b3480156106a357600080fd5b506102d761140d565b3480156106b857600080fd5b5061033c6106c73660046125de565b61141a565b3480156106d857600080fd5b5061033c611457565b3480156106ed57600080fd5b5061033c6106fc36600461258b565b6114a2565b34801561070d57600080fd5b506102d761071c36600461258b565b6114d1565b34801561072d57600080fd5b50600e54610304906501000000000090046001600160a01b031681565b34801561075657600080fd5b50610394600c5481565b34801561076c57600080fd5b5061033c61077b366004612570565b611650565b61033c61078e366004612663565b61168d565b34801561079f57600080fd5b50610394600d5481565b3480156107b557600080fd5b506102ad6107c4366004612431565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107fe57600080fd5b5061033c61080d366004612416565b611878565b34801561081e57600080fd5b5061033c61082d366004612570565b611910565b60006001600160e01b031982166380ac58cd60e01b148061086357506001600160e01b03198216635b5e139f60e01b145b8061087e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610893906129fa565b80601f01602080910402602001604051908101604052809291908181526020018280546108bf906129fa565b801561090c5780601f106108e15761010080835404028352916020019161090c565b820191906000526020600020905b8154815290600101906020018083116108ef57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109945760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109bb82610d4e565b9050806001600160a01b0316836001600160a01b03161415610a295760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161098b565b336001600160a01b0382161480610a455750610a4581336107c4565b610ab75760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161098b565b610ac18383611954565b505050565b6006546001600160a01b03163314610af05760405162461bcd60e51b815260040161098b906128b8565b600e80546001600160a01b03909216650100000000000265010000000000600160c81b0319909216919091179055565b6000610b2b60075490565b905090565b610b3a33826119c2565b610b565760405162461bcd60e51b815260040161098b906128ed565b610ac1838383611ab9565b6006546001600160a01b03163314610b8b5760405162461bcd60e51b815260040161098b906128b8565b600f55565b6006546001600160a01b03163314610bba5760405162461bcd60e51b815260040161098b906128b8565b600e805464ff000000001981166401000000009182900460ff1615909102179055565b610ac1838383604051806020016040528060008152506113d5565b60606000610c0583610e9c565b905060008167ffffffffffffffff811115610c2257610c22612aa6565b604051908082528060200260200182016040528015610c4b578160200160208202803683370190505b509050600160005b8381108015610c645750600c548211155b15610ccf576000610c7483610d4e565b9050866001600160a01b0316816001600160a01b03161415610cbc5782848381518110610ca357610ca3612a90565b602090810291909101015281610cb881612a35565b9250505b82610cc681612a35565b93505050610c53565b5090949350505050565b6006546001600160a01b03163314610d035760405162461bcd60e51b815260040161098b906128b8565b8051610d169060089060208401906122db565b5050565b6006546001600160a01b03163314610d445760405162461bcd60e51b815260040161098b906128b8565b610d168183611c59565b6000818152600260205260408120546001600160a01b03168061087e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161098b565b60088054610dd2906129fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610dfe906129fa565b8015610e4b5780601f10610e2057610100808354040283529160200191610e4b565b820191906000526020600020905b815481529060010190602001808311610e2e57829003601f168201915b505050505081565b6006546001600160a01b03163314610e7d5760405162461bcd60e51b815260040161098b906128b8565b600e805462ff0000198116620100009182900460ff1615909102179055565b60006001600160a01b038216610f075760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161098b565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610f4d5760405162461bcd60e51b815260040161098b906128b8565b610f576000611c96565b565b600a8054610dd2906129fa565b6006546001600160a01b03163314610f905760405162461bcd60e51b815260040161098b906128b8565b600b55565b606060018054610893906129fa565b600e5460ff16158015610fc15750600e546301000000900460ff16155b8015610fd65750600e5462010000900460ff16155b8015610fec5750600e54640100000000900460ff165b6110385760405162461bcd60e51b815260206004820152601960248201527f53616c652069732063757272656e746c79207061757365642e00000000000000604482015260640161098b565b80600b546110469190612998565b3410156110655760405162461bcd60e51b815260040161098b9061293e565b600c548161107260075490565b61107c919061296c565b11156110bd5760405162461bcd60e51b815260206004820152601060248201526f57652061726520736f6c64206f75742160801b604482015260640161098b565b6110c73382611c59565b50565b610d16338383611ce8565b6006546001600160a01b031633146110ff5760405162461bcd60e51b815260040161098b906128b8565b8051610d169060099060208401906122db565b6006546001600160a01b0316331461113c5760405162461bcd60e51b815260040161098b906128b8565b60006111506006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461119a576040519150601f19603f3d011682016040523d82523d6000602084013e61119f565b606091505b50509050806110c757600080fd5b600e5460ff161580156111c95750600e5462010000900460ff16155b80156111e05750600e54640100000000900460ff16155b80156111f55750600e546301000000900460ff165b6112415760405162461bcd60e51b815260206004820152601d60248201527f53616c652069732063757272656e746c79206e6f74206163746976652e000000604482015260640161098b565b600e546040516370a0823160e01b8152336004820152650100000000009091046001600160a01b03169060009082906370a082319060240160206040518083038186803b15801561129157600080fd5b505afa1580156112a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c99190612627565b9050600181101561131c5760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f6e2774206861766520746865204672656e205061737300000000604482015260640161098b565b82600b5461132a9190612998565b3410156113495760405162461bcd60e51b815260040161098b9061293e565b600c548361135660075490565b611360919061296c565b11156113cb5760405162461bcd60e51b815260206004820152603460248201527f57652061726520736f6c64206f75742120486974204f70656e73656120746f2060448201527366696e6420796f75722054726565204672656e7360601b606482015260840161098b565b610ac13384611c59565b6113df33836119c2565b6113fb5760405162461bcd60e51b815260040161098b906128ed565b61140784848484611db7565b50505050565b60098054610dd2906129fa565b6006546001600160a01b031633146114445760405162461bcd60e51b815260040161098b906128b8565b8051610d1690600a9060208401906122db565b6006546001600160a01b031633146114815760405162461bcd60e51b815260040161098b906128b8565b600e805463ff00000019811663010000009182900460ff1615909102179055565b6006546001600160a01b031633146114cc5760405162461bcd60e51b815260040161098b906128b8565b600d55565b6000818152600260205260409020546060906001600160a01b03166115505760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161098b565b600e54610100900460ff166115f157600a805461156c906129fa565b80601f0160208091040260200160405190810160405280929190818152602001828054611598906129fa565b80156115e55780601f106115ba576101008083540402835291602001916115e5565b820191906000526020600020905b8154815290600101906020018083116115c857829003601f168201915b50505050509050919050565b60006115fb611dea565b9050600081511161161b5760405180602001604052806000815250611649565b8061162584611df9565b60096040516020016116399392919061270e565b6040516020818303038152906040525b9392505050565b6006546001600160a01b0316331461167a5760405162461bcd60e51b815260040161098b906128b8565b600e805460ff1916911515919091179055565b82600c548161169b60075490565b6116a5919061296c565b11156116e65760405162461bcd60e51b815260206004820152601060248201526f57652061726520736f6c64206f75742160801b604482015260640161098b565b6000811180156116f85750600d548111155b6117565760405162461bcd60e51b815260206004820152602960248201527f596f752063616e206f6e6c79206d696e74203220647572696e672077686974656044820152686c6973742073616c6560b81b606482015260840161098b565b600e5460ff161580156117735750600e546301000000900460ff16155b801561178a5750600e54640100000000900460ff16155b801561179e5750600e5462010000900460ff165b6117ea5760405162461bcd60e51b815260206004820152601d60248201527f57686974656c6973742053616c65206e6f742061637469766520796574000000604482015260640161098b565b6117f5338484611ef7565b6118415760405162461bcd60e51b815260206004820152601860248201527f41646472657373206e6f74206f6e2077686974656c6973740000000000000000604482015260640161098b565b83600b5461184f9190612998565b34101561186e5760405162461bcd60e51b815260040161098b9061293e565b6114073385611c59565b6006546001600160a01b031633146118a25760405162461bcd60e51b815260040161098b906128b8565b6001600160a01b0381166119075760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161098b565b6110c781611c96565b6006546001600160a01b0316331461193a5760405162461bcd60e51b815260040161098b906128b8565b600e80549115156101000261ff0019909216919091179055565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061198982610d4e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a3b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161098b565b6000611a4683610d4e565b9050806001600160a01b0316846001600160a01b03161480611a815750836001600160a01b0316611a7684610916565b6001600160a01b0316145b80611ab157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611acc82610d4e565b6001600160a01b031614611b345760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161098b565b6001600160a01b038216611b965760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161098b565b611ba1600082611954565b6001600160a01b0383166000908152600360205260408120805460019290611bca9084906129b7565b90915550506001600160a01b0382166000908152600360205260408120805460019290611bf890849061296c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60005b81811015610ac157611c72600780546001019055565b611c8483611c7f60075490565b611f7d565b80611c8e81612a35565b915050611c5c565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611d4a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161098b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611dc2848484611ab9565b611dce84848484611f97565b6114075760405162461bcd60e51b815260040161098b90612866565b606060088054610893906129fa565b606081611e1d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e475780611e3181612a35565b9150611e409050600a83612984565b9150611e21565b60008167ffffffffffffffff811115611e6257611e62612aa6565b6040519080825280601f01601f191660200182016040528015611e8c576020820181803683370190505b5090505b8415611ab157611ea16001836129b7565b9150611eae600a86612a50565b611eb990603061296c565b60f81b818381518110611ece57611ece612a90565b60200101906001600160f81b031916908160001a905350611ef0600a86612984565b9450611e90565b6040516bffffffffffffffffffffffff19606085901b1660208201526000908190603401604051602081830303815290604052805190602001209050611f7484848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f5491508490506120a4565b95945050505050565b610d168282604051806020016040528060008152506120ba565b60006001600160a01b0384163b1561209957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fdb9033908990889088906004016127d2565b602060405180830381600087803b158015611ff557600080fd5b505af1925050508015612025575060408051601f3d908101601f19168201909252612022918101906125c1565b60015b61207f573d808015612053576040519150601f19603f3d011682016040523d82523d6000602084013e612058565b606091505b5080516120775760405162461bcd60e51b815260040161098b90612866565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ab1565b506001949350505050565b6000826120b185846120ed565b14949350505050565b6120c48383612199565b6120d16000848484611f97565b610ac15760405162461bcd60e51b815260040161098b90612866565b600081815b845181101561219157600085828151811061210f5761210f612a90565b6020026020010151905080831161215157604080516020810185905290810182905260600160405160208183030381529060405280519060200120925061217e565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061218981612a35565b9150506120f2565b509392505050565b6001600160a01b0382166121ef5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161098b565b6000818152600260205260409020546001600160a01b0316156122545760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161098b565b6001600160a01b038216600090815260036020526040812080546001929061227d90849061296c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546122e7906129fa565b90600052602060002090601f016020900481019282612309576000855561234f565b82601f1061232257805160ff191683800117855561234f565b8280016001018555821561234f579182015b8281111561234f578251825591602001919060010190612334565b5061235b92915061235f565b5090565b5b8082111561235b5760008155600101612360565b600067ffffffffffffffff8084111561238f5761238f612aa6565b604051601f8501601f19908116603f011681019082821181831017156123b7576123b7612aa6565b816040528093508581528686860111156123d057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461240157600080fd5b919050565b8035801515811461240157600080fd5b60006020828403121561242857600080fd5b611649826123ea565b6000806040838503121561244457600080fd5b61244d836123ea565b915061245b602084016123ea565b90509250929050565b60008060006060848603121561247957600080fd5b612482846123ea565b9250612490602085016123ea565b9150604084013590509250925092565b600080600080608085870312156124b657600080fd5b6124bf856123ea565b93506124cd602086016123ea565b925060408501359150606085013567ffffffffffffffff8111156124f057600080fd5b8501601f8101871361250157600080fd5b61251087823560208401612374565b91505092959194509250565b6000806040838503121561252f57600080fd5b612538836123ea565b915061245b60208401612406565b6000806040838503121561255957600080fd5b612562836123ea565b946020939093013593505050565b60006020828403121561258257600080fd5b61164982612406565b60006020828403121561259d57600080fd5b5035919050565b6000602082840312156125b657600080fd5b813561164981612abc565b6000602082840312156125d357600080fd5b815161164981612abc565b6000602082840312156125f057600080fd5b813567ffffffffffffffff81111561260757600080fd5b8201601f8101841361261857600080fd5b611ab184823560208401612374565b60006020828403121561263957600080fd5b5051919050565b6000806040838503121561265357600080fd5b8235915061245b602084016123ea565b60008060006040848603121561267857600080fd5b83359250602084013567ffffffffffffffff8082111561269757600080fd5b818601915086601f8301126126ab57600080fd5b8135818111156126ba57600080fd5b8760208260051b85010111156126cf57600080fd5b6020830194508093505050509250925092565b600081518084526126fa8160208601602086016129ce565b601f01601f19169290920160200192915050565b6000845160206127218285838a016129ce565b8551918401916127348184848a016129ce565b8554920191600090600181811c908083168061275157607f831692505b85831081141561276f57634e487b7160e01b85526022600452602485fd5b8080156127835760018114612794576127c1565b60ff198516885283880195506127c1565b60008b81526020902060005b858110156127b95781548a8201529084019088016127a0565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612805908301846126e2565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156128475783518352928401929184019160010161282b565b50909695505050505050565b60208152600061164960208301846126e2565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601490820152730a0d8cac2e6ca40e6cadcc840dadee4ca408aa8960631b604082015260600190565b6000821982111561297f5761297f612a64565b500190565b60008261299357612993612a7a565b500490565b60008160001904831182151516156129b2576129b2612a64565b500290565b6000828210156129c9576129c9612a64565b500390565b60005b838110156129e95781810151838201526020016129d1565b838111156114075750506000910152565b600181811c90821680612a0e57607f821691505b60208210811415612a2f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a4957612a49612a64565b5060010190565b600082612a5f57612a5f612a7a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110c757600080fdfea26469706673582212209160460bcf05320b028d4829a77269f50ca256abd477d0517957fd4705c9544264736f6c63430008070033697066733a2f2f516d5838775048396354657473764b4c5a5451734d3657474448745737357357373271646b66563959556d6a4c772f68696464656e2e6a736f6e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102885760003560e01c80638cc54e7f1161015a578063bbaac02f116100c1578063d01b555d1161007a578063d01b555d14610760578063d2cab05614610780578063d8a1813f14610793578063e985e9c5146107a9578063f2fde38b146107f2578063fb033fc81461081257600080fd5b8063bbaac02f146106ac578063bd651aa3146106cc578063bde2ab36146106e1578063c87b56dd14610701578063c961550014610721578063ce272ca01461074a57600080fd5b8063a22cb46511610113578063a22cb4651461060f578063a88dcae41461062f578063ac4460021461064f578063ad08d9ac14610664578063b88d4fde14610677578063bb3eeace1461069757600080fd5b80638cc54e7f1461057e5780638da5cb5b1461059357806391b7f5ed146105b157806395d89b41146105d1578063a035b1fe146105e6578063a0712d68146105fc57600080fd5b80634047638d116101fe5780635c975abb116101b75780635c975abb146104e55780636352211e146104ff5780636c0360eb1461051f5780636f63b60a1461053457806370a0823114610549578063715018a61461056957600080fd5b80634047638d1461042457806342842e0e14610439578063438b630014610459578063518302271461048657806355f804b3146104a5578063585d2ddd146104c557600080fd5b806317118dbf1161025057806317118dbf1461035e57806318160ddd1461037f57806323b872dd146103a257806326092b83146103c257806328d7b276146103e457806331ffd6f11461040457600080fd5b806301ffc9a71461028d57806306fdde03146102c2578063081812fc146102e4578063095ea7b31461031c5780630e3d312d1461033e575b600080fd5b34801561029957600080fd5b506102ad6102a83660046125a4565b610832565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d7610884565b6040516102b99190612853565b3480156102f057600080fd5b506103046102ff36600461258b565b610916565b6040516001600160a01b0390911681526020016102b9565b34801561032857600080fd5b5061033c610337366004612546565b6109b0565b005b34801561034a57600080fd5b5061033c610359366004612416565b610ac6565b34801561036a57600080fd5b50600e546102ad906301000000900460ff1681565b34801561038b57600080fd5b50610394610b20565b6040519081526020016102b9565b3480156103ae57600080fd5b5061033c6103bd366004612464565b610b30565b3480156103ce57600080fd5b50600e546102ad90640100000000900460ff1681565b3480156103f057600080fd5b5061033c6103ff36600461258b565b610b61565b34801561041057600080fd5b50600e546102ad9062010000900460ff1681565b34801561043057600080fd5b5061033c610b90565b34801561044557600080fd5b5061033c610454366004612464565b610bdd565b34801561046557600080fd5b50610479610474366004612416565b610bf8565b6040516102b9919061280f565b34801561049257600080fd5b50600e546102ad90610100900460ff1681565b3480156104b157600080fd5b5061033c6104c03660046125de565b610cd9565b3480156104d157600080fd5b5061033c6104e0366004612640565b610d1a565b3480156104f157600080fd5b50600e546102ad9060ff1681565b34801561050b57600080fd5b5061030461051a36600461258b565b610d4e565b34801561052b57600080fd5b506102d7610dc5565b34801561054057600080fd5b5061033c610e53565b34801561055557600080fd5b50610394610564366004612416565b610e9c565b34801561057557600080fd5b5061033c610f23565b34801561058a57600080fd5b506102d7610f59565b34801561059f57600080fd5b506006546001600160a01b0316610304565b3480156105bd57600080fd5b5061033c6105cc36600461258b565b610f66565b3480156105dd57600080fd5b506102d7610f95565b3480156105f257600080fd5b50610394600b5481565b61033c61060a36600461258b565b610fa4565b34801561061b57600080fd5b5061033c61062a36600461251c565b6110ca565b34801561063b57600080fd5b5061033c61064a3660046125de565b6110d5565b34801561065b57600080fd5b5061033c611112565b61033c61067236600461258b565b6111ad565b34801561068357600080fd5b5061033c6106923660046124a0565b6113d5565b3480156106a357600080fd5b506102d761140d565b3480156106b857600080fd5b5061033c6106c73660046125de565b61141a565b3480156106d857600080fd5b5061033c611457565b3480156106ed57600080fd5b5061033c6106fc36600461258b565b6114a2565b34801561070d57600080fd5b506102d761071c36600461258b565b6114d1565b34801561072d57600080fd5b50600e54610304906501000000000090046001600160a01b031681565b34801561075657600080fd5b50610394600c5481565b34801561076c57600080fd5b5061033c61077b366004612570565b611650565b61033c61078e366004612663565b61168d565b34801561079f57600080fd5b50610394600d5481565b3480156107b557600080fd5b506102ad6107c4366004612431565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107fe57600080fd5b5061033c61080d366004612416565b611878565b34801561081e57600080fd5b5061033c61082d366004612570565b611910565b60006001600160e01b031982166380ac58cd60e01b148061086357506001600160e01b03198216635b5e139f60e01b145b8061087e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610893906129fa565b80601f01602080910402602001604051908101604052809291908181526020018280546108bf906129fa565b801561090c5780601f106108e15761010080835404028352916020019161090c565b820191906000526020600020905b8154815290600101906020018083116108ef57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109945760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109bb82610d4e565b9050806001600160a01b0316836001600160a01b03161415610a295760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161098b565b336001600160a01b0382161480610a455750610a4581336107c4565b610ab75760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161098b565b610ac18383611954565b505050565b6006546001600160a01b03163314610af05760405162461bcd60e51b815260040161098b906128b8565b600e80546001600160a01b03909216650100000000000265010000000000600160c81b0319909216919091179055565b6000610b2b60075490565b905090565b610b3a33826119c2565b610b565760405162461bcd60e51b815260040161098b906128ed565b610ac1838383611ab9565b6006546001600160a01b03163314610b8b5760405162461bcd60e51b815260040161098b906128b8565b600f55565b6006546001600160a01b03163314610bba5760405162461bcd60e51b815260040161098b906128b8565b600e805464ff000000001981166401000000009182900460ff1615909102179055565b610ac1838383604051806020016040528060008152506113d5565b60606000610c0583610e9c565b905060008167ffffffffffffffff811115610c2257610c22612aa6565b604051908082528060200260200182016040528015610c4b578160200160208202803683370190505b509050600160005b8381108015610c645750600c548211155b15610ccf576000610c7483610d4e565b9050866001600160a01b0316816001600160a01b03161415610cbc5782848381518110610ca357610ca3612a90565b602090810291909101015281610cb881612a35565b9250505b82610cc681612a35565b93505050610c53565b5090949350505050565b6006546001600160a01b03163314610d035760405162461bcd60e51b815260040161098b906128b8565b8051610d169060089060208401906122db565b5050565b6006546001600160a01b03163314610d445760405162461bcd60e51b815260040161098b906128b8565b610d168183611c59565b6000818152600260205260408120546001600160a01b03168061087e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161098b565b60088054610dd2906129fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610dfe906129fa565b8015610e4b5780601f10610e2057610100808354040283529160200191610e4b565b820191906000526020600020905b815481529060010190602001808311610e2e57829003601f168201915b505050505081565b6006546001600160a01b03163314610e7d5760405162461bcd60e51b815260040161098b906128b8565b600e805462ff0000198116620100009182900460ff1615909102179055565b60006001600160a01b038216610f075760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161098b565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610f4d5760405162461bcd60e51b815260040161098b906128b8565b610f576000611c96565b565b600a8054610dd2906129fa565b6006546001600160a01b03163314610f905760405162461bcd60e51b815260040161098b906128b8565b600b55565b606060018054610893906129fa565b600e5460ff16158015610fc15750600e546301000000900460ff16155b8015610fd65750600e5462010000900460ff16155b8015610fec5750600e54640100000000900460ff165b6110385760405162461bcd60e51b815260206004820152601960248201527f53616c652069732063757272656e746c79207061757365642e00000000000000604482015260640161098b565b80600b546110469190612998565b3410156110655760405162461bcd60e51b815260040161098b9061293e565b600c548161107260075490565b61107c919061296c565b11156110bd5760405162461bcd60e51b815260206004820152601060248201526f57652061726520736f6c64206f75742160801b604482015260640161098b565b6110c73382611c59565b50565b610d16338383611ce8565b6006546001600160a01b031633146110ff5760405162461bcd60e51b815260040161098b906128b8565b8051610d169060099060208401906122db565b6006546001600160a01b0316331461113c5760405162461bcd60e51b815260040161098b906128b8565b60006111506006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461119a576040519150601f19603f3d011682016040523d82523d6000602084013e61119f565b606091505b50509050806110c757600080fd5b600e5460ff161580156111c95750600e5462010000900460ff16155b80156111e05750600e54640100000000900460ff16155b80156111f55750600e546301000000900460ff165b6112415760405162461bcd60e51b815260206004820152601d60248201527f53616c652069732063757272656e746c79206e6f74206163746976652e000000604482015260640161098b565b600e546040516370a0823160e01b8152336004820152650100000000009091046001600160a01b03169060009082906370a082319060240160206040518083038186803b15801561129157600080fd5b505afa1580156112a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c99190612627565b9050600181101561131c5760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f6e2774206861766520746865204672656e205061737300000000604482015260640161098b565b82600b5461132a9190612998565b3410156113495760405162461bcd60e51b815260040161098b9061293e565b600c548361135660075490565b611360919061296c565b11156113cb5760405162461bcd60e51b815260206004820152603460248201527f57652061726520736f6c64206f75742120486974204f70656e73656120746f2060448201527366696e6420796f75722054726565204672656e7360601b606482015260840161098b565b610ac13384611c59565b6113df33836119c2565b6113fb5760405162461bcd60e51b815260040161098b906128ed565b61140784848484611db7565b50505050565b60098054610dd2906129fa565b6006546001600160a01b031633146114445760405162461bcd60e51b815260040161098b906128b8565b8051610d1690600a9060208401906122db565b6006546001600160a01b031633146114815760405162461bcd60e51b815260040161098b906128b8565b600e805463ff00000019811663010000009182900460ff1615909102179055565b6006546001600160a01b031633146114cc5760405162461bcd60e51b815260040161098b906128b8565b600d55565b6000818152600260205260409020546060906001600160a01b03166115505760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161098b565b600e54610100900460ff166115f157600a805461156c906129fa565b80601f0160208091040260200160405190810160405280929190818152602001828054611598906129fa565b80156115e55780601f106115ba576101008083540402835291602001916115e5565b820191906000526020600020905b8154815290600101906020018083116115c857829003601f168201915b50505050509050919050565b60006115fb611dea565b9050600081511161161b5760405180602001604052806000815250611649565b8061162584611df9565b60096040516020016116399392919061270e565b6040516020818303038152906040525b9392505050565b6006546001600160a01b0316331461167a5760405162461bcd60e51b815260040161098b906128b8565b600e805460ff1916911515919091179055565b82600c548161169b60075490565b6116a5919061296c565b11156116e65760405162461bcd60e51b815260206004820152601060248201526f57652061726520736f6c64206f75742160801b604482015260640161098b565b6000811180156116f85750600d548111155b6117565760405162461bcd60e51b815260206004820152602960248201527f596f752063616e206f6e6c79206d696e74203220647572696e672077686974656044820152686c6973742073616c6560b81b606482015260840161098b565b600e5460ff161580156117735750600e546301000000900460ff16155b801561178a5750600e54640100000000900460ff16155b801561179e5750600e5462010000900460ff165b6117ea5760405162461bcd60e51b815260206004820152601d60248201527f57686974656c6973742053616c65206e6f742061637469766520796574000000604482015260640161098b565b6117f5338484611ef7565b6118415760405162461bcd60e51b815260206004820152601860248201527f41646472657373206e6f74206f6e2077686974656c6973740000000000000000604482015260640161098b565b83600b5461184f9190612998565b34101561186e5760405162461bcd60e51b815260040161098b9061293e565b6114073385611c59565b6006546001600160a01b031633146118a25760405162461bcd60e51b815260040161098b906128b8565b6001600160a01b0381166119075760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161098b565b6110c781611c96565b6006546001600160a01b0316331461193a5760405162461bcd60e51b815260040161098b906128b8565b600e80549115156101000261ff0019909216919091179055565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061198982610d4e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a3b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161098b565b6000611a4683610d4e565b9050806001600160a01b0316846001600160a01b03161480611a815750836001600160a01b0316611a7684610916565b6001600160a01b0316145b80611ab157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611acc82610d4e565b6001600160a01b031614611b345760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161098b565b6001600160a01b038216611b965760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161098b565b611ba1600082611954565b6001600160a01b0383166000908152600360205260408120805460019290611bca9084906129b7565b90915550506001600160a01b0382166000908152600360205260408120805460019290611bf890849061296c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60005b81811015610ac157611c72600780546001019055565b611c8483611c7f60075490565b611f7d565b80611c8e81612a35565b915050611c5c565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611d4a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161098b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611dc2848484611ab9565b611dce84848484611f97565b6114075760405162461bcd60e51b815260040161098b90612866565b606060088054610893906129fa565b606081611e1d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e475780611e3181612a35565b9150611e409050600a83612984565b9150611e21565b60008167ffffffffffffffff811115611e6257611e62612aa6565b6040519080825280601f01601f191660200182016040528015611e8c576020820181803683370190505b5090505b8415611ab157611ea16001836129b7565b9150611eae600a86612a50565b611eb990603061296c565b60f81b818381518110611ece57611ece612a90565b60200101906001600160f81b031916908160001a905350611ef0600a86612984565b9450611e90565b6040516bffffffffffffffffffffffff19606085901b1660208201526000908190603401604051602081830303815290604052805190602001209050611f7484848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f5491508490506120a4565b95945050505050565b610d168282604051806020016040528060008152506120ba565b60006001600160a01b0384163b1561209957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fdb9033908990889088906004016127d2565b602060405180830381600087803b158015611ff557600080fd5b505af1925050508015612025575060408051601f3d908101601f19168201909252612022918101906125c1565b60015b61207f573d808015612053576040519150601f19603f3d011682016040523d82523d6000602084013e612058565b606091505b5080516120775760405162461bcd60e51b815260040161098b90612866565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ab1565b506001949350505050565b6000826120b185846120ed565b14949350505050565b6120c48383612199565b6120d16000848484611f97565b610ac15760405162461bcd60e51b815260040161098b90612866565b600081815b845181101561219157600085828151811061210f5761210f612a90565b6020026020010151905080831161215157604080516020810185905290810182905260600160405160208183030381529060405280519060200120925061217e565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061218981612a35565b9150506120f2565b509392505050565b6001600160a01b0382166121ef5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161098b565b6000818152600260205260409020546001600160a01b0316156122545760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161098b565b6001600160a01b038216600090815260036020526040812080546001929061227d90849061296c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546122e7906129fa565b90600052602060002090601f016020900481019282612309576000855561234f565b82601f1061232257805160ff191683800117855561234f565b8280016001018555821561234f579182015b8281111561234f578251825591602001919060010190612334565b5061235b92915061235f565b5090565b5b8082111561235b5760008155600101612360565b600067ffffffffffffffff8084111561238f5761238f612aa6565b604051601f8501601f19908116603f011681019082821181831017156123b7576123b7612aa6565b816040528093508581528686860111156123d057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461240157600080fd5b919050565b8035801515811461240157600080fd5b60006020828403121561242857600080fd5b611649826123ea565b6000806040838503121561244457600080fd5b61244d836123ea565b915061245b602084016123ea565b90509250929050565b60008060006060848603121561247957600080fd5b612482846123ea565b9250612490602085016123ea565b9150604084013590509250925092565b600080600080608085870312156124b657600080fd5b6124bf856123ea565b93506124cd602086016123ea565b925060408501359150606085013567ffffffffffffffff8111156124f057600080fd5b8501601f8101871361250157600080fd5b61251087823560208401612374565b91505092959194509250565b6000806040838503121561252f57600080fd5b612538836123ea565b915061245b60208401612406565b6000806040838503121561255957600080fd5b612562836123ea565b946020939093013593505050565b60006020828403121561258257600080fd5b61164982612406565b60006020828403121561259d57600080fd5b5035919050565b6000602082840312156125b657600080fd5b813561164981612abc565b6000602082840312156125d357600080fd5b815161164981612abc565b6000602082840312156125f057600080fd5b813567ffffffffffffffff81111561260757600080fd5b8201601f8101841361261857600080fd5b611ab184823560208401612374565b60006020828403121561263957600080fd5b5051919050565b6000806040838503121561265357600080fd5b8235915061245b602084016123ea565b60008060006040848603121561267857600080fd5b83359250602084013567ffffffffffffffff8082111561269757600080fd5b818601915086601f8301126126ab57600080fd5b8135818111156126ba57600080fd5b8760208260051b85010111156126cf57600080fd5b6020830194508093505050509250925092565b600081518084526126fa8160208601602086016129ce565b601f01601f19169290920160200192915050565b6000845160206127218285838a016129ce565b8551918401916127348184848a016129ce565b8554920191600090600181811c908083168061275157607f831692505b85831081141561276f57634e487b7160e01b85526022600452602485fd5b8080156127835760018114612794576127c1565b60ff198516885283880195506127c1565b60008b81526020902060005b858110156127b95781548a8201529084019088016127a0565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612805908301846126e2565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156128475783518352928401929184019160010161282b565b50909695505050505050565b60208152600061164960208301846126e2565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601490820152730a0d8cac2e6ca40e6cadcc840dadee4ca408aa8960631b604082015260600190565b6000821982111561297f5761297f612a64565b500190565b60008261299357612993612a7a565b500490565b60008160001904831182151516156129b2576129b2612a64565b500290565b6000828210156129c9576129c9612a64565b500390565b60005b838110156129e95781810151838201526020016129d1565b838111156114075750506000910152565b600181811c90821680612a0e57607f821691505b60208210811415612a2f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a4957612a49612a64565b5060010190565b600082612a5f57612a5f612a7a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110c757600080fdfea26469706673582212209160460bcf05320b028d4829a77269f50ca256abd477d0517957fd4705c9544264736f6c63430008070033

Deployed Bytecode Sourcemap

39982:6001:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27446:305;;;;;;;;;;-1:-1:-1;27446:305:0;;;;;:::i;:::-;;:::i;:::-;;;9614:14:1;;9607:22;9589:41;;9577:2;9562:18;27446:305:0;;;;;;;;28391:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29950:221::-;;;;;;;;;;-1:-1:-1;29950:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8275:32:1;;;8257:51;;8245:2;8230:18;29950:221:0;8111:203:1;29473:411:0;;;;;;;;;;-1:-1:-1;29473:411:0;;;;;:::i;:::-;;:::i;:::-;;44665:110;;;;;;;;;;-1:-1:-1;44665:110:0;;;;;:::i;:::-;;:::i;40488:31::-;;;;;;;;;;-1:-1:-1;40488:31:0;;;;;;;;;;;41147:96;;;;;;;;;;;;;:::i;:::-;;;19698:25:1;;;19686:2;19671:18;41147:96:0;19552:177:1;30700:339:0;;;;;;;;;;-1:-1:-1;30700:339:0;;;;;:::i;:::-;;:::i;40527:30::-;;;;;;;;;;-1:-1:-1;40527:30:0;;;;;;;;;;;42852:122;;;;;;;;;;-1:-1:-1;42852:122:0;;;;;:::i;:::-;;:::i;40447:33::-;;;;;;;;;;-1:-1:-1;40447:33:0;;;;;;;;;;;44374:86;;;;;;;;;;;;;:::i;31110:185::-;;;;;;;;;;-1:-1:-1;31110:185:0;;;;;:::i;:::-;;:::i;43242:635::-;;;;;;;;;;-1:-1:-1;43242:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;40411:28::-;;;;;;;;;;-1:-1:-1;40411:28:0;;;;;;;;;;;45203:106;;;;;;;;;;-1:-1:-1;45203:106:0;;;;;:::i;:::-;;:::i;42712:132::-;;;;;;;;;;-1:-1:-1;42712:132:0;;;;;:::i;:::-;;:::i;40377:26::-;;;;;;;;;;-1:-1:-1;40377:26:0;;;;;;;;28085:239;;;;;;;;;;-1:-1:-1;28085:239:0;;;;;:::i;:::-;;:::i;40145:26::-;;;;;;;;;;;;;:::i;44466:95::-;;;;;;;;;;;;;:::i;27815:208::-;;;;;;;;;;-1:-1:-1;27815:208:0;;;;;:::i;:::-;;:::i;8434:103::-;;;;;;;;;;;;;:::i;40216:23::-;;;;;;;;;;;;;:::i;7783:87::-;;;;;;;;;;-1:-1:-1;7856:6:0;;-1:-1:-1;;;;;7856:6:0;7783:87;;44871:80;;;;;;;;;;-1:-1:-1;44871:80:0;;;;;:::i;:::-;;:::i;28560:104::-;;;;;;;;;;;;;:::i;40249:34::-;;;;;;;;;;;;;;;;41251:371;;;;;;:::i;:::-;;:::i;30243:155::-;;;;;;;;;;-1:-1:-1;30243:155:0;;;;;:::i;:::-;;:::i;45315:90::-;;;;;;;;;;-1:-1:-1;45315:90:0;;;;;:::i;:::-;;:::i;45499:145::-;;;;;;;;;;;;;:::i;41631:610::-;;;;;;:::i;:::-;;:::i;31366:328::-;;;;;;;;;;-1:-1:-1;31366:328:0;;;;;:::i;:::-;;:::i;40179:30::-;;;;;;;;;;;;;:::i;45095:102::-;;;;;;;;;;-1:-1:-1;45095:102:0;;;;;:::i;:::-;;:::i;44567:92::-;;;;;;;;;;;;;:::i;44957:132::-;;;;;;;;;;-1:-1:-1;44957:132:0;;;;;:::i;:::-;;:::i;43885:483::-;;;;;;;;;;-1:-1:-1;43885:483:0;;;;;:::i;:::-;;:::i;40564:30::-;;;;;;;;;;-1:-1:-1;40564:30:0;;;;;;;-1:-1:-1;;;;;40564:30:0;;;40291:31;;;;;;;;;;;;;;;;45411:82;;;;;;;;;;-1:-1:-1;45411:82:0;;;;;:::i;:::-;;:::i;42249:455::-;;;;;;:::i;:::-;;:::i;40330:37::-;;;;;;;;;;;;;;;;30469:164;;;;;;;;;;-1:-1:-1;30469:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30590:25:0;;;30566:4;30590:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30469:164;8692:201;;;;;;;;;;-1:-1:-1;8692:201:0;;;;;:::i;:::-;;:::i;44781:84::-;;;;;;;;;;-1:-1:-1;44781:84:0;;;;;:::i;:::-;;:::i;27446:305::-;27548:4;-1:-1:-1;;;;;;27585:40:0;;-1:-1:-1;;;27585:40:0;;:105;;-1:-1:-1;;;;;;;27642:48:0;;-1:-1:-1;;;27642:48:0;27585:105;:158;;;-1:-1:-1;;;;;;;;;;20324:40:0;;;27707:36;27565:178;27446:305;-1:-1:-1;;27446:305:0:o;28391:100::-;28445:13;28478:5;28471:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28391:100;:::o;29950:221::-;30026:7;33293:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33293:16:0;30046:73;;;;-1:-1:-1;;;30046:73:0;;15873:2:1;30046:73:0;;;15855:21:1;15912:2;15892:18;;;15885:30;15951:34;15931:18;;;15924:62;-1:-1:-1;;;16002:18:1;;;15995:42;16054:19;;30046:73:0;;;;;;;;;-1:-1:-1;30139:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30139:24:0;;29950:221::o;29473:411::-;29554:13;29570:23;29585:7;29570:14;:23::i;:::-;29554:39;;29618:5;-1:-1:-1;;;;;29612:11:0;:2;-1:-1:-1;;;;;29612:11:0;;;29604:57;;;;-1:-1:-1;;;29604:57:0;;17473:2:1;29604:57:0;;;17455:21:1;17512:2;17492:18;;;17485:30;17551:34;17531:18;;;17524:62;-1:-1:-1;;;17602:18:1;;;17595:31;17643:19;;29604:57:0;17271:397:1;29604:57:0;6587:10;-1:-1:-1;;;;;29696:21:0;;;;:62;;-1:-1:-1;29721:37:0;29738:5;6587:10;30469:164;:::i;29721:37::-;29674:168;;;;-1:-1:-1;;;29674:168:0;;13908:2:1;29674:168:0;;;13890:21:1;13947:2;13927:18;;;13920:30;13986:34;13966:18;;;13959:62;14057:26;14037:18;;;14030:54;14101:19;;29674:168:0;13706:420:1;29674:168:0;29855:21;29864:2;29868:7;29855:8;:21::i;:::-;29543:341;29473:411;;:::o;44665:110::-;7856:6;;-1:-1:-1;;;;;7856:6:0;6587:10;8003:23;7995:68;;;;-1:-1:-1;;;7995:68:0;;;;;;;:::i;:::-;44740:15:::1;:29:::0;;-1:-1:-1;;;;;44740:29:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;44740:29:0;;::::1;::::0;;;::::1;::::0;;44665:110::o;41147:96::-;41191:7;41218:16;:6;3203:14;;3111:114;41218:16;41211:23;;41147:96;:::o;30700:339::-;30895:41;6587:10;30928:7;30895:18;:41::i;:::-;30887:103;;;;-1:-1:-1;;;30887:103:0;;;;;;;:::i;:::-;31003:28;31013:4;31019:2;31023:7;31003:9;:28::i;42852:122::-;7856:6;;-1:-1:-1;;;;;7856:6:0;6587:10;8003:23;7995:68;;;;-1:-1:-1;;;7995:68:0;;;;;;;:::i;:::-;42933:18:::1;:32:::0;42852:122::o;44374:86::-;7856:6;;-1:-1:-1;;;;;7856:6:0;6587:10;8003:23;7995:68;;;;-1:-1:-1;;;7995:68:0;;;;;;;:::i;:::-;44444:10:::1;::::0;;-1:-1:-1;;44430:24:0;::::1;44444:10:::0;;;;::::1;;;44443:11;44430:24:::0;;::::1;;::::0;;44374:86::o;31110:185::-;31248:39;31265:4;31271:2;31275:7;31248:39;;;;;;;;;;;;:16;:39::i;43242:635::-;43317:16;43345:23;43371:17;43381:6;43371:9;:17::i;:::-;43345:43;;43395:30;43442:15;43428:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43428:30:0;-1:-1:-1;43395:63:0;-1:-1:-1;43490:1:0;43465:22;43534:309;43559:15;43541;:33;:64;;;;;43596:9;;43578:14;:27;;43541:64;43534:309;;;43616:25;43644:23;43652:14;43644:7;:23::i;:::-;43616:51;;43703:6;-1:-1:-1;;;;;43682:27:0;:17;-1:-1:-1;;;;;43682:27:0;;43678:131;;;43755:14;43722:13;43736:15;43722:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;43782:17;;;;:::i;:::-;;;;43678:131;43819:16;;;;:::i;:::-;;;;43607:236;43534:309;;;-1:-1:-1;43858:13:0;;43242:635;-1:-1:-1;;;;43242:635:0:o;45203:106::-;7856:6;;-1:-1:-1;;;;;7856:6:0;6587:10;8003:23;7995:68;;;;-1:-1:-1;;;7995:68:0;;;;;;;:::i;:::-;45279:24;;::::1;::::0;:7:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45203:106:::0;:::o;42712:132::-;7856:6;;-1:-1:-1;;;;;7856:6:0;6587:10;8003:23;7995:68;;;;-1:-1:-1;;;7995:68:0;;;;;;;:::i;:::-;42804:34:::1;42815:9;42826:11;42804:10;:34::i;28085:239::-:0;28157:7;28193:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28193:16:0;28228:19;28220:73;;;;-1:-1:-1;;;28220:73:0;;14744:2:1;28220:73:0;;;14726:21:1;14783:2;14763:18;;;14756:30;14822:34;14802:18;;;14795:62;-1:-1:-1;;;14873:18:1;;;14866:39;14922:19;;28220:73:0;14542:405:1;40145:26:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44466:95::-;7856:6;;-1:-1:-1;;;;;7856:6:0;6587:10;8003:23;7995:68;;;;-1:-1:-1;;;7995:68:0;;;;;;;:::i;:::-;44542:13:::1;::::0;;-1:-1:-1;;44525:30:0;::::1;44542:13:::0;;;;::::1;;;44541:14;44525:30:::0;;::::1;;::::0;;44466:95::o;27815:208::-;27887:7;-1:-1:-1;;;;;27915:19:0;;27907:74;;;;-1:-1:-1;;;27907:74:0;;14333:2:1;27907:74:0;;;14315:21:1;14372:2;14352:18;;;14345:30;14411:34;14391:18;;;14384:62;-1:-1:-1;;;14462:18:1;;;14455:40;14512:19;;27907:74:0;14131:406:1;27907:74:0;-1:-1:-1;;;;;;27999:16:0;;;;;:9;:16;;;;;;;27815:208::o;8434:103::-;7856:6;;-1:-1:-1;;;;;7856:6:0;6587:10;8003:23;7995:68;;;;-1:-1:-1;;;7995:68:0;;;;;;;:::i;:::-;8499:30:::1;8526:1;8499:18;:30::i;:::-;8434:103::o:0;40216:23::-;;;;;;;:::i;44871:80::-;7856:6;;-1:-1:-1;;;;;7856:6:0;6587:10;8003:23;7995:68;;;;-1:-1:-1;;;7995:68:0;;;;;;;:::i;:::-;44931:5:::1;:14:::0;44871:80::o;28560:104::-;28616:13;28649:7;28642:14;;;;;:::i;41251:371::-;41321:6;;;;41320:7;:24;;;;-1:-1:-1;41332:12:0;;;;;;;41331:13;41320:24;:42;;;;-1:-1:-1;41349:13:0;;;;;;;41348:14;41320:42;:56;;;;-1:-1:-1;41366:10:0;;;;;;;41320:56;41312:94;;;;-1:-1:-1;;;41312:94:0;;11961:2:1;41312:94:0;;;11943:21:1;12000:2;11980:18;;;11973:30;12039:27;12019:18;;;12012:55;12084:18;;41312:94:0;11759:349:1;41312:94:0;41446:11;41438:5;;:19;;;;:::i;:::-;41425:9;:32;;41417:65;;;;-1:-1:-1;;;41417:65:0;;;;;;;:::i;:::-;41535:9;;41520:11;41501:16;:6;3203:14;;3111:114;41501:16;:30;;;;:::i;:::-;:43;;41493:72;;;;-1:-1:-1;;;41493:72:0;;19409:2:1;41493:72:0;;;19391:21:1;19448:2;19428:18;;;19421:30;-1:-1:-1;;;19467:18:1;;;19460:46;19523:18;;41493:72:0;19207:340:1;41493:72:0;41578:35;41589:10;41601:11;41578:10;:35::i;:::-;41251:371;:::o;30243:155::-;30338:52;6587:10;30371:8;30381;30338:18;:52::i;45315:90::-;7856:6;;-1:-1:-1;;;;;7856:6:0;6587:10;8003:23;7995:68;;;;-1:-1:-1;;;7995:68:0;;;;;;;:::i;:::-;45383:16;;::::1;::::0;:6:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;45499:145::-:0;7856:6;;-1:-1:-1;;;;;7856:6:0;6587:10;8003:23;7995:68;;;;-1:-1:-1;;;7995:68:0;;;;;;;:::i;:::-;45550:7:::1;45571;7856:6:::0;;-1:-1:-1;;;;;7856:6:0;;7783:87;45571:7:::1;-1:-1:-1::0;;;;;45563:21:0::1;45592;45563:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45549:69;;;45635:2;45627:11;;;::::0;::::1;41631:610:::0;41709:6;;;;41708:7;:25;;;;-1:-1:-1;41720:13:0;;;;;;;41719:14;41708:25;:40;;;;-1:-1:-1;41738:10:0;;;;;;;41737:11;41708:40;:56;;;;-1:-1:-1;41752:12:0;;;;;;;41708:56;41700:98;;;;-1:-1:-1;;;41700:98:0;;11250:2:1;41700:98:0;;;11232:21:1;11289:2;11269:18;;;11262:30;11328:31;11308:18;;;11301:59;11377:18;;41700:98:0;11048:353:1;41700:98:0;41836:15;;41888:30;;-1:-1:-1;;;41888:30:0;;41907:10;41888:30;;;8257:51:1;41836:15:0;;;;-1:-1:-1;;;;;41836:15:0;;41809:16;;41836:15;;41888:18;;8230::1;;41888:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41863:55;;41955:1;41937:14;:19;;41929:60;;;;-1:-1:-1;;;41929:60:0;;17875:2:1;41929:60:0;;;17857:21:1;17914:2;17894:18;;;17887:30;17953;17933:18;;;17926:58;18001:18;;41929:60:0;17673:352:1;41929:60:0;42029:11;42021:5;;:19;;;;:::i;:::-;42008:9;:32;;42000:65;;;;-1:-1:-1;;;42000:65:0;;;;;;;:::i;:::-;42118:9;;42103:11;42084:16;:6;3203:14;;3111:114;42084:16;:30;;;;:::i;:::-;:43;;42076:108;;;;-1:-1:-1;;;42076:108:0;;13487:2:1;42076:108:0;;;13469:21:1;13526:2;13506:18;;;13499:30;13565:34;13545:18;;;13538:62;-1:-1:-1;;;13616:18:1;;;13609:50;13676:19;;42076:108:0;13285:416:1;42076:108:0;42198:35;42209:10;42221:11;42198:10;:35::i;31366:328::-;31541:41;6587:10;31574:7;31541:18;:41::i;:::-;31533:103;;;;-1:-1:-1;;;31533:103:0;;;;;;;:::i;:::-;31647:39;31661:4;31667:2;31671:7;31680:5;31647:13;:39::i;:::-;31366:328;;;;:::o;40179:30::-;;;;;;;:::i;45095:102::-;7856:6;;-1:-1:-1;;;;;7856:6:0;6587:10;8003:23;7995:68;;;;-1:-1:-1;;;7995:68:0;;;;;;;:::i;:::-;45169:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;44567:92::-:0;7856:6;;-1:-1:-1;;;;;7856:6:0;6587:10;8003:23;7995:68;;;;-1:-1:-1;;;7995:68:0;;;;;;;:::i;:::-;44641:12:::1;::::0;;-1:-1:-1;;44625:28:0;::::1;44641:12:::0;;;;::::1;;;44640:13;44625:28:::0;;::::1;;::::0;;44567:92::o;44957:132::-;7856:6;;-1:-1:-1;;;;;7856:6:0;6587:10;8003:23;7995:68;;;;-1:-1:-1;;;7995:68:0;;;;;;;:::i;:::-;45043:18:::1;:40:::0;44957:132::o;43885:483::-;33269:4;33293:16;;;:7;:16;;;;;;43984:13;;-1:-1:-1;;;;;33293:16:0;44009:98;;;;-1:-1:-1;;;44009:98:0;;17057:2:1;44009:98:0;;;17039:21:1;17096:2;17076:18;;;17069:30;17135:34;17115:18;;;17108:62;-1:-1:-1;;;17186:18:1;;;17179:45;17241:19;;44009:98:0;16855:411:1;44009:98:0;44120:8;;;;;;;44116:56;;44155:9;44148:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43885:483;;;:::o;44116:56::-;44180:28;44211:10;:8;:10::i;:::-;44180:41;;44266:1;44241:14;44235:28;:32;:127;;;;;;;;;;;;;;;;;44303:14;44319:19;:8;:17;:19::i;:::-;44340:6;44286:61;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44235:127;44228:134;43885:483;-1:-1:-1;;;43885:483:0:o;45411:82::-;7856:6;;-1:-1:-1;;;;;7856:6:0;6587:10;8003:23;7995:68;;;;-1:-1:-1;;;7995:68:0;;;;;;;:::i;:::-;45472:6:::1;:15:::0;;-1:-1:-1;;45472:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45411:82::o;42249:455::-;42357:11;40972:9;;40957:11;40938:16;:6;3203:14;;3111:114;40938:16;:30;;;;:::i;:::-;:43;;40930:72;;;;-1:-1:-1;;;40930:72:0;;19409:2:1;40930:72:0;;;19391:21:1;19448:2;19428:18;;;19421:30;-1:-1:-1;;;19467:18:1;;;19460:46;19523:18;;40930:72:0;19207:340:1;40930:72:0;41035:1;41021:11;:15;:52;;;;;41055:18;;41040:11;:33;;41021:52;41013:106;;;;-1:-1:-1;;;41013:106:0;;18999:2:1;41013:106:0;;;18981:21:1;19038:2;19018:18;;;19011:30;19077:34;19057:18;;;19050:62;-1:-1:-1;;;19128:18:1;;;19121:39;19177:19;;41013:106:0;18797:405:1;41013:106:0;42389:6:::1;::::0;::::1;;42388:7;:24:::0;::::1;;;-1:-1:-1::0;42400:12:0::1;::::0;;;::::1;;;42399:13;42388:24;:39;;;;-1:-1:-1::0;42417:10:0::1;::::0;;;::::1;;;42416:11;42388:39;:56;;;;-1:-1:-1::0;42431:13:0::1;::::0;;;::::1;;;42388:56;42380:98;;;::::0;-1:-1:-1;;;42380:98:0;;15154:2:1;42380:98:0::1;::::0;::::1;15136:21:1::0;15193:2;15173:18;;;15166:30;15232:31;15212:18;;;15205:59;15281:18;;42380:98:0::1;14952:353:1::0;42380:98:0::1;42497:46;42518:10;42530:12;;42497:20;:46::i;:::-;42489:83;;;::::0;-1:-1:-1;;;42489:83:0;;11608:2:1;42489:83:0::1;::::0;::::1;11590:21:1::0;11647:2;11627:18;;;11620:30;11686:26;11666:18;;;11659:54;11730:18;;42489:83:0::1;11406:348:1::0;42489:83:0::1;42612:11;42604:5;;:19;;;;:::i;:::-;42591:9;:32;;42583:65;;;;-1:-1:-1::0;;;42583:65:0::1;;;;;;;:::i;:::-;42661:35;42672:10;42684:11;42661:10;:35::i;8692:201::-:0;7856:6;;-1:-1:-1;;;;;7856:6:0;6587:10;8003:23;7995:68;;;;-1:-1:-1;;;7995:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8781:22:0;::::1;8773:73;;;::::0;-1:-1:-1;;;8773:73:0;;10486:2:1;8773:73:0::1;::::0;::::1;10468:21:1::0;10525:2;10505:18;;;10498:30;10564:34;10544:18;;;10537:62;-1:-1:-1;;;10615:18:1;;;10608:36;10661:19;;8773:73:0::1;10284:402:1::0;8773:73:0::1;8857:28;8876:8;8857:18;:28::i;44781:84::-:0;7856:6;;-1:-1:-1;;;;;7856:6:0;6587:10;8003:23;7995:68;;;;-1:-1:-1;;;7995:68:0;;;;;;;:::i;:::-;44842:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;44842:17:0;;::::1;::::0;;;::::1;::::0;;44781:84::o;37186:174::-;37261:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37261:29:0;-1:-1:-1;;;;;37261:29:0;;;;;;;;:24;;37315:23;37261:24;37315:14;:23::i;:::-;-1:-1:-1;;;;;37306:46:0;;;;;;;;;;;37186:174;;:::o;33498:348::-;33591:4;33293:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33293:16:0;33608:73;;;;-1:-1:-1;;;33608:73:0;;13074:2:1;33608:73:0;;;13056:21:1;13113:2;13093:18;;;13086:30;13152:34;13132:18;;;13125:62;-1:-1:-1;;;13203:18:1;;;13196:42;13255:19;;33608:73:0;12872:408:1;33608:73:0;33692:13;33708:23;33723:7;33708:14;:23::i;:::-;33692:39;;33761:5;-1:-1:-1;;;;;33750:16:0;:7;-1:-1:-1;;;;;33750:16:0;;:51;;;;33794:7;-1:-1:-1;;;;;33770:31:0;:20;33782:7;33770:11;:20::i;:::-;-1:-1:-1;;;;;33770:31:0;;33750:51;:87;;;-1:-1:-1;;;;;;30590:25:0;;;30566:4;30590:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33805:32;33742:96;33498:348;-1:-1:-1;;;;33498:348:0:o;36490:578::-;36649:4;-1:-1:-1;;;;;36622:31:0;:23;36637:7;36622:14;:23::i;:::-;-1:-1:-1;;;;;36622:31:0;;36614:85;;;;-1:-1:-1;;;36614:85:0;;16647:2:1;36614:85:0;;;16629:21:1;16686:2;16666:18;;;16659:30;16725:34;16705:18;;;16698:62;-1:-1:-1;;;16776:18:1;;;16769:39;16825:19;;36614:85:0;16445:405:1;36614:85:0;-1:-1:-1;;;;;36718:16:0;;36710:65;;;;-1:-1:-1;;;36710:65:0;;12315:2:1;36710:65:0;;;12297:21:1;12354:2;12334:18;;;12327:30;12393:34;12373:18;;;12366:62;-1:-1:-1;;;12444:18:1;;;12437:34;12488:19;;36710:65:0;12113:400:1;36710:65:0;36892:29;36909:1;36913:7;36892:8;:29::i;:::-;-1:-1:-1;;;;;36934:15:0;;;;;;:9;:15;;;;;:20;;36953:1;;36934:15;:20;;36953:1;;36934:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36965:13:0;;;;;;:9;:13;;;;;:18;;36982:1;;36965:13;:18;;36982:1;;36965:18;:::i;:::-;;;;-1:-1:-1;;36994:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36994:21:0;-1:-1:-1;;;;;36994:21:0;;;;;;;;;37033:27;;36994:16;;37033:27;;;;;;;36490:578;;;:::o;45650:219::-;45733:9;45728:136;45752:11;45748:1;:15;45728:136;;;45783:18;:6;3322:19;;3340:1;3322:19;;;3233:127;45783:18;45815:38;45825:9;45836:16;:6;3203:14;;3111:114;45836:16;45815:9;:38::i;:::-;45765:3;;;;:::i;:::-;;;;45728:136;;9053:191;9146:6;;;-1:-1:-1;;;;;9163:17:0;;;-1:-1:-1;;;;;;9163:17:0;;;;;;;9196:40;;9146:6;;;9163:17;9146:6;;9196:40;;9127:16;;9196:40;9116:128;9053:191;:::o;37502:315::-;37657:8;-1:-1:-1;;;;;37648:17:0;:5;-1:-1:-1;;;;;37648:17:0;;;37640:55;;;;-1:-1:-1;;;37640:55:0;;12720:2:1;37640:55:0;;;12702:21:1;12759:2;12739:18;;;12732:30;12798:27;12778:18;;;12771:55;12843:18;;37640:55:0;12518:349:1;37640:55:0;-1:-1:-1;;;;;37706:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;37706:46:0;;;;;;;;;;37768:41;;9589::1;;;37768::0;;9562:18:1;37768:41:0;;;;;;;37502:315;;;:::o;32576:::-;32733:28;32743:4;32749:2;32753:7;32733:9;:28::i;:::-;32780:48;32803:4;32809:2;32813:7;32822:5;32780:22;:48::i;:::-;32772:111;;;;-1:-1:-1;;;32772:111:0;;;;;;;:::i;45875:105::-;45935:13;45966:7;45959:14;;;;;:::i;4069:723::-;4125:13;4346:10;4342:53;;-1:-1:-1;;4373:10:0;;;;;;;;;;;;-1:-1:-1;;;4373:10:0;;;;;4069:723::o;4342:53::-;4420:5;4405:12;4461:78;4468:9;;4461:78;;4494:8;;;;:::i;:::-;;-1:-1:-1;4517:10:0;;-1:-1:-1;4525:2:0;4517:10;;:::i;:::-;;;4461:78;;;4549:19;4581:6;4571:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4571:17:0;;4549:39;;4599:154;4606:10;;4599:154;;4633:11;4643:1;4633:11;;:::i;:::-;;-1:-1:-1;4702:10:0;4710:2;4702:5;:10;:::i;:::-;4689:24;;:2;:24;:::i;:::-;4676:39;;4659:6;4666;4659:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;4659:56:0;;;;;;;;-1:-1:-1;4730:11:0;4739:2;4730:11;;:::i;:::-;;;4599:154;;42982:250;43123:26;;-1:-1:-1;;6032:2:1;6028:15;;;6024:53;43123:26:0;;;6012:66:1;43085:4:0;;;;6094:12:1;;43123:26:0;;;;;;;;;;;;43113:37;;;;;;43098:52;;43164:58;43183:12;;43164:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;43197:18:0;;;-1:-1:-1;43217:4:0;;-1:-1:-1;43164:18:0;:58::i;:::-;43157:65;42982:250;-1:-1:-1;;;;;42982:250:0:o;34188:110::-;34264:26;34274:2;34278:7;34264:26;;;;;;;;;;;;:9;:26::i;38382:799::-;38537:4;-1:-1:-1;;;;;38558:13:0;;10394:20;10442:8;38554:620;;38594:72;;-1:-1:-1;;;38594:72:0;;-1:-1:-1;;;;;38594:36:0;;;;;:72;;6587:10;;38645:4;;38651:7;;38660:5;;38594:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38594:72:0;;;;;;;;-1:-1:-1;;38594:72:0;;;;;;;;;;;;:::i;:::-;;;38590:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38836:13:0;;38832:272;;38879:60;;-1:-1:-1;;;38879:60:0;;;;;;;:::i;38832:272::-;39054:6;39048:13;39039:6;39035:2;39031:15;39024:38;38590:529;-1:-1:-1;;;;;;38717:51:0;-1:-1:-1;;;38717:51:0;;-1:-1:-1;38710:58:0;;38554:620;-1:-1:-1;39158:4:0;38382:799;;;;;;:::o;979:190::-;1104:4;1157;1128:25;1141:5;1148:4;1128:12;:25::i;:::-;:33;;979:190;-1:-1:-1;;;;979:190:0:o;34525:321::-;34655:18;34661:2;34665:7;34655:5;:18::i;:::-;34706:54;34737:1;34741:2;34745:7;34754:5;34706:22;:54::i;:::-;34684:154;;;;-1:-1:-1;;;34684:154:0;;;;;;;:::i;1531:701::-;1614:7;1657:4;1614:7;1672:523;1696:5;:12;1692:1;:16;1672:523;;;1730:20;1753:5;1759:1;1753:8;;;;;;;;:::i;:::-;;;;;;;1730:31;;1796:12;1780;:28;1776:408;;1933:44;;;;;;6274:19:1;;;6309:12;;;6302:28;;;6346:12;;1933:44:0;;;;;;;;;;;;1923:55;;;;;;1908:70;;1776:408;;;2123:44;;;;;;6274:19:1;;;6309:12;;;6302:28;;;6346:12;;2123:44:0;;;;;;;;;;;;2113:55;;;;;;2098:70;;1776:408;-1:-1:-1;1710:3:0;;;;:::i;:::-;;;;1672:523;;;-1:-1:-1;2212:12:0;1531:701;-1:-1:-1;;;1531:701:0:o;35182:382::-;-1:-1:-1;;;;;35262:16:0;;35254:61;;;;-1:-1:-1;;;35254:61:0;;15512:2:1;35254:61:0;;;15494:21:1;;;15531:18;;;15524:30;15590:34;15570:18;;;15563:62;15642:18;;35254:61:0;15310:356:1;35254:61:0;33269:4;33293:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33293:16:0;:30;35326:58;;;;-1:-1:-1;;;35326:58:0;;10893:2:1;35326:58:0;;;10875:21:1;10932:2;10912:18;;;10905:30;10971;10951:18;;;10944:58;11019:18;;35326:58:0;10691:352:1;35326:58:0;-1:-1:-1;;;;;35455:13:0;;;;;;:9;:13;;;;;:18;;35472:1;;35455:13;:18;;35472:1;;35455:18;:::i;:::-;;;;-1:-1:-1;;35484:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35484:21:0;-1:-1:-1;;;;;35484:21:0;;;;;;;;35523:33;;35484:16;;;35523:33;;35484:16;;35523:33;35182:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:180::-;3215:6;3268:2;3256:9;3247:7;3243:23;3239:32;3236:52;;;3284:1;3281;3274:12;3236:52;-1:-1:-1;3307:23:1;;3156:180;-1:-1:-1;3156:180:1:o;3341:245::-;3399:6;3452:2;3440:9;3431:7;3427:23;3423:32;3420:52;;;3468:1;3465;3458:12;3420:52;3507:9;3494:23;3526:30;3550:5;3526:30;:::i;3591:249::-;3660:6;3713:2;3701:9;3692:7;3688:23;3684:32;3681:52;;;3729:1;3726;3719:12;3681:52;3761:9;3755:16;3780:30;3804:5;3780:30;:::i;3845:450::-;3914:6;3967:2;3955:9;3946:7;3942:23;3938:32;3935:52;;;3983:1;3980;3973:12;3935:52;4023:9;4010:23;4056:18;4048:6;4045:30;4042:50;;;4088:1;4085;4078:12;4042:50;4111:22;;4164:4;4156:13;;4152:27;-1:-1:-1;4142:55:1;;4193:1;4190;4183:12;4142:55;4216:73;4281:7;4276:2;4263:16;4258:2;4254;4250:11;4216:73;:::i;4485:184::-;4555:6;4608:2;4596:9;4587:7;4583:23;4579:32;4576:52;;;4624:1;4621;4614:12;4576:52;-1:-1:-1;4647:16:1;;4485:184;-1:-1:-1;4485:184:1:o;4674:254::-;4742:6;4750;4803:2;4791:9;4782:7;4778:23;4774:32;4771:52;;;4819:1;4816;4809:12;4771:52;4855:9;4842:23;4832:33;;4884:38;4918:2;4907:9;4903:18;4884:38;:::i;4933:683::-;5028:6;5036;5044;5097:2;5085:9;5076:7;5072:23;5068:32;5065:52;;;5113:1;5110;5103:12;5065:52;5149:9;5136:23;5126:33;;5210:2;5199:9;5195:18;5182:32;5233:18;5274:2;5266:6;5263:14;5260:34;;;5290:1;5287;5280:12;5260:34;5328:6;5317:9;5313:22;5303:32;;5373:7;5366:4;5362:2;5358:13;5354:27;5344:55;;5395:1;5392;5385:12;5344:55;5435:2;5422:16;5461:2;5453:6;5450:14;5447:34;;;5477:1;5474;5467:12;5447:34;5530:7;5525:2;5515:6;5512:1;5508:14;5504:2;5500:23;5496:32;5493:45;5490:65;;;5551:1;5548;5541:12;5490:65;5582:2;5578;5574:11;5564:21;;5604:6;5594:16;;;;;4933:683;;;;;:::o;5621:257::-;5662:3;5700:5;5694:12;5727:6;5722:3;5715:19;5743:63;5799:6;5792:4;5787:3;5783:14;5776:4;5769:5;5765:16;5743:63;:::i;:::-;5860:2;5839:15;-1:-1:-1;;5835:29:1;5826:39;;;;5867:4;5822:50;;5621:257;-1:-1:-1;;5621:257:1:o;6369:1527::-;6593:3;6631:6;6625:13;6657:4;6670:51;6714:6;6709:3;6704:2;6696:6;6692:15;6670:51;:::i;:::-;6784:13;;6743:16;;;;6806:55;6784:13;6743:16;6828:15;;;6806:55;:::i;:::-;6950:13;;6883:20;;;6923:1;;7010;7032:18;;;;7085;;;;7112:93;;7190:4;7180:8;7176:19;7164:31;;7112:93;7253:2;7243:8;7240:16;7220:18;7217:40;7214:167;;;-1:-1:-1;;;7280:33:1;;7336:4;7333:1;7326:15;7366:4;7287:3;7354:17;7214:167;7397:18;7424:110;;;;7548:1;7543:328;;;;7390:481;;7424:110;-1:-1:-1;;7459:24:1;;7445:39;;7504:20;;;;-1:-1:-1;7424:110:1;;7543:328;19807:1;19800:14;;;19844:4;19831:18;;7638:1;7652:169;7666:8;7663:1;7660:15;7652:169;;;7748:14;;7733:13;;;7726:37;7791:16;;;;7683:10;;7652:169;;;7656:3;;7852:8;7845:5;7841:20;7834:27;;7390:481;-1:-1:-1;7887:3:1;;6369:1527;-1:-1:-1;;;;;;;;;;;6369:1527:1:o;8319:488::-;-1:-1:-1;;;;;8588:15:1;;;8570:34;;8640:15;;8635:2;8620:18;;8613:43;8687:2;8672:18;;8665:34;;;8735:3;8730:2;8715:18;;8708:31;;;8513:4;;8756:45;;8781:19;;8773:6;8756:45;:::i;:::-;8748:53;8319:488;-1:-1:-1;;;;;;8319:488:1:o;8812:632::-;8983:2;9035:21;;;9105:13;;9008:18;;;9127:22;;;8954:4;;8983:2;9206:15;;;;9180:2;9165:18;;;8954:4;9249:169;9263:6;9260:1;9257:13;9249:169;;;9324:13;;9312:26;;9393:15;;;;9358:12;;;;9285:1;9278:9;9249:169;;;-1:-1:-1;9435:3:1;;8812:632;-1:-1:-1;;;;;;8812:632:1:o;9641:219::-;9790:2;9779:9;9772:21;9753:4;9810:44;9850:2;9839:9;9835:18;9827:6;9810:44;:::i;9865:414::-;10067:2;10049:21;;;10106:2;10086:18;;;10079:30;10145:34;10140:2;10125:18;;10118:62;-1:-1:-1;;;10211:2:1;10196:18;;10189:48;10269:3;10254:19;;9865:414::o;16084:356::-;16286:2;16268:21;;;16305:18;;;16298:30;16364:34;16359:2;16344:18;;16337:62;16431:2;16416:18;;16084:356::o;18030:413::-;18232:2;18214:21;;;18271:2;18251:18;;;18244:30;18310:34;18305:2;18290:18;;18283:62;-1:-1:-1;;;18376:2:1;18361:18;;18354:47;18433:3;18418:19;;18030:413::o;18448:344::-;18650:2;18632:21;;;18689:2;18669:18;;;18662:30;-1:-1:-1;;;18723:2:1;18708:18;;18701:50;18783:2;18768:18;;18448:344::o;19860:128::-;19900:3;19931:1;19927:6;19924:1;19921:13;19918:39;;;19937:18;;:::i;:::-;-1:-1:-1;19973:9:1;;19860:128::o;19993:120::-;20033:1;20059;20049:35;;20064:18;;:::i;:::-;-1:-1:-1;20098:9:1;;19993:120::o;20118:168::-;20158:7;20224:1;20220;20216:6;20212:14;20209:1;20206:21;20201:1;20194:9;20187:17;20183:45;20180:71;;;20231:18;;:::i;:::-;-1:-1:-1;20271:9:1;;20118:168::o;20291:125::-;20331:4;20359:1;20356;20353:8;20350:34;;;20364:18;;:::i;:::-;-1:-1:-1;20401:9:1;;20291:125::o;20421:258::-;20493:1;20503:113;20517:6;20514:1;20511:13;20503:113;;;20593:11;;;20587:18;20574:11;;;20567:39;20539:2;20532:10;20503:113;;;20634:6;20631:1;20628:13;20625:48;;;-1:-1:-1;;20669:1:1;20651:16;;20644:27;20421:258::o;20684:380::-;20763:1;20759:12;;;;20806;;;20827:61;;20881:4;20873:6;20869:17;20859:27;;20827:61;20934:2;20926:6;20923:14;20903:18;20900:38;20897:161;;;20980:10;20975:3;20971:20;20968:1;20961:31;21015:4;21012:1;21005:15;21043:4;21040:1;21033:15;20897:161;;20684:380;;;:::o;21069:135::-;21108:3;-1:-1:-1;;21129:17:1;;21126:43;;;21149:18;;:::i;:::-;-1:-1:-1;21196:1:1;21185:13;;21069:135::o;21209:112::-;21241:1;21267;21257:35;;21272:18;;:::i;:::-;-1:-1:-1;21306:9:1;;21209:112::o;21326:127::-;21387:10;21382:3;21378:20;21375:1;21368:31;21418:4;21415:1;21408:15;21442:4;21439:1;21432:15;21458:127;21519:10;21514:3;21510:20;21507:1;21500:31;21550:4;21547:1;21540:15;21574:4;21571:1;21564:15;21590:127;21651:10;21646:3;21642:20;21639:1;21632:31;21682:4;21679:1;21672:15;21706:4;21703:1;21696:15;21722:127;21783:10;21778:3;21774:20;21771:1;21764:31;21814:4;21811:1;21804:15;21838:4;21835:1;21828:15;21854:131;-1:-1:-1;;;;;;21928:32:1;;21918:43;;21908:71;;21975:1;21972;21965:12

Swarm Source

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