ETH Price: $3,357.32 (-1.74%)
Gas: 7 Gwei

Token

Prepare For Flight (FLIGHT)
 

Overview

Max Total Supply

2,645 FLIGHT

Holders

320

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 FLIGHT
0xc23989ca55c19a3d453baa6ddc20276d8218c1bd
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:
PrepareForFlight

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-15
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
// File: SafeMath.sol

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
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)
    {
        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)
    {
        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)
    {
        // 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)
    {
        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)
    {
        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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        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) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @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. 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) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        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) {
        require(b > 0, "SafeMath: modulo by zero");
        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) {
        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.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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) {
        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) {
        require(b > 0, errorMessage);
        return a % b;
    }
}
// File: Strings.sol


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


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

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

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

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

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


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


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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
// File: Ownable.sol


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



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

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

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

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

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

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

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

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


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


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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
// File: IERC721Receiver.sol


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


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


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


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


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



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


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



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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)



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

    /**
     * @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);
}
// File: IERC721Metadata.sol


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



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

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

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

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**128 - 1 (max value of uint128).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

    // The number of tokens burned.
    uint128 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;
            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = uint128(updatedIndex);
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

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

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

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

/*
* ERC721A Basic Sale Gas Optimized Minting
*  https://twitter.com/SQUIDzillaz0e
*/


contract PrepareForFlight is ERC721A, Ownable {
    using SafeMath for uint256;

    /*
     * @dev Set Initial Parameters Before deployment
     * settings are still fully updateable after deployment
     */
    uint256 public MAX_SUPPLY = 10200;
    uint256 public mintRate = 0.017 ether;

    /*
    * @Dev Booleans for sale state. 
    * salesIsActive must be true in any case to mint
    */
    bool public saleIsActive = false;

    /*
     * @dev Set base URI, Make sure when dpeloying if you plan to Have an 
     * Unrevealed Sale or Period you Do not Deploy with your Revealed
     * base URI here or they will mint With your revealed Images Showing
     * I reccomend setting an Incorrect or an Unrevealed URI here, You can also leave
     * it Not filled in and Update it with the setBaseURI Function at any Point
     */
    string public baseURI = "ipfs://SNIPER-NO-SNIPING/";
    
    /*
     * @dev Set your Collection/Contract name and Token Ticker
     * below. Constructor Parameter cannot be changed after
     * contract deployment.
     */
    constructor() ERC721A("Prepare For Flight", "FLIGHT") {}

    /*
     *@dev
     * Set sale price to mint per NFT
     */
    function setPublicMintPrice(uint256 _price) external onlyOwner {
        mintRate = _price;
    }

    /*
    * @dev mint funtion with _to address. no cost mint
    *  by contract owner/deployer
    */
    function Devmint(uint256 quantity, address _to) external onlyOwner {
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
        _safeMint(_to, quantity);
    }

    /*
    * @dev mint function and checks for saleState and mint quantity
    * Includes Private/public sale checks and quantity minted.
    * ** Updated to only look for whitelist during Presale state only
    * Use Max Mints more of a max perwallet than how many can be minted.
    * This remedied the bug of not being able to mint in Public sale after
    * a presale mint has occured. or a mint has occured and was transfered to a different wallet.
    */   
    function mint(uint256 quantity) external payable {
        require(saleIsActive, "Sale must be active to mint");
        // _safeMint's second argument now takes in a quantity, not a tokenId.
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left to Mint");

        if(saleIsActive) {
            require((mintRate * quantity) <= msg.value, "Value below price");
        }

        if (totalSupply() < MAX_SUPPLY){
        _safeMint(msg.sender, quantity);
        }
    }

    /*
     * @dev Set new Base URI
     * useful for setting unrevealed uri to revealed Base URI
     * same as a reveal switch/state but less chance of prematurely
     * exposing your token URI to Snipers and Bots
     */
    function setBaseURI(string calldata newBaseURI) external onlyOwner {
        baseURI = newBaseURI;
    }

     /*
     * @dev returns Base URI on frontend/etherscan
     */
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

     /*
     * @dev Pause sale if active, make active if paused
     */
    function setSaleActive() public onlyOwner {
        saleIsActive = !saleIsActive;
    }
    
    
    /*
     * @dev Withdrawl function, Contract ETH balance
     * to owner wallet address. Only callable
     * from owner address
     */
    function withdraw() public onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }
    
    /*
    * @dev Alternative withdrawl
    * mint funds to a specified address
    * good for splitting payments or direct payments to external wallets
    * only callable from Owner Wallet
    */
    function altWithdraw(uint256 _amount, address payable _to)
        external
        onlyOwner
    {
        require(_amount > 0, "Withdraw must be greater than 0");
        require(_amount <= address(this).balance, "Amount too high");
        (bool success, ) = _to.call{value: _amount}("");
        require(success);
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"Devmint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address payable","name":"_to","type":"address"}],"name":"altWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6127d8600855663c6568f12e8000600955600a805460ff1916905560c0604052601960808190527f697066733a2f2f534e495045522d4e4f2d534e4950494e472f0000000000000060a09081526200005b91600b919062000151565b503480156200006957600080fd5b506040805180820182526012815271141c995c185c9948119bdc88119b1a59da1d60721b60208083019182528351808501909452600684526511931251d21560d21b908401528151919291620000c29160019162000151565b508051620000d890600290602084019062000151565b505050620000f5620000ef620000fb60201b60201c565b620000ff565b62000234565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015f90620001f7565b90600052602060002090601f016020900481019282620001835760008555620001ce565b82601f106200019e57805160ff1916838001178555620001ce565b82800160010185558215620001ce579182015b82811115620001ce578251825591602001919060010190620001b1565b50620001dc929150620001e0565b5090565b5b80821115620001dc5760008155600101620001e1565b600181811c908216806200020c57607f821691505b602082108114156200022e57634e487b7160e01b600052602260045260246000fd5b50919050565b611e3480620002446000396000f3fe6080604052600436106101cd5760003560e01c80636352211e116100f7578063a0712d6811610095578063ca0dcf1611610064578063ca0dcf16146104f6578063e985e9c51461050c578063eb8d244414610555578063f2fde38b1461056f57600080fd5b8063a0712d6814610483578063a22cb46514610496578063b88d4fde146104b6578063c87b56dd146104d657600080fd5b8063715018a6116100d1578063715018a61461041b5780637a5657d2146104305780638da5cb5b1461045057806395d89b411461046e57600080fd5b80636352211e146103c65780636c0360eb146103e657806370a08231146103fb57600080fd5b80632f745c591161016f5780634f6ccce71161013e5780634f6ccce71461034657806354ef2f701461036657806355f804b3146103865780635d82cf6e146103a657600080fd5b80632f745c59146102db57806332cb6b0c146102fb5780633ccfd60b1461031157806342842e0e1461032657600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd1461028357806323b872dd146102a6578063261f5a97146102c657600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611ab9565b61058f565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105fc565b6040516101fe9190611c3b565b34801561023557600080fd5b50610249610244366004611b65565b61068e565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611a8d565b6106d2565b005b34801561028f57600080fd5b50610298610760565b6040519081526020016101fe565b3480156102b257600080fd5b506102816102c1366004611939565b61077f565b3480156102d257600080fd5b5061028161078a565b3480156102e757600080fd5b506102986102f6366004611a8d565b6107d1565b34801561030757600080fd5b5061029860085481565b34801561031d57600080fd5b506102816108ce565b34801561033257600080fd5b50610281610341366004611939565b610934565b34801561035257600080fd5b50610298610361366004611b65565b61094f565b34801561037257600080fd5b50610281610381366004611b7e565b6109fa565b34801561039257600080fd5b506102816103a1366004611af3565b610a8f565b3480156103b257600080fd5b506102816103c1366004611b65565b610ac5565b3480156103d257600080fd5b506102496103e1366004611b65565b610af4565b3480156103f257600080fd5b5061021c610b06565b34801561040757600080fd5b506102986104163660046118e3565b610b94565b34801561042757600080fd5b50610281610be3565b34801561043c57600080fd5b5061028161044b366004611b7e565b610c19565b34801561045c57600080fd5b506007546001600160a01b0316610249565b34801561047a57600080fd5b5061021c610d35565b610281610491366004611b65565b610d44565b3480156104a257600080fd5b506102816104b1366004611a5a565b610e71565b3480156104c257600080fd5b506102816104d136600461197a565b610f07565b3480156104e257600080fd5b5061021c6104f1366004611b65565b610f41565b34801561050257600080fd5b5061029860095481565b34801561051857600080fd5b506101f2610527366004611900565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561056157600080fd5b50600a546101f29060ff1681565b34801561057b57600080fd5b5061028161058a3660046118e3565b610fc6565b60006001600160e01b031982166380ac58cd60e01b14806105c057506001600160e01b03198216635b5e139f60e01b145b806105db57506001600160e01b0319821663780e9d6360e01b145b806105f657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461060b90611d11565b80601f016020809104026020016040519081016040528092919081815260200182805461063790611d11565b80156106845780601f1061065957610100808354040283529160200191610684565b820191906000526020600020905b81548152906001019060200180831161066757829003601f168201915b5050505050905090565b60006106998261105e565b6106b6576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106dd82610af4565b9050806001600160a01b0316836001600160a01b031614156107125760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061073257506107308133610527565b155b15610750576040516367d9dca160e11b815260040160405180910390fd5b61075b838383611092565b505050565b6000546001600160801b03600160801b82048116918116919091031690565b61075b8383836110ee565b6007546001600160a01b031633146107bd5760405162461bcd60e51b81526004016107b490611c4e565b60405180910390fd5b600a805460ff19811660ff90911615179055565b60006107dc83610b94565b82106107fb576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b838110156108c857600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16158015928201929092529061087457506108c0565b80516001600160a01b03161561088957805192505b876001600160a01b0316836001600160a01b031614156108be57868414156108b7575093506105f692505050565b6001909301925b505b60010161080c565b50600080fd5b6007546001600160a01b031633146108f85760405162461bcd60e51b81526004016107b490611c4e565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610931573d6000803e3d6000fd5b50565b61075b83838360405180602001604052806000815250610f07565b600080546001600160801b031681805b828110156109e057600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906109d757858314156109d05750949350505050565b6001909201915b5060010161095f565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610a245760405162461bcd60e51b81526004016107b490611c4e565b60085482610a30610760565b610a3a9190611c83565b1115610a815760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016107b4565b610a8b818361130d565b5050565b6007546001600160a01b03163314610ab95760405162461bcd60e51b81526004016107b490611c4e565b61075b600b838361184a565b6007546001600160a01b03163314610aef5760405162461bcd60e51b81526004016107b490611c4e565b600955565b6000610aff82611327565b5192915050565b600b8054610b1390611d11565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3f90611d11565b8015610b8c5780601f10610b6157610100808354040283529160200191610b8c565b820191906000526020600020905b815481529060010190602001808311610b6f57829003601f168201915b505050505081565b60006001600160a01b038216610bbd576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b6007546001600160a01b03163314610c0d5760405162461bcd60e51b81526004016107b490611c4e565b610c17600061144b565b565b6007546001600160a01b03163314610c435760405162461bcd60e51b81526004016107b490611c4e565b60008211610c935760405162461bcd60e51b815260206004820152601f60248201527f5769746864726177206d7573742062652067726561746572207468616e20300060448201526064016107b4565b47821115610cd55760405162461bcd60e51b815260206004820152600f60248201526e082dadeeadce840e8dede40d0d2ced608b1b60448201526064016107b4565b6000816001600160a01b03168360405160006040518083038185875af1925050503d8060008114610d22576040519150601f19603f3d011682016040523d82523d6000602084013e610d27565b606091505b505090508061075b57600080fd5b60606002805461060b90611d11565b600a5460ff16610d965760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e74000000000060448201526064016107b4565b60085481610da2610760565b610dac9190611c83565b1115610dfa5760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f75676820746f6b656e73206c65667420746f204d696e74000060448201526064016107b4565b600a5460ff1615610e56573481600954610e149190611caf565b1115610e565760405162461bcd60e51b815260206004820152601160248201527056616c75652062656c6f7720707269636560781b60448201526064016107b4565b600854610e61610760565b101561093157610931338261130d565b6001600160a01b038216331415610e9b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f128484846110ee565b610f1e8484848461149d565b610f3b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f4c8261105e565b610f6957604051630a14c4b560e41b815260040160405180910390fd5b6000610f736115ac565b9050805160001415610f945760405180602001604052806000815250610fbf565b80610f9e846115bb565b604051602001610faf929190611bcf565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314610ff05760405162461bcd60e51b81526004016107b490611c4e565b6001600160a01b0381166110555760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107b4565b6109318161144b565b600080546001600160801b0316821080156105f6575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110f982611327565b80519091506000906001600160a01b0316336001600160a01b03161480611127575081516111279033610527565b806111425750336111378461068e565b6001600160a01b0316145b90508061116257604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146111975760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166111be57604051633a954ecd60e21b815260040160405180910390fd5b6111ce6000848460000151611092565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166112c3576000546001600160801b03168110156112c3578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610a8b8282604051806020016040528060008152506116b9565b60408051606081018252600080825260208201819052918101829052905482906001600160801b031681101561143257600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906114305780516001600160a01b0316156113c6579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561142b579392505050565b6113c6565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156115a057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906114e1903390899088908890600401611bfe565b602060405180830381600087803b1580156114fb57600080fd5b505af192505050801561152b575060408051601f3d908101601f1916820190925261152891810190611ad6565b60015b611586573d808015611559576040519150601f19603f3d011682016040523d82523d6000602084013e61155e565b606091505b50805161157e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115a4565b5060015b949350505050565b6060600b805461060b90611d11565b6060816115df5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561160957806115f381611d4c565b91506116029050600a83611c9b565b91506115e3565b60008167ffffffffffffffff81111561162457611624611dbd565b6040519080825280601f01601f19166020018201604052801561164e576020820181803683370190505b5090505b84156115a457611663600183611cce565b9150611670600a86611d67565b61167b906030611c83565b60f81b81838151811061169057611690611da7565b60200101906001600160f81b031916908160001a9053506116b2600a86611c9b565b9450611652565b61075b83838360016000546001600160801b03166001600160a01b0385166116f357604051622e076360e81b815260040160405180910390fd5b836117115760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b0319811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156118245760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156117fa57506117f8600088848861149d565b155b15611818576040516368d2bf6b60e11b815260040160405180910390fd5b600191820191016117a3565b50600080546001600160801b0319166001600160801b0392909216919091179055611306565b82805461185690611d11565b90600052602060002090601f01602090048101928261187857600085556118be565b82601f106118915782800160ff198235161785556118be565b828001600101855582156118be579182015b828111156118be5782358255916020019190600101906118a3565b506118ca9291506118ce565b5090565b5b808211156118ca57600081556001016118cf565b6000602082840312156118f557600080fd5b8135610fbf81611dd3565b6000806040838503121561191357600080fd5b823561191e81611dd3565b9150602083013561192e81611dd3565b809150509250929050565b60008060006060848603121561194e57600080fd5b833561195981611dd3565b9250602084013561196981611dd3565b929592945050506040919091013590565b6000806000806080858703121561199057600080fd5b843561199b81611dd3565b935060208501356119ab81611dd3565b925060408501359150606085013567ffffffffffffffff808211156119cf57600080fd5b818701915087601f8301126119e357600080fd5b8135818111156119f5576119f5611dbd565b604051601f8201601f19908116603f01168101908382118183101715611a1d57611a1d611dbd565b816040528281528a6020848701011115611a3657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611a6d57600080fd5b8235611a7881611dd3565b91506020830135801515811461192e57600080fd5b60008060408385031215611aa057600080fd5b8235611aab81611dd3565b946020939093013593505050565b600060208284031215611acb57600080fd5b8135610fbf81611de8565b600060208284031215611ae857600080fd5b8151610fbf81611de8565b60008060208385031215611b0657600080fd5b823567ffffffffffffffff80821115611b1e57600080fd5b818501915085601f830112611b3257600080fd5b813581811115611b4157600080fd5b866020828501011115611b5357600080fd5b60209290920196919550909350505050565b600060208284031215611b7757600080fd5b5035919050565b60008060408385031215611b9157600080fd5b82359150602083013561192e81611dd3565b60008151808452611bbb816020860160208601611ce5565b601f01601f19169290920160200192915050565b60008351611be1818460208801611ce5565b835190830190611bf5818360208801611ce5565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c3190830184611ba3565b9695505050505050565b602081526000610fbf6020830184611ba3565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611c9657611c96611d7b565b500190565b600082611caa57611caa611d91565b500490565b6000816000190483118215151615611cc957611cc9611d7b565b500290565b600082821015611ce057611ce0611d7b565b500390565b60005b83811015611d00578181015183820152602001611ce8565b83811115610f3b5750506000910152565b600181811c90821680611d2557607f821691505b60208210811415611d4657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d6057611d60611d7b565b5060010190565b600082611d7657611d76611d91565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461093157600080fd5b6001600160e01b03198116811461093157600080fdfea2646970667358221220ffa28e7d420d6b0c068fe575aeeefe3c8ef4f69f07427d1f23f5deb66d15ca1764736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80636352211e116100f7578063a0712d6811610095578063ca0dcf1611610064578063ca0dcf16146104f6578063e985e9c51461050c578063eb8d244414610555578063f2fde38b1461056f57600080fd5b8063a0712d6814610483578063a22cb46514610496578063b88d4fde146104b6578063c87b56dd146104d657600080fd5b8063715018a6116100d1578063715018a61461041b5780637a5657d2146104305780638da5cb5b1461045057806395d89b411461046e57600080fd5b80636352211e146103c65780636c0360eb146103e657806370a08231146103fb57600080fd5b80632f745c591161016f5780634f6ccce71161013e5780634f6ccce71461034657806354ef2f701461036657806355f804b3146103865780635d82cf6e146103a657600080fd5b80632f745c59146102db57806332cb6b0c146102fb5780633ccfd60b1461031157806342842e0e1461032657600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd1461028357806323b872dd146102a6578063261f5a97146102c657600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611ab9565b61058f565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105fc565b6040516101fe9190611c3b565b34801561023557600080fd5b50610249610244366004611b65565b61068e565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611a8d565b6106d2565b005b34801561028f57600080fd5b50610298610760565b6040519081526020016101fe565b3480156102b257600080fd5b506102816102c1366004611939565b61077f565b3480156102d257600080fd5b5061028161078a565b3480156102e757600080fd5b506102986102f6366004611a8d565b6107d1565b34801561030757600080fd5b5061029860085481565b34801561031d57600080fd5b506102816108ce565b34801561033257600080fd5b50610281610341366004611939565b610934565b34801561035257600080fd5b50610298610361366004611b65565b61094f565b34801561037257600080fd5b50610281610381366004611b7e565b6109fa565b34801561039257600080fd5b506102816103a1366004611af3565b610a8f565b3480156103b257600080fd5b506102816103c1366004611b65565b610ac5565b3480156103d257600080fd5b506102496103e1366004611b65565b610af4565b3480156103f257600080fd5b5061021c610b06565b34801561040757600080fd5b506102986104163660046118e3565b610b94565b34801561042757600080fd5b50610281610be3565b34801561043c57600080fd5b5061028161044b366004611b7e565b610c19565b34801561045c57600080fd5b506007546001600160a01b0316610249565b34801561047a57600080fd5b5061021c610d35565b610281610491366004611b65565b610d44565b3480156104a257600080fd5b506102816104b1366004611a5a565b610e71565b3480156104c257600080fd5b506102816104d136600461197a565b610f07565b3480156104e257600080fd5b5061021c6104f1366004611b65565b610f41565b34801561050257600080fd5b5061029860095481565b34801561051857600080fd5b506101f2610527366004611900565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561056157600080fd5b50600a546101f29060ff1681565b34801561057b57600080fd5b5061028161058a3660046118e3565b610fc6565b60006001600160e01b031982166380ac58cd60e01b14806105c057506001600160e01b03198216635b5e139f60e01b145b806105db57506001600160e01b0319821663780e9d6360e01b145b806105f657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461060b90611d11565b80601f016020809104026020016040519081016040528092919081815260200182805461063790611d11565b80156106845780601f1061065957610100808354040283529160200191610684565b820191906000526020600020905b81548152906001019060200180831161066757829003601f168201915b5050505050905090565b60006106998261105e565b6106b6576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106dd82610af4565b9050806001600160a01b0316836001600160a01b031614156107125760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061073257506107308133610527565b155b15610750576040516367d9dca160e11b815260040160405180910390fd5b61075b838383611092565b505050565b6000546001600160801b03600160801b82048116918116919091031690565b61075b8383836110ee565b6007546001600160a01b031633146107bd5760405162461bcd60e51b81526004016107b490611c4e565b60405180910390fd5b600a805460ff19811660ff90911615179055565b60006107dc83610b94565b82106107fb576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b838110156108c857600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16158015928201929092529061087457506108c0565b80516001600160a01b03161561088957805192505b876001600160a01b0316836001600160a01b031614156108be57868414156108b7575093506105f692505050565b6001909301925b505b60010161080c565b50600080fd5b6007546001600160a01b031633146108f85760405162461bcd60e51b81526004016107b490611c4e565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610931573d6000803e3d6000fd5b50565b61075b83838360405180602001604052806000815250610f07565b600080546001600160801b031681805b828110156109e057600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906109d757858314156109d05750949350505050565b6001909201915b5060010161095f565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610a245760405162461bcd60e51b81526004016107b490611c4e565b60085482610a30610760565b610a3a9190611c83565b1115610a815760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016107b4565b610a8b818361130d565b5050565b6007546001600160a01b03163314610ab95760405162461bcd60e51b81526004016107b490611c4e565b61075b600b838361184a565b6007546001600160a01b03163314610aef5760405162461bcd60e51b81526004016107b490611c4e565b600955565b6000610aff82611327565b5192915050565b600b8054610b1390611d11565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3f90611d11565b8015610b8c5780601f10610b6157610100808354040283529160200191610b8c565b820191906000526020600020905b815481529060010190602001808311610b6f57829003601f168201915b505050505081565b60006001600160a01b038216610bbd576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b6007546001600160a01b03163314610c0d5760405162461bcd60e51b81526004016107b490611c4e565b610c17600061144b565b565b6007546001600160a01b03163314610c435760405162461bcd60e51b81526004016107b490611c4e565b60008211610c935760405162461bcd60e51b815260206004820152601f60248201527f5769746864726177206d7573742062652067726561746572207468616e20300060448201526064016107b4565b47821115610cd55760405162461bcd60e51b815260206004820152600f60248201526e082dadeeadce840e8dede40d0d2ced608b1b60448201526064016107b4565b6000816001600160a01b03168360405160006040518083038185875af1925050503d8060008114610d22576040519150601f19603f3d011682016040523d82523d6000602084013e610d27565b606091505b505090508061075b57600080fd5b60606002805461060b90611d11565b600a5460ff16610d965760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e74000000000060448201526064016107b4565b60085481610da2610760565b610dac9190611c83565b1115610dfa5760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f75676820746f6b656e73206c65667420746f204d696e74000060448201526064016107b4565b600a5460ff1615610e56573481600954610e149190611caf565b1115610e565760405162461bcd60e51b815260206004820152601160248201527056616c75652062656c6f7720707269636560781b60448201526064016107b4565b600854610e61610760565b101561093157610931338261130d565b6001600160a01b038216331415610e9b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f128484846110ee565b610f1e8484848461149d565b610f3b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f4c8261105e565b610f6957604051630a14c4b560e41b815260040160405180910390fd5b6000610f736115ac565b9050805160001415610f945760405180602001604052806000815250610fbf565b80610f9e846115bb565b604051602001610faf929190611bcf565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314610ff05760405162461bcd60e51b81526004016107b490611c4e565b6001600160a01b0381166110555760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107b4565b6109318161144b565b600080546001600160801b0316821080156105f6575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110f982611327565b80519091506000906001600160a01b0316336001600160a01b03161480611127575081516111279033610527565b806111425750336111378461068e565b6001600160a01b0316145b90508061116257604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146111975760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166111be57604051633a954ecd60e21b815260040160405180910390fd5b6111ce6000848460000151611092565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166112c3576000546001600160801b03168110156112c3578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610a8b8282604051806020016040528060008152506116b9565b60408051606081018252600080825260208201819052918101829052905482906001600160801b031681101561143257600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906114305780516001600160a01b0316156113c6579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561142b579392505050565b6113c6565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156115a057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906114e1903390899088908890600401611bfe565b602060405180830381600087803b1580156114fb57600080fd5b505af192505050801561152b575060408051601f3d908101601f1916820190925261152891810190611ad6565b60015b611586573d808015611559576040519150601f19603f3d011682016040523d82523d6000602084013e61155e565b606091505b50805161157e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115a4565b5060015b949350505050565b6060600b805461060b90611d11565b6060816115df5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561160957806115f381611d4c565b91506116029050600a83611c9b565b91506115e3565b60008167ffffffffffffffff81111561162457611624611dbd565b6040519080825280601f01601f19166020018201604052801561164e576020820181803683370190505b5090505b84156115a457611663600183611cce565b9150611670600a86611d67565b61167b906030611c83565b60f81b81838151811061169057611690611da7565b60200101906001600160f81b031916908160001a9053506116b2600a86611c9b565b9450611652565b61075b83838360016000546001600160801b03166001600160a01b0385166116f357604051622e076360e81b815260040160405180910390fd5b836117115760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b0319811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156118245760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156117fa57506117f8600088848861149d565b155b15611818576040516368d2bf6b60e11b815260040160405180910390fd5b600191820191016117a3565b50600080546001600160801b0319166001600160801b0392909216919091179055611306565b82805461185690611d11565b90600052602060002090601f01602090048101928261187857600085556118be565b82601f106118915782800160ff198235161785556118be565b828001600101855582156118be579182015b828111156118be5782358255916020019190600101906118a3565b506118ca9291506118ce565b5090565b5b808211156118ca57600081556001016118cf565b6000602082840312156118f557600080fd5b8135610fbf81611dd3565b6000806040838503121561191357600080fd5b823561191e81611dd3565b9150602083013561192e81611dd3565b809150509250929050565b60008060006060848603121561194e57600080fd5b833561195981611dd3565b9250602084013561196981611dd3565b929592945050506040919091013590565b6000806000806080858703121561199057600080fd5b843561199b81611dd3565b935060208501356119ab81611dd3565b925060408501359150606085013567ffffffffffffffff808211156119cf57600080fd5b818701915087601f8301126119e357600080fd5b8135818111156119f5576119f5611dbd565b604051601f8201601f19908116603f01168101908382118183101715611a1d57611a1d611dbd565b816040528281528a6020848701011115611a3657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611a6d57600080fd5b8235611a7881611dd3565b91506020830135801515811461192e57600080fd5b60008060408385031215611aa057600080fd5b8235611aab81611dd3565b946020939093013593505050565b600060208284031215611acb57600080fd5b8135610fbf81611de8565b600060208284031215611ae857600080fd5b8151610fbf81611de8565b60008060208385031215611b0657600080fd5b823567ffffffffffffffff80821115611b1e57600080fd5b818501915085601f830112611b3257600080fd5b813581811115611b4157600080fd5b866020828501011115611b5357600080fd5b60209290920196919550909350505050565b600060208284031215611b7757600080fd5b5035919050565b60008060408385031215611b9157600080fd5b82359150602083013561192e81611dd3565b60008151808452611bbb816020860160208601611ce5565b601f01601f19169290920160200192915050565b60008351611be1818460208801611ce5565b835190830190611bf5818360208801611ce5565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c3190830184611ba3565b9695505050505050565b602081526000610fbf6020830184611ba3565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611c9657611c96611d7b565b500190565b600082611caa57611caa611d91565b500490565b6000816000190483118215151615611cc957611cc9611d7b565b500290565b600082821015611ce057611ce0611d7b565b500390565b60005b83811015611d00578181015183820152602001611ce8565b83811115610f3b5750506000910152565b600181811c90821680611d2557607f821691505b60208210811415611d4657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d6057611d60611d7b565b5060010190565b600082611d7657611d76611d91565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461093157600080fd5b6001600160e01b03198116811461093157600080fdfea2646970667358221220ffa28e7d420d6b0c068fe575aeeefe3c8ef4f69f07427d1f23f5deb66d15ca1764736f6c63430008070033

Deployed Bytecode Sourcemap

53360:4141:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36784:372;;;;;;;;;;-1:-1:-1;36784:372:0;;;;;:::i;:::-;;:::i;:::-;;;6879:14:1;;6872:22;6854:41;;6842:2;6827:18;36784:372:0;;;;;;;;39394:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40897:204::-;;;;;;;;;;-1:-1:-1;40897:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6177:32:1;;;6159:51;;6147:2;6132:18;40897:204:0;6013:203:1;40460:371:0;;;;;;;;;;-1:-1:-1;40460:371:0;;;;;:::i;:::-;;:::i;:::-;;34021:280;;;;;;;;;;;;;:::i;:::-;;;10160:25:1;;;10148:2;10133:18;34021:280:0;10014:177:1;41754:170:0;;;;;;;;;;-1:-1:-1;41754:170:0;;;;;:::i;:::-;;:::i;56591:89::-;;;;;;;;;;;;;:::i;35607:1105::-;;;;;;;;;;-1:-1:-1;35607:1105:0;;;;;:::i;:::-;;:::i;53580:33::-;;;;;;;;;;;;;;;;56843:104;;;;;;;;;;;;;:::i;41995:185::-;;;;;;;;;;-1:-1:-1;41995:185:0;;;;;:::i;:::-;;:::i;34594:713::-;;;;;;;;;;-1:-1:-1;34594:713:0;;;;;:::i;:::-;;:::i;54802:194::-;;;;;;;;;;-1:-1:-1;54802:194:0;;;;;:::i;:::-;;:::i;56224:106::-;;;;;;;;;;-1:-1:-1;56224:106:0;;;;;:::i;:::-;;:::i;54588:99::-;;;;;;;;;;-1:-1:-1;54588:99:0;;;;;:::i;:::-;;:::i;39203:124::-;;;;;;;;;;-1:-1:-1;39203:124:0;;;;;:::i;:::-;;:::i;54221:51::-;;;;;;;;;;;;;:::i;37220:206::-;;;;;;;;;;-1:-1:-1;37220:206:0;;;;;:::i;:::-;;:::i;12273:103::-;;;;;;;;;;;;;:::i;57163:331::-;;;;;;;;;;-1:-1:-1;57163:331:0;;;;;:::i;:::-;;:::i;11622:87::-;;;;;;;;;;-1:-1:-1;11695:6:0;;-1:-1:-1;;;;;11695:6:0;11622:87;;39563:104;;;;;;;;;;;;;:::i;55476:509::-;;;;;;:::i;:::-;;:::i;41173:279::-;;;;;;;;;;-1:-1:-1;41173:279:0;;;;;:::i;:::-;;:::i;42251:342::-;;;;;;;;;;-1:-1:-1;42251:342:0;;;;;:::i;:::-;;:::i;39738:318::-;;;;;;;;;;-1:-1:-1;39738:318:0;;;;;:::i;:::-;;:::i;53620:37::-;;;;;;;;;;;;;;;;41523:164;;;;;;;;;;-1:-1:-1;41523:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;41644:25:0;;;41620:4;41644:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;41523:164;53774:32;;;;;;;;;;-1:-1:-1;53774:32:0;;;;;;;;12531:201;;;;;;;;;;-1:-1:-1;12531:201:0;;;;;:::i;:::-;;:::i;36784:372::-;36886:4;-1:-1:-1;;;;;;36923:40:0;;-1:-1:-1;;;36923:40:0;;:105;;-1:-1:-1;;;;;;;36980:48:0;;-1:-1:-1;;;36980:48:0;36923:105;:172;;;-1:-1:-1;;;;;;;37045:50:0;;-1:-1:-1;;;37045:50:0;36923:172;:225;;;-1:-1:-1;;;;;;;;;;24252:40:0;;;37112:36;36903:245;36784:372;-1:-1:-1;;36784:372:0:o;39394:100::-;39448:13;39481:5;39474:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39394:100;:::o;40897:204::-;40965:7;40990:16;40998:7;40990;:16::i;:::-;40985:64;;41015:34;;-1:-1:-1;;;41015:34:0;;;;;;;;;;;40985:64;-1:-1:-1;41069:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;41069:24:0;;40897:204::o;40460:371::-;40533:13;40549:24;40565:7;40549:15;:24::i;:::-;40533:40;;40594:5;-1:-1:-1;;;;;40588:11:0;:2;-1:-1:-1;;;;;40588:11:0;;40584:48;;;40608:24;;-1:-1:-1;;;40608:24:0;;;;;;;;;;;40584:48;10484:10;-1:-1:-1;;;;;40649:21:0;;;;;;:63;;-1:-1:-1;40675:37:0;40692:5;10484:10;41523:164;:::i;40675:37::-;40674:38;40649:63;40645:138;;;40736:35;;-1:-1:-1;;;40736:35:0;;;;;;;;;;;40645:138;40795:28;40804:2;40808:7;40817:5;40795:8;:28::i;:::-;40522:309;40460:371;;:::o;34021:280::-;34074:7;34266:12;-1:-1:-1;;;;;;;;34266:12:0;;;;34250:13;;;:28;;;;34243:35;;34021:280::o;41754:170::-;41888:28;41898:4;41904:2;41908:7;41888:9;:28::i;56591:89::-;11695:6;;-1:-1:-1;;;;;11695:6:0;10484:10;11842:23;11834:68;;;;-1:-1:-1;;;11834:68:0;;;;;;;:::i;:::-;;;;;;;;;56660:12:::1;::::0;;-1:-1:-1;;56644:28:0;::::1;56660:12;::::0;;::::1;56659:13;56644:28;::::0;;56591:89::o;35607:1105::-;35696:7;35729:16;35739:5;35729:9;:16::i;:::-;35720:5;:25;35716:61;;35754:23;;-1:-1:-1;;;35754:23:0;;;;;;;;;;;35716:61;35788:22;35813:13;;-1:-1:-1;;;;;35813:13:0;;35788:22;;36063:557;36083:14;36079:1;:18;36063:557;;;36123:31;36157:14;;;:11;:14;;;;;;;;;36123:48;;;;;;;;;-1:-1:-1;;;;;36123:48:0;;;;-1:-1:-1;;;36123:48:0;;;;;;;;;;;-1:-1:-1;;;36123:48:0;;;;;;;;;;;;;;;;36190:73;;36235:8;;;36190:73;36285:14;;-1:-1:-1;;;;;36285:28:0;;36281:111;;36358:14;;;-1:-1:-1;36281:111:0;36435:5;-1:-1:-1;;;;;36414:26:0;:17;-1:-1:-1;;;;;36414:26:0;;36410:195;;;36484:5;36469:11;:20;36465:85;;;-1:-1:-1;36525:1:0;-1:-1:-1;36518:8:0;;-1:-1:-1;;;36518:8:0;36465:85;36572:13;;;;;36410:195;36104:516;36063:557;36099:3;;36063:557;;;;36696:8;;;56843:104;11695:6;;-1:-1:-1;;;;;11695:6:0;10484:10;11842:23;11834:68;;;;-1:-1:-1;;;11834:68:0;;;;;;;:::i;:::-;11695:6;;56891:48:::1;::::0;-1:-1:-1;;;;;11695:6:0;;;;56917:21:::1;56891:48:::0;::::1;;;::::0;::::1;::::0;;;56917:21;11695:6;56891:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;56843:104::o:0;41995:185::-;42133:39;42150:4;42156:2;42160:7;42133:39;;;;;;;;;;;;:16;:39::i;34594:713::-;34661:7;34706:13;;-1:-1:-1;;;;;34706:13:0;34661:7;;34920:328;34940:14;34936:1;:18;34920:328;;;34980:31;35014:14;;;:11;:14;;;;;;;;;34980:48;;;;;;;;;-1:-1:-1;;;;;34980:48:0;;;;-1:-1:-1;;;34980:48:0;;;;;;;;;;;-1:-1:-1;;;34980:48:0;;;;;;;;;;;;;;35047:186;;35112:5;35097:11;:20;35093:85;;;-1:-1:-1;35153:1:0;34594:713;-1:-1:-1;;;;34594:713:0:o;35093:85::-;35200:13;;;;;35047:186;-1:-1:-1;34956:3:0;;34920:328;;;;35276:23;;-1:-1:-1;;;35276:23:0;;;;;;;;;;;54802:194;11695:6;;-1:-1:-1;;;;;11695:6:0;10484:10;11842:23;11834:68;;;;-1:-1:-1;;;11834:68:0;;;;;;;:::i;:::-;54916:10:::1;;54904:8;54888:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;54880:73;;;::::0;-1:-1:-1;;;54880:73:0;;9158:2:1;54880:73:0::1;::::0;::::1;9140:21:1::0;9197:2;9177:18;;;9170:30;-1:-1:-1;;;9216:18:1;;;9209:52;9278:18;;54880:73:0::1;8956:346:1::0;54880:73:0::1;54964:24;54974:3;54979:8;54964:9;:24::i;:::-;54802:194:::0;;:::o;56224:106::-;11695:6;;-1:-1:-1;;;;;11695:6:0;10484:10;11842:23;11834:68;;;;-1:-1:-1;;;11834:68:0;;;;;;;:::i;:::-;56302:20:::1;:7;56312:10:::0;;56302:20:::1;:::i;54588:99::-:0;11695:6;;-1:-1:-1;;;;;11695:6:0;10484:10;11842:23;11834:68;;;;-1:-1:-1;;;11834:68:0;;;;;;;:::i;:::-;54662:8:::1;:17:::0;54588:99::o;39203:124::-;39267:7;39294:20;39306:7;39294:11;:20::i;:::-;:25;;39203:124;-1:-1:-1;;39203:124:0:o;54221:51::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37220:206::-;37284:7;-1:-1:-1;;;;;37308:19:0;;37304:60;;37336:28;;-1:-1:-1;;;37336:28:0;;;;;;;;;;;37304:60;-1:-1:-1;;;;;;37390:19:0;;;;;:12;:19;;;;;:27;;;;37220:206::o;12273:103::-;11695:6;;-1:-1:-1;;;;;11695:6:0;10484:10;11842:23;11834:68;;;;-1:-1:-1;;;11834:68:0;;;;;;;:::i;:::-;12338:30:::1;12365:1;12338:18;:30::i;:::-;12273:103::o:0;57163:331::-;11695:6;;-1:-1:-1;;;;;11695:6:0;10484:10;11842:23;11834:68;;;;-1:-1:-1;;;11834:68:0;;;;;;;:::i;:::-;57293:1:::1;57283:7;:11;57275:55;;;::::0;-1:-1:-1;;;57275:55:0;;8454:2:1;57275:55:0::1;::::0;::::1;8436:21:1::0;8493:2;8473:18;;;8466:30;8532:33;8512:18;;;8505:61;8583:18;;57275:55:0::1;8252:355:1::0;57275:55:0::1;57360:21;57349:7;:32;;57341:60;;;::::0;-1:-1:-1;;;57341:60:0;;8814:2:1;57341:60:0::1;::::0;::::1;8796:21:1::0;8853:2;8833:18;;;8826:30;-1:-1:-1;;;8872:18:1;;;8865:45;8927:18;;57341:60:0::1;8612:339:1::0;57341:60:0::1;57413:12;57431:3;-1:-1:-1::0;;;;;57431:8:0::1;57447:7;57431:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57412:47;;;57478:7;57470:16;;;::::0;::::1;39563:104:::0;39619:13;39652:7;39645:14;;;;;:::i;55476:509::-;55544:12;;;;55536:52;;;;-1:-1:-1;;;55536:52:0;;8098:2:1;55536:52:0;;;8080:21:1;8137:2;8117:18;;;8110:30;8176:29;8156:18;;;8149:57;8223:18;;55536:52:0;7896:351:1;55536:52:0;55715:10;;55703:8;55687:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;55679:81;;;;-1:-1:-1;;;55679:81:0;;7332:2:1;55679:81:0;;;7314:21:1;7371:2;7351:18;;;7344:30;7410:32;7390:18;;;7383:60;7460:18;;55679:81:0;7130:354:1;55679:81:0;55776:12;;;;55773:108;;;55838:9;55825:8;55814;;:19;;;;:::i;:::-;55813:34;;55805:64;;;;-1:-1:-1;;;55805:64:0;;9870:2:1;55805:64:0;;;9852:21:1;9909:2;9889:18;;;9882:30;-1:-1:-1;;;9928:18:1;;;9921:47;9985:18;;55805:64:0;9668:341:1;55805:64:0;55913:10;;55897:13;:11;:13::i;:::-;:26;55893:85;;;55935:31;55945:10;55957:8;55935:9;:31::i;41173:279::-;-1:-1:-1;;;;;41264:24:0;;10484:10;41264:24;41260:54;;;41297:17;;-1:-1:-1;;;41297:17:0;;;;;;;;;;;41260:54;10484:10;41327:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;41327:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;41327:53:0;;;;;;;;;;41396:48;;6854:41:1;;;41327:42:0;;10484:10;41396:48;;6827:18:1;41396:48:0;;;;;;;41173:279;;:::o;42251:342::-;42418:28;42428:4;42434:2;42438:7;42418:9;:28::i;:::-;42462:48;42485:4;42491:2;42495:7;42504:5;42462:22;:48::i;:::-;42457:129;;42534:40;;-1:-1:-1;;;42534:40:0;;;;;;;;;;;42457:129;42251:342;;;;:::o;39738:318::-;39811:13;39842:16;39850:7;39842;:16::i;:::-;39837:59;;39867:29;;-1:-1:-1;;;39867:29:0;;;;;;;;;;;39837:59;39909:21;39933:10;:8;:10::i;:::-;39909:34;;39967:7;39961:21;39986:1;39961:26;;:87;;;;;;;;;;;;;;;;;40014:7;40023:18;:7;:16;:18::i;:::-;39997:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39961:87;39954:94;39738:318;-1:-1:-1;;;39738:318:0:o;12531:201::-;11695:6;;-1:-1:-1;;;;;11695:6:0;10484:10;11842:23;11834:68;;;;-1:-1:-1;;;11834:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12620:22:0;::::1;12612:73;;;::::0;-1:-1:-1;;;12612:73:0;;7691:2:1;12612:73:0::1;::::0;::::1;7673:21:1::0;7730:2;7710:18;;;7703:30;7769:34;7749:18;;;7742:62;-1:-1:-1;;;7820:18:1;;;7813:36;7866:19;;12612:73:0::1;7489:402:1::0;12612:73:0::1;12696:28;12715:8;12696:18;:28::i;42848:144::-:0;42905:4;42939:13;;-1:-1:-1;;;;;42939:13:0;42929:23;;:55;;;;-1:-1:-1;;42957:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;42957:27:0;;;;42956:28;;42848:144::o;50062:196::-;50177:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;50177:29:0;-1:-1:-1;;;;;50177:29:0;;;;;;;;;50222:28;;50177:24;;50222:28;;;;;;;50062:196;;;:::o;45563:2112::-;45678:35;45716:20;45728:7;45716:11;:20::i;:::-;45791:18;;45678:58;;-1:-1:-1;45749:22:0;;-1:-1:-1;;;;;45775:34:0;10484:10;-1:-1:-1;;;;;45775:34:0;;:101;;;-1:-1:-1;45843:18:0;;45826:50;;10484:10;41523:164;:::i;45826:50::-;45775:154;;;-1:-1:-1;10484:10:0;45893:20;45905:7;45893:11;:20::i;:::-;-1:-1:-1;;;;;45893:36:0;;45775:154;45749:181;;45948:17;45943:66;;45974:35;;-1:-1:-1;;;45974:35:0;;;;;;;;;;;45943:66;46046:4;-1:-1:-1;;;;;46024:26:0;:13;:18;;;-1:-1:-1;;;;;46024:26:0;;46020:67;;46059:28;;-1:-1:-1;;;46059:28:0;;;;;;;;;;;46020:67;-1:-1:-1;;;;;46102:16:0;;46098:52;;46127:23;;-1:-1:-1;;;46127:23:0;;;;;;;;;;;46098:52;46271:49;46288:1;46292:7;46301:13;:18;;;46271:8;:49::i;:::-;-1:-1:-1;;;;;46616:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;46616:31:0;;;;;;;-1:-1:-1;;46616:31:0;;;;;;;46662:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;46662:29:0;;;;;;;;;;;46708:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;46753:61:0;;;;-1:-1:-1;;;46798:15:0;46753:61;;;;;;;;;;;47088:11;;;47118:24;;;;;:29;47088:11;;47118:29;47114:445;;47343:13;;-1:-1:-1;;;;;47343:13:0;47329:27;;47325:219;;;47413:18;;;47381:24;;;:11;:24;;;;;;;;:50;;47496:28;;;;47454:70;;-1:-1:-1;;;47454:70:0;-1:-1:-1;;;;;;47454:70:0;;;-1:-1:-1;;;;;47381:50:0;;;47454:70;;;;;;;47325:219;46591:979;47606:7;47602:2;-1:-1:-1;;;;;47587:27:0;47596:4;-1:-1:-1;;;;;47587:27:0;;;;;;;;;;;47625:42;45667:2008;;45563:2112;;;:::o;43000:104::-;43069:27;43079:2;43083:8;43069:27;;;;;;;;;;;;:9;:27::i;38058:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;38224:13:0;;38168:7;;-1:-1:-1;;;;;38224:13:0;38217:20;;38213:861;;;38258:31;38292:17;;;:11;:17;;;;;;;;;38258:51;;;;;;;;;-1:-1:-1;;;;;38258:51:0;;;;-1:-1:-1;;;38258:51:0;;;;;;;;;;;-1:-1:-1;;;38258:51:0;;;;;;;;;;;;;;38328:731;;38378:14;;-1:-1:-1;;;;;38378:28:0;;38374:101;;38442:9;38058:1083;-1:-1:-1;;;38058:1083:0:o;38374:101::-;-1:-1:-1;;;38819:6:0;38864:17;;;;:11;:17;;;;;;;;;38852:29;;;;;;;;;-1:-1:-1;;;;;38852:29:0;;;;;-1:-1:-1;;;38852:29:0;;;;;;;;;;;-1:-1:-1;;;38852:29:0;;;;;;;;;;;;;38912:28;38908:109;;38980:9;38058:1083;-1:-1:-1;;;38058:1083:0:o;38908:109::-;38779:261;;;38239:835;38213:861;39102:31;;-1:-1:-1;;;39102:31:0;;;;;;;;;;;12892:191;12985:6;;;-1:-1:-1;;;;;13002:17:0;;;-1:-1:-1;;;;;;13002:17:0;;;;;;;13035:40;;12985:6;;;13002:17;12985:6;;13035:40;;12966:16;;13035:40;12955:128;12892:191;:::o;50823:790::-;50978:4;-1:-1:-1;;;;;50999:13:0;;14561:19;:23;50995:611;;51035:72;;-1:-1:-1;;;51035:72:0;;-1:-1:-1;;;;;51035:36:0;;;;;:72;;10484:10;;51086:4;;51092:7;;51101:5;;51035:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51035:72:0;;;;;;;;-1:-1:-1;;51035:72:0;;;;;;;;;;;;:::i;:::-;;;51031:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51281:13:0;;51277:259;;51331:40;;-1:-1:-1;;;51331:40:0;;;;;;;;;;;51277:259;51486:6;51480:13;51471:6;51467:2;51463:15;51456:38;51031:520;-1:-1:-1;;;;;;51158:55:0;-1:-1:-1;;;51158:55:0;;-1:-1:-1;51151:62:0;;50995:611;-1:-1:-1;51590:4:0;50995:611;50823:790;;;;;;:::o;56408:100::-;56460:13;56493:7;56486:14;;;;;:::i;8023:723::-;8079:13;8300:10;8296:53;;-1:-1:-1;;8327:10:0;;;;;;;;;;;;-1:-1:-1;;;8327:10:0;;;;;8023:723::o;8296:53::-;8374:5;8359:12;8415:78;8422:9;;8415:78;;8448:8;;;;:::i;:::-;;-1:-1:-1;8471:10:0;;-1:-1:-1;8479:2:0;8471:10;;:::i;:::-;;;8415:78;;;8503:19;8535:6;8525:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8525:17:0;;8503:39;;8553:154;8560:10;;8553:154;;8587:11;8597:1;8587:11;;:::i;:::-;;-1:-1:-1;8656:10:0;8664:2;8656:5;:10;:::i;:::-;8643:24;;:2;:24;:::i;:::-;8630:39;;8613:6;8620;8613:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8613:56:0;;;;;;;;-1:-1:-1;8684:11:0;8693:2;8684:11;;:::i;:::-;;;8553:154;;43467:163;43590:32;43596:2;43600:8;43610:5;43617:4;44028:20;44051:13;-1:-1:-1;;;;;44051:13:0;-1:-1:-1;;;;;44079:16:0;;44075:48;;44104:19;;-1:-1:-1;;;44104:19:0;;;;;;;;;;;44075:48;44138:13;44134:44;;44160:18;;-1:-1:-1;;;44160:18:0;;;;;;;;;;;44134:44;-1:-1:-1;;;;;44530:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;44589:49:0;;44530:44;;;;;;;;44589:49;;;;-1:-1:-1;;44530:44:0;;;;;;44589:49;;;;;;;;;;;;;;;;44655:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;44705:66:0;;;;-1:-1:-1;;;44755:15:0;44705:66;;;;;;;;;;;44655:25;;44838:328;44858:8;44854:1;:12;44838:328;;;44897:38;;44922:12;;-1:-1:-1;;;;;44897:38:0;;;44914:1;;44897:38;;44914:1;;44897:38;44958:4;:68;;;;;44967:59;44998:1;45002:2;45006:12;45020:5;44967:22;:59::i;:::-;44966:60;44958:68;44954:164;;;45058:40;;-1:-1:-1;;;45058:40:0;;;;;;;;;;;44954:164;45136:14;;;;;44868:3;44838:328;;;-1:-1:-1;45182:13:0;:37;;-1:-1:-1;;;;;;45182:37:0;-1:-1:-1;;;;;45182:37:0;;;;;;;;;;45241:60;42251:342;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:247:1;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;181:9;168:23;200:31;225:5;200:31;:::i;266:388::-;334:6;342;395:2;383:9;374:7;370:23;366:32;363:52;;;411:1;408;401:12;363:52;450:9;437:23;469:31;494:5;469:31;:::i;:::-;519:5;-1:-1:-1;576:2:1;561:18;;548:32;589:33;548:32;589:33;:::i;:::-;641:7;631:17;;;266:388;;;;;:::o;659:456::-;736:6;744;752;805:2;793:9;784:7;780:23;776:32;773:52;;;821:1;818;811:12;773:52;860:9;847:23;879:31;904:5;879:31;:::i;:::-;929:5;-1:-1:-1;986:2:1;971:18;;958:32;999:33;958:32;999:33;:::i;:::-;659:456;;1051:7;;-1:-1:-1;;;1105:2:1;1090:18;;;;1077:32;;659:456::o;1120:1266::-;1215:6;1223;1231;1239;1292:3;1280:9;1271:7;1267:23;1263:33;1260:53;;;1309:1;1306;1299:12;1260:53;1348:9;1335:23;1367:31;1392:5;1367:31;:::i;:::-;1417:5;-1:-1:-1;1474:2:1;1459:18;;1446:32;1487:33;1446:32;1487:33;:::i;:::-;1539:7;-1:-1:-1;1593:2:1;1578:18;;1565:32;;-1:-1:-1;1648:2:1;1633:18;;1620:32;1671:18;1701:14;;;1698:34;;;1728:1;1725;1718:12;1698:34;1766:6;1755:9;1751:22;1741:32;;1811:7;1804:4;1800:2;1796:13;1792:27;1782:55;;1833:1;1830;1823:12;1782:55;1869:2;1856:16;1891:2;1887;1884:10;1881:36;;;1897:18;;:::i;:::-;1972:2;1966:9;1940:2;2026:13;;-1:-1:-1;;2022:22:1;;;2046:2;2018:31;2014:40;2002:53;;;2070:18;;;2090:22;;;2067:46;2064:72;;;2116:18;;:::i;:::-;2156:10;2152:2;2145:22;2191:2;2183:6;2176:18;2231:7;2226:2;2221;2217;2213:11;2209:20;2206:33;2203:53;;;2252:1;2249;2242:12;2203:53;2308:2;2303;2299;2295:11;2290:2;2282:6;2278:15;2265:46;2353:1;2348:2;2343;2335:6;2331:15;2327:24;2320:35;2374:6;2364:16;;;;;;;1120:1266;;;;;;;:::o;2391:416::-;2456:6;2464;2517:2;2505:9;2496:7;2492:23;2488:32;2485:52;;;2533:1;2530;2523:12;2485:52;2572:9;2559:23;2591:31;2616:5;2591:31;:::i;:::-;2641:5;-1:-1:-1;2698:2:1;2683:18;;2670:32;2740:15;;2733:23;2721:36;;2711:64;;2771:1;2768;2761:12;2812:315;2880:6;2888;2941:2;2929:9;2920:7;2916:23;2912:32;2909:52;;;2957:1;2954;2947:12;2909:52;2996:9;2983:23;3015:31;3040:5;3015:31;:::i;:::-;3065:5;3117:2;3102:18;;;;3089:32;;-1:-1:-1;;;2812:315:1:o;3132:245::-;3190:6;3243:2;3231:9;3222:7;3218:23;3214:32;3211:52;;;3259:1;3256;3249:12;3211:52;3298:9;3285:23;3317:30;3341:5;3317:30;:::i;3382:249::-;3451:6;3504:2;3492:9;3483:7;3479:23;3475:32;3472:52;;;3520:1;3517;3510:12;3472:52;3552:9;3546:16;3571:30;3595:5;3571:30;:::i;3636:592::-;3707:6;3715;3768:2;3756:9;3747:7;3743:23;3739:32;3736:52;;;3784:1;3781;3774:12;3736:52;3824:9;3811:23;3853:18;3894:2;3886:6;3883:14;3880:34;;;3910:1;3907;3900:12;3880:34;3948:6;3937:9;3933:22;3923:32;;3993:7;3986:4;3982:2;3978:13;3974:27;3964:55;;4015:1;4012;4005:12;3964:55;4055:2;4042:16;4081:2;4073:6;4070:14;4067:34;;;4097:1;4094;4087:12;4067:34;4142:7;4137:2;4128:6;4124:2;4120:15;4116:24;4113:37;4110:57;;;4163:1;4160;4153:12;4110:57;4194:2;4186:11;;;;;4216:6;;-1:-1:-1;3636:592:1;;-1:-1:-1;;;;3636:592:1:o;4233:180::-;4292:6;4345:2;4333:9;4324:7;4320:23;4316:32;4313:52;;;4361:1;4358;4351:12;4313:52;-1:-1:-1;4384:23:1;;4233:180;-1:-1:-1;4233:180:1:o;4418:315::-;4486:6;4494;4547:2;4535:9;4526:7;4522:23;4518:32;4515:52;;;4563:1;4560;4553:12;4515:52;4599:9;4586:23;4576:33;;4659:2;4648:9;4644:18;4631:32;4672:31;4697:5;4672:31;:::i;5066:257::-;5107:3;5145:5;5139:12;5172:6;5167:3;5160:19;5188:63;5244:6;5237:4;5232:3;5228:14;5221:4;5214:5;5210:16;5188:63;:::i;:::-;5305:2;5284:15;-1:-1:-1;;5280:29:1;5271:39;;;;5312:4;5267:50;;5066:257;-1:-1:-1;;5066:257:1:o;5328:470::-;5507:3;5545:6;5539:13;5561:53;5607:6;5602:3;5595:4;5587:6;5583:17;5561:53;:::i;:::-;5677:13;;5636:16;;;;5699:57;5677:13;5636:16;5733:4;5721:17;;5699:57;:::i;:::-;5772:20;;5328:470;-1:-1:-1;;;;5328:470:1:o;6221:488::-;-1:-1:-1;;;;;6490:15:1;;;6472:34;;6542:15;;6537:2;6522:18;;6515:43;6589:2;6574:18;;6567:34;;;6637:3;6632:2;6617:18;;6610:31;;;6415:4;;6658:45;;6683:19;;6675:6;6658:45;:::i;:::-;6650:53;6221:488;-1:-1:-1;;;;;;6221:488:1:o;6906:219::-;7055:2;7044:9;7037:21;7018:4;7075:44;7115:2;7104:9;7100:18;7092:6;7075:44;:::i;9307:356::-;9509:2;9491:21;;;9528:18;;;9521:30;9587:34;9582:2;9567:18;;9560:62;9654:2;9639:18;;9307:356::o;10196:128::-;10236:3;10267:1;10263:6;10260:1;10257:13;10254:39;;;10273:18;;:::i;:::-;-1:-1:-1;10309:9:1;;10196:128::o;10329:120::-;10369:1;10395;10385:35;;10400:18;;:::i;:::-;-1:-1:-1;10434:9:1;;10329:120::o;10454:168::-;10494:7;10560:1;10556;10552:6;10548:14;10545:1;10542:21;10537:1;10530:9;10523:17;10519:45;10516:71;;;10567:18;;:::i;:::-;-1:-1:-1;10607:9:1;;10454:168::o;10627:125::-;10667:4;10695:1;10692;10689:8;10686:34;;;10700:18;;:::i;:::-;-1:-1:-1;10737:9:1;;10627:125::o;10757:258::-;10829:1;10839:113;10853:6;10850:1;10847:13;10839:113;;;10929:11;;;10923:18;10910:11;;;10903:39;10875:2;10868:10;10839:113;;;10970:6;10967:1;10964:13;10961:48;;;-1:-1:-1;;11005:1:1;10987:16;;10980:27;10757:258::o;11020:380::-;11099:1;11095:12;;;;11142;;;11163:61;;11217:4;11209:6;11205:17;11195:27;;11163:61;11270:2;11262:6;11259:14;11239:18;11236:38;11233:161;;;11316:10;11311:3;11307:20;11304:1;11297:31;11351:4;11348:1;11341:15;11379:4;11376:1;11369:15;11233:161;;11020:380;;;:::o;11405:135::-;11444:3;-1:-1:-1;;11465:17:1;;11462:43;;;11485:18;;:::i;:::-;-1:-1:-1;11532:1:1;11521:13;;11405:135::o;11545:112::-;11577:1;11603;11593:35;;11608:18;;:::i;:::-;-1:-1:-1;11642:9:1;;11545:112::o;11662:127::-;11723:10;11718:3;11714:20;11711:1;11704:31;11754:4;11751:1;11744:15;11778:4;11775:1;11768:15;11794:127;11855:10;11850:3;11846:20;11843:1;11836:31;11886:4;11883:1;11876:15;11910:4;11907:1;11900:15;11926:127;11987:10;11982:3;11978:20;11975:1;11968:31;12018:4;12015:1;12008:15;12042:4;12039:1;12032:15;12058:127;12119:10;12114:3;12110:20;12107:1;12100:31;12150:4;12147:1;12140:15;12174:4;12171:1;12164:15;12190:131;-1:-1:-1;;;;;12265:31:1;;12255:42;;12245:70;;12311:1;12308;12301:12;12326:131;-1:-1:-1;;;;;;12400:32:1;;12390:43;;12380:71;;12447:1;12444;12437:12

Swarm Source

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