ETH Price: $3,287.70 (-3.60%)
Gas: 14 Gwei

Token

The Poker Faces Club (TPFC)
 

Overview

Max Total Supply

193 TPFC

Holders

55

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
duday.eth
Balance
1 TPFC
0x5E6f7603BAbed10f0aE29666CeC2aea445cA752f
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:
ThePokerFacesClub

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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. 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 _HEX_SYMBOLS = "0123456789abcdef";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    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

                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) {
        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.
     */

    /**
     * @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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, 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;


    string public _baseURI;
    /**
     * @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 base = baseURI();
        return bytes(base).length > 0 ? string(abi.encodePacked(base, tokenId.toString())) : "";
    }

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

    /**
     * @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 {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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 ThePokerFacesClub  is ERC721Enumerable, Ownable
{
    using SafeMath for uint256;
    using Strings for uint256;

    uint private constant _TOTALSUPPLY = 4444;
    uint public team_nfts=350;
    uint public giveawayMint_supply=100;
    uint public privateSale_supply=444;

    uint public privateSale_price= 0.07 ether; 
    uint256 public publicSale_price = 0.09 ether;

    uint private tokenId=1;
    uint256 private __maxMintPerAddress=10;

    bool public giveawayMint_status = false;
    bool public privateSale_status = false;
    bool public publicSale_status = false;   
    bool public teamMintSale_status = false;   
    
    bool public _revelNFT = false;
    string private _uriBeforeRevel;

    mapping(address => bool) private __privatewhiteList;
    mapping(address => bool) private __teammember;
    mapping(address => bool) private __giveawaywhiteList;

    uint256 public team_counter=0;
    uint256 public giveaway_counter=0;
    uint256 public privateSale_counter=0;

    string private _contractURI="https://gateway.pinata.cloud/ipfs/QmcLnfcCBcD27hQaumUWMCGEUYoAscQvvPC8yn9HgdwaH6/contract%20level%20metadata.json/";

    constructor() ERC721("The Poker Faces Club", "TPFC")  {
        _uriBeforeRevel = "https://gateway.pinata.cloud/ipfs/QmSyeqxrCxGVFMDJUPDJtdhg3CnyFj3epxRBwkRWBi917c/";
        contractURI();
    }
    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseURI = baseURI;
    }

    function flipWLgiveaway() public onlyOwner{
        giveawayMint_status = !giveawayMint_status;
    }
    function flipWLprivateSale() public onlyOwner{
        privateSale_status = !privateSale_status;
    }
    function flipPublicSale() public onlyOwner{
        publicSale_status = !publicSale_status;
    }
    function flipTeamMint() public onlyOwner{
        teamMintSale_status = !teamMintSale_status;
    }


    function setPrice_privateSale(uint256 _newPrice) public onlyOwner() {
        privateSale_price = _newPrice;
    }
    function getPrice_privateSale(uint256 _quantity) public view returns (uint256) {
       
           return _quantity*privateSale_price;
    }


    function setPrice_public(uint256 _newPrice) public onlyOwner() {
        publicSale_price = _newPrice;
    }
    function getPrice_public(uint256 _quantity) public view returns (uint256) {
       
           return _quantity*publicSale_price;
    }

    modifier isSaleOpen{
        require(totalSupply() < _TOTALSUPPLY, "Sale end");
        _;
    }
    
    function contractURI() public view returns (string memory) {
        return _contractURI;
    }

    function tokenURI(uint256 tokenId) public
     view virtual override returns (string memory) 
    {
    require(_exists(tokenId)," URI query for nonexistent token");
    if(_revelNFT){
    string memory baseURI = _baseURI;
    return
      bytes(baseURI).length > 0
        ? string(abi.encodePacked(baseURI, tokenId.toString()))
        : "";
    } else{
      return _uriBeforeRevel;
    }
  }
 function changeRevelStatus() external onlyOwner {
    _revelNFT = !_revelNFT;
  }
    

    function giveawayMint(uint256 chosenAmount) public{
        require(balanceOf(_msgSender()) + chosenAmount < 2, "You can't Mint More than 1 nft");
        require(giveaway_counter <= 100, "Giveaway Minting Over");
        require(SingleWl_isWhiteListed(_msgSender()), "Not whitelisted");
        require(giveawayMint_status == true, "Sale is not active at the moment");
        require(chosenAmount > 0, "Amount is not valid");
        require(
            balanceOf(_msgSender()) < 1,
            "No more tokens for this address"
        );
        require(
            totalSupply() + chosenAmount <= _TOTALSUPPLY,
            "Mint requested more than max supply"
        );
        for (uint i = 0; i < chosenAmount; i++) {
            _safeMint(msg.sender, totalsupply());
            tokenId++;
            giveaway_counter++;
        }
    }

    function privateSale(uint256 chosenAmount) public payable{

        require(balanceOf(_msgSender()) + chosenAmount < 11, "You can't Mint More than 10 nfts");
        require(privateSale_counter <= 444, "Private Sale is Over");
        require(is_WLprivateSale(_msgSender()), "Not whitelisted");
        require(privateSale_status == true, "Sale is not active at the moment");
        require(chosenAmount > 0, "Amount is not valid");
        require(chosenAmount <= 10, "You can only mint 10");
        require(totalSupply() + team_nfts + giveawayMint_supply <= 894, "free sale is over");
        require(privateSale_price.mul(chosenAmount) == msg.value, "Sent ether value is incorrect");
        require(
            balanceOf(_msgSender()) < 10,
            "No more tokens for this address"
        );
        require(
            totalSupply() + chosenAmount <= _TOTALSUPPLY,
            "Mint requested more than max supply"
        );
        for (uint i = 0; i < chosenAmount; i++) {
            _safeMint(msg.sender, totalsupply());
            tokenId++;
            privateSale_counter++;
        }
    }

    function mint(uint chosenAmount) public payable{
        require(balanceOf(_msgSender()) + chosenAmount < 21, "You can't Mint More than 10 nfts");
        require(totalSupply()+chosenAmount<=_TOTALSUPPLY,"Quantity must be lesser then MaxSupply");
        require(publicSale_status == true, "Sale is not active at the moment");
        require(chosenAmount > 0, "Number of tokens can not be less than or equal to 0");
        require(chosenAmount <= 20, "Number of tokens can not be less than or equal to 0");
        require(publicSale_price.mul(chosenAmount) == msg.value, "Sent ether value is incorrect");
        require(
            balanceOf(_msgSender()) < 21,
            "No more tokens for this address"
        );
        require(
            balanceOf(_msgSender()) <= __maxMintPerAddress - chosenAmount,
            "No more tokens for this address"
        );
        for (uint i = 0; i < chosenAmount; i++) {
            _safeMint(msg.sender, totalsupply());
            tokenId++;
            }
    }

    function team_Mint(uint256 chosenAmount) public{
        require(balanceOf(_msgSender()) + chosenAmount < 101, "You can't Mint More than 100 nfts");
        require(team_counter <= 350, "No more quantity for Team Minting");
        require(isteamMember(_msgSender()), "Not team member");
        require(chosenAmount > 0, "Amount is not valid");
        require(
            balanceOf(_msgSender()) < 100,
            "No more tokens for this address"
        );
        require(
            totalSupply() + chosenAmount <= _TOTALSUPPLY,
            "Mint requested more than max supply"
        );
        for (uint i = 0; i < chosenAmount; i++) {
            _safeMint(msg.sender, totalsupply());
            tokenId++;
            team_counter++;

        }
    }


    function reserve_nfts(uint256 chosenAmount) public onlyOwner{
        for (uint i = 0; i < chosenAmount; i++) {
            _safeMint(msg.sender, totalsupply());
            tokenId++;
        }
    }

    function tokensOfOwner(address _owner) public view returns (uint256[] memory)
    {
        uint256 count = balanceOf(_owner);
        uint256[] memory result = new uint256[](count);
        for (uint256 index = 0; index < count; index++) {
            result[index] = tokenOfOwnerByIndex(_owner, index);
        }
        return result;
    }

    function isteamMember(address address_) public view returns (bool) {
        return __teammember[address_] == true;
    }
    function addteamMember(address address_) public onlyOwner {
        if (!isteamMember(address_)) {
            __teammember[address_] = true;
        }
    }
    function WLteamMint(address[] memory addresses_) public onlyOwner {
        uint256 length = addresses_.length;
        for (uint256 i = 0; i < length; i++) {
            if (!isteamMember(addresses_[i])) {
                __teammember[addresses_[i]] = true;
            }
        }
    }


    function is_WLprivateSale(address address_) public view returns (bool) {
        return __privatewhiteList[address_] == true;
    }

    function Single_WLprivateSale(address address_) public onlyOwner {
        if (!is_WLprivateSale(address_)) {
            __privatewhiteList[address_] = true;
        }
    }
    function WLprivateSale(address[] memory addresses_) public onlyOwner {
        uint256 length = addresses_.length;
        for (uint256 i = 0; i < length; i++) {
            if (!is_WLprivateSale(addresses_[i])) {
                __privatewhiteList[addresses_[i]] = true;
            }
        }
    }

    function SingleWl_isWhiteListed(address address_) public view returns (bool) {
        return __giveawaywhiteList[address_] == true;
    }

    function SingleWL_giveawaymint(address address_) public onlyOwner {
        if (!SingleWl_isWhiteListed(address_)) {
            __giveawaywhiteList[address_] = true;
        }
    }
    function WLgiveawayMint(address[] memory addresses_) public onlyOwner {
        uint256 length = addresses_.length;
        for (uint256 i = 0; i < length; i++) {
            if (!SingleWl_isWhiteListed(addresses_[i])) {
                __giveawaywhiteList[addresses_[i]] = true;
            }
        }
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
        function totalsupply() private view returns (uint)
    {
        return tokenId;
    }
}

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":[{"internalType":"address","name":"address_","type":"address"}],"name":"SingleWL_giveawaymint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"SingleWl_isWhiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"Single_WLprivateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses_","type":"address[]"}],"name":"WLgiveawayMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses_","type":"address[]"}],"name":"WLprivateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses_","type":"address[]"}],"name":"WLteamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_revelNFT","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"addteamMember","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"changeRevelStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipTeamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipWLgiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipWLprivateSale","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":"uint256","name":"_quantity","type":"uint256"}],"name":"getPrice_privateSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"getPrice_public","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"chosenAmount","type":"uint256"}],"name":"giveawayMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"giveawayMint_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giveawayMint_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giveaway_counter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"is_WLprivateSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"isteamMember","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"chosenAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"chosenAmount","type":"uint256"}],"name":"privateSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"privateSale_counter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateSale_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateSale_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateSale_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"chosenAmount","type":"uint256"}],"name":"reserve_nfts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice_privateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice_public","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamMintSale_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"chosenAmount","type":"uint256"}],"name":"team_Mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"team_counter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"team_nfts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61015e600c556064600d556101bc600e5566f8b0a10e470000600f5567013fbe85edc900006010556001601155600a6012556013805464ffffffffff19169055600060188190556019819055601a55610120604052607260808181529062003d0160a03980516200007991601b9160209091019062000242565b503480156200008757600080fd5b50604080518082018252601481527f54686520506f6b657220466163657320436c75620000000000000000000000006020808301918252835180850190945260048452635450464360e01b908401528151919291620000e99160009162000242565b508051620000ff90600190602084019062000242565b505050600062000114620001a460201b60201c565b600b80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060405180608001604052806051815260200162003cb0605191398051620001929160149160209091019062000242565b506200019d620001a8565b5062000325565b3390565b6060601b8054620001b990620002e8565b80601f0160208091040260200160405190810160405280929190818152602001828054620001e790620002e8565b8015620002385780601f106200020c5761010080835404028352916020019162000238565b820191906000526020600020905b8154815290600101906020018083116200021a57829003601f168201915b5050505050905090565b8280546200025090620002e8565b90600052602060002090601f016020900481019282620002745760008555620002bf565b82601f106200028f57805160ff1916838001178555620002bf565b82800160010185558215620002bf579182015b82811115620002bf578251825591602001919060010190620002a2565b50620002cd929150620002d1565b5090565b5b80821115620002cd5760008155600101620002d2565b600281046001821680620002fd57607f821691505b602082108114156200031f57634e487b7160e01b600052602260045260246000fd5b50919050565b61397b80620003356000396000f3fe60806040526004361061038c5760003560e01c80637b2aafb6116101dc578063bd0a843911610102578063ddec7542116100a0578063e985e9c51161006f578063e985e9c51461099b578063ede829ee146109bb578063f2fde38b146109db578063f6f9b1b6146109fb5761038c565b8063ddec754214610926578063deeae06514610946578063e8a3d48514610966578063e8e6cd2e1461097b5761038c565b8063c87b56dd116100dc578063c87b56dd146108bc578063ce77c73d146108dc578063d02cedcd146108f1578063d4a91dc7146109115761038c565b8063bd0a84391461087d578063c4aa1a7214610892578063c623a34b146108a75761038c565b8063a22cb4651161017a578063b39a520a11610149578063b39a520a14610815578063b449b5e71461082a578063b88d4fde1461084a578063b8d59a651461086a5761038c565b8063a22cb465146107b6578063a7169597146107d6578063ada0bda3146107eb578063b294f7d4146108005761038c565b80638da5cb5b116101b65780638da5cb5b146107595780638e6834131461076e57806395d89b411461078e578063a0712d68146107a35761038c565b80637b2aafb6146106f75780638462151c1461071757806388084605146107445761038c565b80634d43613a116102c15780636352211e1161025f57806370a082311161022e57806370a082311461068d57806373a2e545146106ad578063743976a0146106c257806379ee8e3e146106d75761038c565b80636352211e1461062e5780636cf90ed01461064e5780636d76a982146106635780636d8513b3146106785761038c565b80635080fb671161029b5780635080fb67146105c457806355f804b3146105d9578063579206f4146105f957806362c6f7b9146106195761038c565b80634d43613a146105645780634e0e9aa7146105845780634f6ccce7146105a45761038c565b80631c2228141161032e57806323b872dd1161030857806323b872dd146104ef5780632f745c591461050f5780633ccfd60b1461052f57806342842e0e146105445761038c565b80631c2228141461048f5780631eed5f5c146104af57806320231c0a146104cf5761038c565b8063095ea7b31161036a578063095ea7b3146104165780630b340a1e1461043857806316f5827e1461045a57806318160ddd1461047a5761038c565b806301ffc9a71461039157806306fdde03146103c7578063081812fc146103e9575b600080fd5b34801561039d57600080fd5b506103b16103ac366004612d99565b610a10565b6040516103be9190612f1f565b60405180910390f35b3480156103d357600080fd5b506103dc610a3d565b6040516103be9190612f2a565b3480156103f557600080fd5b50610409610404366004612e17565b610acf565b6040516103be9190612e8a565b34801561042257600080fd5b50610436610431366004612cc2565b610b1b565b005b34801561044457600080fd5b5061044d610bb3565b6040516103be91906137c2565b34801561046657600080fd5b506103b1610475366004612b88565b610bb9565b34801561048657600080fd5b5061044d610bdc565b34801561049b57600080fd5b506104366104aa366004612e17565b610be2565b3480156104bb57600080fd5b506104366104ca366004612ceb565b610d3d565b3480156104db57600080fd5b506104366104ea366004612e17565b610e35565b3480156104fb57600080fd5b5061043661050a366004612bd4565b610eb3565b34801561051b57600080fd5b5061044d61052a366004612cc2565b610eeb565b34801561053b57600080fd5b50610436610f3d565b34801561055057600080fd5b5061043661055f366004612bd4565b610fab565b34801561057057600080fd5b5061043661057f366004612e17565b610fc6565b34801561059057600080fd5b506103b161059f366004612b88565b61100a565b3480156105b057600080fd5b5061044d6105bf366004612e17565b61102d565b3480156105d057600080fd5b5061044d611088565b3480156105e557600080fd5b506104366105f4366004612dd1565b61108e565b34801561060557600080fd5b50610436610614366004612b88565b6110e0565b34801561062557600080fd5b506103b1611153565b34801561063a57600080fd5b50610409610649366004612e17565b611164565b34801561065a57600080fd5b5061044d611199565b34801561066f57600080fd5b5061044d61119f565b34801561068457600080fd5b506103b16111a5565b34801561069957600080fd5b5061044d6106a8366004612b88565b6111b5565b3480156106b957600080fd5b506104366111f9565b3480156106ce57600080fd5b506103dc611255565b3480156106e357600080fd5b506104366106f2366004612e17565b6112e3565b34801561070357600080fd5b5061044d610712366004612e17565b61145b565b34801561072357600080fd5b50610737610732366004612b88565b61146b565b6040516103be9190612edb565b34801561075057600080fd5b50610436611529565b34801561076557600080fd5b50610409611587565b34801561077a57600080fd5b50610436610789366004612ceb565b611596565b34801561079a57600080fd5b506103dc61168e565b6104366107b1366004612e17565b61169d565b3480156107c257600080fd5b506104366107d1366004612c88565b611840565b3480156107e257600080fd5b506103b161190e565b3480156107f757600080fd5b506103b161191c565b34801561080c57600080fd5b5061044d61192b565b34801561082157600080fd5b5061044d611931565b34801561083657600080fd5b50610436610845366004612e17565b611937565b34801561085657600080fd5b50610436610865366004612c0f565b61197b565b610436610878366004612e17565b6119ba565b34801561088957600080fd5b50610436611bc9565b34801561089e57600080fd5b50610436611c2b565b3480156108b357600080fd5b5061044d611c8b565b3480156108c857600080fd5b506103dc6108d7366004612e17565b611c91565b3480156108e857600080fd5b5061044d611e3d565b3480156108fd57600080fd5b5061044d61090c366004612e17565b611e43565b34801561091d57600080fd5b50610436611e53565b34801561093257600080fd5b506103b1610941366004612b88565b611ea6565b34801561095257600080fd5b50610436610961366004612b88565b611ec9565b34801561097257600080fd5b506103dc611f3b565b34801561098757600080fd5b50610436610996366004612ceb565b611f4a565b3480156109a757600080fd5b506103b16109b6366004612ba2565b612042565b3480156109c757600080fd5b506104366109d6366004612b88565b612070565b3480156109e757600080fd5b506104366109f6366004612b88565b6120e2565b348015610a0757600080fd5b506103b1612150565b60006001600160e01b0319821663780e9d6360e01b1480610a355750610a3582612159565b90505b919050565b606060008054610a4c90613883565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7890613883565b8015610ac55780601f10610a9a57610100808354040283529160200191610ac5565b820191906000526020600020905b815481529060010190602001808311610aa857829003601f168201915b5050505050905090565b6000610ada82612199565b610aff5760405162461bcd60e51b8152600401610af690613425565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610b2682611164565b9050806001600160a01b0316836001600160a01b03161415610b5a5760405162461bcd60e51b8152600401610af69061360a565b806001600160a01b0316610b6c6121b6565b6001600160a01b03161480610b885750610b88816109b66121b6565b610ba45760405162461bcd60e51b8152600401610af6906131d4565b610bae83836121ba565b505050565b600d5481565b6001600160a01b031660009081526017602052604090205460ff16151560011490565b60095490565b606581610bf06106a86121b6565b610bfa91906137f5565b10610c175760405162461bcd60e51b8152600401610af6906133e4565b61015e6018541115610c3b5760405162461bcd60e51b8152600401610af690613781565b610c4661059f6121b6565b610c625760405162461bcd60e51b8152600401610af690613318565b60008111610c825760405162461bcd60e51b8152600401610af69061369c565b6064610c8f6106a86121b6565b10610cac5760405162461bcd60e51b8152600401610af690613341565b61115c81610cb8610bdc565b610cc291906137f5565b1115610ce05760405162461bcd60e51b8152600401610af69061349f565b60005b81811015610d3957610cfc33610cf7612228565b61222e565b60118054906000610d0c836138be565b909155505060188054906000610d21836138be565b91905055508080610d31906138be565b915050610ce3565b5050565b610d456121b6565b6001600160a01b0316610d56611587565b6001600160a01b031614610d7c5760405162461bcd60e51b8152600401610af6906134e2565b805160005b81811015610bae57610db9838281518110610dac57634e487b7160e01b600052603260045260246000fd5b6020026020010151611ea6565b610e2357600160156000858481518110610de357634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055505b80610e2d816138be565b915050610d81565b610e3d6121b6565b6001600160a01b0316610e4e611587565b6001600160a01b031614610e745760405162461bcd60e51b8152600401610af6906134e2565b60005b81811015610d3957610e8b33610cf7612228565b60118054906000610e9b836138be565b91905055508080610eab906138be565b915050610e77565b610ec4610ebe6121b6565b82612248565b610ee05760405162461bcd60e51b8152600401610af69061364b565b610bae8383836122cd565b6000610ef6836111b5565b8210610f145760405162461bcd60e51b8152600401610af690612f90565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b610f456121b6565b6001600160a01b0316610f56611587565b6001600160a01b031614610f7c5760405162461bcd60e51b8152600401610af6906134e2565b6040514790339082156108fc029083906000818181858888f19350505050158015610d39573d6000803e3d6000fd5b610bae8383836040518060200160405280600081525061197b565b610fce6121b6565b6001600160a01b0316610fdf611587565b6001600160a01b0316146110055760405162461bcd60e51b8152600401610af6906134e2565b600f55565b6001600160a01b031660009081526016602052604090205460ff16151560011490565b6000611037610bdc565b82106110555760405162461bcd60e51b8152600401610af6906136c9565b6009828154811061107657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b60195481565b6110966121b6565b6001600160a01b03166110a7611587565b6001600160a01b0316146110cd5760405162461bcd60e51b8152600401610af6906134e2565b8051610d39906006906020840190612a80565b6110e86121b6565b6001600160a01b03166110f9611587565b6001600160a01b03161461111f5760405162461bcd60e51b8152600401610af6906134e2565b61112881611ea6565b611150576001600160a01b0381166000908152601560205260409020805460ff191660011790555b50565b601354640100000000900460ff1681565b6000818152600260205260408120546001600160a01b031680610a355760405162461bcd60e51b8152600401610af6906132a4565b601a5481565b600c5481565b6013546301000000900460ff1681565b60006001600160a01b0382166111dd5760405162461bcd60e51b8152600401610af69061325a565b506001600160a01b031660009081526003602052604090205490565b6112016121b6565b6001600160a01b0316611212611587565b6001600160a01b0316146112385760405162461bcd60e51b8152600401610af6906134e2565b6013805461ff001981166101009182900460ff1615909102179055565b6006805461126290613883565b80601f016020809104026020016040519081016040528092919081815260200182805461128e90613883565b80156112db5780601f106112b0576101008083540402835291602001916112db565b820191906000526020600020905b8154815290600101906020018083116112be57829003601f168201915b505050505081565b6002816112f16106a86121b6565b6112fb91906137f5565b106113185760405162461bcd60e51b8152600401610af690613715565b6064601954111561133b5760405162461bcd60e51b8152600401610af69061355d565b6113466104756121b6565b6113625760405162461bcd60e51b8152600401610af690613231565b60135460ff1615156001146113895760405162461bcd60e51b8152600401610af69061374c565b600081116113a95760405162461bcd60e51b8152600401610af69061369c565b60016113b66106a86121b6565b106113d35760405162461bcd60e51b8152600401610af690613341565b61115c816113df610bdc565b6113e991906137f5565b11156114075760405162461bcd60e51b8152600401610af69061349f565b60005b81811015610d395761141e33610cf7612228565b6011805490600061142e836138be565b909155505060198054906000611443836138be565b91905055508080611453906138be565b91505061140a565b6000600f5482610a359190613821565b60606000611478836111b5565b905060008167ffffffffffffffff8111156114a357634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156114cc578160200160208202803683370190505b50905060005b82811015611521576114e48582610eeb565b82828151811061150457634e487b7160e01b600052603260045260246000fd5b602090810291909101015280611519816138be565b9150506114d2565b509392505050565b6115316121b6565b6001600160a01b0316611542611587565b6001600160a01b0316146115685760405162461bcd60e51b8152600401610af6906134e2565b6013805462ff0000198116620100009182900460ff1615909102179055565b600b546001600160a01b031690565b61159e6121b6565b6001600160a01b03166115af611587565b6001600160a01b0316146115d55760405162461bcd60e51b8152600401610af6906134e2565b805160005b81811015610bae5761161283828151811061160557634e487b7160e01b600052603260045260246000fd5b602002602001015161100a565b61167c5760016016600085848151811061163c57634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055505b80611686816138be565b9150506115da565b606060018054610a4c90613883565b6015816116ab6106a86121b6565b6116b591906137f5565b106116d25760405162461bcd60e51b8152600401610af690613073565b61115c816116de610bdc565b6116e891906137f5565b11156117065760405162461bcd60e51b8152600401610af690613517565b60135462010000900460ff1615156001146117335760405162461bcd60e51b8152600401610af69061374c565b600081116117535760405162461bcd60e51b8152600401610af690612f3d565b60148111156117745760405162461bcd60e51b8152600401610af690612f3d565b601054349061178390836123fa565b146117a05760405162461bcd60e51b8152600401610af690613378565b60156117ad6106a86121b6565b106117ca5760405162461bcd60e51b8152600401610af690613341565b806012546117d89190613840565b6117e36106a86121b6565b11156118015760405162461bcd60e51b8152600401610af690613341565b60005b81811015610d395761181833610cf7612228565b60118054906000611828836138be565b91905055508080611838906138be565b915050611804565b6118486121b6565b6001600160a01b0316826001600160a01b031614156118795760405162461bcd60e51b8152600401610af690613123565b80600560006118866121b6565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556118ca6121b6565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119029190612f1f565b60405180910390a35050565b601354610100900460ff1681565b60135462010000900460ff1681565b60105481565b600e5481565b61193f6121b6565b6001600160a01b0316611950611587565b6001600160a01b0316146119765760405162461bcd60e51b8152600401610af6906134e2565b601055565b61198c6119866121b6565b83612248565b6119a85760405162461bcd60e51b8152600401610af69061364b565b6119b48484848461240d565b50505050565b600b816119c86106a86121b6565b6119d291906137f5565b106119ef5760405162461bcd60e51b8152600401610af690613073565b6101bc601a541115611a135760405162461bcd60e51b8152600401610af69061315a565b611a1e6109416121b6565b611a3a5760405162461bcd60e51b8152600401610af690613231565b60135460ff610100909104161515600114611a675760405162461bcd60e51b8152600401610af69061374c565b60008111611a875760405162461bcd60e51b8152600401610af69061369c565b600a811115611aa85760405162461bcd60e51b8152600401610af690613471565b61037e600d54600c54611ab9610bdc565b611ac391906137f5565b611acd91906137f5565b1115611aeb5760405162461bcd60e51b8152600401610af6906132ed565b600f543490611afa90836123fa565b14611b175760405162461bcd60e51b8152600401610af690613378565b600a611b246106a86121b6565b10611b415760405162461bcd60e51b8152600401610af690613341565b61115c81611b4d610bdc565b611b5791906137f5565b1115611b755760405162461bcd60e51b8152600401610af69061349f565b60005b81811015610d3957611b8c33610cf7612228565b60118054906000611b9c836138be565b9091555050601a8054906000611bb1836138be565b91905055508080611bc1906138be565b915050611b78565b611bd16121b6565b6001600160a01b0316611be2611587565b6001600160a01b031614611c085760405162461bcd60e51b8152600401610af6906134e2565b6013805464ff000000001981166401000000009182900460ff1615909102179055565b611c336121b6565b6001600160a01b0316611c44611587565b6001600160a01b031614611c6a5760405162461bcd60e51b8152600401610af6906134e2565b6013805463ff00000019811663010000009182900460ff1615909102179055565b60185481565b6060611c9c82612199565b611cb85760405162461bcd60e51b8152600401610af6906135d5565b601354640100000000900460ff1615611dab57600060068054611cda90613883565b80601f0160208091040260200160405190810160405280929190818152602001828054611d0690613883565b8015611d535780601f10611d2857610100808354040283529160200191611d53565b820191906000526020600020905b815481529060010190602001808311611d3657829003601f168201915b505050505090506000815111611d785760405180602001604052806000815250611da3565b80611d8284612440565b604051602001611d93929190612e5b565b6040516020818303038152906040525b915050610a38565b60148054611db890613883565b80601f0160208091040260200160405190810160405280929190818152602001828054611de490613883565b8015611e315780601f10611e0657610100808354040283529160200191611e31565b820191906000526020600020905b815481529060010190602001808311611e1457829003601f168201915b50505050509050610a38565b600f5481565b600060105482610a359190613821565b611e5b6121b6565b6001600160a01b0316611e6c611587565b6001600160a01b031614611e925760405162461bcd60e51b8152600401610af6906134e2565b6013805460ff19811660ff90911615179055565b6001600160a01b031660009081526015602052604090205460ff16151560011490565b611ed16121b6565b6001600160a01b0316611ee2611587565b6001600160a01b031614611f085760405162461bcd60e51b8152600401610af6906134e2565b611f118161100a565b611150576001600160a01b0381166000908152601660205260409020805460ff1916600117905550565b6060601b8054610a4c90613883565b611f526121b6565b6001600160a01b0316611f63611587565b6001600160a01b031614611f895760405162461bcd60e51b8152600401610af6906134e2565b805160005b81811015610bae57611fc6838281518110611fb957634e487b7160e01b600052603260045260246000fd5b6020026020010151610bb9565b61203057600160176000858481518110611ff057634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055505b8061203a816138be565b915050611f8e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6120786121b6565b6001600160a01b0316612089611587565b6001600160a01b0316146120af5760405162461bcd60e51b8152600401610af6906134e2565b6120b881610bb9565b611150576001600160a01b0381166000908152601760205260409020805460ff1916600117905550565b6120ea6121b6565b6001600160a01b03166120fb611587565b6001600160a01b0316146121215760405162461bcd60e51b8152600401610af6906134e2565b6001600160a01b0381166121475760405162461bcd60e51b8152600401610af69061302d565b6111508161255b565b60135460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061218a57506001600160e01b03198216635b5e139f60e01b145b80610a355750610a35826125ad565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906121ef82611164565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60115490565b610d398282604051806020016040528060008152506125c6565b600061225382612199565b61226f5760405162461bcd60e51b8152600401610af690613188565b600061227a83611164565b9050806001600160a01b0316846001600160a01b031614806122b55750836001600160a01b03166122aa84610acf565b6001600160a01b0316145b806122c557506122c58185612042565b949350505050565b826001600160a01b03166122e082611164565b6001600160a01b0316146123065760405162461bcd60e51b8152600401610af69061358c565b6001600160a01b03821661232c5760405162461bcd60e51b8152600401610af6906130df565b6123378383836125f9565b6123426000826121ba565b6001600160a01b038316600090815260036020526040812080546001929061236b908490613840565b90915550506001600160a01b03821660009081526003602052604081208054600192906123999084906137f5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006124068284613821565b9392505050565b6124188484846122cd565b61242484848484612682565b6119b45760405162461bcd60e51b8152600401610af690612fdb565b60608161246557506040805180820190915260018152600360fc1b6020820152610a38565b8160005b811561248f5780612479816138be565b91506124889050600a8361380d565b9150612469565b60008167ffffffffffffffff8111156124b857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124e2576020820181803683370190505b5090505b84156122c5576124f7600183613840565b9150612504600a866138d9565b61250f9060306137f5565b60f81b81838151811061253257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612554600a8661380d565b94506124e6565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160e01b031981166301ffc9a760e01b14919050565b6125d0838361279d565b6125dd6000848484612682565b610bae5760405162461bcd60e51b8152600401610af690612fdb565b612604838383610bae565b6001600160a01b0383166126205761261b8161287c565b612643565b816001600160a01b0316836001600160a01b0316146126435761264383826128c0565b6001600160a01b03821661265f5761265a8161295d565b610bae565b826001600160a01b0316826001600160a01b031614610bae57610bae8282612a36565b6000612696846001600160a01b0316612a7a565b1561279257836001600160a01b031663150b7a026126b26121b6565b8786866040518563ffffffff1660e01b81526004016126d49493929190612e9e565b602060405180830381600087803b1580156126ee57600080fd5b505af192505050801561271e575060408051601f3d908101601f1916820190925261271b91810190612db5565b60015b612778573d80801561274c576040519150601f19603f3d011682016040523d82523d6000602084013e612751565b606091505b5080516127705760405162461bcd60e51b8152600401610af690612fdb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506122c5565b506001949350505050565b6001600160a01b0382166127c35760405162461bcd60e51b8152600401610af6906133af565b6127cc81612199565b156127e95760405162461bcd60e51b8152600401610af6906130a8565b6127f5600083836125f9565b6001600160a01b038216600090815260036020526040812080546001929061281e9084906137f5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b600060016128cd846111b5565b6128d79190613840565b60008381526008602052604090205490915080821461292a576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061296f90600190613840565b6000838152600a6020526040812054600980549394509092849081106129a557634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600983815481106129d457634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480612a1a57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612a41836111b5565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b3b151590565b828054612a8c90613883565b90600052602060002090601f016020900481019282612aae5760008555612af4565b82601f10612ac757805160ff1916838001178555612af4565b82800160010185558215612af4579182015b82811115612af4578251825591602001919060010190612ad9565b50612b00929150612b04565b5090565b5b80821115612b005760008155600101612b05565b600067ffffffffffffffff831115612b3357612b33613919565b612b46601f8401601f19166020016137cb565b9050828152838383011115612b5a57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114610a3857600080fd5b600060208284031215612b99578081fd5b61240682612b71565b60008060408385031215612bb4578081fd5b612bbd83612b71565b9150612bcb60208401612b71565b90509250929050565b600080600060608486031215612be8578081fd5b612bf184612b71565b9250612bff60208501612b71565b9150604084013590509250925092565b60008060008060808587031215612c24578081fd5b612c2d85612b71565b9350612c3b60208601612b71565b925060408501359150606085013567ffffffffffffffff811115612c5d578182fd5b8501601f81018713612c6d578182fd5b612c7c87823560208401612b19565b91505092959194509250565b60008060408385031215612c9a578182fd5b612ca383612b71565b915060208301358015158114612cb7578182fd5b809150509250929050565b60008060408385031215612cd4578182fd5b612cdd83612b71565b946020939093013593505050565b60006020808385031215612cfd578182fd5b823567ffffffffffffffff80821115612d14578384fd5b818501915085601f830112612d27578384fd5b813581811115612d3957612d39613919565b8381029150612d498483016137cb565b8181528481019084860184860187018a1015612d63578788fd5b8795505b83861015612d8c57612d7881612b71565b835260019590950194918601918601612d67565b5098975050505050505050565b600060208284031215612daa578081fd5b81356124068161392f565b600060208284031215612dc6578081fd5b81516124068161392f565b600060208284031215612de2578081fd5b813567ffffffffffffffff811115612df8578182fd5b8201601f81018413612e08578182fd5b6122c584823560208401612b19565b600060208284031215612e28578081fd5b5035919050565b60008151808452612e47816020860160208601613857565b601f01601f19169290920160200192915050565b60008351612e6d818460208801613857565b835190830190612e81818360208801613857565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ed190830184612e2f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612f1357835183529284019291840191600101612ef7565b50909695505050505050565b901515815260200190565b6000602082526124066020830184612e2f565b60208082526033908201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c6573736040820152720207468616e206f7220657175616c20746f203606c1b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252818101527f596f752063616e2774204d696e74204d6f7265207468616e203130206e667473604082015260600190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b602080825260149082015273283934bb30ba329029b0b6329034b99027bb32b960611b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252600f908201526e139bdd081dda1a5d195b1a5cdd1959608a1b604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b602080825260119082015270333932b29039b0b6329034b99037bb32b960791b604082015260600190565b6020808252600f908201526e2737ba103a32b0b69036b2b6b132b960891b604082015260600190565b6020808252601f908201527f4e6f206d6f726520746f6b656e7320666f722074686973206164647265737300604082015260600190565b6020808252601d908201527f53656e742065746865722076616c756520697320696e636f7272656374000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526021908201527f596f752063616e2774204d696e74204d6f7265207468616e20313030206e66746040820152607360f81b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601490820152730596f752063616e206f6e6c79206d696e742031360641b604082015260600190565b60208082526023908201527f4d696e7420726571756573746564206d6f7265207468616e206d617820737570604082015262706c7960e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526026908201527f5175616e74697479206d757374206265206c6573736572207468656e204d6178604082015265537570706c7960d01b606082015260800190565b60208082526015908201527423b4bb32b0bbb0bc9026b4b73a34b7339027bb32b960591b604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252818101527f2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b602080825260139082015272105b5bdd5b9d081a5cc81b9bdd081d985b1a59606a1b604082015260600190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601e908201527f596f752063616e2774204d696e74204d6f7265207468616e2031206e66740000604082015260600190565b6020808252818101527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e74604082015260600190565b60208082526021908201527f4e6f206d6f7265207175616e7469747920666f72205465616d204d696e74696e6040820152606760f81b606082015260800190565b90815260200190565b60405181810167ffffffffffffffff811182821017156137ed576137ed613919565b604052919050565b60008219821115613808576138086138ed565b500190565b60008261381c5761381c613903565b500490565b600081600019048311821515161561383b5761383b6138ed565b500290565b600082821015613852576138526138ed565b500390565b60005b8381101561387257818101518382015260200161385a565b838111156119b45750506000910152565b60028104600182168061389757607f821691505b602082108114156138b857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156138d2576138d26138ed565b5060010190565b6000826138e8576138e8613903565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461115057600080fdfea26469706673582212207582d4ec37f39d655f5016dd74dfe4ec1d6bed62fb8f6c05acc39aac2ffcd89864736f6c6343000800003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d53796571787243784756464d444a5550444a7464686733436e79466a336570785242776b52574269393137632f68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d634c6e6663434263443237685161756d55574d43474555596f417363517676504338796e39486764776148362f636f6e74726163742532306c6576656c2532306d657461646174612e6a736f6e2f

Deployed Bytecode

0x60806040526004361061038c5760003560e01c80637b2aafb6116101dc578063bd0a843911610102578063ddec7542116100a0578063e985e9c51161006f578063e985e9c51461099b578063ede829ee146109bb578063f2fde38b146109db578063f6f9b1b6146109fb5761038c565b8063ddec754214610926578063deeae06514610946578063e8a3d48514610966578063e8e6cd2e1461097b5761038c565b8063c87b56dd116100dc578063c87b56dd146108bc578063ce77c73d146108dc578063d02cedcd146108f1578063d4a91dc7146109115761038c565b8063bd0a84391461087d578063c4aa1a7214610892578063c623a34b146108a75761038c565b8063a22cb4651161017a578063b39a520a11610149578063b39a520a14610815578063b449b5e71461082a578063b88d4fde1461084a578063b8d59a651461086a5761038c565b8063a22cb465146107b6578063a7169597146107d6578063ada0bda3146107eb578063b294f7d4146108005761038c565b80638da5cb5b116101b65780638da5cb5b146107595780638e6834131461076e57806395d89b411461078e578063a0712d68146107a35761038c565b80637b2aafb6146106f75780638462151c1461071757806388084605146107445761038c565b80634d43613a116102c15780636352211e1161025f57806370a082311161022e57806370a082311461068d57806373a2e545146106ad578063743976a0146106c257806379ee8e3e146106d75761038c565b80636352211e1461062e5780636cf90ed01461064e5780636d76a982146106635780636d8513b3146106785761038c565b80635080fb671161029b5780635080fb67146105c457806355f804b3146105d9578063579206f4146105f957806362c6f7b9146106195761038c565b80634d43613a146105645780634e0e9aa7146105845780634f6ccce7146105a45761038c565b80631c2228141161032e57806323b872dd1161030857806323b872dd146104ef5780632f745c591461050f5780633ccfd60b1461052f57806342842e0e146105445761038c565b80631c2228141461048f5780631eed5f5c146104af57806320231c0a146104cf5761038c565b8063095ea7b31161036a578063095ea7b3146104165780630b340a1e1461043857806316f5827e1461045a57806318160ddd1461047a5761038c565b806301ffc9a71461039157806306fdde03146103c7578063081812fc146103e9575b600080fd5b34801561039d57600080fd5b506103b16103ac366004612d99565b610a10565b6040516103be9190612f1f565b60405180910390f35b3480156103d357600080fd5b506103dc610a3d565b6040516103be9190612f2a565b3480156103f557600080fd5b50610409610404366004612e17565b610acf565b6040516103be9190612e8a565b34801561042257600080fd5b50610436610431366004612cc2565b610b1b565b005b34801561044457600080fd5b5061044d610bb3565b6040516103be91906137c2565b34801561046657600080fd5b506103b1610475366004612b88565b610bb9565b34801561048657600080fd5b5061044d610bdc565b34801561049b57600080fd5b506104366104aa366004612e17565b610be2565b3480156104bb57600080fd5b506104366104ca366004612ceb565b610d3d565b3480156104db57600080fd5b506104366104ea366004612e17565b610e35565b3480156104fb57600080fd5b5061043661050a366004612bd4565b610eb3565b34801561051b57600080fd5b5061044d61052a366004612cc2565b610eeb565b34801561053b57600080fd5b50610436610f3d565b34801561055057600080fd5b5061043661055f366004612bd4565b610fab565b34801561057057600080fd5b5061043661057f366004612e17565b610fc6565b34801561059057600080fd5b506103b161059f366004612b88565b61100a565b3480156105b057600080fd5b5061044d6105bf366004612e17565b61102d565b3480156105d057600080fd5b5061044d611088565b3480156105e557600080fd5b506104366105f4366004612dd1565b61108e565b34801561060557600080fd5b50610436610614366004612b88565b6110e0565b34801561062557600080fd5b506103b1611153565b34801561063a57600080fd5b50610409610649366004612e17565b611164565b34801561065a57600080fd5b5061044d611199565b34801561066f57600080fd5b5061044d61119f565b34801561068457600080fd5b506103b16111a5565b34801561069957600080fd5b5061044d6106a8366004612b88565b6111b5565b3480156106b957600080fd5b506104366111f9565b3480156106ce57600080fd5b506103dc611255565b3480156106e357600080fd5b506104366106f2366004612e17565b6112e3565b34801561070357600080fd5b5061044d610712366004612e17565b61145b565b34801561072357600080fd5b50610737610732366004612b88565b61146b565b6040516103be9190612edb565b34801561075057600080fd5b50610436611529565b34801561076557600080fd5b50610409611587565b34801561077a57600080fd5b50610436610789366004612ceb565b611596565b34801561079a57600080fd5b506103dc61168e565b6104366107b1366004612e17565b61169d565b3480156107c257600080fd5b506104366107d1366004612c88565b611840565b3480156107e257600080fd5b506103b161190e565b3480156107f757600080fd5b506103b161191c565b34801561080c57600080fd5b5061044d61192b565b34801561082157600080fd5b5061044d611931565b34801561083657600080fd5b50610436610845366004612e17565b611937565b34801561085657600080fd5b50610436610865366004612c0f565b61197b565b610436610878366004612e17565b6119ba565b34801561088957600080fd5b50610436611bc9565b34801561089e57600080fd5b50610436611c2b565b3480156108b357600080fd5b5061044d611c8b565b3480156108c857600080fd5b506103dc6108d7366004612e17565b611c91565b3480156108e857600080fd5b5061044d611e3d565b3480156108fd57600080fd5b5061044d61090c366004612e17565b611e43565b34801561091d57600080fd5b50610436611e53565b34801561093257600080fd5b506103b1610941366004612b88565b611ea6565b34801561095257600080fd5b50610436610961366004612b88565b611ec9565b34801561097257600080fd5b506103dc611f3b565b34801561098757600080fd5b50610436610996366004612ceb565b611f4a565b3480156109a757600080fd5b506103b16109b6366004612ba2565b612042565b3480156109c757600080fd5b506104366109d6366004612b88565b612070565b3480156109e757600080fd5b506104366109f6366004612b88565b6120e2565b348015610a0757600080fd5b506103b1612150565b60006001600160e01b0319821663780e9d6360e01b1480610a355750610a3582612159565b90505b919050565b606060008054610a4c90613883565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7890613883565b8015610ac55780601f10610a9a57610100808354040283529160200191610ac5565b820191906000526020600020905b815481529060010190602001808311610aa857829003601f168201915b5050505050905090565b6000610ada82612199565b610aff5760405162461bcd60e51b8152600401610af690613425565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610b2682611164565b9050806001600160a01b0316836001600160a01b03161415610b5a5760405162461bcd60e51b8152600401610af69061360a565b806001600160a01b0316610b6c6121b6565b6001600160a01b03161480610b885750610b88816109b66121b6565b610ba45760405162461bcd60e51b8152600401610af6906131d4565b610bae83836121ba565b505050565b600d5481565b6001600160a01b031660009081526017602052604090205460ff16151560011490565b60095490565b606581610bf06106a86121b6565b610bfa91906137f5565b10610c175760405162461bcd60e51b8152600401610af6906133e4565b61015e6018541115610c3b5760405162461bcd60e51b8152600401610af690613781565b610c4661059f6121b6565b610c625760405162461bcd60e51b8152600401610af690613318565b60008111610c825760405162461bcd60e51b8152600401610af69061369c565b6064610c8f6106a86121b6565b10610cac5760405162461bcd60e51b8152600401610af690613341565b61115c81610cb8610bdc565b610cc291906137f5565b1115610ce05760405162461bcd60e51b8152600401610af69061349f565b60005b81811015610d3957610cfc33610cf7612228565b61222e565b60118054906000610d0c836138be565b909155505060188054906000610d21836138be565b91905055508080610d31906138be565b915050610ce3565b5050565b610d456121b6565b6001600160a01b0316610d56611587565b6001600160a01b031614610d7c5760405162461bcd60e51b8152600401610af6906134e2565b805160005b81811015610bae57610db9838281518110610dac57634e487b7160e01b600052603260045260246000fd5b6020026020010151611ea6565b610e2357600160156000858481518110610de357634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055505b80610e2d816138be565b915050610d81565b610e3d6121b6565b6001600160a01b0316610e4e611587565b6001600160a01b031614610e745760405162461bcd60e51b8152600401610af6906134e2565b60005b81811015610d3957610e8b33610cf7612228565b60118054906000610e9b836138be565b91905055508080610eab906138be565b915050610e77565b610ec4610ebe6121b6565b82612248565b610ee05760405162461bcd60e51b8152600401610af69061364b565b610bae8383836122cd565b6000610ef6836111b5565b8210610f145760405162461bcd60e51b8152600401610af690612f90565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b610f456121b6565b6001600160a01b0316610f56611587565b6001600160a01b031614610f7c5760405162461bcd60e51b8152600401610af6906134e2565b6040514790339082156108fc029083906000818181858888f19350505050158015610d39573d6000803e3d6000fd5b610bae8383836040518060200160405280600081525061197b565b610fce6121b6565b6001600160a01b0316610fdf611587565b6001600160a01b0316146110055760405162461bcd60e51b8152600401610af6906134e2565b600f55565b6001600160a01b031660009081526016602052604090205460ff16151560011490565b6000611037610bdc565b82106110555760405162461bcd60e51b8152600401610af6906136c9565b6009828154811061107657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b60195481565b6110966121b6565b6001600160a01b03166110a7611587565b6001600160a01b0316146110cd5760405162461bcd60e51b8152600401610af6906134e2565b8051610d39906006906020840190612a80565b6110e86121b6565b6001600160a01b03166110f9611587565b6001600160a01b03161461111f5760405162461bcd60e51b8152600401610af6906134e2565b61112881611ea6565b611150576001600160a01b0381166000908152601560205260409020805460ff191660011790555b50565b601354640100000000900460ff1681565b6000818152600260205260408120546001600160a01b031680610a355760405162461bcd60e51b8152600401610af6906132a4565b601a5481565b600c5481565b6013546301000000900460ff1681565b60006001600160a01b0382166111dd5760405162461bcd60e51b8152600401610af69061325a565b506001600160a01b031660009081526003602052604090205490565b6112016121b6565b6001600160a01b0316611212611587565b6001600160a01b0316146112385760405162461bcd60e51b8152600401610af6906134e2565b6013805461ff001981166101009182900460ff1615909102179055565b6006805461126290613883565b80601f016020809104026020016040519081016040528092919081815260200182805461128e90613883565b80156112db5780601f106112b0576101008083540402835291602001916112db565b820191906000526020600020905b8154815290600101906020018083116112be57829003601f168201915b505050505081565b6002816112f16106a86121b6565b6112fb91906137f5565b106113185760405162461bcd60e51b8152600401610af690613715565b6064601954111561133b5760405162461bcd60e51b8152600401610af69061355d565b6113466104756121b6565b6113625760405162461bcd60e51b8152600401610af690613231565b60135460ff1615156001146113895760405162461bcd60e51b8152600401610af69061374c565b600081116113a95760405162461bcd60e51b8152600401610af69061369c565b60016113b66106a86121b6565b106113d35760405162461bcd60e51b8152600401610af690613341565b61115c816113df610bdc565b6113e991906137f5565b11156114075760405162461bcd60e51b8152600401610af69061349f565b60005b81811015610d395761141e33610cf7612228565b6011805490600061142e836138be565b909155505060198054906000611443836138be565b91905055508080611453906138be565b91505061140a565b6000600f5482610a359190613821565b60606000611478836111b5565b905060008167ffffffffffffffff8111156114a357634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156114cc578160200160208202803683370190505b50905060005b82811015611521576114e48582610eeb565b82828151811061150457634e487b7160e01b600052603260045260246000fd5b602090810291909101015280611519816138be565b9150506114d2565b509392505050565b6115316121b6565b6001600160a01b0316611542611587565b6001600160a01b0316146115685760405162461bcd60e51b8152600401610af6906134e2565b6013805462ff0000198116620100009182900460ff1615909102179055565b600b546001600160a01b031690565b61159e6121b6565b6001600160a01b03166115af611587565b6001600160a01b0316146115d55760405162461bcd60e51b8152600401610af6906134e2565b805160005b81811015610bae5761161283828151811061160557634e487b7160e01b600052603260045260246000fd5b602002602001015161100a565b61167c5760016016600085848151811061163c57634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055505b80611686816138be565b9150506115da565b606060018054610a4c90613883565b6015816116ab6106a86121b6565b6116b591906137f5565b106116d25760405162461bcd60e51b8152600401610af690613073565b61115c816116de610bdc565b6116e891906137f5565b11156117065760405162461bcd60e51b8152600401610af690613517565b60135462010000900460ff1615156001146117335760405162461bcd60e51b8152600401610af69061374c565b600081116117535760405162461bcd60e51b8152600401610af690612f3d565b60148111156117745760405162461bcd60e51b8152600401610af690612f3d565b601054349061178390836123fa565b146117a05760405162461bcd60e51b8152600401610af690613378565b60156117ad6106a86121b6565b106117ca5760405162461bcd60e51b8152600401610af690613341565b806012546117d89190613840565b6117e36106a86121b6565b11156118015760405162461bcd60e51b8152600401610af690613341565b60005b81811015610d395761181833610cf7612228565b60118054906000611828836138be565b91905055508080611838906138be565b915050611804565b6118486121b6565b6001600160a01b0316826001600160a01b031614156118795760405162461bcd60e51b8152600401610af690613123565b80600560006118866121b6565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556118ca6121b6565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119029190612f1f565b60405180910390a35050565b601354610100900460ff1681565b60135462010000900460ff1681565b60105481565b600e5481565b61193f6121b6565b6001600160a01b0316611950611587565b6001600160a01b0316146119765760405162461bcd60e51b8152600401610af6906134e2565b601055565b61198c6119866121b6565b83612248565b6119a85760405162461bcd60e51b8152600401610af69061364b565b6119b48484848461240d565b50505050565b600b816119c86106a86121b6565b6119d291906137f5565b106119ef5760405162461bcd60e51b8152600401610af690613073565b6101bc601a541115611a135760405162461bcd60e51b8152600401610af69061315a565b611a1e6109416121b6565b611a3a5760405162461bcd60e51b8152600401610af690613231565b60135460ff610100909104161515600114611a675760405162461bcd60e51b8152600401610af69061374c565b60008111611a875760405162461bcd60e51b8152600401610af69061369c565b600a811115611aa85760405162461bcd60e51b8152600401610af690613471565b61037e600d54600c54611ab9610bdc565b611ac391906137f5565b611acd91906137f5565b1115611aeb5760405162461bcd60e51b8152600401610af6906132ed565b600f543490611afa90836123fa565b14611b175760405162461bcd60e51b8152600401610af690613378565b600a611b246106a86121b6565b10611b415760405162461bcd60e51b8152600401610af690613341565b61115c81611b4d610bdc565b611b5791906137f5565b1115611b755760405162461bcd60e51b8152600401610af69061349f565b60005b81811015610d3957611b8c33610cf7612228565b60118054906000611b9c836138be565b9091555050601a8054906000611bb1836138be565b91905055508080611bc1906138be565b915050611b78565b611bd16121b6565b6001600160a01b0316611be2611587565b6001600160a01b031614611c085760405162461bcd60e51b8152600401610af6906134e2565b6013805464ff000000001981166401000000009182900460ff1615909102179055565b611c336121b6565b6001600160a01b0316611c44611587565b6001600160a01b031614611c6a5760405162461bcd60e51b8152600401610af6906134e2565b6013805463ff00000019811663010000009182900460ff1615909102179055565b60185481565b6060611c9c82612199565b611cb85760405162461bcd60e51b8152600401610af6906135d5565b601354640100000000900460ff1615611dab57600060068054611cda90613883565b80601f0160208091040260200160405190810160405280929190818152602001828054611d0690613883565b8015611d535780601f10611d2857610100808354040283529160200191611d53565b820191906000526020600020905b815481529060010190602001808311611d3657829003601f168201915b505050505090506000815111611d785760405180602001604052806000815250611da3565b80611d8284612440565b604051602001611d93929190612e5b565b6040516020818303038152906040525b915050610a38565b60148054611db890613883565b80601f0160208091040260200160405190810160405280929190818152602001828054611de490613883565b8015611e315780601f10611e0657610100808354040283529160200191611e31565b820191906000526020600020905b815481529060010190602001808311611e1457829003601f168201915b50505050509050610a38565b600f5481565b600060105482610a359190613821565b611e5b6121b6565b6001600160a01b0316611e6c611587565b6001600160a01b031614611e925760405162461bcd60e51b8152600401610af6906134e2565b6013805460ff19811660ff90911615179055565b6001600160a01b031660009081526015602052604090205460ff16151560011490565b611ed16121b6565b6001600160a01b0316611ee2611587565b6001600160a01b031614611f085760405162461bcd60e51b8152600401610af6906134e2565b611f118161100a565b611150576001600160a01b0381166000908152601660205260409020805460ff1916600117905550565b6060601b8054610a4c90613883565b611f526121b6565b6001600160a01b0316611f63611587565b6001600160a01b031614611f895760405162461bcd60e51b8152600401610af6906134e2565b805160005b81811015610bae57611fc6838281518110611fb957634e487b7160e01b600052603260045260246000fd5b6020026020010151610bb9565b61203057600160176000858481518110611ff057634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055505b8061203a816138be565b915050611f8e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6120786121b6565b6001600160a01b0316612089611587565b6001600160a01b0316146120af5760405162461bcd60e51b8152600401610af6906134e2565b6120b881610bb9565b611150576001600160a01b0381166000908152601760205260409020805460ff1916600117905550565b6120ea6121b6565b6001600160a01b03166120fb611587565b6001600160a01b0316146121215760405162461bcd60e51b8152600401610af6906134e2565b6001600160a01b0381166121475760405162461bcd60e51b8152600401610af69061302d565b6111508161255b565b60135460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061218a57506001600160e01b03198216635b5e139f60e01b145b80610a355750610a35826125ad565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906121ef82611164565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60115490565b610d398282604051806020016040528060008152506125c6565b600061225382612199565b61226f5760405162461bcd60e51b8152600401610af690613188565b600061227a83611164565b9050806001600160a01b0316846001600160a01b031614806122b55750836001600160a01b03166122aa84610acf565b6001600160a01b0316145b806122c557506122c58185612042565b949350505050565b826001600160a01b03166122e082611164565b6001600160a01b0316146123065760405162461bcd60e51b8152600401610af69061358c565b6001600160a01b03821661232c5760405162461bcd60e51b8152600401610af6906130df565b6123378383836125f9565b6123426000826121ba565b6001600160a01b038316600090815260036020526040812080546001929061236b908490613840565b90915550506001600160a01b03821660009081526003602052604081208054600192906123999084906137f5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006124068284613821565b9392505050565b6124188484846122cd565b61242484848484612682565b6119b45760405162461bcd60e51b8152600401610af690612fdb565b60608161246557506040805180820190915260018152600360fc1b6020820152610a38565b8160005b811561248f5780612479816138be565b91506124889050600a8361380d565b9150612469565b60008167ffffffffffffffff8111156124b857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124e2576020820181803683370190505b5090505b84156122c5576124f7600183613840565b9150612504600a866138d9565b61250f9060306137f5565b60f81b81838151811061253257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612554600a8661380d565b94506124e6565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160e01b031981166301ffc9a760e01b14919050565b6125d0838361279d565b6125dd6000848484612682565b610bae5760405162461bcd60e51b8152600401610af690612fdb565b612604838383610bae565b6001600160a01b0383166126205761261b8161287c565b612643565b816001600160a01b0316836001600160a01b0316146126435761264383826128c0565b6001600160a01b03821661265f5761265a8161295d565b610bae565b826001600160a01b0316826001600160a01b031614610bae57610bae8282612a36565b6000612696846001600160a01b0316612a7a565b1561279257836001600160a01b031663150b7a026126b26121b6565b8786866040518563ffffffff1660e01b81526004016126d49493929190612e9e565b602060405180830381600087803b1580156126ee57600080fd5b505af192505050801561271e575060408051601f3d908101601f1916820190925261271b91810190612db5565b60015b612778573d80801561274c576040519150601f19603f3d011682016040523d82523d6000602084013e612751565b606091505b5080516127705760405162461bcd60e51b8152600401610af690612fdb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506122c5565b506001949350505050565b6001600160a01b0382166127c35760405162461bcd60e51b8152600401610af6906133af565b6127cc81612199565b156127e95760405162461bcd60e51b8152600401610af6906130a8565b6127f5600083836125f9565b6001600160a01b038216600090815260036020526040812080546001929061281e9084906137f5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b600060016128cd846111b5565b6128d79190613840565b60008381526008602052604090205490915080821461292a576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061296f90600190613840565b6000838152600a6020526040812054600980549394509092849081106129a557634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600983815481106129d457634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480612a1a57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612a41836111b5565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b3b151590565b828054612a8c90613883565b90600052602060002090601f016020900481019282612aae5760008555612af4565b82601f10612ac757805160ff1916838001178555612af4565b82800160010185558215612af4579182015b82811115612af4578251825591602001919060010190612ad9565b50612b00929150612b04565b5090565b5b80821115612b005760008155600101612b05565b600067ffffffffffffffff831115612b3357612b33613919565b612b46601f8401601f19166020016137cb565b9050828152838383011115612b5a57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114610a3857600080fd5b600060208284031215612b99578081fd5b61240682612b71565b60008060408385031215612bb4578081fd5b612bbd83612b71565b9150612bcb60208401612b71565b90509250929050565b600080600060608486031215612be8578081fd5b612bf184612b71565b9250612bff60208501612b71565b9150604084013590509250925092565b60008060008060808587031215612c24578081fd5b612c2d85612b71565b9350612c3b60208601612b71565b925060408501359150606085013567ffffffffffffffff811115612c5d578182fd5b8501601f81018713612c6d578182fd5b612c7c87823560208401612b19565b91505092959194509250565b60008060408385031215612c9a578182fd5b612ca383612b71565b915060208301358015158114612cb7578182fd5b809150509250929050565b60008060408385031215612cd4578182fd5b612cdd83612b71565b946020939093013593505050565b60006020808385031215612cfd578182fd5b823567ffffffffffffffff80821115612d14578384fd5b818501915085601f830112612d27578384fd5b813581811115612d3957612d39613919565b8381029150612d498483016137cb565b8181528481019084860184860187018a1015612d63578788fd5b8795505b83861015612d8c57612d7881612b71565b835260019590950194918601918601612d67565b5098975050505050505050565b600060208284031215612daa578081fd5b81356124068161392f565b600060208284031215612dc6578081fd5b81516124068161392f565b600060208284031215612de2578081fd5b813567ffffffffffffffff811115612df8578182fd5b8201601f81018413612e08578182fd5b6122c584823560208401612b19565b600060208284031215612e28578081fd5b5035919050565b60008151808452612e47816020860160208601613857565b601f01601f19169290920160200192915050565b60008351612e6d818460208801613857565b835190830190612e81818360208801613857565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ed190830184612e2f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612f1357835183529284019291840191600101612ef7565b50909695505050505050565b901515815260200190565b6000602082526124066020830184612e2f565b60208082526033908201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c6573736040820152720207468616e206f7220657175616c20746f203606c1b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252818101527f596f752063616e2774204d696e74204d6f7265207468616e203130206e667473604082015260600190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b602080825260149082015273283934bb30ba329029b0b6329034b99027bb32b960611b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252600f908201526e139bdd081dda1a5d195b1a5cdd1959608a1b604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b602080825260119082015270333932b29039b0b6329034b99037bb32b960791b604082015260600190565b6020808252600f908201526e2737ba103a32b0b69036b2b6b132b960891b604082015260600190565b6020808252601f908201527f4e6f206d6f726520746f6b656e7320666f722074686973206164647265737300604082015260600190565b6020808252601d908201527f53656e742065746865722076616c756520697320696e636f7272656374000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526021908201527f596f752063616e2774204d696e74204d6f7265207468616e20313030206e66746040820152607360f81b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601490820152730596f752063616e206f6e6c79206d696e742031360641b604082015260600190565b60208082526023908201527f4d696e7420726571756573746564206d6f7265207468616e206d617820737570604082015262706c7960e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526026908201527f5175616e74697479206d757374206265206c6573736572207468656e204d6178604082015265537570706c7960d01b606082015260800190565b60208082526015908201527423b4bb32b0bbb0bc9026b4b73a34b7339027bb32b960591b604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252818101527f2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b602080825260139082015272105b5bdd5b9d081a5cc81b9bdd081d985b1a59606a1b604082015260600190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601e908201527f596f752063616e2774204d696e74204d6f7265207468616e2031206e66740000604082015260600190565b6020808252818101527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e74604082015260600190565b60208082526021908201527f4e6f206d6f7265207175616e7469747920666f72205465616d204d696e74696e6040820152606760f81b606082015260800190565b90815260200190565b60405181810167ffffffffffffffff811182821017156137ed576137ed613919565b604052919050565b60008219821115613808576138086138ed565b500190565b60008261381c5761381c613903565b500490565b600081600019048311821515161561383b5761383b6138ed565b500290565b600082821015613852576138526138ed565b500390565b60005b8381101561387257818101518382015260200161385a565b838111156119b45750506000910152565b60028104600182168061389757607f821691505b602082108114156138b857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156138d2576138d26138ed565b5060010190565b6000826138e8576138e8613903565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461115057600080fdfea26469706673582212207582d4ec37f39d655f5016dd74dfe4ec1d6bed62fb8f6c05acc39aac2ffcd89864736f6c63430008000033

Deployed Bytecode Sourcemap

49021:9772:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42844:224;;;;;;;;;;-1:-1:-1;42844:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30826:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32380:221::-;;;;;;;;;;-1:-1:-1;32380:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;31903:411::-;;;;;;;;;;-1:-1:-1;31903:411:0;;;;;:::i;:::-;;:::i;:::-;;49233:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;57887:140::-;;;;;;;;;;-1:-1:-1;57887:140:0;;;;;:::i;:::-;;:::i;43484:113::-;;;;;;;;;;;;;:::i;55278:785::-;;;;;;;;;;-1:-1:-1;55278:785:0;;;;;:::i;:::-;;:::i;57571:308::-;;;;;;;;;;-1:-1:-1;57571:308:0;;;;;:::i;:::-;;:::i;56073:205::-;;;;;;;;;;-1:-1:-1;56073:205:0;;;;;:::i;:::-;;:::i;33270:339::-;;;;;;;;;;-1:-1:-1;33270:339:0;;;;;:::i;:::-;;:::i;43152:256::-;;;;;;;;;;-1:-1:-1;43152:256:0;;;;;:::i;:::-;;:::i;58551:140::-;;;;;;;;;;;;;:::i;33680:185::-;;;;;;;;;;-1:-1:-1;33680:185:0;;;;;:::i;:::-;;:::i;50953:116::-;;;;;;;;;;-1:-1:-1;50953:116:0;;;;;:::i;:::-;;:::i;56645:123::-;;;;;;;;;;-1:-1:-1;56645:123:0;;;;;:::i;:::-;;:::i;43674:233::-;;;;;;;;;;-1:-1:-1;43674:233:0;;;;;:::i;:::-;;:::i;49971:33::-;;;;;;;;;;;;;:::i;50413:97::-;;;;;;;;;;-1:-1:-1;50413:97:0;;;;;:::i;:::-;;:::i;57387:178::-;;;;;;;;;;-1:-1:-1;57387:178:0;;;;;:::i;:::-;;:::i;49689:29::-;;;;;;;;;;;;;:::i;30520:239::-;;;;;;;;;;-1:-1:-1;30520:239:0;;;;;:::i;:::-;;:::i;50011:36::-;;;;;;;;;;;;;:::i;49201:25::-;;;;;;;;;;;;;:::i;49634:39::-;;;;;;;;;;;;;:::i;30250:208::-;;;;;;;;;;-1:-1:-1;30250:208:0;;;;;:::i;:::-;;:::i;50627:104::-;;;;;;;;;;;;;:::i;29548:22::-;;;;;;;;;;;;;:::i;52215:868::-;;;;;;;;;;-1:-1:-1;52215:868:0;;;;;:::i;:::-;;:::i;51075:144::-;;;;;;;;;;-1:-1:-1;51075:144:0;;;;;:::i;:::-;;:::i;56286:351::-;;;;;;;;;;-1:-1:-1;56286:351:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;50737:99::-;;;;;;;;;;;;;:::i;27416:87::-;;;;;;;;;;;;;:::i;56941:295::-;;;;;;;;;;-1:-1:-1;56941:295:0;;;;;:::i;:::-;;:::i;30995:104::-;;;;;;;;;;;;;:::i;54236:1034::-;;;;;;:::i;:::-;;:::i;32673:295::-;;;;;;;;;;-1:-1:-1;32673:295:0;;;;;:::i;:::-;;:::i;49542:38::-;;;;;;;;;;;;;:::i;49587:37::-;;;;;;;;;;;;;:::i;49367:44::-;;;;;;;;;;;;;:::i;49275:34::-;;;;;;;;;;;;;:::i;51229:110::-;;;;;;;;;;-1:-1:-1;51229:110:0;;;;;:::i;:::-;;:::i;33936:328::-;;;;;;;;;;-1:-1:-1;33936:328:0;;;;;:::i;:::-;;:::i;53091:1137::-;;;;;;:::i;:::-;;:::i;52118:83::-;;;;;;;;;;;;;:::i;50842:101::-;;;;;;;;;;;;;:::i;49935:29::-;;;;;;;;;;;;;:::i;51707:408::-;;;;;;;;;;-1:-1:-1;51707:408:0;;;;;:::i;:::-;;:::i;49318:41::-;;;;;;;;;;;;;:::i;51345:138::-;;;;;;;;;;-1:-1:-1;51345:138:0;;;;;:::i;:::-;;:::i;50518:103::-;;;;;;;;;;;;;:::i;57246:133::-;;;;;;;;;;-1:-1:-1;57246:133:0;;;;;:::i;:::-;;:::i;56774:161::-;;;;;;;;;;-1:-1:-1;56774:161:0;;;;;:::i;:::-;;:::i;51602:97::-;;;;;;;;;;;;;:::i;58227:316::-;;;;;;;;;;-1:-1:-1;58227:316:0;;;;;:::i;:::-;;:::i;33039:164::-;;;;;;;;;;-1:-1:-1;33039:164:0;;;;;:::i;:::-;;:::i;58035:186::-;;;;;;;;;;-1:-1:-1;58035:186:0;;;;;:::i;:::-;;:::i;28216:192::-;;;;;;;;;;-1:-1:-1;28216:192:0;;;;;:::i;:::-;;:::i;49496:39::-;;;;;;;;;;;;;:::i;42844:224::-;42946:4;-1:-1:-1;;;;;;42970:50:0;;-1:-1:-1;;;42970:50:0;;:90;;;43024:36;43048:11;43024:23;:36::i;:::-;42963:97;;42844:224;;;;:::o;30826:100::-;30880:13;30913:5;30906:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30826:100;:::o;32380:221::-;32456:7;32484:16;32492:7;32484;:16::i;:::-;32476:73;;;;-1:-1:-1;;;32476:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;32569:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32569:24:0;;32380:221::o;31903:411::-;31984:13;32000:23;32015:7;32000:14;:23::i;:::-;31984:39;;32048:5;-1:-1:-1;;;;;32042:11:0;:2;-1:-1:-1;;;;;32042:11:0;;;32034:57;;;;-1:-1:-1;;;32034:57:0;;;;;;;:::i;:::-;32142:5;-1:-1:-1;;;;;32126:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;32126:21:0;;:62;;;;32151:37;32168:5;32175:12;:10;:12::i;32151:37::-;32104:168;;;;-1:-1:-1;;;32104:168:0;;;;;;;:::i;:::-;32285:21;32294:2;32298:7;32285:8;:21::i;:::-;31903:411;;;:::o;49233:35::-;;;;:::o;57887:140::-;-1:-1:-1;;;;;57982:29:0;57958:4;57982:29;;;:19;:29;;;;;;;;:37;;:29;:37;;57887:140::o;43484:113::-;43572:10;:17;43484:113;:::o;55278:785::-;55385:3;55370:12;55344:23;55354:12;:10;:12::i;55344:23::-;:38;;;;:::i;:::-;:44;55336:90;;;;-1:-1:-1;;;55336:90:0;;;;;;;:::i;:::-;55461:3;55445:12;;:19;;55437:65;;;;-1:-1:-1;;;55437:65:0;;;;;;;:::i;:::-;55521:26;55534:12;:10;:12::i;55521:26::-;55513:54;;;;-1:-1:-1;;;55513:54:0;;;;;;;:::i;:::-;55601:1;55586:12;:16;55578:48;;;;-1:-1:-1;;;55578:48:0;;;;;;;:::i;:::-;55685:3;55659:23;55669:12;:10;:12::i;55659:23::-;:29;55637:110;;;;-1:-1:-1;;;55637:110:0;;;;;;;:::i;:::-;49190:4;55796:12;55780:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:44;;55758:129;;;;-1:-1:-1;;;55758:129:0;;;;;;;:::i;:::-;55903:6;55898:158;55919:12;55915:1;:16;55898:158;;;55953:36;55963:10;55975:13;:11;:13::i;:::-;55953:9;:36::i;:::-;56004:7;:9;;;:7;:9;;;:::i;:::-;;;;-1:-1:-1;;56028:12:0;:14;;;:12;:14;;;:::i;:::-;;;;;;55933:3;;;;;:::i;:::-;;;;55898:158;;;;55278:785;:::o;57571:308::-;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;57668:17;;57651:14:::1;57696:176;57720:6;57716:1;:10;57696:176;;;57753:31;57770:10;57781:1;57770:13;;;;;;-1:-1:-1::0;;;57770:13:0::1;;;;;;;;;;;;;;;57753:16;:31::i;:::-;57748:113;;57841:4;57805:18;:33;57824:10;57835:1;57824:13;;;;;;-1:-1:-1::0;;;57824:13:0::1;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;57805:33:0::1;-1:-1:-1::0;;;;;57805:33:0::1;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;57748:113;57728:3:::0;::::1;::::0;::::1;:::i;:::-;;;;57696:176;;56073:205:::0;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;56149:6:::1;56144:127;56165:12;56161:1;:16;56144:127;;;56199:36;56209:10;56221:13;:11;:13::i;56199:36::-;56250:7;:9:::0;;;:7:::1;:9;::::0;::::1;:::i;:::-;;;;;;56179:3;;;;;:::i;:::-;;;;56144:127;;33270:339:::0;33465:41;33484:12;:10;:12::i;:::-;33498:7;33465:18;:41::i;:::-;33457:103;;;;-1:-1:-1;;;33457:103:0;;;;;;;:::i;:::-;33573:28;33583:4;33589:2;33593:7;33573:9;:28::i;43152:256::-;43249:7;43285:23;43302:5;43285:16;:23::i;:::-;43277:5;:31;43269:87;;;;-1:-1:-1;;;43269:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;43374:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;43152:256::o;58551:140::-;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;58646:37:::1;::::0;58614:21:::1;::::0;58654:10:::1;::::0;58646:37;::::1;;;::::0;58614:21;;58599:12:::1;58646:37:::0;58599:12;58646:37;58614:21;58654:10;58646:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;33680:185:::0;33818:39;33835:4;33841:2;33845:7;33818:39;;;;;;;;;;;;:16;:39::i;50953:116::-;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;51032:17:::1;:29:::0;50953:116::o;56645:123::-;-1:-1:-1;;;;;56730:22:0;56706:4;56730:22;;;:12;:22;;;;;;;;:30;;:22;:30;;56645:123::o;43674:233::-;43749:7;43785:30;:28;:30::i;:::-;43777:5;:38;43769:95;;;;-1:-1:-1;;;43769:95:0;;;;;;;:::i;:::-;43882:10;43893:5;43882:17;;;;;;-1:-1:-1;;;43882:17:0;;;;;;;;;;;;;;;;;43875:24;;43674:233;;;:::o;49971:33::-;;;;:::o;50413:97::-;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;50484:18;;::::1;::::0;:8:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;57387:178::-:0;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;57468:26:::1;57485:8;57468:16;:26::i;:::-;57463:95;;-1:-1:-1::0;;;;;57511:28:0;::::1;;::::0;;;:18:::1;:28;::::0;;;;:35;;-1:-1:-1;;57511:35:0::1;57542:4;57511:35;::::0;;57463:95:::1;57387:178:::0;:::o;49689:29::-;;;;;;;;;:::o;30520:239::-;30592:7;30628:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30628:16:0;30663:19;30655:73;;;;-1:-1:-1;;;30655:73:0;;;;;;;:::i;50011:36::-;;;;:::o;49201:25::-;;;;:::o;49634:39::-;;;;;;;;;:::o;30250:208::-;30322:7;-1:-1:-1;;;;;30350:19:0;;30342:74;;;;-1:-1:-1;;;30342:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;30434:16:0;;;;;:9;:16;;;;;;;30250:208::o;50627:104::-;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;50705:18:::1;::::0;;-1:-1:-1;;50683:40:0;::::1;50705:18;::::0;;;::::1;;;50704:19;50683:40:::0;;::::1;;::::0;;50627:104::o;29548:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52215:868::-;52325:1;52310:12;52284:23;52294:12;:10;:12::i;52284:23::-;:38;;;;:::i;:::-;:42;52276:85;;;;-1:-1:-1;;;52276:85:0;;;;;;;:::i;:::-;52400:3;52380:16;;:23;;52372:57;;;;-1:-1:-1;;;52372:57:0;;;;;;;:::i;:::-;52448:36;52471:12;:10;:12::i;52448:36::-;52440:64;;;;-1:-1:-1;;;52440:64:0;;;;;;;:::i;:::-;52523:19;;;;:27;;:19;:27;52515:72;;;;-1:-1:-1;;;52515:72:0;;;;;;;:::i;:::-;52621:1;52606:12;:16;52598:48;;;;-1:-1:-1;;;52598:48:0;;;;;;;:::i;:::-;52705:1;52679:23;52689:12;:10;:12::i;52679:23::-;:27;52657:108;;;;-1:-1:-1;;;52657:108:0;;;;;;;:::i;:::-;49190:4;52814:12;52798:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:44;;52776:129;;;;-1:-1:-1;;;52776:129:0;;;;;;;:::i;:::-;52921:6;52916:160;52937:12;52933:1;:16;52916:160;;;52971:36;52981:10;52993:13;:11;:13::i;52971:36::-;53022:7;:9;;;:7;:9;;;:::i;:::-;;;;-1:-1:-1;;53046:16:0;:18;;;:16;:18;;;:::i;:::-;;;;;;52951:3;;;;;:::i;:::-;;;;52916:160;;51075:144;51145:7;51194:17;;51184:9;:27;;;;:::i;56286:351::-;56346:16;56380:13;56396:17;56406:6;56396:9;:17::i;:::-;56380:33;;56424:23;56464:5;56450:20;;;;;;-1:-1:-1;;;56450:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56450:20:0;;56424:46;;56486:13;56481:125;56513:5;56505;:13;56481:125;;;56560:34;56580:6;56588:5;56560:19;:34::i;:::-;56544:6;56551:5;56544:13;;;;;;-1:-1:-1;;;56544:13:0;;;;;;;;;;;;;;;;;;:50;56520:7;;;;:::i;:::-;;;;56481:125;;;-1:-1:-1;56623:6:0;56286:351;-1:-1:-1;;;56286:351:0:o;50737:99::-;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;50811:17:::1;::::0;;-1:-1:-1;;50790:38:0;::::1;50811:17:::0;;;;::::1;;;50810:18;50790:38:::0;;::::1;;::::0;;50737:99::o;27416:87::-;27489:6;;-1:-1:-1;;;;;27489:6:0;27416:87;:::o;56941:295::-;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;57035:17;;57018:14:::1;57063:166;57087:6;57083:1;:10;57063:166;;;57120:27;57133:10;57144:1;57133:13;;;;;;-1:-1:-1::0;;;57133:13:0::1;;;;;;;;;;;;;;;57120:12;:27::i;:::-;57115:103;;57198:4;57168:12;:27;57181:10;57192:1;57181:13;;;;;;-1:-1:-1::0;;;57181:13:0::1;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;57168:27:0::1;-1:-1:-1::0;;;;;57168:27:0::1;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;57115:103;57095:3:::0;::::1;::::0;::::1;:::i;:::-;;;;57063:166;;30995:104:::0;31051:13;31084:7;31077:14;;;;;:::i;54236:1034::-;54343:2;54328:12;54302:23;54312:12;:10;:12::i;54302:23::-;:38;;;;:::i;:::-;:43;54294:88;;;;-1:-1:-1;;;54294:88:0;;;;;;;:::i;:::-;49190:4;54415:12;54401:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:40;;54393:90;;;;-1:-1:-1;;;54393:90:0;;;;;;;:::i;:::-;54502:17;;;;;;;:25;;54523:4;54502:25;54494:70;;;;-1:-1:-1;;;54494:70:0;;;;;;;:::i;:::-;54598:1;54583:12;:16;54575:80;;;;-1:-1:-1;;;54575:80:0;;;;;;;:::i;:::-;54690:2;54674:12;:18;;54666:82;;;;-1:-1:-1;;;54666:82:0;;;;;;;:::i;:::-;54767:16;;54805:9;;54767:34;;54788:12;54767:20;:34::i;:::-;:47;54759:89;;;;-1:-1:-1;;;54759:89:0;;;;;;;:::i;:::-;54907:2;54881:23;54891:12;:10;:12::i;54881:23::-;:28;54859:109;;;;-1:-1:-1;;;54859:109:0;;;;;;;:::i;:::-;55050:12;55028:19;;:34;;;;:::i;:::-;55001:23;55011:12;:10;:12::i;55001:23::-;:61;;54979:142;;;;-1:-1:-1;;;54979:142:0;;;;;;;:::i;:::-;55137:6;55132:131;55153:12;55149:1;:16;55132:131;;;55187:36;55197:10;55209:13;:11;:13::i;55187:36::-;55238:7;:9;;;:7;:9;;;:::i;:::-;;;;;;55167:3;;;;;:::i;:::-;;;;55132:131;;32673:295;32788:12;:10;:12::i;:::-;-1:-1:-1;;;;;32776:24:0;:8;-1:-1:-1;;;;;32776:24:0;;;32768:62;;;;-1:-1:-1;;;32768:62:0;;;;;;;:::i;:::-;32888:8;32843:18;:32;32862:12;:10;:12::i;:::-;-1:-1:-1;;;;;32843:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;32843:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;32843:53:0;;;;;;;;;;;32927:12;:10;:12::i;:::-;-1:-1:-1;;;;;32912:48:0;;32951:8;32912:48;;;;;;:::i;:::-;;;;;;;;32673:295;;:::o;49542:38::-;;;;;;;;;:::o;49587:37::-;;;;;;;;;:::o;49367:44::-;;;;:::o;49275:34::-;;;;:::o;51229:110::-;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;51303:16:::1;:28:::0;51229:110::o;33936:328::-;34111:41;34130:12;:10;:12::i;:::-;34144:7;34111:18;:41::i;:::-;34103:103;;;;-1:-1:-1;;;34103:103:0;;;;;;;:::i;:::-;34217:39;34231:4;34237:2;34241:7;34250:5;34217:13;:39::i;:::-;33936:328;;;;:::o;53091:1137::-;53210:2;53195:12;53169:23;53179:12;:10;:12::i;53169:23::-;:38;;;;:::i;:::-;:43;53161:88;;;;-1:-1:-1;;;53161:88:0;;;;;;;:::i;:::-;53291:3;53268:19;;:26;;53260:59;;;;-1:-1:-1;;;53260:59:0;;;;;;;:::i;:::-;53338:30;53355:12;:10;:12::i;53338:30::-;53330:58;;;;-1:-1:-1;;;53330:58:0;;;;;;;:::i;:::-;53407:18;;;;;;;;:26;;:18;:26;53399:71;;;;-1:-1:-1;;;53399:71:0;;;;;;;:::i;:::-;53504:1;53489:12;:16;53481:48;;;;-1:-1:-1;;;53481:48:0;;;;;;;:::i;:::-;53564:2;53548:12;:18;;53540:51;;;;-1:-1:-1;;;53540:51:0;;;;;;;:::i;:::-;53661:3;53638:19;;53626:9;;53610:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:47;;;;:::i;:::-;:54;;53602:84;;;;-1:-1:-1;;;53602:84:0;;;;;;;:::i;:::-;53705:17;;53744:9;;53705:35;;53727:12;53705:21;:35::i;:::-;:48;53697:90;;;;-1:-1:-1;;;53697:90:0;;;;;;;:::i;:::-;53846:2;53820:23;53830:12;:10;:12::i;53820:23::-;:28;53798:109;;;;-1:-1:-1;;;53798:109:0;;;;;;;:::i;:::-;49190:4;53956:12;53940:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:44;;53918:129;;;;-1:-1:-1;;;53918:129:0;;;;;;;:::i;:::-;54063:6;54058:163;54079:12;54075:1;:16;54058:163;;;54113:36;54123:10;54135:13;:11;:13::i;54113:36::-;54164:7;:9;;;:7;:9;;;:::i;:::-;;;;-1:-1:-1;;54188:19:0;:21;;;:19;:21;;;:::i;:::-;;;;;;54093:3;;;;;:::i;:::-;;;;54058:163;;52118:83;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;52186:9:::1;::::0;;-1:-1:-1;;52173:22:0;::::1;52186:9:::0;;;;::::1;;;52185:10;52173:22:::0;;::::1;;::::0;;52118:83::o;50842:101::-;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;50916:19:::1;::::0;;-1:-1:-1;;50893:42:0;::::1;50916:19:::0;;;;::::1;;;50915:20;50893:42:::0;;::::1;;::::0;;50842:101::o;49935:29::-;;;;:::o;51707:408::-;51786:13;51822:16;51830:7;51822;:16::i;:::-;51814:60;;;;-1:-1:-1;;;51814:60:0;;;;;;;:::i;:::-;51884:9;;;;;;;51881:229;;;51901:21;51925:8;51901:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51978:1;51960:7;51954:21;:25;:104;;;;;;;;;;;;;;;;;52015:7;52024:18;:7;:16;:18::i;:::-;51998:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51954:104;51940:118;;;;;51881:229;52087:15;52080:22;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49318:41;;;;:::o;51345:138::-;51410:7;51459:16;;51449:9;:26;;;;:::i;50518:103::-;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;50594:19:::1;::::0;;-1:-1:-1;;50571:42:0;::::1;50594:19;::::0;;::::1;50593:20;50571:42;::::0;;50518:103::o;57246:133::-;-1:-1:-1;;;;;57335:28:0;57311:4;57335:28;;;:18;:28;;;;;;;;:36;;:28;:36;;57246:133::o;56774:161::-;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;56848:22:::1;56861:8;56848:12;:22::i;:::-;56843:85;;-1:-1:-1::0;;;;;56887:22:0;::::1;;::::0;;;:12:::1;:22;::::0;;;;:29;;-1:-1:-1;;56887:29:0::1;56912:4;56887:29;::::0;;56774:161;:::o;51602:97::-;51646:13;51679:12;51672:19;;;;;:::i;58227:316::-;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;58325:17;;58308:14:::1;58353:183;58377:6;58373:1;:10;58353:183;;;58410:37;58433:10;58444:1;58433:13;;;;;;-1:-1:-1::0;;;58433:13:0::1;;;;;;;;;;;;;;;58410:22;:37::i;:::-;58405:120;;58505:4;58468:19;:34;58488:10;58499:1;58488:13;;;;;;-1:-1:-1::0;;;58488:13:0::1;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;58468:34:0::1;-1:-1:-1::0;;;;;58468:34:0::1;;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;58405:120;58385:3:::0;::::1;::::0;::::1;:::i;:::-;;;;58353:183;;33039:164:::0;-1:-1:-1;;;;;33160:25:0;;;33136:4;33160:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33039:164::o;58035:186::-;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;58117:32:::1;58140:8;58117:22;:32::i;:::-;58112:102;;-1:-1:-1::0;;;;;58166:29:0;::::1;;::::0;;;:19:::1;:29;::::0;;;;:36;;-1:-1:-1;;58166:36:0::1;58198:4;58166:36;::::0;;58035:186;:::o;28216:192::-;27647:12;:10;:12::i;:::-;-1:-1:-1;;;;;27636:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;27636:23:0;;27628:68;;;;-1:-1:-1;;;27628:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28305:22:0;::::1;28297:73;;;;-1:-1:-1::0;;;28297:73:0::1;;;;;;;:::i;:::-;28381:19;28391:8;28381:9;:19::i;49496:39::-:0;;;;;;:::o;29881:305::-;29983:4;-1:-1:-1;;;;;;30020:40:0;;-1:-1:-1;;;30020:40:0;;:105;;-1:-1:-1;;;;;;;30077:48:0;;-1:-1:-1;;;30077:48:0;30020:105;:158;;;;30142:36;30166:11;30142:23;:36::i;35774:127::-;35839:4;35863:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35863:16:0;:30;;;35774:127::o;26167:98::-;26247:10;26167:98;:::o;39756:174::-;39831:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;39831:29:0;-1:-1:-1;;;;;39831:29:0;;;;;;;;:24;;39885:23;39831:24;39885:14;:23::i;:::-;-1:-1:-1;;;;;39876:46:0;;;;;;;;;;;39756:174;;:::o;58701:89::-;58775:7;;58701:89;:::o;36758:110::-;36834:26;36844:2;36848:7;36834:26;;;;;;;;;;;;:9;:26::i;36068:348::-;36161:4;36186:16;36194:7;36186;:16::i;:::-;36178:73;;;;-1:-1:-1;;;36178:73:0;;;;;;;:::i;:::-;36262:13;36278:23;36293:7;36278:14;:23::i;:::-;36262:39;;36331:5;-1:-1:-1;;;;;36320:16:0;:7;-1:-1:-1;;;;;36320:16:0;;:51;;;;36364:7;-1:-1:-1;;;;;36340:31:0;:20;36352:7;36340:11;:20::i;:::-;-1:-1:-1;;;;;36340:31:0;;36320:51;:87;;;;36375:32;36392:5;36399:7;36375:16;:32::i;:::-;36312:96;36068:348;-1:-1:-1;;;;36068:348:0:o;39060:578::-;39219:4;-1:-1:-1;;;;;39192:31:0;:23;39207:7;39192:14;:23::i;:::-;-1:-1:-1;;;;;39192:31:0;;39184:85;;;;-1:-1:-1;;;39184:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39288:16:0;;39280:65;;;;-1:-1:-1;;;39280:65:0;;;;;;;:::i;:::-;39358:39;39379:4;39385:2;39389:7;39358:20;:39::i;:::-;39462:29;39479:1;39483:7;39462:8;:29::i;:::-;-1:-1:-1;;;;;39504:15:0;;;;;;:9;:15;;;;;:20;;39523:1;;39504:15;:20;;39523:1;;39504:20;:::i;:::-;;;;-1:-1:-1;;;;;;;39535:13:0;;;;;;:9;:13;;;;;:18;;39552:1;;39535:13;:18;;39552:1;;39535:18;:::i;:::-;;;;-1:-1:-1;;39564:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39564:21:0;-1:-1:-1;;;;;39564:21:0;;;;;;;;;39603:27;;39564:16;;39603:27;;;;;;;39060:578;;;:::o;3501:98::-;3559:7;3586:5;3590:1;3586;:5;:::i;:::-;3579:12;3501:98;-1:-1:-1;;;3501:98:0:o;35146:315::-;35303:28;35313:4;35319:2;35323:7;35303:9;:28::i;:::-;35350:48;35373:4;35379:2;35383:7;35392:5;35350:22;:48::i;:::-;35342:111;;;;-1:-1:-1;;;35342:111:0;;;;;;;:::i;7181:723::-;7237:13;7458:10;7454:53;;-1:-1:-1;7485:10:0;;;;;;;;;;;;-1:-1:-1;;;7485:10:0;;;;;;7454:53;7532:5;7517:12;7573:78;7580:9;;7573:78;;7606:8;;;;:::i;:::-;;-1:-1:-1;7629:10:0;;-1:-1:-1;7637:2:0;7629:10;;:::i;:::-;;;7573:78;;;7661:19;7693:6;7683:17;;;;;;-1:-1:-1;;;7683:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7683:17:0;;7661:39;;7711:154;7718:10;;7711:154;;7745:11;7755:1;7745:11;;:::i;:::-;;-1:-1:-1;7814:10:0;7822:2;7814:5;:10;:::i;:::-;7801:24;;:2;:24;:::i;:::-;7788:39;;7771:6;7778;7771:14;;;;;;-1:-1:-1;;;7771:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;7771:56:0;;;;;;;;-1:-1:-1;7842:11:0;7851:2;7842:11;;:::i;:::-;;;7711:154;;28416:173;28491:6;;;-1:-1:-1;;;;;28508:17:0;;;-1:-1:-1;;;;;;28508:17:0;;;;;;;28541:40;;28491:6;;;28508:17;28491:6;;28541:40;;28472:16;;28541:40;28416:173;;:::o;19153:157::-;-1:-1:-1;;;;;;19262:40:0;;-1:-1:-1;;;19262:40:0;19153:157;;;:::o;37095:321::-;37225:18;37231:2;37235:7;37225:5;:18::i;:::-;37276:54;37307:1;37311:2;37315:7;37324:5;37276:22;:54::i;:::-;37254:154;;;;-1:-1:-1;;;37254:154:0;;;;;;;:::i;44520:589::-;44664:45;44691:4;44697:2;44701:7;44664:26;:45::i;:::-;-1:-1:-1;;;;;44726:18:0;;44722:187;;44761:40;44793:7;44761:31;:40::i;:::-;44722:187;;;44831:2;-1:-1:-1;;;;;44823:10:0;:4;-1:-1:-1;;;;;44823:10:0;;44819:90;;44850:47;44883:4;44889:7;44850:32;:47::i;:::-;-1:-1:-1;;;;;44923:16:0;;44919:183;;44956:45;44993:7;44956:36;:45::i;:::-;44919:183;;;45029:4;-1:-1:-1;;;;;45023:10:0;:2;-1:-1:-1;;;;;45023:10:0;;45019:83;;45050:40;45078:2;45082:7;45050:27;:40::i;40495:803::-;40650:4;40671:15;:2;-1:-1:-1;;;;;40671:13:0;;:15::i;:::-;40667:624;;;40723:2;-1:-1:-1;;;;;40707:36:0;;40744:12;:10;:12::i;:::-;40758:4;40764:7;40773:5;40707:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40707:72:0;;;;;;;;-1:-1:-1;;40707:72:0;;;;;;;;;;;;:::i;:::-;;;40703:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40953:13:0;;40949:272;;40996:60;;-1:-1:-1;;;40996:60:0;;;;;;;:::i;40949:272::-;41171:6;41165:13;41156:6;41152:2;41148:15;41141:38;40703:533;-1:-1:-1;;;;;;40830:55:0;-1:-1:-1;;;40830:55:0;;-1:-1:-1;40823:62:0;;40667:624;-1:-1:-1;41275:4:0;40495:803;;;;;;:::o;37752:382::-;-1:-1:-1;;;;;37832:16:0;;37824:61;;;;-1:-1:-1;;;37824:61:0;;;;;;;:::i;:::-;37905:16;37913:7;37905;:16::i;:::-;37904:17;37896:58;;;;-1:-1:-1;;;37896:58:0;;;;;;;:::i;:::-;37967:45;37996:1;38000:2;38004:7;37967:20;:45::i;:::-;-1:-1:-1;;;;;38025:13:0;;;;;;:9;:13;;;;;:18;;38042:1;;38025:13;:18;;38042:1;;38025:18;:::i;:::-;;;;-1:-1:-1;;38054:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38054:21:0;-1:-1:-1;;;;;38054:21:0;;;;;;;;38093:33;;38054:16;;;38093:33;;38054:16;;38093:33;37752:382;;:::o;45832:164::-;45936:10;:17;;45909:24;;;;:15;:24;;;;;:44;;;45964:24;;;;;;;;;;;;45832:164::o;46623:988::-;46889:22;46939:1;46914:22;46931:4;46914:16;:22::i;:::-;:26;;;;:::i;:::-;46951:18;46972:26;;;:17;:26;;;;;;46889:51;;-1:-1:-1;47105:28:0;;;47101:328;;-1:-1:-1;;;;;47172:18:0;;47150:19;47172:18;;;:12;:18;;;;;;;;:34;;;;;;;;;47223:30;;;;;;:44;;;47340:30;;:17;:30;;;;;:43;;;47101:328;-1:-1:-1;47525:26:0;;;;:17;:26;;;;;;;;47518:33;;;-1:-1:-1;;;;;47569:18:0;;;;;:12;:18;;;;;:34;;;;;;;47562:41;46623:988::o;47906:1079::-;48184:10;:17;48159:22;;48184:21;;48204:1;;48184:21;:::i;:::-;48216:18;48237:24;;;:15;:24;;;;;;48610:10;:26;;48159:46;;-1:-1:-1;48237:24:0;;48159:46;;48610:26;;;;-1:-1:-1;;;48610:26:0;;;;;;;;;;;;;;;;;48588:48;;48674:11;48649:10;48660;48649:22;;;;;;-1:-1:-1;;;48649:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;48754:28;;;:15;:28;;;;;;;:41;;;48926:24;;;;;48919:31;48961:10;:16;;;;;-1:-1:-1;;;48961:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;47906:1079;;;;:::o;45410:221::-;45495:14;45512:20;45529:2;45512:16;:20::i;:::-;-1:-1:-1;;;;;45543:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;45588:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;45410:221:0:o;9648:387::-;9971:20;10019:8;;;9648:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:409:1;;114:18;106:6;103:30;100:2;;;136:18;;:::i;:::-;174:58;220:2;197:17;;-1:-1:-1;;193:31:1;226:4;189:42;174:58;:::i;:::-;165:67;;255:6;248:5;241:21;295:3;286:6;281:3;277:16;274:25;271:2;;;312:1;309;302:12;271:2;361:6;356:3;349:4;342:5;338:16;325:43;415:1;408:4;399:6;392:5;388:18;384:29;377:40;90:333;;;;;:::o;428:175::-;498:20;;-1:-1:-1;;;;;547:31:1;;537:42;;527:2;;593:1;590;583:12;608:198;;720:2;708:9;699:7;695:23;691:32;688:2;;;741:6;733;726:22;688:2;769:31;790:9;769:31;:::i;811:274::-;;;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:31;1010:9;989:31;:::i;:::-;979:41;;1039:40;1075:2;1064:9;1060:18;1039:40;:::i;:::-;1029:50;;898:187;;;;;:::o;1090:342::-;;;;1236:2;1224:9;1215:7;1211:23;1207:32;1204:2;;;1257:6;1249;1242:22;1204:2;1285:31;1306:9;1285:31;:::i;:::-;1275:41;;1335:40;1371:2;1360:9;1356:18;1335:40;:::i;:::-;1325:50;;1422:2;1411:9;1407:18;1394:32;1384:42;;1194:238;;;;;:::o;1437:702::-;;;;;1609:3;1597:9;1588:7;1584:23;1580:33;1577:2;;;1631:6;1623;1616:22;1577:2;1659:31;1680:9;1659:31;:::i;:::-;1649:41;;1709:40;1745:2;1734:9;1730:18;1709:40;:::i;:::-;1699:50;;1796:2;1785:9;1781:18;1768:32;1758:42;;1851:2;1840:9;1836:18;1823:32;1878:18;1870:6;1867:30;1864:2;;;1915:6;1907;1900:22;1864:2;1943:22;;1996:4;1988:13;;1984:27;-1:-1:-1;1974:2:1;;2030:6;2022;2015:22;1974:2;2058:75;2125:7;2120:2;2107:16;2102:2;2098;2094:11;2058:75;:::i;:::-;2048:85;;;1567:572;;;;;;;:::o;2144:369::-;;;2270:2;2258:9;2249:7;2245:23;2241:32;2238:2;;;2291:6;2283;2276:22;2238:2;2319:31;2340:9;2319:31;:::i;:::-;2309:41;;2400:2;2389:9;2385:18;2372:32;2447:5;2440:13;2433:21;2426:5;2423:32;2413:2;;2474:6;2466;2459:22;2413:2;2502:5;2492:15;;;2228:285;;;;;:::o;2518:266::-;;;2647:2;2635:9;2626:7;2622:23;2618:32;2615:2;;;2668:6;2660;2653:22;2615:2;2696:31;2717:9;2696:31;:::i;:::-;2686:41;2774:2;2759:18;;;;2746:32;;-1:-1:-1;;;2605:179:1:o;2789:1010::-;;2904:2;2947;2935:9;2926:7;2922:23;2918:32;2915:2;;;2968:6;2960;2953:22;2915:2;3013:9;3000:23;3042:18;3083:2;3075:6;3072:14;3069:2;;;3104:6;3096;3089:22;3069:2;3147:6;3136:9;3132:22;3122:32;;3192:7;3185:4;3181:2;3177:13;3173:27;3163:2;;3219:6;3211;3204:22;3163:2;3260;3247:16;3282:2;3278;3275:10;3272:2;;;3288:18;;:::i;:::-;3335:2;3331;3327:11;3317:21;;3358:27;3381:2;3377;3373:11;3358:27;:::i;:::-;3419:15;;;3450:12;;;;3482:11;;;3512;;;3508:20;;3505:33;-1:-1:-1;3502:2:1;;;3556:6;3548;3541:22;3502:2;3583:6;3574:15;;3598:171;3612:2;3609:1;3606:9;3598:171;;;3669:25;3690:3;3669:25;:::i;:::-;3657:38;;3630:1;3623:9;;;;;3715:12;;;;3747;;3598:171;;;-1:-1:-1;3788:5:1;2884:915;-1:-1:-1;;;;;;;;2884:915:1:o;3804:257::-;;3915:2;3903:9;3894:7;3890:23;3886:32;3883:2;;;3936:6;3928;3921:22;3883:2;3980:9;3967:23;3999:32;4025:5;3999:32;:::i;4066:261::-;;4188:2;4176:9;4167:7;4163:23;4159:32;4156:2;;;4209:6;4201;4194:22;4156:2;4246:9;4240:16;4265:32;4291:5;4265:32;:::i;4332:482::-;;4454:2;4442:9;4433:7;4429:23;4425:32;4422:2;;;4475:6;4467;4460:22;4422:2;4520:9;4507:23;4553:18;4545:6;4542:30;4539:2;;;4590:6;4582;4575:22;4539:2;4618:22;;4671:4;4663:13;;4659:27;-1:-1:-1;4649:2:1;;4705:6;4697;4690:22;4649:2;4733:75;4800:7;4795:2;4782:16;4777:2;4773;4769:11;4733:75;:::i;4819:190::-;;4931:2;4919:9;4910:7;4906:23;4902:32;4899:2;;;4952:6;4944;4937:22;4899:2;-1:-1:-1;4980:23:1;;4889:120;-1:-1:-1;4889:120:1:o;5014:259::-;;5095:5;5089:12;5122:6;5117:3;5110:19;5138:63;5194:6;5187:4;5182:3;5178:14;5171:4;5164:5;5160:16;5138:63;:::i;:::-;5255:2;5234:15;-1:-1:-1;;5230:29:1;5221:39;;;;5262:4;5217:50;;5065:208;-1:-1:-1;;5065:208:1:o;5278:470::-;;5495:6;5489:13;5511:53;5557:6;5552:3;5545:4;5537:6;5533:17;5511:53;:::i;:::-;5627:13;;5586:16;;;;5649:57;5627:13;5586:16;5683:4;5671:17;;5649:57;:::i;:::-;5722:20;;5465:283;-1:-1:-1;;;;5465:283:1:o;5753:203::-;-1:-1:-1;;;;;5917:32:1;;;;5899:51;;5887:2;5872:18;;5854:102::o;5961:490::-;-1:-1:-1;;;;;6230:15:1;;;6212:34;;6282:15;;6277:2;6262:18;;6255:43;6329:2;6314:18;;6307:34;;;6377:3;6372:2;6357:18;;6350:31;;;5961:490;;6398:47;;6425:19;;6417:6;6398:47;:::i;:::-;6390:55;6164:287;-1:-1:-1;;;;;;6164:287:1:o;6456:635::-;6627:2;6679:21;;;6749:13;;6652:18;;;6771:22;;;6456:635;;6627:2;6850:15;;;;6824:2;6809:18;;;6456:635;6896:169;6910:6;6907:1;6904:13;6896:169;;;6971:13;;6959:26;;7040:15;;;;7005:12;;;;6932:1;6925:9;6896:169;;;-1:-1:-1;7082:3:1;;6607:484;-1:-1:-1;;;;;;6607:484:1:o;7096:187::-;7261:14;;7254:22;7236:41;;7224:2;7209:18;;7191:92::o;7288:221::-;;7437:2;7426:9;7419:21;7457:46;7499:2;7488:9;7484:18;7476:6;7457:46;:::i;7514:415::-;7716:2;7698:21;;;7755:2;7735:18;;;7728:30;7794:34;7789:2;7774:18;;7767:62;-1:-1:-1;;;7860:2:1;7845:18;;7838:49;7919:3;7904:19;;7688:241::o;7934:407::-;8136:2;8118:21;;;8175:2;8155:18;;;8148:30;8214:34;8209:2;8194:18;;8187:62;-1:-1:-1;;;8280:2:1;8265:18;;8258:41;8331:3;8316:19;;8108:233::o;8346:414::-;8548:2;8530:21;;;8587:2;8567:18;;;8560:30;8626:34;8621:2;8606:18;;8599:62;-1:-1:-1;;;8692:2:1;8677:18;;8670:48;8750:3;8735:19;;8520:240::o;8765:402::-;8967:2;8949:21;;;9006:2;8986:18;;;8979:30;9045:34;9040:2;9025:18;;9018:62;-1:-1:-1;;;9111:2:1;9096:18;;9089:36;9157:3;9142:19;;8939:228::o;9172:356::-;9374:2;9356:21;;;9393:18;;;9386:30;9452:34;9447:2;9432:18;;9425:62;9519:2;9504:18;;9346:182::o;9533:352::-;9735:2;9717:21;;;9774:2;9754:18;;;9747:30;9813;9808:2;9793:18;;9786:58;9876:2;9861:18;;9707:178::o;9890:400::-;10092:2;10074:21;;;10131:2;10111:18;;;10104:30;10170:34;10165:2;10150:18;;10143:62;-1:-1:-1;;;10236:2:1;10221:18;;10214:34;10280:3;10265:19;;10064:226::o;10295:349::-;10497:2;10479:21;;;10536:2;10516:18;;;10509:30;10575:27;10570:2;10555:18;;10548:55;10635:2;10620:18;;10469:175::o;10649:344::-;10851:2;10833:21;;;10890:2;10870:18;;;10863:30;-1:-1:-1;;;10924:2:1;10909:18;;10902:50;10984:2;10969:18;;10823:170::o;10998:408::-;11200:2;11182:21;;;11239:2;11219:18;;;11212:30;11278:34;11273:2;11258:18;;11251:62;-1:-1:-1;;;11344:2:1;11329:18;;11322:42;11396:3;11381:19;;11172:234::o;11411:420::-;11613:2;11595:21;;;11652:2;11632:18;;;11625:30;11691:34;11686:2;11671:18;;11664:62;11762:26;11757:2;11742:18;;11735:54;11821:3;11806:19;;11585:246::o;11836:339::-;12038:2;12020:21;;;12077:2;12057:18;;;12050:30;-1:-1:-1;;;12111:2:1;12096:18;;12089:45;12166:2;12151:18;;12010:165::o;12180:406::-;12382:2;12364:21;;;12421:2;12401:18;;;12394:30;12460:34;12455:2;12440:18;;12433:62;-1:-1:-1;;;12526:2:1;12511:18;;12504:40;12576:3;12561:19;;12354:232::o;12591:405::-;12793:2;12775:21;;;12832:2;12812:18;;;12805:30;12871:34;12866:2;12851:18;;12844:62;-1:-1:-1;;;12937:2:1;12922:18;;12915:39;12986:3;12971:19;;12765:231::o;13001:341::-;13203:2;13185:21;;;13242:2;13222:18;;;13215:30;-1:-1:-1;;;13276:2:1;13261:18;;13254:47;13333:2;13318:18;;13175:167::o;13347:339::-;13549:2;13531:21;;;13588:2;13568:18;;;13561:30;-1:-1:-1;;;13622:2:1;13607:18;;13600:45;13677:2;13662:18;;13521:165::o;13691:355::-;13893:2;13875:21;;;13932:2;13912:18;;;13905:30;13971:33;13966:2;13951:18;;13944:61;14037:2;14022:18;;13865:181::o;14051:353::-;14253:2;14235:21;;;14292:2;14272:18;;;14265:30;14331:31;14326:2;14311:18;;14304:59;14395:2;14380:18;;14225:179::o;14409:356::-;14611:2;14593:21;;;14630:18;;;14623:30;14689:34;14684:2;14669:18;;14662:62;14756:2;14741:18;;14583:182::o;14770:397::-;14972:2;14954:21;;;15011:2;14991:18;;;14984:30;15050:34;15045:2;15030:18;;15023:62;-1:-1:-1;;;15116:2:1;15101:18;;15094:31;15157:3;15142:19;;14944:223::o;15172:408::-;15374:2;15356:21;;;15413:2;15393:18;;;15386:30;15452:34;15447:2;15432:18;;15425:62;-1:-1:-1;;;15518:2:1;15503:18;;15496:42;15570:3;15555:19;;15346:234::o;15585:344::-;15787:2;15769:21;;;15826:2;15806:18;;;15799:30;-1:-1:-1;;;15860:2:1;15845:18;;15838:50;15920:2;15905:18;;15759:170::o;15934:399::-;16136:2;16118:21;;;16175:2;16155:18;;;16148:30;16214:34;16209:2;16194:18;;16187:62;-1:-1:-1;;;16280:2:1;16265:18;;16258:33;16323:3;16308:19;;16108:225::o;16338:356::-;16540:2;16522:21;;;16559:18;;;16552:30;16618:34;16613:2;16598:18;;16591:62;16685:2;16670:18;;16512:182::o;16699:402::-;16901:2;16883:21;;;16940:2;16920:18;;;16913:30;16979:34;16974:2;16959:18;;16952:62;-1:-1:-1;;;17045:2:1;17030:18;;17023:36;17091:3;17076:19;;16873:228::o;17106:345::-;17308:2;17290:21;;;17347:2;17327:18;;;17320:30;-1:-1:-1;;;17381:2:1;17366:18;;17359:51;17442:2;17427:18;;17280:171::o;17456:405::-;17658:2;17640:21;;;17697:2;17677:18;;;17670:30;17736:34;17731:2;17716:18;;17709:62;-1:-1:-1;;;17802:2:1;17787:18;;17780:39;17851:3;17836:19;;17630:231::o;17866:356::-;18068:2;18050:21;;;18087:18;;;18080:30;18146:34;18141:2;18126:18;;18119:62;18213:2;18198:18;;18040:182::o;18227:397::-;18429:2;18411:21;;;18468:2;18448:18;;;18441:30;18507:34;18502:2;18487:18;;18480:62;-1:-1:-1;;;18573:2:1;18558:18;;18551:31;18614:3;18599:19;;18401:223::o;18629:413::-;18831:2;18813:21;;;18870:2;18850:18;;;18843:30;18909:34;18904:2;18889:18;;18882:62;-1:-1:-1;;;18975:2:1;18960:18;;18953:47;19032:3;19017:19;;18803:239::o;19047:343::-;19249:2;19231:21;;;19288:2;19268:18;;;19261:30;-1:-1:-1;;;19322:2:1;19307:18;;19300:49;19381:2;19366:18;;19221:169::o;19395:408::-;19597:2;19579:21;;;19636:2;19616:18;;;19609:30;19675:34;19670:2;19655:18;;19648:62;-1:-1:-1;;;19741:2:1;19726:18;;19719:42;19793:3;19778:19;;19569:234::o;19808:354::-;20010:2;19992:21;;;20049:2;20029:18;;;20022:30;20088:32;20083:2;20068:18;;20061:60;20153:2;20138:18;;19982:180::o;20167:356::-;20369:2;20351:21;;;20388:18;;;20381:30;20447:34;20442:2;20427:18;;20420:62;20514:2;20499:18;;20341:182::o;20528:397::-;20730:2;20712:21;;;20769:2;20749:18;;;20742:30;20808:34;20803:2;20788:18;;20781:62;-1:-1:-1;;;20874:2:1;20859:18;;20852:31;20915:3;20900:19;;20702:223::o;20930:177::-;21076:25;;;21064:2;21049:18;;21031:76::o;21112:251::-;21182:2;21176:9;21212:17;;;21259:18;21244:34;;21280:22;;;21241:62;21238:2;;;21306:18;;:::i;:::-;21342:2;21335:22;21156:207;;-1:-1:-1;21156:207:1:o;21368:128::-;;21439:1;21435:6;21432:1;21429:13;21426:2;;;21445:18;;:::i;:::-;-1:-1:-1;21481:9:1;;21416:80::o;21501:120::-;;21567:1;21557:2;;21572:18;;:::i;:::-;-1:-1:-1;21606:9:1;;21547:74::o;21626:168::-;;21732:1;21728;21724:6;21720:14;21717:1;21714:21;21709:1;21702:9;21695:17;21691:45;21688:2;;;21739:18;;:::i;:::-;-1:-1:-1;21779:9:1;;21678:116::o;21799:125::-;;21867:1;21864;21861:8;21858:2;;;21872:18;;:::i;:::-;-1:-1:-1;21909:9:1;;21848:76::o;21929:258::-;22001:1;22011:113;22025:6;22022:1;22019:13;22011:113;;;22101:11;;;22095:18;22082:11;;;22075:39;22047:2;22040:10;22011:113;;;22142:6;22139:1;22136:13;22133:2;;;-1:-1:-1;;22177:1:1;22159:16;;22152:27;21982:205::o;22192:380::-;22277:1;22267:12;;22324:1;22314:12;;;22335:2;;22389:4;22381:6;22377:17;22367:27;;22335:2;22442;22434:6;22431:14;22411:18;22408:38;22405:2;;;22488:10;22483:3;22479:20;22476:1;22469:31;22523:4;22520:1;22513:15;22551:4;22548:1;22541:15;22405:2;;22247:325;;;:::o;22577:135::-;;-1:-1:-1;;22637:17:1;;22634:2;;;22657:18;;:::i;:::-;-1:-1:-1;22704:1:1;22693:13;;22624:88::o;22717:112::-;;22775:1;22765:2;;22780:18;;:::i;:::-;-1:-1:-1;22814:9:1;;22755:74::o;22834:127::-;22895:10;22890:3;22886:20;22883:1;22876:31;22926:4;22923:1;22916:15;22950:4;22947:1;22940:15;22966:127;23027:10;23022:3;23018:20;23015:1;23008:31;23058:4;23055:1;23048:15;23082:4;23079:1;23072:15;23098:127;23159:10;23154:3;23150:20;23147:1;23140:31;23190:4;23187:1;23180:15;23214:4;23211:1;23204:15;23230:133;-1:-1:-1;;;;;;23306:32:1;;23296:43;;23286:2;;23353:1;23350;23343:12

Swarm Source

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