ETH Price: $3,230.37 (-0.42%)

Token

The Gnarwhals (Gnar)
 

Overview

Max Total Supply

275 Gnar

Holders

87

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Gnar
0x2a488bdaeaa3ea6d3f31dd6da995e511d644fbf5
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:
TheGnarwhals

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;









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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal _nextTokenId;

    // 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_;
        _nextTokenId = 1;
    }

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert('ERC721A: unable to get token of owner by index');
    }

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

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        for (uint256 curr = tokenId; ; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @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) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

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

    /**
     * @dev Base URI for computing {tokenURI}. 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);
        require(to != owner, 'ERC721A: approval to current owner');

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _nextTokenId;
        require(to != address(0), 'ERC721A: mint to the zero address');
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), 'ERC721A: token already minted');
        require(quantity > 0, 'ERC721A: quantity must be greater 0');

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                'ERC721A: transfer to non ERC721Receiver implementer'
            );
            updatedIndex++;
        }

        _nextTokenId = 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 ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _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.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, 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)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp);
            }
        }

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

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}


pragma solidity ^0.8.0;

contract TheGnarwhals is ERC721A, Ownable {
  using Strings for uint256;
  address public contractOwner;
  uint256 public presalePrice = 0.04 ether;
  uint256 public mintPrice = 0.04 ether;
  uint256 public supply = 1111;
  string private baseURI = "https://thegnarwhals.io/api/nft/";
  bytes32 public whaleMerkleRoot;
  bytes32 public ogMerkleRoot;
  uint8 public phase = 1;
  uint8 public maxBuy = 10;
  uint8 public ogMax = 4;
  uint8 public whalelistMax = 3;

  mapping(address => uint8)  public walletBuys;

  constructor() ERC721A("The Gnarwhals", "Gnar") {
    contractOwner = msg.sender;
  }

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

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

  function mintForAddress(address[] calldata _addresses, uint256 quantity) public onlyOwner {
    for (uint i=0; i<_addresses.length; i++) {
      _safeMint(_addresses[i], quantity);
    }
  }

  function mint(uint256 quantity) external payable {
    require(phase >= 2, "Sale has not started");
    require(totalSupply() + quantity <= supply, "You can't mint more then the total supply");
    require(walletBuys[msg.sender] + quantity <= maxBuy, "Buy limit reached");
    require(msg.value >= mintPrice * quantity, "Insufficient funds");

    _safeMint(msg.sender, quantity);
  }

  function whaleListMint(uint8 _mintAmount, bytes32[] calldata _merkleProof) public payable {
    // Verify whalelist requirements
    require(phase == 1, "Sale has not started");
    require(totalSupply() + _mintAmount <= supply, "You can't mint more then the total supply");
    require(walletBuys[msg.sender] + _mintAmount <= whalelistMax, "Max presale minted for this wallet!");
    require(msg.value >= presalePrice * _mintAmount, "Insufficient funds");
    
    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
    require(MerkleProof.verify(_merkleProof, whaleMerkleRoot, leaf), "Invalid proof!");

    walletBuys[msg.sender] += _mintAmount;
    _safeMint(msg.sender, _mintAmount);
  }

    function ogMint(uint8 _mintAmount, bytes32[] calldata _merkleProof) public payable {
    // Verify OGList requirements
    require(phase == 1, "Sale has not started");
    require(totalSupply() + _mintAmount <= supply, "You can't mint more then the total supply");
    require(walletBuys[msg.sender] + _mintAmount <= ogMax, "Max presale minted for this wallet!");
    require(msg.value >= presalePrice * _mintAmount, "Insufficient funds");
    
    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
    require(MerkleProof.verify(_merkleProof, ogMerkleRoot, leaf), "Invalid proof!");

    if(walletBuys[msg.sender] == 0) {
        _mintAmount++;
    }

    walletBuys[msg.sender] += _mintAmount;
    _safeMint(msg.sender, _mintAmount);
  }

  function getBaseURI() public view returns (string memory) {
    return baseURI;
  }

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

  function setBaseURI(string memory baseURI_) external onlyOwner {
    baseURI = baseURI_;
  }

  function setMintPrice (uint256 _newPrice) external onlyOwner {
    mintPrice = _newPrice;
  }

  function setPresalePrice (uint256 _newPrice) external onlyOwner {
    presalePrice = _newPrice;
  }

  function setPhase(uint8 _phase) public onlyOwner {
    phase = _phase;
  }

  function setMaxBuy(uint8 _maxBuy) external onlyOwner {
      maxBuy = _maxBuy;
  }

  function updateSupply(uint256 _supply) external onlyOwner {
      supply = _supply;
  }

  function changeWhaleRootHash(bytes32 _rootHash) external onlyOwner {
    whaleMerkleRoot = _rootHash;
  }

  function changeOGRootHash(bytes32 _rootHash) external onlyOwner {
    ogMerkleRoot = _rootHash;
  }

  function getContractBalance () external view onlyOwner returns (uint256) {
    return address(this).balance;
  }

  function changeTreasury(address payable _newWallet) external onlyOwner {
    contractOwner = _newWallet;
  }

  function withdraw() external payable onlyOwner {
    (bool os, ) = payable(contractOwner).call{value: address(this).balance}("");
    require(os);
  }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"bytes32","name":"_rootHash","type":"bytes32"}],"name":"changeOGRootHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_newWallet","type":"address"}],"name":"changeTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_rootHash","type":"bytes32"}],"name":"changeWhaleRootHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuy","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogMax","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"ogMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"uint8","name":"_maxBuy","type":"uint8"}],"name":"setMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_phase","type":"uint8"}],"name":"setPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"updateSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletBuys","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whaleListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whaleMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whalelistMax","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

668e1bc9bf0400006009819055600a55610457600b5560c0604052602060808190527f68747470733a2f2f746865676e61727768616c732e696f2f6170692f6e66742f60a09081526200005691600c91906200015c565b50600f805463ffffffff19166303040a011790553480156200007757600080fd5b50604080518082018252600d81526c54686520476e61727768616c7360981b60208083019182528351808501909452600484526323b730b960e11b908401528151919291620000c9916001916200015c565b508051620000df9060029060208401906200015c565b5050600160005550620000f2336200010a565b600880546001600160a01b031916331790556200023f565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200016a9062000202565b90600052602060002090601f0160209004810192826200018e5760008555620001d9565b82601f10620001a957805160ff1916838001178555620001d9565b82800160010185558215620001d9579182015b82811115620001d9578251825591602001919060010190620001bc565b50620001e7929150620001eb565b5090565b5b80821115620001e75760008155600101620001ec565b600181811c908216806200021757607f821691505b602082108114156200023957634e487b7160e01b600052602260045260246000fd5b50919050565b612b8c806200024f6000396000f3fe60806040526004361061027c5760003560e01c806370db69d61161014f578063b14f2a39116100c1578063dbdf2dc01161007a578063dbdf2dc014610722578063dea96c9814610742578063dfcf15b014610772578063e985e9c514610792578063f2fde38b146107db578063f4a0a528146107fb57600080fd5b8063b14f2a3914610668578063b1c9fe6e14610688578063b88d4fde146106a2578063c03afb59146106c2578063c87b56dd146106e2578063ce606ee01461070257600080fd5b80638da5cb5b116101135780638da5cb5b146105cb57806394c645a8146105e957806395601e111461060a57806395d89b4114610620578063a0712d6814610635578063a22cb4651461064857600080fd5b806370db69d61461053d578063714c53981461056e578063715018a614610583578063842e481c1461059857806387abdc2a146105ab57600080fd5b80633549345e116101f35780635ae1250b116101ac5780635ae1250b146104925780636352211e146104b25780636817c76c146104d25780636bd08049146104e85780636f9fb98a1461050857806370a082311461051d57600080fd5b80633549345e146103f75780633ccfd60b1461041757806342842e0e1461041f5780634f6ccce71461043f57806355f804b31461045f5780635a3f3b571461047f57600080fd5b8063095ea7b311610245578063095ea7b31461034a5780630a3025301461036c578063162043871461038257806318160ddd146103a257806323b872dd146103b75780632f745c59146103d757600080fd5b80620e7fa81461028157806301ffc9a7146102aa578063047fc9aa146102da57806306fdde03146102f0578063081812fc14610312575b600080fd5b34801561028d57600080fd5b5061029760095481565b6040519081526020015b60405180910390f35b3480156102b657600080fd5b506102ca6102c53660046125a2565b61081b565b60405190151581526020016102a1565b3480156102e657600080fd5b50610297600b5481565b3480156102fc57600080fd5b50610305610888565b6040516102a191906127d3565b34801561031e57600080fd5b5061033261032d366004612589565b61091a565b6040516001600160a01b0390911681526020016102a1565b34801561035657600080fd5b5061036a610365366004612511565b6109aa565b005b34801561037857600080fd5b50610297600e5481565b34801561038e57600080fd5b5061036a61039d366004612589565b610ac2565b3480156103ae57600080fd5b50610297610af1565b3480156103c357600080fd5b5061036a6103d236600461241d565b610b07565b3480156103e357600080fd5b506102976103f2366004612511565b610b12565b34801561040357600080fd5b5061036a610412366004612589565b610c8a565b61036a610cb9565b34801561042b57600080fd5b5061036a61043a36600461241d565b610d46565b34801561044b57600080fd5b5061029761045a366004612589565b610d61565b34801561046b57600080fd5b5061036a61047a3660046125dc565b610dc9565b61036a61048d366004612640565b610e0a565b34801561049e57600080fd5b5061036a6104ad366004612589565b610fe7565b3480156104be57600080fd5b506103326104cd366004612589565b611016565b3480156104de57600080fd5b50610297600a5481565b3480156104f457600080fd5b5061036a610503366004612589565b611028565b34801561051457600080fd5b50610297611057565b34801561052957600080fd5b506102976105383660046123c0565b611089565b34801561054957600080fd5b50600f5461055c90610100900460ff1681565b60405160ff90911681526020016102a1565b34801561057a57600080fd5b5061030561111a565b34801561058f57600080fd5b5061036a611129565b61036a6105a6366004612640565b61115f565b3480156105b757600080fd5b50600f5461055c9062010000900460ff1681565b3480156105d757600080fd5b506007546001600160a01b0316610332565b3480156105f557600080fd5b50600f5461055c906301000000900460ff1681565b34801561061657600080fd5b50610297600d5481565b34801561062c57600080fd5b50610305611334565b61036a610643366004612589565b611343565b34801561065457600080fd5b5061036a6106633660046124de565b611442565b34801561067457600080fd5b5061036a6106833660046123c0565b611507565b34801561069457600080fd5b50600f5461055c9060ff1681565b3480156106ae57600080fd5b5061036a6106bd36600461245e565b611553565b3480156106ce57600080fd5b5061036a6106dd366004612625565b611586565b3480156106ee57600080fd5b506103056106fd366004612589565b6115c6565b34801561070e57600080fd5b50600854610332906001600160a01b031681565b34801561072e57600080fd5b5061036a61073d366004612625565b611693565b34801561074e57600080fd5b5061055c61075d3660046123c0565b60106020526000908152604090205460ff1681565b34801561077e57600080fd5b5061036a61078d36600461253d565b6116d9565b34801561079e57600080fd5b506102ca6107ad3660046123e4565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156107e757600080fd5b5061036a6107f63660046123c0565b611750565b34801561080757600080fd5b5061036a610816366004612589565b6117e8565b60006001600160e01b031982166380ac58cd60e01b148061084c57506001600160e01b03198216635b5e139f60e01b145b8061086757506001600160e01b0319821663780e9d6360e01b145b8061088257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461089790612a49565b80601f01602080910402602001604051908101604052809291908181526020018280546108c390612a49565b80156109105780601f106108e557610100808354040283529160200191610910565b820191906000526020600020905b8154815290600101906020018083116108f357829003601f168201915b5050505050905090565b6000610927826000541190565b61098e5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006109b582611016565b9050806001600160a01b0316836001600160a01b03161415610a245760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610985565b336001600160a01b0382161480610a405750610a4081336107ad565b610ab25760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610985565b610abd838383611817565b505050565b6007546001600160a01b03163314610aec5760405162461bcd60e51b81526004016109859061289e565b600d55565b60006001600054610b0291906129ef565b905090565b610abd838383611873565b6000610b1d83611089565b8210610b765760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610985565b6000610b80610af1565b905060008060005b83811015610c2a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610bdb57805192505b876001600160a01b0316836001600160a01b03161415610c175786841415610c095750935061088292505050565b83610c1381612a84565b9450505b5080610c2281612a84565b915050610b88565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610985565b6007546001600160a01b03163314610cb45760405162461bcd60e51b81526004016109859061289e565b600955565b6007546001600160a01b03163314610ce35760405162461bcd60e51b81526004016109859061289e565b6008546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610d30576040519150601f19603f3d011682016040523d82523d6000602084013e610d35565b606091505b5050905080610d4357600080fd5b50565b610abd83838360405180602001604052806000815250611553565b6000610d6b610af1565b8210610dc55760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610985565b5090565b6007546001600160a01b03163314610df35760405162461bcd60e51b81526004016109859061289e565b8051610e0690600c906020840190612258565b5050565b600f5460ff16600114610e2f5760405162461bcd60e51b815260040161098590612926565b600b548360ff16610e3e610af1565b610e48919061297f565b1115610e665760405162461bcd60e51b815260040161098590612812565b600f543360009081526010602052604090205460ff6301000000909204821691610e9291869116612997565b60ff161115610eb35760405162461bcd60e51b81526004016109859061285b565b8260ff16600954610ec491906129d0565b341015610ee35760405162461bcd60e51b8152600401610985906127e6565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610f5d83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d549150849050611bba565b610f9a5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610985565b3360009081526010602052604081208054869290610fbc90849060ff16612997565b92506101000a81548160ff021916908360ff160217905550610fe1338560ff16611bd0565b50505050565b6007546001600160a01b031633146110115760405162461bcd60e51b81526004016109859061289e565b600e55565b600061102182611bea565b5192915050565b6007546001600160a01b031633146110525760405162461bcd60e51b81526004016109859061289e565b600b55565b6007546000906001600160a01b031633146110845760405162461bcd60e51b81526004016109859061289e565b504790565b60006001600160a01b0382166110f55760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610985565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600c805461089790612a49565b6007546001600160a01b031633146111535760405162461bcd60e51b81526004016109859061289e565b61115d6000611cca565b565b600f5460ff166001146111845760405162461bcd60e51b815260040161098590612926565b600b548360ff16611193610af1565b61119d919061297f565b11156111bb5760405162461bcd60e51b815260040161098590612812565b600f543360009081526010602052604090205460ff620100009092048216916111e691869116612997565b60ff1611156112075760405162461bcd60e51b81526004016109859061285b565b8260ff1660095461121891906129d0565b3410156112375760405162461bcd60e51b8152600401610985906127e6565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506112b183838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e549150849050611bba565b6112ee5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610985565b3360009081526010602052604090205460ff16610f9a578361130f81612a9f565b9450503360009081526010602052604081208054869290610fbc90849060ff16612997565b60606002805461089790612a49565b600f54600260ff909116101561136b5760405162461bcd60e51b815260040161098590612926565b600b5481611377610af1565b611381919061297f565b111561139f5760405162461bcd60e51b815260040161098590612812565b600f543360009081526010602052604090205460ff6101009092048216916113c99184911661297f565b111561140b5760405162461bcd60e51b8152602060048201526011602482015270109d5e481b1a5b5a5d081c995858da1959607a1b6044820152606401610985565b80600a5461141991906129d0565b3410156114385760405162461bcd60e51b8152600401610985906127e6565b610d433382611bd0565b6001600160a01b03821633141561149b5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610985565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146115315760405162461bcd60e51b81526004016109859061289e565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b61155e848484611873565b61156a84848484611d1c565b610fe15760405162461bcd60e51b8152600401610985906128d3565b6007546001600160a01b031633146115b05760405162461bcd60e51b81526004016109859061289e565b600f805460ff191660ff92909216919091179055565b60606115d3826000541190565b6116375760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610985565b6000600c805461164690612a49565b9050116116625760405180602001604052806000815250610882565b600c61166d83611e2a565b60405160200161167e9291906126db565b60405160208183030381529060405292915050565b6007546001600160a01b031633146116bd5760405162461bcd60e51b81526004016109859061289e565b600f805460ff9092166101000261ff0019909216919091179055565b6007546001600160a01b031633146117035760405162461bcd60e51b81526004016109859061289e565b60005b82811015610fe15761173e84848381811061172357611723612aff565b905060200201602081019061173891906123c0565b83611bd0565b8061174881612a84565b915050611706565b6007546001600160a01b0316331461177a5760405162461bcd60e51b81526004016109859061289e565b6001600160a01b0381166117df5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610985565b610d4381611cca565b6007546001600160a01b031633146118125760405162461bcd60e51b81526004016109859061289e565b600a55565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061187e82611bea565b80519091506000906001600160a01b0316336001600160a01b031614806118b55750336118aa8461091a565b6001600160a01b0316145b806118c7575081516118c790336107ad565b9050806119315760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610985565b846001600160a01b031682600001516001600160a01b0316146119a55760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610985565b6001600160a01b038416611a095760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610985565b611a196000848460000151611817565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b95909216949094021790925590611ade90859061297f565b6000818152600360205260409020549091506001600160a01b0316611b7057611b08816000541190565b15611b705760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600082611bc78584611f28565b14949350505050565b610e06828260405180602001604052806000815250611f9c565b6040805180820190915260008082526020820152611c09826000541190565b611c685760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610985565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611cb7579392505050565b5080611cc281612a32565b915050611c6a565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611e1e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d60903390899088908890600401612796565b602060405180830381600087803b158015611d7a57600080fd5b505af1925050508015611daa575060408051601f3d908101601f19168201909252611da7918101906125bf565b60015b611e04573d808015611dd8576040519150601f19603f3d011682016040523d82523d6000602084013e611ddd565b606091505b508051611dfc5760405162461bcd60e51b8152600401610985906128d3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e22565b5060015b949350505050565b606081611e4e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e785780611e6281612a84565b9150611e719050600a836129bc565b9150611e52565b60008167ffffffffffffffff811115611e9357611e93612b15565b6040519080825280601f01601f191660200182016040528015611ebd576020820181803683370190505b5090505b8415611e2257611ed26001836129ef565b9150611edf600a86612abf565b611eea90603061297f565b60f81b818381518110611eff57611eff612aff565b60200101906001600160f81b031916908160001a905350611f21600a866129bc565b9450611ec1565b600081815b8451811015611f94576000858281518110611f4a57611f4a612aff565b60200260200101519050808311611f705760008381526020829052604090209250611f81565b600081815260208490526040902092505b5080611f8c81612a84565b915050611f2d565b509392505050565b6000546001600160a01b038416611fff5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610985565b61200a816000541190565b156120575760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610985565b600083116120b35760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610985565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061210f908790612954565b6001600160801b0316815260200185836020015161212d9190612954565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561224d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46122116000888488611d1c565b61222d5760405162461bcd60e51b8152600401610985906128d3565b8161223781612a84565b925050808061224590612a84565b9150506121c4565b506000819055611bb2565b82805461226490612a49565b90600052602060002090601f01602090048101928261228657600085556122cc565b82601f1061229f57805160ff19168380011785556122cc565b828001600101855582156122cc579182015b828111156122cc5782518255916020019190600101906122b1565b50610dc59291505b80821115610dc557600081556001016122d4565b600067ffffffffffffffff8084111561230357612303612b15565b604051601f8501601f19908116603f0116810190828211818310171561232b5761232b612b15565b8160405280935085815286868601111561234457600080fd5b858560208301376000602087830101525050509392505050565b60008083601f84011261237057600080fd5b50813567ffffffffffffffff81111561238857600080fd5b6020830191508360208260051b85010111156123a357600080fd5b9250929050565b803560ff811681146123bb57600080fd5b919050565b6000602082840312156123d257600080fd5b81356123dd81612b2b565b9392505050565b600080604083850312156123f757600080fd5b823561240281612b2b565b9150602083013561241281612b2b565b809150509250929050565b60008060006060848603121561243257600080fd5b833561243d81612b2b565b9250602084013561244d81612b2b565b929592945050506040919091013590565b6000806000806080858703121561247457600080fd5b843561247f81612b2b565b9350602085013561248f81612b2b565b925060408501359150606085013567ffffffffffffffff8111156124b257600080fd5b8501601f810187136124c357600080fd5b6124d2878235602084016122e8565b91505092959194509250565b600080604083850312156124f157600080fd5b82356124fc81612b2b565b91506020830135801515811461241257600080fd5b6000806040838503121561252457600080fd5b823561252f81612b2b565b946020939093013593505050565b60008060006040848603121561255257600080fd5b833567ffffffffffffffff81111561256957600080fd5b6125758682870161235e565b909790965060209590950135949350505050565b60006020828403121561259b57600080fd5b5035919050565b6000602082840312156125b457600080fd5b81356123dd81612b40565b6000602082840312156125d157600080fd5b81516123dd81612b40565b6000602082840312156125ee57600080fd5b813567ffffffffffffffff81111561260557600080fd5b8201601f8101841361261657600080fd5b611e22848235602084016122e8565b60006020828403121561263757600080fd5b6123dd826123aa565b60008060006040848603121561265557600080fd5b61265e846123aa565b9250602084013567ffffffffffffffff81111561267a57600080fd5b6126868682870161235e565b9497909650939450505050565b600081518084526126ab816020860160208601612a06565b601f01601f19169290920160200192915050565b600081516126d1818560208601612a06565b9290920192915050565b600080845481600182811c9150808316806126f757607f831692505b602080841082141561271757634e487b7160e01b86526022600452602486fd5b81801561272b576001811461273c57612769565b60ff19861689528489019650612769565b60008b81526020902060005b868110156127615781548b820152908501908301612748565b505084890196505b50505050505061278d61277c82866126bf565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127c990830184612693565b9695505050505050565b6020815260006123dd6020830184612693565b602080825260129082015271496e73756666696369656e742066756e647360701b604082015260600190565b60208082526029908201527f596f752063616e2774206d696e74206d6f7265207468656e2074686520746f74604082015268616c20737570706c7960b81b606082015260800190565b60208082526023908201527f4d61782070726573616c65206d696e74656420666f7220746869732077616c6c60408201526265742160e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60208082526014908201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b604082015260600190565b60006001600160801b0380831681851680830382111561297657612976612ad3565b01949350505050565b6000821982111561299257612992612ad3565b500190565b600060ff821660ff84168060ff038211156129b4576129b4612ad3565b019392505050565b6000826129cb576129cb612ae9565b500490565b60008160001904831182151516156129ea576129ea612ad3565b500290565b600082821015612a0157612a01612ad3565b500390565b60005b83811015612a21578181015183820152602001612a09565b83811115610fe15750506000910152565b600081612a4157612a41612ad3565b506000190190565b600181811c90821680612a5d57607f821691505b60208210811415612a7e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a9857612a98612ad3565b5060010190565b600060ff821660ff811415612ab657612ab6612ad3565b60010192915050565b600082612ace57612ace612ae9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610d4357600080fd5b6001600160e01b031981168114610d4357600080fdfea2646970667358221220561498baf608daa47e74146dd6c76a5277bca19d33e2b2c2d785b3eb85510a8b64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061027c5760003560e01c806370db69d61161014f578063b14f2a39116100c1578063dbdf2dc01161007a578063dbdf2dc014610722578063dea96c9814610742578063dfcf15b014610772578063e985e9c514610792578063f2fde38b146107db578063f4a0a528146107fb57600080fd5b8063b14f2a3914610668578063b1c9fe6e14610688578063b88d4fde146106a2578063c03afb59146106c2578063c87b56dd146106e2578063ce606ee01461070257600080fd5b80638da5cb5b116101135780638da5cb5b146105cb57806394c645a8146105e957806395601e111461060a57806395d89b4114610620578063a0712d6814610635578063a22cb4651461064857600080fd5b806370db69d61461053d578063714c53981461056e578063715018a614610583578063842e481c1461059857806387abdc2a146105ab57600080fd5b80633549345e116101f35780635ae1250b116101ac5780635ae1250b146104925780636352211e146104b25780636817c76c146104d25780636bd08049146104e85780636f9fb98a1461050857806370a082311461051d57600080fd5b80633549345e146103f75780633ccfd60b1461041757806342842e0e1461041f5780634f6ccce71461043f57806355f804b31461045f5780635a3f3b571461047f57600080fd5b8063095ea7b311610245578063095ea7b31461034a5780630a3025301461036c578063162043871461038257806318160ddd146103a257806323b872dd146103b75780632f745c59146103d757600080fd5b80620e7fa81461028157806301ffc9a7146102aa578063047fc9aa146102da57806306fdde03146102f0578063081812fc14610312575b600080fd5b34801561028d57600080fd5b5061029760095481565b6040519081526020015b60405180910390f35b3480156102b657600080fd5b506102ca6102c53660046125a2565b61081b565b60405190151581526020016102a1565b3480156102e657600080fd5b50610297600b5481565b3480156102fc57600080fd5b50610305610888565b6040516102a191906127d3565b34801561031e57600080fd5b5061033261032d366004612589565b61091a565b6040516001600160a01b0390911681526020016102a1565b34801561035657600080fd5b5061036a610365366004612511565b6109aa565b005b34801561037857600080fd5b50610297600e5481565b34801561038e57600080fd5b5061036a61039d366004612589565b610ac2565b3480156103ae57600080fd5b50610297610af1565b3480156103c357600080fd5b5061036a6103d236600461241d565b610b07565b3480156103e357600080fd5b506102976103f2366004612511565b610b12565b34801561040357600080fd5b5061036a610412366004612589565b610c8a565b61036a610cb9565b34801561042b57600080fd5b5061036a61043a36600461241d565b610d46565b34801561044b57600080fd5b5061029761045a366004612589565b610d61565b34801561046b57600080fd5b5061036a61047a3660046125dc565b610dc9565b61036a61048d366004612640565b610e0a565b34801561049e57600080fd5b5061036a6104ad366004612589565b610fe7565b3480156104be57600080fd5b506103326104cd366004612589565b611016565b3480156104de57600080fd5b50610297600a5481565b3480156104f457600080fd5b5061036a610503366004612589565b611028565b34801561051457600080fd5b50610297611057565b34801561052957600080fd5b506102976105383660046123c0565b611089565b34801561054957600080fd5b50600f5461055c90610100900460ff1681565b60405160ff90911681526020016102a1565b34801561057a57600080fd5b5061030561111a565b34801561058f57600080fd5b5061036a611129565b61036a6105a6366004612640565b61115f565b3480156105b757600080fd5b50600f5461055c9062010000900460ff1681565b3480156105d757600080fd5b506007546001600160a01b0316610332565b3480156105f557600080fd5b50600f5461055c906301000000900460ff1681565b34801561061657600080fd5b50610297600d5481565b34801561062c57600080fd5b50610305611334565b61036a610643366004612589565b611343565b34801561065457600080fd5b5061036a6106633660046124de565b611442565b34801561067457600080fd5b5061036a6106833660046123c0565b611507565b34801561069457600080fd5b50600f5461055c9060ff1681565b3480156106ae57600080fd5b5061036a6106bd36600461245e565b611553565b3480156106ce57600080fd5b5061036a6106dd366004612625565b611586565b3480156106ee57600080fd5b506103056106fd366004612589565b6115c6565b34801561070e57600080fd5b50600854610332906001600160a01b031681565b34801561072e57600080fd5b5061036a61073d366004612625565b611693565b34801561074e57600080fd5b5061055c61075d3660046123c0565b60106020526000908152604090205460ff1681565b34801561077e57600080fd5b5061036a61078d36600461253d565b6116d9565b34801561079e57600080fd5b506102ca6107ad3660046123e4565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156107e757600080fd5b5061036a6107f63660046123c0565b611750565b34801561080757600080fd5b5061036a610816366004612589565b6117e8565b60006001600160e01b031982166380ac58cd60e01b148061084c57506001600160e01b03198216635b5e139f60e01b145b8061086757506001600160e01b0319821663780e9d6360e01b145b8061088257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461089790612a49565b80601f01602080910402602001604051908101604052809291908181526020018280546108c390612a49565b80156109105780601f106108e557610100808354040283529160200191610910565b820191906000526020600020905b8154815290600101906020018083116108f357829003601f168201915b5050505050905090565b6000610927826000541190565b61098e5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006109b582611016565b9050806001600160a01b0316836001600160a01b03161415610a245760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610985565b336001600160a01b0382161480610a405750610a4081336107ad565b610ab25760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610985565b610abd838383611817565b505050565b6007546001600160a01b03163314610aec5760405162461bcd60e51b81526004016109859061289e565b600d55565b60006001600054610b0291906129ef565b905090565b610abd838383611873565b6000610b1d83611089565b8210610b765760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610985565b6000610b80610af1565b905060008060005b83811015610c2a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610bdb57805192505b876001600160a01b0316836001600160a01b03161415610c175786841415610c095750935061088292505050565b83610c1381612a84565b9450505b5080610c2281612a84565b915050610b88565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610985565b6007546001600160a01b03163314610cb45760405162461bcd60e51b81526004016109859061289e565b600955565b6007546001600160a01b03163314610ce35760405162461bcd60e51b81526004016109859061289e565b6008546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610d30576040519150601f19603f3d011682016040523d82523d6000602084013e610d35565b606091505b5050905080610d4357600080fd5b50565b610abd83838360405180602001604052806000815250611553565b6000610d6b610af1565b8210610dc55760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610985565b5090565b6007546001600160a01b03163314610df35760405162461bcd60e51b81526004016109859061289e565b8051610e0690600c906020840190612258565b5050565b600f5460ff16600114610e2f5760405162461bcd60e51b815260040161098590612926565b600b548360ff16610e3e610af1565b610e48919061297f565b1115610e665760405162461bcd60e51b815260040161098590612812565b600f543360009081526010602052604090205460ff6301000000909204821691610e9291869116612997565b60ff161115610eb35760405162461bcd60e51b81526004016109859061285b565b8260ff16600954610ec491906129d0565b341015610ee35760405162461bcd60e51b8152600401610985906127e6565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610f5d83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d549150849050611bba565b610f9a5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610985565b3360009081526010602052604081208054869290610fbc90849060ff16612997565b92506101000a81548160ff021916908360ff160217905550610fe1338560ff16611bd0565b50505050565b6007546001600160a01b031633146110115760405162461bcd60e51b81526004016109859061289e565b600e55565b600061102182611bea565b5192915050565b6007546001600160a01b031633146110525760405162461bcd60e51b81526004016109859061289e565b600b55565b6007546000906001600160a01b031633146110845760405162461bcd60e51b81526004016109859061289e565b504790565b60006001600160a01b0382166110f55760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610985565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600c805461089790612a49565b6007546001600160a01b031633146111535760405162461bcd60e51b81526004016109859061289e565b61115d6000611cca565b565b600f5460ff166001146111845760405162461bcd60e51b815260040161098590612926565b600b548360ff16611193610af1565b61119d919061297f565b11156111bb5760405162461bcd60e51b815260040161098590612812565b600f543360009081526010602052604090205460ff620100009092048216916111e691869116612997565b60ff1611156112075760405162461bcd60e51b81526004016109859061285b565b8260ff1660095461121891906129d0565b3410156112375760405162461bcd60e51b8152600401610985906127e6565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506112b183838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e549150849050611bba565b6112ee5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610985565b3360009081526010602052604090205460ff16610f9a578361130f81612a9f565b9450503360009081526010602052604081208054869290610fbc90849060ff16612997565b60606002805461089790612a49565b600f54600260ff909116101561136b5760405162461bcd60e51b815260040161098590612926565b600b5481611377610af1565b611381919061297f565b111561139f5760405162461bcd60e51b815260040161098590612812565b600f543360009081526010602052604090205460ff6101009092048216916113c99184911661297f565b111561140b5760405162461bcd60e51b8152602060048201526011602482015270109d5e481b1a5b5a5d081c995858da1959607a1b6044820152606401610985565b80600a5461141991906129d0565b3410156114385760405162461bcd60e51b8152600401610985906127e6565b610d433382611bd0565b6001600160a01b03821633141561149b5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610985565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146115315760405162461bcd60e51b81526004016109859061289e565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b61155e848484611873565b61156a84848484611d1c565b610fe15760405162461bcd60e51b8152600401610985906128d3565b6007546001600160a01b031633146115b05760405162461bcd60e51b81526004016109859061289e565b600f805460ff191660ff92909216919091179055565b60606115d3826000541190565b6116375760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610985565b6000600c805461164690612a49565b9050116116625760405180602001604052806000815250610882565b600c61166d83611e2a565b60405160200161167e9291906126db565b60405160208183030381529060405292915050565b6007546001600160a01b031633146116bd5760405162461bcd60e51b81526004016109859061289e565b600f805460ff9092166101000261ff0019909216919091179055565b6007546001600160a01b031633146117035760405162461bcd60e51b81526004016109859061289e565b60005b82811015610fe15761173e84848381811061172357611723612aff565b905060200201602081019061173891906123c0565b83611bd0565b8061174881612a84565b915050611706565b6007546001600160a01b0316331461177a5760405162461bcd60e51b81526004016109859061289e565b6001600160a01b0381166117df5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610985565b610d4381611cca565b6007546001600160a01b031633146118125760405162461bcd60e51b81526004016109859061289e565b600a55565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061187e82611bea565b80519091506000906001600160a01b0316336001600160a01b031614806118b55750336118aa8461091a565b6001600160a01b0316145b806118c7575081516118c790336107ad565b9050806119315760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610985565b846001600160a01b031682600001516001600160a01b0316146119a55760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610985565b6001600160a01b038416611a095760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610985565b611a196000848460000151611817565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b95909216949094021790925590611ade90859061297f565b6000818152600360205260409020549091506001600160a01b0316611b7057611b08816000541190565b15611b705760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600082611bc78584611f28565b14949350505050565b610e06828260405180602001604052806000815250611f9c565b6040805180820190915260008082526020820152611c09826000541190565b611c685760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610985565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611cb7579392505050565b5080611cc281612a32565b915050611c6a565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611e1e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d60903390899088908890600401612796565b602060405180830381600087803b158015611d7a57600080fd5b505af1925050508015611daa575060408051601f3d908101601f19168201909252611da7918101906125bf565b60015b611e04573d808015611dd8576040519150601f19603f3d011682016040523d82523d6000602084013e611ddd565b606091505b508051611dfc5760405162461bcd60e51b8152600401610985906128d3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e22565b5060015b949350505050565b606081611e4e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e785780611e6281612a84565b9150611e719050600a836129bc565b9150611e52565b60008167ffffffffffffffff811115611e9357611e93612b15565b6040519080825280601f01601f191660200182016040528015611ebd576020820181803683370190505b5090505b8415611e2257611ed26001836129ef565b9150611edf600a86612abf565b611eea90603061297f565b60f81b818381518110611eff57611eff612aff565b60200101906001600160f81b031916908160001a905350611f21600a866129bc565b9450611ec1565b600081815b8451811015611f94576000858281518110611f4a57611f4a612aff565b60200260200101519050808311611f705760008381526020829052604090209250611f81565b600081815260208490526040902092505b5080611f8c81612a84565b915050611f2d565b509392505050565b6000546001600160a01b038416611fff5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610985565b61200a816000541190565b156120575760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610985565b600083116120b35760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610985565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061210f908790612954565b6001600160801b0316815260200185836020015161212d9190612954565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561224d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46122116000888488611d1c565b61222d5760405162461bcd60e51b8152600401610985906128d3565b8161223781612a84565b925050808061224590612a84565b9150506121c4565b506000819055611bb2565b82805461226490612a49565b90600052602060002090601f01602090048101928261228657600085556122cc565b82601f1061229f57805160ff19168380011785556122cc565b828001600101855582156122cc579182015b828111156122cc5782518255916020019190600101906122b1565b50610dc59291505b80821115610dc557600081556001016122d4565b600067ffffffffffffffff8084111561230357612303612b15565b604051601f8501601f19908116603f0116810190828211818310171561232b5761232b612b15565b8160405280935085815286868601111561234457600080fd5b858560208301376000602087830101525050509392505050565b60008083601f84011261237057600080fd5b50813567ffffffffffffffff81111561238857600080fd5b6020830191508360208260051b85010111156123a357600080fd5b9250929050565b803560ff811681146123bb57600080fd5b919050565b6000602082840312156123d257600080fd5b81356123dd81612b2b565b9392505050565b600080604083850312156123f757600080fd5b823561240281612b2b565b9150602083013561241281612b2b565b809150509250929050565b60008060006060848603121561243257600080fd5b833561243d81612b2b565b9250602084013561244d81612b2b565b929592945050506040919091013590565b6000806000806080858703121561247457600080fd5b843561247f81612b2b565b9350602085013561248f81612b2b565b925060408501359150606085013567ffffffffffffffff8111156124b257600080fd5b8501601f810187136124c357600080fd5b6124d2878235602084016122e8565b91505092959194509250565b600080604083850312156124f157600080fd5b82356124fc81612b2b565b91506020830135801515811461241257600080fd5b6000806040838503121561252457600080fd5b823561252f81612b2b565b946020939093013593505050565b60008060006040848603121561255257600080fd5b833567ffffffffffffffff81111561256957600080fd5b6125758682870161235e565b909790965060209590950135949350505050565b60006020828403121561259b57600080fd5b5035919050565b6000602082840312156125b457600080fd5b81356123dd81612b40565b6000602082840312156125d157600080fd5b81516123dd81612b40565b6000602082840312156125ee57600080fd5b813567ffffffffffffffff81111561260557600080fd5b8201601f8101841361261657600080fd5b611e22848235602084016122e8565b60006020828403121561263757600080fd5b6123dd826123aa565b60008060006040848603121561265557600080fd5b61265e846123aa565b9250602084013567ffffffffffffffff81111561267a57600080fd5b6126868682870161235e565b9497909650939450505050565b600081518084526126ab816020860160208601612a06565b601f01601f19169290920160200192915050565b600081516126d1818560208601612a06565b9290920192915050565b600080845481600182811c9150808316806126f757607f831692505b602080841082141561271757634e487b7160e01b86526022600452602486fd5b81801561272b576001811461273c57612769565b60ff19861689528489019650612769565b60008b81526020902060005b868110156127615781548b820152908501908301612748565b505084890196505b50505050505061278d61277c82866126bf565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127c990830184612693565b9695505050505050565b6020815260006123dd6020830184612693565b602080825260129082015271496e73756666696369656e742066756e647360701b604082015260600190565b60208082526029908201527f596f752063616e2774206d696e74206d6f7265207468656e2074686520746f74604082015268616c20737570706c7960b81b606082015260800190565b60208082526023908201527f4d61782070726573616c65206d696e74656420666f7220746869732077616c6c60408201526265742160e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60208082526014908201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b604082015260600190565b60006001600160801b0380831681851680830382111561297657612976612ad3565b01949350505050565b6000821982111561299257612992612ad3565b500190565b600060ff821660ff84168060ff038211156129b4576129b4612ad3565b019392505050565b6000826129cb576129cb612ae9565b500490565b60008160001904831182151516156129ea576129ea612ad3565b500290565b600082821015612a0157612a01612ad3565b500390565b60005b83811015612a21578181015183820152602001612a09565b83811115610fe15750506000910152565b600081612a4157612a41612ad3565b506000190190565b600181811c90821680612a5d57607f821691505b60208210811415612a7e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a9857612a98612ad3565b5060010190565b600060ff821660ff811415612ab657612ab6612ad3565b60010192915050565b600082612ace57612ace612ae9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610d4357600080fd5b6001600160e01b031981168114610d4357600080fdfea2646970667358221220561498baf608daa47e74146dd6c76a5277bca19d33e2b2c2d785b3eb85510a8b64736f6c63430008070033

Deployed Bytecode Sourcemap

41404:4378:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41514:40;;;;;;;;;;;;;;;;;;;9986:25:1;;;9974:2;9959:18;41514:40:0;;;;;;;;24333:372;;;;;;;;;;-1:-1:-1;24333:372:0;;;;;:::i;:::-;;:::i;:::-;;;9813:14:1;;9806:22;9788:41;;9776:2;9761:18;24333:372:0;9648:187:1;41601:28:0;;;;;;;;;;;;;;;;25960:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27521:214::-;;;;;;;;;;-1:-1:-1;27521:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9111:32:1;;;9093:51;;9081:2;9066:18;27521:214:0;8947:203:1;27042:413:0;;;;;;;;;;-1:-1:-1;27042:413:0;;;;;:::i;:::-;;:::i;:::-;;41733:27;;;;;;;;;;;;;;;;45168:107;;;;;;;;;;-1:-1:-1;45168:107:0;;;;;:::i;:::-;;:::i;22770:104::-;;;;;;;;;;;;;:::i;28397:162::-;;;;;;;;;;-1:-1:-1;28397:162:0;;;;;:::i;:::-;;:::i;23438:823::-;;;;;;;;;;-1:-1:-1;23438:823:0;;;;;:::i;:::-;;:::i;44794:101::-;;;;;;;;;;-1:-1:-1;44794:101:0;;;;;:::i;:::-;;:::i;45624:153::-;;;:::i;28630:177::-;;;;;;;;;;-1:-1:-1;28630:177:0;;;;;:::i;:::-;;:::i;22951:187::-;;;;;;;;;;-1:-1:-1;22951:187:0;;;;;:::i;:::-;;:::i;44593:94::-;;;;;;;;;;-1:-1:-1;44593:94:0;;;;;:::i;:::-;;:::i;42918:709::-;;;;;;:::i;:::-;;:::i;45281:101::-;;;;;;;;;;-1:-1:-1;45281:101:0;;;;;:::i;:::-;;:::i;25769:124::-;;;;;;;;;;-1:-1:-1;25769:124:0;;;;;:::i;:::-;;:::i;41559:37::-;;;;;;;;;;;;;;;;45073:89;;;;;;;;;;-1:-1:-1;45073:89:0;;;;;:::i;:::-;;:::i;45388:114::-;;;;;;;;;;;;;:::i;24769:221::-;;;;;;;;;;-1:-1:-1;24769:221:0;;;;;:::i;:::-;;:::i;41792:24::-;;;;;;;;;;-1:-1:-1;41792:24:0;;;;;;;;;;;;;;20858:4:1;20846:17;;;20828:36;;20816:2;20801:18;41792:24:0;20686:184:1;44402:85:0;;;;;;;;;;;;;:::i;38034:103::-;;;;;;;;;;;;;:::i;43635:761::-;;;;;;:::i;:::-;;:::i;41821:22::-;;;;;;;;;;-1:-1:-1;41821:22:0;;;;;;;;;;;37383:87;;;;;;;;;;-1:-1:-1;37456:6:0;;-1:-1:-1;;;;;37456:6:0;37383:87;;41848:29;;;;;;;;;;-1:-1:-1;41848:29:0;;;;;;;;;;;41698:30;;;;;;;;;;;;;;;;26129:104;;;;;;;;;;;;;:::i;42521:391::-;;;;;;:::i;:::-;;:::i;27807:288::-;;;;;;;;;;-1:-1:-1;27807:288:0;;;;;:::i;:::-;;:::i;45508:110::-;;;;;;;;;;-1:-1:-1;45508:110:0;;;;;:::i;:::-;;:::i;41765:22::-;;;;;;;;;;-1:-1:-1;41765:22:0;;;;;;;;28878:355;;;;;;;;;;-1:-1:-1;28878:355:0;;;;;:::i;:::-;;:::i;44901:76::-;;;;;;;;;;-1:-1:-1;44901:76:0;;;;;:::i;:::-;;:::i;42027:288::-;;;;;;;;;;-1:-1:-1;42027:288:0;;;;;:::i;:::-;;:::i;41481:28::-;;;;;;;;;;-1:-1:-1;41481:28:0;;;;-1:-1:-1;;;;;41481:28:0;;;44983:84;;;;;;;;;;-1:-1:-1;44983:84:0;;;;;:::i;:::-;;:::i;41884:44::-;;;;;;;;;;-1:-1:-1;41884:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;42321:194;;;;;;;;;;-1:-1:-1;42321:194:0;;;;;:::i;:::-;;:::i;28166:164::-;;;;;;;;;;-1:-1:-1;28166:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28287:25:0;;;28263:4;28287:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28166:164;38292:201;;;;;;;;;;-1:-1:-1;38292:201:0;;;;;:::i;:::-;;:::i;44693:95::-;;;;;;;;;;-1:-1:-1;44693:95:0;;;;;:::i;:::-;;:::i;24333:372::-;24435:4;-1:-1:-1;;;;;;24472:40:0;;-1:-1:-1;;;24472:40:0;;:105;;-1:-1:-1;;;;;;;24529:48:0;;-1:-1:-1;;;24529:48:0;24472:105;:172;;;-1:-1:-1;;;;;;;24594:50:0;;-1:-1:-1;;;24594:50:0;24472:172;:225;;;-1:-1:-1;;;;;;;;;;13230:40:0;;;24661:36;24452:245;24333:372;-1:-1:-1;;24333:372:0:o;25960:100::-;26014:13;26047:5;26040:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25960:100;:::o;27521:214::-;27589:7;27617:16;27625:7;29545:4;29579:12;-1:-1:-1;29569:22:0;29488:111;27617:16;27609:74;;;;-1:-1:-1;;;27609:74:0;;20292:2:1;27609:74:0;;;20274:21:1;20331:2;20311:18;;;20304:30;20370:34;20350:18;;;20343:62;-1:-1:-1;;;20421:18:1;;;20414:43;20474:19;;27609:74:0;;;;;;;;;-1:-1:-1;27703:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27703:24:0;;27521:214::o;27042:413::-;27115:13;27131:24;27147:7;27131:15;:24::i;:::-;27115:40;;27180:5;-1:-1:-1;;;;;27174:11:0;:2;-1:-1:-1;;;;;27174:11:0;;;27166:58;;;;-1:-1:-1;;;27166:58:0;;17125:2:1;27166:58:0;;;17107:21:1;17164:2;17144:18;;;17137:30;17203:34;17183:18;;;17176:62;-1:-1:-1;;;17254:18:1;;;17247:32;17296:19;;27166:58:0;16923:398:1;27166:58:0;20792:10;-1:-1:-1;;;;;27259:21:0;;;;:62;;-1:-1:-1;27284:37:0;27301:5;20792:10;28166:164;:::i;27284:37::-;27237:169;;;;-1:-1:-1;;;27237:169:0;;13579:2:1;27237:169:0;;;13561:21:1;13618:2;13598:18;;;13591:30;13657:34;13637:18;;;13630:62;13728:27;13708:18;;;13701:55;13773:19;;27237:169:0;13377:421:1;27237:169:0;27419:28;27428:2;27432:7;27441:5;27419:8;:28::i;:::-;27104:351;27042:413;;:::o;45168:107::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;45242:15:::1;:27:::0;45168:107::o;22770:104::-;22823:7;22865:1;22850:12;;:16;;;;:::i;:::-;22843:23;;22770:104;:::o;28397:162::-;28523:28;28533:4;28539:2;28543:7;28523:9;:28::i;23438:823::-;23527:7;23563:16;23573:5;23563:9;:16::i;:::-;23555:5;:24;23547:71;;;;-1:-1:-1;;;23547:71:0;;10448:2:1;23547:71:0;;;10430:21:1;10487:2;10467:18;;;10460:30;10526:34;10506:18;;;10499:62;-1:-1:-1;;;10577:18:1;;;10570:32;10619:19;;23547:71:0;10246:398:1;23547:71:0;23629:22;23654:13;:11;:13::i;:::-;23629:38;;23678:19;23712:25;23766:9;23761:426;23785:14;23781:1;:18;23761:426;;;23821:31;23855:14;;;:11;:14;;;;;;;;;23821:48;;;;;;;;;-1:-1:-1;;;;;23821:48:0;;;;;-1:-1:-1;;;23821:48:0;;;;;;;;;;;;23888:28;23884:103;;23957:14;;;-1:-1:-1;23884:103:0;24026:5;-1:-1:-1;;;;;24005:26:0;:17;-1:-1:-1;;;;;24005:26:0;;24001:175;;;24071:5;24056:11;:20;24052:77;;;-1:-1:-1;24108:1:0;-1:-1:-1;24101:8:0;;-1:-1:-1;;;24101:8:0;24052:77;24147:13;;;;:::i;:::-;;;;24001:175;-1:-1:-1;23801:3:0;;;;:::i;:::-;;;;23761:426;;;-1:-1:-1;24197:56:0;;-1:-1:-1;;;24197:56:0;;19112:2:1;24197:56:0;;;19094:21:1;19151:2;19131:18;;;19124:30;19190:34;19170:18;;;19163:62;-1:-1:-1;;;19241:18:1;;;19234:44;19295:19;;24197:56:0;18910:410:1;44794:101:0;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;44865:12:::1;:24:::0;44794:101::o;45624:153::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;45700:13:::1;::::0;45692:61:::1;::::0;45679:7:::1;::::0;-1:-1:-1;;;;;45700:13:0::1;::::0;45727:21:::1;::::0;45679:7;45692:61;45679:7;45692:61;45727:21;45700:13;45692:61:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45678:75;;;45768:2;45760:11;;;::::0;::::1;;45671:106;45624:153::o:0;28630:177::-;28760:39;28777:4;28783:2;28787:7;28760:39;;;;;;;;;;;;:16;:39::i;22951:187::-;23018:7;23054:13;:11;:13::i;:::-;23046:5;:21;23038:69;;;;-1:-1:-1;;;23038:69:0;;12012:2:1;23038:69:0;;;11994:21:1;12051:2;12031:18;;;12024:30;12090:34;12070:18;;;12063:62;-1:-1:-1;;;12141:18:1;;;12134:33;12184:19;;23038:69:0;11810:399:1;23038:69:0;-1:-1:-1;23125:5:0;22951:187::o;44593:94::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;44663:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;44593:94:::0;:::o;42918:709::-;43061:5;;;;;:10;43053:43;;;;-1:-1:-1;;;43053:43:0;;;;;;;:::i;:::-;43142:6;;43127:11;43111:27;;:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:37;;43103:91;;;;-1:-1:-1;;;43103:91:0;;;;;;;:::i;:::-;43249:12;;43220:10;43209:22;;;;:10;:22;;;;;;43249:12;;;;;;;;43209:36;;43234:11;;43209:22;:36;:::i;:::-;:52;;;;43201:100;;;;-1:-1:-1;;;43201:100:0;;;;;;;:::i;:::-;43344:11;43329:26;;:12;;:26;;;;:::i;:::-;43316:9;:39;;43308:70;;;;-1:-1:-1;;;43308:70:0;;;;;;;:::i;:::-;43416:28;;-1:-1:-1;;43433:10:0;7346:2:1;7342:15;7338:53;43416:28:0;;;7326:66:1;43391:12:0;;7408::1;;43416:28:0;;;;;;;;;;;;43406:39;;;;;;43391:54;;43460:55;43479:12;;43460:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;43493:15:0;;;-1:-1:-1;43510:4:0;;-1:-1:-1;43460:18:0;:55::i;:::-;43452:82;;;;-1:-1:-1;;;43452:82:0;;10851:2:1;43452:82:0;;;10833:21:1;10890:2;10870:18;;;10863:30;-1:-1:-1;;;10909:18:1;;;10902:44;10963:18;;43452:82:0;10649:338:1;43452:82:0;43554:10;43543:22;;;;:10;:22;;;;;:37;;43569:11;;43543:22;:37;;43569:11;;43543:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;43587:34;43597:10;43609:11;43587:34;;:9;:34::i;:::-;43008:619;42918:709;;;:::o;45281:101::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;45352:12:::1;:24:::0;45281:101::o;25769:124::-;25833:7;25860:20;25872:7;25860:11;:20::i;:::-;:25;;25769:124;-1:-1:-1;;25769:124:0:o;45073:89::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;45140:6:::1;:16:::0;45073:89::o;45388:114::-;37456:6;;45452:7;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;-1:-1:-1;45475:21:0::1;45388:114:::0;:::o;24769:221::-;24833:7;-1:-1:-1;;;;;24861:19:0;;24853:75;;;;-1:-1:-1;;;24853:75:0;;14755:2:1;24853:75:0;;;14737:21:1;14794:2;14774:18;;;14767:30;14833:34;14813:18;;;14806:62;-1:-1:-1;;;14884:18:1;;;14877:41;14935:19;;24853:75:0;14553:407:1;24853:75:0;-1:-1:-1;;;;;;24954:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;24954:27:0;;24769:221::o;44402:85::-;44445:13;44474:7;44467:14;;;;;:::i;38034:103::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;38099:30:::1;38126:1;38099:18;:30::i;:::-;38034:103::o:0;43635:761::-;43768:5;;;;;:10;43760:43;;;;-1:-1:-1;;;43760:43:0;;;;;;;:::i;:::-;43849:6;;43834:11;43818:27;;:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:37;;43810:91;;;;-1:-1:-1;;;43810:91:0;;;;;;;:::i;:::-;43956:5;;43927:10;43916:22;;;;:10;:22;;;;;;43956:5;;;;;;;;43916:36;;43941:11;;43916:22;:36;:::i;:::-;:45;;;;43908:93;;;;-1:-1:-1;;;43908:93:0;;;;;;;:::i;:::-;44044:11;44029:26;;:12;;:26;;;;:::i;:::-;44016:9;:39;;44008:70;;;;-1:-1:-1;;;44008:70:0;;;;;;;:::i;:::-;44116:28;;-1:-1:-1;;44133:10:0;7346:2:1;7342:15;7338:53;44116:28:0;;;7326:66:1;44091:12:0;;7408::1;;44116:28:0;;;;;;;;;;;;44106:39;;;;;;44091:54;;44160:52;44179:12;;44160:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;44193:12:0;;;-1:-1:-1;44207:4:0;;-1:-1:-1;44160:18:0;:52::i;:::-;44152:79;;;;-1:-1:-1;;;44152:79:0;;10851:2:1;44152:79:0;;;10833:21:1;10890:2;10870:18;;;10863:30;-1:-1:-1;;;10909:18:1;;;10902:44;10963:18;;44152:79:0;10649:338:1;44152:79:0;44254:10;44243:22;;;;:10;:22;;;;;;;;44240:64;;44283:13;;;;:::i;:::-;;;;44323:10;44312:22;;;;:10;:22;;;;;:37;;44338:11;;44312:22;:37;;44338:11;;44312:37;;;:::i;26129:104::-;26185:13;26218:7;26211:14;;;;;:::i;42521:391::-;42585:5;;42594:1;42585:5;;;;:10;;42577:43;;;;-1:-1:-1;;;42577:43:0;;;;;;;:::i;:::-;42663:6;;42651:8;42635:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:34;;42627:88;;;;-1:-1:-1;;;42627:88:0;;;;;;;:::i;:::-;42767:6;;42741:10;42730:22;;;;:10;:22;;;;;;42767:6;;;;;;;;42730:33;;42755:8;;42730:22;:33;:::i;:::-;:43;;42722:73;;;;-1:-1:-1;;;42722:73:0;;14005:2:1;42722:73:0;;;13987:21:1;14044:2;14024:18;;;14017:30;-1:-1:-1;;;14063:18:1;;;14056:47;14120:18;;42722:73:0;13803:341:1;42722:73:0;42835:8;42823:9;;:20;;;;:::i;:::-;42810:9;:33;;42802:64;;;;-1:-1:-1;;;42802:64:0;;;;;;;:::i;:::-;42875:31;42885:10;42897:8;42875:9;:31::i;27807:288::-;-1:-1:-1;;;;;27902:24:0;;20792:10;27902:24;;27894:63;;;;-1:-1:-1;;;27894:63:0;;16351:2:1;27894:63:0;;;16333:21:1;16390:2;16370:18;;;16363:30;16429:28;16409:18;;;16402:56;16475:18;;27894:63:0;16149:350:1;27894:63:0;20792:10;27970:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27970:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27970:53:0;;;;;;;;;;28039:48;;9788:41:1;;;27970:42:0;;20792:10;28039:48;;9761:18:1;28039:48:0;;;;;;;27807:288;;:::o;45508:110::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;45586:13:::1;:26:::0;;-1:-1:-1;;;;;;45586:26:0::1;-1:-1:-1::0;;;;;45586:26:0;;;::::1;::::0;;;::::1;::::0;;45508:110::o;28878:355::-;29037:28;29047:4;29053:2;29057:7;29037:9;:28::i;:::-;29098:48;29121:4;29127:2;29131:7;29140:5;29098:22;:48::i;:::-;29076:149;;;;-1:-1:-1;;;29076:149:0;;;;;;;:::i;44901:76::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;44957:5:::1;:14:::0;;-1:-1:-1;;44957:14:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;44901:76::o;42027:288::-;42100:13;42130:16;42138:7;29545:4;29579:12;-1:-1:-1;29569:22:0;29488:111;42130:16;42122:76;;;;-1:-1:-1;;;42122:76:0;;15935:2:1;42122:76:0;;;15917:21:1;15974:2;15954:18;;;15947:30;16013:34;15993:18;;;15986:62;-1:-1:-1;;;16064:18:1;;;16057:45;16119:19;;42122:76:0;15733:411:1;42122:76:0;42238:1;42220:7;42214:21;;;;;:::i;:::-;;;:25;:95;;;;;;;;;;;;;;;;;42266:7;42275:18;:7;:16;:18::i;:::-;42249:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42207:102;42027:288;-1:-1:-1;;42027:288:0:o;44983:84::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;45045:6:::1;:16:::0;;::::1;::::0;;::::1;;;-1:-1:-1::0;;45045:16:0;;::::1;::::0;;;::::1;::::0;;44983:84::o;42321:194::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;42423:6:::1;42418:92;42433:19:::0;;::::1;42418:92;;;42468:34;42478:10;;42489:1;42478:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;42493:8;42468:9;:34::i;:::-;42454:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42418:92;;38292:201:::0;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38381:22:0;::::1;38373:73;;;::::0;-1:-1:-1;;;38373:73:0;;11194:2:1;38373:73:0::1;::::0;::::1;11176:21:1::0;11233:2;11213:18;;;11206:30;11272:34;11252:18;;;11245:62;-1:-1:-1;;;11323:18:1;;;11316:36;11369:19;;38373:73:0::1;10992:402:1::0;38373:73:0::1;38457:28;38476:8;38457:18;:28::i;44693:95::-:0;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;44761:9:::1;:21:::0;44693:95::o;33532:196::-;33647:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;33647:29:0;-1:-1:-1;;;;;33647:29:0;;;;;;;;;33692:28;;33647:24;;33692:28;;;;;;;33532:196;;;:::o;31631:1783::-;31746:35;31784:20;31796:7;31784:11;:20::i;:::-;31859:18;;31746:58;;-1:-1:-1;31817:22:0;;-1:-1:-1;;;;;31843:34:0;20792:10;-1:-1:-1;;;;;31843:34:0;;:87;;;-1:-1:-1;20792:10:0;31894:20;31906:7;31894:11;:20::i;:::-;-1:-1:-1;;;;;31894:36:0;;31843:87;:154;;;-1:-1:-1;31964:18:0;;31947:50;;20792:10;28166:164;:::i;31947:50::-;31817:181;;32019:17;32011:80;;;;-1:-1:-1;;;32011:80:0;;16706:2:1;32011:80:0;;;16688:21:1;16745:2;16725:18;;;16718:30;16784:34;16764:18;;;16757:62;-1:-1:-1;;;16835:18:1;;;16828:48;16893:19;;32011:80:0;16504:414:1;32011:80:0;32134:4;-1:-1:-1;;;;;32112:26:0;:13;:18;;;-1:-1:-1;;;;;32112:26:0;;32104:77;;;;-1:-1:-1;;;32104:77:0;;15167:2:1;32104:77:0;;;15149:21:1;15206:2;15186:18;;;15179:30;15245:34;15225:18;;;15218:62;-1:-1:-1;;;15296:18:1;;;15289:36;15342:19;;32104:77:0;14965:402:1;32104:77:0;-1:-1:-1;;;;;32200:16:0;;32192:66;;;;-1:-1:-1;;;32192:66:0;;12416:2:1;32192:66:0;;;12398:21:1;12455:2;12435:18;;;12428:30;12494:34;12474:18;;;12467:62;-1:-1:-1;;;12545:18:1;;;12538:35;12590:19;;32192:66:0;12214:401:1;32192:66:0;32379:49;32396:1;32400:7;32409:13;:18;;;32379:8;:49::i;:::-;-1:-1:-1;;;;;32633:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;32633:31:0;;;-1:-1:-1;;;;;32633:31:0;;;-1:-1:-1;;32633:31:0;;;;;;;32679:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;32679:29:0;;;;;;;;;;;;;32755:43;;;;;;;;;;32781:15;32755:43;;;;;;;;;;32732:20;;;:11;:20;;;;;;:66;;;;;;;;-1:-1:-1;;;;;;32732:66:0;;;;;;;-1:-1:-1;;;32732:66:0;;;;;;;;;;;;32633:18;33060:11;;32732:20;;33060:11;:::i;:::-;33127:1;33086:24;;;:11;:24;;;;;:29;33038:33;;-1:-1:-1;;;;;;33086:29:0;33082:227;;33150:20;33158:11;29545:4;29579:12;-1:-1:-1;29569:22:0;29488:111;33150:20;33146:152;;;33218:64;;;;;;;;33233:18;;-1:-1:-1;;;;;33218:64:0;;;;;;33253:28;;;;33218:64;;;;;;;;;;-1:-1:-1;33191:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;33191:91:0;-1:-1:-1;;;;;;33191:91:0;;;;;;;;;;;;33146:152;33345:7;33341:2;-1:-1:-1;;;;;33326:27:0;33335:4;-1:-1:-1;;;;;33326:27:0;;;;;;;;;;;33364:42;31735:1679;;;31631:1783;;;:::o;39910:190::-;40035:4;40088;40059:25;40072:5;40079:4;40059:12;:25::i;:::-;:33;;39910:190;-1:-1:-1;;;;39910:190:0:o;29607:104::-;29676:27;29686:2;29690:8;29676:27;;;;;;;;;;;;:9;:27::i;25235:472::-;-1:-1:-1;;;;;;;;;;;;;;;;;25338:16:0;25346:7;29545:4;29579:12;-1:-1:-1;29569:22:0;29488:111;25338:16;25330:71;;;;-1:-1:-1;;;25330:71:0;;11601:2:1;25330:71:0;;;11583:21:1;11640:2;11620:18;;;11613:30;11679:34;11659:18;;;11652:62;-1:-1:-1;;;11730:18:1;;;11723:40;11780:19;;25330:71:0;11399:406:1;25330:71:0;25434:7;25414:216;25468:31;25502:17;;;:11;:17;;;;;;;;;25468:51;;;;;;;;;-1:-1:-1;;;;;25468:51:0;;;;;-1:-1:-1;;;25468:51:0;;;;;;;;;;;;25538:28;25534:85;;25594:9;25235:472;-1:-1:-1;;;25235:472:0:o;25534:85::-;-1:-1:-1;25445:6:0;;;;:::i;:::-;;;;25414:216;;38653:191;38746:6;;;-1:-1:-1;;;;;38763:17:0;;;-1:-1:-1;;;;;;38763:17:0;;;;;;;38796:40;;38746:6;;;38763:17;38746:6;;38796:40;;38727:16;;38796:40;38716:128;38653:191;:::o;34293:804::-;34448:4;-1:-1:-1;;;;;34469:13:0;;3300:20;3348:8;34465:625;;34505:72;;-1:-1:-1;;;34505:72:0;;-1:-1:-1;;;;;34505:36:0;;;;;:72;;20792:10;;34556:4;;34562:7;;34571:5;;34505:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34505:72:0;;;;;;;;-1:-1:-1;;34505:72:0;;;;;;;;;;;;:::i;:::-;;;34501:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34751:13:0;;34747:273;;34794:61;;-1:-1:-1;;;34794:61:0;;;;;;;:::i;34747:273::-;34970:6;34964:13;34955:6;34951:2;34947:15;34940:38;34501:534;-1:-1:-1;;;;;;34628:55:0;-1:-1:-1;;;34628:55:0;;-1:-1:-1;34621:62:0;;34465:625;-1:-1:-1;35074:4:0;34465:625;34293:804;;;;;;:::o;398:723::-;454:13;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;40461:675;40544:7;40587:4;40544:7;40602:497;40626:5;:12;40622:1;:16;40602:497;;;40660:20;40683:5;40689:1;40683:8;;;;;;;;:::i;:::-;;;;;;;40660:31;;40726:12;40710;:28;40706:382;;41212:13;41262:15;;;41298:4;41291:15;;;41345:4;41329:21;;40838:57;;40706:382;;;41212:13;41262:15;;;41298:4;41291:15;;;41345:4;41329:21;;41015:57;;40706:382;-1:-1:-1;40640:3:0;;;;:::i;:::-;;;;40602:497;;;-1:-1:-1;41116:12:0;40461:675;-1:-1:-1;;;40461:675:0:o;29988:1389::-;30111:20;30134:12;-1:-1:-1;;;;;30165:16:0;;30157:62;;;;-1:-1:-1;;;30157:62:0;;18710:2:1;30157:62:0;;;18692:21:1;18749:2;18729:18;;;18722:30;18788:34;18768:18;;;18761:62;-1:-1:-1;;;18839:18:1;;;18832:31;18880:19;;30157:62:0;18508:397:1;30157:62:0;30364:21;30372:12;29545:4;29579:12;-1:-1:-1;29569:22:0;29488:111;30364:21;30363:22;30355:64;;;;-1:-1:-1;;;30355:64:0;;18352:2:1;30355:64:0;;;18334:21:1;18391:2;18371:18;;;18364:30;18430:31;18410:18;;;18403:59;18479:18;;30355:64:0;18150:353:1;30355:64:0;30449:1;30438:8;:12;30430:60;;;;-1:-1:-1;;;30430:60:0;;17528:2:1;30430:60:0;;;17510:21:1;17567:2;17547:18;;;17540:30;17606:34;17586:18;;;17579:62;-1:-1:-1;;;17657:18:1;;;17650:33;17700:19;;30430:60:0;17326:399:1;30430:60:0;-1:-1:-1;;;;;30610:16:0;;30577:30;30610:16;;;:12;:16;;;;;;;;;30577:49;;;;;;;;;-1:-1:-1;;;;;30577:49:0;;;;;-1:-1:-1;;;30577:49:0;;;;;;;;;;;30656:135;;;;;;;;30682:19;;30577:49;;30656:135;;;30682:39;;30712:8;;30682:39;:::i;:::-;-1:-1:-1;;;;;30656:135:0;;;;;30771:8;30736:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;30656:135:0;;;;;;-1:-1:-1;;;;;30637:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;30637:154:0;;;;;;;;;;;;30830:43;;;;;;;;;;;30856:15;30830:43;;;;;;;;30802:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;30802:71:0;-1:-1:-1;;;;;;30802:71:0;;;;;;;;;;;;;;;;;;30814:12;;30934:325;30958:8;30954:1;:12;30934:325;;;30993:38;;31018:12;;-1:-1:-1;;;;;30993:38:0;;;31010:1;;30993:38;;31010:1;;30993:38;31072:59;31103:1;31107:2;31111:12;31125:5;31072:22;:59::i;:::-;31046:172;;;;-1:-1:-1;;;31046:172:0;;;;;;;:::i;:::-;31233:14;;;;:::i;:::-;;;;30968:3;;;;;:::i;:::-;;;;30934:325;;;-1:-1:-1;31271:12:0;:27;;;31309:60;42918:709;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:367::-;713:8;723:6;777:3;770:4;762:6;758:17;754:27;744:55;;795:1;792;785:12;744:55;-1:-1:-1;818:20:1;;861:18;850:30;;847:50;;;893:1;890;883:12;847:50;930:4;922:6;918:17;906:29;;990:3;983:4;973:6;970:1;966:14;958:6;954:27;950:38;947:47;944:67;;;1007:1;1004;997:12;944:67;650:367;;;;;:::o;1022:156::-;1088:20;;1148:4;1137:16;;1127:27;;1117:55;;1168:1;1165;1158:12;1117:55;1022:156;;;:::o;1183:247::-;1242:6;1295:2;1283:9;1274:7;1270:23;1266:32;1263:52;;;1311:1;1308;1301:12;1263:52;1350:9;1337:23;1369:31;1394:5;1369:31;:::i;:::-;1419:5;1183:247;-1:-1:-1;;;1183:247:1:o;1695:388::-;1763:6;1771;1824:2;1812:9;1803:7;1799:23;1795:32;1792:52;;;1840:1;1837;1830:12;1792:52;1879:9;1866:23;1898:31;1923:5;1898:31;:::i;:::-;1948:5;-1:-1:-1;2005:2:1;1990:18;;1977:32;2018:33;1977:32;2018:33;:::i;:::-;2070:7;2060:17;;;1695:388;;;;;:::o;2088:456::-;2165:6;2173;2181;2234:2;2222:9;2213:7;2209:23;2205:32;2202:52;;;2250:1;2247;2240:12;2202:52;2289:9;2276:23;2308:31;2333:5;2308:31;:::i;:::-;2358:5;-1:-1:-1;2415:2:1;2400:18;;2387:32;2428:33;2387:32;2428:33;:::i;:::-;2088:456;;2480:7;;-1:-1:-1;;;2534:2:1;2519:18;;;;2506:32;;2088:456::o;2549:794::-;2644:6;2652;2660;2668;2721:3;2709:9;2700:7;2696:23;2692:33;2689:53;;;2738:1;2735;2728:12;2689:53;2777:9;2764:23;2796:31;2821:5;2796:31;:::i;:::-;2846:5;-1:-1:-1;2903:2:1;2888:18;;2875:32;2916:33;2875:32;2916:33;:::i;:::-;2968:7;-1:-1:-1;3022:2:1;3007:18;;2994:32;;-1:-1:-1;3077:2:1;3062:18;;3049:32;3104:18;3093:30;;3090:50;;;3136:1;3133;3126:12;3090:50;3159:22;;3212:4;3204:13;;3200:27;-1:-1:-1;3190:55:1;;3241:1;3238;3231:12;3190:55;3264:73;3329:7;3324:2;3311:16;3306:2;3302;3298:11;3264:73;:::i;:::-;3254:83;;;2549:794;;;;;;;:::o;3348:416::-;3413:6;3421;3474:2;3462:9;3453:7;3449:23;3445:32;3442:52;;;3490:1;3487;3480:12;3442:52;3529:9;3516:23;3548:31;3573:5;3548:31;:::i;:::-;3598:5;-1:-1:-1;3655:2:1;3640:18;;3627:32;3697:15;;3690:23;3678:36;;3668:64;;3728:1;3725;3718:12;3769:315;3837:6;3845;3898:2;3886:9;3877:7;3873:23;3869:32;3866:52;;;3914:1;3911;3904:12;3866:52;3953:9;3940:23;3972:31;3997:5;3972:31;:::i;:::-;4022:5;4074:2;4059:18;;;;4046:32;;-1:-1:-1;;;3769:315:1:o;4089:505::-;4184:6;4192;4200;4253:2;4241:9;4232:7;4228:23;4224:32;4221:52;;;4269:1;4266;4259:12;4221:52;4309:9;4296:23;4342:18;4334:6;4331:30;4328:50;;;4374:1;4371;4364:12;4328:50;4413:70;4475:7;4466:6;4455:9;4451:22;4413:70;:::i;:::-;4502:8;;4387:96;;-1:-1:-1;4584:2:1;4569:18;;;;4556:32;;4089:505;-1:-1:-1;;;;4089:505:1:o;4599:180::-;4658:6;4711:2;4699:9;4690:7;4686:23;4682:32;4679:52;;;4727:1;4724;4717:12;4679:52;-1:-1:-1;4750:23:1;;4599:180;-1:-1:-1;4599:180:1:o;4784:245::-;4842:6;4895:2;4883:9;4874:7;4870:23;4866:32;4863:52;;;4911:1;4908;4901:12;4863:52;4950:9;4937:23;4969:30;4993:5;4969:30;:::i;5034:249::-;5103:6;5156:2;5144:9;5135:7;5131:23;5127:32;5124:52;;;5172:1;5169;5162:12;5124:52;5204:9;5198:16;5223:30;5247:5;5223:30;:::i;5288:450::-;5357:6;5410:2;5398:9;5389:7;5385:23;5381:32;5378:52;;;5426:1;5423;5416:12;5378:52;5466:9;5453:23;5499:18;5491:6;5488:30;5485:50;;;5531:1;5528;5521:12;5485:50;5554:22;;5607:4;5599:13;;5595:27;-1:-1:-1;5585:55:1;;5636:1;5633;5626:12;5585:55;5659:73;5724:7;5719:2;5706:16;5701:2;5697;5693:11;5659:73;:::i;5928:182::-;5985:6;6038:2;6026:9;6017:7;6013:23;6009:32;6006:52;;;6054:1;6051;6044:12;6006:52;6077:27;6094:9;6077:27;:::i;6115:507::-;6208:6;6216;6224;6277:2;6265:9;6256:7;6252:23;6248:32;6245:52;;;6293:1;6290;6283:12;6245:52;6316:27;6333:9;6316:27;:::i;:::-;6306:37;;6394:2;6383:9;6379:18;6366:32;6421:18;6413:6;6410:30;6407:50;;;6453:1;6450;6443:12;6407:50;6492:70;6554:7;6545:6;6534:9;6530:22;6492:70;:::i;:::-;6115:507;;6581:8;;-1:-1:-1;6466:96:1;;-1:-1:-1;;;;6115:507:1:o;6627:257::-;6668:3;6706:5;6700:12;6733:6;6728:3;6721:19;6749:63;6805:6;6798:4;6793:3;6789:14;6782:4;6775:5;6771:16;6749:63;:::i;:::-;6866:2;6845:15;-1:-1:-1;;6841:29:1;6832:39;;;;6873:4;6828:50;;6627:257;-1:-1:-1;;6627:257:1:o;6889:185::-;6931:3;6969:5;6963:12;6984:52;7029:6;7024:3;7017:4;7010:5;7006:16;6984:52;:::i;:::-;7052:16;;;;;6889:185;-1:-1:-1;;6889:185:1:o;7431:1301::-;7708:3;7737:1;7770:6;7764:13;7800:3;7822:1;7850:9;7846:2;7842:18;7832:28;;7910:2;7899:9;7895:18;7932;7922:61;;7976:4;7968:6;7964:17;7954:27;;7922:61;8002:2;8050;8042:6;8039:14;8019:18;8016:38;8013:165;;;-1:-1:-1;;;8077:33:1;;8133:4;8130:1;8123:15;8163:4;8084:3;8151:17;8013:165;8194:18;8221:104;;;;8339:1;8334:320;;;;8187:467;;8221:104;-1:-1:-1;;8254:24:1;;8242:37;;8299:16;;;;-1:-1:-1;8221:104:1;;8334:320;20948:1;20941:14;;;20985:4;20972:18;;8429:1;8443:165;8457:6;8454:1;8451:13;8443:165;;;8535:14;;8522:11;;;8515:35;8578:16;;;;8472:10;;8443:165;;;8447:3;;8637:6;8632:3;8628:16;8621:23;;8187:467;;;;;;;8670:56;8695:30;8721:3;8713:6;8695:30;:::i;:::-;-1:-1:-1;;;7139:20:1;;7184:1;7175:11;;7079:113;8670:56;8663:63;7431:1301;-1:-1:-1;;;;;7431:1301:1:o;9155:488::-;-1:-1:-1;;;;;9424:15:1;;;9406:34;;9476:15;;9471:2;9456:18;;9449:43;9523:2;9508:18;;9501:34;;;9571:3;9566:2;9551:18;;9544:31;;;9349:4;;9592:45;;9617:19;;9609:6;9592:45;:::i;:::-;9584:53;9155:488;-1:-1:-1;;;;;;9155:488:1:o;10022:219::-;10171:2;10160:9;10153:21;10134:4;10191:44;10231:2;10220:9;10216:18;10208:6;10191:44;:::i;12620:342::-;12822:2;12804:21;;;12861:2;12841:18;;;12834:30;-1:-1:-1;;;12895:2:1;12880:18;;12873:48;12953:2;12938:18;;12620:342::o;12967:405::-;13169:2;13151:21;;;13208:2;13188:18;;;13181:30;13247:34;13242:2;13227:18;;13220:62;-1:-1:-1;;;13313:2:1;13298:18;;13291:39;13362:3;13347:19;;12967:405::o;14149:399::-;14351:2;14333:21;;;14390:2;14370:18;;;14363:30;14429:34;14424:2;14409:18;;14402:62;-1:-1:-1;;;14495:2:1;14480:18;;14473:33;14538:3;14523:19;;14149:399::o;15372:356::-;15574:2;15556:21;;;15593:18;;;15586:30;15652:34;15647:2;15632:18;;15625:62;15719:2;15704:18;;15372:356::o;17730:415::-;17932:2;17914:21;;;17971:2;17951:18;;;17944:30;18010:34;18005:2;17990:18;;17983:62;-1:-1:-1;;;18076:2:1;18061:18;;18054:49;18135:3;18120:19;;17730:415::o;19325:344::-;19527:2;19509:21;;;19566:2;19546:18;;;19539:30;-1:-1:-1;;;19600:2:1;19585:18;;19578:50;19660:2;19645:18;;19325:344::o;21001:253::-;21041:3;-1:-1:-1;;;;;21130:2:1;21127:1;21123:10;21160:2;21157:1;21153:10;21191:3;21187:2;21183:12;21178:3;21175:21;21172:47;;;21199:18;;:::i;:::-;21235:13;;21001:253;-1:-1:-1;;;;21001:253:1:o;21259:128::-;21299:3;21330:1;21326:6;21323:1;21320:13;21317:39;;;21336:18;;:::i;:::-;-1:-1:-1;21372:9:1;;21259:128::o;21392:204::-;21430:3;21466:4;21463:1;21459:12;21498:4;21495:1;21491:12;21533:3;21527:4;21523:14;21518:3;21515:23;21512:49;;;21541:18;;:::i;:::-;21577:13;;21392:204;-1:-1:-1;;;21392:204:1:o;21601:120::-;21641:1;21667;21657:35;;21672:18;;:::i;:::-;-1:-1:-1;21706:9:1;;21601:120::o;21726:168::-;21766:7;21832:1;21828;21824:6;21820:14;21817:1;21814:21;21809:1;21802:9;21795:17;21791:45;21788:71;;;21839:18;;:::i;:::-;-1:-1:-1;21879:9:1;;21726:168::o;21899:125::-;21939:4;21967:1;21964;21961:8;21958:34;;;21972:18;;:::i;:::-;-1:-1:-1;22009:9:1;;21899:125::o;22029:258::-;22101:1;22111:113;22125:6;22122:1;22119:13;22111:113;;;22201:11;;;22195:18;22182:11;;;22175:39;22147:2;22140:10;22111:113;;;22242:6;22239:1;22236:13;22233:48;;;-1:-1:-1;;22277:1:1;22259:16;;22252:27;22029:258::o;22292:136::-;22331:3;22359:5;22349:39;;22368:18;;:::i;:::-;-1:-1:-1;;;22404:18:1;;22292:136::o;22433:380::-;22512:1;22508:12;;;;22555;;;22576:61;;22630:4;22622:6;22618:17;22608:27;;22576:61;22683:2;22675:6;22672:14;22652:18;22649:38;22646:161;;;22729:10;22724:3;22720:20;22717:1;22710:31;22764:4;22761:1;22754:15;22792:4;22789:1;22782:15;22646:161;;22433:380;;;:::o;22818:135::-;22857:3;-1:-1:-1;;22878:17:1;;22875:43;;;22898:18;;:::i;:::-;-1:-1:-1;22945:1:1;22934:13;;22818:135::o;22958:175::-;22995:3;23039:4;23032:5;23028:16;23068:4;23059:7;23056:17;23053:43;;;23076:18;;:::i;:::-;23125:1;23112:15;;22958:175;-1:-1:-1;;22958:175:1:o;23138:112::-;23170:1;23196;23186:35;;23201:18;;:::i;:::-;-1:-1:-1;23235:9:1;;23138:112::o;23255:127::-;23316:10;23311:3;23307:20;23304:1;23297:31;23347:4;23344:1;23337:15;23371:4;23368:1;23361:15;23387:127;23448:10;23443:3;23439:20;23436:1;23429:31;23479:4;23476:1;23469:15;23503:4;23500:1;23493:15;23519:127;23580:10;23575:3;23571:20;23568:1;23561:31;23611:4;23608:1;23601:15;23635:4;23632:1;23625:15;23651:127;23712:10;23707:3;23703:20;23700:1;23693:31;23743:4;23740:1;23733:15;23767:4;23764:1;23757:15;23783:131;-1:-1:-1;;;;;23858:31:1;;23848:42;;23838:70;;23904:1;23901;23894:12;23919:131;-1:-1:-1;;;;;;23993:32:1;;23983:43;;23973:71;;24040:1;24037;24030:12

Swarm Source

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