ETH Price: $3,158.01 (+2.85%)
Gas: 1 Gwei

Token

Wicked N' Bad (WNB)
 

Overview

Max Total Supply

0 WNB

Holders

61

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 WNB
0xc386d86aa8d2562d16542a01cfb707deb4591047
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:
WNB

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-22
*/

/**
 *Submitted for verification at Etherscan.io on 2022-04-22
*/

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

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

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

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

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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


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

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

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function TotalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

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



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

    mapping(address => bool) public isWhiteList;
    mapping(address => uint256) public numberOfMintsPerWallet;

    uint256 public Price = 45000000000000000; // 0.045 ether
    string public baseUri;
    address private signatureContract;


    uint public MaxPurchase = 5;
    uint256 public maxMintsPerWallet = 50;

    uint256 public MaxSupply = 5000;
    uint256 public MAXWhitelist = 220;
    

    bool public saleIsActive = false;
    bool public whitelistPhase = true;
    bool public Sale = false;

    function changePrice(uint256 newPrice) public onlyOwner {
        Price = newPrice;
    }

    function changeMaxMint(uint256 maxMint) public onlyOwner {
        MaxPurchase = maxMint;
    }

     constructor() ERC721A("Wicked N' Bad", "WNB") {}

        function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        
        address payable one = payable(0xcAB4922E16987aF5161AE030c8Fb8c2f0b02bb5e);
        address payable two = payable(0xBd33e3Db1b52C1D35964a439748071f7db69e8D3);
        address payable three = payable(0xC406fEDb0961EAdC76a4e8f45aD06E9Fbd85490b);
   
        one.transfer(balance.mul(85000000000000000000).div(100000000000000000000));
        two.transfer(balance.mul(10000000000000000000).div(100000000000000000000));
        three.transfer(balance.mul(5000000000000000000).div(100000000000000000000));
        
    }

    function Mint(uint256 quantity) external payable {

        require(saleIsActive, "Sale must be active to mint nft");
        require(quantity <= MaxPurchase, "Can only mint certain tokens at a time");
        require(Price.mul(quantity) <= msg.value, "Not Enough Ether Sent");
        require(numberOfMintsPerWallet[msg.sender] + quantity <= maxMintsPerWallet, "You have exceeded the max number of mintable NFTs for this wallet");

        numberOfMintsPerWallet[msg.sender] += quantity;

         if(whitelistPhase){
            require(TotalSupply().add(quantity) <= MAXWhitelist, "Purchase would exceed max whitelist supply of nfts");
            require(isWhiteList[msg.sender] == true, "User is not whitelisted");
            // require(deadline >= block.timestamp, "deadline passed");
            // require(signatureContract == ecrecover(getSignedHash(keccak256(abi.encodePacked(this, msg.sender , deadline , quantity))), v, r, s), "owner should sign Transactioon");
        } else if(Sale){
            require(TotalSupply().add(quantity) <= MaxSupply, "Purchase would exceed max supply of nfts");
        }else{
            revert();
        }

        // _safeMint's second argument now takes in a quantity, not a tokenId.
        _safeMint(msg.sender, quantity);
    }

    function reserveMint(address _address, uint256 _quantity) public onlyOwner {
        require(TotalSupply().add(_quantity) <= MaxSupply, "Purchase would exceed max supply of nfts");
        
        _safeMint(_address, _quantity);
    }
    
    function setBaseURI(string memory baseURI_) public onlyOwner {
        baseUri = baseURI_;
    }

    /*
    * Pause sale if active, make active if paused
    */
    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }


    /*
    * functions to add and remove from whitelist - both take an array of addresses as arguments
    */
    function addToWhiteList(address[] memory _addressList) public onlyOwner {
        for (uint256 i = 0 ; i < _addressList.length ; i++) {
            isWhiteList[_addressList[i]] = true;
        }
    }

    function removeFromWhiteList(address[] memory _addressList) public onlyOwner {
        for (uint256 i = 0 ; i < _addressList.length ; i++) {
            isWhiteList[_addressList[i]] = false;
        }
    }

    /*
    * functions to change state of either whitelist phase or public sale phase
    */
    function changeWhitelist(bool state) public onlyOwner {
        whitelistPhase = state;
    }


    function changePublicSale(bool state) public onlyOwner {
        Sale = state;
    }
      /**
     * @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
     */
    function _baseURI() internal view override returns (string memory) {
        return baseUri;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAXWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addressList","type":"address[]"}],"name":"addToWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"changeMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"changePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"changeWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numberOfMintsPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addressList","type":"address[]"}],"name":"removeFromWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"reserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistPhase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052669fdf42f6e48000600b556005600e556032600f5561138860105560dc6011556000601260006101000a81548160ff0219169083151502179055506001601260016101000a81548160ff0219169083151502179055506000601260026101000a81548160ff0219169083151502179055503480156200008257600080fd5b506040518060400160405280600d81526020017f5769636b6564204e2720426164000000000000000000000000000000000000008152506040518060400160405280600381526020017f574e420000000000000000000000000000000000000000000000000000000000815250816002908051906020019062000107929190620001fd565b50806003908051906020019062000120929190620001fd565b5062000131620001f060201b60201c565b600081905550505060006200014b620001f560201b60201c565b905080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35062000312565b600090565b600033905090565b8280546200020b90620002ad565b90600052602060002090601f0160209004810192826200022f57600085556200027b565b82601f106200024a57805160ff19168380011785556200027b565b828001600101855582156200027b579182015b828111156200027a5782518255916020019190600101906200025d565b5b5090506200028a91906200028e565b5090565b5b80821115620002a95760008160009055506001016200028f565b5090565b60006002820490506001821680620002c657607f821691505b60208210811415620002dd57620002dc620002e3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6145bf80620003226000396000f3fe6080604052600436106102305760003560e01c8063957f3dc31161012e578063b11560c5116100ab578063e985e9c51161006f578063e985e9c5146107f2578063eb8d24441461082f578063f2fde38b1461085a578063f516a2e614610883578063f99031a7146108ae57610230565b8063b11560c51461070d578063b36c128414610736578063b78f9de714610761578063b88d4fde1461078c578063c87b56dd146107b557610230565b8063a22cb465116100f2578063a22cb4651461063e578063a2b40d1914610667578063a44b47f714610690578063a8f97fa3146106bb578063b0ea1802146106e457610230565b8063957f3dc31461056957806395d89b411461059457806397bdc7c8146105bf5780639abc8320146105e85780639dfde2011461061357610230565b80633ccfd60b116101bc578063715018a611610180578063715018a6146104a8578063740d73f3146104bf578063815d544c146104e857806384244349146105135780638da5cb5b1461053e57610230565b80633ccfd60b146103c557806342842e0e146103dc57806355f804b3146104055780636352211e1461042e57806370a082311461046b57610230565b8063095ea7b311610203578063095ea7b3146102f657806320c63e3b1461031f57806323b872dd146103485780632ac1916f1461037157806334918dfd146103ae57610230565b806301ffc9a71461023557806306fdde0314610272578063078837031461029d578063081812fc146102b9575b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906137dd565b6108eb565b6040516102699190613bac565b60405180910390f35b34801561027e57600080fd5b506102876109cd565b6040516102949190613bc7565b60405180910390f35b6102b760048036038101906102b29190613880565b610a5f565b005b3480156102c557600080fd5b506102e060048036038101906102db9190613880565b610dc5565b6040516102ed9190613b45565b60405180910390f35b34801561030257600080fd5b5061031d60048036038101906103189190613727565b610e41565b005b34801561032b57600080fd5b5061034660048036038101906103419190613880565b610f4c565b005b34801561035457600080fd5b5061036f600480360381019061036a9190613611565b610fd2565b005b34801561037d57600080fd5b50610398600480360381019061039391906135a4565b610fe2565b6040516103a59190613d69565b60405180910390f35b3480156103ba57600080fd5b506103c3610ffa565b005b3480156103d157600080fd5b506103da6110a2565b005b3480156103e857600080fd5b5061040360048036038101906103fe9190613611565b6112e9565b005b34801561041157600080fd5b5061042c60048036038101906104279190613837565b611309565b005b34801561043a57600080fd5b5061045560048036038101906104509190613880565b61139f565b6040516104629190613b45565b60405180910390f35b34801561047757600080fd5b50610492600480360381019061048d91906135a4565b6113b5565b60405161049f9190613d69565b60405180910390f35b3480156104b457600080fd5b506104bd611485565b005b3480156104cb57600080fd5b506104e660048036038101906104e19190613767565b6115c2565b005b3480156104f457600080fd5b506104fd6116d3565b60405161050a9190613bac565b60405180910390f35b34801561051f57600080fd5b506105286116e6565b6040516105359190613d69565b60405180910390f35b34801561054a57600080fd5b506105536116ec565b6040516105609190613b45565b60405180910390f35b34801561057557600080fd5b5061057e611716565b60405161058b9190613d69565b60405180910390f35b3480156105a057600080fd5b506105a961171c565b6040516105b69190613bc7565b60405180910390f35b3480156105cb57600080fd5b506105e660048036038101906105e191906137b0565b6117ae565b005b3480156105f457600080fd5b506105fd611847565b60405161060a9190613bc7565b60405180910390f35b34801561061f57600080fd5b506106286118d5565b6040516106359190613d69565b60405180910390f35b34801561064a57600080fd5b50610665600480360381019061066091906136e7565b6118db565b005b34801561067357600080fd5b5061068e60048036038101906106899190613880565b611a53565b005b34801561069c57600080fd5b506106a5611ad9565b6040516106b29190613d69565b60405180910390f35b3480156106c757600080fd5b506106e260048036038101906106dd91906137b0565b611af0565b005b3480156106f057600080fd5b5061070b60048036038101906107069190613727565b611b89565b005b34801561071957600080fd5b50610734600480360381019061072f9190613767565b611c71565b005b34801561074257600080fd5b5061074b611d82565b6040516107589190613d69565b60405180910390f35b34801561076d57600080fd5b50610776611d88565b6040516107839190613bac565b60405180910390f35b34801561079857600080fd5b506107b360048036038101906107ae9190613664565b611d9b565b005b3480156107c157600080fd5b506107dc60048036038101906107d79190613880565b611e17565b6040516107e99190613bc7565b60405180910390f35b3480156107fe57600080fd5b50610819600480360381019061081491906135d1565b611eb6565b6040516108269190613bac565b60405180910390f35b34801561083b57600080fd5b50610844611f4a565b6040516108519190613bac565b60405180910390f35b34801561086657600080fd5b50610881600480360381019061087c91906135a4565b611f5d565b005b34801561088f57600080fd5b50610898612109565b6040516108a59190613d69565b60405180910390f35b3480156108ba57600080fd5b506108d560048036038101906108d091906135a4565b61210f565b6040516108e29190613bac565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109b657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109c657506109c58261212f565b5b9050919050565b6060600280546109dc90614045565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0890614045565b8015610a555780601f10610a2a57610100808354040283529160200191610a55565b820191906000526020600020905b815481529060010190602001808311610a3857829003601f168201915b5050505050905090565b601260009054906101000a900460ff16610aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa590613d29565b60405180910390fd5b600e54811115610af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aea90613d09565b60405180910390fd5b34610b0982600b5461219990919063ffffffff16565b1115610b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4190613d49565b60405180910390fd5b600f5481600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b989190613e7a565b1115610bd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd090613c49565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c289190613e7a565b92505081905550601260019054906101000a900460ff1615610d3a57601154610c6182610c53611ad9565b61221490919063ffffffff16565b1115610ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9990613c89565b60405180910390fd5b60011515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2c90613c69565b60405180910390fd5b610db8565b601260029054906101000a900460ff1615610db257601054610d6c82610d5e611ad9565b61221490919063ffffffff16565b1115610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da490613ca9565b60405180910390fd5b610db7565b600080fd5b5b610dc23382612272565b50565b6000610dd082612290565b610e06576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e4c8261139f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610eb4576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ed36122de565b73ffffffffffffffffffffffffffffffffffffffff1614158015610f055750610f0381610efe6122de565b611eb6565b155b15610f3c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f478383836122e6565b505050565b610f546122de565b73ffffffffffffffffffffffffffffffffffffffff16610f726116ec565b73ffffffffffffffffffffffffffffffffffffffff1614610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf90613ce9565b60405180910390fd5b80600e8190555050565b610fdd838383612398565b505050565b600a6020528060005260406000206000915090505481565b6110026122de565b73ffffffffffffffffffffffffffffffffffffffff166110206116ec565b73ffffffffffffffffffffffffffffffffffffffff1614611076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106d90613ce9565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b6110aa6122de565b73ffffffffffffffffffffffffffffffffffffffff166110c86116ec565b73ffffffffffffffffffffffffffffffffffffffff161461111e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111590613ce9565b60405180910390fd5b6000479050600073cab4922e16987af5161ae030c8fb8c2f0b02bb5e9050600073bd33e3db1b52c1d35964a439748071f7db69e8d39050600073c406fedb0961eadc76a4e8f45ad06e9fbd85490b90508273ffffffffffffffffffffffffffffffffffffffff166108fc6111bf68056bc75e2d631000006111b168049b9ca9a6943400008961219990919063ffffffff16565b61288990919063ffffffff16565b9081150290604051600060405180830381858888f193505050501580156111ea573d6000803e3d6000fd5b508173ffffffffffffffffffffffffffffffffffffffff166108fc61123b68056bc75e2d6310000061122d678ac7230489e800008961219990919063ffffffff16565b61288990919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015611266573d6000803e3d6000fd5b508073ffffffffffffffffffffffffffffffffffffffff166108fc6112b768056bc75e2d631000006112a9674563918244f400008961219990919063ffffffff16565b61288990919063ffffffff16565b9081150290604051600060405180830381858888f193505050501580156112e2573d6000803e3d6000fd5b5050505050565b61130483838360405180602001604052806000815250611d9b565b505050565b6113116122de565b73ffffffffffffffffffffffffffffffffffffffff1661132f6116ec565b73ffffffffffffffffffffffffffffffffffffffff1614611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c90613ce9565b60405180910390fd5b80600c908051906020019061139b9291906132d7565b5050565b60006113aa826128e1565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561141d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61148d6122de565b73ffffffffffffffffffffffffffffffffffffffff166114ab6116ec565b73ffffffffffffffffffffffffffffffffffffffff1614611501576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f890613ce9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6115ca6122de565b73ffffffffffffffffffffffffffffffffffffffff166115e86116ec565b73ffffffffffffffffffffffffffffffffffffffff161461163e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163590613ce9565b60405180910390fd5b60005b81518110156116cf57600160096000848481518110611663576116626141af565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806116c7906140a8565b915050611641565b5050565b601260019054906101000a900460ff1681565b60115481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b60606003805461172b90614045565b80601f016020809104026020016040519081016040528092919081815260200182805461175790614045565b80156117a45780601f10611779576101008083540402835291602001916117a4565b820191906000526020600020905b81548152906001019060200180831161178757829003601f168201915b5050505050905090565b6117b66122de565b73ffffffffffffffffffffffffffffffffffffffff166117d46116ec565b73ffffffffffffffffffffffffffffffffffffffff161461182a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182190613ce9565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b600c805461185490614045565b80601f016020809104026020016040519081016040528092919081815260200182805461188090614045565b80156118cd5780601f106118a2576101008083540402835291602001916118cd565b820191906000526020600020905b8154815290600101906020018083116118b057829003601f168201915b505050505081565b600b5481565b6118e36122de565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611948576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119556122de565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a026122de565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a479190613bac565b60405180910390a35050565b611a5b6122de565b73ffffffffffffffffffffffffffffffffffffffff16611a796116ec565b73ffffffffffffffffffffffffffffffffffffffff1614611acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac690613ce9565b60405180910390fd5b80600b8190555050565b6000611ae3612b70565b6001546000540303905090565b611af86122de565b73ffffffffffffffffffffffffffffffffffffffff16611b166116ec565b73ffffffffffffffffffffffffffffffffffffffff1614611b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6390613ce9565b60405180910390fd5b80601260026101000a81548160ff02191690831515021790555050565b611b916122de565b73ffffffffffffffffffffffffffffffffffffffff16611baf6116ec565b73ffffffffffffffffffffffffffffffffffffffff1614611c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfc90613ce9565b60405180910390fd5b601054611c2282611c14611ad9565b61221490919063ffffffff16565b1115611c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5a90613ca9565b60405180910390fd5b611c6d8282612272565b5050565b611c796122de565b73ffffffffffffffffffffffffffffffffffffffff16611c976116ec565b73ffffffffffffffffffffffffffffffffffffffff1614611ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce490613ce9565b60405180910390fd5b60005b8151811015611d7e57600060096000848481518110611d1257611d116141af565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611d76906140a8565b915050611cf0565b5050565b60105481565b601260029054906101000a900460ff1681565b611da6848484612398565b611dc58373ffffffffffffffffffffffffffffffffffffffff16612b75565b8015611dda5750611dd884848484612b98565b155b15611e11576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611e2282612290565b611e58576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611e62612cf8565b9050600081511415611e835760405180602001604052806000815250611eae565b80611e8d84612d8a565b604051602001611e9e929190613b21565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601260009054906101000a900460ff1681565b611f656122de565b73ffffffffffffffffffffffffffffffffffffffff16611f836116ec565b73ffffffffffffffffffffffffffffffffffffffff1614611fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd090613ce9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612049576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204090613be9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b60096020528060005260406000206000915054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000808314156121ac576000905061220e565b600082846121ba9190613f01565b90508284826121c99190613ed0565b14612209576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220090613cc9565b60405180910390fd5b809150505b92915050565b60008082846122239190613e7a565b905083811015612268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225f90613c09565b60405180910390fd5b8091505092915050565b61228c828260405180602001604052806000815250612eeb565b5050565b60008161229b612b70565b111580156122aa575060005482105b80156122d7575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006123a3826128e1565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166123ca6122de565b73ffffffffffffffffffffffffffffffffffffffff1614806123fd57506123fc82600001516123f76122de565b611eb6565b5b80612442575061240b6122de565b73ffffffffffffffffffffffffffffffffffffffff1661242a84610dc5565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061247b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146124e4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561254b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125588585856001612efd565b61256860008484600001516122e6565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612819576000548110156128185782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128828585856001612f03565b5050505050565b60008082116128cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c490613c29565b60405180910390fd5b81836128d99190613ed0565b905092915050565b6128e961335d565b6000829050806128f7612b70565b11158015612906575060005481105b15612b39576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612b3757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a1b578092505050612b6b565b5b600115612b3657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b31578092505050612b6b565b612a1c565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600090565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bbe6122de565b8786866040518563ffffffff1660e01b8152600401612be09493929190613b60565b602060405180830381600087803b158015612bfa57600080fd5b505af1925050508015612c2b57506040513d601f19601f82011682018060405250810190612c28919061380a565b60015b612ca5573d8060008114612c5b576040519150601f19603f3d011682016040523d82523d6000602084013e612c60565b606091505b50600081511415612c9d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054612d0790614045565b80601f0160208091040260200160405190810160405280929190818152602001828054612d3390614045565b8015612d805780601f10612d5557610100808354040283529160200191612d80565b820191906000526020600020905b815481529060010190602001808311612d6357829003601f168201915b5050505050905090565b60606000821415612dd2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ee6565b600082905060005b60008214612e04578080612ded906140a8565b915050600a82612dfd9190613ed0565b9150612dda565b60008167ffffffffffffffff811115612e2057612e1f6141de565b5b6040519080825280601f01601f191660200182016040528015612e525781602001600182028036833780820191505090505b5090505b60008514612edf57600182612e6b9190613f5b565b9150600a85612e7a91906140f1565b6030612e869190613e7a565b60f81b818381518110612e9c57612e9b6141af565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ed89190613ed0565b9450612e56565b8093505050505b919050565b612ef88383836001612f09565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612f76576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612fb1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612fbe6000868387612efd565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561318857506131878773ffffffffffffffffffffffffffffffffffffffff16612b75565b5b1561324e575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131fd6000888480600101955088612b98565b613233576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561318e57826000541461324957600080fd5b6132ba565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561324f575b8160008190555050506132d06000868387612f03565b5050505050565b8280546132e390614045565b90600052602060002090601f016020900481019282613305576000855561334c565b82601f1061331e57805160ff191683800117855561334c565b8280016001018555821561334c579182015b8281111561334b578251825591602001919060010190613330565b5b50905061335991906133a0565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156133b95760008160009055506001016133a1565b5090565b60006133d06133cb84613da9565b613d84565b905080838252602082019050828560208602820111156133f3576133f2614212565b5b60005b85811015613423578161340988826134b1565b8452602084019350602083019250506001810190506133f6565b5050509392505050565b600061344061343b84613dd5565b613d84565b90508281526020810184848401111561345c5761345b614217565b5b613467848285614003565b509392505050565b600061348261347d84613e06565b613d84565b90508281526020810184848401111561349e5761349d614217565b5b6134a9848285614003565b509392505050565b6000813590506134c08161452d565b92915050565b600082601f8301126134db576134da61420d565b5b81356134eb8482602086016133bd565b91505092915050565b60008135905061350381614544565b92915050565b6000813590506135188161455b565b92915050565b60008151905061352d8161455b565b92915050565b600082601f8301126135485761354761420d565b5b813561355884826020860161342d565b91505092915050565b600082601f8301126135765761357561420d565b5b813561358684826020860161346f565b91505092915050565b60008135905061359e81614572565b92915050565b6000602082840312156135ba576135b9614221565b5b60006135c8848285016134b1565b91505092915050565b600080604083850312156135e8576135e7614221565b5b60006135f6858286016134b1565b9250506020613607858286016134b1565b9150509250929050565b60008060006060848603121561362a57613629614221565b5b6000613638868287016134b1565b9350506020613649868287016134b1565b925050604061365a8682870161358f565b9150509250925092565b6000806000806080858703121561367e5761367d614221565b5b600061368c878288016134b1565b945050602061369d878288016134b1565b93505060406136ae8782880161358f565b925050606085013567ffffffffffffffff8111156136cf576136ce61421c565b5b6136db87828801613533565b91505092959194509250565b600080604083850312156136fe576136fd614221565b5b600061370c858286016134b1565b925050602061371d858286016134f4565b9150509250929050565b6000806040838503121561373e5761373d614221565b5b600061374c858286016134b1565b925050602061375d8582860161358f565b9150509250929050565b60006020828403121561377d5761377c614221565b5b600082013567ffffffffffffffff81111561379b5761379a61421c565b5b6137a7848285016134c6565b91505092915050565b6000602082840312156137c6576137c5614221565b5b60006137d4848285016134f4565b91505092915050565b6000602082840312156137f3576137f2614221565b5b600061380184828501613509565b91505092915050565b6000602082840312156138205761381f614221565b5b600061382e8482850161351e565b91505092915050565b60006020828403121561384d5761384c614221565b5b600082013567ffffffffffffffff81111561386b5761386a61421c565b5b61387784828501613561565b91505092915050565b60006020828403121561389657613895614221565b5b60006138a48482850161358f565b91505092915050565b6138b681613f8f565b82525050565b6138c581613fa1565b82525050565b60006138d682613e37565b6138e08185613e4d565b93506138f0818560208601614012565b6138f981614226565b840191505092915050565b600061390f82613e42565b6139198185613e5e565b9350613929818560208601614012565b61393281614226565b840191505092915050565b600061394882613e42565b6139528185613e6f565b9350613962818560208601614012565b80840191505092915050565b600061397b602683613e5e565b915061398682614237565b604082019050919050565b600061399e601b83613e5e565b91506139a982614286565b602082019050919050565b60006139c1601a83613e5e565b91506139cc826142af565b602082019050919050565b60006139e4604183613e5e565b91506139ef826142d8565b606082019050919050565b6000613a07601783613e5e565b9150613a128261434d565b602082019050919050565b6000613a2a603283613e5e565b9150613a3582614376565b604082019050919050565b6000613a4d602883613e5e565b9150613a58826143c5565b604082019050919050565b6000613a70602183613e5e565b9150613a7b82614414565b604082019050919050565b6000613a93602083613e5e565b9150613a9e82614463565b602082019050919050565b6000613ab6602683613e5e565b9150613ac18261448c565b604082019050919050565b6000613ad9601f83613e5e565b9150613ae4826144db565b602082019050919050565b6000613afc601583613e5e565b9150613b0782614504565b602082019050919050565b613b1b81613ff9565b82525050565b6000613b2d828561393d565b9150613b39828461393d565b91508190509392505050565b6000602082019050613b5a60008301846138ad565b92915050565b6000608082019050613b7560008301876138ad565b613b8260208301866138ad565b613b8f6040830185613b12565b8181036060830152613ba181846138cb565b905095945050505050565b6000602082019050613bc160008301846138bc565b92915050565b60006020820190508181036000830152613be18184613904565b905092915050565b60006020820190508181036000830152613c028161396e565b9050919050565b60006020820190508181036000830152613c2281613991565b9050919050565b60006020820190508181036000830152613c42816139b4565b9050919050565b60006020820190508181036000830152613c62816139d7565b9050919050565b60006020820190508181036000830152613c82816139fa565b9050919050565b60006020820190508181036000830152613ca281613a1d565b9050919050565b60006020820190508181036000830152613cc281613a40565b9050919050565b60006020820190508181036000830152613ce281613a63565b9050919050565b60006020820190508181036000830152613d0281613a86565b9050919050565b60006020820190508181036000830152613d2281613aa9565b9050919050565b60006020820190508181036000830152613d4281613acc565b9050919050565b60006020820190508181036000830152613d6281613aef565b9050919050565b6000602082019050613d7e6000830184613b12565b92915050565b6000613d8e613d9f565b9050613d9a8282614077565b919050565b6000604051905090565b600067ffffffffffffffff821115613dc457613dc36141de565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613df057613def6141de565b5b613df982614226565b9050602081019050919050565b600067ffffffffffffffff821115613e2157613e206141de565b5b613e2a82614226565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e8582613ff9565b9150613e9083613ff9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ec557613ec4614122565b5b828201905092915050565b6000613edb82613ff9565b9150613ee683613ff9565b925082613ef657613ef5614151565b5b828204905092915050565b6000613f0c82613ff9565b9150613f1783613ff9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f5057613f4f614122565b5b828202905092915050565b6000613f6682613ff9565b9150613f7183613ff9565b925082821015613f8457613f83614122565b5b828203905092915050565b6000613f9a82613fd9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614030578082015181840152602081019050614015565b8381111561403f576000848401525b50505050565b6000600282049050600182168061405d57607f821691505b6020821081141561407157614070614180565b5b50919050565b61408082614226565b810181811067ffffffffffffffff8211171561409f5761409e6141de565b5b80604052505050565b60006140b382613ff9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140e6576140e5614122565b5b600182019050919050565b60006140fc82613ff9565b915061410783613ff9565b92508261411757614116614151565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f536166654d6174683a206469766973696f6e206279207a65726f000000000000600082015250565b7f596f75206861766520657863656564656420746865206d6178206e756d62657260008201527f206f66206d696e7461626c65204e46547320666f7220746869732077616c6c6560208201527f7400000000000000000000000000000000000000000000000000000000000000604082015250565b7f55736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f507572636861736520776f756c6420657863656564206d61782077686974656c60008201527f69737420737570706c79206f66206e6674730000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f66206e667473000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616e206f6e6c79206d696e74206365727461696e20746f6b656e732061742060008201527f612074696d650000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e74206e667400600082015250565b7f4e6f7420456e6f7567682045746865722053656e740000000000000000000000600082015250565b61453681613f8f565b811461454157600080fd5b50565b61454d81613fa1565b811461455857600080fd5b50565b61456481613fad565b811461456f57600080fd5b50565b61457b81613ff9565b811461458657600080fd5b5056fea2646970667358221220b28e86ed482871969385a0229f0dc0fe8b00452ab7266dd9bd85af2a9430fe4564736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102305760003560e01c8063957f3dc31161012e578063b11560c5116100ab578063e985e9c51161006f578063e985e9c5146107f2578063eb8d24441461082f578063f2fde38b1461085a578063f516a2e614610883578063f99031a7146108ae57610230565b8063b11560c51461070d578063b36c128414610736578063b78f9de714610761578063b88d4fde1461078c578063c87b56dd146107b557610230565b8063a22cb465116100f2578063a22cb4651461063e578063a2b40d1914610667578063a44b47f714610690578063a8f97fa3146106bb578063b0ea1802146106e457610230565b8063957f3dc31461056957806395d89b411461059457806397bdc7c8146105bf5780639abc8320146105e85780639dfde2011461061357610230565b80633ccfd60b116101bc578063715018a611610180578063715018a6146104a8578063740d73f3146104bf578063815d544c146104e857806384244349146105135780638da5cb5b1461053e57610230565b80633ccfd60b146103c557806342842e0e146103dc57806355f804b3146104055780636352211e1461042e57806370a082311461046b57610230565b8063095ea7b311610203578063095ea7b3146102f657806320c63e3b1461031f57806323b872dd146103485780632ac1916f1461037157806334918dfd146103ae57610230565b806301ffc9a71461023557806306fdde0314610272578063078837031461029d578063081812fc146102b9575b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906137dd565b6108eb565b6040516102699190613bac565b60405180910390f35b34801561027e57600080fd5b506102876109cd565b6040516102949190613bc7565b60405180910390f35b6102b760048036038101906102b29190613880565b610a5f565b005b3480156102c557600080fd5b506102e060048036038101906102db9190613880565b610dc5565b6040516102ed9190613b45565b60405180910390f35b34801561030257600080fd5b5061031d60048036038101906103189190613727565b610e41565b005b34801561032b57600080fd5b5061034660048036038101906103419190613880565b610f4c565b005b34801561035457600080fd5b5061036f600480360381019061036a9190613611565b610fd2565b005b34801561037d57600080fd5b50610398600480360381019061039391906135a4565b610fe2565b6040516103a59190613d69565b60405180910390f35b3480156103ba57600080fd5b506103c3610ffa565b005b3480156103d157600080fd5b506103da6110a2565b005b3480156103e857600080fd5b5061040360048036038101906103fe9190613611565b6112e9565b005b34801561041157600080fd5b5061042c60048036038101906104279190613837565b611309565b005b34801561043a57600080fd5b5061045560048036038101906104509190613880565b61139f565b6040516104629190613b45565b60405180910390f35b34801561047757600080fd5b50610492600480360381019061048d91906135a4565b6113b5565b60405161049f9190613d69565b60405180910390f35b3480156104b457600080fd5b506104bd611485565b005b3480156104cb57600080fd5b506104e660048036038101906104e19190613767565b6115c2565b005b3480156104f457600080fd5b506104fd6116d3565b60405161050a9190613bac565b60405180910390f35b34801561051f57600080fd5b506105286116e6565b6040516105359190613d69565b60405180910390f35b34801561054a57600080fd5b506105536116ec565b6040516105609190613b45565b60405180910390f35b34801561057557600080fd5b5061057e611716565b60405161058b9190613d69565b60405180910390f35b3480156105a057600080fd5b506105a961171c565b6040516105b69190613bc7565b60405180910390f35b3480156105cb57600080fd5b506105e660048036038101906105e191906137b0565b6117ae565b005b3480156105f457600080fd5b506105fd611847565b60405161060a9190613bc7565b60405180910390f35b34801561061f57600080fd5b506106286118d5565b6040516106359190613d69565b60405180910390f35b34801561064a57600080fd5b50610665600480360381019061066091906136e7565b6118db565b005b34801561067357600080fd5b5061068e60048036038101906106899190613880565b611a53565b005b34801561069c57600080fd5b506106a5611ad9565b6040516106b29190613d69565b60405180910390f35b3480156106c757600080fd5b506106e260048036038101906106dd91906137b0565b611af0565b005b3480156106f057600080fd5b5061070b60048036038101906107069190613727565b611b89565b005b34801561071957600080fd5b50610734600480360381019061072f9190613767565b611c71565b005b34801561074257600080fd5b5061074b611d82565b6040516107589190613d69565b60405180910390f35b34801561076d57600080fd5b50610776611d88565b6040516107839190613bac565b60405180910390f35b34801561079857600080fd5b506107b360048036038101906107ae9190613664565b611d9b565b005b3480156107c157600080fd5b506107dc60048036038101906107d79190613880565b611e17565b6040516107e99190613bc7565b60405180910390f35b3480156107fe57600080fd5b50610819600480360381019061081491906135d1565b611eb6565b6040516108269190613bac565b60405180910390f35b34801561083b57600080fd5b50610844611f4a565b6040516108519190613bac565b60405180910390f35b34801561086657600080fd5b50610881600480360381019061087c91906135a4565b611f5d565b005b34801561088f57600080fd5b50610898612109565b6040516108a59190613d69565b60405180910390f35b3480156108ba57600080fd5b506108d560048036038101906108d091906135a4565b61210f565b6040516108e29190613bac565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109b657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109c657506109c58261212f565b5b9050919050565b6060600280546109dc90614045565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0890614045565b8015610a555780601f10610a2a57610100808354040283529160200191610a55565b820191906000526020600020905b815481529060010190602001808311610a3857829003601f168201915b5050505050905090565b601260009054906101000a900460ff16610aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa590613d29565b60405180910390fd5b600e54811115610af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aea90613d09565b60405180910390fd5b34610b0982600b5461219990919063ffffffff16565b1115610b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4190613d49565b60405180910390fd5b600f5481600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b989190613e7a565b1115610bd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd090613c49565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c289190613e7a565b92505081905550601260019054906101000a900460ff1615610d3a57601154610c6182610c53611ad9565b61221490919063ffffffff16565b1115610ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9990613c89565b60405180910390fd5b60011515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2c90613c69565b60405180910390fd5b610db8565b601260029054906101000a900460ff1615610db257601054610d6c82610d5e611ad9565b61221490919063ffffffff16565b1115610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da490613ca9565b60405180910390fd5b610db7565b600080fd5b5b610dc23382612272565b50565b6000610dd082612290565b610e06576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e4c8261139f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610eb4576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ed36122de565b73ffffffffffffffffffffffffffffffffffffffff1614158015610f055750610f0381610efe6122de565b611eb6565b155b15610f3c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f478383836122e6565b505050565b610f546122de565b73ffffffffffffffffffffffffffffffffffffffff16610f726116ec565b73ffffffffffffffffffffffffffffffffffffffff1614610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf90613ce9565b60405180910390fd5b80600e8190555050565b610fdd838383612398565b505050565b600a6020528060005260406000206000915090505481565b6110026122de565b73ffffffffffffffffffffffffffffffffffffffff166110206116ec565b73ffffffffffffffffffffffffffffffffffffffff1614611076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106d90613ce9565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b6110aa6122de565b73ffffffffffffffffffffffffffffffffffffffff166110c86116ec565b73ffffffffffffffffffffffffffffffffffffffff161461111e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111590613ce9565b60405180910390fd5b6000479050600073cab4922e16987af5161ae030c8fb8c2f0b02bb5e9050600073bd33e3db1b52c1d35964a439748071f7db69e8d39050600073c406fedb0961eadc76a4e8f45ad06e9fbd85490b90508273ffffffffffffffffffffffffffffffffffffffff166108fc6111bf68056bc75e2d631000006111b168049b9ca9a6943400008961219990919063ffffffff16565b61288990919063ffffffff16565b9081150290604051600060405180830381858888f193505050501580156111ea573d6000803e3d6000fd5b508173ffffffffffffffffffffffffffffffffffffffff166108fc61123b68056bc75e2d6310000061122d678ac7230489e800008961219990919063ffffffff16565b61288990919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015611266573d6000803e3d6000fd5b508073ffffffffffffffffffffffffffffffffffffffff166108fc6112b768056bc75e2d631000006112a9674563918244f400008961219990919063ffffffff16565b61288990919063ffffffff16565b9081150290604051600060405180830381858888f193505050501580156112e2573d6000803e3d6000fd5b5050505050565b61130483838360405180602001604052806000815250611d9b565b505050565b6113116122de565b73ffffffffffffffffffffffffffffffffffffffff1661132f6116ec565b73ffffffffffffffffffffffffffffffffffffffff1614611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c90613ce9565b60405180910390fd5b80600c908051906020019061139b9291906132d7565b5050565b60006113aa826128e1565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561141d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61148d6122de565b73ffffffffffffffffffffffffffffffffffffffff166114ab6116ec565b73ffffffffffffffffffffffffffffffffffffffff1614611501576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f890613ce9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6115ca6122de565b73ffffffffffffffffffffffffffffffffffffffff166115e86116ec565b73ffffffffffffffffffffffffffffffffffffffff161461163e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163590613ce9565b60405180910390fd5b60005b81518110156116cf57600160096000848481518110611663576116626141af565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806116c7906140a8565b915050611641565b5050565b601260019054906101000a900460ff1681565b60115481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b60606003805461172b90614045565b80601f016020809104026020016040519081016040528092919081815260200182805461175790614045565b80156117a45780601f10611779576101008083540402835291602001916117a4565b820191906000526020600020905b81548152906001019060200180831161178757829003601f168201915b5050505050905090565b6117b66122de565b73ffffffffffffffffffffffffffffffffffffffff166117d46116ec565b73ffffffffffffffffffffffffffffffffffffffff161461182a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182190613ce9565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b600c805461185490614045565b80601f016020809104026020016040519081016040528092919081815260200182805461188090614045565b80156118cd5780601f106118a2576101008083540402835291602001916118cd565b820191906000526020600020905b8154815290600101906020018083116118b057829003601f168201915b505050505081565b600b5481565b6118e36122de565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611948576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119556122de565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a026122de565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a479190613bac565b60405180910390a35050565b611a5b6122de565b73ffffffffffffffffffffffffffffffffffffffff16611a796116ec565b73ffffffffffffffffffffffffffffffffffffffff1614611acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac690613ce9565b60405180910390fd5b80600b8190555050565b6000611ae3612b70565b6001546000540303905090565b611af86122de565b73ffffffffffffffffffffffffffffffffffffffff16611b166116ec565b73ffffffffffffffffffffffffffffffffffffffff1614611b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6390613ce9565b60405180910390fd5b80601260026101000a81548160ff02191690831515021790555050565b611b916122de565b73ffffffffffffffffffffffffffffffffffffffff16611baf6116ec565b73ffffffffffffffffffffffffffffffffffffffff1614611c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfc90613ce9565b60405180910390fd5b601054611c2282611c14611ad9565b61221490919063ffffffff16565b1115611c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5a90613ca9565b60405180910390fd5b611c6d8282612272565b5050565b611c796122de565b73ffffffffffffffffffffffffffffffffffffffff16611c976116ec565b73ffffffffffffffffffffffffffffffffffffffff1614611ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce490613ce9565b60405180910390fd5b60005b8151811015611d7e57600060096000848481518110611d1257611d116141af565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611d76906140a8565b915050611cf0565b5050565b60105481565b601260029054906101000a900460ff1681565b611da6848484612398565b611dc58373ffffffffffffffffffffffffffffffffffffffff16612b75565b8015611dda5750611dd884848484612b98565b155b15611e11576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611e2282612290565b611e58576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611e62612cf8565b9050600081511415611e835760405180602001604052806000815250611eae565b80611e8d84612d8a565b604051602001611e9e929190613b21565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601260009054906101000a900460ff1681565b611f656122de565b73ffffffffffffffffffffffffffffffffffffffff16611f836116ec565b73ffffffffffffffffffffffffffffffffffffffff1614611fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd090613ce9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612049576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204090613be9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b60096020528060005260406000206000915054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000808314156121ac576000905061220e565b600082846121ba9190613f01565b90508284826121c99190613ed0565b14612209576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220090613cc9565b60405180910390fd5b809150505b92915050565b60008082846122239190613e7a565b905083811015612268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225f90613c09565b60405180910390fd5b8091505092915050565b61228c828260405180602001604052806000815250612eeb565b5050565b60008161229b612b70565b111580156122aa575060005482105b80156122d7575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006123a3826128e1565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166123ca6122de565b73ffffffffffffffffffffffffffffffffffffffff1614806123fd57506123fc82600001516123f76122de565b611eb6565b5b80612442575061240b6122de565b73ffffffffffffffffffffffffffffffffffffffff1661242a84610dc5565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061247b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146124e4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561254b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125588585856001612efd565b61256860008484600001516122e6565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612819576000548110156128185782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128828585856001612f03565b5050505050565b60008082116128cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c490613c29565b60405180910390fd5b81836128d99190613ed0565b905092915050565b6128e961335d565b6000829050806128f7612b70565b11158015612906575060005481105b15612b39576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612b3757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a1b578092505050612b6b565b5b600115612b3657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b31578092505050612b6b565b612a1c565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600090565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bbe6122de565b8786866040518563ffffffff1660e01b8152600401612be09493929190613b60565b602060405180830381600087803b158015612bfa57600080fd5b505af1925050508015612c2b57506040513d601f19601f82011682018060405250810190612c28919061380a565b60015b612ca5573d8060008114612c5b576040519150601f19603f3d011682016040523d82523d6000602084013e612c60565b606091505b50600081511415612c9d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054612d0790614045565b80601f0160208091040260200160405190810160405280929190818152602001828054612d3390614045565b8015612d805780601f10612d5557610100808354040283529160200191612d80565b820191906000526020600020905b815481529060010190602001808311612d6357829003601f168201915b5050505050905090565b60606000821415612dd2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ee6565b600082905060005b60008214612e04578080612ded906140a8565b915050600a82612dfd9190613ed0565b9150612dda565b60008167ffffffffffffffff811115612e2057612e1f6141de565b5b6040519080825280601f01601f191660200182016040528015612e525781602001600182028036833780820191505090505b5090505b60008514612edf57600182612e6b9190613f5b565b9150600a85612e7a91906140f1565b6030612e869190613e7a565b60f81b818381518110612e9c57612e9b6141af565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ed89190613ed0565b9450612e56565b8093505050505b919050565b612ef88383836001612f09565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612f76576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612fb1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612fbe6000868387612efd565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561318857506131878773ffffffffffffffffffffffffffffffffffffffff16612b75565b5b1561324e575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131fd6000888480600101955088612b98565b613233576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561318e57826000541461324957600080fd5b6132ba565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561324f575b8160008190555050506132d06000868387612f03565b5050505050565b8280546132e390614045565b90600052602060002090601f016020900481019282613305576000855561334c565b82601f1061331e57805160ff191683800117855561334c565b8280016001018555821561334c579182015b8281111561334b578251825591602001919060010190613330565b5b50905061335991906133a0565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156133b95760008160009055506001016133a1565b5090565b60006133d06133cb84613da9565b613d84565b905080838252602082019050828560208602820111156133f3576133f2614212565b5b60005b85811015613423578161340988826134b1565b8452602084019350602083019250506001810190506133f6565b5050509392505050565b600061344061343b84613dd5565b613d84565b90508281526020810184848401111561345c5761345b614217565b5b613467848285614003565b509392505050565b600061348261347d84613e06565b613d84565b90508281526020810184848401111561349e5761349d614217565b5b6134a9848285614003565b509392505050565b6000813590506134c08161452d565b92915050565b600082601f8301126134db576134da61420d565b5b81356134eb8482602086016133bd565b91505092915050565b60008135905061350381614544565b92915050565b6000813590506135188161455b565b92915050565b60008151905061352d8161455b565b92915050565b600082601f8301126135485761354761420d565b5b813561355884826020860161342d565b91505092915050565b600082601f8301126135765761357561420d565b5b813561358684826020860161346f565b91505092915050565b60008135905061359e81614572565b92915050565b6000602082840312156135ba576135b9614221565b5b60006135c8848285016134b1565b91505092915050565b600080604083850312156135e8576135e7614221565b5b60006135f6858286016134b1565b9250506020613607858286016134b1565b9150509250929050565b60008060006060848603121561362a57613629614221565b5b6000613638868287016134b1565b9350506020613649868287016134b1565b925050604061365a8682870161358f565b9150509250925092565b6000806000806080858703121561367e5761367d614221565b5b600061368c878288016134b1565b945050602061369d878288016134b1565b93505060406136ae8782880161358f565b925050606085013567ffffffffffffffff8111156136cf576136ce61421c565b5b6136db87828801613533565b91505092959194509250565b600080604083850312156136fe576136fd614221565b5b600061370c858286016134b1565b925050602061371d858286016134f4565b9150509250929050565b6000806040838503121561373e5761373d614221565b5b600061374c858286016134b1565b925050602061375d8582860161358f565b9150509250929050565b60006020828403121561377d5761377c614221565b5b600082013567ffffffffffffffff81111561379b5761379a61421c565b5b6137a7848285016134c6565b91505092915050565b6000602082840312156137c6576137c5614221565b5b60006137d4848285016134f4565b91505092915050565b6000602082840312156137f3576137f2614221565b5b600061380184828501613509565b91505092915050565b6000602082840312156138205761381f614221565b5b600061382e8482850161351e565b91505092915050565b60006020828403121561384d5761384c614221565b5b600082013567ffffffffffffffff81111561386b5761386a61421c565b5b61387784828501613561565b91505092915050565b60006020828403121561389657613895614221565b5b60006138a48482850161358f565b91505092915050565b6138b681613f8f565b82525050565b6138c581613fa1565b82525050565b60006138d682613e37565b6138e08185613e4d565b93506138f0818560208601614012565b6138f981614226565b840191505092915050565b600061390f82613e42565b6139198185613e5e565b9350613929818560208601614012565b61393281614226565b840191505092915050565b600061394882613e42565b6139528185613e6f565b9350613962818560208601614012565b80840191505092915050565b600061397b602683613e5e565b915061398682614237565b604082019050919050565b600061399e601b83613e5e565b91506139a982614286565b602082019050919050565b60006139c1601a83613e5e565b91506139cc826142af565b602082019050919050565b60006139e4604183613e5e565b91506139ef826142d8565b606082019050919050565b6000613a07601783613e5e565b9150613a128261434d565b602082019050919050565b6000613a2a603283613e5e565b9150613a3582614376565b604082019050919050565b6000613a4d602883613e5e565b9150613a58826143c5565b604082019050919050565b6000613a70602183613e5e565b9150613a7b82614414565b604082019050919050565b6000613a93602083613e5e565b9150613a9e82614463565b602082019050919050565b6000613ab6602683613e5e565b9150613ac18261448c565b604082019050919050565b6000613ad9601f83613e5e565b9150613ae4826144db565b602082019050919050565b6000613afc601583613e5e565b9150613b0782614504565b602082019050919050565b613b1b81613ff9565b82525050565b6000613b2d828561393d565b9150613b39828461393d565b91508190509392505050565b6000602082019050613b5a60008301846138ad565b92915050565b6000608082019050613b7560008301876138ad565b613b8260208301866138ad565b613b8f6040830185613b12565b8181036060830152613ba181846138cb565b905095945050505050565b6000602082019050613bc160008301846138bc565b92915050565b60006020820190508181036000830152613be18184613904565b905092915050565b60006020820190508181036000830152613c028161396e565b9050919050565b60006020820190508181036000830152613c2281613991565b9050919050565b60006020820190508181036000830152613c42816139b4565b9050919050565b60006020820190508181036000830152613c62816139d7565b9050919050565b60006020820190508181036000830152613c82816139fa565b9050919050565b60006020820190508181036000830152613ca281613a1d565b9050919050565b60006020820190508181036000830152613cc281613a40565b9050919050565b60006020820190508181036000830152613ce281613a63565b9050919050565b60006020820190508181036000830152613d0281613a86565b9050919050565b60006020820190508181036000830152613d2281613aa9565b9050919050565b60006020820190508181036000830152613d4281613acc565b9050919050565b60006020820190508181036000830152613d6281613aef565b9050919050565b6000602082019050613d7e6000830184613b12565b92915050565b6000613d8e613d9f565b9050613d9a8282614077565b919050565b6000604051905090565b600067ffffffffffffffff821115613dc457613dc36141de565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613df057613def6141de565b5b613df982614226565b9050602081019050919050565b600067ffffffffffffffff821115613e2157613e206141de565b5b613e2a82614226565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e8582613ff9565b9150613e9083613ff9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ec557613ec4614122565b5b828201905092915050565b6000613edb82613ff9565b9150613ee683613ff9565b925082613ef657613ef5614151565b5b828204905092915050565b6000613f0c82613ff9565b9150613f1783613ff9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f5057613f4f614122565b5b828202905092915050565b6000613f6682613ff9565b9150613f7183613ff9565b925082821015613f8457613f83614122565b5b828203905092915050565b6000613f9a82613fd9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614030578082015181840152602081019050614015565b8381111561403f576000848401525b50505050565b6000600282049050600182168061405d57607f821691505b6020821081141561407157614070614180565b5b50919050565b61408082614226565b810181811067ffffffffffffffff8211171561409f5761409e6141de565b5b80604052505050565b60006140b382613ff9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140e6576140e5614122565b5b600182019050919050565b60006140fc82613ff9565b915061410783613ff9565b92508261411757614116614151565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f536166654d6174683a206469766973696f6e206279207a65726f000000000000600082015250565b7f596f75206861766520657863656564656420746865206d6178206e756d62657260008201527f206f66206d696e7461626c65204e46547320666f7220746869732077616c6c6560208201527f7400000000000000000000000000000000000000000000000000000000000000604082015250565b7f55736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f507572636861736520776f756c6420657863656564206d61782077686974656c60008201527f69737420737570706c79206f66206e6674730000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f66206e667473000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616e206f6e6c79206d696e74206365727461696e20746f6b656e732061742060008201527f612074696d650000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e74206e667400600082015250565b7f4e6f7420456e6f7567682045746865722053656e740000000000000000000000600082015250565b61453681613f8f565b811461454157600080fd5b50565b61454d81613fa1565b811461455857600080fd5b50565b61456481613fad565b811461456f57600080fd5b50565b61457b81613ff9565b811461458657600080fd5b5056fea2646970667358221220b28e86ed482871969385a0229f0dc0fe8b00452ab7266dd9bd85af2a9430fe4564736f6c63430008070033

Deployed Bytecode Sourcemap

51409:4483:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33934:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37319:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52914:1302;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38822:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38385:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52113:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39687:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51536:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54648:89;;;;;;;;;;;;;:::i;:::-;;52279:627;;;;;;;;;;;;;:::i;:::-;;39928:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54475:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37128:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34303:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29650:148;;;;;;;;;;;;;:::i;:::-;;54860:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51941:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51854;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28999:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51736:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37488:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55386:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51664:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51602:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39098:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52014:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33183:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55491:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54224:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55072:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51816:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51981:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40184:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37663:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39456:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51902:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29953:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51770:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51486:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33934:305;34036:4;34088:25;34073:40;;;:11;:40;;;;:105;;;;34145:33;34130:48;;;:11;:48;;;;34073:105;:158;;;;34195:36;34219:11;34195:23;:36::i;:::-;34073:158;34053:178;;33934:305;;;:::o;37319:100::-;37373:13;37406:5;37399:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37319:100;:::o;52914:1302::-;52984:12;;;;;;;;;;;52976:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;53063:11;;53051:8;:23;;53043:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;53159:9;53136:19;53146:8;53136:5;;:9;;:19;;;;:::i;:::-;:32;;53128:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;53262:17;;53250:8;53213:22;:34;53236:10;53213:34;;;;;;;;;;;;;;;;:45;;;;:::i;:::-;:66;;53205:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;53400:8;53362:22;:34;53385:10;53362:34;;;;;;;;;;;;;;;;:46;;;;;;;:::i;:::-;;;;;;;;53425:14;;;;;;;;;;;53422:663;;;53494:12;;53463:27;53481:8;53463:13;:11;:13::i;:::-;:17;;:27;;;;:::i;:::-;:43;;53455:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;53611:4;53584:31;;:11;:23;53596:10;53584:23;;;;;;;;;;;;;;;;;;;;;;;;;:31;;;53576:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;53422:663;;;53921:4;;;;;;;;;;;53918:167;;;53980:9;;53949:27;53967:8;53949:13;:11;:13::i;:::-;:17;;:27;;;;:::i;:::-;:40;;53941:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;53918:167;;;54065:8;;;53918:167;53422:663;54177:31;54187:10;54199:8;54177:9;:31::i;:::-;52914:1302;:::o;38822:204::-;38890:7;38915:16;38923:7;38915;:16::i;:::-;38910:64;;38940:34;;;;;;;;;;;;;;38910:64;38994:15;:24;39010:7;38994:24;;;;;;;;;;;;;;;;;;;;;38987:31;;38822:204;;;:::o;38385:371::-;38458:13;38474:24;38490:7;38474:15;:24::i;:::-;38458:40;;38519:5;38513:11;;:2;:11;;;38509:48;;;38533:24;;;;;;;;;;;;;;38509:48;38590:5;38574:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;38600:37;38617:5;38624:12;:10;:12::i;:::-;38600:16;:37::i;:::-;38599:38;38574:63;38570:138;;;38661:35;;;;;;;;;;;;;;38570:138;38720:28;38729:2;38733:7;38742:5;38720:8;:28::i;:::-;38447:309;38385:371;;:::o;52113:97::-;29230:12;:10;:12::i;:::-;29219:23;;:7;:5;:7::i;:::-;:23;;;29211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52195:7:::1;52181:11;:21;;;;52113:97:::0;:::o;39687:170::-;39821:28;39831:4;39837:2;39841:7;39821:9;:28::i;:::-;39687:170;;;:::o;51536:57::-;;;;;;;;;;;;;;;;;:::o;54648:89::-;29230:12;:10;:12::i;:::-;29219:23;;:7;:5;:7::i;:::-;:23;;;29211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54717:12:::1;;;;;;;;;;;54716:13;54701:12;;:28;;;;;;;;;;;;;;;;;;54648:89::o:0;52279:627::-;29230:12;:10;:12::i;:::-;29219:23;;:7;:5;:7::i;:::-;:23;;;29211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52327:12:::1;52342:21;52327:36;;52384:19;52414:42;52384:73;;52468:19;52498:42;52468:73;;52552:21;52584:42;52552:75;;52643:3;:12;;:74;52656:60;52694:21;52656:33;52668:20;52656:7;:11;;:33;;;;:::i;:::-;:37;;:60;;;;:::i;:::-;52643:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;52728:3;:12;;:74;52741:60;52779:21;52741:33;52753:20;52741:7;:11;;:33;;;;:::i;:::-;:37;;:60;;;;:::i;:::-;52728:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;52813:5;:14;;:75;52828:59;52865:21;52828:32;52840:19;52828:7;:11;;:32;;;;:::i;:::-;:36;;:59;;;;:::i;:::-;52813:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;52316:590;;;;52279:627::o:0;39928:185::-;40066:39;40083:4;40089:2;40093:7;40066:39;;;;;;;;;;;;:16;:39::i;:::-;39928:185;;;:::o;54475:98::-;29230:12;:10;:12::i;:::-;29219:23;;:7;:5;:7::i;:::-;:23;;;29211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54557:8:::1;54547:7;:18;;;;;;;;;;;;:::i;:::-;;54475:98:::0;:::o;37128:124::-;37192:7;37219:20;37231:7;37219:11;:20::i;:::-;:25;;;37212:32;;37128:124;;;:::o;34303:206::-;34367:7;34408:1;34391:19;;:5;:19;;;34387:60;;;34419:28;;;;;;;;;;;;;;34387:60;34473:12;:19;34486:5;34473:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;34465:36;;34458:43;;34303:206;;;:::o;29650:148::-;29230:12;:10;:12::i;:::-;29219:23;;:7;:5;:7::i;:::-;:23;;;29211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29757:1:::1;29720:40;;29741:6;;;;;;;;;;;29720:40;;;;;;;;;;;;29788:1;29771:6;;:19;;;;;;;;;;;;;;;;;;29650:148::o:0;54860:204::-;29230:12;:10;:12::i;:::-;29219:23;;:7;:5;:7::i;:::-;:23;;;29211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54948:9:::1;54943:114;54968:12;:19;54964:1;:23;54943:114;;;55041:4;55010:11;:28;55022:12;55035:1;55022:15;;;;;;;;:::i;:::-;;;;;;;;55010:28;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;54990:3;;;;;:::i;:::-;;;;54943:114;;;;54860:204:::0;:::o;51941:33::-;;;;;;;;;;;;;:::o;51854:::-;;;;:::o;28999:87::-;29045:7;29072:6;;;;;;;;;;;29065:13;;28999:87;:::o;51736:27::-;;;;:::o;37488:104::-;37544:13;37577:7;37570:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37488:104;:::o;55386:95::-;29230:12;:10;:12::i;:::-;29219:23;;:7;:5;:7::i;:::-;:23;;;29211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55468:5:::1;55451:14;;:22;;;;;;;;;;;;;;;;;;55386:95:::0;:::o;51664:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51602:40::-;;;;:::o;39098:287::-;39209:12;:10;:12::i;:::-;39197:24;;:8;:24;;;39193:54;;;39230:17;;;;;;;;;;;;;;39193:54;39305:8;39260:18;:32;39279:12;:10;:12::i;:::-;39260:32;;;;;;;;;;;;;;;:42;39293:8;39260:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;39358:8;39329:48;;39344:12;:10;:12::i;:::-;39329:48;;;39368:8;39329:48;;;;;;:::i;:::-;;;;;;;;39098:287;;:::o;52014:91::-;29230:12;:10;:12::i;:::-;29219:23;;:7;:5;:7::i;:::-;:23;;;29211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52089:8:::1;52081:5;:16;;;;52014:91:::0;:::o;33183:303::-;33227:7;33452:15;:13;:15::i;:::-;33437:12;;33421:13;;:28;:46;33414:53;;33183:303;:::o;55491:86::-;29230:12;:10;:12::i;:::-;29219:23;;:7;:5;:7::i;:::-;:23;;;29211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55564:5:::1;55557:4;;:12;;;;;;;;;;;;;;;;;;55491:86:::0;:::o;54224:239::-;29230:12;:10;:12::i;:::-;29219:23;;:7;:5;:7::i;:::-;:23;;;29211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54350:9:::1;;54318:28;54336:9;54318:13;:11;:13::i;:::-;:17;;:28;;;;:::i;:::-;:41;;54310:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;54425:30;54435:8;54445:9;54425;:30::i;:::-;54224:239:::0;;:::o;55072:210::-;29230:12;:10;:12::i;:::-;29219:23;;:7;:5;:7::i;:::-;:23;;;29211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55165:9:::1;55160:115;55185:12;:19;55181:1;:23;55160:115;;;55258:5;55227:11;:28;55239:12;55252:1;55239:15;;;;;;;;:::i;:::-;;;;;;;;55227:28;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;55207:3;;;;;:::i;:::-;;;;55160:115;;;;55072:210:::0;:::o;51816:31::-;;;;:::o;51981:24::-;;;;;;;;;;;;;:::o;40184:369::-;40351:28;40361:4;40367:2;40371:7;40351:9;:28::i;:::-;40394:15;:2;:13;;;:15::i;:::-;:76;;;;;40414:56;40445:4;40451:2;40455:7;40464:5;40414:30;:56::i;:::-;40413:57;40394:76;40390:156;;;40494:40;;;;;;;;;;;;;;40390:156;40184:369;;;;:::o;37663:318::-;37736:13;37767:16;37775:7;37767;:16::i;:::-;37762:59;;37792:29;;;;;;;;;;;;;;37762:59;37834:21;37858:10;:8;:10::i;:::-;37834:34;;37911:1;37892:7;37886:21;:26;;:87;;;;;;;;;;;;;;;;;37939:7;37948:18;:7;:16;:18::i;:::-;37922:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37886:87;37879:94;;;37663:318;;;:::o;39456:164::-;39553:4;39577:18;:25;39596:5;39577:25;;;;;;;;;;;;;;;:35;39603:8;39577:35;;;;;;;;;;;;;;;;;;;;;;;;;39570:42;;39456:164;;;;:::o;51902:32::-;;;;;;;;;;;;;:::o;29953:244::-;29230:12;:10;:12::i;:::-;29219:23;;:7;:5;:7::i;:::-;:23;;;29211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30062:1:::1;30042:22;;:8;:22;;;;30034:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30152:8;30123:38;;30144:6;;;;;;;;;;;30123:38;;;;;;;;;;;;30181:8;30172:6;;:17;;;;;;;;;;;;;;;;;;29953:244:::0;:::o;51770:37::-;;;;:::o;51486:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;27176:157::-;27261:4;27300:25;27285:40;;;:11;:40;;;;27278:47;;27176:157;;;:::o;3787:220::-;3845:7;3874:1;3869;:6;3865:20;;;3884:1;3877:8;;;;3865:20;3896:9;3912:1;3908;:5;;;;:::i;:::-;3896:17;;3941:1;3936;3932;:5;;;;:::i;:::-;:10;3924:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;3998:1;3991:8;;;3787:220;;;;;:::o;2908:179::-;2966:7;2986:9;3002:1;2998;:5;;;;:::i;:::-;2986:17;;3027:1;3022;:6;;3014:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;3078:1;3071:8;;;2908:179;;;;:::o;41003:104::-;41072:27;41082:2;41086:8;41072:27;;;;;;;;;;;;:9;:27::i;:::-;41003:104;;:::o;40808:187::-;40865:4;40908:7;40889:15;:13;:15::i;:::-;:26;;:53;;;;;40929:13;;40919:7;:23;40889:53;:98;;;;;40960:11;:20;40972:7;40960:20;;;;;;;;;;;:27;;;;;;;;;;;;40959:28;40889:98;40882:105;;40808:187;;;:::o;24279:98::-;24332:7;24359:10;24352:17;;24279:98;:::o;48419:196::-;48561:2;48534:15;:24;48550:7;48534:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;48599:7;48595:2;48579:28;;48588:5;48579:28;;;;;;;;;;;;48419:196;;;:::o;43921:2112::-;44036:35;44074:20;44086:7;44074:11;:20::i;:::-;44036:58;;44107:22;44149:13;:18;;;44133:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;44184:50;44201:13;:18;;;44221:12;:10;:12::i;:::-;44184:16;:50::i;:::-;44133:101;:154;;;;44275:12;:10;:12::i;:::-;44251:36;;:20;44263:7;44251:11;:20::i;:::-;:36;;;44133:154;44107:181;;44306:17;44301:66;;44332:35;;;;;;;;;;;;;;44301:66;44404:4;44382:26;;:13;:18;;;:26;;;44378:67;;44417:28;;;;;;;;;;;;;;44378:67;44474:1;44460:16;;:2;:16;;;44456:52;;;44485:23;;;;;;;;;;;;;;44456:52;44521:43;44543:4;44549:2;44553:7;44562:1;44521:21;:43::i;:::-;44629:49;44646:1;44650:7;44659:13;:18;;;44629:8;:49::i;:::-;45004:1;44974:12;:18;44987:4;44974:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45048:1;45020:12;:16;45033:2;45020:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45094:2;45066:11;:20;45078:7;45066:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;45156:15;45111:11;:20;45123:7;45111:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;45424:19;45456:1;45446:7;:11;45424:33;;45517:1;45476:43;;:11;:24;45488:11;45476:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;45472:445;;;45701:13;;45687:11;:27;45683:219;;;45771:13;:18;;;45739:11;:24;45751:11;45739:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;45854:13;:28;;;45812:11;:24;45824:11;45812:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;45683:219;45472:445;44949:979;45964:7;45960:2;45945:27;;45954:4;45945:27;;;;;;;;;;;;45983:42;46004:4;46010:2;46014:7;46023:1;45983:20;:42::i;:::-;44025:2008;;43921:2112;;;:::o;4485:153::-;4543:7;4575:1;4571;:5;4563:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;4629:1;4625;:5;;;;:::i;:::-;4618:12;;4485:153;;;;:::o;35958:1108::-;36019:21;;:::i;:::-;36053:12;36068:7;36053:22;;36136:4;36117:15;:13;:15::i;:::-;:23;;:47;;;;;36151:13;;36144:4;:20;36117:47;36113:886;;;36185:31;36219:11;:17;36231:4;36219:17;;;;;;;;;;;36185:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36260:9;:16;;;36255:729;;36331:1;36305:28;;:9;:14;;;:28;;;36301:101;;36369:9;36362:16;;;;;;36301:101;36704:261;36711:4;36704:261;;;36744:6;;;;;;;;36789:11;:17;36801:4;36789:17;;;;;;;;;;;36777:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36863:1;36837:28;;:9;:14;;;:28;;;36833:109;;36905:9;36898:16;;;;;;36833:109;36704:261;;;36255:729;36166:833;36113:886;37027:31;;;;;;;;;;;;;;35958:1108;;;;:::o;32907:92::-;32963:7;32907:92;:::o;16469:326::-;16529:4;16786:1;16764:7;:19;;;:23;16757:30;;16469:326;;;:::o;49107:667::-;49270:4;49307:2;49291:36;;;49328:12;:10;:12::i;:::-;49342:4;49348:7;49357:5;49291:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;49287:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49542:1;49525:6;:13;:18;49521:235;;;49571:40;;;;;;;;;;;;;;49521:235;49714:6;49708:13;49699:6;49695:2;49691:15;49684:38;49287:480;49420:45;;;49410:55;;;:6;:55;;;;49403:62;;;49107:667;;;;;;:::o;55787:100::-;55839:13;55872:7;55865:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55787:100;:::o;24719:723::-;24775:13;25005:1;24996:5;:10;24992:53;;;25023:10;;;;;;;;;;;;;;;;;;;;;24992:53;25055:12;25070:5;25055:20;;25086:14;25111:78;25126:1;25118:4;:9;25111:78;;25144:8;;;;;:::i;:::-;;;;25175:2;25167:10;;;;;:::i;:::-;;;25111:78;;;25199:19;25231:6;25221:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25199:39;;25249:154;25265:1;25256:5;:10;25249:154;;25293:1;25283:11;;;;;:::i;:::-;;;25360:2;25352:5;:10;;;;:::i;:::-;25339:2;:24;;;;:::i;:::-;25326:39;;25309:6;25316;25309:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;25389:2;25380:11;;;;;:::i;:::-;;;25249:154;;;25427:6;25413:21;;;;;24719:723;;;;:::o;41470:163::-;41593:32;41599:2;41603:8;41613:5;41620:4;41593:5;:32::i;:::-;41470:163;;;:::o;50422:159::-;;;;;:::o;51240:158::-;;;;;:::o;41892:1775::-;42031:20;42054:13;;42031:36;;42096:1;42082:16;;:2;:16;;;42078:48;;;42107:19;;;;;;;;;;;;;;42078:48;42153:1;42141:8;:13;42137:44;;;42163:18;;;;;;;;;;;;;;42137:44;42194:61;42224:1;42228:2;42232:12;42246:8;42194:21;:61::i;:::-;42567:8;42532:12;:16;42545:2;42532:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42631:8;42591:12;:16;42604:2;42591:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42690:2;42657:11;:25;42669:12;42657:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;42757:15;42707:11;:25;42719:12;42707:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;42790:20;42813:12;42790:35;;42840:11;42869:8;42854:12;:23;42840:37;;42898:4;:23;;;;;42906:15;:2;:13;;;:15::i;:::-;42898:23;42894:641;;;42942:314;42998:12;42994:2;42973:38;;42990:1;42973:38;;;;;;;;;;;;43039:69;43078:1;43082:2;43086:14;;;;;;43102:5;43039:30;:69::i;:::-;43034:174;;43144:40;;;;;;;;;;;;;;43034:174;43251:3;43235:12;:19;;42942:314;;43337:12;43320:13;;:29;43316:43;;43351:8;;;43316:43;42894:641;;;43400:120;43456:14;;;;;;43452:2;43431:40;;43448:1;43431:40;;;;;;;;;;;;43515:3;43499:12;:19;;43400:120;;42894:641;43565:12;43549:13;:28;;;;42507:1082;;43599:60;43628:1;43632:2;43636:12;43650:8;43599:20;:60::i;:::-;42020:1647;41892:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2924:340::-;2980:5;3029:3;3022:4;3014:6;3010:17;3006:27;2996:122;;3037:79;;:::i;:::-;2996:122;3154:6;3141:20;3179:79;3254:3;3246:6;3239:4;3231:6;3227:17;3179:79;:::i;:::-;3170:88;;2986:278;2924:340;;;;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:329::-;3474:6;3523:2;3511:9;3502:7;3498:23;3494:32;3491:119;;;3529:79;;:::i;:::-;3491:119;3649:1;3674:53;3719:7;3710:6;3699:9;3695:22;3674:53;:::i;:::-;3664:63;;3620:117;3415:329;;;;:::o;3750:474::-;3818:6;3826;3875:2;3863:9;3854:7;3850:23;3846:32;3843:119;;;3881:79;;:::i;:::-;3843:119;4001:1;4026:53;4071:7;4062:6;4051:9;4047:22;4026:53;:::i;:::-;4016:63;;3972:117;4128:2;4154:53;4199:7;4190:6;4179:9;4175:22;4154:53;:::i;:::-;4144:63;;4099:118;3750:474;;;;;:::o;4230:619::-;4307:6;4315;4323;4372:2;4360:9;4351:7;4347:23;4343:32;4340:119;;;4378:79;;:::i;:::-;4340:119;4498:1;4523:53;4568:7;4559:6;4548:9;4544:22;4523:53;:::i;:::-;4513:63;;4469:117;4625:2;4651:53;4696:7;4687:6;4676:9;4672:22;4651:53;:::i;:::-;4641:63;;4596:118;4753:2;4779:53;4824:7;4815:6;4804:9;4800:22;4779:53;:::i;:::-;4769:63;;4724:118;4230:619;;;;;:::o;4855:943::-;4950:6;4958;4966;4974;5023:3;5011:9;5002:7;4998:23;4994:33;4991:120;;;5030:79;;:::i;:::-;4991:120;5150:1;5175:53;5220:7;5211:6;5200:9;5196:22;5175:53;:::i;:::-;5165:63;;5121:117;5277:2;5303:53;5348:7;5339:6;5328:9;5324:22;5303:53;:::i;:::-;5293:63;;5248:118;5405:2;5431:53;5476:7;5467:6;5456:9;5452:22;5431:53;:::i;:::-;5421:63;;5376:118;5561:2;5550:9;5546:18;5533:32;5592:18;5584:6;5581:30;5578:117;;;5614:79;;:::i;:::-;5578:117;5719:62;5773:7;5764:6;5753:9;5749:22;5719:62;:::i;:::-;5709:72;;5504:287;4855:943;;;;;;;:::o;5804:468::-;5869:6;5877;5926:2;5914:9;5905:7;5901:23;5897:32;5894:119;;;5932:79;;:::i;:::-;5894:119;6052:1;6077:53;6122:7;6113:6;6102:9;6098:22;6077:53;:::i;:::-;6067:63;;6023:117;6179:2;6205:50;6247:7;6238:6;6227:9;6223:22;6205:50;:::i;:::-;6195:60;;6150:115;5804:468;;;;;:::o;6278:474::-;6346:6;6354;6403:2;6391:9;6382:7;6378:23;6374:32;6371:119;;;6409:79;;:::i;:::-;6371:119;6529:1;6554:53;6599:7;6590:6;6579:9;6575:22;6554:53;:::i;:::-;6544:63;;6500:117;6656:2;6682:53;6727:7;6718:6;6707:9;6703:22;6682:53;:::i;:::-;6672:63;;6627:118;6278:474;;;;;:::o;6758:539::-;6842:6;6891:2;6879:9;6870:7;6866:23;6862:32;6859:119;;;6897:79;;:::i;:::-;6859:119;7045:1;7034:9;7030:17;7017:31;7075:18;7067:6;7064:30;7061:117;;;7097:79;;:::i;:::-;7061:117;7202:78;7272:7;7263:6;7252:9;7248:22;7202:78;:::i;:::-;7192:88;;6988:302;6758:539;;;;:::o;7303:323::-;7359:6;7408:2;7396:9;7387:7;7383:23;7379:32;7376:119;;;7414:79;;:::i;:::-;7376:119;7534:1;7559:50;7601:7;7592:6;7581:9;7577:22;7559:50;:::i;:::-;7549:60;;7505:114;7303:323;;;;:::o;7632:327::-;7690:6;7739:2;7727:9;7718:7;7714:23;7710:32;7707:119;;;7745:79;;:::i;:::-;7707:119;7865:1;7890:52;7934:7;7925:6;7914:9;7910:22;7890:52;:::i;:::-;7880:62;;7836:116;7632:327;;;;:::o;7965:349::-;8034:6;8083:2;8071:9;8062:7;8058:23;8054:32;8051:119;;;8089:79;;:::i;:::-;8051:119;8209:1;8234:63;8289:7;8280:6;8269:9;8265:22;8234:63;:::i;:::-;8224:73;;8180:127;7965:349;;;;:::o;8320:509::-;8389:6;8438:2;8426:9;8417:7;8413:23;8409:32;8406:119;;;8444:79;;:::i;:::-;8406:119;8592:1;8581:9;8577:17;8564:31;8622:18;8614:6;8611:30;8608:117;;;8644:79;;:::i;:::-;8608:117;8749:63;8804:7;8795:6;8784:9;8780:22;8749:63;:::i;:::-;8739:73;;8535:287;8320:509;;;;:::o;8835:329::-;8894:6;8943:2;8931:9;8922:7;8918:23;8914:32;8911:119;;;8949:79;;:::i;:::-;8911:119;9069:1;9094:53;9139:7;9130:6;9119:9;9115:22;9094:53;:::i;:::-;9084:63;;9040:117;8835:329;;;;:::o;9170:118::-;9257:24;9275:5;9257:24;:::i;:::-;9252:3;9245:37;9170:118;;:::o;9294:109::-;9375:21;9390:5;9375:21;:::i;:::-;9370:3;9363:34;9294:109;;:::o;9409:360::-;9495:3;9523:38;9555:5;9523:38;:::i;:::-;9577:70;9640:6;9635:3;9577:70;:::i;:::-;9570:77;;9656:52;9701:6;9696:3;9689:4;9682:5;9678:16;9656:52;:::i;:::-;9733:29;9755:6;9733:29;:::i;:::-;9728:3;9724:39;9717:46;;9499:270;9409:360;;;;:::o;9775:364::-;9863:3;9891:39;9924:5;9891:39;:::i;:::-;9946:71;10010:6;10005:3;9946:71;:::i;:::-;9939:78;;10026:52;10071:6;10066:3;10059:4;10052:5;10048:16;10026:52;:::i;:::-;10103:29;10125:6;10103:29;:::i;:::-;10098:3;10094:39;10087:46;;9867:272;9775:364;;;;:::o;10145:377::-;10251:3;10279:39;10312:5;10279:39;:::i;:::-;10334:89;10416:6;10411:3;10334:89;:::i;:::-;10327:96;;10432:52;10477:6;10472:3;10465:4;10458:5;10454:16;10432:52;:::i;:::-;10509:6;10504:3;10500:16;10493:23;;10255:267;10145:377;;;;:::o;10528:366::-;10670:3;10691:67;10755:2;10750:3;10691:67;:::i;:::-;10684:74;;10767:93;10856:3;10767:93;:::i;:::-;10885:2;10880:3;10876:12;10869:19;;10528:366;;;:::o;10900:::-;11042:3;11063:67;11127:2;11122:3;11063:67;:::i;:::-;11056:74;;11139:93;11228:3;11139:93;:::i;:::-;11257:2;11252:3;11248:12;11241:19;;10900:366;;;:::o;11272:::-;11414:3;11435:67;11499:2;11494:3;11435:67;:::i;:::-;11428:74;;11511:93;11600:3;11511:93;:::i;:::-;11629:2;11624:3;11620:12;11613:19;;11272:366;;;:::o;11644:::-;11786:3;11807:67;11871:2;11866:3;11807:67;:::i;:::-;11800:74;;11883:93;11972:3;11883:93;:::i;:::-;12001:2;11996:3;11992:12;11985:19;;11644:366;;;:::o;12016:::-;12158:3;12179:67;12243:2;12238:3;12179:67;:::i;:::-;12172:74;;12255:93;12344:3;12255:93;:::i;:::-;12373:2;12368:3;12364:12;12357:19;;12016:366;;;:::o;12388:::-;12530:3;12551:67;12615:2;12610:3;12551:67;:::i;:::-;12544:74;;12627:93;12716:3;12627:93;:::i;:::-;12745:2;12740:3;12736:12;12729:19;;12388:366;;;:::o;12760:::-;12902:3;12923:67;12987:2;12982:3;12923:67;:::i;:::-;12916:74;;12999:93;13088:3;12999:93;:::i;:::-;13117:2;13112:3;13108:12;13101:19;;12760:366;;;:::o;13132:::-;13274:3;13295:67;13359:2;13354:3;13295:67;:::i;:::-;13288:74;;13371:93;13460:3;13371:93;:::i;:::-;13489:2;13484:3;13480:12;13473:19;;13132:366;;;:::o;13504:::-;13646:3;13667:67;13731:2;13726:3;13667:67;:::i;:::-;13660:74;;13743:93;13832:3;13743:93;:::i;:::-;13861:2;13856:3;13852:12;13845:19;;13504:366;;;:::o;13876:::-;14018:3;14039:67;14103:2;14098:3;14039:67;:::i;:::-;14032:74;;14115:93;14204:3;14115:93;:::i;:::-;14233:2;14228:3;14224:12;14217:19;;13876:366;;;:::o;14248:::-;14390:3;14411:67;14475:2;14470:3;14411:67;:::i;:::-;14404:74;;14487:93;14576:3;14487:93;:::i;:::-;14605:2;14600:3;14596:12;14589:19;;14248:366;;;:::o;14620:::-;14762:3;14783:67;14847:2;14842:3;14783:67;:::i;:::-;14776:74;;14859:93;14948:3;14859:93;:::i;:::-;14977:2;14972:3;14968:12;14961:19;;14620:366;;;:::o;14992:118::-;15079:24;15097:5;15079:24;:::i;:::-;15074:3;15067:37;14992:118;;:::o;15116:435::-;15296:3;15318:95;15409:3;15400:6;15318:95;:::i;:::-;15311:102;;15430:95;15521:3;15512:6;15430:95;:::i;:::-;15423:102;;15542:3;15535:10;;15116:435;;;;;:::o;15557:222::-;15650:4;15688:2;15677:9;15673:18;15665:26;;15701:71;15769:1;15758:9;15754:17;15745:6;15701:71;:::i;:::-;15557:222;;;;:::o;15785:640::-;15980:4;16018:3;16007:9;16003:19;15995:27;;16032:71;16100:1;16089:9;16085:17;16076:6;16032:71;:::i;:::-;16113:72;16181:2;16170:9;16166:18;16157:6;16113:72;:::i;:::-;16195;16263:2;16252:9;16248:18;16239:6;16195:72;:::i;:::-;16314:9;16308:4;16304:20;16299:2;16288:9;16284:18;16277:48;16342:76;16413:4;16404:6;16342:76;:::i;:::-;16334:84;;15785:640;;;;;;;:::o;16431:210::-;16518:4;16556:2;16545:9;16541:18;16533:26;;16569:65;16631:1;16620:9;16616:17;16607:6;16569:65;:::i;:::-;16431:210;;;;:::o;16647:313::-;16760:4;16798:2;16787:9;16783:18;16775:26;;16847:9;16841:4;16837:20;16833:1;16822:9;16818:17;16811:47;16875:78;16948:4;16939:6;16875:78;:::i;:::-;16867:86;;16647:313;;;;:::o;16966:419::-;17132:4;17170:2;17159:9;17155:18;17147:26;;17219:9;17213:4;17209:20;17205:1;17194:9;17190:17;17183:47;17247:131;17373:4;17247:131;:::i;:::-;17239:139;;16966:419;;;:::o;17391:::-;17557:4;17595:2;17584:9;17580:18;17572:26;;17644:9;17638:4;17634:20;17630:1;17619:9;17615:17;17608:47;17672:131;17798:4;17672:131;:::i;:::-;17664:139;;17391:419;;;:::o;17816:::-;17982:4;18020:2;18009:9;18005:18;17997:26;;18069:9;18063:4;18059:20;18055:1;18044:9;18040:17;18033:47;18097:131;18223:4;18097:131;:::i;:::-;18089:139;;17816:419;;;:::o;18241:::-;18407:4;18445:2;18434:9;18430:18;18422:26;;18494:9;18488:4;18484:20;18480:1;18469:9;18465:17;18458:47;18522:131;18648:4;18522:131;:::i;:::-;18514:139;;18241:419;;;:::o;18666:::-;18832:4;18870:2;18859:9;18855:18;18847:26;;18919:9;18913:4;18909:20;18905:1;18894:9;18890:17;18883:47;18947:131;19073:4;18947:131;:::i;:::-;18939:139;;18666:419;;;:::o;19091:::-;19257:4;19295:2;19284:9;19280:18;19272:26;;19344:9;19338:4;19334:20;19330:1;19319:9;19315:17;19308:47;19372:131;19498:4;19372:131;:::i;:::-;19364:139;;19091:419;;;:::o;19516:::-;19682:4;19720:2;19709:9;19705:18;19697:26;;19769:9;19763:4;19759:20;19755:1;19744:9;19740:17;19733:47;19797:131;19923:4;19797:131;:::i;:::-;19789:139;;19516:419;;;:::o;19941:::-;20107:4;20145:2;20134:9;20130:18;20122:26;;20194:9;20188:4;20184:20;20180:1;20169:9;20165:17;20158:47;20222:131;20348:4;20222:131;:::i;:::-;20214:139;;19941:419;;;:::o;20366:::-;20532:4;20570:2;20559:9;20555:18;20547:26;;20619:9;20613:4;20609:20;20605:1;20594:9;20590:17;20583:47;20647:131;20773:4;20647:131;:::i;:::-;20639:139;;20366:419;;;:::o;20791:::-;20957:4;20995:2;20984:9;20980:18;20972:26;;21044:9;21038:4;21034:20;21030:1;21019:9;21015:17;21008:47;21072:131;21198:4;21072:131;:::i;:::-;21064:139;;20791:419;;;:::o;21216:::-;21382:4;21420:2;21409:9;21405:18;21397:26;;21469:9;21463:4;21459:20;21455:1;21444:9;21440:17;21433:47;21497:131;21623:4;21497:131;:::i;:::-;21489:139;;21216:419;;;:::o;21641:::-;21807:4;21845:2;21834:9;21830:18;21822:26;;21894:9;21888:4;21884:20;21880:1;21869:9;21865:17;21858:47;21922:131;22048:4;21922:131;:::i;:::-;21914:139;;21641:419;;;:::o;22066:222::-;22159:4;22197:2;22186:9;22182:18;22174:26;;22210:71;22278:1;22267:9;22263:17;22254:6;22210:71;:::i;:::-;22066:222;;;;:::o;22294:129::-;22328:6;22355:20;;:::i;:::-;22345:30;;22384:33;22412:4;22404:6;22384:33;:::i;:::-;22294:129;;;:::o;22429:75::-;22462:6;22495:2;22489:9;22479:19;;22429:75;:::o;22510:311::-;22587:4;22677:18;22669:6;22666:30;22663:56;;;22699:18;;:::i;:::-;22663:56;22749:4;22741:6;22737:17;22729:25;;22809:4;22803;22799:15;22791:23;;22510:311;;;:::o;22827:307::-;22888:4;22978:18;22970:6;22967:30;22964:56;;;23000:18;;:::i;:::-;22964:56;23038:29;23060:6;23038:29;:::i;:::-;23030:37;;23122:4;23116;23112:15;23104:23;;22827:307;;;:::o;23140:308::-;23202:4;23292:18;23284:6;23281:30;23278:56;;;23314:18;;:::i;:::-;23278:56;23352:29;23374:6;23352:29;:::i;:::-;23344:37;;23436:4;23430;23426:15;23418:23;;23140:308;;;:::o;23454:98::-;23505:6;23539:5;23533:12;23523:22;;23454:98;;;:::o;23558:99::-;23610:6;23644:5;23638:12;23628:22;;23558:99;;;:::o;23663:168::-;23746:11;23780:6;23775:3;23768:19;23820:4;23815:3;23811:14;23796:29;;23663:168;;;;:::o;23837:169::-;23921:11;23955:6;23950:3;23943:19;23995:4;23990:3;23986:14;23971:29;;23837:169;;;;:::o;24012:148::-;24114:11;24151:3;24136:18;;24012:148;;;;:::o;24166:305::-;24206:3;24225:20;24243:1;24225:20;:::i;:::-;24220:25;;24259:20;24277:1;24259:20;:::i;:::-;24254:25;;24413:1;24345:66;24341:74;24338:1;24335:81;24332:107;;;24419:18;;:::i;:::-;24332:107;24463:1;24460;24456:9;24449:16;;24166:305;;;;:::o;24477:185::-;24517:1;24534:20;24552:1;24534:20;:::i;:::-;24529:25;;24568:20;24586:1;24568:20;:::i;:::-;24563:25;;24607:1;24597:35;;24612:18;;:::i;:::-;24597:35;24654:1;24651;24647:9;24642:14;;24477:185;;;;:::o;24668:348::-;24708:7;24731:20;24749:1;24731:20;:::i;:::-;24726:25;;24765:20;24783:1;24765:20;:::i;:::-;24760:25;;24953:1;24885:66;24881:74;24878:1;24875:81;24870:1;24863:9;24856:17;24852:105;24849:131;;;24960:18;;:::i;:::-;24849:131;25008:1;25005;25001:9;24990:20;;24668:348;;;;:::o;25022:191::-;25062:4;25082:20;25100:1;25082:20;:::i;:::-;25077:25;;25116:20;25134:1;25116:20;:::i;:::-;25111:25;;25155:1;25152;25149:8;25146:34;;;25160:18;;:::i;:::-;25146:34;25205:1;25202;25198:9;25190:17;;25022:191;;;;:::o;25219:96::-;25256:7;25285:24;25303:5;25285:24;:::i;:::-;25274:35;;25219:96;;;:::o;25321:90::-;25355:7;25398:5;25391:13;25384:21;25373:32;;25321:90;;;:::o;25417:149::-;25453:7;25493:66;25486:5;25482:78;25471:89;;25417:149;;;:::o;25572:126::-;25609:7;25649:42;25642:5;25638:54;25627:65;;25572:126;;;:::o;25704:77::-;25741:7;25770:5;25759:16;;25704:77;;;:::o;25787:154::-;25871:6;25866:3;25861;25848:30;25933:1;25924:6;25919:3;25915:16;25908:27;25787:154;;;:::o;25947:307::-;26015:1;26025:113;26039:6;26036:1;26033:13;26025:113;;;26124:1;26119:3;26115:11;26109:18;26105:1;26100:3;26096:11;26089:39;26061:2;26058:1;26054:10;26049:15;;26025:113;;;26156:6;26153:1;26150:13;26147:101;;;26236:1;26227:6;26222:3;26218:16;26211:27;26147:101;25996:258;25947:307;;;:::o;26260:320::-;26304:6;26341:1;26335:4;26331:12;26321:22;;26388:1;26382:4;26378:12;26409:18;26399:81;;26465:4;26457:6;26453:17;26443:27;;26399:81;26527:2;26519:6;26516:14;26496:18;26493:38;26490:84;;;26546:18;;:::i;:::-;26490:84;26311:269;26260:320;;;:::o;26586:281::-;26669:27;26691:4;26669:27;:::i;:::-;26661:6;26657:40;26799:6;26787:10;26784:22;26763:18;26751:10;26748:34;26745:62;26742:88;;;26810:18;;:::i;:::-;26742:88;26850:10;26846:2;26839:22;26629:238;26586:281;;:::o;26873:233::-;26912:3;26935:24;26953:5;26935:24;:::i;:::-;26926:33;;26981:66;26974:5;26971:77;26968:103;;;27051:18;;:::i;:::-;26968:103;27098:1;27091:5;27087:13;27080:20;;26873:233;;;:::o;27112:176::-;27144:1;27161:20;27179:1;27161:20;:::i;:::-;27156:25;;27195:20;27213:1;27195:20;:::i;:::-;27190:25;;27234:1;27224:35;;27239:18;;:::i;:::-;27224:35;27280:1;27277;27273:9;27268:14;;27112:176;;;;:::o;27294:180::-;27342:77;27339:1;27332:88;27439:4;27436:1;27429:15;27463:4;27460:1;27453:15;27480:180;27528:77;27525:1;27518:88;27625:4;27622:1;27615:15;27649:4;27646:1;27639:15;27666:180;27714:77;27711:1;27704:88;27811:4;27808:1;27801:15;27835:4;27832:1;27825:15;27852:180;27900:77;27897:1;27890:88;27997:4;27994:1;27987:15;28021:4;28018:1;28011:15;28038:180;28086:77;28083:1;28076:88;28183:4;28180:1;28173:15;28207:4;28204:1;28197:15;28224:117;28333:1;28330;28323:12;28347:117;28456:1;28453;28446:12;28470:117;28579:1;28576;28569:12;28593:117;28702:1;28699;28692:12;28716:117;28825:1;28822;28815:12;28839:102;28880:6;28931:2;28927:7;28922:2;28915:5;28911:14;28907:28;28897:38;;28839:102;;;:::o;28947:225::-;29087:34;29083:1;29075:6;29071:14;29064:58;29156:8;29151:2;29143:6;29139:15;29132:33;28947:225;:::o;29178:177::-;29318:29;29314:1;29306:6;29302:14;29295:53;29178:177;:::o;29361:176::-;29501:28;29497:1;29489:6;29485:14;29478:52;29361:176;:::o;29543:289::-;29683:34;29679:1;29671:6;29667:14;29660:58;29752:34;29747:2;29739:6;29735:15;29728:59;29821:3;29816:2;29808:6;29804:15;29797:28;29543:289;:::o;29838:173::-;29978:25;29974:1;29966:6;29962:14;29955:49;29838:173;:::o;30017:237::-;30157:34;30153:1;30145:6;30141:14;30134:58;30226:20;30221:2;30213:6;30209:15;30202:45;30017:237;:::o;30260:227::-;30400:34;30396:1;30388:6;30384:14;30377:58;30469:10;30464:2;30456:6;30452:15;30445:35;30260:227;:::o;30493:220::-;30633:34;30629:1;30621:6;30617:14;30610:58;30702:3;30697:2;30689:6;30685:15;30678:28;30493:220;:::o;30719:182::-;30859:34;30855:1;30847:6;30843:14;30836:58;30719:182;:::o;30907:225::-;31047:34;31043:1;31035:6;31031:14;31024:58;31116:8;31111:2;31103:6;31099:15;31092:33;30907:225;:::o;31138:181::-;31278:33;31274:1;31266:6;31262:14;31255:57;31138:181;:::o;31325:171::-;31465:23;31461:1;31453:6;31449:14;31442:47;31325:171;:::o;31502:122::-;31575:24;31593:5;31575:24;:::i;:::-;31568:5;31565:35;31555:63;;31614:1;31611;31604:12;31555:63;31502:122;:::o;31630:116::-;31700:21;31715:5;31700:21;:::i;:::-;31693:5;31690:32;31680:60;;31736:1;31733;31726:12;31680:60;31630:116;:::o;31752:120::-;31824:23;31841:5;31824:23;:::i;:::-;31817:5;31814:34;31804:62;;31862:1;31859;31852:12;31804:62;31752:120;:::o;31878:122::-;31951:24;31969:5;31951:24;:::i;:::-;31944:5;31941:35;31931:63;;31990:1;31987;31980:12;31931:63;31878:122;:::o

Swarm Source

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