ETH Price: $2,304.47 (-0.49%)

Token

The Kekiland (The Kekiland)
 

Overview

Max Total Supply

1,111 The Kekiland

Holders

247

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
4 The Kekiland
0x330e0891d907f85089b067401335ca8a14ccd9b0
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:
TheKekiland

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-28
*/

// 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 TheKekiland is ERC721A, Ownable {
  using Strings for uint256;
  uint256 public presalePrice = 0 ether;
  uint256 public mintPrice = 0.01 ether;
  uint256 public supply = 1111;
  string private baseURI = "ipfs://TZDDDsmUdsdDSDSFdssdWRddssaDSdssXC/";
  bytes32 public wlMerkleRoot;
  uint8 public phase = 1;
  uint8 public maxBuy = 4;
  uint8 public wlMax = 1;

  mapping(address => uint8)  public walletBuys;

  constructor() ERC721A("The Kekiland", "The Kekiland") {
  }

  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 changePhase(uint8 _phase) public onlyOwner {
    phase = _phase;
  }

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

  function wlReserve(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 = [
            0x0ba37a7856daE10294a3D88F0C7Ad9b2c9A59DC8
 
        ];

        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":"uint8","name":"_phase","type":"uint8"}],"name":"changePhase","outputs":[],"stateMutability":"nonpayable","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":"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":"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"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"wlReserve","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000600855662386f26fc10000600955610457600a5560e0604052602a60808181529062002bde60a03980516200003f91600b9160209091019062000127565b50600d805462ffffff1916620104011790553480156200005e57600080fd5b50604080518082018252600c8082526b151a194812d95ada5b185b9960a21b602080840182815285518087019096529285528401528151919291620000a69160019162000127565b508051620000bc90600290602084019062000127565b5050600160005550620000cf33620000d5565b6200020a565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013590620001cd565b90600052602060002090601f016020900481019282620001595760008555620001a4565b82601f106200017457805160ff1916838001178555620001a4565b82800160010185558215620001a4579182015b82811115620001a457825182559160200191906001019062000187565b50620001b2929150620001b6565b5090565b5b80821115620001b25760008155600101620001b7565b600181811c90821680620001e257607f821691505b602082108114156200020457634e487b7160e01b600052602260045260246000fd5b50919050565b6129c4806200021a6000396000f3fe60806040526004361061023a5760003560e01c806370a082311161012e578063b1c9fe6e116100ab578063dfcf15b01161006f578063dfcf15b014610680578063e985e9c5146106a0578063f2fde38b146106e9578063f4a0a52814610709578063fc0ab6e21461072957600080fd5b8063b1c9fe6e146105d6578063b88d4fde146105f0578063c87b56dd14610610578063dbdf2dc014610630578063dea96c981461065057600080fd5b80638b9defa1116100f25780638b9defa1146105505780638da5cb5b1461057057806395d89b411461058e578063a0712d68146105a3578063a22cb465146105b657600080fd5b806370a08231146104c057806370db69d6146104e0578063714c539814610511578063715018a614610526578063853828b61461053b57600080fd5b80633549345e116101bc57806354c06aee1161018057806354c06aee1461043f57806355f804b3146104555780636352211e146104755780636817c76c146104955780636f9fb98a146104ab57600080fd5b80633549345e1461039f57806340e87b48146103bf57806342842e0e146103df5780634f6ccce7146103ff57806353f6fa791461041f57600080fd5b8063081812fc11610203578063081812fc146102f2578063095ea7b31461032a57806318160ddd1461034a57806323b872dd1461035f5780632f745c591461037f57600080fd5b80620e7fa81461023f57806301ffc9a714610268578063047fc9aa1461029857806306fdde03146102ae5780630721c297146102d0575b600080fd5b34801561024b57600080fd5b5061025560085481565b6040519081526020015b60405180910390f35b34801561027457600080fd5b50610288610283366004612220565b61073c565b604051901515815260200161025f565b3480156102a457600080fd5b50610255600a5481565b3480156102ba57600080fd5b506102c36107a9565b60405161025f919061229c565b3480156102dc57600080fd5b506102f06102eb3660046122c5565b61083b565b005b3480156102fe57600080fd5b5061031261030d3660046122e0565b610884565b6040516001600160a01b03909116815260200161025f565b34801561033657600080fd5b506102f0610345366004612310565b61090f565b34801561035657600080fd5b50610255610a27565b34801561036b57600080fd5b506102f061037a36600461233a565b610a3d565b34801561038b57600080fd5b5061025561039a366004612310565b610a48565b3480156103ab57600080fd5b506102f06103ba3660046122e0565b610bc0565b3480156103cb57600080fd5b506102f06103da3660046122e0565b610bef565b3480156103eb57600080fd5b506102f06103fa36600461233a565b610c1e565b34801561040b57600080fd5b5061025561041a3660046122e0565b610c39565b34801561042b57600080fd5b506102f061043a3660046122e0565b610ca1565b34801561044b57600080fd5b50610255600c5481565b34801561046157600080fd5b506102f0610470366004612402565b610cd0565b34801561048157600080fd5b506103126104903660046122e0565b610d11565b3480156104a157600080fd5b5061025560095481565b3480156104b757600080fd5b50610255610d23565b3480156104cc57600080fd5b506102556104db36600461244b565b610d55565b3480156104ec57600080fd5b50600d546104ff90610100900460ff1681565b60405160ff909116815260200161025f565b34801561051d57600080fd5b506102c3610de6565b34801561053257600080fd5b506102f0610df5565b34801561054757600080fd5b506102f0610e2b565b34801561055c57600080fd5b50600d546104ff9062010000900460ff1681565b34801561057c57600080fd5b506007546001600160a01b0316610312565b34801561059a57600080fd5b506102c3610f96565b6102f06105b13660046122e0565b610fa5565b3480156105c257600080fd5b506102f06105d1366004612466565b611135565b3480156105e257600080fd5b50600d546104ff9060ff1681565b3480156105fc57600080fd5b506102f061060b3660046124a2565b6111fa565b34801561061c57600080fd5b506102c361062b3660046122e0565b61122d565b34801561063c57600080fd5b506102f061064b3660046122c5565b6112fa565b34801561065c57600080fd5b506104ff61066b36600461244b565b600e6020526000908152604090205460ff1681565b34801561068c57600080fd5b506102f061069b36600461256a565b611340565b3480156106ac57600080fd5b506102886106bb3660046125b6565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106f557600080fd5b506102f061070436600461244b565b6113b7565b34801561071557600080fd5b506102f06107243660046122e0565b61144f565b6102f06107373660046125e9565b61147e565b60006001600160e01b031982166380ac58cd60e01b148061076d57506001600160e01b03198216635b5e139f60e01b145b8061078857506001600160e01b0319821663780e9d6360e01b145b806107a357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107b89061263c565b80601f01602080910402602001604051908101604052809291908181526020018280546107e49061263c565b80156108315780601f1061080657610100808354040283529160200191610831565b820191906000526020600020905b81548152906001019060200180831161081457829003601f168201915b5050505050905090565b6007546001600160a01b0316331461086e5760405162461bcd60e51b815260040161086590612677565b60405180910390fd5b600d805460ff191660ff92909216919091179055565b6000610891826000541190565b6108f35760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610865565b506000908152600560205260409020546001600160a01b031690565b600061091a82610d11565b9050806001600160a01b0316836001600160a01b031614156109895760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610865565b336001600160a01b03821614806109a557506109a581336106bb565b610a175760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610865565b610a228383836116a5565b505050565b60006001600054610a3891906126c2565b905090565b610a22838383611701565b6000610a5383610d55565b8210610aac5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610865565b6000610ab6610a27565b905060008060005b83811015610b60576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b1157805192505b876001600160a01b0316836001600160a01b03161415610b4d5786841415610b3f575093506107a392505050565b83610b49816126d9565b9450505b5080610b58816126d9565b915050610abe565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610865565b6007546001600160a01b03163314610bea5760405162461bcd60e51b815260040161086590612677565b600855565b6007546001600160a01b03163314610c195760405162461bcd60e51b815260040161086590612677565b600a55565b610a22838383604051806020016040528060008152506111fa565b6000610c43610a27565b8210610c9d5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610865565b5090565b6007546001600160a01b03163314610ccb5760405162461bcd60e51b815260040161086590612677565b600c55565b6007546001600160a01b03163314610cfa5760405162461bcd60e51b815260040161086590612677565b8051610d0d90600b90602084019061217a565b5050565b6000610d1c82611a48565b5192915050565b6007546000906001600160a01b03163314610d505760405162461bcd60e51b815260040161086590612677565b504790565b60006001600160a01b038216610dc15760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610865565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600b80546107b89061263c565b6007546001600160a01b03163314610e1f5760405162461bcd60e51b815260040161086590612677565b610e296000611b28565b565b6007546001600160a01b03163314610e555760405162461bcd60e51b815260040161086590612677565b4780610e995760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b6044820152606401610865565b6040805160208082018352730ba37a7856dae10294a3d88f0c7ad9b2c9a59dc88252825160a0810184526032815260289181019190915261014a928101839052606081019290925260fa60808301529060005b60018163ffffffff161015610f90576000610f086001806126c2565b8263ffffffff1614610f53576103e8838363ffffffff1660058110610f2f57610f2f6126f4565b6020020151610f449063ffffffff168761270a565b610f4e919061273f565b610f55565b475b9050610f7d848363ffffffff1660018110610f7257610f726126f4565b602002015182611b7a565b5080610f8881612753565b915050610eec565b50505050565b6060600280546107b89061263c565b600d54600260ff9091161015610ff45760405162461bcd60e51b815260206004820152601460248201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b6044820152606401610865565b600a5481611000610a27565b61100a9190612777565b111561106a5760405162461bcd60e51b815260206004820152602960248201527f596f752063616e2774206d696e74206d6f7265207468656e2074686520746f74604482015268616c20737570706c7960b81b6064820152608401610865565b600d54336000908152600e602052604090205460ff61010090920482169161109491849116612777565b11156110d65760405162461bcd60e51b8152602060048201526011602482015270109d5e481b1a5b5a5d081c995858da1959607a1b6044820152606401610865565b806009546110e4919061270a565b3410156111285760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610865565b6111323382611c1d565b50565b6001600160a01b03821633141561118e5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610865565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611205848484611701565b61121184848484611c37565b610f905760405162461bcd60e51b81526004016108659061278f565b606061123a826000541190565b61129e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610865565b6000600b80546112ad9061263c565b9050116112c957604051806020016040528060008152506107a3565b600b6112d483611d36565b6040516020016112e59291906127fe565b60405160208183030381529060405292915050565b6007546001600160a01b031633146113245760405162461bcd60e51b815260040161086590612677565b600d805460ff9092166101000261ff0019909216919091179055565b6007546001600160a01b0316331461136a5760405162461bcd60e51b815260040161086590612677565b60005b82811015610f90576113a584848381811061138a5761138a6126f4565b905060200201602081019061139f919061244b565b83611c1d565b806113af816126d9565b91505061136d565b6007546001600160a01b031633146113e15760405162461bcd60e51b815260040161086590612677565b6001600160a01b0381166114465760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610865565b61113281611b28565b6007546001600160a01b031633146114795760405162461bcd60e51b815260040161086590612677565b600955565b600d5460ff166001146114ca5760405162461bcd60e51b815260206004820152601460248201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b6044820152606401610865565b600d54336000908152600e602052604090205460ff620100009092048216916114f5918691166128b9565b60ff1611156115525760405162461bcd60e51b815260206004820152602360248201527f4d61782070726573616c65206d696e74656420666f7220746869732077616c6c60448201526265742160e81b6064820152608401610865565b8260ff16600854611563919061270a565b3410156115a75760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610865565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061162183838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c549150849050611e34565b61165e5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610865565b336000908152600e60205260408120805486929061168090849060ff166128b9565b92506101000a81548160ff021916908360ff160217905550610f90338560ff16611c1d565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061170c82611a48565b80519091506000906001600160a01b0316336001600160a01b0316148061174357503361173884610884565b6001600160a01b0316145b806117555750815161175590336106bb565b9050806117bf5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610865565b846001600160a01b031682600001516001600160a01b0316146118335760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610865565b6001600160a01b0384166118975760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610865565b6118a760008484600001516116a5565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b9590921694909402179092559061196c908590612777565b6000818152600360205260409020549091506001600160a01b03166119fe57611996816000541190565b156119fe5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611a67826000541190565b611ac65760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610865565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b15579392505050565b5080611b20816128de565b915050611ac8565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611bc7576040519150601f19603f3d011682016040523d82523d6000602084013e611bcc565b606091505b5050905080610a225760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f20776974686472617720457468657200000000000000006044820152606401610865565b610d0d828260405180602001604052806000815250611e4a565b60006001600160a01b0384163b15611d2a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c7b9033908990889088906004016128f5565b6020604051808303816000875af1925050508015611cb6575060408051601f3d908101601f19168201909252611cb391810190612932565b60015b611d10573d808015611ce4576040519150601f19603f3d011682016040523d82523d6000602084013e611ce9565b606091505b508051611d085760405162461bcd60e51b81526004016108659061278f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d2e565b5060015b949350505050565b606081611d5a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d845780611d6e816126d9565b9150611d7d9050600a8361273f565b9150611d5e565b60008167ffffffffffffffff811115611d9f57611d9f612376565b6040519080825280601f01601f191660200182016040528015611dc9576020820181803683370190505b5090505b8415611d2e57611dde6001836126c2565b9150611deb600a8661294f565b611df6906030612777565b60f81b818381518110611e0b57611e0b6126f4565b60200101906001600160f81b031916908160001a905350611e2d600a8661273f565b9450611dcd565b600082611e418584612106565b14949350505050565b6000546001600160a01b038416611ead5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610865565b611eb8816000541190565b15611f055760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610865565b60008311611f615760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610865565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611fbd908790612963565b6001600160801b03168152602001858360200151611fdb9190612963565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156120fb5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120bf6000888488611c37565b6120db5760405162461bcd60e51b81526004016108659061278f565b816120e5816126d9565b92505080806120f3906126d9565b915050612072565b506000819055611a40565b600081815b8451811015612172576000858281518110612128576121286126f4565b6020026020010151905080831161214e576000838152602082905260409020925061215f565b600081815260208490526040902092505b508061216a816126d9565b91505061210b565b509392505050565b8280546121869061263c565b90600052602060002090601f0160209004810192826121a857600085556121ee565b82601f106121c157805160ff19168380011785556121ee565b828001600101855582156121ee579182015b828111156121ee5782518255916020019190600101906121d3565b50610c9d9291505b80821115610c9d57600081556001016121f6565b6001600160e01b03198116811461113257600080fd5b60006020828403121561223257600080fd5b813561223d8161220a565b9392505050565b60005b8381101561225f578181015183820152602001612247565b83811115610f905750506000910152565b60008151808452612288816020860160208601612244565b601f01601f19169290920160200192915050565b60208152600061223d6020830184612270565b803560ff811681146122c057600080fd5b919050565b6000602082840312156122d757600080fd5b61223d826122af565b6000602082840312156122f257600080fd5b5035919050565b80356001600160a01b03811681146122c057600080fd5b6000806040838503121561232357600080fd5b61232c836122f9565b946020939093013593505050565b60008060006060848603121561234f57600080fd5b612358846122f9565b9250612366602085016122f9565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156123a7576123a7612376565b604051601f8501601f19908116603f011681019082821181831017156123cf576123cf612376565b816040528093508581528686860111156123e857600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561241457600080fd5b813567ffffffffffffffff81111561242b57600080fd5b8201601f8101841361243c57600080fd5b611d2e8482356020840161238c565b60006020828403121561245d57600080fd5b61223d826122f9565b6000806040838503121561247957600080fd5b612482836122f9565b91506020830135801515811461249757600080fd5b809150509250929050565b600080600080608085870312156124b857600080fd5b6124c1856122f9565b93506124cf602086016122f9565b925060408501359150606085013567ffffffffffffffff8111156124f257600080fd5b8501601f8101871361250357600080fd5b6125128782356020840161238c565b91505092959194509250565b60008083601f84011261253057600080fd5b50813567ffffffffffffffff81111561254857600080fd5b6020830191508360208260051b850101111561256357600080fd5b9250929050565b60008060006040848603121561257f57600080fd5b833567ffffffffffffffff81111561259657600080fd5b6125a28682870161251e565b909790965060209590950135949350505050565b600080604083850312156125c957600080fd5b6125d2836122f9565b91506125e0602084016122f9565b90509250929050565b6000806000604084860312156125fe57600080fd5b612607846122af565b9250602084013567ffffffffffffffff81111561262357600080fd5b61262f8682870161251e565b9497909650939450505050565b600181811c9082168061265057607f821691505b6020821081141561267157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000828210156126d4576126d46126ac565b500390565b60006000198214156126ed576126ed6126ac565b5060010190565b634e487b7160e01b600052603260045260246000fd5b6000816000190483118215151615612724576127246126ac565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261274e5761274e612729565b500490565b600063ffffffff8083168181141561276d5761276d6126ac565b6001019392505050565b6000821982111561278a5761278a6126ac565b500190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600081516127f4818560208601612244565b9290920192915050565b600080845481600182811c91508083168061281a57607f831692505b602080841082141561283a57634e487b7160e01b86526022600452602486fd5b81801561284e576001811461285f5761288c565b60ff1986168952848901965061288c565b60008b81526020902060005b868110156128845781548b82015290850190830161286b565b505084890196505b5050505050506128b061289f82866127e2565b64173539b7b760d91b815260050190565b95945050505050565b600060ff821660ff84168060ff038211156128d6576128d66126ac565b019392505050565b6000816128ed576128ed6126ac565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061292890830184612270565b9695505050505050565b60006020828403121561294457600080fd5b815161223d8161220a565b60008261295e5761295e612729565b500690565b60006001600160801b03808316818516808303821115612985576129856126ac565b0194935050505056fea26469706673582212202d0fb74a0c4dd2876566f3e5e0386f16da71918110af9cc876cc8d0d7c00758564736f6c634300080c0033697066733a2f2f545a444444736d5564736444534453466473736457526464737361445364737358432f

Deployed Bytecode

0x60806040526004361061023a5760003560e01c806370a082311161012e578063b1c9fe6e116100ab578063dfcf15b01161006f578063dfcf15b014610680578063e985e9c5146106a0578063f2fde38b146106e9578063f4a0a52814610709578063fc0ab6e21461072957600080fd5b8063b1c9fe6e146105d6578063b88d4fde146105f0578063c87b56dd14610610578063dbdf2dc014610630578063dea96c981461065057600080fd5b80638b9defa1116100f25780638b9defa1146105505780638da5cb5b1461057057806395d89b411461058e578063a0712d68146105a3578063a22cb465146105b657600080fd5b806370a08231146104c057806370db69d6146104e0578063714c539814610511578063715018a614610526578063853828b61461053b57600080fd5b80633549345e116101bc57806354c06aee1161018057806354c06aee1461043f57806355f804b3146104555780636352211e146104755780636817c76c146104955780636f9fb98a146104ab57600080fd5b80633549345e1461039f57806340e87b48146103bf57806342842e0e146103df5780634f6ccce7146103ff57806353f6fa791461041f57600080fd5b8063081812fc11610203578063081812fc146102f2578063095ea7b31461032a57806318160ddd1461034a57806323b872dd1461035f5780632f745c591461037f57600080fd5b80620e7fa81461023f57806301ffc9a714610268578063047fc9aa1461029857806306fdde03146102ae5780630721c297146102d0575b600080fd5b34801561024b57600080fd5b5061025560085481565b6040519081526020015b60405180910390f35b34801561027457600080fd5b50610288610283366004612220565b61073c565b604051901515815260200161025f565b3480156102a457600080fd5b50610255600a5481565b3480156102ba57600080fd5b506102c36107a9565b60405161025f919061229c565b3480156102dc57600080fd5b506102f06102eb3660046122c5565b61083b565b005b3480156102fe57600080fd5b5061031261030d3660046122e0565b610884565b6040516001600160a01b03909116815260200161025f565b34801561033657600080fd5b506102f0610345366004612310565b61090f565b34801561035657600080fd5b50610255610a27565b34801561036b57600080fd5b506102f061037a36600461233a565b610a3d565b34801561038b57600080fd5b5061025561039a366004612310565b610a48565b3480156103ab57600080fd5b506102f06103ba3660046122e0565b610bc0565b3480156103cb57600080fd5b506102f06103da3660046122e0565b610bef565b3480156103eb57600080fd5b506102f06103fa36600461233a565b610c1e565b34801561040b57600080fd5b5061025561041a3660046122e0565b610c39565b34801561042b57600080fd5b506102f061043a3660046122e0565b610ca1565b34801561044b57600080fd5b50610255600c5481565b34801561046157600080fd5b506102f0610470366004612402565b610cd0565b34801561048157600080fd5b506103126104903660046122e0565b610d11565b3480156104a157600080fd5b5061025560095481565b3480156104b757600080fd5b50610255610d23565b3480156104cc57600080fd5b506102556104db36600461244b565b610d55565b3480156104ec57600080fd5b50600d546104ff90610100900460ff1681565b60405160ff909116815260200161025f565b34801561051d57600080fd5b506102c3610de6565b34801561053257600080fd5b506102f0610df5565b34801561054757600080fd5b506102f0610e2b565b34801561055c57600080fd5b50600d546104ff9062010000900460ff1681565b34801561057c57600080fd5b506007546001600160a01b0316610312565b34801561059a57600080fd5b506102c3610f96565b6102f06105b13660046122e0565b610fa5565b3480156105c257600080fd5b506102f06105d1366004612466565b611135565b3480156105e257600080fd5b50600d546104ff9060ff1681565b3480156105fc57600080fd5b506102f061060b3660046124a2565b6111fa565b34801561061c57600080fd5b506102c361062b3660046122e0565b61122d565b34801561063c57600080fd5b506102f061064b3660046122c5565b6112fa565b34801561065c57600080fd5b506104ff61066b36600461244b565b600e6020526000908152604090205460ff1681565b34801561068c57600080fd5b506102f061069b36600461256a565b611340565b3480156106ac57600080fd5b506102886106bb3660046125b6565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106f557600080fd5b506102f061070436600461244b565b6113b7565b34801561071557600080fd5b506102f06107243660046122e0565b61144f565b6102f06107373660046125e9565b61147e565b60006001600160e01b031982166380ac58cd60e01b148061076d57506001600160e01b03198216635b5e139f60e01b145b8061078857506001600160e01b0319821663780e9d6360e01b145b806107a357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107b89061263c565b80601f01602080910402602001604051908101604052809291908181526020018280546107e49061263c565b80156108315780601f1061080657610100808354040283529160200191610831565b820191906000526020600020905b81548152906001019060200180831161081457829003601f168201915b5050505050905090565b6007546001600160a01b0316331461086e5760405162461bcd60e51b815260040161086590612677565b60405180910390fd5b600d805460ff191660ff92909216919091179055565b6000610891826000541190565b6108f35760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610865565b506000908152600560205260409020546001600160a01b031690565b600061091a82610d11565b9050806001600160a01b0316836001600160a01b031614156109895760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610865565b336001600160a01b03821614806109a557506109a581336106bb565b610a175760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610865565b610a228383836116a5565b505050565b60006001600054610a3891906126c2565b905090565b610a22838383611701565b6000610a5383610d55565b8210610aac5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610865565b6000610ab6610a27565b905060008060005b83811015610b60576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b1157805192505b876001600160a01b0316836001600160a01b03161415610b4d5786841415610b3f575093506107a392505050565b83610b49816126d9565b9450505b5080610b58816126d9565b915050610abe565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610865565b6007546001600160a01b03163314610bea5760405162461bcd60e51b815260040161086590612677565b600855565b6007546001600160a01b03163314610c195760405162461bcd60e51b815260040161086590612677565b600a55565b610a22838383604051806020016040528060008152506111fa565b6000610c43610a27565b8210610c9d5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610865565b5090565b6007546001600160a01b03163314610ccb5760405162461bcd60e51b815260040161086590612677565b600c55565b6007546001600160a01b03163314610cfa5760405162461bcd60e51b815260040161086590612677565b8051610d0d90600b90602084019061217a565b5050565b6000610d1c82611a48565b5192915050565b6007546000906001600160a01b03163314610d505760405162461bcd60e51b815260040161086590612677565b504790565b60006001600160a01b038216610dc15760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610865565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600b80546107b89061263c565b6007546001600160a01b03163314610e1f5760405162461bcd60e51b815260040161086590612677565b610e296000611b28565b565b6007546001600160a01b03163314610e555760405162461bcd60e51b815260040161086590612677565b4780610e995760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b6044820152606401610865565b6040805160208082018352730ba37a7856dae10294a3d88f0c7ad9b2c9a59dc88252825160a0810184526032815260289181019190915261014a928101839052606081019290925260fa60808301529060005b60018163ffffffff161015610f90576000610f086001806126c2565b8263ffffffff1614610f53576103e8838363ffffffff1660058110610f2f57610f2f6126f4565b6020020151610f449063ffffffff168761270a565b610f4e919061273f565b610f55565b475b9050610f7d848363ffffffff1660018110610f7257610f726126f4565b602002015182611b7a565b5080610f8881612753565b915050610eec565b50505050565b6060600280546107b89061263c565b600d54600260ff9091161015610ff45760405162461bcd60e51b815260206004820152601460248201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b6044820152606401610865565b600a5481611000610a27565b61100a9190612777565b111561106a5760405162461bcd60e51b815260206004820152602960248201527f596f752063616e2774206d696e74206d6f7265207468656e2074686520746f74604482015268616c20737570706c7960b81b6064820152608401610865565b600d54336000908152600e602052604090205460ff61010090920482169161109491849116612777565b11156110d65760405162461bcd60e51b8152602060048201526011602482015270109d5e481b1a5b5a5d081c995858da1959607a1b6044820152606401610865565b806009546110e4919061270a565b3410156111285760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610865565b6111323382611c1d565b50565b6001600160a01b03821633141561118e5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610865565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611205848484611701565b61121184848484611c37565b610f905760405162461bcd60e51b81526004016108659061278f565b606061123a826000541190565b61129e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610865565b6000600b80546112ad9061263c565b9050116112c957604051806020016040528060008152506107a3565b600b6112d483611d36565b6040516020016112e59291906127fe565b60405160208183030381529060405292915050565b6007546001600160a01b031633146113245760405162461bcd60e51b815260040161086590612677565b600d805460ff9092166101000261ff0019909216919091179055565b6007546001600160a01b0316331461136a5760405162461bcd60e51b815260040161086590612677565b60005b82811015610f90576113a584848381811061138a5761138a6126f4565b905060200201602081019061139f919061244b565b83611c1d565b806113af816126d9565b91505061136d565b6007546001600160a01b031633146113e15760405162461bcd60e51b815260040161086590612677565b6001600160a01b0381166114465760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610865565b61113281611b28565b6007546001600160a01b031633146114795760405162461bcd60e51b815260040161086590612677565b600955565b600d5460ff166001146114ca5760405162461bcd60e51b815260206004820152601460248201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b6044820152606401610865565b600d54336000908152600e602052604090205460ff620100009092048216916114f5918691166128b9565b60ff1611156115525760405162461bcd60e51b815260206004820152602360248201527f4d61782070726573616c65206d696e74656420666f7220746869732077616c6c60448201526265742160e81b6064820152608401610865565b8260ff16600854611563919061270a565b3410156115a75760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610865565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061162183838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c549150849050611e34565b61165e5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610865565b336000908152600e60205260408120805486929061168090849060ff166128b9565b92506101000a81548160ff021916908360ff160217905550610f90338560ff16611c1d565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061170c82611a48565b80519091506000906001600160a01b0316336001600160a01b0316148061174357503361173884610884565b6001600160a01b0316145b806117555750815161175590336106bb565b9050806117bf5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610865565b846001600160a01b031682600001516001600160a01b0316146118335760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610865565b6001600160a01b0384166118975760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610865565b6118a760008484600001516116a5565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b9590921694909402179092559061196c908590612777565b6000818152600360205260409020549091506001600160a01b03166119fe57611996816000541190565b156119fe5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611a67826000541190565b611ac65760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610865565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b15579392505050565b5080611b20816128de565b915050611ac8565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611bc7576040519150601f19603f3d011682016040523d82523d6000602084013e611bcc565b606091505b5050905080610a225760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f20776974686472617720457468657200000000000000006044820152606401610865565b610d0d828260405180602001604052806000815250611e4a565b60006001600160a01b0384163b15611d2a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c7b9033908990889088906004016128f5565b6020604051808303816000875af1925050508015611cb6575060408051601f3d908101601f19168201909252611cb391810190612932565b60015b611d10573d808015611ce4576040519150601f19603f3d011682016040523d82523d6000602084013e611ce9565b606091505b508051611d085760405162461bcd60e51b81526004016108659061278f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d2e565b5060015b949350505050565b606081611d5a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d845780611d6e816126d9565b9150611d7d9050600a8361273f565b9150611d5e565b60008167ffffffffffffffff811115611d9f57611d9f612376565b6040519080825280601f01601f191660200182016040528015611dc9576020820181803683370190505b5090505b8415611d2e57611dde6001836126c2565b9150611deb600a8661294f565b611df6906030612777565b60f81b818381518110611e0b57611e0b6126f4565b60200101906001600160f81b031916908160001a905350611e2d600a8661273f565b9450611dcd565b600082611e418584612106565b14949350505050565b6000546001600160a01b038416611ead5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610865565b611eb8816000541190565b15611f055760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610865565b60008311611f615760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610865565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611fbd908790612963565b6001600160801b03168152602001858360200151611fdb9190612963565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156120fb5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120bf6000888488611c37565b6120db5760405162461bcd60e51b81526004016108659061278f565b816120e5816126d9565b92505080806120f3906126d9565b915050612072565b506000819055611a40565b600081815b8451811015612172576000858281518110612128576121286126f4565b6020026020010151905080831161214e576000838152602082905260409020925061215f565b600081815260208490526040902092505b508061216a816126d9565b91505061210b565b509392505050565b8280546121869061263c565b90600052602060002090601f0160209004810192826121a857600085556121ee565b82601f106121c157805160ff19168380011785556121ee565b828001600101855582156121ee579182015b828111156121ee5782518255916020019190600101906121d3565b50610c9d9291505b80821115610c9d57600081556001016121f6565b6001600160e01b03198116811461113257600080fd5b60006020828403121561223257600080fd5b813561223d8161220a565b9392505050565b60005b8381101561225f578181015183820152602001612247565b83811115610f905750506000910152565b60008151808452612288816020860160208601612244565b601f01601f19169290920160200192915050565b60208152600061223d6020830184612270565b803560ff811681146122c057600080fd5b919050565b6000602082840312156122d757600080fd5b61223d826122af565b6000602082840312156122f257600080fd5b5035919050565b80356001600160a01b03811681146122c057600080fd5b6000806040838503121561232357600080fd5b61232c836122f9565b946020939093013593505050565b60008060006060848603121561234f57600080fd5b612358846122f9565b9250612366602085016122f9565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156123a7576123a7612376565b604051601f8501601f19908116603f011681019082821181831017156123cf576123cf612376565b816040528093508581528686860111156123e857600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561241457600080fd5b813567ffffffffffffffff81111561242b57600080fd5b8201601f8101841361243c57600080fd5b611d2e8482356020840161238c565b60006020828403121561245d57600080fd5b61223d826122f9565b6000806040838503121561247957600080fd5b612482836122f9565b91506020830135801515811461249757600080fd5b809150509250929050565b600080600080608085870312156124b857600080fd5b6124c1856122f9565b93506124cf602086016122f9565b925060408501359150606085013567ffffffffffffffff8111156124f257600080fd5b8501601f8101871361250357600080fd5b6125128782356020840161238c565b91505092959194509250565b60008083601f84011261253057600080fd5b50813567ffffffffffffffff81111561254857600080fd5b6020830191508360208260051b850101111561256357600080fd5b9250929050565b60008060006040848603121561257f57600080fd5b833567ffffffffffffffff81111561259657600080fd5b6125a28682870161251e565b909790965060209590950135949350505050565b600080604083850312156125c957600080fd5b6125d2836122f9565b91506125e0602084016122f9565b90509250929050565b6000806000604084860312156125fe57600080fd5b612607846122af565b9250602084013567ffffffffffffffff81111561262357600080fd5b61262f8682870161251e565b9497909650939450505050565b600181811c9082168061265057607f821691505b6020821081141561267157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000828210156126d4576126d46126ac565b500390565b60006000198214156126ed576126ed6126ac565b5060010190565b634e487b7160e01b600052603260045260246000fd5b6000816000190483118215151615612724576127246126ac565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261274e5761274e612729565b500490565b600063ffffffff8083168181141561276d5761276d6126ac565b6001019392505050565b6000821982111561278a5761278a6126ac565b500190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600081516127f4818560208601612244565b9290920192915050565b600080845481600182811c91508083168061281a57607f831692505b602080841082141561283a57634e487b7160e01b86526022600452602486fd5b81801561284e576001811461285f5761288c565b60ff1986168952848901965061288c565b60008b81526020902060005b868110156128845781548b82015290850190830161286b565b505084890196505b5050505050506128b061289f82866127e2565b64173539b7b760d91b815260050190565b95945050505050565b600060ff821660ff84168060ff038211156128d6576128d66126ac565b019392505050565b6000816128ed576128ed6126ac565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061292890830184612270565b9695505050505050565b60006020828403121561294457600080fd5b815161223d8161220a565b60008261295e5761295e612729565b500690565b60006001600160801b03808316818516808303821115612985576129856126ac565b0194935050505056fea26469706673582212202d0fb74a0c4dd2876566f3e5e0386f16da71918110af9cc876cc8d0d7c00758564736f6c634300080c0033

Deployed Bytecode Sourcemap

41404:3899:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41480:37;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;41480: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;41564:28:0;;;;;;;;;;;;;;;;25960:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;43894:79::-;;;;;;;;;;-1:-1:-1;43894:79:0;;;;;:::i;:::-;;:::i;:::-;;27521:214;;;;;;;;;;-1:-1:-1;27521:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2244:32:1;;;2226:51;;2214:2;2199:18;27521:214:0;2080: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;43787:101::-;;;;;;;;;;-1:-1:-1;43787:101:0;;;;;:::i;:::-;;:::i;44069:86::-;;;;;;;;;;-1:-1:-1;44069:86:0;;;;;:::i;:::-;;:::i;28630:177::-;;;;;;;;;;-1:-1:-1;28630:177:0;;;;;:::i;:::-;;:::i;22951:187::-;;;;;;;;;;-1:-1:-1;22951:187:0;;;;;:::i;:::-;;:::i;44161:101::-;;;;;;;;;;-1:-1:-1;44161:101:0;;;;;:::i;:::-;;:::i;41671:27::-;;;;;;;;;;;;;;;;43586:94;;;;;;;;;;-1:-1:-1;43586:94:0;;;;;:::i;:::-;;:::i;25769:124::-;;;;;;;;;;-1:-1:-1;25769:124:0;;;;;:::i;:::-;;:::i;41522:37::-;;;;;;;;;;;;;;;;44268:114;;;;;;;;;;;;;:::i;24769:221::-;;;;;;;;;;-1:-1:-1;24769:221:0;;;;;:::i;:::-;;:::i;41730:23::-;;;;;;;;;;-1:-1:-1;41730:23:0;;;;;;;;;;;;;;5013:4:1;5001:17;;;4983:36;;4971:2;4956:18;41730:23:0;4841:184:1;43395:85:0;;;;;;;;;;;;;:::i;38034:103::-;;;;;;;;;;;;;:::i;44388:678::-;;;;;;;;;;;;;:::i;41758:22::-;;;;;;;;;;-1:-1:-1;41758:22:0;;;;;;;;;;;37383:87;;;;;;;;;;-1:-1:-1;37456:6:0;;-1:-1:-1;;;;;37456:6:0;37383:87;;26129:104;;;;;;;;;;;;;:::i;42398:391::-;;;;;;:::i;:::-;;:::i;27807:288::-;;;;;;;;;;-1:-1:-1;27807:288:0;;;;;:::i;:::-;;:::i;41703:22::-;;;;;;;;;;-1:-1:-1;41703:22:0;;;;;;;;28878:355;;;;;;;;;;-1:-1:-1;28878:355:0;;;;;:::i;:::-;;:::i;41904:288::-;;;;;;;;;;-1:-1:-1;41904:288:0;;;;;:::i;:::-;;:::i;43979:84::-;;;;;;;;;;-1:-1:-1;43979:84:0;;;;;:::i;:::-;;:::i;41787:44::-;;;;;;;;;;-1:-1:-1;41787:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;42198:194;;;;;;;;;;-1:-1:-1;42198: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;43686:95::-;;;;;;;;;;-1:-1:-1;43686:95:0;;;;;:::i;:::-;;:::i;42795: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;43894:79::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;;;;;;;;;43953:5:::1;:14:::0;;-1:-1:-1;;43953:14:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;43894:79::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;;8661:2:1;27609:74:0;;;8643:21:1;8700:2;8680:18;;;8673:30;8739:34;8719:18;;;8712:62;-1:-1:-1;;;8790:18:1;;;8783:43;8843:19;;27609:74:0;8459:409:1;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;;9075:2:1;27166:58:0;;;9057:21:1;9114:2;9094:18;;;9087:30;9153:34;9133:18;;;9126:62;-1:-1:-1;;;9204:18:1;;;9197:32;9246:19;;27166:58:0;8873: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;;9478:2:1;27237:169:0;;;9460:21:1;9517:2;9497:18;;;9490:30;9556:34;9536:18;;;9529:62;9627:27;9607:18;;;9600:55;9672:19;;27237:169:0;9276: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;;10166:2:1;23547:71:0;;;10148:21:1;10205:2;10185:18;;;10178:30;10244:34;10224:18;;;10217:62;-1:-1:-1;;;10295:18:1;;;10288:32;10337:19;;23547:71:0;9964: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;;10709:2:1;24197:56:0;;;10691:21:1;10748:2;10728:18;;;10721:30;10787:34;10767:18;;;10760:62;-1:-1:-1;;;10838:18:1;;;10831:44;10892:19;;24197:56:0;10507:410:1;43787:101:0;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;43858:12:::1;:24:::0;43787:101::o;44069:86::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;44133:6:::1;:16:::0;44069:86::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;44161:101::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;44232:12:::1;:24:::0;44161:101::o;43586:94::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;43656:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;43586: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;44268:114::-;37456:6;;44332:7;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;-1:-1:-1;44355:21:0::1;44268: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;43395:85::-;43438:13;43467:7;43460: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;44388:678::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;44458:21:::1;44498:11:::0;44490:43:::1;;;::::0;-1:-1:-1;;;44490:43:0;;11940:2:1;44490: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;;44490:43:0::1;11738:343:1::0;44490:43:0::1;44554:101;::::0;;::::1;::::0;;::::1;::::0;;44599:42:::1;44554:101:::0;;44668:165;;::::1;::::0;::::1;::::0;;44716:2:::1;44668:165:::0;;44741:2:::1;44668:165:::0;;::::1;::::0;;;;44766:3:::1;44668:165:::0;;;;;;;;;;;;;44818:3:::1;44668:165:::0;;;;44554:101;:27:::1;44846:215;44869:16;44865:1;:20;;;44846:215;;;44907:14;44929:20;44948:1;::::0;44929:20:::1;:::i;:::-;44924:1;:25;;;:78;;44998:4;44986:6;44993:1;44986:9;;;;;;;;;:::i;:::-;;;;::::0;44976:19:::1;::::0;::::1;;:7:::0;:19:::1;:::i;:::-;:26;;;;:::i;:::-;44924:78;;;44952:21;44924:78;44907:95;;45017:32;45028:9;45038:1;45028:12;;;;;;;;;:::i;:::-;;;;;45042:6;45017:10;:32::i;:::-;-1:-1:-1::0;44887:3:0;::::1;::::0;::::1;:::i;:::-;;;;44846:215;;;;44429:637;;;44388:678::o:0;26129:104::-;26185:13;26218:7;26211:14;;;;;:::i;42398:391::-;42462:5;;42471:1;42462:5;;;;:10;;42454:43;;;;-1:-1:-1;;;42454:43:0;;13056:2:1;42454:43:0;;;13038:21:1;13095:2;13075:18;;;13068:30;-1:-1:-1;;;13114:18:1;;;13107:50;13174:18;;42454:43:0;12854:344:1;42454:43:0;42540:6;;42528:8;42512:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:34;;42504:88;;;;-1:-1:-1;;;42504:88:0;;13538:2:1;42504: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;;42504:88:0;13336:405:1;42504:88:0;42644:6;;42618:10;42607:22;;;;:10;:22;;;;;;42644:6;;;;;;;;42607:33;;42632:8;;42607:22;:33;:::i;:::-;:43;;42599:73;;;;-1:-1:-1;;;42599:73:0;;13948:2:1;42599:73:0;;;13930:21:1;13987:2;13967:18;;;13960:30;-1:-1:-1;;;14006:18:1;;;13999:47;14063:18;;42599:73:0;13746:341:1;42599:73:0;42712:8;42700:9;;:20;;;;:::i;:::-;42687:9;:33;;42679:64;;;;-1:-1:-1;;;42679:64:0;;14294:2:1;42679:64:0;;;14276:21:1;14333:2;14313:18;;;14306:30;-1:-1:-1;;;14352:18:1;;;14345:48;14410:18;;42679:64:0;14092:342:1;42679:64:0;42752:31;42762:10;42774:8;42752:9;:31::i;:::-;42398: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;41904:288::-;41977:13;42007:16;42015:7;29545:4;29579:12;-1:-1:-1;29569:22:0;29488:111;42007:16;41999:76;;;;-1:-1:-1;;;41999:76:0;;15416:2:1;41999: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;;41999:76:0;15214:411:1;41999:76:0;42115:1;42097:7;42091:21;;;;;:::i;:::-;;;:25;:95;;;;;;;;;;;;;;;;;42143:7;42152:18;:7;:16;:18::i;:::-;42126:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42084:102;41904:288;-1:-1:-1;;41904:288:0:o;43979:84::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;44041:6:::1;:16:::0;;::::1;::::0;;::::1;;;-1:-1:-1::0;;44041:16:0;;::::1;::::0;;;::::1;::::0;;43979:84::o;42198:194::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;42300:6:::1;42295:92;42310:19:::0;;::::1;42295:92;;;42345:34;42355:10;;42366:1;42355:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;42370:8;42345:9;:34::i;:::-;42331:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42295: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;43686:95::-:0;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;43754:9:::1;:21:::0;43686:95::o;42795:594::-;42931:5;;;;;:10;42923:43;;;;-1:-1:-1;;;42923:43:0;;13056:2:1;42923:43:0;;;13038:21:1;13095:2;13075:18;;;13068:30;-1:-1:-1;;;13114:18:1;;;13107:50;13174:18;;42923:43:0;12854:344:1;42923:43:0;43021:5;;42992:10;42981:22;;;;:10;:22;;;;;;43021:5;;;;;;;;42981:36;;43006:11;;42981:22;:36;:::i;:::-;:45;;;;42973:93;;;;-1:-1:-1;;;42973:93:0;;18188:2:1;42973: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;;42973:93:0;17986:399:1;42973:93:0;43109:11;43094:26;;:12;;:26;;;;:::i;:::-;43081:9;:39;;43073:70;;;;-1:-1:-1;;;43073:70:0;;14294:2:1;43073:70:0;;;14276:21:1;14333:2;14313:18;;;14306:30;-1:-1:-1;;;14352:18:1;;;14345:48;14410:18;;43073:70:0;14092:342:1;43073:70:0;43181:28;;-1:-1:-1;;43198:10:0;18539:2:1;18535:15;18531:53;43181:28:0;;;18519:66:1;43156:12:0;;18601::1;;43181:28:0;;;;;;;;;;;;43171:39;;;;;;43156:54;;43225:52;43244:12;;43225:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;43258:12:0;;;-1:-1:-1;43272:4:0;;-1:-1:-1;43225:18:0;:52::i;:::-;43217:79;;;;-1:-1:-1;;;43217:79:0;;18826:2:1;43217:79:0;;;18808:21:1;18865:2;18845:18;;;18838:30;-1:-1:-1;;;18884:18:1;;;18877:44;18938:18;;43217:79:0;18624:338:1;43217:79:0;43316:10;43305:22;;;;:10;:22;;;;;:37;;43331:11;;43305:22;:37;;43331:11;;43305:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;43349:34;43359:10;43371:11;43349: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;45109:189::-;45184:12;45202:8;-1:-1:-1;;;;;45202:13:0;45224:7;45202:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45183:54;;;45256:7;45248:44;;;;-1:-1:-1;;;45248:44:0;;21579:2:1;45248:44:0;;;21561:21:1;21618:2;21598:18;;;21591:30;21657:26;21637:18;;;21630:54;21701:18;;45248: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;44388: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:156::-;1613:20;;1673:4;1662:16;;1652:27;;1642:55;;1693:1;1690;1683:12;1642:55;1547:156;;;:::o;1708:182::-;1765:6;1818:2;1806:9;1797:7;1793:23;1789:32;1786:52;;;1834:1;1831;1824:12;1786:52;1857:27;1874:9;1857:27;:::i;1895:180::-;1954:6;2007:2;1995:9;1986:7;1982:23;1978:32;1975:52;;;2023:1;2020;2013:12;1975:52;-1:-1:-1;2046:23:1;;1895:180;-1:-1:-1;1895:180:1:o;2288:173::-;2356:20;;-1:-1:-1;;;;;2405:31:1;;2395:42;;2385:70;;2451:1;2448;2441:12;2466:254;2534:6;2542;2595:2;2583:9;2574:7;2570:23;2566:32;2563:52;;;2611:1;2608;2601:12;2563:52;2634:29;2653:9;2634:29;:::i;:::-;2624:39;2710:2;2695:18;;;;2682:32;;-1:-1:-1;;;2466:254:1:o;2725:328::-;2802:6;2810;2818;2871:2;2859:9;2850:7;2846:23;2842:32;2839:52;;;2887:1;2884;2877:12;2839:52;2910:29;2929:9;2910:29;:::i;:::-;2900:39;;2958:38;2992:2;2981:9;2977:18;2958:38;:::i;:::-;2948:48;;3043:2;3032:9;3028:18;3015:32;3005:42;;2725:328;;;;;:::o;3425:127::-;3486:10;3481:3;3477:20;3474:1;3467:31;3517:4;3514:1;3507:15;3541:4;3538:1;3531:15;3557:632;3622:5;3652:18;3693:2;3685:6;3682:14;3679:40;;;3699:18;;:::i;:::-;3774:2;3768:9;3742:2;3828:15;;-1:-1:-1;;3824:24:1;;;3850:2;3820:33;3816:42;3804:55;;;3874:18;;;3894:22;;;3871:46;3868:72;;;3920:18;;:::i;:::-;3960:10;3956:2;3949:22;3989:6;3980:15;;4019:6;4011;4004:22;4059:3;4050:6;4045:3;4041:16;4038:25;4035:45;;;4076:1;4073;4066:12;4035:45;4126:6;4121:3;4114:4;4106:6;4102:17;4089:44;4181:1;4174:4;4165:6;4157;4153:19;4149:30;4142:41;;;;3557:632;;;;;:::o;4194:451::-;4263:6;4316:2;4304:9;4295:7;4291:23;4287:32;4284:52;;;4332:1;4329;4322:12;4284:52;4372:9;4359:23;4405:18;4397:6;4394:30;4391:50;;;4437:1;4434;4427:12;4391:50;4460:22;;4513:4;4505:13;;4501:27;-1:-1:-1;4491:55:1;;4542:1;4539;4532:12;4491:55;4565:74;4631:7;4626:2;4613:16;4608:2;4604;4600:11;4565:74;:::i;4650:186::-;4709:6;4762:2;4750:9;4741:7;4737:23;4733:32;4730:52;;;4778:1;4775;4768:12;4730:52;4801:29;4820:9;4801:29;:::i;5030:347::-;5095:6;5103;5156:2;5144:9;5135:7;5131:23;5127:32;5124:52;;;5172:1;5169;5162:12;5124:52;5195:29;5214:9;5195:29;:::i;:::-;5185:39;;5274:2;5263:9;5259:18;5246:32;5321:5;5314:13;5307:21;5300:5;5297:32;5287:60;;5343:1;5340;5333:12;5287:60;5366:5;5356:15;;;5030:347;;;;;:::o;5382:667::-;5477:6;5485;5493;5501;5554:3;5542:9;5533:7;5529:23;5525:33;5522:53;;;5571:1;5568;5561:12;5522:53;5594:29;5613:9;5594:29;:::i;:::-;5584:39;;5642:38;5676:2;5665:9;5661:18;5642:38;:::i;:::-;5632:48;;5727:2;5716:9;5712:18;5699:32;5689:42;;5782:2;5771:9;5767:18;5754:32;5809:18;5801:6;5798:30;5795:50;;;5841:1;5838;5831:12;5795:50;5864:22;;5917:4;5909:13;;5905:27;-1:-1:-1;5895:55:1;;5946:1;5943;5936:12;5895:55;5969:74;6035:7;6030:2;6017:16;6012:2;6008;6004:11;5969:74;:::i;:::-;5959:84;;;5382:667;;;;;;;:::o;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;8098:356::-;8300:2;8282:21;;;8319:18;;;8312:30;8378:34;8373:2;8358:18;;8351:62;8445:2;8430:18;;8098:356::o;9702:127::-;9763:10;9758:3;9754:20;9751:1;9744:31;9794:4;9791:1;9784:15;9818:4;9815:1;9808:15;9834:125;9874:4;9902:1;9899;9896:8;9893:34;;;9907:18;;:::i;:::-;-1:-1:-1;9944:9:1;;9834:125::o;10367:135::-;10406:3;-1:-1:-1;;10427:17:1;;10424:43;;;10447:18;;:::i;:::-;-1:-1:-1;10494:1:1;10483:13;;10367:135::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://2d0fb74a0c4dd2876566f3e5e0386f16da71918110af9cc876cc8d0d7c007585
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.