ETH Price: $2,692.48 (-2.00%)
Gas: 0.81 Gwei

Token

PunkFastFood (PFF)
 

Overview

Max Total Supply

4 PFF

Holders

3

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 PFF
0x38f97aa08bff98162a4311cca5bdd9aa74b86264
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:
PunkFastFood

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

    uint public constant _TOTALSUPPLY =10000;
    uint public maxQuantity =50;
    uint256 public price = 0.01 ether; 
    bool public isPaused = true;
    mapping(address => bool) public _userExist;   
    address[7] private _shareholders;

    uint[7] private _shares;    
    
    string public PFFProvenance = "";
    
    event PaymentReleased(address to, uint256 amount);
    
    constructor(string memory baseURI) ERC721("PunkFastFood", "PFF") {
        setBaseURI(baseURI);

        _shareholders[0] = 0x64d97D7E20Eb2c78a55fDB84944008E43d9900f2; // kuip
        _shareholders[1] = 0x7841C102d8d13c1f78C0d942e73117CDC6119697; // derv


        _shares[0] = 5000;
        _shares[1] = 5000;

    }    

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

    function setPrice(uint256 _newPrice) public onlyOwner() {
        price = _newPrice;
    }
    function setMaxxQtPerTx(uint256 _quantity) public onlyOwner {
        maxQuantity=_quantity;
    }


    modifier isSaleOpen{
        require(totalSupply() < _TOTALSUPPLY, "Sale end");
        _;
    }
    function flipPauseStatus() public onlyOwner {
        isPaused = !isPaused;
    }
    function getPrice(uint256 _quantity) public view returns (uint256) {
       
           return _quantity*price ;
     }


    function mint(uint256 chosenAmount) public payable {
        uint256 supply = totalSupply();
        require( !isPaused,                              "Sale paused" );
        require( chosenAmount < 51,                              "You can mint a maximum of 50 PFFs" );
        require( totalSupply()+chosenAmount<=_TOTALSUPPLY,      "Exceeds maximum PFF supply" );
        require( msg.value >= price * chosenAmount,             "Ether sent is not correct" );

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

    function withdraw(uint256 amount) public onlyOwner {
        require(address(this).balance >= amount, "Insufficient balance");
        
        uint256 totalShares = 10000;
        for (uint256 i = 0; i < 2; i++) {
            uint256 payment = amount * _shares[i]/totalShares;
            
            Address.sendValue(payable(_shareholders[i]),payment);
            emit PaymentReleased(_shareholders[i],payment);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PFFProvenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_TOTALSUPPLY","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":"address","name":"","type":"address"}],"name":"_userExist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPauseStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"chosenAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"setMaxxQtPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526032600c55662386f26fc10000600d556001600e60006101000a81548160ff02191690831515021790555060405180602001604052806000815250601e90805190602001906200005692919062000478565b503480156200006457600080fd5b5060405162004ced38038062004ced83398181016040528101906200008a91906200059a565b6040518060400160405280600c81526020017f50756e6b46617374466f6f6400000000000000000000000000000000000000008152506040518060400160405280600381526020017f504646000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200010e92919062000478565b5080600190805190602001906200012792919062000478565b50505060006200013c6200039b60201b60201c565b905080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001ec81620003a360201b60201c565b7364d97d7e20eb2c78a55fdb84944008e43d9900f260106000600781106200023d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737841c102d8d13c1f78c0d942e73117cdc61196976010600160078110620002cd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061138860176000600781106200034b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b018190555061138860176001600781106200038f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01819055505062000785565b600033905090565b620003b36200039b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003d96200044e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000432576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004299062000621565b60405180910390fd5b80600690805190602001906200044a92919062000478565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200048690620006f1565b90600052602060002090601f016020900481019282620004aa5760008555620004f6565b82601f10620004c557805160ff1916838001178555620004f6565b82800160010185558215620004f6579182015b82811115620004f5578251825591602001919060010190620004d8565b5b50905062000505919062000509565b5090565b5b80821115620005245760008160009055506001016200050a565b5090565b60006200053f620005398462000677565b62000643565b9050828152602081018484840111156200055857600080fd5b62000565848285620006bb565b509392505050565b600082601f8301126200057f57600080fd5b81516200059184826020860162000528565b91505092915050565b600060208284031215620005ad57600080fd5b600082015167ffffffffffffffff811115620005c857600080fd5b620005d6848285016200056d565b91505092915050565b6000620005ee602083620006aa565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600060208201905081810360008301526200063c81620005df565b9050919050565b6000604051905081810181811067ffffffffffffffff821117156200066d576200066c62000756565b5b8060405250919050565b600067ffffffffffffffff82111562000695576200069462000756565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b60005b83811015620006db578082015181840152602081019050620006be565b83811115620006eb576000848401525b50505050565b600060028204905060018216806200070a57607f821691505b6020821081141562000721576200072062000727565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61455880620007956000396000f3fe6080604052600436106101ee5760003560e01c80638462151c1161010d578063b187bd26116100a0578063e640cf7d1161006f578063e640cf7d14610728578063e757223014610753578063e985e9c514610790578063f2fde38b146107cd578063fa62884c146107f6576101ee565b8063b187bd261461066c578063b88d4fde14610697578063c87b56dd146106c0578063db4568e2146106fd576101ee565b80639d38fd21116100dc5780639d38fd21146105d3578063a035b1fe146105fc578063a0712d6814610627578063a22cb46514610643576101ee565b80638462151c146105175780638da5cb5b1461055457806391b7f5ed1461057f57806395d89b41146105a8576101ee565b80632f745c591161018557806355f804b31161015457806355f804b3146104495780636352211e1461047257806370a08231146104af578063743976a0146104ec576101ee565b80632f745c591461037b5780632ffbc5cb146103b857806342842e0e146103e35780634f6ccce71461040c576101ee565b806318160ddd116101c157806318160ddd146102c157806318618824146102ec57806323b872dd146103295780632e1a7d4d14610352576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a6004803603810190610215919061313c565b61080d565b6040516102279190613cf2565b60405180910390f35b34801561023c57600080fd5b50610245610887565b6040516102529190613d0d565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d91906131cf565b610919565b60405161028f9190613c40565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190613100565b61099e565b005b3480156102cd57600080fd5b506102d6610ab6565b6040516102e3919061404f565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e9190612f95565b610ac3565b6040516103209190613cf2565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b9190612ffa565b610ae3565b005b34801561035e57600080fd5b50610379600480360381019061037491906131cf565b610b43565b005b34801561038757600080fd5b506103a2600480360381019061039d9190613100565b610d7d565b6040516103af919061404f565b60405180910390f35b3480156103c457600080fd5b506103cd610e22565b6040516103da9190613d0d565b60405180910390f35b3480156103ef57600080fd5b5061040a60048036038101906104059190612ffa565b610eb0565b005b34801561041857600080fd5b50610433600480360381019061042e91906131cf565b610ed0565b604051610440919061404f565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b919061318e565b610f67565b005b34801561047e57600080fd5b50610499600480360381019061049491906131cf565b610ffd565b6040516104a69190613c40565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d19190612f95565b6110af565b6040516104e3919061404f565b60405180910390f35b3480156104f857600080fd5b50610501611167565b60405161050e9190613d0d565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190612f95565b6111f5565b60405161054b9190613cd0565b60405180910390f35b34801561056057600080fd5b506105696112ef565b6040516105769190613c40565b60405180910390f35b34801561058b57600080fd5b506105a660048036038101906105a191906131cf565b611319565b005b3480156105b457600080fd5b506105bd61139f565b6040516105ca9190613d0d565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f591906131cf565b611431565b005b34801561060857600080fd5b506106116114b7565b60405161061e919061404f565b60405180910390f35b610641600480360381019061063c91906131cf565b6114bd565b005b34801561064f57600080fd5b5061066a600480360381019061066591906130c4565b61163b565b005b34801561067857600080fd5b506106816117bc565b60405161068e9190613cf2565b60405180910390f35b3480156106a357600080fd5b506106be60048036038101906106b99190613049565b6117cf565b005b3480156106cc57600080fd5b506106e760048036038101906106e291906131cf565b611831565b6040516106f49190613d0d565b60405180910390f35b34801561070957600080fd5b506107126118d8565b60405161071f919061404f565b60405180910390f35b34801561073457600080fd5b5061073d6118de565b60405161074a919061404f565b60405180910390f35b34801561075f57600080fd5b5061077a600480360381019061077591906131cf565b6118e4565b604051610787919061404f565b60405180910390f35b34801561079c57600080fd5b506107b760048036038101906107b29190612fbe565b6118fb565b6040516107c49190613cf2565b60405180910390f35b3480156107d957600080fd5b506107f460048036038101906107ef9190612f95565b61198f565b005b34801561080257600080fd5b5061080b611a87565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610880575061087f82611b2f565b5b9050919050565b6060600080546108969061434d565b80601f01602080910402602001604051908101604052809291908181526020018280546108c29061434d565b801561090f5780601f106108e45761010080835404028352916020019161090f565b820191906000526020600020905b8154815290600101906020018083116108f257829003601f168201915b5050505050905090565b600061092482611c11565b610963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095a90613f0f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109a982610ffd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1190613faf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a39611c7d565b73ffffffffffffffffffffffffffffffffffffffff161480610a685750610a6781610a62611c7d565b6118fb565b5b610aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9e90613e8f565b60405180910390fd5b610ab18383611c85565b505050565b6000600980549050905090565b600f6020528060005260406000206000915054906101000a900460ff1681565b610af4610aee611c7d565b82611d3e565b610b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2a90613fef565b60405180910390fd5b610b3e838383611e1c565b505050565b610b4b611c7d565b73ffffffffffffffffffffffffffffffffffffffff16610b696112ef565b73ffffffffffffffffffffffffffffffffffffffff1614610bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb690613f2f565b60405180910390fd5b80471015610c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf990613e0f565b60405180910390fd5b6000612710905060005b6002811015610d785760008260178360078110610c52577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b015485610c5f9190614209565b610c6991906141d8565b9050610cd060108360078110610ca8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612078565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05660108360078110610d2b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682604051610d5c929190613ca7565b60405180910390a1508080610d709061437f565b915050610c0c565b505050565b6000610d88836110af565b8210610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc090613d4f565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601e8054610e2f9061434d565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5b9061434d565b8015610ea85780601f10610e7d57610100808354040283529160200191610ea8565b820191906000526020600020905b815481529060010190602001808311610e8b57829003601f168201915b505050505081565b610ecb838383604051806020016040528060008152506117cf565b505050565b6000610eda610ab6565b8210610f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f129061400f565b60405180910390fd5b60098281548110610f55577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610f6f611c7d565b73ffffffffffffffffffffffffffffffffffffffff16610f8d6112ef565b73ffffffffffffffffffffffffffffffffffffffff1614610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda90613f2f565b60405180910390fd5b8060069080519060200190610ff9929190612db9565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109d90613ecf565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111790613eaf565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600680546111749061434d565b80601f01602080910402602001604051908101604052809291908181526020018280546111a09061434d565b80156111ed5780601f106111c2576101008083540402835291602001916111ed565b820191906000526020600020905b8154815290600101906020018083116111d057829003601f168201915b505050505081565b60606000611202836110af565b905060008167ffffffffffffffff811115611246577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156112745781602001602082028036833780820191505090505b50905060005b828110156112e45761128c8582610d7d565b8282815181106112c5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806112dc9061437f565b91505061127a565b508092505050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611321611c7d565b73ffffffffffffffffffffffffffffffffffffffff1661133f6112ef565b73ffffffffffffffffffffffffffffffffffffffff1614611395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138c90613f2f565b60405180910390fd5b80600d8190555050565b6060600180546113ae9061434d565b80601f01602080910402602001604051908101604052809291908181526020018280546113da9061434d565b80156114275780601f106113fc57610100808354040283529160200191611427565b820191906000526020600020905b81548152906001019060200180831161140a57829003601f168201915b5050505050905090565b611439611c7d565b73ffffffffffffffffffffffffffffffffffffffff166114576112ef565b73ffffffffffffffffffffffffffffffffffffffff16146114ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a490613f2f565b60405180910390fd5b80600c8190555050565b600d5481565b60006114c7610ab6565b9050600e60009054906101000a900460ff1615611519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151090613d2f565b60405180910390fd5b6033821061155c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155390613f8f565b60405180910390fd5b61271082611568610ab6565b6115729190614182565b11156115b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115aa9061402f565b60405180910390fd5b81600d546115c19190614209565b341015611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa90613fcf565b60405180910390fd5b60005b828110156116365761162333828461161e9190614182565b61216c565b808061162e9061437f565b915050611606565b505050565b611643611c7d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a890613def565b60405180910390fd5b80600560006116be611c7d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661176b611c7d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117b09190613cf2565b60405180910390a35050565b600e60009054906101000a900460ff1681565b6117e06117da611c7d565b83611d3e565b61181f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181690613fef565b60405180910390fd5b61182b8484848461218a565b50505050565b606061183c82611c11565b61187b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187290613f6f565b60405180910390fd5b60006118856121e6565b905060008151116118a557604051806020016040528060008152506118d0565b806118af84612278565b6040516020016118c0929190613c07565b6040516020818303038152906040525b915050919050565b61271081565b600c5481565b6000600d54826118f49190614209565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611997611c7d565b73ffffffffffffffffffffffffffffffffffffffff166119b56112ef565b73ffffffffffffffffffffffffffffffffffffffff1614611a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0290613f2f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7290613d8f565b60405180910390fd5b611a8481612425565b50565b611a8f611c7d565b73ffffffffffffffffffffffffffffffffffffffff16611aad6112ef565b73ffffffffffffffffffffffffffffffffffffffff1614611b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afa90613f2f565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611bfa57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c0a5750611c09826124eb565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611cf883610ffd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d4982611c11565b611d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7f90613e6f565b60405180910390fd5b6000611d9383610ffd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e0257508373ffffffffffffffffffffffffffffffffffffffff16611dea84610919565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e135750611e1281856118fb565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e3c82610ffd565b73ffffffffffffffffffffffffffffffffffffffff1614611e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8990613f4f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef990613dcf565b60405180910390fd5b611f0d838383612555565b611f18600082611c85565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f689190614263565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fbf9190614182565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b804710156120bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b290613e4f565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516120e190613c2b565b60006040518083038185875af1925050503d806000811461211e576040519150601f19603f3d011682016040523d82523d6000602084013e612123565b606091505b5050905080612167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215e90613e2f565b60405180910390fd5b505050565b612186828260405180602001604052806000815250612669565b5050565b612195848484611e1c565b6121a1848484846126c4565b6121e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d790613d6f565b60405180910390fd5b50505050565b6060600680546121f59061434d565b80601f01602080910402602001604051908101604052809291908181526020018280546122219061434d565b801561226e5780601f106122435761010080835404028352916020019161226e565b820191906000526020600020905b81548152906001019060200180831161225157829003601f168201915b5050505050905090565b606060008214156122c0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612420565b600082905060005b600082146122f25780806122db9061437f565b915050600a826122eb91906141d8565b91506122c8565b60008167ffffffffffffffff811115612334577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123665781602001600182028036833780820191505090505b5090505b600085146124195760018261237f9190614263565b9150600a8561238e91906143c8565b603061239a9190614182565b60f81b8183815181106123d6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561241291906141d8565b945061236a565b8093505050505b919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61256083838361285b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125a35761259e81612860565b6125e2565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146125e1576125e083826128a9565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126255761262081612a16565b612664565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612663576126628282612b59565b5b5b505050565b6126738383612bd8565b61268060008484846126c4565b6126bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b690613d6f565b60405180910390fd5b505050565b60006126e58473ffffffffffffffffffffffffffffffffffffffff16612da6565b1561284e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261270e611c7d565b8786866040518563ffffffff1660e01b81526004016127309493929190613c5b565b602060405180830381600087803b15801561274a57600080fd5b505af192505050801561277b57506040513d601f19601f820116820180604052508101906127789190613165565b60015b6127fe573d80600081146127ab576040519150601f19603f3d011682016040523d82523d6000602084013e6127b0565b606091505b506000815114156127f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ed90613d6f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612853565b600190505b949350505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016128b6846110af565b6128c09190614263565b90506000600860008481526020019081526020016000205490508181146129a5576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050612a2a9190614263565b90506000600a6000848152602001908152602001600020549050600060098381548110612a80577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110612ac8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612b3d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612b64836110af565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3f90613eef565b60405180910390fd5b612c5181611c11565b15612c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8890613daf565b60405180910390fd5b612c9d60008383612555565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ced9190614182565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612dc59061434d565b90600052602060002090601f016020900481019282612de75760008555612e2e565b82601f10612e0057805160ff1916838001178555612e2e565b82800160010185558215612e2e579182015b82811115612e2d578251825591602001919060010190612e12565b5b509050612e3b9190612e3f565b5090565b5b80821115612e58576000816000905550600101612e40565b5090565b6000612e6f612e6a8461409b565b61406a565b905082815260208101848484011115612e8757600080fd5b612e9284828561430b565b509392505050565b6000612ead612ea8846140cb565b61406a565b905082815260208101848484011115612ec557600080fd5b612ed084828561430b565b509392505050565b600081359050612ee7816144c6565b92915050565b600081359050612efc816144dd565b92915050565b600081359050612f11816144f4565b92915050565b600081519050612f26816144f4565b92915050565b600082601f830112612f3d57600080fd5b8135612f4d848260208601612e5c565b91505092915050565b600082601f830112612f6757600080fd5b8135612f77848260208601612e9a565b91505092915050565b600081359050612f8f8161450b565b92915050565b600060208284031215612fa757600080fd5b6000612fb584828501612ed8565b91505092915050565b60008060408385031215612fd157600080fd5b6000612fdf85828601612ed8565b9250506020612ff085828601612ed8565b9150509250929050565b60008060006060848603121561300f57600080fd5b600061301d86828701612ed8565b935050602061302e86828701612ed8565b925050604061303f86828701612f80565b9150509250925092565b6000806000806080858703121561305f57600080fd5b600061306d87828801612ed8565b945050602061307e87828801612ed8565b935050604061308f87828801612f80565b925050606085013567ffffffffffffffff8111156130ac57600080fd5b6130b887828801612f2c565b91505092959194509250565b600080604083850312156130d757600080fd5b60006130e585828601612ed8565b92505060206130f685828601612eed565b9150509250929050565b6000806040838503121561311357600080fd5b600061312185828601612ed8565b925050602061313285828601612f80565b9150509250929050565b60006020828403121561314e57600080fd5b600061315c84828501612f02565b91505092915050565b60006020828403121561317757600080fd5b600061318584828501612f17565b91505092915050565b6000602082840312156131a057600080fd5b600082013567ffffffffffffffff8111156131ba57600080fd5b6131c684828501612f56565b91505092915050565b6000602082840312156131e157600080fd5b60006131ef84828501612f80565b91505092915050565b60006132048383613be9565b60208301905092915050565b61321981614297565b82525050565b600061322a8261410b565b6132348185614139565b935061323f836140fb565b8060005b8381101561327057815161325788826131f8565b97506132628361412c565b925050600181019050613243565b5085935050505092915050565b613286816142a9565b82525050565b600061329782614116565b6132a1818561414a565b93506132b181856020860161431a565b6132ba816144b5565b840191505092915050565b60006132d082614121565b6132da8185614166565b93506132ea81856020860161431a565b6132f3816144b5565b840191505092915050565b600061330982614121565b6133138185614177565b935061332381856020860161431a565b80840191505092915050565b600061333c600b83614166565b91507f53616c65207061757365640000000000000000000000000000000000000000006000830152602082019050919050565b600061337c602b83614166565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006133e2603283614166565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613448602683614166565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134ae601c83614166565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006134ee602483614166565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613554601983614166565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613594601483614166565b91507f496e73756666696369656e742062616c616e63650000000000000000000000006000830152602082019050919050565b60006135d4603a83614166565b91507f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008301527f6563697069656e74206d617920686176652072657665727465640000000000006020830152604082019050919050565b600061363a601d83614166565b91507f416464726573733a20696e73756666696369656e742062616c616e63650000006000830152602082019050919050565b600061367a602c83614166565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006136e0603883614166565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613746602a83614166565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006137ac602983614166565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613812602083614166565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613852602c83614166565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006138b8602083614166565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006138f8602983614166565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061395e602f83614166565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006139c4602183614166565b91507f596f752063616e206d696e742061206d6178696d756d206f662035302050464660008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a2a602183614166565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a90601983614166565b91507f45746865722073656e74206973206e6f7420636f7272656374000000000000006000830152602082019050919050565b6000613ad060008361415b565b9150600082019050919050565b6000613aea603183614166565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613b50602c83614166565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000613bb6601a83614166565b91507f45786365656473206d6178696d756d2050464620737570706c790000000000006000830152602082019050919050565b613bf281614301565b82525050565b613c0181614301565b82525050565b6000613c1382856132fe565b9150613c1f82846132fe565b91508190509392505050565b6000613c3682613ac3565b9150819050919050565b6000602082019050613c556000830184613210565b92915050565b6000608082019050613c706000830187613210565b613c7d6020830186613210565b613c8a6040830185613bf8565b8181036060830152613c9c818461328c565b905095945050505050565b6000604082019050613cbc6000830185613210565b613cc96020830184613bf8565b9392505050565b60006020820190508181036000830152613cea818461321f565b905092915050565b6000602082019050613d07600083018461327d565b92915050565b60006020820190508181036000830152613d2781846132c5565b905092915050565b60006020820190508181036000830152613d488161332f565b9050919050565b60006020820190508181036000830152613d688161336f565b9050919050565b60006020820190508181036000830152613d88816133d5565b9050919050565b60006020820190508181036000830152613da88161343b565b9050919050565b60006020820190508181036000830152613dc8816134a1565b9050919050565b60006020820190508181036000830152613de8816134e1565b9050919050565b60006020820190508181036000830152613e0881613547565b9050919050565b60006020820190508181036000830152613e2881613587565b9050919050565b60006020820190508181036000830152613e48816135c7565b9050919050565b60006020820190508181036000830152613e688161362d565b9050919050565b60006020820190508181036000830152613e888161366d565b9050919050565b60006020820190508181036000830152613ea8816136d3565b9050919050565b60006020820190508181036000830152613ec881613739565b9050919050565b60006020820190508181036000830152613ee88161379f565b9050919050565b60006020820190508181036000830152613f0881613805565b9050919050565b60006020820190508181036000830152613f2881613845565b9050919050565b60006020820190508181036000830152613f48816138ab565b9050919050565b60006020820190508181036000830152613f68816138eb565b9050919050565b60006020820190508181036000830152613f8881613951565b9050919050565b60006020820190508181036000830152613fa8816139b7565b9050919050565b60006020820190508181036000830152613fc881613a1d565b9050919050565b60006020820190508181036000830152613fe881613a83565b9050919050565b6000602082019050818103600083015261400881613add565b9050919050565b6000602082019050818103600083015261402881613b43565b9050919050565b6000602082019050818103600083015261404881613ba9565b9050919050565b60006020820190506140646000830184613bf8565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561409157614090614486565b5b8060405250919050565b600067ffffffffffffffff8211156140b6576140b5614486565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156140e6576140e5614486565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061418d82614301565b915061419883614301565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141cd576141cc6143f9565b5b828201905092915050565b60006141e382614301565b91506141ee83614301565b9250826141fe576141fd614428565b5b828204905092915050565b600061421482614301565b915061421f83614301565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614258576142576143f9565b5b828202905092915050565b600061426e82614301565b915061427983614301565b92508282101561428c5761428b6143f9565b5b828203905092915050565b60006142a2826142e1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561433857808201518184015260208101905061431d565b83811115614347576000848401525b50505050565b6000600282049050600182168061436557607f821691505b6020821081141561437957614378614457565b5b50919050565b600061438a82614301565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143bd576143bc6143f9565b5b600182019050919050565b60006143d382614301565b91506143de83614301565b9250826143ee576143ed614428565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6144cf81614297565b81146144da57600080fd5b50565b6144e6816142a9565b81146144f157600080fd5b50565b6144fd816142b5565b811461450857600080fd5b50565b61451481614301565b811461451f57600080fd5b5056fea2646970667358221220e5770ad524c357c0c71ee77e3639695229f38543a38b441983e5039067ff0a7d64736f6c634300080000330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002168747470733a2f2f7777772e70756e6b66617374666f6f642e636f6d2f6170692f00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80638462151c1161010d578063b187bd26116100a0578063e640cf7d1161006f578063e640cf7d14610728578063e757223014610753578063e985e9c514610790578063f2fde38b146107cd578063fa62884c146107f6576101ee565b8063b187bd261461066c578063b88d4fde14610697578063c87b56dd146106c0578063db4568e2146106fd576101ee565b80639d38fd21116100dc5780639d38fd21146105d3578063a035b1fe146105fc578063a0712d6814610627578063a22cb46514610643576101ee565b80638462151c146105175780638da5cb5b1461055457806391b7f5ed1461057f57806395d89b41146105a8576101ee565b80632f745c591161018557806355f804b31161015457806355f804b3146104495780636352211e1461047257806370a08231146104af578063743976a0146104ec576101ee565b80632f745c591461037b5780632ffbc5cb146103b857806342842e0e146103e35780634f6ccce71461040c576101ee565b806318160ddd116101c157806318160ddd146102c157806318618824146102ec57806323b872dd146103295780632e1a7d4d14610352576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a6004803603810190610215919061313c565b61080d565b6040516102279190613cf2565b60405180910390f35b34801561023c57600080fd5b50610245610887565b6040516102529190613d0d565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d91906131cf565b610919565b60405161028f9190613c40565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190613100565b61099e565b005b3480156102cd57600080fd5b506102d6610ab6565b6040516102e3919061404f565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e9190612f95565b610ac3565b6040516103209190613cf2565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b9190612ffa565b610ae3565b005b34801561035e57600080fd5b50610379600480360381019061037491906131cf565b610b43565b005b34801561038757600080fd5b506103a2600480360381019061039d9190613100565b610d7d565b6040516103af919061404f565b60405180910390f35b3480156103c457600080fd5b506103cd610e22565b6040516103da9190613d0d565b60405180910390f35b3480156103ef57600080fd5b5061040a60048036038101906104059190612ffa565b610eb0565b005b34801561041857600080fd5b50610433600480360381019061042e91906131cf565b610ed0565b604051610440919061404f565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b919061318e565b610f67565b005b34801561047e57600080fd5b50610499600480360381019061049491906131cf565b610ffd565b6040516104a69190613c40565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d19190612f95565b6110af565b6040516104e3919061404f565b60405180910390f35b3480156104f857600080fd5b50610501611167565b60405161050e9190613d0d565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190612f95565b6111f5565b60405161054b9190613cd0565b60405180910390f35b34801561056057600080fd5b506105696112ef565b6040516105769190613c40565b60405180910390f35b34801561058b57600080fd5b506105a660048036038101906105a191906131cf565b611319565b005b3480156105b457600080fd5b506105bd61139f565b6040516105ca9190613d0d565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f591906131cf565b611431565b005b34801561060857600080fd5b506106116114b7565b60405161061e919061404f565b60405180910390f35b610641600480360381019061063c91906131cf565b6114bd565b005b34801561064f57600080fd5b5061066a600480360381019061066591906130c4565b61163b565b005b34801561067857600080fd5b506106816117bc565b60405161068e9190613cf2565b60405180910390f35b3480156106a357600080fd5b506106be60048036038101906106b99190613049565b6117cf565b005b3480156106cc57600080fd5b506106e760048036038101906106e291906131cf565b611831565b6040516106f49190613d0d565b60405180910390f35b34801561070957600080fd5b506107126118d8565b60405161071f919061404f565b60405180910390f35b34801561073457600080fd5b5061073d6118de565b60405161074a919061404f565b60405180910390f35b34801561075f57600080fd5b5061077a600480360381019061077591906131cf565b6118e4565b604051610787919061404f565b60405180910390f35b34801561079c57600080fd5b506107b760048036038101906107b29190612fbe565b6118fb565b6040516107c49190613cf2565b60405180910390f35b3480156107d957600080fd5b506107f460048036038101906107ef9190612f95565b61198f565b005b34801561080257600080fd5b5061080b611a87565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610880575061087f82611b2f565b5b9050919050565b6060600080546108969061434d565b80601f01602080910402602001604051908101604052809291908181526020018280546108c29061434d565b801561090f5780601f106108e45761010080835404028352916020019161090f565b820191906000526020600020905b8154815290600101906020018083116108f257829003601f168201915b5050505050905090565b600061092482611c11565b610963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095a90613f0f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109a982610ffd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1190613faf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a39611c7d565b73ffffffffffffffffffffffffffffffffffffffff161480610a685750610a6781610a62611c7d565b6118fb565b5b610aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9e90613e8f565b60405180910390fd5b610ab18383611c85565b505050565b6000600980549050905090565b600f6020528060005260406000206000915054906101000a900460ff1681565b610af4610aee611c7d565b82611d3e565b610b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2a90613fef565b60405180910390fd5b610b3e838383611e1c565b505050565b610b4b611c7d565b73ffffffffffffffffffffffffffffffffffffffff16610b696112ef565b73ffffffffffffffffffffffffffffffffffffffff1614610bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb690613f2f565b60405180910390fd5b80471015610c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf990613e0f565b60405180910390fd5b6000612710905060005b6002811015610d785760008260178360078110610c52577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b015485610c5f9190614209565b610c6991906141d8565b9050610cd060108360078110610ca8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612078565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05660108360078110610d2b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682604051610d5c929190613ca7565b60405180910390a1508080610d709061437f565b915050610c0c565b505050565b6000610d88836110af565b8210610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc090613d4f565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601e8054610e2f9061434d565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5b9061434d565b8015610ea85780601f10610e7d57610100808354040283529160200191610ea8565b820191906000526020600020905b815481529060010190602001808311610e8b57829003601f168201915b505050505081565b610ecb838383604051806020016040528060008152506117cf565b505050565b6000610eda610ab6565b8210610f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f129061400f565b60405180910390fd5b60098281548110610f55577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610f6f611c7d565b73ffffffffffffffffffffffffffffffffffffffff16610f8d6112ef565b73ffffffffffffffffffffffffffffffffffffffff1614610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda90613f2f565b60405180910390fd5b8060069080519060200190610ff9929190612db9565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109d90613ecf565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111790613eaf565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600680546111749061434d565b80601f01602080910402602001604051908101604052809291908181526020018280546111a09061434d565b80156111ed5780601f106111c2576101008083540402835291602001916111ed565b820191906000526020600020905b8154815290600101906020018083116111d057829003601f168201915b505050505081565b60606000611202836110af565b905060008167ffffffffffffffff811115611246577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156112745781602001602082028036833780820191505090505b50905060005b828110156112e45761128c8582610d7d565b8282815181106112c5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806112dc9061437f565b91505061127a565b508092505050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611321611c7d565b73ffffffffffffffffffffffffffffffffffffffff1661133f6112ef565b73ffffffffffffffffffffffffffffffffffffffff1614611395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138c90613f2f565b60405180910390fd5b80600d8190555050565b6060600180546113ae9061434d565b80601f01602080910402602001604051908101604052809291908181526020018280546113da9061434d565b80156114275780601f106113fc57610100808354040283529160200191611427565b820191906000526020600020905b81548152906001019060200180831161140a57829003601f168201915b5050505050905090565b611439611c7d565b73ffffffffffffffffffffffffffffffffffffffff166114576112ef565b73ffffffffffffffffffffffffffffffffffffffff16146114ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a490613f2f565b60405180910390fd5b80600c8190555050565b600d5481565b60006114c7610ab6565b9050600e60009054906101000a900460ff1615611519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151090613d2f565b60405180910390fd5b6033821061155c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155390613f8f565b60405180910390fd5b61271082611568610ab6565b6115729190614182565b11156115b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115aa9061402f565b60405180910390fd5b81600d546115c19190614209565b341015611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa90613fcf565b60405180910390fd5b60005b828110156116365761162333828461161e9190614182565b61216c565b808061162e9061437f565b915050611606565b505050565b611643611c7d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a890613def565b60405180910390fd5b80600560006116be611c7d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661176b611c7d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117b09190613cf2565b60405180910390a35050565b600e60009054906101000a900460ff1681565b6117e06117da611c7d565b83611d3e565b61181f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181690613fef565b60405180910390fd5b61182b8484848461218a565b50505050565b606061183c82611c11565b61187b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187290613f6f565b60405180910390fd5b60006118856121e6565b905060008151116118a557604051806020016040528060008152506118d0565b806118af84612278565b6040516020016118c0929190613c07565b6040516020818303038152906040525b915050919050565b61271081565b600c5481565b6000600d54826118f49190614209565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611997611c7d565b73ffffffffffffffffffffffffffffffffffffffff166119b56112ef565b73ffffffffffffffffffffffffffffffffffffffff1614611a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0290613f2f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7290613d8f565b60405180910390fd5b611a8481612425565b50565b611a8f611c7d565b73ffffffffffffffffffffffffffffffffffffffff16611aad6112ef565b73ffffffffffffffffffffffffffffffffffffffff1614611b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afa90613f2f565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611bfa57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c0a5750611c09826124eb565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611cf883610ffd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d4982611c11565b611d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7f90613e6f565b60405180910390fd5b6000611d9383610ffd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e0257508373ffffffffffffffffffffffffffffffffffffffff16611dea84610919565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e135750611e1281856118fb565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e3c82610ffd565b73ffffffffffffffffffffffffffffffffffffffff1614611e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8990613f4f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef990613dcf565b60405180910390fd5b611f0d838383612555565b611f18600082611c85565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f689190614263565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fbf9190614182565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b804710156120bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b290613e4f565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516120e190613c2b565b60006040518083038185875af1925050503d806000811461211e576040519150601f19603f3d011682016040523d82523d6000602084013e612123565b606091505b5050905080612167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215e90613e2f565b60405180910390fd5b505050565b612186828260405180602001604052806000815250612669565b5050565b612195848484611e1c565b6121a1848484846126c4565b6121e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d790613d6f565b60405180910390fd5b50505050565b6060600680546121f59061434d565b80601f01602080910402602001604051908101604052809291908181526020018280546122219061434d565b801561226e5780601f106122435761010080835404028352916020019161226e565b820191906000526020600020905b81548152906001019060200180831161225157829003601f168201915b5050505050905090565b606060008214156122c0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612420565b600082905060005b600082146122f25780806122db9061437f565b915050600a826122eb91906141d8565b91506122c8565b60008167ffffffffffffffff811115612334577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123665781602001600182028036833780820191505090505b5090505b600085146124195760018261237f9190614263565b9150600a8561238e91906143c8565b603061239a9190614182565b60f81b8183815181106123d6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561241291906141d8565b945061236a565b8093505050505b919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61256083838361285b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125a35761259e81612860565b6125e2565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146125e1576125e083826128a9565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126255761262081612a16565b612664565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612663576126628282612b59565b5b5b505050565b6126738383612bd8565b61268060008484846126c4565b6126bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b690613d6f565b60405180910390fd5b505050565b60006126e58473ffffffffffffffffffffffffffffffffffffffff16612da6565b1561284e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261270e611c7d565b8786866040518563ffffffff1660e01b81526004016127309493929190613c5b565b602060405180830381600087803b15801561274a57600080fd5b505af192505050801561277b57506040513d601f19601f820116820180604052508101906127789190613165565b60015b6127fe573d80600081146127ab576040519150601f19603f3d011682016040523d82523d6000602084013e6127b0565b606091505b506000815114156127f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ed90613d6f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612853565b600190505b949350505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016128b6846110af565b6128c09190614263565b90506000600860008481526020019081526020016000205490508181146129a5576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050612a2a9190614263565b90506000600a6000848152602001908152602001600020549050600060098381548110612a80577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110612ac8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612b3d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612b64836110af565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3f90613eef565b60405180910390fd5b612c5181611c11565b15612c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8890613daf565b60405180910390fd5b612c9d60008383612555565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ced9190614182565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612dc59061434d565b90600052602060002090601f016020900481019282612de75760008555612e2e565b82601f10612e0057805160ff1916838001178555612e2e565b82800160010185558215612e2e579182015b82811115612e2d578251825591602001919060010190612e12565b5b509050612e3b9190612e3f565b5090565b5b80821115612e58576000816000905550600101612e40565b5090565b6000612e6f612e6a8461409b565b61406a565b905082815260208101848484011115612e8757600080fd5b612e9284828561430b565b509392505050565b6000612ead612ea8846140cb565b61406a565b905082815260208101848484011115612ec557600080fd5b612ed084828561430b565b509392505050565b600081359050612ee7816144c6565b92915050565b600081359050612efc816144dd565b92915050565b600081359050612f11816144f4565b92915050565b600081519050612f26816144f4565b92915050565b600082601f830112612f3d57600080fd5b8135612f4d848260208601612e5c565b91505092915050565b600082601f830112612f6757600080fd5b8135612f77848260208601612e9a565b91505092915050565b600081359050612f8f8161450b565b92915050565b600060208284031215612fa757600080fd5b6000612fb584828501612ed8565b91505092915050565b60008060408385031215612fd157600080fd5b6000612fdf85828601612ed8565b9250506020612ff085828601612ed8565b9150509250929050565b60008060006060848603121561300f57600080fd5b600061301d86828701612ed8565b935050602061302e86828701612ed8565b925050604061303f86828701612f80565b9150509250925092565b6000806000806080858703121561305f57600080fd5b600061306d87828801612ed8565b945050602061307e87828801612ed8565b935050604061308f87828801612f80565b925050606085013567ffffffffffffffff8111156130ac57600080fd5b6130b887828801612f2c565b91505092959194509250565b600080604083850312156130d757600080fd5b60006130e585828601612ed8565b92505060206130f685828601612eed565b9150509250929050565b6000806040838503121561311357600080fd5b600061312185828601612ed8565b925050602061313285828601612f80565b9150509250929050565b60006020828403121561314e57600080fd5b600061315c84828501612f02565b91505092915050565b60006020828403121561317757600080fd5b600061318584828501612f17565b91505092915050565b6000602082840312156131a057600080fd5b600082013567ffffffffffffffff8111156131ba57600080fd5b6131c684828501612f56565b91505092915050565b6000602082840312156131e157600080fd5b60006131ef84828501612f80565b91505092915050565b60006132048383613be9565b60208301905092915050565b61321981614297565b82525050565b600061322a8261410b565b6132348185614139565b935061323f836140fb565b8060005b8381101561327057815161325788826131f8565b97506132628361412c565b925050600181019050613243565b5085935050505092915050565b613286816142a9565b82525050565b600061329782614116565b6132a1818561414a565b93506132b181856020860161431a565b6132ba816144b5565b840191505092915050565b60006132d082614121565b6132da8185614166565b93506132ea81856020860161431a565b6132f3816144b5565b840191505092915050565b600061330982614121565b6133138185614177565b935061332381856020860161431a565b80840191505092915050565b600061333c600b83614166565b91507f53616c65207061757365640000000000000000000000000000000000000000006000830152602082019050919050565b600061337c602b83614166565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006133e2603283614166565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613448602683614166565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134ae601c83614166565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006134ee602483614166565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613554601983614166565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613594601483614166565b91507f496e73756666696369656e742062616c616e63650000000000000000000000006000830152602082019050919050565b60006135d4603a83614166565b91507f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008301527f6563697069656e74206d617920686176652072657665727465640000000000006020830152604082019050919050565b600061363a601d83614166565b91507f416464726573733a20696e73756666696369656e742062616c616e63650000006000830152602082019050919050565b600061367a602c83614166565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006136e0603883614166565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613746602a83614166565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006137ac602983614166565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613812602083614166565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613852602c83614166565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006138b8602083614166565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006138f8602983614166565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061395e602f83614166565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006139c4602183614166565b91507f596f752063616e206d696e742061206d6178696d756d206f662035302050464660008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a2a602183614166565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a90601983614166565b91507f45746865722073656e74206973206e6f7420636f7272656374000000000000006000830152602082019050919050565b6000613ad060008361415b565b9150600082019050919050565b6000613aea603183614166565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613b50602c83614166565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000613bb6601a83614166565b91507f45786365656473206d6178696d756d2050464620737570706c790000000000006000830152602082019050919050565b613bf281614301565b82525050565b613c0181614301565b82525050565b6000613c1382856132fe565b9150613c1f82846132fe565b91508190509392505050565b6000613c3682613ac3565b9150819050919050565b6000602082019050613c556000830184613210565b92915050565b6000608082019050613c706000830187613210565b613c7d6020830186613210565b613c8a6040830185613bf8565b8181036060830152613c9c818461328c565b905095945050505050565b6000604082019050613cbc6000830185613210565b613cc96020830184613bf8565b9392505050565b60006020820190508181036000830152613cea818461321f565b905092915050565b6000602082019050613d07600083018461327d565b92915050565b60006020820190508181036000830152613d2781846132c5565b905092915050565b60006020820190508181036000830152613d488161332f565b9050919050565b60006020820190508181036000830152613d688161336f565b9050919050565b60006020820190508181036000830152613d88816133d5565b9050919050565b60006020820190508181036000830152613da88161343b565b9050919050565b60006020820190508181036000830152613dc8816134a1565b9050919050565b60006020820190508181036000830152613de8816134e1565b9050919050565b60006020820190508181036000830152613e0881613547565b9050919050565b60006020820190508181036000830152613e2881613587565b9050919050565b60006020820190508181036000830152613e48816135c7565b9050919050565b60006020820190508181036000830152613e688161362d565b9050919050565b60006020820190508181036000830152613e888161366d565b9050919050565b60006020820190508181036000830152613ea8816136d3565b9050919050565b60006020820190508181036000830152613ec881613739565b9050919050565b60006020820190508181036000830152613ee88161379f565b9050919050565b60006020820190508181036000830152613f0881613805565b9050919050565b60006020820190508181036000830152613f2881613845565b9050919050565b60006020820190508181036000830152613f48816138ab565b9050919050565b60006020820190508181036000830152613f68816138eb565b9050919050565b60006020820190508181036000830152613f8881613951565b9050919050565b60006020820190508181036000830152613fa8816139b7565b9050919050565b60006020820190508181036000830152613fc881613a1d565b9050919050565b60006020820190508181036000830152613fe881613a83565b9050919050565b6000602082019050818103600083015261400881613add565b9050919050565b6000602082019050818103600083015261402881613b43565b9050919050565b6000602082019050818103600083015261404881613ba9565b9050919050565b60006020820190506140646000830184613bf8565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561409157614090614486565b5b8060405250919050565b600067ffffffffffffffff8211156140b6576140b5614486565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156140e6576140e5614486565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061418d82614301565b915061419883614301565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141cd576141cc6143f9565b5b828201905092915050565b60006141e382614301565b91506141ee83614301565b9250826141fe576141fd614428565b5b828204905092915050565b600061421482614301565b915061421f83614301565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614258576142576143f9565b5b828202905092915050565b600061426e82614301565b915061427983614301565b92508282101561428c5761428b6143f9565b5b828203905092915050565b60006142a2826142e1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561433857808201518184015260208101905061431d565b83811115614347576000848401525b50505050565b6000600282049050600182168061436557607f821691505b6020821081141561437957614378614457565b5b50919050565b600061438a82614301565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143bd576143bc6143f9565b5b600182019050919050565b60006143d382614301565b91506143de83614301565b9250826143ee576143ed614428565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6144cf81614297565b81146144da57600080fd5b50565b6144e6816142a9565b81146144f157600080fd5b50565b6144fd816142b5565b811461450857600080fd5b50565b61451481614301565b811461451f57600080fd5b5056fea2646970667358221220e5770ad524c357c0c71ee77e3639695229f38543a38b441983e5039067ff0a7d64736f6c63430008000033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002168747470733a2f2f7777772e70756e6b66617374666f6f642e636f6d2f6170692f00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://www.punkfastfood.com/api/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000021
Arg [2] : 68747470733a2f2f7777772e70756e6b66617374666f6f642e636f6d2f617069
Arg [3] : 2f00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

49019:2931:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42844:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30826:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32380:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31903:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43484:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49335:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33270:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51505:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43152:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49468:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33680:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43674:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49914:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30520:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30250:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29548:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51146:351;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27416:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50019:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30995:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50117:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49260:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50553:584;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32673:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49301:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33936:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31170:324;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49179:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49226:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50421:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33039:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28216:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50332:83;;;;;;;;;;;;;:::i;:::-;;42844:224;42946:4;42985:35;42970:50;;;:11;:50;;;;:90;;;;43024:36;43048:11;43024:23;:36::i;:::-;42970:90;42963:97;;42844:224;;;:::o;30826:100::-;30880:13;30913:5;30906:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30826:100;:::o;32380:221::-;32456:7;32484:16;32492:7;32484;:16::i;:::-;32476:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;32569:15;:24;32585:7;32569:24;;;;;;;;;;;;;;;;;;;;;32562:31;;32380:221;;;:::o;31903:411::-;31984:13;32000:23;32015:7;32000:14;:23::i;:::-;31984:39;;32048:5;32042:11;;:2;:11;;;;32034:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;32142:5;32126:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;32151:37;32168:5;32175:12;:10;:12::i;:::-;32151:16;:37::i;:::-;32126:62;32104:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;32285:21;32294:2;32298:7;32285:8;:21::i;:::-;31903:411;;;:::o;43484:113::-;43545:7;43572:10;:17;;;;43565:24;;43484:113;:::o;49335:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;33270:339::-;33465:41;33484:12;:10;:12::i;:::-;33498:7;33465:18;:41::i;:::-;33457:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;33573:28;33583:4;33589:2;33593:7;33573:9;:28::i;:::-;33270:339;;;:::o;51505:442::-;27647:12;:10;:12::i;:::-;27636:23;;:7;:5;:7::i;:::-;:23;;;27628:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51600:6:::1;51575:21;:31;;51567:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;51652:19;51674:5;51652:27;;51695:9;51690:250;51714:1;51710;:5;51690:250;;;51737:15;51775:11;51764:7;51772:1;51764:10;;;;;;;;;;;;;;;;;51755:6;:19;;;;:::i;:::-;:31;;;;:::i;:::-;51737:49;;51815:52;51841:13;51855:1;51841:16;;;;;;;;;;;;;;;;;;;;;;;;;;51859:7;51815:17;:52::i;:::-;51887:41;51903:13;51917:1;51903:16;;;;;;;;;;;;;;;;;;;;;;;;;;51920:7;51887:41;;;;;;;:::i;:::-;;;;;;;;51690:250;51717:3;;;;;:::i;:::-;;;;51690:250;;;;27707:1;51505:442:::0;:::o;43152:256::-;43249:7;43285:23;43302:5;43285:16;:23::i;:::-;43277:5;:31;43269:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;43374:12;:19;43387:5;43374:19;;;;;;;;;;;;;;;:26;43394:5;43374:26;;;;;;;;;;;;43367:33;;43152:256;;;;:::o;49468:32::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33680:185::-;33818:39;33835:4;33841:2;33845:7;33818:39;;;;;;;;;;;;:16;:39::i;:::-;33680:185;;;:::o;43674:233::-;43749:7;43785:30;:28;:30::i;:::-;43777:5;:38;43769:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;43882:10;43893:5;43882:17;;;;;;;;;;;;;;;;;;;;;;;;43875:24;;43674:233;;;:::o;49914:97::-;27647:12;:10;:12::i;:::-;27636:23;;:7;:5;:7::i;:::-;:23;;;27628:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49996:7:::1;49985:8;:18;;;;;;;;;;;;:::i;:::-;;49914:97:::0;:::o;30520:239::-;30592:7;30612:13;30628:7;:16;30636:7;30628:16;;;;;;;;;;;;;;;;;;;;;30612:32;;30680:1;30663:19;;:5;:19;;;;30655:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30746:5;30739:12;;;30520:239;;;:::o;30250:208::-;30322:7;30367:1;30350:19;;:5;:19;;;;30342:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;30434:9;:16;30444:5;30434:16;;;;;;;;;;;;;;;;30427:23;;30250:208;;;:::o;29548:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51146:351::-;51206:16;51240:13;51256:17;51266:6;51256:9;:17::i;:::-;51240:33;;51284:23;51324:5;51310:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51284:46;;51346:13;51341:125;51373:5;51365;:13;51341:125;;;51420:34;51440:6;51448:5;51420:19;:34::i;:::-;51404:6;51411:5;51404:13;;;;;;;;;;;;;;;;;;;;;:50;;;;;51380:7;;;;;:::i;:::-;;;;51341:125;;;;51483:6;51476:13;;;;51146:351;;;:::o;27416:87::-;27462:7;27489:6;;;;;;;;;;;27482:13;;27416:87;:::o;50019:92::-;27647:12;:10;:12::i;:::-;27636:23;;:7;:5;:7::i;:::-;:23;;;27628:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50094:9:::1;50086:5;:17;;;;50019:92:::0;:::o;30995:104::-;31051:13;31084:7;31077:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30995:104;:::o;50117:100::-;27647:12;:10;:12::i;:::-;27636:23;;:7;:5;:7::i;:::-;:23;;;27628:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50200:9:::1;50188:11;:21;;;;50117:100:::0;:::o;49260:33::-;;;;:::o;50553:584::-;50615:14;50632:13;:11;:13::i;:::-;50615:30;;50666:8;;;;;;;;;;;50665:9;50656:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;50755:2;50740:12;:17;50731:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;49214:5;50859:12;50845:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:40;;50836:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;50963:12;50955:5;;:20;;;;:::i;:::-;50942:9;:33;;50933:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;51035:9;51031:99;51050:12;51046:1;:16;51031:99;;;51083:35;51094:10;51115:1;51106:6;:10;;;;:::i;:::-;51083:9;:35::i;:::-;51064:3;;;;;:::i;:::-;;;;51031:99;;;;50553:584;;:::o;32673:295::-;32788:12;:10;:12::i;:::-;32776:24;;:8;:24;;;;32768:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;32888:8;32843:18;:32;32862:12;:10;:12::i;:::-;32843:32;;;;;;;;;;;;;;;:42;32876:8;32843:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;32941:8;32912:48;;32927:12;:10;:12::i;:::-;32912:48;;;32951:8;32912:48;;;;;;:::i;:::-;;;;;;;;32673:295;;:::o;49301:27::-;;;;;;;;;;;;;:::o;33936:328::-;34111:41;34130:12;:10;:12::i;:::-;34144:7;34111:18;:41::i;:::-;34103:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;34217:39;34231:4;34237:2;34241:7;34250:5;34217:13;:39::i;:::-;33936:328;;;;:::o;31170:324::-;31243:13;31277:16;31285:7;31277;:16::i;:::-;31269:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;31358:18;31379:9;:7;:9::i;:::-;31358:30;;31427:1;31412:4;31406:18;:22;:80;;;;;;;;;;;;;;;;;31455:4;31461:18;:7;:16;:18::i;:::-;31438:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31406:80;31399:87;;;31170:324;;;:::o;49179:40::-;49214:5;49179:40;:::o;49226:27::-;;;;:::o;50421:122::-;50479:7;50528:5;;50518:9;:15;;;;:::i;:::-;50511:22;;50421:122;;;:::o;33039:164::-;33136:4;33160:18;:25;33179:5;33160:25;;;;;;;;;;;;;;;:35;33186:8;33160:35;;;;;;;;;;;;;;;;;;;;;;;;;33153:42;;33039:164;;;;:::o;28216:192::-;27647:12;:10;:12::i;:::-;27636:23;;:7;:5;:7::i;:::-;:23;;;27628:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28325:1:::1;28305:22;;:8;:22;;;;28297:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28381:19;28391:8;28381:9;:19::i;:::-;28216:192:::0;:::o;50332:83::-;27647:12;:10;:12::i;:::-;27636:23;;:7;:5;:7::i;:::-;:23;;;27628:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50399:8:::1;;;;;;;;;;;50398:9;50387:8;;:20;;;;;;;;;;;;;;;;;;50332:83::o:0;29881:305::-;29983:4;30035:25;30020:40;;;:11;:40;;;;:105;;;;30092:33;30077:48;;;:11;:48;;;;30020:105;:158;;;;30142:36;30166:11;30142:23;:36::i;:::-;30020:158;30000:178;;29881:305;;;:::o;35774:127::-;35839:4;35891:1;35863:30;;:7;:16;35871:7;35863:16;;;;;;;;;;;;;;;;;;;;;:30;;;;35856:37;;35774:127;;;:::o;26167:98::-;26220:7;26247:10;26240:17;;26167:98;:::o;39756:174::-;39858:2;39831:15;:24;39847:7;39831:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39914:7;39910:2;39876:46;;39885:23;39900:7;39885:14;:23::i;:::-;39876:46;;;;;;;;;;;;39756:174;;:::o;36068:348::-;36161:4;36186:16;36194:7;36186;:16::i;:::-;36178:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36262:13;36278:23;36293:7;36278:14;:23::i;:::-;36262:39;;36331:5;36320:16;;:7;:16;;;:51;;;;36364:7;36340:31;;:20;36352:7;36340:11;:20::i;:::-;:31;;;36320:51;:87;;;;36375:32;36392:5;36399:7;36375:16;:32::i;:::-;36320:87;36312:96;;;36068:348;;;;:::o;39060:578::-;39219:4;39192:31;;:23;39207:7;39192:14;:23::i;:::-;:31;;;39184:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39302:1;39288:16;;:2;:16;;;;39280:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;39358:39;39379:4;39385:2;39389:7;39358:20;:39::i;:::-;39462:29;39479:1;39483:7;39462:8;:29::i;:::-;39523:1;39504:9;:15;39514:4;39504:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;39552:1;39535:9;:13;39545:2;39535:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;39583:2;39564:7;:16;39572:7;39564:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;39622:7;39618:2;39603:27;;39612:4;39603:27;;;;;;;;;;;;39060:578;;;:::o;10970:317::-;11085:6;11060:21;:31;;11052:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11139:12;11157:9;:14;;11179:6;11157:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11138:52;;;11209:7;11201:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;10970:317;;;:::o;36758:110::-;36834:26;36844:2;36848:7;36834:26;;;;;;;;;;;;:9;:26::i;:::-;36758:110;;:::o;35146:315::-;35303:28;35313:4;35319:2;35323:7;35303:9;:28::i;:::-;35350:48;35373:4;35379:2;35383:7;35392:5;35350:22;:48::i;:::-;35342:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;35146:315;;;;:::o;31742:99::-;31792:13;31825:8;31818:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31742:99;:::o;7181:723::-;7237:13;7467:1;7458:5;:10;7454:53;;;7485:10;;;;;;;;;;;;;;;;;;;;;7454:53;7517:12;7532:5;7517:20;;7548:14;7573:78;7588:1;7580:4;:9;7573:78;;7606:8;;;;;:::i;:::-;;;;7637:2;7629:10;;;;;:::i;:::-;;;7573:78;;;7661:19;7693:6;7683:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7661:39;;7711:154;7727:1;7718:5;:10;7711:154;;7755:1;7745:11;;;;;:::i;:::-;;;7822:2;7814:5;:10;;;;:::i;:::-;7801:2;:24;;;;:::i;:::-;7788:39;;7771:6;7778;7771:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;7851:2;7842:11;;;;;:::i;:::-;;;7711:154;;;7889:6;7875:21;;;;;7181:723;;;;:::o;28416:173::-;28472:16;28491:6;;;;;;;;;;;28472:25;;28517:8;28508:6;;:17;;;;;;;;;;;;;;;;;;28572:8;28541:40;;28562:8;28541:40;;;;;;;;;;;;28416:173;;:::o;19153:157::-;19238:4;19277:25;19262:40;;;:11;:40;;;;19255:47;;19153:157;;;:::o;44520:589::-;44664:45;44691:4;44697:2;44701:7;44664:26;:45::i;:::-;44742:1;44726:18;;:4;:18;;;44722:187;;;44761:40;44793:7;44761:31;:40::i;:::-;44722:187;;;44831:2;44823:10;;:4;:10;;;44819:90;;44850:47;44883:4;44889:7;44850:32;:47::i;:::-;44819:90;44722:187;44937:1;44923:16;;:2;:16;;;44919:183;;;44956:45;44993:7;44956:36;:45::i;:::-;44919:183;;;45029:4;45023:10;;:2;:10;;;45019:83;;45050:40;45078:2;45082:7;45050:27;:40::i;:::-;45019:83;44919:183;44520:589;;;:::o;37095:321::-;37225:18;37231:2;37235:7;37225:5;:18::i;:::-;37276:54;37307:1;37311:2;37315:7;37324:5;37276:22;:54::i;:::-;37254:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;37095:321;;;:::o;40495:803::-;40650:4;40671:15;:2;:13;;;:15::i;:::-;40667:624;;;40723:2;40707:36;;;40744:12;:10;:12::i;:::-;40758:4;40764:7;40773:5;40707:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40703:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40970:1;40953:6;:13;:18;40949:272;;;40996:60;;;;;;;;;;:::i;:::-;;;;;;;;40949:272;41171:6;41165:13;41156:6;41152:2;41148:15;41141:38;40703:533;40840:45;;;40830:55;;;:6;:55;;;;40823:62;;;;;40667:624;41275:4;41268:11;;40495:803;;;;;;;:::o;41870:126::-;;;;:::o;45832:164::-;45936:10;:17;;;;45909:15;:24;45925:7;45909:24;;;;;;;;;;;:44;;;;45964:10;45980:7;45964:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45832:164;:::o;46623:988::-;46889:22;46939:1;46914:22;46931:4;46914:16;:22::i;:::-;:26;;;;:::i;:::-;46889:51;;46951:18;46972:17;:26;46990:7;46972:26;;;;;;;;;;;;46951:47;;47119:14;47105:10;:28;47101:328;;47150:19;47172:12;:18;47185:4;47172:18;;;;;;;;;;;;;;;:34;47191:14;47172:34;;;;;;;;;;;;47150:56;;47256:11;47223:12;:18;47236:4;47223:18;;;;;;;;;;;;;;;:30;47242:10;47223:30;;;;;;;;;;;:44;;;;47373:10;47340:17;:30;47358:11;47340:30;;;;;;;;;;;:43;;;;47101:328;;47525:17;:26;47543:7;47525:26;;;;;;;;;;;47518:33;;;47569:12;:18;47582:4;47569:18;;;;;;;;;;;;;;;:34;47588:14;47569:34;;;;;;;;;;;47562:41;;;46623:988;;;;:::o;47906:1079::-;48159:22;48204:1;48184:10;:17;;;;:21;;;;:::i;:::-;48159:46;;48216:18;48237:15;:24;48253:7;48237:24;;;;;;;;;;;;48216:45;;48588:19;48610:10;48621:14;48610:26;;;;;;;;;;;;;;;;;;;;;;;;48588:48;;48674:11;48649:10;48660;48649:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;48785:10;48754:15;:28;48770:11;48754:28;;;;;;;;;;;:41;;;;48926:15;:24;48942:7;48926:24;;;;;;;;;;;48919:31;;;48961:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47906:1079;;;;:::o;45410:221::-;45495:14;45512:20;45529:2;45512:16;:20::i;:::-;45495:37;;45570:7;45543:12;:16;45556:2;45543:16;;;;;;;;;;;;;;;:24;45560:6;45543:24;;;;;;;;;;;:34;;;;45617:6;45588:17;:26;45606:7;45588:26;;;;;;;;;;;:35;;;;45410:221;;;:::o;37752:382::-;37846:1;37832:16;;:2;:16;;;;37824:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;37905:16;37913:7;37905;:16::i;:::-;37904:17;37896:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;37967:45;37996:1;38000:2;38004:7;37967:20;:45::i;:::-;38042:1;38025:9;:13;38035:2;38025:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;38073:2;38054:7;:16;38062:7;38054:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;38118:7;38114:2;38093:33;;38110:1;38093:33;;;;;;;;;;;;37752:382;;:::o;9648:387::-;9708:4;9916:12;9983:7;9971:20;9963:28;;10026:1;10019:4;:8;10012:15;;;9648:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:260::-;;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:52;5116:7;5107:6;5096:9;5092:22;5072:52;:::i;:::-;5062:62;;5018:116;4946:195;;;;:::o;5147:282::-;;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5281:1;5278;5271:12;5233:2;5324:1;5349:63;5404:7;5395:6;5384:9;5380:22;5349:63;:::i;:::-;5339:73;;5295:127;5223:206;;;;:::o;5435:375::-;;5553:2;5541:9;5532:7;5528:23;5524:32;5521:2;;;5569:1;5566;5559:12;5521:2;5640:1;5629:9;5625:17;5612:31;5670:18;5662:6;5659:30;5656:2;;;5702:1;5699;5692:12;5656:2;5730:63;5785:7;5776:6;5765:9;5761:22;5730:63;:::i;:::-;5720:73;;5583:220;5511:299;;;;:::o;5816:262::-;;5924:2;5912:9;5903:7;5899:23;5895:32;5892:2;;;5940:1;5937;5930:12;5892:2;5983:1;6008:53;6053:7;6044:6;6033:9;6029:22;6008:53;:::i;:::-;5998:63;;5954:117;5882:196;;;;:::o;6084:179::-;;6174:46;6216:3;6208:6;6174:46;:::i;:::-;6252:4;6247:3;6243:14;6229:28;;6164:99;;;;:::o;6269:118::-;6356:24;6374:5;6356:24;:::i;:::-;6351:3;6344:37;6334:53;;:::o;6423:732::-;;6571:54;6619:5;6571:54;:::i;:::-;6641:86;6720:6;6715:3;6641:86;:::i;:::-;6634:93;;6751:56;6801:5;6751:56;:::i;:::-;6830:7;6861:1;6846:284;6871:6;6868:1;6865:13;6846:284;;;6947:6;6941:13;6974:63;7033:3;7018:13;6974:63;:::i;:::-;6967:70;;7060:60;7113:6;7060:60;:::i;:::-;7050:70;;6906:224;6893:1;6890;6886:9;6881:14;;6846:284;;;6850:14;7146:3;7139:10;;6547:608;;;;;;;:::o;7161:109::-;7242:21;7257:5;7242:21;:::i;:::-;7237:3;7230:34;7220:50;;:::o;7276:360::-;;7390:38;7422:5;7390:38;:::i;:::-;7444:70;7507:6;7502:3;7444:70;:::i;:::-;7437:77;;7523:52;7568:6;7563:3;7556:4;7549:5;7545:16;7523:52;:::i;:::-;7600:29;7622:6;7600:29;:::i;:::-;7595:3;7591:39;7584:46;;7366:270;;;;;:::o;7642:364::-;;7758:39;7791:5;7758:39;:::i;:::-;7813:71;7877:6;7872:3;7813:71;:::i;:::-;7806:78;;7893:52;7938:6;7933:3;7926:4;7919:5;7915:16;7893:52;:::i;:::-;7970:29;7992:6;7970:29;:::i;:::-;7965:3;7961:39;7954:46;;7734:272;;;;;:::o;8012:377::-;;8146:39;8179:5;8146:39;:::i;:::-;8201:89;8283:6;8278:3;8201:89;:::i;:::-;8194:96;;8299:52;8344:6;8339:3;8332:4;8325:5;8321:16;8299:52;:::i;:::-;8376:6;8371:3;8367:16;8360:23;;8122:267;;;;;:::o;8395:309::-;;8558:67;8622:2;8617:3;8558:67;:::i;:::-;8551:74;;8655:13;8651:1;8646:3;8642:11;8635:34;8695:2;8690:3;8686:12;8679:19;;8541:163;;;:::o;8710:375::-;;8873:67;8937:2;8932:3;8873:67;:::i;:::-;8866:74;;8970:34;8966:1;8961:3;8957:11;8950:55;9036:13;9031:2;9026:3;9022:12;9015:35;9076:2;9071:3;9067:12;9060:19;;8856:229;;;:::o;9091:382::-;;9254:67;9318:2;9313:3;9254:67;:::i;:::-;9247:74;;9351:34;9347:1;9342:3;9338:11;9331:55;9417:20;9412:2;9407:3;9403:12;9396:42;9464:2;9459:3;9455:12;9448:19;;9237:236;;;:::o;9479:370::-;;9642:67;9706:2;9701:3;9642:67;:::i;:::-;9635:74;;9739:34;9735:1;9730:3;9726:11;9719:55;9805:8;9800:2;9795:3;9791:12;9784:30;9840:2;9835:3;9831:12;9824:19;;9625:224;;;:::o;9855:326::-;;10018:67;10082:2;10077:3;10018:67;:::i;:::-;10011:74;;10115:30;10111:1;10106:3;10102:11;10095:51;10172:2;10167:3;10163:12;10156:19;;10001:180;;;:::o;10187:368::-;;10350:67;10414:2;10409:3;10350:67;:::i;:::-;10343:74;;10447:34;10443:1;10438:3;10434:11;10427:55;10513:6;10508:2;10503:3;10499:12;10492:28;10546:2;10541:3;10537:12;10530:19;;10333:222;;;:::o;10561:323::-;;10724:67;10788:2;10783:3;10724:67;:::i;:::-;10717:74;;10821:27;10817:1;10812:3;10808:11;10801:48;10875:2;10870:3;10866:12;10859:19;;10707:177;;;:::o;10890:318::-;;11053:67;11117:2;11112:3;11053:67;:::i;:::-;11046:74;;11150:22;11146:1;11141:3;11137:11;11130:43;11199:2;11194:3;11190:12;11183:19;;11036:172;;;:::o;11214:390::-;;11377:67;11441:2;11436:3;11377:67;:::i;:::-;11370:74;;11474:34;11470:1;11465:3;11461:11;11454:55;11540:28;11535:2;11530:3;11526:12;11519:50;11595:2;11590:3;11586:12;11579:19;;11360:244;;;:::o;11610:327::-;;11773:67;11837:2;11832:3;11773:67;:::i;:::-;11766:74;;11870:31;11866:1;11861:3;11857:11;11850:52;11928:2;11923:3;11919:12;11912:19;;11756:181;;;:::o;11943:376::-;;12106:67;12170:2;12165:3;12106:67;:::i;:::-;12099:74;;12203:34;12199:1;12194:3;12190:11;12183:55;12269:14;12264:2;12259:3;12255:12;12248:36;12310:2;12305:3;12301:12;12294:19;;12089:230;;;:::o;12325:388::-;;12488:67;12552:2;12547:3;12488:67;:::i;:::-;12481:74;;12585:34;12581:1;12576:3;12572:11;12565:55;12651:26;12646:2;12641:3;12637:12;12630:48;12704:2;12699:3;12695:12;12688:19;;12471:242;;;:::o;12719:374::-;;12882:67;12946:2;12941:3;12882:67;:::i;:::-;12875:74;;12979:34;12975:1;12970:3;12966:11;12959:55;13045:12;13040:2;13035:3;13031:12;13024:34;13084:2;13079:3;13075:12;13068:19;;12865:228;;;:::o;13099:373::-;;13262:67;13326:2;13321:3;13262:67;:::i;:::-;13255:74;;13359:34;13355:1;13350:3;13346:11;13339:55;13425:11;13420:2;13415:3;13411:12;13404:33;13463:2;13458:3;13454:12;13447:19;;13245:227;;;:::o;13478:330::-;;13641:67;13705:2;13700:3;13641:67;:::i;:::-;13634:74;;13738:34;13734:1;13729:3;13725:11;13718:55;13799:2;13794:3;13790:12;13783:19;;13624:184;;;:::o;13814:376::-;;13977:67;14041:2;14036:3;13977:67;:::i;:::-;13970:74;;14074:34;14070:1;14065:3;14061:11;14054:55;14140:14;14135:2;14130:3;14126:12;14119:36;14181:2;14176:3;14172:12;14165:19;;13960:230;;;:::o;14196:330::-;;14359:67;14423:2;14418:3;14359:67;:::i;:::-;14352:74;;14456:34;14452:1;14447:3;14443:11;14436:55;14517:2;14512:3;14508:12;14501:19;;14342:184;;;:::o;14532:373::-;;14695:67;14759:2;14754:3;14695:67;:::i;:::-;14688:74;;14792:34;14788:1;14783:3;14779:11;14772:55;14858:11;14853:2;14848:3;14844:12;14837:33;14896:2;14891:3;14887:12;14880:19;;14678:227;;;:::o;14911:379::-;;15074:67;15138:2;15133:3;15074:67;:::i;:::-;15067:74;;15171:34;15167:1;15162:3;15158:11;15151:55;15237:17;15232:2;15227:3;15223:12;15216:39;15281:2;15276:3;15272:12;15265:19;;15057:233;;;:::o;15296:365::-;;15459:67;15523:2;15518:3;15459:67;:::i;:::-;15452:74;;15556:34;15552:1;15547:3;15543:11;15536:55;15622:3;15617:2;15612:3;15608:12;15601:25;15652:2;15647:3;15643:12;15636:19;;15442:219;;;:::o;15667:365::-;;15830:67;15894:2;15889:3;15830:67;:::i;:::-;15823:74;;15927:34;15923:1;15918:3;15914:11;15907:55;15993:3;15988:2;15983:3;15979:12;15972:25;16023:2;16018:3;16014:12;16007:19;;15813:219;;;:::o;16038:323::-;;16201:67;16265:2;16260:3;16201:67;:::i;:::-;16194:74;;16298:27;16294:1;16289:3;16285:11;16278:48;16352:2;16347:3;16343:12;16336:19;;16184:177;;;:::o;16367:297::-;;16547:83;16628:1;16623:3;16547:83;:::i;:::-;16540:90;;16656:1;16651:3;16647:11;16640:18;;16530:134;;;:::o;16670:381::-;;16833:67;16897:2;16892:3;16833:67;:::i;:::-;16826:74;;16930:34;16926:1;16921:3;16917:11;16910:55;16996:19;16991:2;16986:3;16982:12;16975:41;17042:2;17037:3;17033:12;17026:19;;16816:235;;;:::o;17057:376::-;;17220:67;17284:2;17279:3;17220:67;:::i;:::-;17213:74;;17317:34;17313:1;17308:3;17304:11;17297:55;17383:14;17378:2;17373:3;17369:12;17362:36;17424:2;17419:3;17415:12;17408:19;;17203:230;;;:::o;17439:324::-;;17602:67;17666:2;17661:3;17602:67;:::i;:::-;17595:74;;17699:28;17695:1;17690:3;17686:11;17679:49;17754:2;17749:3;17745:12;17738:19;;17585:178;;;:::o;17769:108::-;17846:24;17864:5;17846:24;:::i;:::-;17841:3;17834:37;17824:53;;:::o;17883:118::-;17970:24;17988:5;17970:24;:::i;:::-;17965:3;17958:37;17948:53;;:::o;18007:435::-;;18209:95;18300:3;18291:6;18209:95;:::i;:::-;18202:102;;18321:95;18412:3;18403:6;18321:95;:::i;:::-;18314:102;;18433:3;18426:10;;18191:251;;;;;:::o;18448:379::-;;18654:147;18797:3;18654:147;:::i;:::-;18647:154;;18818:3;18811:10;;18636:191;;;:::o;18833:222::-;;18964:2;18953:9;18949:18;18941:26;;18977:71;19045:1;19034:9;19030:17;19021:6;18977:71;:::i;:::-;18931:124;;;;:::o;19061:640::-;;19294:3;19283:9;19279:19;19271:27;;19308:71;19376:1;19365:9;19361:17;19352:6;19308:71;:::i;:::-;19389:72;19457:2;19446:9;19442:18;19433:6;19389:72;:::i;:::-;19471;19539:2;19528:9;19524:18;19515:6;19471:72;:::i;:::-;19590:9;19584:4;19580:20;19575:2;19564:9;19560:18;19553:48;19618:76;19689:4;19680:6;19618:76;:::i;:::-;19610:84;;19261:440;;;;;;;:::o;19707:332::-;;19866:2;19855:9;19851:18;19843:26;;19879:71;19947:1;19936:9;19932:17;19923:6;19879:71;:::i;:::-;19960:72;20028:2;20017:9;20013:18;20004:6;19960:72;:::i;:::-;19833:206;;;;;:::o;20045:373::-;;20226:2;20215:9;20211:18;20203:26;;20275:9;20269:4;20265:20;20261:1;20250:9;20246:17;20239:47;20303:108;20406:4;20397:6;20303:108;:::i;:::-;20295:116;;20193:225;;;;:::o;20424:210::-;;20549:2;20538:9;20534:18;20526:26;;20562:65;20624:1;20613:9;20609:17;20600:6;20562:65;:::i;:::-;20516:118;;;;:::o;20640:313::-;;20791:2;20780:9;20776:18;20768:26;;20840:9;20834:4;20830:20;20826:1;20815:9;20811:17;20804:47;20868:78;20941:4;20932:6;20868:78;:::i;:::-;20860:86;;20758:195;;;;:::o;20959:419::-;;21163:2;21152:9;21148:18;21140:26;;21212:9;21206:4;21202:20;21198:1;21187:9;21183:17;21176:47;21240:131;21366:4;21240:131;:::i;:::-;21232:139;;21130:248;;;:::o;21384:419::-;;21588:2;21577:9;21573:18;21565:26;;21637:9;21631:4;21627:20;21623:1;21612:9;21608:17;21601:47;21665:131;21791:4;21665:131;:::i;:::-;21657:139;;21555:248;;;:::o;21809:419::-;;22013:2;22002:9;21998:18;21990:26;;22062:9;22056:4;22052:20;22048:1;22037:9;22033:17;22026:47;22090:131;22216:4;22090:131;:::i;:::-;22082:139;;21980:248;;;:::o;22234:419::-;;22438:2;22427:9;22423:18;22415:26;;22487:9;22481:4;22477:20;22473:1;22462:9;22458:17;22451:47;22515:131;22641:4;22515:131;:::i;:::-;22507:139;;22405:248;;;:::o;22659:419::-;;22863:2;22852:9;22848:18;22840:26;;22912:9;22906:4;22902:20;22898:1;22887:9;22883:17;22876:47;22940:131;23066:4;22940:131;:::i;:::-;22932:139;;22830:248;;;:::o;23084:419::-;;23288:2;23277:9;23273:18;23265:26;;23337:9;23331:4;23327:20;23323:1;23312:9;23308:17;23301:47;23365:131;23491:4;23365:131;:::i;:::-;23357:139;;23255:248;;;:::o;23509:419::-;;23713:2;23702:9;23698:18;23690:26;;23762:9;23756:4;23752:20;23748:1;23737:9;23733:17;23726:47;23790:131;23916:4;23790:131;:::i;:::-;23782:139;;23680:248;;;:::o;23934:419::-;;24138:2;24127:9;24123:18;24115:26;;24187:9;24181:4;24177:20;24173:1;24162:9;24158:17;24151:47;24215:131;24341:4;24215:131;:::i;:::-;24207:139;;24105:248;;;:::o;24359:419::-;;24563:2;24552:9;24548:18;24540:26;;24612:9;24606:4;24602:20;24598:1;24587:9;24583:17;24576:47;24640:131;24766:4;24640:131;:::i;:::-;24632:139;;24530:248;;;:::o;24784:419::-;;24988:2;24977:9;24973:18;24965:26;;25037:9;25031:4;25027:20;25023:1;25012:9;25008:17;25001:47;25065:131;25191:4;25065:131;:::i;:::-;25057:139;;24955:248;;;:::o;25209:419::-;;25413:2;25402:9;25398:18;25390:26;;25462:9;25456:4;25452:20;25448:1;25437:9;25433:17;25426:47;25490:131;25616:4;25490:131;:::i;:::-;25482:139;;25380:248;;;:::o;25634:419::-;;25838:2;25827:9;25823:18;25815:26;;25887:9;25881:4;25877:20;25873:1;25862:9;25858:17;25851:47;25915:131;26041:4;25915:131;:::i;:::-;25907:139;;25805:248;;;:::o;26059:419::-;;26263:2;26252:9;26248:18;26240:26;;26312:9;26306:4;26302:20;26298:1;26287:9;26283:17;26276:47;26340:131;26466:4;26340:131;:::i;:::-;26332:139;;26230:248;;;:::o;26484:419::-;;26688:2;26677:9;26673:18;26665:26;;26737:9;26731:4;26727:20;26723:1;26712:9;26708:17;26701:47;26765:131;26891:4;26765:131;:::i;:::-;26757:139;;26655:248;;;:::o;26909:419::-;;27113:2;27102:9;27098:18;27090:26;;27162:9;27156:4;27152:20;27148:1;27137:9;27133:17;27126:47;27190:131;27316:4;27190:131;:::i;:::-;27182:139;;27080:248;;;:::o;27334:419::-;;27538:2;27527:9;27523:18;27515:26;;27587:9;27581:4;27577:20;27573:1;27562:9;27558:17;27551:47;27615:131;27741:4;27615:131;:::i;:::-;27607:139;;27505:248;;;:::o;27759:419::-;;27963:2;27952:9;27948:18;27940:26;;28012:9;28006:4;28002:20;27998:1;27987:9;27983:17;27976:47;28040:131;28166:4;28040:131;:::i;:::-;28032:139;;27930:248;;;:::o;28184:419::-;;28388:2;28377:9;28373:18;28365:26;;28437:9;28431:4;28427:20;28423:1;28412:9;28408:17;28401:47;28465:131;28591:4;28465:131;:::i;:::-;28457:139;;28355:248;;;:::o;28609:419::-;;28813:2;28802:9;28798:18;28790:26;;28862:9;28856:4;28852:20;28848:1;28837:9;28833:17;28826:47;28890:131;29016:4;28890:131;:::i;:::-;28882:139;;28780:248;;;:::o;29034:419::-;;29238:2;29227:9;29223:18;29215:26;;29287:9;29281:4;29277:20;29273:1;29262:9;29258:17;29251:47;29315:131;29441:4;29315:131;:::i;:::-;29307:139;;29205:248;;;:::o;29459:419::-;;29663:2;29652:9;29648:18;29640:26;;29712:9;29706:4;29702:20;29698:1;29687:9;29683:17;29676:47;29740:131;29866:4;29740:131;:::i;:::-;29732:139;;29630:248;;;:::o;29884:419::-;;30088:2;30077:9;30073:18;30065:26;;30137:9;30131:4;30127:20;30123:1;30112:9;30108:17;30101:47;30165:131;30291:4;30165:131;:::i;:::-;30157:139;;30055:248;;;:::o;30309:419::-;;30513:2;30502:9;30498:18;30490:26;;30562:9;30556:4;30552:20;30548:1;30537:9;30533:17;30526:47;30590:131;30716:4;30590:131;:::i;:::-;30582:139;;30480:248;;;:::o;30734:419::-;;30938:2;30927:9;30923:18;30915:26;;30987:9;30981:4;30977:20;30973:1;30962:9;30958:17;30951:47;31015:131;31141:4;31015:131;:::i;:::-;31007:139;;30905:248;;;:::o;31159:419::-;;31363:2;31352:9;31348:18;31340:26;;31412:9;31406:4;31402:20;31398:1;31387:9;31383:17;31376:47;31440:131;31566:4;31440:131;:::i;:::-;31432:139;;31330:248;;;:::o;31584:222::-;;31715:2;31704:9;31700:18;31692:26;;31728:71;31796:1;31785:9;31781:17;31772:6;31728:71;:::i;:::-;31682:124;;;;:::o;31812:283::-;;31878:2;31872:9;31862:19;;31920:4;31912:6;31908:17;32027:6;32015:10;32012:22;31991:18;31979:10;31976:34;31973:62;31970:2;;;32038:18;;:::i;:::-;31970:2;32078:10;32074:2;32067:22;31852:243;;;;:::o;32101:331::-;;32252:18;32244:6;32241:30;32238:2;;;32274:18;;:::i;:::-;32238:2;32359:4;32355:9;32348:4;32340:6;32336:17;32332:33;32324:41;;32420:4;32414;32410:15;32402:23;;32167:265;;;:::o;32438:332::-;;32590:18;32582:6;32579:30;32576:2;;;32612:18;;:::i;:::-;32576:2;32697:4;32693:9;32686:4;32678:6;32674:17;32670:33;32662:41;;32758:4;32752;32748:15;32740:23;;32505:265;;;:::o;32776:132::-;;32866:3;32858:11;;32896:4;32891:3;32887:14;32879:22;;32848:60;;;:::o;32914:114::-;;33015:5;33009:12;32999:22;;32988:40;;;:::o;33034:98::-;;33119:5;33113:12;33103:22;;33092:40;;;:::o;33138:99::-;;33224:5;33218:12;33208:22;;33197:40;;;:::o;33243:113::-;;33345:4;33340:3;33336:14;33328:22;;33318:38;;;:::o;33362:184::-;;33495:6;33490:3;33483:19;33535:4;33530:3;33526:14;33511:29;;33473:73;;;;:::o;33552:168::-;;33669:6;33664:3;33657:19;33709:4;33704:3;33700:14;33685:29;;33647:73;;;;:::o;33726:147::-;;33864:3;33849:18;;33839:34;;;;:::o;33879:169::-;;33997:6;33992:3;33985:19;34037:4;34032:3;34028:14;34013:29;;33975:73;;;;:::o;34054:148::-;;34193:3;34178:18;;34168:34;;;;:::o;34208:305::-;;34267:20;34285:1;34267:20;:::i;:::-;34262:25;;34301:20;34319:1;34301:20;:::i;:::-;34296:25;;34455:1;34387:66;34383:74;34380:1;34377:81;34374:2;;;34461:18;;:::i;:::-;34374:2;34505:1;34502;34498:9;34491:16;;34252:261;;;;:::o;34519:185::-;;34576:20;34594:1;34576:20;:::i;:::-;34571:25;;34610:20;34628:1;34610:20;:::i;:::-;34605:25;;34649:1;34639:2;;34654:18;;:::i;:::-;34639:2;34696:1;34693;34689:9;34684:14;;34561:143;;;;:::o;34710:348::-;;34773:20;34791:1;34773:20;:::i;:::-;34768:25;;34807:20;34825:1;34807:20;:::i;:::-;34802:25;;34995:1;34927:66;34923:74;34920:1;34917:81;34912:1;34905:9;34898:17;34894:105;34891:2;;;35002:18;;:::i;:::-;34891:2;35050:1;35047;35043:9;35032:20;;34758:300;;;;:::o;35064:191::-;;35124:20;35142:1;35124:20;:::i;:::-;35119:25;;35158:20;35176:1;35158:20;:::i;:::-;35153:25;;35197:1;35194;35191:8;35188:2;;;35202:18;;:::i;:::-;35188:2;35247:1;35244;35240:9;35232:17;;35109:146;;;;:::o;35261:96::-;;35327:24;35345:5;35327:24;:::i;:::-;35316:35;;35306:51;;;:::o;35363:90::-;;35440:5;35433:13;35426:21;35415:32;;35405:48;;;:::o;35459:149::-;;35535:66;35528:5;35524:78;35513:89;;35503:105;;;:::o;35614:126::-;;35691:42;35684:5;35680:54;35669:65;;35659:81;;;:::o;35746:77::-;;35812:5;35801:16;;35791:32;;;:::o;35829:154::-;35913:6;35908:3;35903;35890:30;35975:1;35966:6;35961:3;35957:16;35950:27;35880:103;;;:::o;35989:307::-;36057:1;36067:113;36081:6;36078:1;36075:13;36067:113;;;36166:1;36161:3;36157:11;36151:18;36147:1;36142:3;36138:11;36131:39;36103:2;36100:1;36096:10;36091:15;;36067:113;;;36198:6;36195:1;36192:13;36189:2;;;36278:1;36269:6;36264:3;36260:16;36253:27;36189:2;36038:258;;;;:::o;36302:320::-;;36383:1;36377:4;36373:12;36363:22;;36430:1;36424:4;36420:12;36451:18;36441:2;;36507:4;36499:6;36495:17;36485:27;;36441:2;36569;36561:6;36558:14;36538:18;36535:38;36532:2;;;36588:18;;:::i;:::-;36532:2;36353:269;;;;:::o;36628:233::-;;36690:24;36708:5;36690:24;:::i;:::-;36681:33;;36736:66;36729:5;36726:77;36723:2;;;36806:18;;:::i;:::-;36723:2;36853:1;36846:5;36842:13;36835:20;;36671:190;;;:::o;36867:176::-;;36916:20;36934:1;36916:20;:::i;:::-;36911:25;;36950:20;36968:1;36950:20;:::i;:::-;36945:25;;36989:1;36979:2;;36994:18;;:::i;:::-;36979:2;37035:1;37032;37028:9;37023:14;;36901:142;;;;:::o;37049:180::-;37097:77;37094:1;37087:88;37194:4;37191:1;37184:15;37218:4;37215:1;37208:15;37235:180;37283:77;37280:1;37273:88;37380:4;37377:1;37370:15;37404:4;37401:1;37394:15;37421:180;37469:77;37466:1;37459:88;37566:4;37563:1;37556:15;37590:4;37587:1;37580:15;37607:180;37655:77;37652:1;37645:88;37752:4;37749:1;37742:15;37776:4;37773:1;37766:15;37793:102;;37885:2;37881:7;37876:2;37869:5;37865:14;37861:28;37851:38;;37841:54;;;:::o;37901:122::-;37974:24;37992:5;37974:24;:::i;:::-;37967:5;37964:35;37954:2;;38013:1;38010;38003:12;37954:2;37944:79;:::o;38029:116::-;38099:21;38114:5;38099:21;:::i;:::-;38092:5;38089:32;38079:2;;38135:1;38132;38125:12;38079:2;38069:76;:::o;38151:120::-;38223:23;38240:5;38223:23;:::i;:::-;38216:5;38213:34;38203:2;;38261:1;38258;38251:12;38203:2;38193:78;:::o;38277:122::-;38350:24;38368:5;38350:24;:::i;:::-;38343:5;38340:35;38330:2;;38389:1;38386;38379:12;38330:2;38320:79;:::o

Swarm Source

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