ETH Price: $3,436.98 (-1.45%)
Gas: 2 Gwei

Token

KRebels (KR)
 

Overview

Max Total Supply

1,009 KR

Holders

457

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
rayyu.eth
Balance
10 KR
0x7f0FaBb9e9CA34fD876838d959557d81108681dC
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:
KRebels

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-12
*/

/**
 *Submitted for verification at Etherscan.io on 2021-11-28
*/

// SPDX-License-Identifier: GPL-3.0

// File: @openzeppelin/contracts/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/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
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/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/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



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/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/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/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: @openzeppelin/contracts/token/ERC721/ERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        string memory 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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File: @openzeppelin/contracts/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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

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


// Contract: KRebels
// Author: Metaverse Solutions, LLC
// Visit us at: metaversesolutions.ai
// ---- CONTRACT BEGINS HERE ----

pragma solidity ^0.8.0;

contract KRebels is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  uint256 public constant originalCost = 0.15 ether; // Original Cost
  uint256 public cost = 0.15 ether; // Variable Cost
  uint256 public tier1Cost = 0 ether; // Whitelist Tier 1
  uint256 public tier2Cost = 0.05 ether; // Whitelist Tier 2
  uint256 public tier3Cost = 0.1 ether; // Whitelist Tier 3
  uint256 public maxSupply = 9999;
  uint256 public maxMintAmount = 10;
  bool public paused = false;
  bool public whitelistOnly = true;
  uint256 public walletLimit = 9999;
  mapping(address => uint256) public whitelisted;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    // To change the amount of Reserved Owner Tokens,
    // change the x in the mint(msg.sender, x) method below
    // to any other number you want.
    // mint(msg.sender, 5);
    // After setting a reserve mint, you can change the
    // maxMintAmount or walletLimit.
  }

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

  // public
  function mint(address _to, uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
    require(!paused);
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require(supply + _mintAmount <= maxSupply);
    require((balanceOf(msg.sender) + _mintAmount) <= walletLimit, 'Wallet limit is reached.');

    if (whitelistOnly == false) {
        if (msg.sender != owner()) {
              require(msg.value >= cost * _mintAmount);
        }
    
        for (uint256 i = 1; i <= _mintAmount; i++) {
          _safeMint(_to, supply + i);
        }
    }
    else if (whitelistOnly == true) {
        require(whitelisted[msg.sender] >= 1, 'Address is not whitelisted.');
        if (whitelisted[msg.sender] == 1) {
            cost = tier1Cost;
            require(msg.value >= cost * _mintAmount, "Cost is not correct.");
            for (uint256 i = 1; i <= _mintAmount; i++) {
                _safeMint(_to, supply + i);
            }
            cost = originalCost;
        }
        else if (whitelisted[msg.sender] == 2) {
            cost = tier2Cost;
            require(msg.value >= cost * _mintAmount, "Cost is not correct.");
            for (uint256 i = 1; i <= _mintAmount; i++) {
                _safeMint(_to, supply + i);
            }
            cost = originalCost;
        }
        else if (whitelisted[msg.sender] == 3) {
            cost = tier3Cost;
            require(msg.value >= cost * _mintAmount, "Cost is not correct.");
            for (uint256 i = 1; i <= _mintAmount; i++) {
                _safeMint(_to, supply + i);
            }
            cost = originalCost;
        }
    }
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

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

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

 //
 // ONLY THE OWNER CAN CALL THE FUNCTIONS BELOW.
 //
  
 // This sets the minting price of each NFT.
 // Example: If you pass in 0.1, then you will need to pay 0.1 ETH + gas to mint 1 NFT.
  function setCost(uint256 _newCost) public onlyOwner() {
    cost = _newCost;
  }

 // This sets the amount users can mint at once.
 // Example: If you want your users to be able to mint 20 NFTs at once,
 // then you can set the setMaxMintAmount to 20.
 //
 // *THIS IS NOT A WALLET LIMIT. THERE IS ANOTHER FUNCTION FOR THAT BELOW*
  function setMaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner() {
    maxMintAmount = _newmaxMintAmount;
  }
  
 // This sets the wallet limit.
 // Example: If you set the setWalletLimit function to 5, then users can have AT MOST 5 NFTs in their wallet.
 // You can change this to adjust the pre-mint wallet limit vs. the main minting phase's wallet limit.
  function setWalletLimit(uint256 _newWalletLimit) public onlyOwner() {
    walletLimit = _newWalletLimit;
  }
  
 // If you want to save gas by setting the maxMintAmount and walletLimit
 // at the same time, you can use this function.
 // Simply pass in the new maxMintAmount first, and the newWalletLimit second.
 // Example:
 // If you want to set a pre-mint phase where users can only mint 3 NFTs at a time,
 // and have a wallet limit of 9 NFTs, you can pass in the arguments
 // 3 and 9 respectively. 
 // Then, to activate full minting for your official launch phase,
 // simply pass in new arguments to change the maxMintAmount and walletLimit.
 // Example:
 // Now that you're fully launching, you can pass in 10 to the newMaxMintAmount argument
 // which would allow users to mint up to 10 at a time, and pass in 20 to the
 // newWalletLimit argument which would create a wallet limit of 20 NFTs.
  function setMaxMintAmountAndWalletLimit(uint256 _newmaxMintAmount, uint256 _newWalletLimit) public onlyOwner() {
    maxMintAmount = _newmaxMintAmount;
    walletLimit = _newWalletLimit;
  }

 // This sets the max supply. This will be set to 10,000 by default, although it is changable.
  function setMaxSupply(uint256 _newSupply) public onlyOwner() {
    maxSupply = _newSupply;
  }
  
 // This changes the baseURI.
 // Example: If you pass in "https://google.com/", then every new NFT that is minted
 // will have a URI corresponding to the baseURI you passed in.
 // The first NFT you mint would have a URI of "https://google.com/1",
 // The second NFT you mint would have a URI of "https://google.com/2", etc.
  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

 // This sets the baseURI extension.
 // Example: If your database requires that the URI of each NFT
 // must have a .json at the end of the URI 
 // (like https://google.com/1.json instead of just https://google.com/1)
 // then you can use this function to set the base extension.
 // For the above example, you would pass in ".json" to add the .json extension.
  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

 // This pauses or unpauses sales.
 // If paused, no NFTs can be minted, including by whitelisted users.
 // Must be set to false for NFTs to be minted.
  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
 
 // This activates or deactivates the whitelist.
 // set to false = anyone can mint
 // set to true = only whitelisted users can mint
  function activateWhitelist(bool _state) public onlyOwner {
    whitelistOnly = _state;
  }
  
 // This whitelists users.
 // You MUST use an array for this function, and put quotes around the addresses you would like to whitelist.
 // Example:
 // If you want to whitelist 0x000000000000000000000000000000000000,
 // then pass in the argument:
 // ["0x000000000000000000000000000000000000"]
 //
 // If you want to whitelist multiple users, then pass in the argument with commas
 // seperating the user's addresses.
 // Example:
 // ["0x000000000000000000000000000000000000","0x111111111111111111111111111111111", "0x222222222222222222222222222222222"]
 function whitelistUser(address[] memory _user, uint256 tierLevel) public onlyOwner {
     uint256 x = 0;
     for (x = 0; x < _user.length; x++) {
         whitelisted[_user[x]] = tierLevel;
     }
  }
 
 // This removes whitelisted users.
 // It's arguments are the same as for whitelisting users.
 // You MUST use an array, and put quotes around the addresses you would like to remove from the whitelist.
  function removeWhitelistUser(address[] memory _user) public onlyOwner {
     uint256 x = 0;
     for (x = 0; x < _user.length; x++) {
         delete(whitelisted[_user[x]]);
     }
  }
  
 // This withdraws the contract's balance of ETH to the Owner's (whoever launched the contract) address.
  function withdraw() public payable onlyOwner {
    require(payable(msg.sender).send(address(this).balance));
  }
  

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"bool","name":"_state","type":"bool"}],"name":"activateWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"originalCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_user","type":"address[]"}],"name":"removeWhitelistUser","outputs":[],"stateMutability":"nonpayable","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"},{"internalType":"uint256","name":"_newWalletLimit","type":"uint256"}],"name":"setMaxMintAmountAndWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWalletLimit","type":"uint256"}],"name":"setWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tier1Cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tier2Cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tier3Cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"walletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistOnly","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_user","type":"address[]"},{"internalType":"uint256","name":"tierLevel","type":"uint256"}],"name":"whitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c9190620001ce565b50670214e8348c4f0000600d556000600e5566b1a2bc2ec50000600f5567016345785d8a000060105561270f6011819055600a6012556013805461ffff19166101001790556014553480156200007d57600080fd5b5060405162002e0e38038062002e0e833981016040819052620000a0916200032b565b825183908390620000b9906000906020850190620001ce565b508051620000cf906001906020840190620001ce565b505050620000ec620000e66200010060201b60201c565b62000104565b620000f78162000156565b5050506200040f565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001b55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001ca90600b906020840190620001ce565b5050565b828054620001dc90620003bc565b90600052602060002090601f0160209004810192826200020057600085556200024b565b82601f106200021b57805160ff19168380011785556200024b565b828001600101855582156200024b579182015b828111156200024b5782518255916020019190600101906200022e565b50620002599291506200025d565b5090565b5b808211156200025957600081556001016200025e565b600082601f8301126200028657600080fd5b81516001600160401b0380821115620002a357620002a3620003f9565b604051601f8301601f19908116603f01168101908282118183101715620002ce57620002ce620003f9565b81604052838152602092508683858801011115620002eb57600080fd5b600091505b838210156200030f5785820183015181830184015290820190620002f0565b83821115620003215760008385830101525b9695505050505050565b6000806000606084860312156200034157600080fd5b83516001600160401b03808211156200035957600080fd5b620003678783880162000274565b945060208601519150808211156200037e57600080fd5b6200038c8783880162000274565b93506040860151915080821115620003a357600080fd5b50620003b28682870162000274565b9150509250925092565b600181811c90821680620003d157607f821691505b60208210811415620003f357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6129ef806200041f6000396000f3fe60806040526004361061027d5760003560e01c806355f804b31161014f578063b88d4fde116100c1578063d936547e1161007a578063d936547e14610729578063da3ef23f14610756578063e006154c14610776578063e985e9c51461078c578063f1d5f517146107d5578063f2fde38b146107f557600080fd5b8063b88d4fde1461068c578063c6682862146106ac578063c87b56dd146106c1578063d4294bb8146106e1578063d5abeb01146106fd578063d89693dd1461071357600080fd5b806370a082311161011357806370a08231146105e4578063715018a6146106045780638da5cb5b1461061957806395d89b4114610637578063999abb7b1461064c578063a22cb4651461066c57600080fd5b806355f804b3146105555780635c975abb146105755780636352211e1461058f5780636c0360eb146105af5780636f8b44b0146105c457600080fd5b8063239c70ae116101f357806342842e0e116101ac57806342842e0e14610489578063438b6300146104a957806344a0d68a146104d65780634b4687b5146104f65780634cedfc0c146105155780634f6ccce71461053557600080fd5b8063239c70ae1461040257806323b872dd146104185780632f745c59146104385780633c8463a1146104585780633ccfd60b1461046e57806340c10f191461047657600080fd5b8063088a4ed011610245578063088a4ed014610357578063095ea7b3146103775780630f5fa1991461039757806313faede6146103b757806318160ddd146103cd578063222188e9146103e257600080fd5b806301ffc9a71461028257806302329a29146102b757806306fdde03146102d9578063081812fc146102fb57806308187c3914610333575b600080fd5b34801561028e57600080fd5b506102a261029d3660046124c4565b610815565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102d76102d23660046124a9565b610840565b005b3480156102e557600080fd5b506102ee610886565b6040516102ae91906126f3565b34801561030757600080fd5b5061031b610316366004612547565b610918565b6040516001600160a01b0390911681526020016102ae565b34801561033f57600080fd5b5061034960105481565b6040519081526020016102ae565b34801561036357600080fd5b506102d7610372366004612547565b6109ad565b34801561038357600080fd5b506102d7610392366004612405565b6109dc565b3480156103a357600080fd5b506102d76103b2366004612560565b610af2565b3480156103c357600080fd5b50610349600d5481565b3480156103d957600080fd5b50600854610349565b3480156103ee57600080fd5b506102d76103fd366004612464565b610b27565b34801561040e57600080fd5b5061034960125481565b34801561042457600080fd5b506102d7610433366004612323565b610bb3565b34801561044457600080fd5b50610349610453366004612405565b610be4565b34801561046457600080fd5b5061034960145481565b6102d7610c7a565b6102d7610484366004612405565b610cca565b34801561049557600080fd5b506102d76104a4366004612323565b610fd5565b3480156104b557600080fd5b506104c96104c43660046122d5565b610ff0565b6040516102ae91906126af565b3480156104e257600080fd5b506102d76104f1366004612547565b611092565b34801561050257600080fd5b506013546102a290610100900460ff1681565b34801561052157600080fd5b506102d76105303660046124a9565b6110c1565b34801561054157600080fd5b50610349610550366004612547565b611105565b34801561056157600080fd5b506102d76105703660046124fe565b611198565b34801561058157600080fd5b506013546102a29060ff1681565b34801561059b57600080fd5b5061031b6105aa366004612547565b6111d9565b3480156105bb57600080fd5b506102ee611250565b3480156105d057600080fd5b506102d76105df366004612547565b6112de565b3480156105f057600080fd5b506103496105ff3660046122d5565b61130d565b34801561061057600080fd5b506102d7611394565b34801561062557600080fd5b50600a546001600160a01b031661031b565b34801561064357600080fd5b506102ee6113c8565b34801561065857600080fd5b506102d761066736600461242f565b6113d7565b34801561067857600080fd5b506102d76106873660046123db565b611462565b34801561069857600080fd5b506102d76106a736600461235f565b611527565b3480156106b857600080fd5b506102ee611559565b3480156106cd57600080fd5b506102ee6106dc366004612547565b611566565b3480156106ed57600080fd5b50610349670214e8348c4f000081565b34801561070957600080fd5b5061034960115481565b34801561071f57600080fd5b50610349600e5481565b34801561073557600080fd5b506103496107443660046122d5565b60156020526000908152604090205481565b34801561076257600080fd5b506102d76107713660046124fe565b611642565b34801561078257600080fd5b50610349600f5481565b34801561079857600080fd5b506102a26107a73660046122f0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107e157600080fd5b506102d76107f0366004612547565b61167f565b34801561080157600080fd5b506102d76108103660046122d5565b6116ae565b60006001600160e01b0319821663780e9d6360e01b148061083a575061083a82611749565b92915050565b600a546001600160a01b031633146108735760405162461bcd60e51b815260040161086a90612758565b60405180910390fd5b6013805460ff1916911515919091179055565b606060008054610895906128cb565b80601f01602080910402602001604051908101604052809291908181526020018280546108c1906128cb565b801561090e5780601f106108e35761010080835404028352916020019161090e565b820191906000526020600020905b8154815290600101906020018083116108f157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109915760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161086a565b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b031633146109d75760405162461bcd60e51b815260040161086a90612758565b601255565b60006109e7826111d9565b9050806001600160a01b0316836001600160a01b03161415610a555760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161086a565b336001600160a01b0382161480610a715750610a7181336107a7565b610ae35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161086a565b610aed8383611799565b505050565b600a546001600160a01b03163314610b1c5760405162461bcd60e51b815260040161086a90612758565b601291909155601455565b600a546001600160a01b03163314610b515760405162461bcd60e51b815260040161086a90612758565b60005b8251811015610aed578160156000858481518110610b7457610b74612977565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610bab90612906565b915050610b54565b610bbd3382611807565b610bd95760405162461bcd60e51b815260040161086a9061278d565b610aed8383836118fe565b6000610bef8361130d565b8210610c515760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161086a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610ca45760405162461bcd60e51b815260040161086a90612758565b60405133904780156108fc02916000818181858888f19350505050610cc857600080fd5b565b6000610cd560085490565b60135490915060ff1615610ce857600080fd5b60008211610cf557600080fd5b601254821115610d0457600080fd5b601154610d11838361283d565b1115610d1c57600080fd5b60145482610d293361130d565b610d33919061283d565b1115610d815760405162461bcd60e51b815260206004820152601860248201527f57616c6c6574206c696d697420697320726561636865642e0000000000000000604482015260640161086a565b601354610100900460ff16610df157600a546001600160a01b03163314610dbc5781600d54610db09190612869565b341015610dbc57600080fd5b60015b828111610deb57610dd984610dd4838561283d565b611aa9565b80610de381612906565b915050610dbf565b50505050565b60135460ff61010090910416151560011415610aed573360009081526015602052604090205460011115610e675760405162461bcd60e51b815260206004820152601b60248201527f41646472657373206973206e6f742077686974656c69737465642e0000000000604482015260640161086a565b3360009081526015602052604090205460011415610eed57600e54600d819055610e92908390612869565b341015610eb15760405162461bcd60e51b815260040161086a906127de565b60015b828111610edb57610ec984610dd4838561283d565b80610ed381612906565b915050610eb4565b50670214e8348c4f0000600d55505050565b3360009081526015602052604090205460021415610f6157600f54600d819055610f18908390612869565b341015610f375760405162461bcd60e51b815260040161086a906127de565b60015b828111610edb57610f4f84610dd4838561283d565b80610f5981612906565b915050610f3a565b3360009081526015602052604090205460031415610aed57601054600d819055610f8c908390612869565b341015610fab5760405162461bcd60e51b815260040161086a906127de565b60015b828111610edb57610fc384610dd4838561283d565b80610fcd81612906565b915050610fae565b610aed83838360405180602001604052806000815250611527565b60606000610ffd8361130d565b905060008167ffffffffffffffff81111561101a5761101a61298d565b604051908082528060200260200182016040528015611043578160200160208202803683370190505b50905060005b8281101561108a5761105b8582610be4565b82828151811061106d5761106d612977565b60209081029190910101528061108281612906565b915050611049565b509392505050565b600a546001600160a01b031633146110bc5760405162461bcd60e51b815260040161086a90612758565b600d55565b600a546001600160a01b031633146110eb5760405162461bcd60e51b815260040161086a90612758565b601380549115156101000261ff0019909216919091179055565b600061111060085490565b82106111735760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161086a565b6008828154811061118657611186612977565b90600052602060002001549050919050565b600a546001600160a01b031633146111c25760405162461bcd60e51b815260040161086a90612758565b80516111d590600b90602084019061212b565b5050565b6000818152600260205260408120546001600160a01b03168061083a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161086a565b600b805461125d906128cb565b80601f0160208091040260200160405190810160405280929190818152602001828054611289906128cb565b80156112d65780601f106112ab576101008083540402835291602001916112d6565b820191906000526020600020905b8154815290600101906020018083116112b957829003601f168201915b505050505081565b600a546001600160a01b031633146113085760405162461bcd60e51b815260040161086a90612758565b601155565b60006001600160a01b0382166113785760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161086a565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146113be5760405162461bcd60e51b815260040161086a90612758565b610cc86000611ac3565b606060018054610895906128cb565b600a546001600160a01b031633146114015760405162461bcd60e51b815260040161086a90612758565b60005b81518110156111d5576015600083838151811061142357611423612977565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060009055808061145a90612906565b915050611404565b6001600160a01b0382163314156114bb5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161086a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115313383611807565b61154d5760405162461bcd60e51b815260040161086a9061278d565b610deb84848484611b15565b600c805461125d906128cb565b6000818152600260205260409020546060906001600160a01b03166115e35760405162461bcd60e51b815260206004820152602d60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526c1b995e1a5cdd195b9d08139195609a1b606482015260840161086a565b60006115ed611b48565b9050600081511161160d576040518060200160405280600081525061163b565b8061161784611b57565b600c60405160200161162b939291906125ae565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461166c5760405162461bcd60e51b815260040161086a90612758565b80516111d590600c90602084019061212b565b600a546001600160a01b031633146116a95760405162461bcd60e51b815260040161086a90612758565b601455565b600a546001600160a01b031633146116d85760405162461bcd60e51b815260040161086a90612758565b6001600160a01b03811661173d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161086a565b61174681611ac3565b50565b60006001600160e01b031982166380ac58cd60e01b148061177a57506001600160e01b03198216635b5e139f60e01b145b8061083a57506301ffc9a760e01b6001600160e01b031983161461083a565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117ce826111d9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118805760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161086a565b600061188b836111d9565b9050806001600160a01b0316846001600160a01b031614806118c65750836001600160a01b03166118bb84610918565b6001600160a01b0316145b806118f657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611911826111d9565b6001600160a01b0316146119795760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161086a565b6001600160a01b0382166119db5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161086a565b6119e6838383611c55565b6119f1600082611799565b6001600160a01b0383166000908152600360205260408120805460019290611a1a908490612888565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a4890849061283d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6111d5828260405180602001604052806000815250611d0d565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611b208484846118fe565b611b2c84848484611d40565b610deb5760405162461bcd60e51b815260040161086a90612706565b6060600b8054610895906128cb565b606081611b7b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ba55780611b8f81612906565b9150611b9e9050600a83612855565b9150611b7f565b60008167ffffffffffffffff811115611bc057611bc061298d565b6040519080825280601f01601f191660200182016040528015611bea576020820181803683370190505b5090505b84156118f657611bff600183612888565b9150611c0c600a86612921565b611c1790603061283d565b60f81b818381518110611c2c57611c2c612977565b60200101906001600160f81b031916908160001a905350611c4e600a86612855565b9450611bee565b6001600160a01b038316611cb057611cab81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611cd3565b816001600160a01b0316836001600160a01b031614611cd357611cd38382611e4d565b6001600160a01b038216611cea57610aed81611eea565b826001600160a01b0316826001600160a01b031614610aed57610aed8282611f99565b611d178383611fdd565b611d246000848484611d40565b610aed5760405162461bcd60e51b815260040161086a90612706565b60006001600160a01b0384163b15611e4257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d84903390899088908890600401612672565b602060405180830381600087803b158015611d9e57600080fd5b505af1925050508015611dce575060408051601f3d908101601f19168201909252611dcb918101906124e1565b60015b611e28573d808015611dfc576040519150601f19603f3d011682016040523d82523d6000602084013e611e01565b606091505b508051611e205760405162461bcd60e51b815260040161086a90612706565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118f6565b506001949350505050565b60006001611e5a8461130d565b611e649190612888565b600083815260076020526040902054909150808214611eb7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611efc90600190612888565b60008381526009602052604081205460088054939450909284908110611f2457611f24612977565b906000526020600020015490508060088381548110611f4557611f45612977565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f7d57611f7d612961565b6001900381819060005260206000200160009055905550505050565b6000611fa48361130d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120335760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161086a565b6000818152600260205260409020546001600160a01b0316156120985760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161086a565b6120a460008383611c55565b6001600160a01b03821660009081526003602052604081208054600192906120cd90849061283d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612137906128cb565b90600052602060002090601f016020900481019282612159576000855561219f565b82601f1061217257805160ff191683800117855561219f565b8280016001018555821561219f579182015b8281111561219f578251825591602001919060010190612184565b506121ab9291506121af565b5090565b5b808211156121ab57600081556001016121b0565b600067ffffffffffffffff8311156121de576121de61298d565b6121f1601f8401601f191660200161280c565b905082815283838301111561220557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461223357600080fd5b919050565b600082601f83011261224957600080fd5b8135602067ffffffffffffffff8211156122655761226561298d565b8160051b61227482820161280c565b83815282810190868401838801850189101561228f57600080fd5b600093505b858410156122b9576122a58161221c565b835260019390930192918401918401612294565b50979650505050505050565b8035801515811461223357600080fd5b6000602082840312156122e757600080fd5b61163b8261221c565b6000806040838503121561230357600080fd5b61230c8361221c565b915061231a6020840161221c565b90509250929050565b60008060006060848603121561233857600080fd5b6123418461221c565b925061234f6020850161221c565b9150604084013590509250925092565b6000806000806080858703121561237557600080fd5b61237e8561221c565b935061238c6020860161221c565b925060408501359150606085013567ffffffffffffffff8111156123af57600080fd5b8501601f810187136123c057600080fd5b6123cf878235602084016121c4565b91505092959194509250565b600080604083850312156123ee57600080fd5b6123f78361221c565b915061231a602084016122c5565b6000806040838503121561241857600080fd5b6124218361221c565b946020939093013593505050565b60006020828403121561244157600080fd5b813567ffffffffffffffff81111561245857600080fd5b6118f684828501612238565b6000806040838503121561247757600080fd5b823567ffffffffffffffff81111561248e57600080fd5b61249a85828601612238565b95602094909401359450505050565b6000602082840312156124bb57600080fd5b61163b826122c5565b6000602082840312156124d657600080fd5b813561163b816129a3565b6000602082840312156124f357600080fd5b815161163b816129a3565b60006020828403121561251057600080fd5b813567ffffffffffffffff81111561252757600080fd5b8201601f8101841361253857600080fd5b6118f6848235602084016121c4565b60006020828403121561255957600080fd5b5035919050565b6000806040838503121561257357600080fd5b50508035926020909101359150565b6000815180845261259a81602086016020860161289f565b601f01601f19169290920160200192915050565b6000845160206125c18285838a0161289f565b8551918401916125d48184848a0161289f565b8554920191600090600181811c90808316806125f157607f831692505b85831081141561260f57634e487b7160e01b85526022600452602485fd5b808015612623576001811461263457612661565b60ff19851688528388019550612661565b60008b81526020902060005b858110156126595781548a820152908401908801612640565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126a590830184612582565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126e7578351835292840192918401916001016126cb565b50909695505050505050565b60208152600061163b6020830184612582565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526014908201527321b7b9ba1034b9903737ba1031b7b93932b1ba1760611b604082015260600190565b604051601f8201601f1916810167ffffffffffffffff811182821017156128355761283561298d565b604052919050565b6000821982111561285057612850612935565b500190565b6000826128645761286461294b565b500490565b600081600019048311821515161561288357612883612935565b500290565b60008282101561289a5761289a612935565b500390565b60005b838110156128ba5781810151838201526020016128a2565b83811115610deb5750506000910152565b600181811c908216806128df57607f821691505b6020821081141561290057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561291a5761291a612935565b5060010190565b6000826129305761293061294b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461174657600080fdfea26469706673582212207bcf98d30fdaf714adaa2def4cfaa289df99ee9ade3348f83ee8aab3717343c664736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000074b526562656c730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024b52000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a70696e6174612e636f6d00000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061027d5760003560e01c806355f804b31161014f578063b88d4fde116100c1578063d936547e1161007a578063d936547e14610729578063da3ef23f14610756578063e006154c14610776578063e985e9c51461078c578063f1d5f517146107d5578063f2fde38b146107f557600080fd5b8063b88d4fde1461068c578063c6682862146106ac578063c87b56dd146106c1578063d4294bb8146106e1578063d5abeb01146106fd578063d89693dd1461071357600080fd5b806370a082311161011357806370a08231146105e4578063715018a6146106045780638da5cb5b1461061957806395d89b4114610637578063999abb7b1461064c578063a22cb4651461066c57600080fd5b806355f804b3146105555780635c975abb146105755780636352211e1461058f5780636c0360eb146105af5780636f8b44b0146105c457600080fd5b8063239c70ae116101f357806342842e0e116101ac57806342842e0e14610489578063438b6300146104a957806344a0d68a146104d65780634b4687b5146104f65780634cedfc0c146105155780634f6ccce71461053557600080fd5b8063239c70ae1461040257806323b872dd146104185780632f745c59146104385780633c8463a1146104585780633ccfd60b1461046e57806340c10f191461047657600080fd5b8063088a4ed011610245578063088a4ed014610357578063095ea7b3146103775780630f5fa1991461039757806313faede6146103b757806318160ddd146103cd578063222188e9146103e257600080fd5b806301ffc9a71461028257806302329a29146102b757806306fdde03146102d9578063081812fc146102fb57806308187c3914610333575b600080fd5b34801561028e57600080fd5b506102a261029d3660046124c4565b610815565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102d76102d23660046124a9565b610840565b005b3480156102e557600080fd5b506102ee610886565b6040516102ae91906126f3565b34801561030757600080fd5b5061031b610316366004612547565b610918565b6040516001600160a01b0390911681526020016102ae565b34801561033f57600080fd5b5061034960105481565b6040519081526020016102ae565b34801561036357600080fd5b506102d7610372366004612547565b6109ad565b34801561038357600080fd5b506102d7610392366004612405565b6109dc565b3480156103a357600080fd5b506102d76103b2366004612560565b610af2565b3480156103c357600080fd5b50610349600d5481565b3480156103d957600080fd5b50600854610349565b3480156103ee57600080fd5b506102d76103fd366004612464565b610b27565b34801561040e57600080fd5b5061034960125481565b34801561042457600080fd5b506102d7610433366004612323565b610bb3565b34801561044457600080fd5b50610349610453366004612405565b610be4565b34801561046457600080fd5b5061034960145481565b6102d7610c7a565b6102d7610484366004612405565b610cca565b34801561049557600080fd5b506102d76104a4366004612323565b610fd5565b3480156104b557600080fd5b506104c96104c43660046122d5565b610ff0565b6040516102ae91906126af565b3480156104e257600080fd5b506102d76104f1366004612547565b611092565b34801561050257600080fd5b506013546102a290610100900460ff1681565b34801561052157600080fd5b506102d76105303660046124a9565b6110c1565b34801561054157600080fd5b50610349610550366004612547565b611105565b34801561056157600080fd5b506102d76105703660046124fe565b611198565b34801561058157600080fd5b506013546102a29060ff1681565b34801561059b57600080fd5b5061031b6105aa366004612547565b6111d9565b3480156105bb57600080fd5b506102ee611250565b3480156105d057600080fd5b506102d76105df366004612547565b6112de565b3480156105f057600080fd5b506103496105ff3660046122d5565b61130d565b34801561061057600080fd5b506102d7611394565b34801561062557600080fd5b50600a546001600160a01b031661031b565b34801561064357600080fd5b506102ee6113c8565b34801561065857600080fd5b506102d761066736600461242f565b6113d7565b34801561067857600080fd5b506102d76106873660046123db565b611462565b34801561069857600080fd5b506102d76106a736600461235f565b611527565b3480156106b857600080fd5b506102ee611559565b3480156106cd57600080fd5b506102ee6106dc366004612547565b611566565b3480156106ed57600080fd5b50610349670214e8348c4f000081565b34801561070957600080fd5b5061034960115481565b34801561071f57600080fd5b50610349600e5481565b34801561073557600080fd5b506103496107443660046122d5565b60156020526000908152604090205481565b34801561076257600080fd5b506102d76107713660046124fe565b611642565b34801561078257600080fd5b50610349600f5481565b34801561079857600080fd5b506102a26107a73660046122f0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107e157600080fd5b506102d76107f0366004612547565b61167f565b34801561080157600080fd5b506102d76108103660046122d5565b6116ae565b60006001600160e01b0319821663780e9d6360e01b148061083a575061083a82611749565b92915050565b600a546001600160a01b031633146108735760405162461bcd60e51b815260040161086a90612758565b60405180910390fd5b6013805460ff1916911515919091179055565b606060008054610895906128cb565b80601f01602080910402602001604051908101604052809291908181526020018280546108c1906128cb565b801561090e5780601f106108e35761010080835404028352916020019161090e565b820191906000526020600020905b8154815290600101906020018083116108f157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109915760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161086a565b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b031633146109d75760405162461bcd60e51b815260040161086a90612758565b601255565b60006109e7826111d9565b9050806001600160a01b0316836001600160a01b03161415610a555760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161086a565b336001600160a01b0382161480610a715750610a7181336107a7565b610ae35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161086a565b610aed8383611799565b505050565b600a546001600160a01b03163314610b1c5760405162461bcd60e51b815260040161086a90612758565b601291909155601455565b600a546001600160a01b03163314610b515760405162461bcd60e51b815260040161086a90612758565b60005b8251811015610aed578160156000858481518110610b7457610b74612977565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610bab90612906565b915050610b54565b610bbd3382611807565b610bd95760405162461bcd60e51b815260040161086a9061278d565b610aed8383836118fe565b6000610bef8361130d565b8210610c515760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161086a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610ca45760405162461bcd60e51b815260040161086a90612758565b60405133904780156108fc02916000818181858888f19350505050610cc857600080fd5b565b6000610cd560085490565b60135490915060ff1615610ce857600080fd5b60008211610cf557600080fd5b601254821115610d0457600080fd5b601154610d11838361283d565b1115610d1c57600080fd5b60145482610d293361130d565b610d33919061283d565b1115610d815760405162461bcd60e51b815260206004820152601860248201527f57616c6c6574206c696d697420697320726561636865642e0000000000000000604482015260640161086a565b601354610100900460ff16610df157600a546001600160a01b03163314610dbc5781600d54610db09190612869565b341015610dbc57600080fd5b60015b828111610deb57610dd984610dd4838561283d565b611aa9565b80610de381612906565b915050610dbf565b50505050565b60135460ff61010090910416151560011415610aed573360009081526015602052604090205460011115610e675760405162461bcd60e51b815260206004820152601b60248201527f41646472657373206973206e6f742077686974656c69737465642e0000000000604482015260640161086a565b3360009081526015602052604090205460011415610eed57600e54600d819055610e92908390612869565b341015610eb15760405162461bcd60e51b815260040161086a906127de565b60015b828111610edb57610ec984610dd4838561283d565b80610ed381612906565b915050610eb4565b50670214e8348c4f0000600d55505050565b3360009081526015602052604090205460021415610f6157600f54600d819055610f18908390612869565b341015610f375760405162461bcd60e51b815260040161086a906127de565b60015b828111610edb57610f4f84610dd4838561283d565b80610f5981612906565b915050610f3a565b3360009081526015602052604090205460031415610aed57601054600d819055610f8c908390612869565b341015610fab5760405162461bcd60e51b815260040161086a906127de565b60015b828111610edb57610fc384610dd4838561283d565b80610fcd81612906565b915050610fae565b610aed83838360405180602001604052806000815250611527565b60606000610ffd8361130d565b905060008167ffffffffffffffff81111561101a5761101a61298d565b604051908082528060200260200182016040528015611043578160200160208202803683370190505b50905060005b8281101561108a5761105b8582610be4565b82828151811061106d5761106d612977565b60209081029190910101528061108281612906565b915050611049565b509392505050565b600a546001600160a01b031633146110bc5760405162461bcd60e51b815260040161086a90612758565b600d55565b600a546001600160a01b031633146110eb5760405162461bcd60e51b815260040161086a90612758565b601380549115156101000261ff0019909216919091179055565b600061111060085490565b82106111735760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161086a565b6008828154811061118657611186612977565b90600052602060002001549050919050565b600a546001600160a01b031633146111c25760405162461bcd60e51b815260040161086a90612758565b80516111d590600b90602084019061212b565b5050565b6000818152600260205260408120546001600160a01b03168061083a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161086a565b600b805461125d906128cb565b80601f0160208091040260200160405190810160405280929190818152602001828054611289906128cb565b80156112d65780601f106112ab576101008083540402835291602001916112d6565b820191906000526020600020905b8154815290600101906020018083116112b957829003601f168201915b505050505081565b600a546001600160a01b031633146113085760405162461bcd60e51b815260040161086a90612758565b601155565b60006001600160a01b0382166113785760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161086a565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146113be5760405162461bcd60e51b815260040161086a90612758565b610cc86000611ac3565b606060018054610895906128cb565b600a546001600160a01b031633146114015760405162461bcd60e51b815260040161086a90612758565b60005b81518110156111d5576015600083838151811061142357611423612977565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060009055808061145a90612906565b915050611404565b6001600160a01b0382163314156114bb5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161086a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115313383611807565b61154d5760405162461bcd60e51b815260040161086a9061278d565b610deb84848484611b15565b600c805461125d906128cb565b6000818152600260205260409020546060906001600160a01b03166115e35760405162461bcd60e51b815260206004820152602d60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526c1b995e1a5cdd195b9d08139195609a1b606482015260840161086a565b60006115ed611b48565b9050600081511161160d576040518060200160405280600081525061163b565b8061161784611b57565b600c60405160200161162b939291906125ae565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461166c5760405162461bcd60e51b815260040161086a90612758565b80516111d590600c90602084019061212b565b600a546001600160a01b031633146116a95760405162461bcd60e51b815260040161086a90612758565b601455565b600a546001600160a01b031633146116d85760405162461bcd60e51b815260040161086a90612758565b6001600160a01b03811661173d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161086a565b61174681611ac3565b50565b60006001600160e01b031982166380ac58cd60e01b148061177a57506001600160e01b03198216635b5e139f60e01b145b8061083a57506301ffc9a760e01b6001600160e01b031983161461083a565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117ce826111d9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118805760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161086a565b600061188b836111d9565b9050806001600160a01b0316846001600160a01b031614806118c65750836001600160a01b03166118bb84610918565b6001600160a01b0316145b806118f657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611911826111d9565b6001600160a01b0316146119795760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161086a565b6001600160a01b0382166119db5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161086a565b6119e6838383611c55565b6119f1600082611799565b6001600160a01b0383166000908152600360205260408120805460019290611a1a908490612888565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a4890849061283d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6111d5828260405180602001604052806000815250611d0d565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611b208484846118fe565b611b2c84848484611d40565b610deb5760405162461bcd60e51b815260040161086a90612706565b6060600b8054610895906128cb565b606081611b7b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ba55780611b8f81612906565b9150611b9e9050600a83612855565b9150611b7f565b60008167ffffffffffffffff811115611bc057611bc061298d565b6040519080825280601f01601f191660200182016040528015611bea576020820181803683370190505b5090505b84156118f657611bff600183612888565b9150611c0c600a86612921565b611c1790603061283d565b60f81b818381518110611c2c57611c2c612977565b60200101906001600160f81b031916908160001a905350611c4e600a86612855565b9450611bee565b6001600160a01b038316611cb057611cab81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611cd3565b816001600160a01b0316836001600160a01b031614611cd357611cd38382611e4d565b6001600160a01b038216611cea57610aed81611eea565b826001600160a01b0316826001600160a01b031614610aed57610aed8282611f99565b611d178383611fdd565b611d246000848484611d40565b610aed5760405162461bcd60e51b815260040161086a90612706565b60006001600160a01b0384163b15611e4257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d84903390899088908890600401612672565b602060405180830381600087803b158015611d9e57600080fd5b505af1925050508015611dce575060408051601f3d908101601f19168201909252611dcb918101906124e1565b60015b611e28573d808015611dfc576040519150601f19603f3d011682016040523d82523d6000602084013e611e01565b606091505b508051611e205760405162461bcd60e51b815260040161086a90612706565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118f6565b506001949350505050565b60006001611e5a8461130d565b611e649190612888565b600083815260076020526040902054909150808214611eb7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611efc90600190612888565b60008381526009602052604081205460088054939450909284908110611f2457611f24612977565b906000526020600020015490508060088381548110611f4557611f45612977565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f7d57611f7d612961565b6001900381819060005260206000200160009055905550505050565b6000611fa48361130d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120335760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161086a565b6000818152600260205260409020546001600160a01b0316156120985760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161086a565b6120a460008383611c55565b6001600160a01b03821660009081526003602052604081208054600192906120cd90849061283d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612137906128cb565b90600052602060002090601f016020900481019282612159576000855561219f565b82601f1061217257805160ff191683800117855561219f565b8280016001018555821561219f579182015b8281111561219f578251825591602001919060010190612184565b506121ab9291506121af565b5090565b5b808211156121ab57600081556001016121b0565b600067ffffffffffffffff8311156121de576121de61298d565b6121f1601f8401601f191660200161280c565b905082815283838301111561220557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461223357600080fd5b919050565b600082601f83011261224957600080fd5b8135602067ffffffffffffffff8211156122655761226561298d565b8160051b61227482820161280c565b83815282810190868401838801850189101561228f57600080fd5b600093505b858410156122b9576122a58161221c565b835260019390930192918401918401612294565b50979650505050505050565b8035801515811461223357600080fd5b6000602082840312156122e757600080fd5b61163b8261221c565b6000806040838503121561230357600080fd5b61230c8361221c565b915061231a6020840161221c565b90509250929050565b60008060006060848603121561233857600080fd5b6123418461221c565b925061234f6020850161221c565b9150604084013590509250925092565b6000806000806080858703121561237557600080fd5b61237e8561221c565b935061238c6020860161221c565b925060408501359150606085013567ffffffffffffffff8111156123af57600080fd5b8501601f810187136123c057600080fd5b6123cf878235602084016121c4565b91505092959194509250565b600080604083850312156123ee57600080fd5b6123f78361221c565b915061231a602084016122c5565b6000806040838503121561241857600080fd5b6124218361221c565b946020939093013593505050565b60006020828403121561244157600080fd5b813567ffffffffffffffff81111561245857600080fd5b6118f684828501612238565b6000806040838503121561247757600080fd5b823567ffffffffffffffff81111561248e57600080fd5b61249a85828601612238565b95602094909401359450505050565b6000602082840312156124bb57600080fd5b61163b826122c5565b6000602082840312156124d657600080fd5b813561163b816129a3565b6000602082840312156124f357600080fd5b815161163b816129a3565b60006020828403121561251057600080fd5b813567ffffffffffffffff81111561252757600080fd5b8201601f8101841361253857600080fd5b6118f6848235602084016121c4565b60006020828403121561255957600080fd5b5035919050565b6000806040838503121561257357600080fd5b50508035926020909101359150565b6000815180845261259a81602086016020860161289f565b601f01601f19169290920160200192915050565b6000845160206125c18285838a0161289f565b8551918401916125d48184848a0161289f565b8554920191600090600181811c90808316806125f157607f831692505b85831081141561260f57634e487b7160e01b85526022600452602485fd5b808015612623576001811461263457612661565b60ff19851688528388019550612661565b60008b81526020902060005b858110156126595781548a820152908401908801612640565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126a590830184612582565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126e7578351835292840192918401916001016126cb565b50909695505050505050565b60208152600061163b6020830184612582565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526014908201527321b7b9ba1034b9903737ba1031b7b93932b1ba1760611b604082015260600190565b604051601f8201601f1916810167ffffffffffffffff811182821017156128355761283561298d565b604052919050565b6000821982111561285057612850612935565b500190565b6000826128645761286461294b565b500490565b600081600019048311821515161561288357612883612935565b500290565b60008282101561289a5761289a612935565b500390565b60005b838110156128ba5781810151838201526020016128a2565b83811115610deb5750506000910152565b600181811c908216806128df57607f821691505b6020821081141561290057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561291a5761291a612935565b5060010190565b6000826129305761293061294b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461174657600080fdfea26469706673582212207bcf98d30fdaf714adaa2def4cfaa289df99ee9ade3348f83ee8aab3717343c664736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000074b526562656c730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024b52000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a70696e6174612e636f6d00000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): KRebels
Arg [1] : _symbol (string): KR
Arg [2] : _initBaseURI (string): pinata.com

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [4] : 4b526562656c7300000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 4b52000000000000000000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [8] : 70696e6174612e636f6d00000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

43319:8817:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34737:224;;;;;;;;;;-1:-1:-1;34737:224:0;;;;;:::i;:::-;;:::i;:::-;;;9133:14:1;;9126:22;9108:41;;9096:2;9081:18;34737:224:0;;;;;;;;50406:73;;;;;;;;;;-1:-1:-1;50406:73:0;;;;;:::i;:::-;;:::i;:::-;;22629:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24188:221::-;;;;;;;;;;-1:-1:-1;24188:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7794:32:1;;;7776:51;;7764:2;7749:18;24188:221:0;7630:203:1;43716:36:0;;;;;;;;;;;;;;;;;;;17793:25:1;;;17781:2;17766:18;43716:36:0;17647:177:1;47620:118:0;;;;;;;;;;-1:-1:-1;47620:118:0;;;;;:::i;:::-;;:::i;23711:411::-;;;;;;;;;;-1:-1:-1;23711:411:0;;;;;:::i;:::-;;:::i;48918:193::-;;;;;;;;;;-1:-1:-1;48918:193:0;;;;;:::i;:::-;;:::i;43541:32::-;;;;;;;;;;;;;;;;35377:113;;;;;;;;;;-1:-1:-1;35465:10:0;:17;35377:113;;51291:206;;;;;;;;;;-1:-1:-1;51291:206:0;;;;;:::i;:::-;;:::i;43813:33::-;;;;;;;;;;;;;;;;25078:339;;;;;;;;;;-1:-1:-1;25078:339:0;;;;;:::i;:::-;;:::i;35045:256::-;;;;;;;;;;-1:-1:-1;35045:256:0;;;;;:::i;:::-;;:::i;43919:33::-;;;;;;;;;;;;;;;;52013:114;;;:::i;44594:1698::-;;;;;;:::i;:::-;;:::i;25488:185::-;;;;;;;;;;-1:-1:-1;25488:185:0;;;;;:::i;:::-;;:::i;46298:348::-;;;;;;;;;;-1:-1:-1;46298:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;47278:82::-;;;;;;;;;;-1:-1:-1;47278:82:0;;;;;:::i;:::-;;:::i;43882:32::-;;;;;;;;;;-1:-1:-1;43882:32:0;;;;;;;;;;;50623:92;;;;;;;;;;-1:-1:-1;50623:92:0;;;;;:::i;:::-;;:::i;35567:233::-;;;;;;;;;;-1:-1:-1;35567:233:0;;;;;:::i;:::-;;:::i;49649:98::-;;;;;;;;;;-1:-1:-1;49649:98:0;;;;;:::i;:::-;;:::i;43851:26::-;;;;;;;;;;-1:-1:-1;43851:26:0;;;;;;;;22323:239;;;;;;;;;;-1:-1:-1;22323:239:0;;;;;:::i;:::-;;:::i;43402:21::-;;;;;;;;;;;;;:::i;49213:96::-;;;;;;;;;;-1:-1:-1;49213:96:0;;;;;:::i;:::-;;:::i;22053:208::-;;;;;;;;;;-1:-1:-1;22053:208:0;;;;;:::i;:::-;;:::i;42526:94::-;;;;;;;;;;;;;:::i;41875:87::-;;;;;;;;;;-1:-1:-1;41948:6:0;;-1:-1:-1;;;;;41948:6:0;41875:87;;22798:104;;;;;;;;;;;;;:::i;51710:189::-;;;;;;;;;;-1:-1:-1;51710:189:0;;;;;:::i;:::-;;:::i;24481:295::-;;;;;;;;;;-1:-1:-1;24481:295:0;;;;;:::i;:::-;;:::i;25744:328::-;;;;;;;;;;-1:-1:-1;25744:328:0;;;;;:::i;:::-;;:::i;43428:37::-;;;;;;;;;;;;;:::i;46652:421::-;;;;;;;;;;-1:-1:-1;46652:421:0;;;;;:::i;:::-;;:::i;43470:49::-;;;;;;;;;;;;43509:10;43470:49;;43777:31;;;;;;;;;;;;;;;;43595:34;;;;;;;;;;;;;;;;43957:46;;;;;;;;;;-1:-1:-1;43957:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;50122:122;;;;;;;;;;-1:-1:-1;50122:122:0;;;;;:::i;:::-;;:::i;43654:37::-;;;;;;;;;;;;;;;;24847:164;;;;;;;;;;-1:-1:-1;24847:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24968:25:0;;;24944:4;24968:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24847:164;47994:110;;;;;;;;;;-1:-1:-1;47994:110:0;;;;;:::i;:::-;;:::i;42775:192::-;;;;;;;;;;-1:-1:-1;42775:192:0;;;;;:::i;:::-;;:::i;34737:224::-;34839:4;-1:-1:-1;;;;;;34863:50:0;;-1:-1:-1;;;34863:50:0;;:90;;;34917:36;34941:11;34917:23;:36::i;:::-;34856:97;34737:224;-1:-1:-1;;34737:224:0:o;50406:73::-;41948:6;;-1:-1:-1;;;;;41948:6:0;20238:10;42095:23;42087:68;;;;-1:-1:-1;;;42087:68:0;;;;;;;:::i;:::-;;;;;;;;;50458:6:::1;:15:::0;;-1:-1:-1;;50458:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50406:73::o;22629:100::-;22683:13;22716:5;22709:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22629:100;:::o;24188:221::-;24264:7;27671:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27671:16:0;24284:73;;;;-1:-1:-1;;;24284:73:0;;14727:2:1;24284:73:0;;;14709:21:1;14766:2;14746:18;;;14739:30;14805:34;14785:18;;;14778:62;-1:-1:-1;;;14856:18:1;;;14849:42;14908:19;;24284:73:0;14525:408:1;24284:73:0;-1:-1:-1;24377:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24377:24:0;;24188:221::o;47620:118::-;41948:6;;-1:-1:-1;;;;;41948:6:0;20238:10;42095:23;42087:68;;;;-1:-1:-1;;;42087:68:0;;;;;;;:::i;:::-;47699:13:::1;:33:::0;47620:118::o;23711:411::-;23792:13;23808:23;23823:7;23808:14;:23::i;:::-;23792:39;;23856:5;-1:-1:-1;;;;;23850:11:0;:2;-1:-1:-1;;;;;23850:11:0;;;23842:57;;;;-1:-1:-1;;;23842:57:0;;15911:2:1;23842:57:0;;;15893:21:1;15950:2;15930:18;;;15923:30;15989:34;15969:18;;;15962:62;-1:-1:-1;;;16040:18:1;;;16033:31;16081:19;;23842:57:0;15709:397:1;23842:57:0;20238:10;-1:-1:-1;;;;;23934:21:0;;;;:62;;-1:-1:-1;23959:37:0;23976:5;20238:10;24847:164;:::i;23959:37::-;23912:168;;;;-1:-1:-1;;;23912:168:0;;13120:2:1;23912:168:0;;;13102:21:1;13159:2;13139:18;;;13132:30;13198:34;13178:18;;;13171:62;13269:26;13249:18;;;13242:54;13313:19;;23912:168:0;12918:420:1;23912:168:0;24093:21;24102:2;24106:7;24093:8;:21::i;:::-;23781:341;23711:411;;:::o;48918:193::-;41948:6;;-1:-1:-1;;;;;41948:6:0;20238:10;42095:23;42087:68;;;;-1:-1:-1;;;42087:68:0;;;;;;;:::i;:::-;49036:13:::1;:33:::0;;;;49076:11:::1;:29:::0;48918:193::o;51291:206::-;41948:6;;-1:-1:-1;;;;;41948:6:0;20238:10;42095:23;42087:68;;;;-1:-1:-1;;;42087:68:0;;;;;;;:::i;:::-;51382:9:::1;51403:89;51419:5;:12;51415:1;:16;51403:89;;;51474:9;51450:11;:21;51462:5;51468:1;51462:8;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;51450:21:0::1;-1:-1:-1::0;;;;;51450:21:0::1;;;;;;;;;;;;:33;;;;51433:3;;;;;:::i;:::-;;;;51403:89;;25078:339:::0;25273:41;20238:10;25306:7;25273:18;:41::i;:::-;25265:103;;;;-1:-1:-1;;;25265:103:0;;;;;;;:::i;:::-;25381:28;25391:4;25397:2;25401:7;25381:9;:28::i;35045:256::-;35142:7;35178:23;35195:5;35178:16;:23::i;:::-;35170:5;:31;35162:87;;;;-1:-1:-1;;;35162:87:0;;10000:2:1;35162:87:0;;;9982:21:1;10039:2;10019:18;;;10012:30;10078:34;10058:18;;;10051:62;-1:-1:-1;;;10129:18:1;;;10122:41;10180:19;;35162:87:0;9798:407:1;35162:87:0;-1:-1:-1;;;;;;35267:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35045:256::o;52013:114::-;41948:6;;-1:-1:-1;;;;;41948:6:0;20238:10;42095:23;42087:68;;;;-1:-1:-1;;;42087:68:0;;;;;;;:::i;:::-;52073:47:::1;::::0;52081:10:::1;::::0;52098:21:::1;52073:47:::0;::::1;;;::::0;::::1;::::0;;;52098:21;52081:10;52073:47;::::1;;;;;;52065:56;;;::::0;::::1;;52013:114::o:0;44594:1698::-;44664:14;44681:13;35465:10;:17;;35377:113;44681:13;44710:6;;44664:30;;-1:-1:-1;44710:6:0;;44709:7;44701:16;;;;;;44746:1;44732:11;:15;44724:24;;;;;;44778:13;;44763:11;:28;;44755:37;;;;;;44831:9;;44807:20;44816:11;44807:6;:20;:::i;:::-;:33;;44799:42;;;;;;44897:11;;44881;44857:21;44867:10;44857:9;:21::i;:::-;:35;;;;:::i;:::-;44856:52;;44848:89;;;;-1:-1:-1;;;44848:89:0;;12767:2:1;44848:89:0;;;12749:21:1;12806:2;12786:18;;;12779:30;12845:26;12825:18;;;12818:54;12889:18;;44848:89:0;12565:348:1;44848:89:0;44950:13;;;;;;;44946:1341;;41948:6;;-1:-1:-1;;;;;41948:6:0;44989:10;:21;44985:96;;45057:11;45050:4;;:18;;;;:::i;:::-;45037:9;:31;;45029:40;;;;;;45114:1;45097:94;45122:11;45117:1;:16;45097:94;;45153:26;45163:3;45168:10;45177:1;45168:6;:10;:::i;:::-;45153:9;:26::i;:::-;45135:3;;;;:::i;:::-;;;;45097:94;;;;23781:341;23711:411;;:::o;44946:1341::-;45213:13;;;;;;;;:21;;:13;:21;45209:1078;;;45267:10;45255:23;;;;:11;:23;;;;;;45282:1;-1:-1:-1;45255:28:0;45247:68;;;;-1:-1:-1;;;45247:68:0;;16313:2:1;45247:68:0;;;16295:21:1;16352:2;16332:18;;;16325:30;16391:29;16371:18;;;16364:57;16438:18;;45247:68:0;16111:351:1;45247:68:0;45342:10;45330:23;;;;:11;:23;;;;;;45357:1;45330:28;45326:954;;;45382:9;;45375:4;:16;;;45427:18;;45434:11;;45427:18;:::i;:::-;45414:9;:31;;45406:64;;;;-1:-1:-1;;;45406:64:0;;;;;;;:::i;:::-;45502:1;45485:104;45510:11;45505:1;:16;45485:104;;45547:26;45557:3;45562:10;45571:1;45562:6;:10;:::i;45547:26::-;45523:3;;;;:::i;:::-;;;;45485:104;;;-1:-1:-1;43509:10:0;45603:4;:19;23781:341;23711:411;;:::o;45326:954::-;45665:10;45653:23;;;;:11;:23;;;;;;45680:1;45653:28;45649:631;;;45705:9;;45698:4;:16;;;45750:18;;45757:11;;45750:18;:::i;:::-;45737:9;:31;;45729:64;;;;-1:-1:-1;;;45729:64:0;;;;;;;:::i;:::-;45825:1;45808:104;45833:11;45828:1;:16;45808:104;;45870:26;45880:3;45885:10;45894:1;45885:6;:10;:::i;45870:26::-;45846:3;;;;:::i;:::-;;;;45808:104;;45649:631;45988:10;45976:23;;;;:11;:23;;;;;;46003:1;45976:28;45972:308;;;46028:9;;46021:4;:16;;;46073:18;;46080:11;;46073:18;:::i;:::-;46060:9;:31;;46052:64;;;;-1:-1:-1;;;46052:64:0;;;;;;;:::i;:::-;46148:1;46131:104;46156:11;46151:1;:16;46131:104;;46193:26;46203:3;46208:10;46217:1;46208:6;:10;:::i;46193:26::-;46169:3;;;;:::i;:::-;;;;46131:104;;25488:185;25626:39;25643:4;25649:2;25653:7;25626:39;;;;;;;;;;;;:16;:39::i;46298:348::-;46373:16;46401:23;46427:17;46437:6;46427:9;:17::i;:::-;46401:43;;46451:25;46493:15;46479:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46479:30:0;;46451:58;;46521:9;46516:103;46536:15;46532:1;:19;46516:103;;;46581:30;46601:6;46609:1;46581:19;:30::i;:::-;46567:8;46576:1;46567:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;46553:3;;;;:::i;:::-;;;;46516:103;;;-1:-1:-1;46632:8:0;46298:348;-1:-1:-1;;;46298:348:0:o;47278:82::-;41948:6;;-1:-1:-1;;;;;41948:6:0;20238:10;42095:23;42087:68;;;;-1:-1:-1;;;42087:68:0;;;;;;;:::i;:::-;47339:4:::1;:15:::0;47278:82::o;50623:92::-;41948:6;;-1:-1:-1;;;;;41948:6:0;20238:10;42095:23;42087:68;;;;-1:-1:-1;;;42087:68:0;;;;;;;:::i;:::-;50687:13:::1;:22:::0;;;::::1;;;;-1:-1:-1::0;;50687:22:0;;::::1;::::0;;;::::1;::::0;;50623:92::o;35567:233::-;35642:7;35678:30;35465:10;:17;;35377:113;35678:30;35670:5;:38;35662:95;;;;-1:-1:-1;;;35662:95:0;;17087:2:1;35662:95:0;;;17069:21:1;17126:2;17106:18;;;17099:30;17165:34;17145:18;;;17138:62;-1:-1:-1;;;17216:18:1;;;17209:42;17268:19;;35662:95:0;16885:408:1;35662:95:0;35775:10;35786:5;35775:17;;;;;;;;:::i;:::-;;;;;;;;;35768:24;;35567:233;;;:::o;49649:98::-;41948:6;;-1:-1:-1;;;;;41948:6:0;20238:10;42095:23;42087:68;;;;-1:-1:-1;;;42087:68:0;;;;;;;:::i;:::-;49720:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49649:98:::0;:::o;22323:239::-;22395:7;22431:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22431:16:0;22466:19;22458:73;;;;-1:-1:-1;;;22458:73:0;;13956:2:1;22458:73:0;;;13938:21:1;13995:2;13975:18;;;13968:30;14034:34;14014:18;;;14007:62;-1:-1:-1;;;14085:18:1;;;14078:39;14134:19;;22458:73:0;13754:405:1;43402:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49213:96::-;41948:6;;-1:-1:-1;;;;;41948:6:0;20238:10;42095:23;42087:68;;;;-1:-1:-1;;;42087:68:0;;;;;;;:::i;:::-;49281:9:::1;:22:::0;49213:96::o;22053:208::-;22125:7;-1:-1:-1;;;;;22153:19:0;;22145:74;;;;-1:-1:-1;;;22145:74:0;;13545:2:1;22145:74:0;;;13527:21:1;13584:2;13564:18;;;13557:30;13623:34;13603:18;;;13596:62;-1:-1:-1;;;13674:18:1;;;13667:40;13724:19;;22145:74:0;13343:406:1;22145:74:0;-1:-1:-1;;;;;;22237:16:0;;;;;:9;:16;;;;;;;22053:208::o;42526:94::-;41948:6;;-1:-1:-1;;;;;41948:6:0;20238:10;42095:23;42087:68;;;;-1:-1:-1;;;42087:68:0;;;;;;;:::i;:::-;42591:21:::1;42609:1;42591:9;:21::i;22798:104::-:0;22854:13;22887:7;22880:14;;;;;:::i;51710:189::-;41948:6;;-1:-1:-1;;;;;41948:6:0;20238:10;42095:23;42087:68;;;;-1:-1:-1;;;42087:68:0;;;;;;;:::i;:::-;51788:9:::1;51809:85;51825:5;:12;51821:1;:16;51809:85;;;51863:11;:21;51875:5;51881:1;51875:8;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;51863:21:0::1;-1:-1:-1::0;;;;;51863:21:0::1;;;;;;;;;;;;51856:29;;;51839:3;;;;;:::i;:::-;;;;51809:85;;24481:295:::0;-1:-1:-1;;;;;24584:24:0;;20238:10;24584:24;;24576:62;;;;-1:-1:-1;;;24576:62:0;;12000:2:1;24576:62:0;;;11982:21:1;12039:2;12019:18;;;12012:30;12078:27;12058:18;;;12051:55;12123:18;;24576:62:0;11798:349:1;24576:62:0;20238:10;24651:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24651:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24651:53:0;;;;;;;;;;24720:48;;9108:41:1;;;24651:42:0;;20238:10;24720:48;;9081:18:1;24720:48:0;;;;;;;24481:295;;:::o;25744:328::-;25919:41;20238:10;25952:7;25919:18;:41::i;:::-;25911:103;;;;-1:-1:-1;;;25911:103:0;;;;;;;:::i;:::-;26025:39;26039:4;26045:2;26049:7;26058:5;26025:13;:39::i;43428:37::-;;;;;;;:::i;46652:421::-;27647:4;27671:16;;;:7;:16;;;;;;46750:13;;-1:-1:-1;;;;;27671:16:0;46775:95;;;;-1:-1:-1;;;46775:95:0;;9586:2:1;46775:95:0;;;9568:21:1;9625:2;9605:18;;;9598:30;9664:34;9644:18;;;9637:62;-1:-1:-1;;;9715:18:1;;;9708:43;9768:19;;46775:95:0;9384:409:1;46775:95:0;46879:28;46910:10;:8;:10::i;:::-;46879:41;;46965:1;46940:14;46934:28;:32;:133;;;;;;;;;;;;;;;;;47002:14;47018:18;:7;:16;:18::i;:::-;47038:13;46985:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46934:133;46927:140;46652:421;-1:-1:-1;;;46652:421:0:o;50122:122::-;41948:6;;-1:-1:-1;;;;;41948:6:0;20238:10;42095:23;42087:68;;;;-1:-1:-1;;;42087:68:0;;;;;;;:::i;:::-;50205:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;47994:110::-:0;41948:6;;-1:-1:-1;;;;;41948:6:0;20238:10;42095:23;42087:68;;;;-1:-1:-1;;;42087:68:0;;;;;;;:::i;:::-;48069:11:::1;:29:::0;47994:110::o;42775:192::-;41948:6;;-1:-1:-1;;;;;41948:6:0;20238:10;42095:23;42087:68;;;;-1:-1:-1;;;42087:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42864:22:0;::::1;42856:73;;;::::0;-1:-1:-1;;;42856:73:0;;10831:2:1;42856:73:0::1;::::0;::::1;10813:21:1::0;10870:2;10850:18;;;10843:30;10909:34;10889:18;;;10882:62;-1:-1:-1;;;10960:18:1;;;10953:36;11006:19;;42856:73:0::1;10629:402:1::0;42856:73:0::1;42940:19;42950:8;42940:9;:19::i;:::-;42775:192:::0;:::o;21684:305::-;21786:4;-1:-1:-1;;;;;;21823:40:0;;-1:-1:-1;;;21823:40:0;;:105;;-1:-1:-1;;;;;;;21880:48:0;;-1:-1:-1;;;21880:48:0;21823:105;:158;;;-1:-1:-1;;;;;;;;;;7624:40:0;;;21945:36;7515:157;31564:174;31639:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31639:29:0;-1:-1:-1;;;;;31639:29:0;;;;;;;;:24;;31693:23;31639:24;31693:14;:23::i;:::-;-1:-1:-1;;;;;31684:46:0;;;;;;;;;;;31564:174;;:::o;27876:348::-;27969:4;27671:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27671:16:0;27986:73;;;;-1:-1:-1;;;27986:73:0;;12354:2:1;27986:73:0;;;12336:21:1;12393:2;12373:18;;;12366:30;12432:34;12412:18;;;12405:62;-1:-1:-1;;;12483:18:1;;;12476:42;12535:19;;27986:73:0;12152:408:1;27986:73:0;28070:13;28086:23;28101:7;28086:14;:23::i;:::-;28070:39;;28139:5;-1:-1:-1;;;;;28128:16:0;:7;-1:-1:-1;;;;;28128:16:0;;:51;;;;28172:7;-1:-1:-1;;;;;28148:31:0;:20;28160:7;28148:11;:20::i;:::-;-1:-1:-1;;;;;28148:31:0;;28128:51;:87;;;-1:-1:-1;;;;;;24968:25:0;;;24944:4;24968:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28183:32;28120:96;27876:348;-1:-1:-1;;;;27876:348:0:o;30868:578::-;31027:4;-1:-1:-1;;;;;31000:31:0;:23;31015:7;31000:14;:23::i;:::-;-1:-1:-1;;;;;31000:31:0;;30992:85;;;;-1:-1:-1;;;30992:85:0;;15501:2:1;30992:85:0;;;15483:21:1;15540:2;15520:18;;;15513:30;15579:34;15559:18;;;15552:62;-1:-1:-1;;;15630:18:1;;;15623:39;15679:19;;30992:85:0;15299:405:1;30992:85:0;-1:-1:-1;;;;;31096:16:0;;31088:65;;;;-1:-1:-1;;;31088:65:0;;11595:2:1;31088:65:0;;;11577:21:1;11634:2;11614:18;;;11607:30;11673:34;11653:18;;;11646:62;-1:-1:-1;;;11724:18:1;;;11717:34;11768:19;;31088:65:0;11393:400:1;31088:65:0;31166:39;31187:4;31193:2;31197:7;31166:20;:39::i;:::-;31270:29;31287:1;31291:7;31270:8;:29::i;:::-;-1:-1:-1;;;;;31312:15:0;;;;;;:9;:15;;;;;:20;;31331:1;;31312:15;:20;;31331:1;;31312:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31343:13:0;;;;;;:9;:13;;;;;:18;;31360:1;;31343:13;:18;;31360:1;;31343:18;:::i;:::-;;;;-1:-1:-1;;31372:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31372:21:0;-1:-1:-1;;;;;31372:21:0;;;;;;;;;31411:27;;31372:16;;31411:27;;;;;;;30868:578;;;:::o;28566:110::-;28642:26;28652:2;28656:7;28642:26;;;;;;;;;;;;:9;:26::i;42975:173::-;43050:6;;;-1:-1:-1;;;;;43067:17:0;;;-1:-1:-1;;;;;;43067:17:0;;;;;;;43100:40;;43050:6;;;43067:17;43050:6;;43100:40;;43031:16;;43100:40;43020:128;42975:173;:::o;26954:315::-;27111:28;27121:4;27127:2;27131:7;27111:9;:28::i;:::-;27158:48;27181:4;27187:2;27191:7;27200:5;27158:22;:48::i;:::-;27150:111;;;;-1:-1:-1;;;27150:111:0;;;;;;;:::i;44473:102::-;44533:13;44562:7;44555:14;;;;;:::i;7990:723::-;8046:13;8267:10;8263:53;;-1:-1:-1;;8294:10:0;;;;;;;;;;;;-1:-1:-1;;;8294:10:0;;;;;7990:723::o;8263:53::-;8341:5;8326:12;8382:78;8389:9;;8382:78;;8415:8;;;;:::i;:::-;;-1:-1:-1;8438:10:0;;-1:-1:-1;8446:2:0;8438:10;;:::i;:::-;;;8382:78;;;8470:19;8502:6;8492:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8492:17:0;;8470:39;;8520:154;8527:10;;8520:154;;8554:11;8564:1;8554:11;;:::i;:::-;;-1:-1:-1;8623:10:0;8631:2;8623:5;:10;:::i;:::-;8610:24;;:2;:24;:::i;:::-;8597:39;;8580:6;8587;8580:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8580:56:0;;;;;;;;-1:-1:-1;8651:11:0;8660:2;8651:11;;:::i;:::-;;;8520:154;;36413:589;-1:-1:-1;;;;;36619:18:0;;36615:187;;36654:40;36686:7;37829:10;:17;;37802:24;;;;:15;:24;;;;;:44;;;37857:24;;;;;;;;;;;;37725:164;36654:40;36615:187;;;36724:2;-1:-1:-1;;;;;36716:10:0;:4;-1:-1:-1;;;;;36716:10:0;;36712:90;;36743:47;36776:4;36782:7;36743:32;:47::i;:::-;-1:-1:-1;;;;;36816:16:0;;36812:183;;36849:45;36886:7;36849:36;:45::i;36812:183::-;36922:4;-1:-1:-1;;;;;36916:10:0;:2;-1:-1:-1;;;;;36916:10:0;;36912:83;;36943:40;36971:2;36975:7;36943:27;:40::i;28903:321::-;29033:18;29039:2;29043:7;29033:5;:18::i;:::-;29084:54;29115:1;29119:2;29123:7;29132:5;29084:22;:54::i;:::-;29062:154;;;;-1:-1:-1;;;29062:154:0;;;;;;;:::i;32303:799::-;32458:4;-1:-1:-1;;;;;32479:13:0;;10838:20;10886:8;32475:620;;32515:72;;-1:-1:-1;;;32515:72:0;;-1:-1:-1;;;;;32515:36:0;;;;;:72;;20238:10;;32566:4;;32572:7;;32581:5;;32515:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32515:72:0;;;;;;;;-1:-1:-1;;32515:72:0;;;;;;;;;;;;:::i;:::-;;;32511:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32757:13:0;;32753:272;;32800:60;;-1:-1:-1;;;32800:60:0;;;;;;;:::i;32753:272::-;32975:6;32969:13;32960:6;32956:2;32952:15;32945:38;32511:529;-1:-1:-1;;;;;;32638:51:0;-1:-1:-1;;;32638:51:0;;-1:-1:-1;32631:58:0;;32475:620;-1:-1:-1;33079:4:0;32303:799;;;;;;:::o;38516:988::-;38782:22;38832:1;38807:22;38824:4;38807:16;:22::i;:::-;:26;;;;:::i;:::-;38844:18;38865:26;;;:17;:26;;;;;;38782:51;;-1:-1:-1;38998:28:0;;;38994:328;;-1:-1:-1;;;;;39065:18:0;;39043:19;39065:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39116:30;;;;;;:44;;;39233:30;;:17;:30;;;;;:43;;;38994:328;-1:-1:-1;39418:26:0;;;;:17;:26;;;;;;;;39411:33;;;-1:-1:-1;;;;;39462:18:0;;;;;:12;:18;;;;;:34;;;;;;;39455:41;38516:988::o;39799:1079::-;40077:10;:17;40052:22;;40077:21;;40097:1;;40077:21;:::i;:::-;40109:18;40130:24;;;:15;:24;;;;;;40503:10;:26;;40052:46;;-1:-1:-1;40130:24:0;;40052:46;;40503:26;;;;;;:::i;:::-;;;;;;;;;40481:48;;40567:11;40542:10;40553;40542:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40647:28;;;:15;:28;;;;;;;:41;;;40819:24;;;;;40812:31;40854:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39870:1008;;;39799:1079;:::o;37303:221::-;37388:14;37405:20;37422:2;37405:16;:20::i;:::-;-1:-1:-1;;;;;37436:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37481:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37303:221:0:o;29560:382::-;-1:-1:-1;;;;;29640:16:0;;29632:61;;;;-1:-1:-1;;;29632:61:0;;14366:2:1;29632:61:0;;;14348:21:1;;;14385:18;;;14378:30;14444:34;14424:18;;;14417:62;14496:18;;29632:61:0;14164:356:1;29632:61:0;27647:4;27671:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27671:16:0;:30;29704:58;;;;-1:-1:-1;;;29704:58:0;;11238:2:1;29704:58:0;;;11220:21:1;11277:2;11257:18;;;11250:30;11316;11296:18;;;11289:58;11364:18;;29704:58:0;11036:352:1;29704:58:0;29775:45;29804:1;29808:2;29812:7;29775:20;:45::i;:::-;-1:-1:-1;;;;;29833:13:0;;;;;;:9;:13;;;;;:18;;29850:1;;29833:13;:18;;29850:1;;29833:18;:::i;:::-;;;;-1:-1:-1;;29862:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29862:21:0;-1:-1:-1;;;;;29862:21:0;;;;;;;;29901:33;;29862:16;;;29901:33;;29862:16;;29901:33;29560:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:729::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;813:18;809:2;806:26;803:52;;;835:18;;:::i;:::-;881:2;878:1;874:10;904:28;928:2;924;920:11;904:28;:::i;:::-;966:15;;;997:12;;;;1029:15;;;1063;;;1059:24;;1056:33;-1:-1:-1;1053:53:1;;;1102:1;1099;1092:12;1053:53;1124:1;1115:10;;1134:169;1148:2;1145:1;1142:9;1134:169;;;1205:23;1224:3;1205:23;:::i;:::-;1193:36;;1166:1;1159:9;;;;;1249:12;;;;1281;;1134:169;;;-1:-1:-1;1321:5:1;603:729;-1:-1:-1;;;;;;;603:729:1:o;1337:160::-;1402:20;;1458:13;;1451:21;1441:32;;1431:60;;1487:1;1484;1477:12;1502:186;1561:6;1614:2;1602:9;1593:7;1589:23;1585:32;1582:52;;;1630:1;1627;1620:12;1582:52;1653:29;1672:9;1653:29;:::i;1693:260::-;1761:6;1769;1822:2;1810:9;1801:7;1797:23;1793:32;1790:52;;;1838:1;1835;1828:12;1790:52;1861:29;1880:9;1861:29;:::i;:::-;1851:39;;1909:38;1943:2;1932:9;1928:18;1909:38;:::i;:::-;1899:48;;1693:260;;;;;:::o;1958:328::-;2035:6;2043;2051;2104:2;2092:9;2083:7;2079:23;2075:32;2072:52;;;2120:1;2117;2110:12;2072:52;2143:29;2162:9;2143:29;:::i;:::-;2133:39;;2191:38;2225:2;2214:9;2210:18;2191:38;:::i;:::-;2181:48;;2276:2;2265:9;2261:18;2248:32;2238:42;;1958:328;;;;;:::o;2291:666::-;2386:6;2394;2402;2410;2463:3;2451:9;2442:7;2438:23;2434:33;2431:53;;;2480:1;2477;2470:12;2431:53;2503:29;2522:9;2503:29;:::i;:::-;2493:39;;2551:38;2585:2;2574:9;2570:18;2551:38;:::i;:::-;2541:48;;2636:2;2625:9;2621:18;2608:32;2598:42;;2691:2;2680:9;2676:18;2663:32;2718:18;2710:6;2707:30;2704:50;;;2750:1;2747;2740:12;2704:50;2773:22;;2826:4;2818:13;;2814:27;-1:-1:-1;2804:55:1;;2855:1;2852;2845:12;2804:55;2878:73;2943:7;2938:2;2925:16;2920:2;2916;2912:11;2878:73;:::i;:::-;2868:83;;;2291:666;;;;;;;:::o;2962:254::-;3027:6;3035;3088:2;3076:9;3067:7;3063:23;3059:32;3056:52;;;3104:1;3101;3094:12;3056:52;3127:29;3146:9;3127:29;:::i;:::-;3117:39;;3175:35;3206:2;3195:9;3191:18;3175:35;:::i;3221:254::-;3289:6;3297;3350:2;3338:9;3329:7;3325:23;3321:32;3318:52;;;3366:1;3363;3356:12;3318:52;3389:29;3408:9;3389:29;:::i;:::-;3379:39;3465:2;3450:18;;;;3437:32;;-1:-1:-1;;;3221:254:1:o;3480:348::-;3564:6;3617:2;3605:9;3596:7;3592:23;3588:32;3585:52;;;3633:1;3630;3623:12;3585:52;3673:9;3660:23;3706:18;3698:6;3695:30;3692:50;;;3738:1;3735;3728:12;3692:50;3761:61;3814:7;3805:6;3794:9;3790:22;3761:61;:::i;3833:416::-;3926:6;3934;3987:2;3975:9;3966:7;3962:23;3958:32;3955:52;;;4003:1;4000;3993:12;3955:52;4043:9;4030:23;4076:18;4068:6;4065:30;4062:50;;;4108:1;4105;4098:12;4062:50;4131:61;4184:7;4175:6;4164:9;4160:22;4131:61;:::i;:::-;4121:71;4239:2;4224:18;;;;4211:32;;-1:-1:-1;;;;3833:416:1:o;4254:180::-;4310:6;4363:2;4351:9;4342:7;4338:23;4334:32;4331:52;;;4379:1;4376;4369:12;4331:52;4402:26;4418:9;4402:26;:::i;4439:245::-;4497:6;4550:2;4538:9;4529:7;4525:23;4521:32;4518:52;;;4566:1;4563;4556:12;4518:52;4605:9;4592:23;4624:30;4648:5;4624:30;:::i;4689:249::-;4758:6;4811:2;4799:9;4790:7;4786:23;4782:32;4779:52;;;4827:1;4824;4817:12;4779:52;4859:9;4853:16;4878:30;4902:5;4878:30;:::i;4943:450::-;5012:6;5065:2;5053:9;5044:7;5040:23;5036:32;5033:52;;;5081:1;5078;5071:12;5033:52;5121:9;5108:23;5154:18;5146:6;5143:30;5140:50;;;5186:1;5183;5176:12;5140:50;5209:22;;5262:4;5254:13;;5250:27;-1:-1:-1;5240:55:1;;5291:1;5288;5281:12;5240:55;5314:73;5379:7;5374:2;5361:16;5356:2;5352;5348:11;5314:73;:::i;5398:180::-;5457:6;5510:2;5498:9;5489:7;5485:23;5481:32;5478:52;;;5526:1;5523;5516:12;5478:52;-1:-1:-1;5549:23:1;;5398:180;-1:-1:-1;5398:180:1:o;5583:248::-;5651:6;5659;5712:2;5700:9;5691:7;5687:23;5683:32;5680:52;;;5728:1;5725;5718:12;5680:52;-1:-1:-1;;5751:23:1;;;5821:2;5806:18;;;5793:32;;-1:-1:-1;5583:248:1:o;5836:257::-;5877:3;5915:5;5909:12;5942:6;5937:3;5930:19;5958:63;6014:6;6007:4;6002:3;5998:14;5991:4;5984:5;5980:16;5958:63;:::i;:::-;6075:2;6054:15;-1:-1:-1;;6050:29:1;6041:39;;;;6082:4;6037:50;;5836:257;-1:-1:-1;;5836:257:1:o;6098:1527::-;6322:3;6360:6;6354:13;6386:4;6399:51;6443:6;6438:3;6433:2;6425:6;6421:15;6399:51;:::i;:::-;6513:13;;6472:16;;;;6535:55;6513:13;6472:16;6557:15;;;6535:55;:::i;:::-;6679:13;;6612:20;;;6652:1;;6739;6761:18;;;;6814;;;;6841:93;;6919:4;6909:8;6905:19;6893:31;;6841:93;6982:2;6972:8;6969:16;6949:18;6946:40;6943:167;;;-1:-1:-1;;;7009:33:1;;7065:4;7062:1;7055:15;7095:4;7016:3;7083:17;6943:167;7126:18;7153:110;;;;7277:1;7272:328;;;;7119:481;;7153:110;-1:-1:-1;;7188:24:1;;7174:39;;7233:20;;;;-1:-1:-1;7153:110:1;;7272:328;18182:1;18175:14;;;18219:4;18206:18;;7367:1;7381:169;7395:8;7392:1;7389:15;7381:169;;;7477:14;;7462:13;;;7455:37;7520:16;;;;7412:10;;7381:169;;;7385:3;;7581:8;7574:5;7570:20;7563:27;;7119:481;-1:-1:-1;7616:3:1;;6098:1527;-1:-1:-1;;;;;;;;;;;6098:1527:1:o;7838:488::-;-1:-1:-1;;;;;8107:15:1;;;8089:34;;8159:15;;8154:2;8139:18;;8132:43;8206:2;8191:18;;8184:34;;;8254:3;8249:2;8234:18;;8227:31;;;8032:4;;8275:45;;8300:19;;8292:6;8275:45;:::i;:::-;8267:53;7838:488;-1:-1:-1;;;;;;7838:488:1:o;8331:632::-;8502:2;8554:21;;;8624:13;;8527:18;;;8646:22;;;8473:4;;8502:2;8725:15;;;;8699:2;8684:18;;;8473:4;8768:169;8782:6;8779:1;8776:13;8768:169;;;8843:13;;8831:26;;8912:15;;;;8877:12;;;;8804:1;8797:9;8768:169;;;-1:-1:-1;8954:3:1;;8331:632;-1:-1:-1;;;;;;8331:632:1:o;9160:219::-;9309:2;9298:9;9291:21;9272:4;9329:44;9369:2;9358:9;9354:18;9346:6;9329:44;:::i;10210:414::-;10412:2;10394:21;;;10451:2;10431:18;;;10424:30;10490:34;10485:2;10470:18;;10463:62;-1:-1:-1;;;10556:2:1;10541:18;;10534:48;10614:3;10599:19;;10210:414::o;14938:356::-;15140:2;15122:21;;;15159:18;;;15152:30;15218:34;15213:2;15198:18;;15191:62;15285:2;15270:18;;14938:356::o;16467:413::-;16669:2;16651:21;;;16708:2;16688:18;;;16681:30;16747:34;16742:2;16727:18;;16720:62;-1:-1:-1;;;16813:2:1;16798:18;;16791:47;16870:3;16855:19;;16467:413::o;17298:344::-;17500:2;17482:21;;;17539:2;17519:18;;;17512:30;-1:-1:-1;;;17573:2:1;17558:18;;17551:50;17633:2;17618:18;;17298:344::o;17829:275::-;17900:2;17894:9;17965:2;17946:13;;-1:-1:-1;;17942:27:1;17930:40;;18000:18;17985:34;;18021:22;;;17982:62;17979:88;;;18047:18;;:::i;:::-;18083:2;18076:22;17829:275;;-1:-1:-1;17829:275:1:o;18235:128::-;18275:3;18306:1;18302:6;18299:1;18296:13;18293:39;;;18312:18;;:::i;:::-;-1:-1:-1;18348:9:1;;18235:128::o;18368:120::-;18408:1;18434;18424:35;;18439:18;;:::i;:::-;-1:-1:-1;18473:9:1;;18368:120::o;18493:168::-;18533:7;18599:1;18595;18591:6;18587:14;18584:1;18581:21;18576:1;18569:9;18562:17;18558:45;18555:71;;;18606:18;;:::i;:::-;-1:-1:-1;18646:9:1;;18493:168::o;18666:125::-;18706:4;18734:1;18731;18728:8;18725:34;;;18739:18;;:::i;:::-;-1:-1:-1;18776:9:1;;18666:125::o;18796:258::-;18868:1;18878:113;18892:6;18889:1;18886:13;18878:113;;;18968:11;;;18962:18;18949:11;;;18942:39;18914:2;18907:10;18878:113;;;19009:6;19006:1;19003:13;19000:48;;;-1:-1:-1;;19044:1:1;19026:16;;19019:27;18796:258::o;19059:380::-;19138:1;19134:12;;;;19181;;;19202:61;;19256:4;19248:6;19244:17;19234:27;;19202:61;19309:2;19301:6;19298:14;19278:18;19275:38;19272:161;;;19355:10;19350:3;19346:20;19343:1;19336:31;19390:4;19387:1;19380:15;19418:4;19415:1;19408:15;19272:161;;19059:380;;;:::o;19444:135::-;19483:3;-1:-1:-1;;19504:17:1;;19501:43;;;19524:18;;:::i;:::-;-1:-1:-1;19571:1:1;19560:13;;19444:135::o;19584:112::-;19616:1;19642;19632:35;;19647:18;;:::i;:::-;-1:-1:-1;19681:9:1;;19584:112::o;19701:127::-;19762:10;19757:3;19753:20;19750:1;19743:31;19793:4;19790:1;19783:15;19817:4;19814:1;19807:15;19833:127;19894:10;19889:3;19885:20;19882:1;19875:31;19925:4;19922:1;19915:15;19949:4;19946:1;19939:15;19965:127;20026:10;20021:3;20017:20;20014:1;20007:31;20057:4;20054:1;20047:15;20081:4;20078:1;20071:15;20097:127;20158:10;20153:3;20149:20;20146:1;20139:31;20189:4;20186:1;20179:15;20213:4;20210:1;20203:15;20229:127;20290:10;20285:3;20281:20;20278:1;20271:31;20321:4;20318:1;20311:15;20345:4;20342:1;20335:15;20361:131;-1:-1:-1;;;;;;20435:32:1;;20425:43;;20415:71;;20482:1;20479;20472:12

Swarm Source

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