ETH Price: $3,808.53 (+4.93%)

Token

Rektbayc (Rektbayc)
 

Overview

Max Total Supply

219 Rektbayc

Holders

29

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
3 Rektbayc
0x95236e749b591d3dad97a4447319de7ea804b8b9
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:
RektbaycFomoClub

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-25
*/

// 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 RektbaycFomoClub is ERC721A, Ownable {
  using Strings for uint256;
  uint256 public presalePrice = 0 ether;
  uint256 public mintPrice = 0.009 ether;
  uint256 public supply = 1222;
  string private baseURI = "ipfs://QdDSFDDFmUdsdDSDSF8LCbJWRNm7DSF5c/";
  bytes32 public wlMerkleRoot;
  uint8 public phase = 1;
  uint8 public maxBuy = 5;
  uint8 public wlMax = 1;

  mapping(address => uint8)  public walletBuys;

  constructor() ERC721A("Rektbayc", "Rektbayc") {
  }

  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 wlMint(uint8 _mintAmount, bytes32[] calldata _merkleProof) public payable {
    // Verify whitelist requirements
    require(phase == 1, "Sale has not started");
    require(walletBuys[msg.sender] + _mintAmount <= wlMax, "Max presale minted for this wallet!");
    require(msg.value >= presalePrice * _mintAmount, "Insufficient funds");
    
    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
    require(MerkleProof.verify(_merkleProof, wlMerkleRoot, leaf), "Invalid proof!");

    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 reserve(uint256 _supply) external onlyOwner {
      supply = _supply;
  }

  function changeWLRootHash(bytes32 _rootHash) external onlyOwner {
    wlMerkleRoot = _rootHash;
  }

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

  function withdrawAll() external onlyOwner{
        uint256 balance = address(this).balance;
        require(balance > 0, "Insufficent balance");
        
        address[1] memory addresses = [
            0x9974F0795712E2c1da6054fa557C501F9427Cf1A
 
        ];

        uint32[5] memory shares = [
            uint32(50),
            uint32(40),
            uint32(330),
            uint32(330),
            uint32(250)
        ];

        for (uint32 i = 0; i < addresses.length; i++) {
            uint256 amount = i == addresses.length - 1 ? address(this).balance : balance * shares[i] / 1000;
            _widthdraw(addresses[i], amount);
        }
  }
 
  //Withdraw balance from contract
  function _widthdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{ value: _amount }("");
        require(success, "Failed to withdraw Ether");
  }

}

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":"changeWLRootHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"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":"uint256","name":"_supply","type":"uint256"}],"name":"reserve","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":"address","name":"","type":"address"}],"name":"walletBuys","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlMax","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"wlMint","outputs":[],"stateMutability":"payable","type":"function"}]

6000600855661ff973cafa80006009556104c6600a5560e0604052602960808181529062002bd660a03980516200003f91600b9160209091019062000123565b50600d805462ffffff1916620105011790553480156200005e57600080fd5b5060408051808201825260088082526752656b746261796360c01b602080840182815285518087019096529285528401528151919291620000a29160019162000123565b508051620000b890600290602084019062000123565b5050600160005550620000cb33620000d1565b62000206565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013190620001c9565b90600052602060002090601f016020900481019282620001555760008555620001a0565b82601f106200017057805160ff1916838001178555620001a0565b82800160010185558215620001a0579182015b82811115620001a057825182559160200191906001019062000183565b50620001ae929150620001b2565b5090565b5b80821115620001ae5760008155600101620001b3565b600181811c90821680620001de57607f821691505b602082108114156200020057634e487b7160e01b600052602260045260246000fd5b50919050565b6129c080620002166000396000f3fe60806040526004361061023a5760003560e01c8063714c53981161012e578063b88d4fde116100ab578063dfcf15b01161006f578063dfcf15b014610680578063e985e9c5146106a0578063f2fde38b146106e9578063f4a0a52814610709578063fc0ab6e21461072957600080fd5b8063b88d4fde146105d0578063c03afb59146105f0578063c87b56dd14610610578063dbdf2dc014610630578063dea96c981461065057600080fd5b80638da5cb5b116100f25780638da5cb5b1461055057806395d89b411461056e578063a0712d6814610583578063a22cb46514610596578063b1c9fe6e146105b657600080fd5b8063714c5398146104d1578063715018a6146104e6578063819b25ba146104fb578063853828b61461051b5780638b9defa11461053057600080fd5b806342842e0e116101bc5780636352211e116101805780636352211e146104355780636817c76c146104555780636f9fb98a1461046b57806370a082311461048057806370db69d6146104a057600080fd5b806342842e0e1461039f5780634f6ccce7146103bf57806353f6fa79146103df57806354c06aee146103ff57806355f804b31461041557600080fd5b8063095ea7b311610203578063095ea7b31461030857806318160ddd1461032a57806323b872dd1461033f5780632f745c591461035f5780633549345e1461037f57600080fd5b80620e7fa81461023f57806301ffc9a714610268578063047fc9aa1461029857806306fdde03146102ae578063081812fc146102d0575b600080fd5b34801561024b57600080fd5b5061025560085481565b6040519081526020015b60405180910390f35b34801561027457600080fd5b5061028861028336600461221c565b61073c565b604051901515815260200161025f565b3480156102a457600080fd5b50610255600a5481565b3480156102ba57600080fd5b506102c36107a9565b60405161025f9190612298565b3480156102dc57600080fd5b506102f06102eb3660046122ab565b61083b565b6040516001600160a01b03909116815260200161025f565b34801561031457600080fd5b506103286103233660046122e0565b6108cb565b005b34801561033657600080fd5b506102556109e3565b34801561034b57600080fd5b5061032861035a36600461230a565b6109f9565b34801561036b57600080fd5b5061025561037a3660046122e0565b610a04565b34801561038b57600080fd5b5061032861039a3660046122ab565b610b7c565b3480156103ab57600080fd5b506103286103ba36600461230a565b610bab565b3480156103cb57600080fd5b506102556103da3660046122ab565b610bc6565b3480156103eb57600080fd5b506103286103fa3660046122ab565b610c2e565b34801561040b57600080fd5b50610255600c5481565b34801561042157600080fd5b506103286104303660046123d2565b610c5d565b34801561044157600080fd5b506102f06104503660046122ab565b610c9e565b34801561046157600080fd5b5061025560095481565b34801561047757600080fd5b50610255610cb0565b34801561048c57600080fd5b5061025561049b36600461241b565b610ce2565b3480156104ac57600080fd5b50600d546104bf90610100900460ff1681565b60405160ff909116815260200161025f565b3480156104dd57600080fd5b506102c3610d73565b3480156104f257600080fd5b50610328610d82565b34801561050757600080fd5b506103286105163660046122ab565b610db8565b34801561052757600080fd5b50610328610de7565b34801561053c57600080fd5b50600d546104bf9062010000900460ff1681565b34801561055c57600080fd5b506007546001600160a01b03166102f0565b34801561057a57600080fd5b506102c3610f52565b6103286105913660046122ab565b610f61565b3480156105a257600080fd5b506103286105b1366004612436565b6110f1565b3480156105c257600080fd5b50600d546104bf9060ff1681565b3480156105dc57600080fd5b506103286105eb366004612472565b6111b6565b3480156105fc57600080fd5b5061032861060b3660046124ff565b6111e9565b34801561061c57600080fd5b506102c361062b3660046122ab565b611229565b34801561063c57600080fd5b5061032861064b3660046124ff565b6112f6565b34801561065c57600080fd5b506104bf61066b36600461241b565b600e6020526000908152604090205460ff1681565b34801561068c57600080fd5b5061032861069b366004612566565b61133c565b3480156106ac57600080fd5b506102886106bb3660046125b2565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106f557600080fd5b5061032861070436600461241b565b6113b3565b34801561071557600080fd5b506103286107243660046122ab565b61144b565b6103286107373660046125e5565b61147a565b60006001600160e01b031982166380ac58cd60e01b148061076d57506001600160e01b03198216635b5e139f60e01b145b8061078857506001600160e01b0319821663780e9d6360e01b145b806107a357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107b890612638565b80601f01602080910402602001604051908101604052809291908181526020018280546107e490612638565b80156108315780601f1061080657610100808354040283529160200191610831565b820191906000526020600020905b81548152906001019060200180831161081457829003601f168201915b5050505050905090565b6000610848826000541190565b6108af5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108d682610c9e565b9050806001600160a01b0316836001600160a01b031614156109455760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108a6565b336001600160a01b0382161480610961575061096181336106bb565b6109d35760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108a6565b6109de8383836116a1565b505050565b600060016000546109f49190612689565b905090565b6109de8383836116fd565b6000610a0f83610ce2565b8210610a685760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108a6565b6000610a726109e3565b905060008060005b83811015610b1c576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610acd57805192505b876001600160a01b0316836001600160a01b03161415610b095786841415610afb575093506107a392505050565b83610b05816126a0565b9450505b5080610b14816126a0565b915050610a7a565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108a6565b6007546001600160a01b03163314610ba65760405162461bcd60e51b81526004016108a6906126bb565b600855565b6109de838383604051806020016040528060008152506111b6565b6000610bd06109e3565b8210610c2a5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108a6565b5090565b6007546001600160a01b03163314610c585760405162461bcd60e51b81526004016108a6906126bb565b600c55565b6007546001600160a01b03163314610c875760405162461bcd60e51b81526004016108a6906126bb565b8051610c9a90600b906020840190612176565b5050565b6000610ca982611a44565b5192915050565b6007546000906001600160a01b03163314610cdd5760405162461bcd60e51b81526004016108a6906126bb565b504790565b60006001600160a01b038216610d4e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108a6565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600b80546107b890612638565b6007546001600160a01b03163314610dac5760405162461bcd60e51b81526004016108a6906126bb565b610db66000611b24565b565b6007546001600160a01b03163314610de25760405162461bcd60e51b81526004016108a6906126bb565b600a55565b6007546001600160a01b03163314610e115760405162461bcd60e51b81526004016108a6906126bb565b4780610e555760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b60448201526064016108a6565b6040805160208082018352739974f0795712e2c1da6054fa557c501f9427cf1a8252825160a0810184526032815260289181019190915261014a928101839052606081019290925260fa60808301529060005b60018163ffffffff161015610f4c576000610ec4600180612689565b8263ffffffff1614610f0f576103e8838363ffffffff1660058110610eeb57610eeb6126f0565b6020020151610f009063ffffffff1687612706565b610f0a919061273b565b610f11565b475b9050610f39848363ffffffff1660018110610f2e57610f2e6126f0565b602002015182611b76565b5080610f448161274f565b915050610ea8565b50505050565b6060600280546107b890612638565b600d54600260ff9091161015610fb05760405162461bcd60e51b815260206004820152601460248201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b60448201526064016108a6565b600a5481610fbc6109e3565b610fc69190612773565b11156110265760405162461bcd60e51b815260206004820152602960248201527f596f752063616e2774206d696e74206d6f7265207468656e2074686520746f74604482015268616c20737570706c7960b81b60648201526084016108a6565b600d54336000908152600e602052604090205460ff61010090920482169161105091849116612773565b11156110925760405162461bcd60e51b8152602060048201526011602482015270109d5e481b1a5b5a5d081c995858da1959607a1b60448201526064016108a6565b806009546110a09190612706565b3410156110e45760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016108a6565b6110ee3382611c19565b50565b6001600160a01b03821633141561114a5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108a6565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111c18484846116fd565b6111cd84848484611c33565b610f4c5760405162461bcd60e51b81526004016108a69061278b565b6007546001600160a01b031633146112135760405162461bcd60e51b81526004016108a6906126bb565b600d805460ff191660ff92909216919091179055565b6060611236826000541190565b61129a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108a6565b6000600b80546112a990612638565b9050116112c557604051806020016040528060008152506107a3565b600b6112d083611d32565b6040516020016112e19291906127fa565b60405160208183030381529060405292915050565b6007546001600160a01b031633146113205760405162461bcd60e51b81526004016108a6906126bb565b600d805460ff9092166101000261ff0019909216919091179055565b6007546001600160a01b031633146113665760405162461bcd60e51b81526004016108a6906126bb565b60005b82811015610f4c576113a1848483818110611386576113866126f0565b905060200201602081019061139b919061241b565b83611c19565b806113ab816126a0565b915050611369565b6007546001600160a01b031633146113dd5760405162461bcd60e51b81526004016108a6906126bb565b6001600160a01b0381166114425760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a6565b6110ee81611b24565b6007546001600160a01b031633146114755760405162461bcd60e51b81526004016108a6906126bb565b600955565b600d5460ff166001146114c65760405162461bcd60e51b815260206004820152601460248201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b60448201526064016108a6565b600d54336000908152600e602052604090205460ff620100009092048216916114f1918691166128b5565b60ff16111561154e5760405162461bcd60e51b815260206004820152602360248201527f4d61782070726573616c65206d696e74656420666f7220746869732077616c6c60448201526265742160e81b60648201526084016108a6565b8260ff1660085461155f9190612706565b3410156115a35760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016108a6565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061161d83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c549150849050611e30565b61165a5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b60448201526064016108a6565b336000908152600e60205260408120805486929061167c90849060ff166128b5565b92506101000a81548160ff021916908360ff160217905550610f4c338560ff16611c19565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061170882611a44565b80519091506000906001600160a01b0316336001600160a01b0316148061173f5750336117348461083b565b6001600160a01b0316145b806117515750815161175190336106bb565b9050806117bb5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108a6565b846001600160a01b031682600001516001600160a01b03161461182f5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108a6565b6001600160a01b0384166118935760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108a6565b6118a360008484600001516116a1565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b95909216949094021790925590611968908590612773565b6000818152600360205260409020549091506001600160a01b03166119fa57611992816000541190565b156119fa5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611a63826000541190565b611ac25760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108a6565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b11579392505050565b5080611b1c816128da565b915050611ac4565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611bc3576040519150601f19603f3d011682016040523d82523d6000602084013e611bc8565b606091505b50509050806109de5760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f207769746864726177204574686572000000000000000060448201526064016108a6565b610c9a828260405180602001604052806000815250611e46565b60006001600160a01b0384163b15611d2657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c779033908990889088906004016128f1565b6020604051808303816000875af1925050508015611cb2575060408051601f3d908101601f19168201909252611caf9181019061292e565b60015b611d0c573d808015611ce0576040519150601f19603f3d011682016040523d82523d6000602084013e611ce5565b606091505b508051611d045760405162461bcd60e51b81526004016108a69061278b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d2a565b5060015b949350505050565b606081611d565750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d805780611d6a816126a0565b9150611d799050600a8361273b565b9150611d5a565b60008167ffffffffffffffff811115611d9b57611d9b612346565b6040519080825280601f01601f191660200182016040528015611dc5576020820181803683370190505b5090505b8415611d2a57611dda600183612689565b9150611de7600a8661294b565b611df2906030612773565b60f81b818381518110611e0757611e076126f0565b60200101906001600160f81b031916908160001a905350611e29600a8661273b565b9450611dc9565b600082611e3d8584612102565b14949350505050565b6000546001600160a01b038416611ea95760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108a6565b611eb4816000541190565b15611f015760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108a6565b60008311611f5d5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b60648201526084016108a6565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611fb990879061295f565b6001600160801b03168152602001858360200151611fd7919061295f565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156120f75760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120bb6000888488611c33565b6120d75760405162461bcd60e51b81526004016108a69061278b565b816120e1816126a0565b92505080806120ef906126a0565b91505061206e565b506000819055611a3c565b600081815b845181101561216e576000858281518110612124576121246126f0565b6020026020010151905080831161214a576000838152602082905260409020925061215b565b600081815260208490526040902092505b5080612166816126a0565b915050612107565b509392505050565b82805461218290612638565b90600052602060002090601f0160209004810192826121a457600085556121ea565b82601f106121bd57805160ff19168380011785556121ea565b828001600101855582156121ea579182015b828111156121ea5782518255916020019190600101906121cf565b50610c2a9291505b80821115610c2a57600081556001016121f2565b6001600160e01b0319811681146110ee57600080fd5b60006020828403121561222e57600080fd5b813561223981612206565b9392505050565b60005b8381101561225b578181015183820152602001612243565b83811115610f4c5750506000910152565b60008151808452612284816020860160208601612240565b601f01601f19169290920160200192915050565b602081526000612239602083018461226c565b6000602082840312156122bd57600080fd5b5035919050565b80356001600160a01b03811681146122db57600080fd5b919050565b600080604083850312156122f357600080fd5b6122fc836122c4565b946020939093013593505050565b60008060006060848603121561231f57600080fd5b612328846122c4565b9250612336602085016122c4565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561237757612377612346565b604051601f8501601f19908116603f0116810190828211818310171561239f5761239f612346565b816040528093508581528686860111156123b857600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156123e457600080fd5b813567ffffffffffffffff8111156123fb57600080fd5b8201601f8101841361240c57600080fd5b611d2a8482356020840161235c565b60006020828403121561242d57600080fd5b612239826122c4565b6000806040838503121561244957600080fd5b612452836122c4565b91506020830135801515811461246757600080fd5b809150509250929050565b6000806000806080858703121561248857600080fd5b612491856122c4565b935061249f602086016122c4565b925060408501359150606085013567ffffffffffffffff8111156124c257600080fd5b8501601f810187136124d357600080fd5b6124e28782356020840161235c565b91505092959194509250565b803560ff811681146122db57600080fd5b60006020828403121561251157600080fd5b612239826124ee565b60008083601f84011261252c57600080fd5b50813567ffffffffffffffff81111561254457600080fd5b6020830191508360208260051b850101111561255f57600080fd5b9250929050565b60008060006040848603121561257b57600080fd5b833567ffffffffffffffff81111561259257600080fd5b61259e8682870161251a565b909790965060209590950135949350505050565b600080604083850312156125c557600080fd5b6125ce836122c4565b91506125dc602084016122c4565b90509250929050565b6000806000604084860312156125fa57600080fd5b612603846124ee565b9250602084013567ffffffffffffffff81111561261f57600080fd5b61262b8682870161251a565b9497909650939450505050565b600181811c9082168061264c57607f821691505b6020821081141561266d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008282101561269b5761269b612673565b500390565b60006000198214156126b4576126b4612673565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600081600019048311821515161561272057612720612673565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261274a5761274a612725565b500490565b600063ffffffff8083168181141561276957612769612673565b6001019392505050565b6000821982111561278657612786612673565b500190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600081516127f0818560208601612240565b9290920192915050565b600080845481600182811c91508083168061281657607f831692505b602080841082141561283657634e487b7160e01b86526022600452602486fd5b81801561284a576001811461285b57612888565b60ff19861689528489019650612888565b60008b81526020902060005b868110156128805781548b820152908501908301612867565b505084890196505b5050505050506128ac61289b82866127de565b64173539b7b760d91b815260050190565b95945050505050565b600060ff821660ff84168060ff038211156128d2576128d2612673565b019392505050565b6000816128e9576128e9612673565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129249083018461226c565b9695505050505050565b60006020828403121561294057600080fd5b815161223981612206565b60008261295a5761295a612725565b500690565b60006001600160801b0380831681851680830382111561298157612981612673565b0194935050505056fea2646970667358221220729da0cd051b11bcce163e76afbfd584befba705944610d021cd61f5b87ba0d664736f6c634300080c0033697066733a2f2f51644453464444466d556473644453445346384c43624a57524e6d3744534635632f

Deployed Bytecode

0x60806040526004361061023a5760003560e01c8063714c53981161012e578063b88d4fde116100ab578063dfcf15b01161006f578063dfcf15b014610680578063e985e9c5146106a0578063f2fde38b146106e9578063f4a0a52814610709578063fc0ab6e21461072957600080fd5b8063b88d4fde146105d0578063c03afb59146105f0578063c87b56dd14610610578063dbdf2dc014610630578063dea96c981461065057600080fd5b80638da5cb5b116100f25780638da5cb5b1461055057806395d89b411461056e578063a0712d6814610583578063a22cb46514610596578063b1c9fe6e146105b657600080fd5b8063714c5398146104d1578063715018a6146104e6578063819b25ba146104fb578063853828b61461051b5780638b9defa11461053057600080fd5b806342842e0e116101bc5780636352211e116101805780636352211e146104355780636817c76c146104555780636f9fb98a1461046b57806370a082311461048057806370db69d6146104a057600080fd5b806342842e0e1461039f5780634f6ccce7146103bf57806353f6fa79146103df57806354c06aee146103ff57806355f804b31461041557600080fd5b8063095ea7b311610203578063095ea7b31461030857806318160ddd1461032a57806323b872dd1461033f5780632f745c591461035f5780633549345e1461037f57600080fd5b80620e7fa81461023f57806301ffc9a714610268578063047fc9aa1461029857806306fdde03146102ae578063081812fc146102d0575b600080fd5b34801561024b57600080fd5b5061025560085481565b6040519081526020015b60405180910390f35b34801561027457600080fd5b5061028861028336600461221c565b61073c565b604051901515815260200161025f565b3480156102a457600080fd5b50610255600a5481565b3480156102ba57600080fd5b506102c36107a9565b60405161025f9190612298565b3480156102dc57600080fd5b506102f06102eb3660046122ab565b61083b565b6040516001600160a01b03909116815260200161025f565b34801561031457600080fd5b506103286103233660046122e0565b6108cb565b005b34801561033657600080fd5b506102556109e3565b34801561034b57600080fd5b5061032861035a36600461230a565b6109f9565b34801561036b57600080fd5b5061025561037a3660046122e0565b610a04565b34801561038b57600080fd5b5061032861039a3660046122ab565b610b7c565b3480156103ab57600080fd5b506103286103ba36600461230a565b610bab565b3480156103cb57600080fd5b506102556103da3660046122ab565b610bc6565b3480156103eb57600080fd5b506103286103fa3660046122ab565b610c2e565b34801561040b57600080fd5b50610255600c5481565b34801561042157600080fd5b506103286104303660046123d2565b610c5d565b34801561044157600080fd5b506102f06104503660046122ab565b610c9e565b34801561046157600080fd5b5061025560095481565b34801561047757600080fd5b50610255610cb0565b34801561048c57600080fd5b5061025561049b36600461241b565b610ce2565b3480156104ac57600080fd5b50600d546104bf90610100900460ff1681565b60405160ff909116815260200161025f565b3480156104dd57600080fd5b506102c3610d73565b3480156104f257600080fd5b50610328610d82565b34801561050757600080fd5b506103286105163660046122ab565b610db8565b34801561052757600080fd5b50610328610de7565b34801561053c57600080fd5b50600d546104bf9062010000900460ff1681565b34801561055c57600080fd5b506007546001600160a01b03166102f0565b34801561057a57600080fd5b506102c3610f52565b6103286105913660046122ab565b610f61565b3480156105a257600080fd5b506103286105b1366004612436565b6110f1565b3480156105c257600080fd5b50600d546104bf9060ff1681565b3480156105dc57600080fd5b506103286105eb366004612472565b6111b6565b3480156105fc57600080fd5b5061032861060b3660046124ff565b6111e9565b34801561061c57600080fd5b506102c361062b3660046122ab565b611229565b34801561063c57600080fd5b5061032861064b3660046124ff565b6112f6565b34801561065c57600080fd5b506104bf61066b36600461241b565b600e6020526000908152604090205460ff1681565b34801561068c57600080fd5b5061032861069b366004612566565b61133c565b3480156106ac57600080fd5b506102886106bb3660046125b2565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106f557600080fd5b5061032861070436600461241b565b6113b3565b34801561071557600080fd5b506103286107243660046122ab565b61144b565b6103286107373660046125e5565b61147a565b60006001600160e01b031982166380ac58cd60e01b148061076d57506001600160e01b03198216635b5e139f60e01b145b8061078857506001600160e01b0319821663780e9d6360e01b145b806107a357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107b890612638565b80601f01602080910402602001604051908101604052809291908181526020018280546107e490612638565b80156108315780601f1061080657610100808354040283529160200191610831565b820191906000526020600020905b81548152906001019060200180831161081457829003601f168201915b5050505050905090565b6000610848826000541190565b6108af5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108d682610c9e565b9050806001600160a01b0316836001600160a01b031614156109455760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108a6565b336001600160a01b0382161480610961575061096181336106bb565b6109d35760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108a6565b6109de8383836116a1565b505050565b600060016000546109f49190612689565b905090565b6109de8383836116fd565b6000610a0f83610ce2565b8210610a685760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108a6565b6000610a726109e3565b905060008060005b83811015610b1c576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610acd57805192505b876001600160a01b0316836001600160a01b03161415610b095786841415610afb575093506107a392505050565b83610b05816126a0565b9450505b5080610b14816126a0565b915050610a7a565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108a6565b6007546001600160a01b03163314610ba65760405162461bcd60e51b81526004016108a6906126bb565b600855565b6109de838383604051806020016040528060008152506111b6565b6000610bd06109e3565b8210610c2a5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108a6565b5090565b6007546001600160a01b03163314610c585760405162461bcd60e51b81526004016108a6906126bb565b600c55565b6007546001600160a01b03163314610c875760405162461bcd60e51b81526004016108a6906126bb565b8051610c9a90600b906020840190612176565b5050565b6000610ca982611a44565b5192915050565b6007546000906001600160a01b03163314610cdd5760405162461bcd60e51b81526004016108a6906126bb565b504790565b60006001600160a01b038216610d4e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108a6565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600b80546107b890612638565b6007546001600160a01b03163314610dac5760405162461bcd60e51b81526004016108a6906126bb565b610db66000611b24565b565b6007546001600160a01b03163314610de25760405162461bcd60e51b81526004016108a6906126bb565b600a55565b6007546001600160a01b03163314610e115760405162461bcd60e51b81526004016108a6906126bb565b4780610e555760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b60448201526064016108a6565b6040805160208082018352739974f0795712e2c1da6054fa557c501f9427cf1a8252825160a0810184526032815260289181019190915261014a928101839052606081019290925260fa60808301529060005b60018163ffffffff161015610f4c576000610ec4600180612689565b8263ffffffff1614610f0f576103e8838363ffffffff1660058110610eeb57610eeb6126f0565b6020020151610f009063ffffffff1687612706565b610f0a919061273b565b610f11565b475b9050610f39848363ffffffff1660018110610f2e57610f2e6126f0565b602002015182611b76565b5080610f448161274f565b915050610ea8565b50505050565b6060600280546107b890612638565b600d54600260ff9091161015610fb05760405162461bcd60e51b815260206004820152601460248201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b60448201526064016108a6565b600a5481610fbc6109e3565b610fc69190612773565b11156110265760405162461bcd60e51b815260206004820152602960248201527f596f752063616e2774206d696e74206d6f7265207468656e2074686520746f74604482015268616c20737570706c7960b81b60648201526084016108a6565b600d54336000908152600e602052604090205460ff61010090920482169161105091849116612773565b11156110925760405162461bcd60e51b8152602060048201526011602482015270109d5e481b1a5b5a5d081c995858da1959607a1b60448201526064016108a6565b806009546110a09190612706565b3410156110e45760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016108a6565b6110ee3382611c19565b50565b6001600160a01b03821633141561114a5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108a6565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111c18484846116fd565b6111cd84848484611c33565b610f4c5760405162461bcd60e51b81526004016108a69061278b565b6007546001600160a01b031633146112135760405162461bcd60e51b81526004016108a6906126bb565b600d805460ff191660ff92909216919091179055565b6060611236826000541190565b61129a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108a6565b6000600b80546112a990612638565b9050116112c557604051806020016040528060008152506107a3565b600b6112d083611d32565b6040516020016112e19291906127fa565b60405160208183030381529060405292915050565b6007546001600160a01b031633146113205760405162461bcd60e51b81526004016108a6906126bb565b600d805460ff9092166101000261ff0019909216919091179055565b6007546001600160a01b031633146113665760405162461bcd60e51b81526004016108a6906126bb565b60005b82811015610f4c576113a1848483818110611386576113866126f0565b905060200201602081019061139b919061241b565b83611c19565b806113ab816126a0565b915050611369565b6007546001600160a01b031633146113dd5760405162461bcd60e51b81526004016108a6906126bb565b6001600160a01b0381166114425760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a6565b6110ee81611b24565b6007546001600160a01b031633146114755760405162461bcd60e51b81526004016108a6906126bb565b600955565b600d5460ff166001146114c65760405162461bcd60e51b815260206004820152601460248201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b60448201526064016108a6565b600d54336000908152600e602052604090205460ff620100009092048216916114f1918691166128b5565b60ff16111561154e5760405162461bcd60e51b815260206004820152602360248201527f4d61782070726573616c65206d696e74656420666f7220746869732077616c6c60448201526265742160e81b60648201526084016108a6565b8260ff1660085461155f9190612706565b3410156115a35760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016108a6565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061161d83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c549150849050611e30565b61165a5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b60448201526064016108a6565b336000908152600e60205260408120805486929061167c90849060ff166128b5565b92506101000a81548160ff021916908360ff160217905550610f4c338560ff16611c19565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061170882611a44565b80519091506000906001600160a01b0316336001600160a01b0316148061173f5750336117348461083b565b6001600160a01b0316145b806117515750815161175190336106bb565b9050806117bb5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108a6565b846001600160a01b031682600001516001600160a01b03161461182f5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108a6565b6001600160a01b0384166118935760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108a6565b6118a360008484600001516116a1565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b95909216949094021790925590611968908590612773565b6000818152600360205260409020549091506001600160a01b03166119fa57611992816000541190565b156119fa5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611a63826000541190565b611ac25760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108a6565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b11579392505050565b5080611b1c816128da565b915050611ac4565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611bc3576040519150601f19603f3d011682016040523d82523d6000602084013e611bc8565b606091505b50509050806109de5760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f207769746864726177204574686572000000000000000060448201526064016108a6565b610c9a828260405180602001604052806000815250611e46565b60006001600160a01b0384163b15611d2657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c779033908990889088906004016128f1565b6020604051808303816000875af1925050508015611cb2575060408051601f3d908101601f19168201909252611caf9181019061292e565b60015b611d0c573d808015611ce0576040519150601f19603f3d011682016040523d82523d6000602084013e611ce5565b606091505b508051611d045760405162461bcd60e51b81526004016108a69061278b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d2a565b5060015b949350505050565b606081611d565750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d805780611d6a816126a0565b9150611d799050600a8361273b565b9150611d5a565b60008167ffffffffffffffff811115611d9b57611d9b612346565b6040519080825280601f01601f191660200182016040528015611dc5576020820181803683370190505b5090505b8415611d2a57611dda600183612689565b9150611de7600a8661294b565b611df2906030612773565b60f81b818381518110611e0757611e076126f0565b60200101906001600160f81b031916908160001a905350611e29600a8661273b565b9450611dc9565b600082611e3d8584612102565b14949350505050565b6000546001600160a01b038416611ea95760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108a6565b611eb4816000541190565b15611f015760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108a6565b60008311611f5d5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b60648201526084016108a6565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611fb990879061295f565b6001600160801b03168152602001858360200151611fd7919061295f565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156120f75760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120bb6000888488611c33565b6120d75760405162461bcd60e51b81526004016108a69061278b565b816120e1816126a0565b92505080806120ef906126a0565b91505061206e565b506000819055611a3c565b600081815b845181101561216e576000858281518110612124576121246126f0565b6020026020010151905080831161214a576000838152602082905260409020925061215b565b600081815260208490526040902092505b5080612166816126a0565b915050612107565b509392505050565b82805461218290612638565b90600052602060002090601f0160209004810192826121a457600085556121ea565b82601f106121bd57805160ff19168380011785556121ea565b828001600101855582156121ea579182015b828111156121ea5782518255916020019190600101906121cf565b50610c2a9291505b80821115610c2a57600081556001016121f2565b6001600160e01b0319811681146110ee57600080fd5b60006020828403121561222e57600080fd5b813561223981612206565b9392505050565b60005b8381101561225b578181015183820152602001612243565b83811115610f4c5750506000910152565b60008151808452612284816020860160208601612240565b601f01601f19169290920160200192915050565b602081526000612239602083018461226c565b6000602082840312156122bd57600080fd5b5035919050565b80356001600160a01b03811681146122db57600080fd5b919050565b600080604083850312156122f357600080fd5b6122fc836122c4565b946020939093013593505050565b60008060006060848603121561231f57600080fd5b612328846122c4565b9250612336602085016122c4565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561237757612377612346565b604051601f8501601f19908116603f0116810190828211818310171561239f5761239f612346565b816040528093508581528686860111156123b857600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156123e457600080fd5b813567ffffffffffffffff8111156123fb57600080fd5b8201601f8101841361240c57600080fd5b611d2a8482356020840161235c565b60006020828403121561242d57600080fd5b612239826122c4565b6000806040838503121561244957600080fd5b612452836122c4565b91506020830135801515811461246757600080fd5b809150509250929050565b6000806000806080858703121561248857600080fd5b612491856122c4565b935061249f602086016122c4565b925060408501359150606085013567ffffffffffffffff8111156124c257600080fd5b8501601f810187136124d357600080fd5b6124e28782356020840161235c565b91505092959194509250565b803560ff811681146122db57600080fd5b60006020828403121561251157600080fd5b612239826124ee565b60008083601f84011261252c57600080fd5b50813567ffffffffffffffff81111561254457600080fd5b6020830191508360208260051b850101111561255f57600080fd5b9250929050565b60008060006040848603121561257b57600080fd5b833567ffffffffffffffff81111561259257600080fd5b61259e8682870161251a565b909790965060209590950135949350505050565b600080604083850312156125c557600080fd5b6125ce836122c4565b91506125dc602084016122c4565b90509250929050565b6000806000604084860312156125fa57600080fd5b612603846124ee565b9250602084013567ffffffffffffffff81111561261f57600080fd5b61262b8682870161251a565b9497909650939450505050565b600181811c9082168061264c57607f821691505b6020821081141561266d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008282101561269b5761269b612673565b500390565b60006000198214156126b4576126b4612673565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600081600019048311821515161561272057612720612673565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261274a5761274a612725565b500490565b600063ffffffff8083168181141561276957612769612673565b6001019392505050565b6000821982111561278657612786612673565b500190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600081516127f0818560208601612240565b9290920192915050565b600080845481600182811c91508083168061281657607f831692505b602080841082141561283657634e487b7160e01b86526022600452602486fd5b81801561284a576001811461285b57612888565b60ff19861689528489019650612888565b60008b81526020902060005b868110156128805781548b820152908501908301612867565b505084890196505b5050505050506128ac61289b82866127de565b64173539b7b760d91b815260050190565b95945050505050565b600060ff821660ff84168060ff038211156128d2576128d2612673565b019392505050565b6000816128e9576128e9612673565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129249083018461226c565b9695505050505050565b60006020828403121561294057600080fd5b815161223981612206565b60008261295a5761295a612725565b500690565b60006001600160801b0380831681851680830382111561298157612981612673565b0194935050505056fea2646970667358221220729da0cd051b11bcce163e76afbfd584befba705944610d021cd61f5b87ba0d664736f6c634300080c0033

Deployed Bytecode Sourcemap

41404:3891:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41485:37;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;41485:37:0;;;;;;;;24333:372;;;;;;;;;;-1:-1:-1;24333:372:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;24333:372:0;582:187:1;41570:28:0;;;;;;;;;;;;;;;;25960:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27521:214::-;;;;;;;;;;-1:-1:-1;27521:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1896:32:1;;;1878:51;;1866:2;1851:18;27521:214:0;1732:203:1;27042:413:0;;;;;;;;;;-1:-1:-1;27042:413: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;43784:101::-;;;;;;;;;;-1:-1:-1;43784:101:0;;;;;:::i;:::-;;:::i;28630:177::-;;;;;;;;;;-1:-1:-1;28630:177:0;;;;;:::i;:::-;;:::i;22951:187::-;;;;;;;;;;-1:-1:-1;22951:187:0;;;;;:::i;:::-;;:::i;44153:101::-;;;;;;;;;;-1:-1:-1;44153:101:0;;;;;:::i;:::-;;:::i;41676:27::-;;;;;;;;;;;;;;;;43583:94;;;;;;;;;;-1:-1:-1;43583:94:0;;;;;:::i;:::-;;:::i;25769:124::-;;;;;;;;;;-1:-1:-1;25769:124:0;;;;;:::i;:::-;;:::i;41527:38::-;;;;;;;;;;;;;;;;44260:114;;;;;;;;;;;;;:::i;24769:221::-;;;;;;;;;;-1:-1:-1;24769:221:0;;;;;:::i;:::-;;:::i;41735:23::-;;;;;;;;;;-1:-1:-1;41735:23:0;;;;;;;;;;;;;;4665:4:1;4653:17;;;4635:36;;4623:2;4608:18;41735:23:0;4493:184:1;43392:85:0;;;;;;;;;;;;;:::i;38034:103::-;;;;;;;;;;;;;:::i;44063:84::-;;;;;;;;;;-1:-1:-1;44063:84:0;;;;;:::i;:::-;;:::i;44380:678::-;;;;;;;;;;;;;:::i;41763:22::-;;;;;;;;;;-1:-1:-1;41763:22:0;;;;;;;;;;;37383:87;;;;;;;;;;-1:-1:-1;37456:6:0;;-1:-1:-1;;;;;37456:6:0;37383:87;;26129:104;;;;;;;;;;;;;:::i;42395:391::-;;;;;;:::i;:::-;;:::i;27807:288::-;;;;;;;;;;-1:-1:-1;27807:288:0;;;;;:::i;:::-;;:::i;41708:22::-;;;;;;;;;;-1:-1:-1;41708:22:0;;;;;;;;28878:355;;;;;;;;;;-1:-1:-1;28878:355:0;;;;;:::i;:::-;;:::i;43891:76::-;;;;;;;;;;-1:-1:-1;43891:76:0;;;;;:::i;:::-;;:::i;41901:288::-;;;;;;;;;;-1:-1:-1;41901:288:0;;;;;:::i;:::-;;:::i;43973:84::-;;;;;;;;;;-1:-1:-1;43973:84:0;;;;;:::i;:::-;;:::i;41792:44::-;;;;;;;;;;-1:-1:-1;41792:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;42195:194;;;;;;;;;;-1:-1:-1;42195: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;43683:95::-;;;;;;;;;;-1:-1:-1;43683:95:0;;;;;:::i;:::-;;:::i;42792:594::-;;;;;;:::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;;8300:2:1;27609:74:0;;;8282:21:1;8339:2;8319:18;;;8312:30;8378:34;8358:18;;;8351:62;-1:-1:-1;;;8429:18:1;;;8422:43;8482: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;;8714:2:1;27166:58:0;;;8696:21:1;8753:2;8733:18;;;8726:30;8792:34;8772:18;;;8765:62;-1:-1:-1;;;8843:18:1;;;8836:32;8885:19;;27166:58:0;8512: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;;9117:2:1;27237:169:0;;;9099:21:1;9156:2;9136:18;;;9129:30;9195:34;9175:18;;;9168:62;9266:27;9246:18;;;9239:55;9311:19;;27237:169:0;8915:421:1;27237:169:0;27419:28;27428:2;27432:7;27441:5;27419:8;:28::i;:::-;27104:351;27042:413;;:::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;;9805:2:1;23547:71:0;;;9787:21:1;9844:2;9824:18;;;9817:30;9883:34;9863:18;;;9856:62;-1:-1:-1;;;9934:18:1;;;9927:32;9976:19;;23547:71:0;9603: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;;10348:2:1;24197:56:0;;;10330:21:1;10387:2;10367:18;;;10360:30;10426:34;10406:18;;;10399:62;-1:-1:-1;;;10477:18:1;;;10470:44;10531:19;;24197:56:0;10146:410:1;43784:101:0;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;43855:12:::1;:24:::0;43784:101::o;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;;11124:2:1;23038:69:0;;;11106:21:1;11163:2;11143:18;;;11136:30;11202:34;11182:18;;;11175:62;-1:-1:-1;;;11253:18:1;;;11246:33;11296:19;;23038:69:0;10922:399:1;23038:69:0;-1:-1:-1;23125:5:0;22951:187::o;44153:101::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;44224:12:::1;:24:::0;44153:101::o;43583:94::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;43653:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;43583:94:::0;:::o;25769:124::-;25833:7;25860:20;25872:7;25860:11;:20::i;:::-;:25;;25769:124;-1:-1:-1;;25769:124:0:o;44260:114::-;37456:6;;44324:7;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;-1:-1:-1;44347:21:0::1;44260:114:::0;:::o;24769:221::-;24833:7;-1:-1:-1;;;;;24861:19:0;;24853:75;;;;-1:-1:-1;;;24853:75:0;;11528:2:1;24853:75:0;;;11510:21:1;11567:2;11547:18;;;11540:30;11606:34;11586:18;;;11579:62;-1:-1:-1;;;11657:18:1;;;11650:41;11708:19;;24853:75:0;11326:407:1;24853:75:0;-1:-1:-1;;;;;;24954:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;24954:27:0;;24769:221::o;43392:85::-;43435:13;43464:7;43457: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;44063:84::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;44125:6:::1;:16:::0;44063:84::o;44380:678::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;44450:21:::1;44490:11:::0;44482:43:::1;;;::::0;-1:-1:-1;;;44482:43:0;;11940:2:1;44482:43:0::1;::::0;::::1;11922:21:1::0;11979:2;11959:18;;;11952:30;-1:-1:-1;;;11998:18:1;;;11991:49;12057:18;;44482:43:0::1;11738:343:1::0;44482:43:0::1;44546:101;::::0;;::::1;::::0;;::::1;::::0;;44591:42:::1;44546:101:::0;;44660:165;;::::1;::::0;::::1;::::0;;44708:2:::1;44660:165:::0;;44733:2:::1;44660:165:::0;;::::1;::::0;;;;44758:3:::1;44660:165:::0;;;;;;;;;;;;;44810:3:::1;44660:165:::0;;;;44546:101;:27:::1;44838:215;44861:16;44857:1;:20;;;44838:215;;;44899:14;44921:20;44940:1;::::0;44921:20:::1;:::i;:::-;44916:1;:25;;;:78;;44990:4;44978:6;44985:1;44978:9;;;;;;;;;:::i;:::-;;;;::::0;44968:19:::1;::::0;::::1;;:7:::0;:19:::1;:::i;:::-;:26;;;;:::i;:::-;44916:78;;;44944:21;44916:78;44899:95;;45009:32;45020:9;45030:1;45020:12;;;;;;;;;:::i;:::-;;;;;45034:6;45009:10;:32::i;:::-;-1:-1:-1::0;44879:3:0;::::1;::::0;::::1;:::i;:::-;;;;44838:215;;;;44421:637;;;44380:678::o:0;26129:104::-;26185:13;26218:7;26211:14;;;;;:::i;42395:391::-;42459:5;;42468:1;42459:5;;;;:10;;42451:43;;;;-1:-1:-1;;;42451:43:0;;13056:2:1;42451:43:0;;;13038:21:1;13095:2;13075:18;;;13068:30;-1:-1:-1;;;13114:18:1;;;13107:50;13174:18;;42451:43:0;12854:344:1;42451:43:0;42537:6;;42525:8;42509:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:34;;42501:88;;;;-1:-1:-1;;;42501:88:0;;13538:2:1;42501:88:0;;;13520:21:1;13577:2;13557:18;;;13550:30;13616:34;13596:18;;;13589:62;-1:-1:-1;;;13667:18:1;;;13660:39;13716:19;;42501:88:0;13336:405:1;42501:88:0;42641:6;;42615:10;42604:22;;;;:10;:22;;;;;;42641:6;;;;;;;;42604:33;;42629:8;;42604:22;:33;:::i;:::-;:43;;42596:73;;;;-1:-1:-1;;;42596:73:0;;13948:2:1;42596:73:0;;;13930:21:1;13987:2;13967:18;;;13960:30;-1:-1:-1;;;14006:18:1;;;13999:47;14063:18;;42596:73:0;13746:341:1;42596:73:0;42709:8;42697:9;;:20;;;;:::i;:::-;42684:9;:33;;42676:64;;;;-1:-1:-1;;;42676:64:0;;14294:2:1;42676:64:0;;;14276:21:1;14333:2;14313:18;;;14306:30;-1:-1:-1;;;14352:18:1;;;14345:48;14410:18;;42676:64:0;14092:342:1;42676:64:0;42749:31;42759:10;42771:8;42749:9;:31::i;:::-;42395:391;:::o;27807:288::-;-1:-1:-1;;;;;27902:24:0;;20792:10;27902:24;;27894:63;;;;-1:-1:-1;;;27894:63:0;;14641:2:1;27894:63:0;;;14623:21:1;14680:2;14660:18;;;14653:30;14719:28;14699:18;;;14692:56;14765:18;;27894:63:0;14439: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;;722:41:1;;;27970:42:0;;20792:10;28039:48;;695:18:1;28039:48:0;;;;;;;27807:288;;:::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;43891:76::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;43947:5:::1;:14:::0;;-1:-1:-1;;43947:14:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;43891:76::o;41901:288::-;41974:13;42004:16;42012:7;29545:4;29579:12;-1:-1:-1;29569:22:0;29488:111;42004:16;41996:76;;;;-1:-1:-1;;;41996:76:0;;15416:2:1;41996:76:0;;;15398:21:1;15455:2;15435:18;;;15428:30;15494:34;15474:18;;;15467:62;-1:-1:-1;;;15545:18:1;;;15538:45;15600:19;;41996:76:0;15214:411:1;41996:76:0;42112:1;42094:7;42088:21;;;;;:::i;:::-;;;:25;:95;;;;;;;;;;;;;;;;;42140:7;42149:18;:7;:16;:18::i;:::-;42123:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42081:102;41901:288;-1:-1:-1;;41901:288:0:o;43973:84::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;44035:6:::1;:16:::0;;::::1;::::0;;::::1;;;-1:-1:-1::0;;44035:16:0;;::::1;::::0;;;::::1;::::0;;43973:84::o;42195:194::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;42297:6:::1;42292:92;42307:19:::0;;::::1;42292:92;;;42342:34;42352:10;;42363:1;42352:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;42367:8;42342:9;:34::i;:::-;42328:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42292: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;;17572:2:1;38373:73:0::1;::::0;::::1;17554:21:1::0;17611:2;17591:18;;;17584:30;17650:34;17630:18;;;17623:62;-1:-1:-1;;;17701:18:1;;;17694:36;17747:19;;38373:73:0::1;17370:402:1::0;38373:73:0::1;38457:28;38476:8;38457:18;:28::i;43683:95::-:0;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;43751:9:::1;:21:::0;43683:95::o;42792:594::-;42928:5;;;;;:10;42920:43;;;;-1:-1:-1;;;42920:43:0;;13056:2:1;42920:43:0;;;13038:21:1;13095:2;13075:18;;;13068:30;-1:-1:-1;;;13114:18:1;;;13107:50;13174:18;;42920:43:0;12854:344:1;42920:43:0;43018:5;;42989:10;42978:22;;;;:10;:22;;;;;;43018:5;;;;;;;;42978:36;;43003:11;;42978:22;:36;:::i;:::-;:45;;;;42970:93;;;;-1:-1:-1;;;42970:93:0;;18188:2:1;42970:93:0;;;18170:21:1;18227:2;18207:18;;;18200:30;18266:34;18246:18;;;18239:62;-1:-1:-1;;;18317:18:1;;;18310:33;18360:19;;42970:93:0;17986:399:1;42970:93:0;43106:11;43091:26;;:12;;:26;;;;:::i;:::-;43078:9;:39;;43070:70;;;;-1:-1:-1;;;43070:70:0;;14294:2:1;43070:70:0;;;14276:21:1;14333:2;14313:18;;;14306:30;-1:-1:-1;;;14352:18:1;;;14345:48;14410:18;;43070:70:0;14092:342:1;43070:70:0;43178:28;;-1:-1:-1;;43195:10:0;18539:2:1;18535:15;18531:53;43178:28:0;;;18519:66:1;43153:12:0;;18601::1;;43178:28:0;;;;;;;;;;;;43168:39;;;;;;43153:54;;43222:52;43241:12;;43222:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;43255:12:0;;;-1:-1:-1;43269:4:0;;-1:-1:-1;43222:18:0;:52::i;:::-;43214:79;;;;-1:-1:-1;;;43214:79:0;;18826:2:1;43214:79:0;;;18808:21:1;18865:2;18845:18;;;18838:30;-1:-1:-1;;;18884:18:1;;;18877:44;18938:18;;43214:79:0;18624:338:1;43214:79:0;43313:10;43302:22;;;;:10;:22;;;;;:37;;43328:11;;43302:22;:37;;43328:11;;43302:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;43346:34;43356:10;43368:11;43346:34;;:9;:34::i;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;;19169:2:1;32011:80:0;;;19151:21:1;19208:2;19188:18;;;19181:30;19247:34;19227:18;;;19220:62;-1:-1:-1;;;19298:18:1;;;19291:48;19356:19;;32011:80:0;18967: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;;19588:2:1;32104:77:0;;;19570:21:1;19627:2;19607:18;;;19600:30;19666:34;19646:18;;;19639:62;-1:-1:-1;;;19717:18:1;;;19710:36;19763:19;;32104:77:0;19386:402:1;32104:77:0;-1:-1:-1;;;;;32200:16:0;;32192:66;;;;-1:-1:-1;;;32192:66:0;;19995:2:1;32192:66:0;;;19977:21:1;20034:2;20014:18;;;20007:30;20073:34;20053:18;;;20046:62;-1:-1:-1;;;20124:18:1;;;20117:35;20169:19;;32192:66:0;19793: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;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;;20401:2:1;25330:71:0;;;20383:21:1;20440:2;20420:18;;;20413:30;20479:34;20459:18;;;20452:62;-1:-1:-1;;;20530:18:1;;;20523:40;20580:19;;25330:71:0;20199: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;45101:189::-;45176:12;45194:8;-1:-1:-1;;;;;45194:13:0;45216:7;45194:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45175:54;;;45248:7;45240:44;;;;-1:-1:-1;;;45240:44:0;;21579:2:1;45240:44:0;;;21561:21:1;21618:2;21598:18;;;21591:30;21657:26;21637:18;;;21630:54;21701:18;;45240:44:0;21377:348:1;29607:104:0;29676:27;29686:2;29690:8;29676:27;;;;;;;;;;;;:9;:27::i;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;;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;29988:1389::-;30111:20;30134:12;-1:-1:-1;;;;;30165:16:0;;30157:62;;;;-1:-1:-1;;;30157:62:0;;22808:2:1;30157:62:0;;;22790:21:1;22847:2;22827:18;;;22820:30;22886:34;22866:18;;;22859:62;-1:-1:-1;;;22937:18:1;;;22930:31;22978:19;;30157:62:0;22606: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;;23210:2:1;30355:64:0;;;23192:21:1;23249:2;23229:18;;;23222:30;23288:31;23268:18;;;23261:59;23337:18;;30355:64:0;23008:353:1;30355:64:0;30449:1;30438:8;:12;30430:60;;;;-1:-1:-1;;;30430:60:0;;23568:2:1;30430:60:0;;;23550:21:1;23607:2;23587:18;;;23580:30;23646:34;23626:18;;;23619:62;-1:-1:-1;;;23697:18:1;;;23690:33;23740:19;;30430:60:0;23366: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;44380:678;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;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196:131:1;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;:::-;566:5;332:245;-1:-1:-1;;;332:245:1:o;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:269::-;1090:3;1128:5;1122:12;1155:6;1150:3;1143:19;1171:63;1227:6;1220:4;1215:3;1211:14;1204:4;1197:5;1193:16;1171:63;:::i;:::-;1288:2;1267:15;-1:-1:-1;;1263:29:1;1254:39;;;;1295:4;1250:50;;1037:269;-1:-1:-1;;1037:269:1:o;1311:231::-;1460:2;1449:9;1442:21;1423:4;1480:56;1532:2;1521:9;1517:18;1509:6;1480:56;:::i;1547:180::-;1606:6;1659:2;1647:9;1638:7;1634:23;1630:32;1627:52;;;1675:1;1672;1665:12;1627:52;-1:-1:-1;1698:23:1;;1547:180;-1:-1:-1;1547:180:1:o;1940:173::-;2008:20;;-1:-1:-1;;;;;2057:31:1;;2047:42;;2037:70;;2103:1;2100;2093:12;2037:70;1940:173;;;:::o;2118:254::-;2186:6;2194;2247:2;2235:9;2226:7;2222:23;2218:32;2215:52;;;2263:1;2260;2253:12;2215:52;2286:29;2305:9;2286:29;:::i;:::-;2276:39;2362:2;2347:18;;;;2334:32;;-1:-1:-1;;;2118:254:1:o;2377:328::-;2454:6;2462;2470;2523:2;2511:9;2502:7;2498:23;2494:32;2491:52;;;2539:1;2536;2529:12;2491:52;2562:29;2581:9;2562:29;:::i;:::-;2552:39;;2610:38;2644:2;2633:9;2629:18;2610:38;:::i;:::-;2600:48;;2695:2;2684:9;2680:18;2667:32;2657:42;;2377:328;;;;;:::o;3077:127::-;3138:10;3133:3;3129:20;3126:1;3119:31;3169:4;3166:1;3159:15;3193:4;3190:1;3183:15;3209:632;3274:5;3304:18;3345:2;3337:6;3334:14;3331:40;;;3351:18;;:::i;:::-;3426:2;3420:9;3394:2;3480:15;;-1:-1:-1;;3476:24:1;;;3502:2;3472:33;3468:42;3456:55;;;3526:18;;;3546:22;;;3523:46;3520:72;;;3572:18;;:::i;:::-;3612:10;3608:2;3601:22;3641:6;3632:15;;3671:6;3663;3656:22;3711:3;3702:6;3697:3;3693:16;3690:25;3687:45;;;3728:1;3725;3718:12;3687:45;3778:6;3773:3;3766:4;3758:6;3754:17;3741:44;3833:1;3826:4;3817:6;3809;3805:19;3801:30;3794:41;;;;3209:632;;;;;:::o;3846:451::-;3915:6;3968:2;3956:9;3947:7;3943:23;3939:32;3936:52;;;3984:1;3981;3974:12;3936:52;4024:9;4011:23;4057:18;4049:6;4046:30;4043:50;;;4089:1;4086;4079:12;4043:50;4112:22;;4165:4;4157:13;;4153:27;-1:-1:-1;4143:55:1;;4194:1;4191;4184:12;4143:55;4217:74;4283:7;4278:2;4265:16;4260:2;4256;4252:11;4217:74;:::i;4302:186::-;4361:6;4414:2;4402:9;4393:7;4389:23;4385:32;4382:52;;;4430:1;4427;4420:12;4382:52;4453:29;4472:9;4453:29;:::i;4682:347::-;4747:6;4755;4808:2;4796:9;4787:7;4783:23;4779:32;4776:52;;;4824:1;4821;4814:12;4776:52;4847:29;4866:9;4847:29;:::i;:::-;4837:39;;4926:2;4915:9;4911:18;4898:32;4973:5;4966:13;4959:21;4952:5;4949:32;4939:60;;4995:1;4992;4985:12;4939:60;5018:5;5008:15;;;4682:347;;;;;:::o;5034:667::-;5129:6;5137;5145;5153;5206:3;5194:9;5185:7;5181:23;5177:33;5174:53;;;5223:1;5220;5213:12;5174:53;5246:29;5265:9;5246:29;:::i;:::-;5236:39;;5294:38;5328:2;5317:9;5313:18;5294:38;:::i;:::-;5284:48;;5379:2;5368:9;5364:18;5351:32;5341:42;;5434:2;5423:9;5419:18;5406:32;5461:18;5453:6;5450:30;5447:50;;;5493:1;5490;5483:12;5447:50;5516:22;;5569:4;5561:13;;5557:27;-1:-1:-1;5547:55:1;;5598:1;5595;5588:12;5547:55;5621:74;5687:7;5682:2;5669:16;5664:2;5660;5656:11;5621:74;:::i;:::-;5611:84;;;5034:667;;;;;;;:::o;5706:156::-;5772:20;;5832:4;5821:16;;5811:27;;5801:55;;5852:1;5849;5842:12;5867:182;5924:6;5977:2;5965:9;5956:7;5952:23;5948:32;5945:52;;;5993:1;5990;5983:12;5945:52;6016:27;6033:9;6016:27;:::i;6054:367::-;6117:8;6127:6;6181:3;6174:4;6166:6;6162:17;6158:27;6148:55;;6199:1;6196;6189:12;6148:55;-1:-1:-1;6222:20:1;;6265:18;6254:30;;6251:50;;;6297:1;6294;6287:12;6251:50;6334:4;6326:6;6322:17;6310:29;;6394:3;6387:4;6377:6;6374:1;6370:14;6362:6;6358:27;6354:38;6351:47;6348:67;;;6411:1;6408;6401:12;6348:67;6054:367;;;;;:::o;6426:505::-;6521:6;6529;6537;6590:2;6578:9;6569:7;6565:23;6561:32;6558:52;;;6606:1;6603;6596:12;6558:52;6646:9;6633:23;6679:18;6671:6;6668:30;6665:50;;;6711:1;6708;6701:12;6665:50;6750:70;6812:7;6803:6;6792:9;6788:22;6750:70;:::i;:::-;6839:8;;6724:96;;-1:-1:-1;6921:2:1;6906:18;;;;6893:32;;6426:505;-1:-1:-1;;;;6426:505:1:o;6936:260::-;7004:6;7012;7065:2;7053:9;7044:7;7040:23;7036:32;7033:52;;;7081:1;7078;7071:12;7033:52;7104:29;7123:9;7104:29;:::i;:::-;7094:39;;7152:38;7186:2;7175:9;7171:18;7152:38;:::i;:::-;7142:48;;6936:260;;;;;:::o;7201:507::-;7294:6;7302;7310;7363:2;7351:9;7342:7;7338:23;7334:32;7331:52;;;7379:1;7376;7369:12;7331:52;7402:27;7419:9;7402:27;:::i;:::-;7392:37;;7480:2;7469:9;7465:18;7452:32;7507:18;7499:6;7496:30;7493:50;;;7539:1;7536;7529:12;7493:50;7578:70;7640:7;7631:6;7620:9;7616:22;7578:70;:::i;:::-;7201:507;;7667:8;;-1:-1:-1;7552:96:1;;-1:-1:-1;;;;7201:507:1:o;7713:380::-;7792:1;7788:12;;;;7835;;;7856:61;;7910:4;7902:6;7898:17;7888:27;;7856:61;7963:2;7955:6;7952:14;7932:18;7929:38;7926:161;;;8009:10;8004:3;8000:20;7997:1;7990:31;8044:4;8041:1;8034:15;8072:4;8069:1;8062:15;7926:161;;7713:380;;;:::o;9341:127::-;9402:10;9397:3;9393:20;9390:1;9383:31;9433:4;9430:1;9423:15;9457:4;9454:1;9447:15;9473:125;9513:4;9541:1;9538;9535:8;9532:34;;;9546:18;;:::i;:::-;-1:-1:-1;9583:9:1;;9473:125::o;10006:135::-;10045:3;-1:-1:-1;;10066:17:1;;10063:43;;;10086:18;;:::i;:::-;-1:-1:-1;10133:1:1;10122:13;;10006:135::o;10561:356::-;10763:2;10745:21;;;10782:18;;;10775:30;10841:34;10836:2;10821:18;;10814:62;10908:2;10893:18;;10561:356::o;12086:127::-;12147:10;12142:3;12138:20;12135:1;12128:31;12178:4;12175:1;12168:15;12202:4;12199:1;12192:15;12218:168;12258:7;12324:1;12320;12316:6;12312:14;12309:1;12306:21;12301:1;12294:9;12287:17;12283:45;12280:71;;;12331:18;;:::i;:::-;-1:-1:-1;12371:9:1;;12218:168::o;12391:127::-;12452:10;12447:3;12443:20;12440:1;12433:31;12483:4;12480:1;12473:15;12507:4;12504:1;12497:15;12523:120;12563:1;12589;12579:35;;12594:18;;:::i;:::-;-1:-1:-1;12628:9:1;;12523:120::o;12648:201::-;12686:3;12714:10;12759:2;12752:5;12748:14;12786:2;12777:7;12774:15;12771:41;;;12792:18;;:::i;:::-;12841:1;12828:15;;12648:201;-1:-1:-1;;;12648:201:1:o;13203:128::-;13243:3;13274:1;13270:6;13267:1;13264:13;13261:39;;;13280:18;;:::i;:::-;-1:-1:-1;13316:9:1;;13203:128::o;14794:415::-;14996:2;14978:21;;;15035:2;15015:18;;;15008:30;15074:34;15069:2;15054:18;;15047:62;-1:-1:-1;;;15140:2:1;15125:18;;15118:49;15199:3;15184:19;;14794:415::o;15756:185::-;15798:3;15836:5;15830:12;15851:52;15896:6;15891:3;15884:4;15877:5;15873:16;15851:52;:::i;:::-;15919:16;;;;;15756:185;-1:-1:-1;;15756:185:1:o;16064:1301::-;16341:3;16370:1;16403:6;16397:13;16433:3;16455:1;16483:9;16479:2;16475:18;16465:28;;16543:2;16532:9;16528:18;16565;16555:61;;16609:4;16601:6;16597:17;16587:27;;16555:61;16635:2;16683;16675:6;16672:14;16652:18;16649:38;16646:165;;;-1:-1:-1;;;16710:33:1;;16766:4;16763:1;16756:15;16796:4;16717:3;16784:17;16646:165;16827:18;16854:104;;;;16972:1;16967:320;;;;16820:467;;16854:104;-1:-1:-1;;16887:24:1;;16875:37;;16932:16;;;;-1:-1:-1;16854:104:1;;16967:320;15703:1;15696:14;;;15740:4;15727:18;;17062:1;17076:165;17090:6;17087:1;17084:13;17076:165;;;17168:14;;17155:11;;;17148:35;17211:16;;;;17105:10;;17076:165;;;17080:3;;17270:6;17265:3;17261:16;17254:23;;16820:467;;;;;;;17303:56;17328:30;17354:3;17346:6;17328:30;:::i;:::-;-1:-1:-1;;;16006:20:1;;16051:1;16042:11;;15946:113;17303:56;17296:63;16064:1301;-1:-1:-1;;;;;16064:1301:1:o;17777:204::-;17815:3;17851:4;17848:1;17844:12;17883:4;17880:1;17876:12;17918:3;17912:4;17908:14;17903:3;17900:23;17897:49;;;17926:18;;:::i;:::-;17962:13;;17777:204;-1:-1:-1;;;17777:204:1:o;20610:136::-;20649:3;20677:5;20667:39;;20686:18;;:::i;:::-;-1:-1:-1;;;20722:18:1;;20610:136::o;21730:500::-;-1:-1:-1;;;;;21999:15:1;;;21981:34;;22051:15;;22046:2;22031:18;;22024:43;22098:2;22083:18;;22076:34;;;22146:3;22141:2;22126:18;;22119:31;;;21924:4;;22167:57;;22204:19;;22196:6;22167:57;:::i;:::-;22159:65;21730:500;-1:-1:-1;;;;;;21730:500:1:o;22235:249::-;22304:6;22357:2;22345:9;22336:7;22332:23;22328:32;22325:52;;;22373:1;22370;22363:12;22325:52;22405:9;22399:16;22424:30;22448:5;22424:30;:::i;22489:112::-;22521:1;22547;22537:35;;22552:18;;:::i;:::-;-1:-1:-1;22586:9:1;;22489:112::o;23770:253::-;23810:3;-1:-1:-1;;;;;23899:2:1;23896:1;23892:10;23929:2;23926:1;23922:10;23960:3;23956:2;23952:12;23947:3;23944:21;23941:47;;;23968:18;;:::i;:::-;24004:13;;23770:253;-1:-1:-1;;;;23770:253:1:o

Swarm Source

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