ETH Price: $2,523.86 (-0.35%)

Token

Fortune Cookie Club (FCC)
 

Overview

Max Total Supply

179 FCC

Holders

165

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
gabesfree.eth
Balance
1 FCC
0x1c1d7e85f14cf6e86892d0bded33b42a5615e577
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FortuneCookieClub

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-21
*/

// SPDX-License-Identifier: MIT
// File: contracts/fcc.sol

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = '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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, 'Strings: hex length insufficient');
        return string(buffer);
    }
}

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;
        // solhint-disable-next-line no-inline-assembly
        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');

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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');

        // solhint-disable-next-line avoid-low-level-calls
        (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');

        // solhint-disable-next-line avoid-low-level-calls
        (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');

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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);
}

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);
}

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;
    }
}

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;
}

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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);
}

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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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');
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

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}. 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 {
        require(operator != _msgSender(), 'ERC721: approve to caller');

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //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 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert('ERC721: transfer to non ERC721Receiver implementer');
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 {}
}

pragma solidity ^0.8.0;

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), 'ERC721Enumerable: owner index out of bounds');
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), 'ERC721Enumerable: global index out of bounds');
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

pragma solidity ^0.8.0;

contract FortuneCookieClub is ERC721Enumerable, Ownable {
    using SafeMath for uint256;
    using Address for address;
    using Strings for uint256;

    uint256 public constant NFT_PRICE = 70000000000000000; // 0.07 ETH
    uint public constant MAX_NFT_PURCHASE = 20;
    uint256 public MAX_SUPPLY = 16888;
    bool public saleIsActive = false;

    string private _baseURIExtended;
    mapping(uint256 => string) _tokenURIs;
    mapping(address => bool) minted;
    mapping(address => uint256) purchased;

    modifier mintOnlyOnce() {
        require(!minted[_msgSender()], 'Can only mint once');
        minted[_msgSender()] = true;
        _;
    }

    constructor() ERC721('Fortune Cookie Club', 'FCC') {}

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }


    function mintCookie(uint numberOfTokens) public payable {
        require(purchased[msg.sender].add(numberOfTokens) <= MAX_NFT_PURCHASE, 'Can only mint up to 20 per address');
        require(saleIsActive, 'Sale is not active at the moment');
        require(numberOfTokens > 0, "Number of tokens can not be less than or equal to 0");
        require(totalSupply().add(numberOfTokens) <= MAX_SUPPLY, "Purchase would exceed max supply");
        require(numberOfTokens <= MAX_NFT_PURCHASE,"Can only mint up to 20 per purchase");
        require(NFT_PRICE.mul(numberOfTokens) == msg.value, "Sent ether value is incorrect");
        purchased[msg.sender] = purchased[msg.sender].add(numberOfTokens);
        for (uint i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, totalSupply());
        }
    }

    function mintCookieForFree() public mintOnlyOnce {
        require(saleIsActive, 'Sale is not active at the moment');
        require(totalSupply().add(1) <= MAX_SUPPLY, 'Purchase would exceed max supply');
        _safeMint(msg.sender, totalSupply());
    }

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

    // Sets base URI for all tokens, only able to be called by contract owner
    function setBaseURI(string memory baseURI_) external onlyOwner {
        _baseURIExtended = baseURI_;
    }

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(base, tokenId.toString()));
    }
}

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":"MAX_NFT_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintCookie","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintCookieForFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526141f8600b55600c805460ff191690553480156200002157600080fd5b50604080518082018252601381527f466f7274756e6520436f6f6b696520436c75620000000000000000000000000060208083019182528351808501909452600384526246434360e81b908401528151919291620000829160009162000105565b5080516200009890600190602084019062000105565b5050506000620000ad6200010160201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620001e8565b3390565b8280546200011390620001ab565b90600052602060002090601f01602090048101928262000137576000855562000182565b82601f106200015257805160ff191683800117855562000182565b8280016001018555821562000182579182015b828111156200018257825182559160200191906001019062000165565b506200019092915062000194565b5090565b5b8082111562000190576000815560010162000195565b600181811c90821680620001c057607f821691505b60208210811415620001e257634e487b7160e01b600052602260045260246000fd5b50919050565b6122e880620001f86000396000f3fe6080604052600436106101b75760003560e01c80635314de34116100ec57806395d89b411161008a578063c87b56dd11610064578063c87b56dd14610490578063e985e9c5146104b0578063eb8d2444146104f9578063f2fde38b1461051357600080fd5b806395d89b411461043b578063a22cb46514610450578063b88d4fde1461047057600080fd5b8063676dd563116100c6578063676dd563146103cd57806370a08231146103e8578063715018a6146104085780638da5cb5b1461041d57600080fd5b80635314de341461037a57806355f804b31461038d5780636352211e146103ad57600080fd5b80632f745c59116101595780633ccfd60b116101335780633ccfd60b1461031057806342842e0e1461032557806347f9e0bb146103455780634f6ccce71461035a57600080fd5b80632f745c59146102c557806332cb6b0c146102e557806334918dfd146102fb57600080fd5b8063081812fc11610195578063081812fc14610236578063095ea7b31461026e57806318160ddd1461029057806323b872dd146102a557600080fd5b806301ffc9a7146101bc578063020b39cc146101f157806306fdde0314610214575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611f46565b610533565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206601481565b6040519081526020016101e8565b34801561022057600080fd5b5061022961055e565b6040516101e89190612074565b34801561024257600080fd5b50610256610251366004611fc4565b6105f0565b6040516001600160a01b0390911681526020016101e8565b34801561027a57600080fd5b5061028e610289366004611f1d565b61068a565b005b34801561029c57600080fd5b50600854610206565b3480156102b157600080fd5b5061028e6102c0366004611e2f565b6107a0565b3480156102d157600080fd5b506102066102e0366004611f1d565b6107d1565b3480156102f157600080fd5b50610206600b5481565b34801561030757600080fd5b5061028e610867565b34801561031c57600080fd5b5061028e6108a5565b34801561033157600080fd5b5061028e610340366004611e2f565b610902565b34801561035157600080fd5b5061028e61091d565b34801561036657600080fd5b50610206610375366004611fc4565b610a57565b61028e610388366004611fc4565b610af8565b34801561039957600080fd5b5061028e6103a8366004611f7e565b610d9b565b3480156103b957600080fd5b506102566103c8366004611fc4565b610dd8565b3480156103d957600080fd5b5061020666f8b0a10e47000081565b3480156103f457600080fd5b50610206610403366004611de3565b610e4f565b34801561041457600080fd5b5061028e610ed6565b34801561042957600080fd5b50600a546001600160a01b0316610256565b34801561044757600080fd5b50610229610f4a565b34801561045c57600080fd5b5061028e61046b366004611ee3565b610f59565b34801561047c57600080fd5b5061028e61048b366004611e6a565b61101e565b34801561049c57600080fd5b506102296104ab366004611fc4565b611056565b3480156104bc57600080fd5b506101dc6104cb366004611dfd565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561050557600080fd5b50600c546101dc9060ff1681565b34801561051f57600080fd5b5061028e61052e366004611de3565b6111d8565b60006001600160e01b0319821663780e9d6360e01b14806105585750610558826112c3565b92915050565b60606000805461056d906121ed565b80601f0160208091040260200160405190810160405280929190818152602001828054610599906121ed565b80156105e65780601f106105bb576101008083540402835291602001916105e6565b820191906000526020600020905b8154815290600101906020018083116105c957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661066e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061069582610dd8565b9050806001600160a01b0316836001600160a01b031614156107035760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610665565b336001600160a01b038216148061071f575061071f81336104cb565b6107915760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610665565b61079b8383611313565b505050565b6107aa3382611381565b6107c65760405162461bcd60e51b81526004016106659061210e565b61079b838383611478565b60006107dc83610e4f565b821061083e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610665565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146108915760405162461bcd60e51b8152600401610665906120d9565b600c805460ff19811660ff90911615179055565b600a546001600160a01b031633146108cf5760405162461bcd60e51b8152600401610665906120d9565b6040514790339082156108fc029083906000818181858888f193505050501580156108fe573d6000803e3d6000fd5b5050565b61079b8383836040518060200160405280600081525061101e565b336000908152600f602052604090205460ff16156109725760405162461bcd60e51b815260206004820152601260248201527143616e206f6e6c79206d696e74206f6e636560701b6044820152606401610665565b336000908152600f60205260409020805460ff19166001179055600c5460ff166109de5760405162461bcd60e51b815260206004820181905260248201527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e746044820152606401610665565b600b546109f560016109ef60085490565b90611623565b1115610a435760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152606401610665565b610a5533610a5060085490565b611636565b565b6000610a6260085490565b8210610ac55760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610665565b60088281548110610ae657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b33600090815260106020526040902054601490610b159083611623565b1115610b6e5760405162461bcd60e51b815260206004820152602260248201527f43616e206f6e6c79206d696e7420757020746f20323020706572206164647265604482015261737360f01b6064820152608401610665565b600c5460ff16610bc05760405162461bcd60e51b815260206004820181905260248201527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e746044820152606401610665565b60008111610c2c5760405162461bcd60e51b815260206004820152603360248201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c6573736044820152720207468616e206f7220657175616c20746f203606c1b6064820152608401610665565b600b54610c3c826109ef60085490565b1115610c8a5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152606401610665565b6014811115610ce75760405162461bcd60e51b815260206004820152602360248201527f43616e206f6e6c79206d696e7420757020746f2032302070657220707572636860448201526261736560e81b6064820152608401610665565b34610cf966f8b0a10e47000083611650565b14610d465760405162461bcd60e51b815260206004820152601d60248201527f53656e742065746865722076616c756520697320696e636f72726563740000006044820152606401610665565b33600090815260106020526040902054610d609082611623565b336000908152601060205260408120919091555b818110156108fe57610d8933610a5060085490565b80610d9381612228565b915050610d74565b600a546001600160a01b03163314610dc55760405162461bcd60e51b8152600401610665906120d9565b80516108fe90600d906020840190611cb8565b6000818152600260205260408120546001600160a01b0316806105585760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610665565b60006001600160a01b038216610eba5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610665565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f005760405162461bcd60e51b8152600401610665906120d9565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b60606001805461056d906121ed565b6001600160a01b038216331415610fb25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610665565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110283383611381565b6110445760405162461bcd60e51b81526004016106659061210e565b6110508484848461165c565b50505050565b6000818152600260205260409020546060906001600160a01b03166110d55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610665565b6000828152600e6020526040812080546110ee906121ed565b80601f016020809104026020016040519081016040528092919081815260200182805461111a906121ed565b80156111675780601f1061113c57610100808354040283529160200191611167565b820191906000526020600020905b81548152906001019060200180831161114a57829003601f168201915b50505050509050600061117861168f565b905080516000141561118b575092915050565b8151156111bd5780826040516020016111a5929190612008565b60405160208183030381529060405292505050919050565b806111c78561169e565b6040516020016111a5929190612008565b600a546001600160a01b031633146112025760405162461bcd60e51b8152600401610665906120d9565b6001600160a01b0381166112675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610665565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806112f457506001600160e01b03198216635b5e139f60e01b145b8061055857506301ffc9a760e01b6001600160e01b0319831614610558565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061134882610dd8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113fa5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610665565b600061140583610dd8565b9050806001600160a01b0316846001600160a01b031614806114405750836001600160a01b0316611435846105f0565b6001600160a01b0316145b8061147057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661148b82610dd8565b6001600160a01b0316146114f35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610665565b6001600160a01b0382166115555760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610665565b6115608383836117b8565b61156b600082611313565b6001600160a01b03831660009081526003602052604081208054600192906115949084906121aa565b90915550506001600160a01b03821660009081526003602052604081208054600192906115c290849061215f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061162f828461215f565b9392505050565b6108fe828260405180602001604052806000815250611870565b600061162f828461218b565b611667848484611478565b611673848484846118a3565b6110505760405162461bcd60e51b815260040161066590612087565b6060600d805461056d906121ed565b6060816116c25750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116ec57806116d681612228565b91506116e59050600a83612177565b91506116c6565b60008167ffffffffffffffff81111561171557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561173f576020820181803683370190505b5090505b8415611470576117546001836121aa565b9150611761600a86612243565b61176c90603061215f565b60f81b81838151811061178f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506117b1600a86612177565b9450611743565b6001600160a01b0383166118135761180e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611836565b816001600160a01b0316836001600160a01b0316146118365761183683826119b0565b6001600160a01b03821661184d5761079b81611a4d565b826001600160a01b0316826001600160a01b03161461079b5761079b8282611b26565b61187a8383611b6a565b61188760008484846118a3565b61079b5760405162461bcd60e51b815260040161066590612087565b60006001600160a01b0384163b156119a557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118e7903390899088908890600401612037565b602060405180830381600087803b15801561190157600080fd5b505af1925050508015611931575060408051601f3d908101601f1916820190925261192e91810190611f62565b60015b61198b573d80801561195f576040519150601f19603f3d011682016040523d82523d6000602084013e611964565b606091505b5080516119835760405162461bcd60e51b815260040161066590612087565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611470565b506001949350505050565b600060016119bd84610e4f565b6119c791906121aa565b600083815260076020526040902054909150808214611a1a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a5f906001906121aa565b60008381526009602052604081205460088054939450909284908110611a9557634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611ac457634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b0a57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611b3183610e4f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611bc05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610665565b6000818152600260205260409020546001600160a01b031615611c255760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610665565b611c31600083836117b8565b6001600160a01b0382166000908152600360205260408120805460019290611c5a90849061215f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611cc4906121ed565b90600052602060002090601f016020900481019282611ce65760008555611d2c565b82601f10611cff57805160ff1916838001178555611d2c565b82800160010185558215611d2c579182015b82811115611d2c578251825591602001919060010190611d11565b50611d38929150611d3c565b5090565b5b80821115611d385760008155600101611d3d565b600067ffffffffffffffff80841115611d6c57611d6c612283565b604051601f8501601f19908116603f01168101908282118183101715611d9457611d94612283565b81604052809350858152868686011115611dad57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611dde57600080fd5b919050565b600060208284031215611df4578081fd5b61162f82611dc7565b60008060408385031215611e0f578081fd5b611e1883611dc7565b9150611e2660208401611dc7565b90509250929050565b600080600060608486031215611e43578081fd5b611e4c84611dc7565b9250611e5a60208501611dc7565b9150604084013590509250925092565b60008060008060808587031215611e7f578081fd5b611e8885611dc7565b9350611e9660208601611dc7565b925060408501359150606085013567ffffffffffffffff811115611eb8578182fd5b8501601f81018713611ec8578182fd5b611ed787823560208401611d51565b91505092959194509250565b60008060408385031215611ef5578182fd5b611efe83611dc7565b915060208301358015158114611f12578182fd5b809150509250929050565b60008060408385031215611f2f578182fd5b611f3883611dc7565b946020939093013593505050565b600060208284031215611f57578081fd5b813561162f81612299565b600060208284031215611f73578081fd5b815161162f81612299565b600060208284031215611f8f578081fd5b813567ffffffffffffffff811115611fa5578182fd5b8201601f81018413611fb5578182fd5b61147084823560208401611d51565b600060208284031215611fd5578081fd5b5035919050565b60008151808452611ff48160208601602086016121c1565b601f01601f19169290920160200192915050565b6000835161201a8184602088016121c1565b83519083019061202e8183602088016121c1565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061206a90830184611fdc565b9695505050505050565b60208152600061162f6020830184611fdc565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561217257612172612257565b500190565b6000826121865761218661226d565b500490565b60008160001904831182151516156121a5576121a5612257565b500290565b6000828210156121bc576121bc612257565b500390565b60005b838110156121dc5781810151838201526020016121c4565b838111156110505750506000910152565b600181811c9082168061220157607f821691505b6020821081141561222257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561223c5761223c612257565b5060010190565b6000826122525761225261226d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146122af57600080fd5b5056fea26469706673582212201fb915ef1b72db405b892deebf85f24b2cb960783c74ad686753489a415279f864736f6c63430008040033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80635314de34116100ec57806395d89b411161008a578063c87b56dd11610064578063c87b56dd14610490578063e985e9c5146104b0578063eb8d2444146104f9578063f2fde38b1461051357600080fd5b806395d89b411461043b578063a22cb46514610450578063b88d4fde1461047057600080fd5b8063676dd563116100c6578063676dd563146103cd57806370a08231146103e8578063715018a6146104085780638da5cb5b1461041d57600080fd5b80635314de341461037a57806355f804b31461038d5780636352211e146103ad57600080fd5b80632f745c59116101595780633ccfd60b116101335780633ccfd60b1461031057806342842e0e1461032557806347f9e0bb146103455780634f6ccce71461035a57600080fd5b80632f745c59146102c557806332cb6b0c146102e557806334918dfd146102fb57600080fd5b8063081812fc11610195578063081812fc14610236578063095ea7b31461026e57806318160ddd1461029057806323b872dd146102a557600080fd5b806301ffc9a7146101bc578063020b39cc146101f157806306fdde0314610214575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611f46565b610533565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206601481565b6040519081526020016101e8565b34801561022057600080fd5b5061022961055e565b6040516101e89190612074565b34801561024257600080fd5b50610256610251366004611fc4565b6105f0565b6040516001600160a01b0390911681526020016101e8565b34801561027a57600080fd5b5061028e610289366004611f1d565b61068a565b005b34801561029c57600080fd5b50600854610206565b3480156102b157600080fd5b5061028e6102c0366004611e2f565b6107a0565b3480156102d157600080fd5b506102066102e0366004611f1d565b6107d1565b3480156102f157600080fd5b50610206600b5481565b34801561030757600080fd5b5061028e610867565b34801561031c57600080fd5b5061028e6108a5565b34801561033157600080fd5b5061028e610340366004611e2f565b610902565b34801561035157600080fd5b5061028e61091d565b34801561036657600080fd5b50610206610375366004611fc4565b610a57565b61028e610388366004611fc4565b610af8565b34801561039957600080fd5b5061028e6103a8366004611f7e565b610d9b565b3480156103b957600080fd5b506102566103c8366004611fc4565b610dd8565b3480156103d957600080fd5b5061020666f8b0a10e47000081565b3480156103f457600080fd5b50610206610403366004611de3565b610e4f565b34801561041457600080fd5b5061028e610ed6565b34801561042957600080fd5b50600a546001600160a01b0316610256565b34801561044757600080fd5b50610229610f4a565b34801561045c57600080fd5b5061028e61046b366004611ee3565b610f59565b34801561047c57600080fd5b5061028e61048b366004611e6a565b61101e565b34801561049c57600080fd5b506102296104ab366004611fc4565b611056565b3480156104bc57600080fd5b506101dc6104cb366004611dfd565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561050557600080fd5b50600c546101dc9060ff1681565b34801561051f57600080fd5b5061028e61052e366004611de3565b6111d8565b60006001600160e01b0319821663780e9d6360e01b14806105585750610558826112c3565b92915050565b60606000805461056d906121ed565b80601f0160208091040260200160405190810160405280929190818152602001828054610599906121ed565b80156105e65780601f106105bb576101008083540402835291602001916105e6565b820191906000526020600020905b8154815290600101906020018083116105c957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661066e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061069582610dd8565b9050806001600160a01b0316836001600160a01b031614156107035760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610665565b336001600160a01b038216148061071f575061071f81336104cb565b6107915760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610665565b61079b8383611313565b505050565b6107aa3382611381565b6107c65760405162461bcd60e51b81526004016106659061210e565b61079b838383611478565b60006107dc83610e4f565b821061083e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610665565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146108915760405162461bcd60e51b8152600401610665906120d9565b600c805460ff19811660ff90911615179055565b600a546001600160a01b031633146108cf5760405162461bcd60e51b8152600401610665906120d9565b6040514790339082156108fc029083906000818181858888f193505050501580156108fe573d6000803e3d6000fd5b5050565b61079b8383836040518060200160405280600081525061101e565b336000908152600f602052604090205460ff16156109725760405162461bcd60e51b815260206004820152601260248201527143616e206f6e6c79206d696e74206f6e636560701b6044820152606401610665565b336000908152600f60205260409020805460ff19166001179055600c5460ff166109de5760405162461bcd60e51b815260206004820181905260248201527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e746044820152606401610665565b600b546109f560016109ef60085490565b90611623565b1115610a435760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152606401610665565b610a5533610a5060085490565b611636565b565b6000610a6260085490565b8210610ac55760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610665565b60088281548110610ae657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b33600090815260106020526040902054601490610b159083611623565b1115610b6e5760405162461bcd60e51b815260206004820152602260248201527f43616e206f6e6c79206d696e7420757020746f20323020706572206164647265604482015261737360f01b6064820152608401610665565b600c5460ff16610bc05760405162461bcd60e51b815260206004820181905260248201527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e746044820152606401610665565b60008111610c2c5760405162461bcd60e51b815260206004820152603360248201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c6573736044820152720207468616e206f7220657175616c20746f203606c1b6064820152608401610665565b600b54610c3c826109ef60085490565b1115610c8a5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152606401610665565b6014811115610ce75760405162461bcd60e51b815260206004820152602360248201527f43616e206f6e6c79206d696e7420757020746f2032302070657220707572636860448201526261736560e81b6064820152608401610665565b34610cf966f8b0a10e47000083611650565b14610d465760405162461bcd60e51b815260206004820152601d60248201527f53656e742065746865722076616c756520697320696e636f72726563740000006044820152606401610665565b33600090815260106020526040902054610d609082611623565b336000908152601060205260408120919091555b818110156108fe57610d8933610a5060085490565b80610d9381612228565b915050610d74565b600a546001600160a01b03163314610dc55760405162461bcd60e51b8152600401610665906120d9565b80516108fe90600d906020840190611cb8565b6000818152600260205260408120546001600160a01b0316806105585760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610665565b60006001600160a01b038216610eba5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610665565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f005760405162461bcd60e51b8152600401610665906120d9565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b60606001805461056d906121ed565b6001600160a01b038216331415610fb25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610665565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110283383611381565b6110445760405162461bcd60e51b81526004016106659061210e565b6110508484848461165c565b50505050565b6000818152600260205260409020546060906001600160a01b03166110d55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610665565b6000828152600e6020526040812080546110ee906121ed565b80601f016020809104026020016040519081016040528092919081815260200182805461111a906121ed565b80156111675780601f1061113c57610100808354040283529160200191611167565b820191906000526020600020905b81548152906001019060200180831161114a57829003601f168201915b50505050509050600061117861168f565b905080516000141561118b575092915050565b8151156111bd5780826040516020016111a5929190612008565b60405160208183030381529060405292505050919050565b806111c78561169e565b6040516020016111a5929190612008565b600a546001600160a01b031633146112025760405162461bcd60e51b8152600401610665906120d9565b6001600160a01b0381166112675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610665565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806112f457506001600160e01b03198216635b5e139f60e01b145b8061055857506301ffc9a760e01b6001600160e01b0319831614610558565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061134882610dd8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113fa5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610665565b600061140583610dd8565b9050806001600160a01b0316846001600160a01b031614806114405750836001600160a01b0316611435846105f0565b6001600160a01b0316145b8061147057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661148b82610dd8565b6001600160a01b0316146114f35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610665565b6001600160a01b0382166115555760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610665565b6115608383836117b8565b61156b600082611313565b6001600160a01b03831660009081526003602052604081208054600192906115949084906121aa565b90915550506001600160a01b03821660009081526003602052604081208054600192906115c290849061215f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061162f828461215f565b9392505050565b6108fe828260405180602001604052806000815250611870565b600061162f828461218b565b611667848484611478565b611673848484846118a3565b6110505760405162461bcd60e51b815260040161066590612087565b6060600d805461056d906121ed565b6060816116c25750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116ec57806116d681612228565b91506116e59050600a83612177565b91506116c6565b60008167ffffffffffffffff81111561171557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561173f576020820181803683370190505b5090505b8415611470576117546001836121aa565b9150611761600a86612243565b61176c90603061215f565b60f81b81838151811061178f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506117b1600a86612177565b9450611743565b6001600160a01b0383166118135761180e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611836565b816001600160a01b0316836001600160a01b0316146118365761183683826119b0565b6001600160a01b03821661184d5761079b81611a4d565b826001600160a01b0316826001600160a01b03161461079b5761079b8282611b26565b61187a8383611b6a565b61188760008484846118a3565b61079b5760405162461bcd60e51b815260040161066590612087565b60006001600160a01b0384163b156119a557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118e7903390899088908890600401612037565b602060405180830381600087803b15801561190157600080fd5b505af1925050508015611931575060408051601f3d908101601f1916820190925261192e91810190611f62565b60015b61198b573d80801561195f576040519150601f19603f3d011682016040523d82523d6000602084013e611964565b606091505b5080516119835760405162461bcd60e51b815260040161066590612087565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611470565b506001949350505050565b600060016119bd84610e4f565b6119c791906121aa565b600083815260076020526040902054909150808214611a1a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a5f906001906121aa565b60008381526009602052604081205460088054939450909284908110611a9557634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611ac457634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b0a57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611b3183610e4f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611bc05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610665565b6000818152600260205260409020546001600160a01b031615611c255760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610665565b611c31600083836117b8565b6001600160a01b0382166000908152600360205260408120805460019290611c5a90849061215f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611cc4906121ed565b90600052602060002090601f016020900481019282611ce65760008555611d2c565b82601f10611cff57805160ff1916838001178555611d2c565b82800160010185558215611d2c579182015b82811115611d2c578251825591602001919060010190611d11565b50611d38929150611d3c565b5090565b5b80821115611d385760008155600101611d3d565b600067ffffffffffffffff80841115611d6c57611d6c612283565b604051601f8501601f19908116603f01168101908282118183101715611d9457611d94612283565b81604052809350858152868686011115611dad57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611dde57600080fd5b919050565b600060208284031215611df4578081fd5b61162f82611dc7565b60008060408385031215611e0f578081fd5b611e1883611dc7565b9150611e2660208401611dc7565b90509250929050565b600080600060608486031215611e43578081fd5b611e4c84611dc7565b9250611e5a60208501611dc7565b9150604084013590509250925092565b60008060008060808587031215611e7f578081fd5b611e8885611dc7565b9350611e9660208601611dc7565b925060408501359150606085013567ffffffffffffffff811115611eb8578182fd5b8501601f81018713611ec8578182fd5b611ed787823560208401611d51565b91505092959194509250565b60008060408385031215611ef5578182fd5b611efe83611dc7565b915060208301358015158114611f12578182fd5b809150509250929050565b60008060408385031215611f2f578182fd5b611f3883611dc7565b946020939093013593505050565b600060208284031215611f57578081fd5b813561162f81612299565b600060208284031215611f73578081fd5b815161162f81612299565b600060208284031215611f8f578081fd5b813567ffffffffffffffff811115611fa5578182fd5b8201601f81018413611fb5578182fd5b61147084823560208401611d51565b600060208284031215611fd5578081fd5b5035919050565b60008151808452611ff48160208601602086016121c1565b601f01601f19169290920160200192915050565b6000835161201a8184602088016121c1565b83519083019061202e8183602088016121c1565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061206a90830184611fdc565b9695505050505050565b60208152600061162f6020830184611fdc565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561217257612172612257565b500190565b6000826121865761218661226d565b500490565b60008160001904831182151516156121a5576121a5612257565b500290565b6000828210156121bc576121bc612257565b500390565b60005b838110156121dc5781810151838201526020016121c4565b838111156110505750506000910152565b600181811c9082168061220157607f821691505b6020821081141561222257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561223c5761223c612257565b5060010190565b6000826122525761225261226d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146122af57600080fd5b5056fea26469706673582212201fb915ef1b72db405b892deebf85f24b2cb960783c74ad686753489a415279f864736f6c63430008040033

Deployed Bytecode Sourcemap

49776:3214:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43601:224;;;;;;;;;;-1:-1:-1;43601:224:0;;;;;:::i;:::-;;:::i;:::-;;;5796:14:1;;5789:22;5771:41;;5759:2;5744:18;43601:224:0;;;;;;;;50010:42;;;;;;;;;;;;50050:2;50010:42;;;;;16054:25:1;;;16042:2;16027:18;50010:42:0;16009:76:1;31579:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33027:221::-;;;;;;;;;;-1:-1:-1;33027:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5094:32:1;;;5076:51;;5064:2;5049:18;33027:221:0;5031:102:1;32550:411:0;;;;;;;;;;-1:-1:-1;32550:411:0;;;;;:::i;:::-;;:::i;:::-;;44241:113;;;;;;;;;;-1:-1:-1;44329:10:0;:17;44241:113;;33917:339;;;;;;;;;;-1:-1:-1;33917:339:0;;;;;:::i;:::-;;:::i;43909:256::-;;;;;;;;;;-1:-1:-1;43909:256:0;;;;;:::i;:::-;;:::i;50059:33::-;;;;;;;;;;;;;;;;50520:89;;;;;;;;;;;;;:::i;50617:143::-;;;;;;;;;;;;;:::i;34327:185::-;;;;;;;;;;-1:-1:-1;34327:185:0;;;;;:::i;:::-;;:::i;51603:262::-;;;;;;;;;;;;;:::i;44431:233::-;;;;;;;;;;-1:-1:-1;44431:233:0;;;;;:::i;:::-;;:::i;50770:825::-;;;;;;:::i;:::-;;:::i;52077:109::-;;;;;;;;;;-1:-1:-1;52077:109:0;;;;;:::i;:::-;;:::i;31273:239::-;;;;;;;;;;-1:-1:-1;31273:239:0;;;;;:::i;:::-;;:::i;49938:53::-;;;;;;;;;;;;49974:17;49938:53;;31003:208;;;;;;;;;;-1:-1:-1;31003:208:0;;;;;:::i;:::-;;:::i;28826:148::-;;;;;;;;;;;;;:::i;28175:87::-;;;;;;;;;;-1:-1:-1;28248:6:0;;-1:-1:-1;;;;;28248:6:0;28175:87;;31748:104;;;;;;;;;;;;;:::i;33320:295::-;;;;;;;;;;-1:-1:-1;33320:295:0;;;;;:::i;:::-;;:::i;34583:328::-;;;;;;;;;;-1:-1:-1;34583:328:0;;;;;:::i;:::-;;:::i;52194:793::-;;;;;;;;;;-1:-1:-1;52194:793:0;;;;;:::i;:::-;;:::i;33686:164::-;;;;;;;;;;-1:-1:-1;33686:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33807:25:0;;;33783:4;33807:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33686:164;50099:32;;;;;;;;;;-1:-1:-1;50099:32:0;;;;;;;;29129:244;;;;;;;;;;-1:-1:-1;29129:244:0;;;;;:::i;:::-;;:::i;43601:224::-;43703:4;-1:-1:-1;;;;;;43727:50:0;;-1:-1:-1;;;43727:50:0;;:90;;;43781:36;43805:11;43781:23;:36::i;:::-;43720:97;43601:224;-1:-1:-1;;43601:224:0:o;31579:100::-;31633:13;31666:5;31659:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31579:100;:::o;33027:221::-;33103:7;36510:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36510:16:0;33123:73;;;;-1:-1:-1;;;33123:73:0;;12569:2:1;33123:73:0;;;12551:21:1;12608:2;12588:18;;;12581:30;12647:34;12627:18;;;12620:62;-1:-1:-1;;;12698:18:1;;;12691:42;12750:19;;33123:73:0;;;;;;;;;-1:-1:-1;33216:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33216:24:0;;33027:221::o;32550:411::-;32631:13;32647:23;32662:7;32647:14;:23::i;:::-;32631:39;;32695:5;-1:-1:-1;;;;;32689:11:0;:2;-1:-1:-1;;;;;32689:11:0;;;32681:57;;;;-1:-1:-1;;;32681:57:0;;14169:2:1;32681:57:0;;;14151:21:1;14208:2;14188:18;;;14181:30;14247:34;14227:18;;;14220:62;-1:-1:-1;;;14298:18:1;;;14291:31;14339:19;;32681:57:0;14141:223:1;32681:57:0;26873:10;-1:-1:-1;;;;;32773:21:0;;;;:62;;-1:-1:-1;32798:37:0;32815:5;26873:10;33686:164;:::i;32798:37::-;32751:168;;;;-1:-1:-1;;;32751:168:0;;10243:2:1;32751:168:0;;;10225:21:1;10282:2;10262:18;;;10255:30;10321:34;10301:18;;;10294:62;10392:26;10372:18;;;10365:54;10436:19;;32751:168:0;10215:246:1;32751:168:0;32932:21;32941:2;32945:7;32932:8;:21::i;:::-;32550:411;;;:::o;33917:339::-;34112:41;26873:10;34145:7;34112:18;:41::i;:::-;34104:103;;;;-1:-1:-1;;;34104:103:0;;;;;;;:::i;:::-;34220:28;34230:4;34236:2;34240:7;34220:9;:28::i;43909:256::-;44006:7;44042:23;44059:5;44042:16;:23::i;:::-;44034:5;:31;44026:87;;;;-1:-1:-1;;;44026:87:0;;7072:2:1;44026:87:0;;;7054:21:1;7111:2;7091:18;;;7084:30;7150:34;7130:18;;;7123:62;-1:-1:-1;;;7201:18:1;;;7194:41;7252:19;;44026:87:0;7044:233:1;44026:87:0;-1:-1:-1;;;;;;44131:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;43909:256::o;50520:89::-;28248:6;;-1:-1:-1;;;;;28248:6:0;26873:10;28395:23;28387:68;;;;-1:-1:-1;;;28387:68:0;;;;;;;:::i;:::-;50589:12:::1;::::0;;-1:-1:-1;;50573:28:0;::::1;50589:12;::::0;;::::1;50588:13;50573:28;::::0;;50520:89::o;50617:143::-;28248:6;;-1:-1:-1;;;;;28248:6:0;26873:10;28395:23;28387:68;;;;-1:-1:-1;;;28387:68:0;;;;;;;:::i;:::-;50715:37:::1;::::0;50683:21:::1;::::0;50723:10:::1;::::0;50715:37;::::1;;;::::0;50683:21;;50665:15:::1;50715:37:::0;50665:15;50715:37;50683:21;50723:10;50715:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;28466:1;50617:143::o:0;34327:185::-;34465:39;34482:4;34488:2;34492:7;34465:39;;;;;;;;;;;;:16;:39::i;51603:262::-;26873:10;50350:20;;;;:6;:20;;;;;;;;50349:21;50341:52;;;;-1:-1:-1;;;50341:52:0;;14571:2:1;50341:52:0;;;14553:21:1;14610:2;14590:18;;;14583:30;-1:-1:-1;;;14629:18:1;;;14622:48;14687:18;;50341:52:0;14543:168:1;50341:52:0;26873:10;50404:20;;;;:6;:20;;;;;:27;;-1:-1:-1;;50404:27:0;50427:4;50404:27;;;51671:12:::1;::::0;50404:27;51671:12:::1;51663:57;;;::::0;-1:-1:-1;;;51663:57:0;;15749:2:1;51663:57:0::1;::::0;::::1;15731:21:1::0;;;15768:18;;;15761:30;15827:34;15807:18;;;15800:62;15879:18;;51663:57:0::1;15721:182:1::0;51663:57:0::1;51763:10;;51739:20;51757:1;51739:13;44329:10:::0;:17;;44241:113;51739:13:::1;:17:::0;::::1;:20::i;:::-;:34;;51731:79;;;::::0;-1:-1:-1;;;51731:79:0;;11847:2:1;51731:79:0::1;::::0;::::1;11829:21:1::0;;;11866:18;;;11859:30;11925:34;11905:18;;;11898:62;11977:18;;51731:79:0::1;11819:182:1::0;51731:79:0::1;51821:36;51831:10;51843:13;44329:10:::0;:17;;44241:113;51843:13:::1;51821:9;:36::i;:::-;51603:262::o:0;44431:233::-;44506:7;44542:30;44329:10;:17;;44241:113;44542:30;44534:5;:38;44526:95;;;;-1:-1:-1;;;44526:95:0;;15336:2:1;44526:95:0;;;15318:21:1;15375:2;15355:18;;;15348:30;15414:34;15394:18;;;15387:62;-1:-1:-1;;;15465:18:1;;;15458:42;15517:19;;44526:95:0;15308:234:1;44526:95:0;44639:10;44650:5;44639:17;;;;;;-1:-1:-1;;;44639:17:0;;;;;;;;;;;;;;;;;44632:24;;44431:233;;;:::o;50770:825::-;50855:10;50845:21;;;;:9;:21;;;;;;50050:2;;50845:41;;50871:14;50845:25;:41::i;:::-;:61;;50837:108;;;;-1:-1:-1;;;50837:108:0;;6249:2:1;50837:108:0;;;6231:21:1;6288:2;6268:18;;;6261:30;6327:34;6307:18;;;6300:62;-1:-1:-1;;;6378:18:1;;;6371:32;6420:19;;50837:108:0;6221:224:1;50837:108:0;50964:12;;;;50956:57;;;;-1:-1:-1;;;50956:57:0;;15749:2:1;50956:57:0;;;15731:21:1;;;15768:18;;;15761:30;15827:34;15807:18;;;15800:62;15879:18;;50956:57:0;15721:182:1;50956:57:0;51049:1;51032:14;:18;51024:82;;;;-1:-1:-1;;;51024:82:0;;6652:2:1;51024:82:0;;;6634:21:1;6691:2;6671:18;;;6664:30;6730:34;6710:18;;;6703:62;-1:-1:-1;;;6781:18:1;;;6774:49;6840:19;;51024:82:0;6624:241:1;51024:82:0;51162:10;;51125:33;51143:14;51125:13;44329:10;:17;;44241:113;51125:33;:47;;51117:92;;;;-1:-1:-1;;;51117:92:0;;11847:2:1;51117:92:0;;;11829:21:1;;;11866:18;;;11859:30;11925:34;11905:18;;;11898:62;11977:18;;51117:92:0;11819:182:1;51117:92:0;50050:2;51228:14;:34;;51220:81;;;;-1:-1:-1;;;51220:81:0;;9839:2:1;51220:81:0;;;9821:21:1;9878:2;9858:18;;;9851:30;9917:34;9897:18;;;9890:62;-1:-1:-1;;;9968:18:1;;;9961:33;10011:19;;51220:81:0;9811:225:1;51220:81:0;51353:9;51320:29;49974:17;51334:14;51320:13;:29::i;:::-;:42;51312:84;;;;-1:-1:-1;;;51312:84:0;;11489:2:1;51312:84:0;;;11471:21:1;11528:2;11508:18;;;11501:30;11567:31;11547:18;;;11540:59;11616:18;;51312:84:0;11461:179:1;51312:84:0;51441:10;51431:21;;;;:9;:21;;;;;;:41;;51457:14;51431:25;:41::i;:::-;51417:10;51407:21;;;;:9;:21;;;;;:65;;;;51483:105;51504:14;51500:1;:18;51483:105;;;51540:36;51550:10;51562:13;44329:10;:17;;44241:113;51540:36;51520:3;;;;:::i;:::-;;;;51483:105;;52077:109;28248:6;;-1:-1:-1;;;;;28248:6:0;26873:10;28395:23;28387:68;;;;-1:-1:-1;;;28387:68:0;;;;;;;:::i;:::-;52151:27;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;31273:239::-:0;31345:7;31381:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31381:16:0;31416:19;31408:73;;;;-1:-1:-1;;;31408:73:0;;11079:2:1;31408:73:0;;;11061:21:1;11118:2;11098:18;;;11091:30;11157:34;11137:18;;;11130:62;-1:-1:-1;;;11208:18:1;;;11201:39;11257:19;;31408:73:0;11051:231:1;31003:208:0;31075:7;-1:-1:-1;;;;;31103:19:0;;31095:74;;;;-1:-1:-1;;;31095:74:0;;10668:2:1;31095:74:0;;;10650:21:1;10707:2;10687:18;;;10680:30;10746:34;10726:18;;;10719:62;-1:-1:-1;;;10797:18:1;;;10790:40;10847:19;;31095:74:0;10640:232:1;31095:74:0;-1:-1:-1;;;;;;31187:16:0;;;;;:9;:16;;;;;;;31003:208::o;28826:148::-;28248:6;;-1:-1:-1;;;;;28248:6:0;26873:10;28395:23;28387:68;;;;-1:-1:-1;;;28387:68:0;;;;;;;:::i;:::-;28917:6:::1;::::0;28896:40:::1;::::0;28933:1:::1;::::0;-1:-1:-1;;;;;28917:6:0::1;::::0;28896:40:::1;::::0;28933:1;;28896:40:::1;28947:6;:19:::0;;-1:-1:-1;;;;;;28947:19:0::1;::::0;;28826:148::o;31748:104::-;31804:13;31837:7;31830:14;;;;;:::i;33320:295::-;-1:-1:-1;;;;;33423:24:0;;26873:10;33423:24;;33415:62;;;;-1:-1:-1;;;33415:62:0;;9072:2:1;33415:62:0;;;9054:21:1;9111:2;9091:18;;;9084:30;9150:27;9130:18;;;9123:55;9195:18;;33415:62:0;9044:175:1;33415:62:0;26873:10;33490:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33490:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33490:53:0;;;;;;;;;;33559:48;;5771:41:1;;;33490:42:0;;26873:10;33559:48;;5744:18:1;33559:48:0;;;;;;;33320:295;;:::o;34583:328::-;34758:41;26873:10;34791:7;34758:18;:41::i;:::-;34750:103;;;;-1:-1:-1;;;34750:103:0;;;;;;;:::i;:::-;34864:39;34878:4;34884:2;34888:7;34897:5;34864:13;:39::i;:::-;34583:328;;;;:::o;52194:793::-;36486:4;36510:16;;;:7;:16;;;;;;52267:13;;-1:-1:-1;;;;;36510:16:0;52293:76;;;;-1:-1:-1;;;52293:76:0;;13753:2:1;52293:76:0;;;13735:21:1;13792:2;13772:18;;;13765:30;13831:34;13811:18;;;13804:62;-1:-1:-1;;;13882:18:1;;;13875:45;13937:19;;52293:76:0;13725:237:1;52293:76:0;52382:23;52408:19;;;:10;:19;;;;;52382:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52438:18;52459:10;:8;:10::i;:::-;52438:31;;52551:4;52545:18;52567:1;52545:23;52541:72;;;-1:-1:-1;52592:9:0;52194:793;-1:-1:-1;;52194:793:0:o;52541:72::-;52717:23;;:27;52713:108;;52792:4;52798:9;52775:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52761:48;;;;52194:793;;;:::o;52713:108::-;52953:4;52959:18;:7;:16;:18::i;:::-;52936:42;;;;;;;;;:::i;29129:244::-;28248:6;;-1:-1:-1;;;;;28248:6:0;26873:10;28395:23;28387:68;;;;-1:-1:-1;;;28387:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29218:22:0;::::1;29210:73;;;::::0;-1:-1:-1;;;29210:73:0;;7903:2:1;29210:73:0::1;::::0;::::1;7885:21:1::0;7942:2;7922:18;;;7915:30;7981:34;7961:18;;;7954:62;-1:-1:-1;;;8032:18:1;;;8025:36;8078:19;;29210:73:0::1;7875:228:1::0;29210:73:0::1;29320:6;::::0;29299:38:::1;::::0;-1:-1:-1;;;;;29299:38:0;;::::1;::::0;29320:6:::1;::::0;29299:38:::1;::::0;29320:6:::1;::::0;29299:38:::1;29348:6;:17:::0;;-1:-1:-1;;;;;;29348:17:0::1;-1:-1:-1::0;;;;;29348:17:0;;;::::1;::::0;;;::::1;::::0;;29129:244::o;30634:305::-;30736:4;-1:-1:-1;;;;;;30773:40:0;;-1:-1:-1;;;30773:40:0;;:105;;-1:-1:-1;;;;;;;30830:48:0;;-1:-1:-1;;;30830:48:0;30773:105;:158;;;-1:-1:-1;;;;;;;;;;19888:40:0;;;30895:36;19779:157;40403:174;40478:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;40478:29:0;-1:-1:-1;;;;;40478:29:0;;;;;;;;:24;;40532:23;40478:24;40532:14;:23::i;:::-;-1:-1:-1;;;;;40523:46:0;;;;;;;;;;;40403:174;;:::o;36715:348::-;36808:4;36510:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36510:16:0;36825:73;;;;-1:-1:-1;;;36825:73:0;;9426:2:1;36825:73:0;;;9408:21:1;9465:2;9445:18;;;9438:30;9504:34;9484:18;;;9477:62;-1:-1:-1;;;9555:18:1;;;9548:42;9607:19;;36825:73:0;9398:234:1;36825:73:0;36909:13;36925:23;36940:7;36925:14;:23::i;:::-;36909:39;;36978:5;-1:-1:-1;;;;;36967:16:0;:7;-1:-1:-1;;;;;36967:16:0;;:51;;;;37011:7;-1:-1:-1;;;;;36987:31:0;:20;36999:7;36987:11;:20::i;:::-;-1:-1:-1;;;;;36987:31:0;;36967:51;:87;;;-1:-1:-1;;;;;;33807:25:0;;;33783:4;33807:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;37022:32;36959:96;36715:348;-1:-1:-1;;;;36715:348:0:o;39707:578::-;39866:4;-1:-1:-1;;;;;39839:31:0;:23;39854:7;39839:14;:23::i;:::-;-1:-1:-1;;;;;39839:31:0;;39831:85;;;;-1:-1:-1;;;39831:85:0;;13343:2:1;39831:85:0;;;13325:21:1;13382:2;13362:18;;;13355:30;13421:34;13401:18;;;13394:62;-1:-1:-1;;;13472:18:1;;;13465:39;13521:19;;39831:85:0;13315:231:1;39831:85:0;-1:-1:-1;;;;;39935:16:0;;39927:65;;;;-1:-1:-1;;;39927:65:0;;8667:2:1;39927:65:0;;;8649:21:1;8706:2;8686:18;;;8679:30;8745:34;8725:18;;;8718:62;-1:-1:-1;;;8796:18:1;;;8789:34;8840:19;;39927:65:0;8639:226:1;39927:65:0;40005:39;40026:4;40032:2;40036:7;40005:20;:39::i;:::-;40109:29;40126:1;40130:7;40109:8;:29::i;:::-;-1:-1:-1;;;;;40151:15:0;;;;;;:9;:15;;;;;:20;;40170:1;;40151:15;:20;;40170:1;;40151:20;:::i;:::-;;;;-1:-1:-1;;;;;;;40182:13:0;;;;;;:9;:13;;;;;:18;;40199:1;;40182:13;:18;;40199:1;;40182:18;:::i;:::-;;;;-1:-1:-1;;40211:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40211:21:0;-1:-1:-1;;;;;40211:21:0;;;;;;;;;40250:27;;40211:16;;40250:27;;;;;;;39707:578;;;:::o;2791:98::-;2849:7;2876:5;2880:1;2876;:5;:::i;:::-;2869:12;2791:98;-1:-1:-1;;;2791:98:0:o;37405:110::-;37481:26;37491:2;37495:7;37481:26;;;;;;;;;;;;:9;:26::i;3529:98::-;3587:7;3614:5;3618:1;3614;:5;:::i;35793:315::-;35950:28;35960:4;35966:2;35970:7;35950:9;:28::i;:::-;35997:48;36020:4;36026:2;36030:7;36039:5;35997:22;:48::i;:::-;35989:111;;;;-1:-1:-1;;;35989:111:0;;;;;;;:::i;51873:117::-;51933:13;51966:16;51959:23;;;;;:::i;7432:723::-;7488:13;7709:10;7705:53;;-1:-1:-1;;7736:10:0;;;;;;;;;;;;-1:-1:-1;;;7736:10:0;;;;;7432:723::o;7705:53::-;7783:5;7768:12;7824:78;7831:9;;7824:78;;7857:8;;;;:::i;:::-;;-1:-1:-1;7880:10:0;;-1:-1:-1;7888:2:0;7880:10;;:::i;:::-;;;7824:78;;;7912:19;7944:6;7934:17;;;;;;-1:-1:-1;;;7934:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7934:17:0;;7912:39;;7962:154;7969:10;;7962:154;;7996:11;8006:1;7996:11;;:::i;:::-;;-1:-1:-1;8065:10:0;8073:2;8065:5;:10;:::i;:::-;8052:24;;:2;:24;:::i;:::-;8039:39;;8022:6;8029;8022:14;;;;;;-1:-1:-1;;;8022:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;8022:56:0;;;;;;;;-1:-1:-1;8093:11:0;8102:2;8093:11;;:::i;:::-;;;7962:154;;45277:589;-1:-1:-1;;;;;45483:18:0;;45479:187;;45518:40;45550:7;46693:10;:17;;46666:24;;;;:15;:24;;;;;:44;;;46721:24;;;;;;;;;;;;46589:164;45518:40;45479:187;;;45588:2;-1:-1:-1;;;;;45580:10:0;:4;-1:-1:-1;;;;;45580:10:0;;45576:90;;45607:47;45640:4;45646:7;45607:32;:47::i;:::-;-1:-1:-1;;;;;45680:16:0;;45676:183;;45713:45;45750:7;45713:36;:45::i;45676:183::-;45786:4;-1:-1:-1;;;;;45780:10:0;:2;-1:-1:-1;;;;;45780:10:0;;45776:83;;45807:40;45835:2;45839:7;45807:27;:40::i;37742:321::-;37872:18;37878:2;37882:7;37872:5;:18::i;:::-;37923:54;37954:1;37958:2;37962:7;37971:5;37923:22;:54::i;:::-;37901:154;;;;-1:-1:-1;;;37901:154:0;;;;;;;:::i;41142:872::-;41297:4;-1:-1:-1;;;;;41318:13:0;;10275:20;10323:8;41314:693;;41354:72;;-1:-1:-1;;;41354:72:0;;-1:-1:-1;;;;;41354:36:0;;;;;:72;;26873:10;;41405:4;;41411:7;;41420:5;;41354:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41354:72:0;;;;;;;;-1:-1:-1;;41354:72:0;;;;;;;;;;;;:::i;:::-;;;41350:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41600:13:0;;41596:341;;41643:60;;-1:-1:-1;;;41643:60:0;;;;;;;:::i;41596:341::-;41887:6;41881:13;41872:6;41868:2;41864:15;41857:38;41350:602;-1:-1:-1;;;;;;41477:55:0;-1:-1:-1;;;41477:55:0;;-1:-1:-1;41470:62:0;;41314:693;-1:-1:-1;41991:4:0;41142:872;;;;;;:::o;47380:988::-;47646:22;47696:1;47671:22;47688:4;47671:16;:22::i;:::-;:26;;;;:::i;:::-;47708:18;47729:26;;;:17;:26;;;;;;47646:51;;-1:-1:-1;47862:28:0;;;47858:328;;-1:-1:-1;;;;;47929:18:0;;47907:19;47929:18;;;:12;:18;;;;;;;;:34;;;;;;;;;47980:30;;;;;;:44;;;48097:30;;:17;:30;;;;;:43;;;47858:328;-1:-1:-1;48282:26:0;;;;:17;:26;;;;;;;;48275:33;;;-1:-1:-1;;;;;48326:18:0;;;;;:12;:18;;;;;:34;;;;;;;48319:41;47380:988::o;48663:1079::-;48941:10;:17;48916:22;;48941:21;;48961:1;;48941:21;:::i;:::-;48973:18;48994:24;;;:15;:24;;;;;;49367:10;:26;;48916:46;;-1:-1:-1;48994:24:0;;48916:46;;49367:26;;;;-1:-1:-1;;;49367:26:0;;;;;;;;;;;;;;;;;49345:48;;49431:11;49406:10;49417;49406:22;;;;;;-1:-1:-1;;;49406:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;49511:28;;;:15;:28;;;;;;;:41;;;49683:24;;;;;49676:31;49718:10;:16;;;;;-1:-1:-1;;;49718:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;48663:1079;;;;:::o;46167:221::-;46252:14;46269:20;46286:2;46269:16;:20::i;:::-;-1:-1:-1;;;;;46300:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;46345:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;46167:221:0:o;38399:382::-;-1:-1:-1;;;;;38479:16:0;;38471:61;;;;-1:-1:-1;;;38471:61:0;;12208:2:1;38471:61:0;;;12190:21:1;;;12227:18;;;12220:30;12286:34;12266:18;;;12259:62;12338:18;;38471:61:0;12180:182:1;38471:61:0;36486:4;36510:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36510:16:0;:30;38543:58;;;;-1:-1:-1;;;38543:58:0;;8310:2:1;38543:58:0;;;8292:21:1;8349:2;8329:18;;;8322:30;8388;8368:18;;;8361:58;8436:18;;38543:58:0;8282:178:1;38543:58:0;38614:45;38643:1;38647:2;38651:7;38614:20;:45::i;:::-;-1:-1:-1;;;;;38672:13:0;;;;;;:9;:13;;;;;:18;;38689:1;;38672:13;:18;;38689:1;;38672:18;:::i;:::-;;;;-1:-1:-1;;38701:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38701:21:0;-1:-1:-1;;;;;38701:21:0;;;;;;;;38740:33;;38701:16;;;38740:33;;38701:16;;38740:33;38399:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;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:2;;;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:2;;;532:1;529;522:12;491:2;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;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:196::-;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;1029:270::-;1097:6;1105;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;1381:6;1389;1397;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;1742:6;1750;1758;1766;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;2084:18;2076:6;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:1;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:367::-;2413:6;2421;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2649:5;2642:13;2635:21;2628:5;2625:32;2615:2;;2676:6;2668;2661:22;2615:2;2704:5;2694:15;;;2432:283;;;;;:::o;2720:264::-;2788:6;2796;2849:2;2837:9;2828:7;2824:23;2820:32;2817:2;;;2870:6;2862;2855:22;2817:2;2898:29;2917:9;2898:29;:::i;:::-;2888:39;2974:2;2959:18;;;;2946:32;;-1:-1:-1;;;2807:177:1:o;2989:255::-;3047:6;3100:2;3088:9;3079:7;3075:23;3071:32;3068:2;;;3121:6;3113;3106:22;3068:2;3165:9;3152:23;3184:30;3208:5;3184:30;:::i;3249:259::-;3318:6;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:30;3472:5;3448:30;:::i;3513:480::-;3582:6;3635:2;3623:9;3614:7;3610:23;3606:32;3603:2;;;3656:6;3648;3641:22;3603:2;3701:9;3688:23;3734:18;3726:6;3723:30;3720:2;;;3771:6;3763;3756:22;3720:2;3799:22;;3852:4;3844:13;;3840:27;-1:-1:-1;3830:2:1;;3886:6;3878;3871:22;3830:2;3914:73;3979:7;3974:2;3961:16;3956:2;3952;3948:11;3914:73;:::i;3998:190::-;4057:6;4110:2;4098:9;4089:7;4085:23;4081:32;4078:2;;;4131:6;4123;4116:22;4078:2;-1:-1:-1;4159:23:1;;4068:120;-1:-1:-1;4068:120:1:o;4193:257::-;4234:3;4272:5;4266:12;4299:6;4294:3;4287:19;4315:63;4371:6;4364:4;4359:3;4355:14;4348:4;4341:5;4337:16;4315:63;:::i;:::-;4432:2;4411:15;-1:-1:-1;;4407:29:1;4398:39;;;;4439:4;4394:50;;4242:208;-1:-1:-1;;4242:208:1:o;4455:470::-;4634:3;4672:6;4666:13;4688:53;4734:6;4729:3;4722:4;4714:6;4710:17;4688:53;:::i;:::-;4804:13;;4763:16;;;;4826:57;4804:13;4763:16;4860:4;4848:17;;4826:57;:::i;:::-;4899:20;;4642:283;-1:-1:-1;;;;4642:283:1:o;5138:488::-;-1:-1:-1;;;;;5407:15:1;;;5389:34;;5459:15;;5454:2;5439:18;;5432:43;5506:2;5491:18;;5484:34;;;5554:3;5549:2;5534:18;;5527:31;;;5332:4;;5575:45;;5600:19;;5592:6;5575:45;:::i;:::-;5567:53;5341:285;-1:-1:-1;;;;;;5341:285:1:o;5823:219::-;5972:2;5961:9;5954:21;5935:4;5992:44;6032:2;6021:9;6017:18;6009:6;5992:44;:::i;7282:414::-;7484:2;7466:21;;;7523:2;7503:18;;;7496:30;7562:34;7557:2;7542:18;;7535:62;-1:-1:-1;;;7628:2:1;7613:18;;7606:48;7686:3;7671:19;;7456:240::o;12780:356::-;12982:2;12964:21;;;13001:18;;;12994:30;13060:34;13055:2;13040:18;;13033:62;13127:2;13112:18;;12954:182::o;14716:413::-;14918:2;14900:21;;;14957:2;14937:18;;;14930:30;14996:34;14991:2;14976:18;;14969:62;-1:-1:-1;;;15062:2:1;15047:18;;15040:47;15119:3;15104:19;;14890:239::o;16090:128::-;16130:3;16161:1;16157:6;16154:1;16151:13;16148:2;;;16167:18;;:::i;:::-;-1:-1:-1;16203:9:1;;16138:80::o;16223:120::-;16263:1;16289;16279:2;;16294:18;;:::i;:::-;-1:-1:-1;16328:9:1;;16269:74::o;16348:168::-;16388:7;16454:1;16450;16446:6;16442:14;16439:1;16436:21;16431:1;16424:9;16417:17;16413:45;16410:2;;;16461:18;;:::i;:::-;-1:-1:-1;16501:9:1;;16400:116::o;16521:125::-;16561:4;16589:1;16586;16583:8;16580:2;;;16594:18;;:::i;:::-;-1:-1:-1;16631:9:1;;16570:76::o;16651:258::-;16723:1;16733:113;16747:6;16744:1;16741:13;16733:113;;;16823:11;;;16817:18;16804:11;;;16797:39;16769:2;16762:10;16733:113;;;16864:6;16861:1;16858:13;16855:2;;;-1:-1:-1;;16899:1:1;16881:16;;16874:27;16704:205::o;16914:380::-;16993:1;16989:12;;;;17036;;;17057:2;;17111:4;17103:6;17099:17;17089:27;;17057:2;17164;17156:6;17153:14;17133:18;17130:38;17127:2;;;17210:10;17205:3;17201:20;17198:1;17191:31;17245:4;17242:1;17235:15;17273:4;17270:1;17263:15;17127:2;;16969:325;;;:::o;17299:135::-;17338:3;-1:-1:-1;;17359:17:1;;17356:2;;;17379:18;;:::i;:::-;-1:-1:-1;17426:1:1;17415:13;;17346:88::o;17439:112::-;17471:1;17497;17487:2;;17502:18;;:::i;:::-;-1:-1:-1;17536:9:1;;17477:74::o;17556:127::-;17617:10;17612:3;17608:20;17605:1;17598:31;17648:4;17645:1;17638:15;17672:4;17669:1;17662:15;17688:127;17749:10;17744:3;17740:20;17737:1;17730:31;17780:4;17777:1;17770:15;17804:4;17801:1;17794:15;17820:127;17881:10;17876:3;17872:20;17869:1;17862:31;17912:4;17909:1;17902:15;17936:4;17933:1;17926:15;17952:131;-1:-1:-1;;;;;;18026:32:1;;18016:43;;18006:2;;18073:1;18070;18063:12;18006:2;17996:87;:::o

Swarm Source

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