ETH Price: $3,405.45 (-1.56%)
Gas: 6 Gwei

Token

Reptikas (RPTKA)
 

Overview

Max Total Supply

6,666 RPTKA

Holders

539

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
fransion.eth
Balance
10 RPTKA
0x92aD90f0F2e208Df7FAE055b7fE2f4E20a21E688
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:
Reptikas

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-15
*/

// SPDX-License-Identifier: UNLICENSED
// File: @openzeppelin/contracts/utils/Counters.sol


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (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 overridden 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 {
        _setApprovalForAll(_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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: contracts/Reptikas.sol



// ▄▀▀▄▀▀▀▄  ▄▀▀█▄▄▄▄  ▄▀▀▄▀▀▀▄  ▄▀▀▀█▀▀▄  ▄▀▀█▀▄    ▄▀▀▄ █  ▄▀▀█▄   ▄▀▀▀▀▄ 
//█   █   █ ▐  ▄▀   ▐ █   █   █ █    █  ▐ █   █  █  █  █ ▄▀ ▐ ▄▀ ▀▄ █ █   ▐ 
//▐  █▀▀█▀    █▄▄▄▄▄  ▐  █▀▀▀▀  ▐   █     ▐   █  ▐  ▐  █▀▄    █▄▄▄█    ▀▄   
// ▄▀    █    █    ▌     █         █          █       █   █  ▄▀   █ ▀▄   █  
//█     █    ▄▀▄▄▄▄    ▄▀        ▄▀        ▄▀▀▀▀▀▄  ▄▀   █  █   ▄▀   █▀▀▀   
//▐     ▐    █    ▐   █         █         █       █ █    ▐  ▐   ▐    ▐      
//           ▐        ▐         ▐         ▐       ▐ ▐                       

pragma solidity >=0.7.0 <0.9.0;








contract Reptikas is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  
  uint256 public cost = 0.03 ether;
  uint256 public maxSupply = 6666;

  bool public paused = true;

  constructor() ERC721("Reptikas", "RPTKA") {
          _mintLoop(msg.sender, 46);
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

    _mintLoop(msg.sender, _mintAmount);
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

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

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function withdraw() public onlyOwner {
 //pays treasury 25%
    (bool hs, ) = payable(0xd5A44EF877A5ff62f234aC016456B51e7C2bFf54).call{value: address(this).balance * 25 / 100}("");
    require(hs);
//pays owner 75%
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b9160089162000529565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a9160099162000529565b50666a94d74f430000600a55611a0a600b55600c805460ff191660011790553480156200007657600080fd5b50604080518082018252600881526752657074696b617360c01b6020808301918252835180850190945260058452645250544b4160d81b908401528151919291620000c49160009162000529565b508051620000da90600190602084019062000529565b505050620000f7620000f16200010a60201b60201c565b6200010e565b6200010433602e62000160565b62000705565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015620001ba57620001836007620001bf60201b620010071760201c565b620001a5836200019f6007620001c860201b620010101760201c565b620001cc565b80620001b181620006d1565b91505062000163565b505050565b80546001019055565b5490565b620001ee828260405180602001604052806000815250620001f260201b60201c565b5050565b620001fe838362000269565b6200020d6000848484620003b1565b620001ba5760405162461bcd60e51b81526020600482015260326024820152600080516020620026ac83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084015b60405180910390fd5b6001600160a01b038216620002c15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640162000260565b6000818152600260205260409020546001600160a01b031615620003285760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640162000260565b6001600160a01b03821660009081526003602052604081208054600192906200035390849062000679565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000620003d2846001600160a01b03166200051a60201b620010141760201c565b156200050e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200040c90339089908890889060040162000600565b602060405180830381600087803b1580156200042757600080fd5b505af19250505080156200045a575060408051601f3d908101601f191682019092526200045791810190620005cf565b60015b620004f3573d8080156200048b576040519150601f19603f3d011682016040523d82523d6000602084013e62000490565b606091505b508051620004eb5760405162461bcd60e51b81526020600482015260326024820152600080516020620026ac83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000260565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000512565b5060015b949350505050565b6001600160a01b03163b151590565b828054620005379062000694565b90600052602060002090601f0160209004810192826200055b5760008555620005a6565b82601f106200057657805160ff1916838001178555620005a6565b82800160010185558215620005a6579182015b82811115620005a657825182559160200191906001019062000589565b50620005b4929150620005b8565b5090565b5b80821115620005b45760008155600101620005b9565b600060208284031215620005e1578081fd5b81516001600160e01b031981168114620005f9578182fd5b9392505050565b600060018060a01b0380871683526020818716818501528560408501526080606085015284519150816080850152825b828110156200064e5785810182015185820160a00152810162000630565b8281111562000660578360a084870101525b5050601f01601f19169190910160a00195945050505050565b600082198211156200068f576200068f620006ef565b500190565b600181811c90821680620006a957607f821691505b60208210811415620006cb57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620006e857620006e8620006ef565b5060010190565b634e487b7160e01b600052601160045260246000fd5b611f9780620007156000396000f3fe6080604052600436106101c25760003560e01c80635c975abb116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd146104d2578063d5abeb01146104f2578063e985e9c514610508578063f2fde38b1461055157600080fd5b806395d89b411461046a578063a0712d681461047f578063a22cb46514610492578063b88d4fde146104b257600080fd5b806370a08231116100d157806370a08231146103f7578063715018a6146104175780637ec4a6591461042c5780638da5cb5b1461044c57600080fd5b80635c975abb146103a857806362b99ad4146103c25780636352211e146103d757600080fd5b806318160ddd1161016457806342842e0e1161013e57806342842e0e14610326578063438b63001461034657806344a0d68a146103735780635503a0e81461039357600080fd5b806318160ddd146102dc57806323b872dd146102f15780633ccfd60b1461031157600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806313faede61461027857806316ba10e01461029c57806316c38b3c146102bc57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611b21565b610571565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105c3565b6040516101f39190611d26565b34801561022a57600080fd5b5061023e610239366004611b9f565b610655565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611ade565b6106ef565b005b34801561028457600080fd5b5061028e600a5481565b6040519081526020016101f3565b3480156102a857600080fd5b506102766102b7366004611b59565b610805565b3480156102c857600080fd5b506102766102d7366004611b07565b610846565b3480156102e857600080fd5b5061028e610883565b3480156102fd57600080fd5b5061027661030c366004611a01565b610893565b34801561031d57600080fd5b506102766108c4565b34801561033257600080fd5b50610276610341366004611a01565b6109dc565b34801561035257600080fd5b506103666103613660046119b5565b6109f7565b6040516101f39190611ce2565b34801561037f57600080fd5b5061027661038e366004611b9f565b610af4565b34801561039f57600080fd5b50610211610b23565b3480156103b457600080fd5b50600c546101e79060ff1681565b3480156103ce57600080fd5b50610211610bb1565b3480156103e357600080fd5b5061023e6103f2366004611b9f565b610bbe565b34801561040357600080fd5b5061028e6104123660046119b5565b610c35565b34801561042357600080fd5b50610276610cbc565b34801561043857600080fd5b50610276610447366004611b59565b610cf2565b34801561045857600080fd5b506006546001600160a01b031661023e565b34801561047657600080fd5b50610211610d2f565b61027661048d366004611b9f565b610d3e565b34801561049e57600080fd5b506102766104ad366004611ab5565b610e4b565b3480156104be57600080fd5b506102766104cd366004611a3c565b610e56565b3480156104de57600080fd5b506102116104ed366004611b9f565b610e8e565b3480156104fe57600080fd5b5061028e600b5481565b34801561051457600080fd5b506101e76105233660046119cf565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561055d57600080fd5b5061027661056c3660046119b5565b610f6c565b60006001600160e01b031982166380ac58cd60e01b14806105a257506001600160e01b03198216635b5e139f60e01b145b806105bd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546105d290611e9f565b80601f01602080910402602001604051908101604052809291908181526020018280546105fe90611e9f565b801561064b5780601f106106205761010080835404028352916020019161064b565b820191906000526020600020905b81548152906001019060200180831161062e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106d35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106fa82610bbe565b9050806001600160a01b0316836001600160a01b031614156107685760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106ca565b336001600160a01b038216148061078457506107848133610523565b6107f65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106ca565b6108008383611023565b505050565b6006546001600160a01b0316331461082f5760405162461bcd60e51b81526004016106ca90611d8b565b805161084290600990602084019061187a565b5050565b6006546001600160a01b031633146108705760405162461bcd60e51b81526004016106ca90611d8b565b600c805460ff1916911515919091179055565b600061088e60075490565b905090565b61089d3382611091565b6108b95760405162461bcd60e51b81526004016106ca90611dc0565b610800838383611188565b6006546001600160a01b031633146108ee5760405162461bcd60e51b81526004016106ca90611d8b565b600073d5a44ef877a5ff62f234ac016456b51e7c2bff546064610912476019611e3d565b61091c9190611e29565b604051600081818185875af1925050503d8060008114610958576040519150601f19603f3d011682016040523d82523d6000602084013e61095d565b606091505b505090508061096b57600080fd5b600061097f6006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146109c9576040519150601f19603f3d011682016040523d82523d6000602084013e6109ce565b606091505b505090508061084257600080fd5b61080083838360405180602001604052806000815250610e56565b60606000610a0483610c35565b905060008167ffffffffffffffff811115610a2f57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610a58578160200160208202803683370190505b509050600160005b8381108015610a715750600b548211155b15610aea576000610a8183610bbe565b9050866001600160a01b0316816001600160a01b03161415610ad75782848381518110610abe57634e487b7160e01b600052603260045260246000fd5b602090810291909101015281610ad381611eda565b9250505b82610ae181611eda565b93505050610a60565b5090949350505050565b6006546001600160a01b03163314610b1e5760405162461bcd60e51b81526004016106ca90611d8b565b600a55565b60098054610b3090611e9f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5c90611e9f565b8015610ba95780601f10610b7e57610100808354040283529160200191610ba9565b820191906000526020600020905b815481529060010190602001808311610b8c57829003601f168201915b505050505081565b60088054610b3090611e9f565b6000818152600260205260408120546001600160a01b0316806105bd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106ca565b60006001600160a01b038216610ca05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106ca565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ce65760405162461bcd60e51b81526004016106ca90611d8b565b610cf06000611324565b565b6006546001600160a01b03163314610d1c5760405162461bcd60e51b81526004016106ca90611d8b565b805161084290600890602084019061187a565b6060600180546105d290611e9f565b80600b5481610d4c60075490565b610d569190611e11565b1115610d9b5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016106ca565b600c5460ff1615610dee5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016106ca565b81600a54610dfc9190611e3d565b341015610e415760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016106ca565b6108423383611376565b6108423383836113b3565b610e603383611091565b610e7c5760405162461bcd60e51b81526004016106ca90611dc0565b610e8884848484611482565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f0d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106ca565b6000610f176114b5565b90506000815111610f375760405180602001604052806000815250610f65565b80610f41846114c4565b6009604051602001610f5593929190611be3565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610f965760405162461bcd60e51b81526004016106ca90611d8b565b6001600160a01b038116610ffb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ca565b61100481611324565b50565b80546001019055565b5490565b6001600160a01b03163b151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061105882610bbe565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661110a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106ca565b600061111583610bbe565b9050806001600160a01b0316846001600160a01b0316148061115c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806111805750836001600160a01b031661117584610655565b6001600160a01b0316145b949350505050565b826001600160a01b031661119b82610bbe565b6001600160a01b0316146111ff5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016106ca565b6001600160a01b0382166112615760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106ca565b61126c600082611023565b6001600160a01b0383166000908152600360205260408120805460019290611295908490611e5c565b90915550506001600160a01b03821660009081526003602052604081208054600192906112c3908490611e11565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b818110156108005761138f600780546001019055565b6113a18361139c60075490565b6115de565b806113ab81611eda565b915050611379565b816001600160a01b0316836001600160a01b031614156114155760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106ca565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61148d848484611188565b611499848484846115f8565b610e885760405162461bcd60e51b81526004016106ca90611d39565b6060600880546105d290611e9f565b6060816114e85750506040805180820190915260018152600360fc1b602082015290565b8160005b811561151257806114fc81611eda565b915061150b9050600a83611e29565b91506114ec565b60008167ffffffffffffffff81111561153b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611565576020820181803683370190505b5090505b84156111805761157a600183611e5c565b9150611587600a86611ef5565b611592906030611e11565b60f81b8183815181106115b557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506115d7600a86611e29565b9450611569565b610842828260405180602001604052806000815250611705565b60006001600160a01b0384163b156116fa57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061163c903390899088908890600401611ca5565b602060405180830381600087803b15801561165657600080fd5b505af1925050508015611686575060408051601f3d908101601f1916820190925261168391810190611b3d565b60015b6116e0573d8080156116b4576040519150601f19603f3d011682016040523d82523d6000602084013e6116b9565b606091505b5080516116d85760405162461bcd60e51b81526004016106ca90611d39565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611180565b506001949350505050565b61170f8383611738565b61171c60008484846115f8565b6108005760405162461bcd60e51b81526004016106ca90611d39565b6001600160a01b03821661178e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106ca565b6000818152600260205260409020546001600160a01b0316156117f35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106ca565b6001600160a01b038216600090815260036020526040812080546001929061181c908490611e11565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461188690611e9f565b90600052602060002090601f0160209004810192826118a857600085556118ee565b82601f106118c157805160ff19168380011785556118ee565b828001600101855582156118ee579182015b828111156118ee5782518255916020019190600101906118d3565b506118fa9291506118fe565b5090565b5b808211156118fa57600081556001016118ff565b600067ffffffffffffffff8084111561192e5761192e611f35565b604051601f8501601f19908116603f0116810190828211818310171561195657611956611f35565b8160405280935085815286868601111561196f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146119a057600080fd5b919050565b803580151581146119a057600080fd5b6000602082840312156119c6578081fd5b610f6582611989565b600080604083850312156119e1578081fd5b6119ea83611989565b91506119f860208401611989565b90509250929050565b600080600060608486031215611a15578081fd5b611a1e84611989565b9250611a2c60208501611989565b9150604084013590509250925092565b60008060008060808587031215611a51578081fd5b611a5a85611989565b9350611a6860208601611989565b925060408501359150606085013567ffffffffffffffff811115611a8a578182fd5b8501601f81018713611a9a578182fd5b611aa987823560208401611913565b91505092959194509250565b60008060408385031215611ac7578182fd5b611ad083611989565b91506119f8602084016119a5565b60008060408385031215611af0578182fd5b611af983611989565b946020939093013593505050565b600060208284031215611b18578081fd5b610f65826119a5565b600060208284031215611b32578081fd5b8135610f6581611f4b565b600060208284031215611b4e578081fd5b8151610f6581611f4b565b600060208284031215611b6a578081fd5b813567ffffffffffffffff811115611b80578182fd5b8201601f81018413611b90578182fd5b61118084823560208401611913565b600060208284031215611bb0578081fd5b5035919050565b60008151808452611bcf816020860160208601611e73565b601f01601f19169290920160200192915050565b600084516020611bf68285838a01611e73565b855191840191611c098184848a01611e73565b85549201918390600181811c9080831680611c2557607f831692505b858310811415611c4357634e487b7160e01b88526022600452602488fd5b808015611c575760018114611c6857611c94565b60ff19851688528388019550611c94565b60008b815260209020895b85811015611c8c5781548a820152908401908801611c73565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cd890830184611bb7565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611d1a57835183529284019291840191600101611cfe565b50909695505050505050565b602081526000610f656020830184611bb7565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611e2457611e24611f09565b500190565b600082611e3857611e38611f1f565b500490565b6000816000190483118215151615611e5757611e57611f09565b500290565b600082821015611e6e57611e6e611f09565b500390565b60005b83811015611e8e578181015183820152602001611e76565b83811115610e885750506000910152565b600181811c90821680611eb357607f821691505b60208210811415611ed457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611eee57611eee611f09565b5060010190565b600082611f0457611f04611f1f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461100457600080fdfea26469706673582212204b98a3af0f97395ba9f94d02ca5b950ac172b35381e78eb5c24ee9bdc749c64f64736f6c634300080400334552433732313a207472616e7366657220746f206e6f6e204552433732315265

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80635c975abb116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd146104d2578063d5abeb01146104f2578063e985e9c514610508578063f2fde38b1461055157600080fd5b806395d89b411461046a578063a0712d681461047f578063a22cb46514610492578063b88d4fde146104b257600080fd5b806370a08231116100d157806370a08231146103f7578063715018a6146104175780637ec4a6591461042c5780638da5cb5b1461044c57600080fd5b80635c975abb146103a857806362b99ad4146103c25780636352211e146103d757600080fd5b806318160ddd1161016457806342842e0e1161013e57806342842e0e14610326578063438b63001461034657806344a0d68a146103735780635503a0e81461039357600080fd5b806318160ddd146102dc57806323b872dd146102f15780633ccfd60b1461031157600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806313faede61461027857806316ba10e01461029c57806316c38b3c146102bc57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611b21565b610571565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105c3565b6040516101f39190611d26565b34801561022a57600080fd5b5061023e610239366004611b9f565b610655565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611ade565b6106ef565b005b34801561028457600080fd5b5061028e600a5481565b6040519081526020016101f3565b3480156102a857600080fd5b506102766102b7366004611b59565b610805565b3480156102c857600080fd5b506102766102d7366004611b07565b610846565b3480156102e857600080fd5b5061028e610883565b3480156102fd57600080fd5b5061027661030c366004611a01565b610893565b34801561031d57600080fd5b506102766108c4565b34801561033257600080fd5b50610276610341366004611a01565b6109dc565b34801561035257600080fd5b506103666103613660046119b5565b6109f7565b6040516101f39190611ce2565b34801561037f57600080fd5b5061027661038e366004611b9f565b610af4565b34801561039f57600080fd5b50610211610b23565b3480156103b457600080fd5b50600c546101e79060ff1681565b3480156103ce57600080fd5b50610211610bb1565b3480156103e357600080fd5b5061023e6103f2366004611b9f565b610bbe565b34801561040357600080fd5b5061028e6104123660046119b5565b610c35565b34801561042357600080fd5b50610276610cbc565b34801561043857600080fd5b50610276610447366004611b59565b610cf2565b34801561045857600080fd5b506006546001600160a01b031661023e565b34801561047657600080fd5b50610211610d2f565b61027661048d366004611b9f565b610d3e565b34801561049e57600080fd5b506102766104ad366004611ab5565b610e4b565b3480156104be57600080fd5b506102766104cd366004611a3c565b610e56565b3480156104de57600080fd5b506102116104ed366004611b9f565b610e8e565b3480156104fe57600080fd5b5061028e600b5481565b34801561051457600080fd5b506101e76105233660046119cf565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561055d57600080fd5b5061027661056c3660046119b5565b610f6c565b60006001600160e01b031982166380ac58cd60e01b14806105a257506001600160e01b03198216635b5e139f60e01b145b806105bd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546105d290611e9f565b80601f01602080910402602001604051908101604052809291908181526020018280546105fe90611e9f565b801561064b5780601f106106205761010080835404028352916020019161064b565b820191906000526020600020905b81548152906001019060200180831161062e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106d35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106fa82610bbe565b9050806001600160a01b0316836001600160a01b031614156107685760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106ca565b336001600160a01b038216148061078457506107848133610523565b6107f65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106ca565b6108008383611023565b505050565b6006546001600160a01b0316331461082f5760405162461bcd60e51b81526004016106ca90611d8b565b805161084290600990602084019061187a565b5050565b6006546001600160a01b031633146108705760405162461bcd60e51b81526004016106ca90611d8b565b600c805460ff1916911515919091179055565b600061088e60075490565b905090565b61089d3382611091565b6108b95760405162461bcd60e51b81526004016106ca90611dc0565b610800838383611188565b6006546001600160a01b031633146108ee5760405162461bcd60e51b81526004016106ca90611d8b565b600073d5a44ef877a5ff62f234ac016456b51e7c2bff546064610912476019611e3d565b61091c9190611e29565b604051600081818185875af1925050503d8060008114610958576040519150601f19603f3d011682016040523d82523d6000602084013e61095d565b606091505b505090508061096b57600080fd5b600061097f6006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146109c9576040519150601f19603f3d011682016040523d82523d6000602084013e6109ce565b606091505b505090508061084257600080fd5b61080083838360405180602001604052806000815250610e56565b60606000610a0483610c35565b905060008167ffffffffffffffff811115610a2f57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610a58578160200160208202803683370190505b509050600160005b8381108015610a715750600b548211155b15610aea576000610a8183610bbe565b9050866001600160a01b0316816001600160a01b03161415610ad75782848381518110610abe57634e487b7160e01b600052603260045260246000fd5b602090810291909101015281610ad381611eda565b9250505b82610ae181611eda565b93505050610a60565b5090949350505050565b6006546001600160a01b03163314610b1e5760405162461bcd60e51b81526004016106ca90611d8b565b600a55565b60098054610b3090611e9f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5c90611e9f565b8015610ba95780601f10610b7e57610100808354040283529160200191610ba9565b820191906000526020600020905b815481529060010190602001808311610b8c57829003601f168201915b505050505081565b60088054610b3090611e9f565b6000818152600260205260408120546001600160a01b0316806105bd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106ca565b60006001600160a01b038216610ca05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106ca565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ce65760405162461bcd60e51b81526004016106ca90611d8b565b610cf06000611324565b565b6006546001600160a01b03163314610d1c5760405162461bcd60e51b81526004016106ca90611d8b565b805161084290600890602084019061187a565b6060600180546105d290611e9f565b80600b5481610d4c60075490565b610d569190611e11565b1115610d9b5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016106ca565b600c5460ff1615610dee5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016106ca565b81600a54610dfc9190611e3d565b341015610e415760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016106ca565b6108423383611376565b6108423383836113b3565b610e603383611091565b610e7c5760405162461bcd60e51b81526004016106ca90611dc0565b610e8884848484611482565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f0d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106ca565b6000610f176114b5565b90506000815111610f375760405180602001604052806000815250610f65565b80610f41846114c4565b6009604051602001610f5593929190611be3565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610f965760405162461bcd60e51b81526004016106ca90611d8b565b6001600160a01b038116610ffb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ca565b61100481611324565b50565b80546001019055565b5490565b6001600160a01b03163b151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061105882610bbe565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661110a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106ca565b600061111583610bbe565b9050806001600160a01b0316846001600160a01b0316148061115c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806111805750836001600160a01b031661117584610655565b6001600160a01b0316145b949350505050565b826001600160a01b031661119b82610bbe565b6001600160a01b0316146111ff5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016106ca565b6001600160a01b0382166112615760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106ca565b61126c600082611023565b6001600160a01b0383166000908152600360205260408120805460019290611295908490611e5c565b90915550506001600160a01b03821660009081526003602052604081208054600192906112c3908490611e11565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b818110156108005761138f600780546001019055565b6113a18361139c60075490565b6115de565b806113ab81611eda565b915050611379565b816001600160a01b0316836001600160a01b031614156114155760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106ca565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61148d848484611188565b611499848484846115f8565b610e885760405162461bcd60e51b81526004016106ca90611d39565b6060600880546105d290611e9f565b6060816114e85750506040805180820190915260018152600360fc1b602082015290565b8160005b811561151257806114fc81611eda565b915061150b9050600a83611e29565b91506114ec565b60008167ffffffffffffffff81111561153b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611565576020820181803683370190505b5090505b84156111805761157a600183611e5c565b9150611587600a86611ef5565b611592906030611e11565b60f81b8183815181106115b557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506115d7600a86611e29565b9450611569565b610842828260405180602001604052806000815250611705565b60006001600160a01b0384163b156116fa57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061163c903390899088908890600401611ca5565b602060405180830381600087803b15801561165657600080fd5b505af1925050508015611686575060408051601f3d908101601f1916820190925261168391810190611b3d565b60015b6116e0573d8080156116b4576040519150601f19603f3d011682016040523d82523d6000602084013e6116b9565b606091505b5080516116d85760405162461bcd60e51b81526004016106ca90611d39565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611180565b506001949350505050565b61170f8383611738565b61171c60008484846115f8565b6108005760405162461bcd60e51b81526004016106ca90611d39565b6001600160a01b03821661178e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106ca565b6000818152600260205260409020546001600160a01b0316156117f35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106ca565b6001600160a01b038216600090815260036020526040812080546001929061181c908490611e11565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461188690611e9f565b90600052602060002090601f0160209004810192826118a857600085556118ee565b82601f106118c157805160ff19168380011785556118ee565b828001600101855582156118ee579182015b828111156118ee5782518255916020019190600101906118d3565b506118fa9291506118fe565b5090565b5b808211156118fa57600081556001016118ff565b600067ffffffffffffffff8084111561192e5761192e611f35565b604051601f8501601f19908116603f0116810190828211818310171561195657611956611f35565b8160405280935085815286868601111561196f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146119a057600080fd5b919050565b803580151581146119a057600080fd5b6000602082840312156119c6578081fd5b610f6582611989565b600080604083850312156119e1578081fd5b6119ea83611989565b91506119f860208401611989565b90509250929050565b600080600060608486031215611a15578081fd5b611a1e84611989565b9250611a2c60208501611989565b9150604084013590509250925092565b60008060008060808587031215611a51578081fd5b611a5a85611989565b9350611a6860208601611989565b925060408501359150606085013567ffffffffffffffff811115611a8a578182fd5b8501601f81018713611a9a578182fd5b611aa987823560208401611913565b91505092959194509250565b60008060408385031215611ac7578182fd5b611ad083611989565b91506119f8602084016119a5565b60008060408385031215611af0578182fd5b611af983611989565b946020939093013593505050565b600060208284031215611b18578081fd5b610f65826119a5565b600060208284031215611b32578081fd5b8135610f6581611f4b565b600060208284031215611b4e578081fd5b8151610f6581611f4b565b600060208284031215611b6a578081fd5b813567ffffffffffffffff811115611b80578182fd5b8201601f81018413611b90578182fd5b61118084823560208401611913565b600060208284031215611bb0578081fd5b5035919050565b60008151808452611bcf816020860160208601611e73565b601f01601f19169290920160200192915050565b600084516020611bf68285838a01611e73565b855191840191611c098184848a01611e73565b85549201918390600181811c9080831680611c2557607f831692505b858310811415611c4357634e487b7160e01b88526022600452602488fd5b808015611c575760018114611c6857611c94565b60ff19851688528388019550611c94565b60008b815260209020895b85811015611c8c5781548a820152908401908801611c73565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cd890830184611bb7565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611d1a57835183529284019291840191600101611cfe565b50909695505050505050565b602081526000610f656020830184611bb7565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611e2457611e24611f09565b500190565b600082611e3857611e38611f1f565b500490565b6000816000190483118215151615611e5757611e57611f09565b500290565b600082821015611e6e57611e6e611f09565b500390565b60005b83811015611e8e578181015183820152602001611e76565b83811115610e885750506000910152565b600181811c90821680611eb357607f821691505b60208210811415611ed457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611eee57611eee611f09565b5060010190565b600082611f0457611f04611f1f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461100457600080fdfea26469706673582212204b98a3af0f97395ba9f94d02ca5b950ac172b35381e78eb5c24ee9bdc749c64f64736f6c63430008040033

Deployed Bytecode Sourcemap

39763:3006:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25652:305;;;;;;;;;;-1:-1:-1;25652:305:0;;;;;:::i;:::-;;:::i;:::-;;;7964:14:1;;7957:22;7939:41;;7927:2;7912:18;25652:305:0;;;;;;;;26597:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28157:221::-;;;;;;;;;;-1:-1:-1;28157:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6622:32:1;;;6604:51;;6592:2;6577:18;28157:221:0;6559:102:1;27680:411:0;;;;;;;;;;-1:-1:-1;27680:411:0;;;;;:::i;:::-;;:::i;:::-;;39990:32;;;;;;;;;;;;;;;;;;;15788:25:1;;;15776:2;15761:18;39990:32:0;15743:76:1;41940:100:0;;;;;;;;;;-1:-1:-1;41940:100:0;;;;;:::i;:::-;;:::i;42046:77::-;;;;;;;;;;-1:-1:-1;42046:77:0;;;;;:::i;:::-;;:::i;40337:89::-;;;;;;;;;;;;;:::i;28907:339::-;;;;;;;;;;-1:-1:-1;28907:339:0;;;;;:::i;:::-;;:::i;42129:317::-;;;;;;;;;;;;;:::i;29317:185::-;;;;;;;;;;-1:-1:-1;29317:185:0;;;;;:::i;:::-;;:::i;40685:635::-;;;;;;;;;;-1:-1:-1;40685:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;41754:74::-;;;;;;;;;;-1:-1:-1;41754:74:0;;;;;:::i;:::-;;:::i;39948:33::-;;;;;;;;;;;;;:::i;40065:25::-;;;;;;;;;;-1:-1:-1;40065:25:0;;;;;;;;39915:28;;;;;;;;;;;;;:::i;26291:239::-;;;;;;;;;;-1:-1:-1;26291:239:0;;;;;:::i;:::-;;:::i;26021:208::-;;;;;;;;;;-1:-1:-1;26021:208:0;;;;;:::i;:::-;;:::i;6235:103::-;;;;;;;;;;;;;:::i;41834:100::-;;;;;;;;;;-1:-1:-1;41834:100:0;;;;;:::i;:::-;;:::i;5584:87::-;;;;;;;;;;-1:-1:-1;5657:6:0;;-1:-1:-1;;;;;5657:6:0;5584:87;;26766:104;;;;;;;;;;;;;:::i;40432:247::-;;;;;;:::i;:::-;;:::i;28450:155::-;;;;;;;;;;-1:-1:-1;28450:155:0;;;;;:::i;:::-;;:::i;29573:328::-;;;;;;;;;;-1:-1:-1;29573:328:0;;;;;:::i;:::-;;:::i;41326:422::-;;;;;;;;;;-1:-1:-1;41326:422:0;;;;;:::i;:::-;;:::i;40027:31::-;;;;;;;;;;;;;;;;28676:164;;;;;;;;;;-1:-1:-1;28676:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28797:25:0;;;28773:4;28797:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28676:164;6493:201;;;;;;;;;;-1:-1:-1;6493:201:0;;;;;:::i;:::-;;:::i;25652:305::-;25754:4;-1:-1:-1;;;;;;25791:40:0;;-1:-1:-1;;;25791:40:0;;:105;;-1:-1:-1;;;;;;;25848:48:0;;-1:-1:-1;;;25848:48:0;25791:105;:158;;;-1:-1:-1;;;;;;;;;;18500:40:0;;;25913:36;25771:178;25652:305;-1:-1:-1;;25652:305:0:o;26597:100::-;26651:13;26684:5;26677:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26597:100;:::o;28157:221::-;28233:7;31500:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31500:16:0;28253:73;;;;-1:-1:-1;;;28253:73:0;;12785:2:1;28253:73:0;;;12767:21:1;12824:2;12804:18;;;12797:30;12863:34;12843:18;;;12836:62;-1:-1:-1;;;12914:18:1;;;12907:42;12966:19;;28253:73:0;;;;;;;;;-1:-1:-1;28346:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28346:24:0;;28157:221::o;27680:411::-;27761:13;27777:23;27792:7;27777:14;:23::i;:::-;27761:39;;27825:5;-1:-1:-1;;;;;27819:11:0;:2;-1:-1:-1;;;;;27819:11:0;;;27811:57;;;;-1:-1:-1;;;27811:57:0;;14327:2:1;27811:57:0;;;14309:21:1;14366:2;14346:18;;;14339:30;14405:34;14385:18;;;14378:62;-1:-1:-1;;;14456:18:1;;;14449:31;14497:19;;27811:57:0;14299:223:1;27811:57:0;4388:10;-1:-1:-1;;;;;27903:21:0;;;;:62;;-1:-1:-1;27928:37:0;27945:5;4388:10;28676:164;:::i;27928:37::-;27881:168;;;;-1:-1:-1;;;27881:168:0;;11178:2:1;27881:168:0;;;11160:21:1;11217:2;11197:18;;;11190:30;11256:34;11236:18;;;11229:62;11327:26;11307:18;;;11300:54;11371:19;;27881:168:0;11150:246:1;27881:168:0;28062:21;28071:2;28075:7;28062:8;:21::i;:::-;27680:411;;;:::o;41940:100::-;5657:6;;-1:-1:-1;;;;;5657:6:0;4388:10;5804:23;5796:68;;;;-1:-1:-1;;;5796:68:0;;;;;;;:::i;:::-;42012:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;41940:100:::0;:::o;42046:77::-;5657:6;;-1:-1:-1;;;;;5657:6:0;4388:10;5804:23;5796:68;;;;-1:-1:-1;;;5796:68:0;;;;;;;:::i;:::-;42102:6:::1;:15:::0;;-1:-1:-1;;42102:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42046:77::o;40337:89::-;40381:7;40404:16;:6;1004:14;;912:114;40404:16;40397:23;;40337:89;:::o;28907:339::-;29102:41;4388:10;29135:7;29102:18;:41::i;:::-;29094:103;;;;-1:-1:-1;;;29094:103:0;;;;;;;:::i;:::-;29210:28;29220:4;29226:2;29230:7;29210:9;:28::i;42129:317::-;5657:6;;-1:-1:-1;;;;;5657:6:0;4388:10;5804:23;5796:68;;;;-1:-1:-1;;;5796:68:0;;;;;;;:::i;:::-;42196:7:::1;42217:42;42302:3;42273:26;:21;42297:2;42273:26;:::i;:::-;:32;;;;:::i;:::-;42209:101;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42195:115;;;42325:2;42317:11;;;::::0;::::1;;42354:7;42375;5657:6:::0;;-1:-1:-1;;;;;5657:6:0;;5584:87;42375:7:::1;-1:-1:-1::0;;;;;42367:21:0::1;42396;42367:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42353:69;;;42437:2;42429:11;;;::::0;::::1;29317:185:::0;29455:39;29472:4;29478:2;29482:7;29455:39;;;;;;;;;;;;:16;:39::i;40685:635::-;40760:16;40788:23;40814:17;40824:6;40814:9;:17::i;:::-;40788:43;;40838:30;40885:15;40871:30;;;;;;-1:-1:-1;;;40871:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40871:30:0;-1:-1:-1;40838:63:0;-1:-1:-1;40933:1:0;40908:22;40977:309;41002:15;40984;:33;:64;;;;;41039:9;;41021:14;:27;;40984:64;40977:309;;;41059:25;41087:23;41095:14;41087:7;:23::i;:::-;41059:51;;41146:6;-1:-1:-1;;;;;41125:27:0;:17;-1:-1:-1;;;;;41125:27:0;;41121:131;;;41198:14;41165:13;41179:15;41165:30;;;;;;-1:-1:-1;;;41165:30:0;;;;;;;;;;;;;;;;;;:47;41225:17;;;;:::i;:::-;;;;41121:131;41262:16;;;;:::i;:::-;;;;40977:309;;;;-1:-1:-1;41301:13:0;;40685:635;-1:-1:-1;;;;40685:635:0:o;41754:74::-;5657:6;;-1:-1:-1;;;;;5657:6:0;4388:10;5804:23;5796:68;;;;-1:-1:-1;;;5796:68:0;;;;;;;:::i;:::-;41810:4:::1;:12:::0;41754:74::o;39948:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39915:28::-;;;;;;;:::i;26291:239::-;26363:7;26399:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26399:16:0;26434:19;26426:73;;;;-1:-1:-1;;;26426:73:0;;12014:2:1;26426:73:0;;;11996:21:1;12053:2;12033:18;;;12026:30;12092:34;12072:18;;;12065:62;-1:-1:-1;;;12143:18:1;;;12136:39;12192:19;;26426:73:0;11986:231:1;26021:208:0;26093:7;-1:-1:-1;;;;;26121:19:0;;26113:74;;;;-1:-1:-1;;;26113:74:0;;11603:2:1;26113:74:0;;;11585:21:1;11642:2;11622:18;;;11615:30;11681:34;11661:18;;;11654:62;-1:-1:-1;;;11732:18:1;;;11725:40;11782:19;;26113:74:0;11575:232:1;26113:74:0;-1:-1:-1;;;;;;26205:16:0;;;;;:9;:16;;;;;;;26021:208::o;6235:103::-;5657:6;;-1:-1:-1;;;;;5657:6:0;4388:10;5804:23;5796:68;;;;-1:-1:-1;;;5796:68:0;;;;;;;:::i;:::-;6300:30:::1;6327:1;6300:18;:30::i;:::-;6235:103::o:0;41834:100::-;5657:6;;-1:-1:-1;;;;;5657:6:0;4388:10;5804:23;5796:68;;;;-1:-1:-1;;;5796:68:0;;;;;;;:::i;:::-;41906:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;26766:104::-:0;26822:13;26855:7;26848:14;;;;;:::i;40432:247::-;40497:11;40283:9;;40268:11;40249:16;:6;1004:14;;912:114;40249:16;:30;;;;:::i;:::-;:43;;40241:76;;;;-1:-1:-1;;;40241:76:0;;14729:2:1;40241:76:0;;;14711:21:1;14768:2;14748:18;;;14741:30;-1:-1:-1;;;14787:18:1;;;14780:50;14847:18;;40241:76:0;14701:170:1;40241:76:0;40526:6:::1;::::0;::::1;;40525:7;40517:43;;;::::0;-1:-1:-1;;;40517:43:0;;13559:2:1;40517:43:0::1;::::0;::::1;13541:21:1::0;13598:2;13578:18;;;13571:30;13637:25;13617:18;;;13610:53;13680:18;;40517:43:0::1;13531:173:1::0;40517:43:0::1;40595:11;40588:4;;:18;;;;:::i;:::-;40575:9;:31;;40567:63;;;::::0;-1:-1:-1;;;40567:63:0;;15496:2:1;40567:63:0::1;::::0;::::1;15478:21:1::0;15535:2;15515:18;;;15508:30;-1:-1:-1;;;15554:18:1;;;15547:49;15613:18;;40567:63:0::1;15468:169:1::0;40567:63:0::1;40639:34;40649:10;40661:11;40639:9;:34::i;28450:155::-:0;28545:52;4388:10;28578:8;28588;28545:18;:52::i;29573:328::-;29748:41;4388:10;29781:7;29748:18;:41::i;:::-;29740:103;;;;-1:-1:-1;;;29740:103:0;;;;;;;:::i;:::-;29854:39;29868:4;29874:2;29878:7;29887:5;29854:13;:39::i;:::-;29573:328;;;;:::o;41326:422::-;31476:4;31500:16;;;:7;:16;;;;;;41425:13;;-1:-1:-1;;;;;31500:16:0;41450:98;;;;-1:-1:-1;;;41450:98:0;;13911:2:1;41450:98:0;;;13893:21:1;13950:2;13930:18;;;13923:30;13989:34;13969:18;;;13962:62;-1:-1:-1;;;14040:18:1;;;14033:45;14095:19;;41450:98:0;13883:237:1;41450:98:0;41557:28;41588:10;:8;:10::i;:::-;41557:41;;41643:1;41618:14;41612:28;:32;:130;;;;;;;;;;;;;;;;;41680:14;41696:19;:8;:17;:19::i;:::-;41717:9;41663:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41612:130;41605:137;41326:422;-1:-1:-1;;;41326:422:0:o;6493:201::-;5657:6;;-1:-1:-1;;;;;5657:6:0;4388:10;5804:23;5796:68;;;;-1:-1:-1;;;5796:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6582:22:0;::::1;6574:73;;;::::0;-1:-1:-1;;;6574:73:0;;8836:2:1;6574:73:0::1;::::0;::::1;8818:21:1::0;8875:2;8855:18;;;8848:30;8914:34;8894:18;;;8887:62;-1:-1:-1;;;8965:18:1;;;8958:36;9011:19;;6574:73:0::1;8808:228:1::0;6574:73:0::1;6658:28;6677:8;6658:18;:28::i;:::-;6493:201:::0;:::o;1034:127::-;1123:19;;1141:1;1123:19;;;1034:127::o;912:114::-;1004:14;;912:114::o;8285:326::-;-1:-1:-1;;;;;8580:19:0;;:23;;;8285:326::o;35557:174::-;35632:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35632:29:0;-1:-1:-1;;;;;35632:29:0;;;;;;;;:24;;35686:23;35632:24;35686:14;:23::i;:::-;-1:-1:-1;;;;;35677:46:0;;;;;;;;;;;35557:174;;:::o;31705:348::-;31798:4;31500:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31500:16:0;31815:73;;;;-1:-1:-1;;;31815:73:0;;10765:2:1;31815:73:0;;;10747:21:1;10804:2;10784:18;;;10777:30;10843:34;10823:18;;;10816:62;-1:-1:-1;;;10894:18:1;;;10887:42;10946:19;;31815:73:0;10737:234:1;31815:73:0;31899:13;31915:23;31930:7;31915:14;:23::i;:::-;31899:39;;31968:5;-1:-1:-1;;;;;31957:16:0;:7;-1:-1:-1;;;;;31957:16:0;;:52;;;-1:-1:-1;;;;;;28797:25:0;;;28773:4;28797:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31977:32;31957:87;;;;32037:7;-1:-1:-1;;;;;32013:31:0;:20;32025:7;32013:11;:20::i;:::-;-1:-1:-1;;;;;32013:31:0;;31957:87;31949:96;31705:348;-1:-1:-1;;;;31705:348:0:o;34814:625::-;34973:4;-1:-1:-1;;;;;34946:31:0;:23;34961:7;34946:14;:23::i;:::-;-1:-1:-1;;;;;34946:31:0;;34938:81;;;;-1:-1:-1;;;34938:81:0;;9243:2:1;34938:81:0;;;9225:21:1;9282:2;9262:18;;;9255:30;9321:34;9301:18;;;9294:62;-1:-1:-1;;;9372:18:1;;;9365:35;9417:19;;34938:81:0;9215:227:1;34938:81:0;-1:-1:-1;;;;;35038:16:0;;35030:65;;;;-1:-1:-1;;;35030:65:0;;10006:2:1;35030:65:0;;;9988:21:1;10045:2;10025:18;;;10018:30;10084:34;10064:18;;;10057:62;-1:-1:-1;;;10135:18:1;;;10128:34;10179:19;;35030:65:0;9978:226:1;35030:65:0;35212:29;35229:1;35233:7;35212:8;:29::i;:::-;-1:-1:-1;;;;;35254:15:0;;;;;;:9;:15;;;;;:20;;35273:1;;35254:15;:20;;35273:1;;35254:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35285:13:0;;;;;;:9;:13;;;;;:18;;35302:1;;35285:13;:18;;35302:1;;35285:18;:::i;:::-;;;;-1:-1:-1;;35314:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35314:21:0;-1:-1:-1;;;;;35314:21:0;;;;;;;;;35353:27;;35314:16;;35353:27;;;;;;;27680:411;;;:::o;6854:191::-;6947:6;;;-1:-1:-1;;;;;6964:17:0;;;-1:-1:-1;;;;;;6964:17:0;;;;;;;6997:40;;6947:6;;;6964:17;6947:6;;6997:40;;6928:16;;6997:40;6854:191;;:::o;42452:204::-;42532:9;42527:124;42551:11;42547:1;:15;42527:124;;;42578:18;:6;1123:19;;1141:1;1123:19;;;1034:127;42578:18;42605:38;42615:9;42626:16;:6;1004:14;;912:114;42626:16;42605:9;:38::i;:::-;42564:3;;;;:::i;:::-;;;;42527:124;;35873:315;36028:8;-1:-1:-1;;;;;36019:17:0;:5;-1:-1:-1;;;;;36019:17:0;;;36011:55;;;;-1:-1:-1;;;36011:55:0;;10411:2:1;36011:55:0;;;10393:21:1;10450:2;10430:18;;;10423:30;10489:27;10469:18;;;10462:55;10534:18;;36011:55:0;10383:175:1;36011:55:0;-1:-1:-1;;;;;36077:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36077:46:0;;;;;;;;;;36139:41;;7939::1;;;36139::0;;7912:18:1;36139:41:0;;;;;;;35873:315;;;:::o;30783:::-;30940:28;30950:4;30956:2;30960:7;30940:9;:28::i;:::-;30987:48;31010:4;31016:2;31020:7;31029:5;30987:22;:48::i;:::-;30979:111;;;;-1:-1:-1;;;30979:111:0;;;;;;;:::i;42662:104::-;42722:13;42751:9;42744:16;;;;;:::i;1870:723::-;1926:13;2147:10;2143:53;;-1:-1:-1;;2174:10:0;;;;;;;;;;;;-1:-1:-1;;;2174:10:0;;;;;1870:723::o;2143:53::-;2221:5;2206:12;2262:78;2269:9;;2262:78;;2295:8;;;;:::i;:::-;;-1:-1:-1;2318:10:0;;-1:-1:-1;2326:2:0;2318:10;;:::i;:::-;;;2262:78;;;2350:19;2382:6;2372:17;;;;;;-1:-1:-1;;;2372:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2372:17:0;;2350:39;;2400:154;2407:10;;2400:154;;2434:11;2444:1;2434:11;;:::i;:::-;;-1:-1:-1;2503:10:0;2511:2;2503:5;:10;:::i;:::-;2490:24;;:2;:24;:::i;:::-;2477:39;;2460:6;2467;2460:14;;;;;;-1:-1:-1;;;2460:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;2460:56:0;;;;;;;;-1:-1:-1;2531:11:0;2540:2;2531:11;;:::i;:::-;;;2400:154;;32395:110;32471:26;32481:2;32485:7;32471:26;;;;;;;;;;;;:9;:26::i;36753:799::-;36908:4;-1:-1:-1;;;;;36929:13:0;;8580:19;:23;36925:620;;36965:72;;-1:-1:-1;;;36965:72:0;;-1:-1:-1;;;;;36965:36:0;;;;;:72;;4388:10;;37016:4;;37022:7;;37031:5;;36965:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36965:72:0;;;;;;;;-1:-1:-1;;36965:72:0;;;;;;;;;;;;:::i;:::-;;;36961:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37207:13:0;;37203:272;;37250:60;;-1:-1:-1;;;37250:60:0;;;;;;;:::i;37203:272::-;37425:6;37419:13;37410:6;37406:2;37402:15;37395:38;36961:529;-1:-1:-1;;;;;;37088:51:0;-1:-1:-1;;;37088:51:0;;-1:-1:-1;37081:58:0;;36925:620;-1:-1:-1;37529:4:0;36753:799;;;;;;:::o;32732:321::-;32862:18;32868:2;32872:7;32862:5;:18::i;:::-;32913:54;32944:1;32948:2;32952:7;32961:5;32913:22;:54::i;:::-;32891:154;;;;-1:-1:-1;;;32891:154:0;;;;;;;:::i;33389:439::-;-1:-1:-1;;;;;33469:16:0;;33461:61;;;;-1:-1:-1;;;33461:61:0;;12424:2:1;33461:61:0;;;12406:21:1;;;12443:18;;;12436:30;12502:34;12482:18;;;12475:62;12554:18;;33461:61:0;12396:182:1;33461:61:0;31476:4;31500:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31500:16:0;:30;33533:58;;;;-1:-1:-1;;;33533:58:0;;9649:2:1;33533:58:0;;;9631:21:1;9688:2;9668:18;;;9661:30;9727;9707:18;;;9700:58;9775:18;;33533:58:0;9621:178:1;33533:58:0;-1:-1:-1;;;;;33662:13:0;;;;;;:9;:13;;;;;:18;;33679:1;;33662:13;:18;;33679:1;;33662:18;:::i;:::-;;;;-1:-1:-1;;33691:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33691:21:0;-1:-1:-1;;;;;33691:21:0;;;;;;;;33730:33;;33691:16;;;33730:33;;33691:16;;33730:33;42012:22:::1;41940:100:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:2;;978:1;975;968:12;993:196;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:2;;;1126:6;1118;1111:22;1073:2;1154:29;1173:9;1154:29;:::i;1194:270::-;1262:6;1270;1323:2;1311:9;1302:7;1298:23;1294:32;1291:2;;;1344:6;1336;1329:22;1291:2;1372:29;1391:9;1372:29;:::i;:::-;1362:39;;1420:38;1454:2;1443:9;1439:18;1420:38;:::i;:::-;1410:48;;1281:183;;;;;:::o;1469:338::-;1546:6;1554;1562;1615:2;1603:9;1594:7;1590:23;1586:32;1583:2;;;1636:6;1628;1621:22;1583:2;1664:29;1683:9;1664:29;:::i;:::-;1654:39;;1712:38;1746:2;1735:9;1731:18;1712:38;:::i;:::-;1702:48;;1797:2;1786:9;1782:18;1769:32;1759:42;;1573:234;;;;;:::o;1812:696::-;1907:6;1915;1923;1931;1984:3;1972:9;1963:7;1959:23;1955:33;1952:2;;;2006:6;1998;1991:22;1952:2;2034:29;2053:9;2034:29;:::i;:::-;2024:39;;2082:38;2116:2;2105:9;2101:18;2082:38;:::i;:::-;2072:48;;2167:2;2156:9;2152:18;2139:32;2129:42;;2222:2;2211:9;2207:18;2194:32;2249:18;2241:6;2238:30;2235:2;;;2286:6;2278;2271:22;2235:2;2314:22;;2367:4;2359:13;;2355:27;-1:-1:-1;2345:2:1;;2401:6;2393;2386:22;2345:2;2429:73;2494:7;2489:2;2476:16;2471:2;2467;2463:11;2429:73;:::i;:::-;2419:83;;;1942:566;;;;;;;:::o;2513:264::-;2578:6;2586;2639:2;2627:9;2618:7;2614:23;2610:32;2607:2;;;2660:6;2652;2645:22;2607:2;2688:29;2707:9;2688:29;:::i;:::-;2678:39;;2736:35;2767:2;2756:9;2752:18;2736:35;:::i;2782:264::-;2850:6;2858;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:29;2979:9;2960:29;:::i;:::-;2950:39;3036:2;3021:18;;;;3008:32;;-1:-1:-1;;;2869:177:1:o;3051:190::-;3107:6;3160:2;3148:9;3139:7;3135:23;3131:32;3128:2;;;3181:6;3173;3166:22;3128:2;3209:26;3225:9;3209:26;:::i;3246:255::-;3304:6;3357:2;3345:9;3336:7;3332:23;3328:32;3325:2;;;3378:6;3370;3363:22;3325:2;3422:9;3409:23;3441:30;3465:5;3441:30;:::i;3506:259::-;3575:6;3628:2;3616:9;3607:7;3603:23;3599:32;3596:2;;;3649:6;3641;3634:22;3596:2;3686:9;3680:16;3705:30;3729:5;3705:30;:::i;3770:480::-;3839:6;3892:2;3880:9;3871:7;3867:23;3863:32;3860:2;;;3913:6;3905;3898:22;3860:2;3958:9;3945:23;3991:18;3983:6;3980:30;3977:2;;;4028:6;4020;4013:22;3977:2;4056:22;;4109:4;4101:13;;4097:27;-1:-1:-1;4087:2:1;;4143:6;4135;4128:22;4087:2;4171:73;4236:7;4231:2;4218:16;4213:2;4209;4205:11;4171:73;:::i;4255:190::-;4314:6;4367:2;4355:9;4346:7;4342:23;4338:32;4335:2;;;4388:6;4380;4373:22;4335:2;-1:-1:-1;4416:23:1;;4325:120;-1:-1:-1;4325:120:1:o;4450:257::-;4491:3;4529:5;4523:12;4556:6;4551:3;4544:19;4572:63;4628:6;4621:4;4616:3;4612:14;4605:4;4598:5;4594:16;4572:63;:::i;:::-;4689:2;4668:15;-1:-1:-1;;4664:29:1;4655:39;;;;4696:4;4651:50;;4499:208;-1:-1:-1;;4499:208:1:o;4712:1531::-;4936:3;4974:6;4968:13;5000:4;5013:51;5057:6;5052:3;5047:2;5039:6;5035:15;5013:51;:::i;:::-;5127:13;;5086:16;;;;5149:55;5127:13;5086:16;5171:15;;;5149:55;:::i;:::-;5295:13;;5226:20;;;5266:3;;5355:1;5377:18;;;;5430;;;;5457:2;;5535:4;5525:8;5521:19;5509:31;;5457:2;5598;5588:8;5585:16;5565:18;5562:40;5559:2;;;-1:-1:-1;;;5625:33:1;;5681:4;5678:1;5671:15;5711:4;5632:3;5699:17;5559:2;5742:18;5769:110;;;;5893:1;5888:330;;;;5735:483;;5769:110;-1:-1:-1;;5804:24:1;;5790:39;;5849:20;;;;-1:-1:-1;5769:110:1;;5888:330;15871:4;15890:17;;;15940:4;15924:21;;5983:3;5999:169;6013:8;6010:1;6007:15;5999:169;;;6095:14;;6080:13;;;6073:37;6138:16;;;;6030:10;;5999:169;;;6003:3;;6199:8;6192:5;6188:20;6181:27;;5735:483;-1:-1:-1;6234:3:1;;4944:1299;-1:-1:-1;;;;;;;;;;;4944:1299:1:o;6666:488::-;-1:-1:-1;;;;;6935:15:1;;;6917:34;;6987:15;;6982:2;6967:18;;6960:43;7034:2;7019:18;;7012:34;;;7082:3;7077:2;7062:18;;7055:31;;;6860:4;;7103:45;;7128:19;;7120:6;7103:45;:::i;:::-;7095:53;6869:285;-1:-1:-1;;;;;;6869:285:1:o;7159:635::-;7330:2;7382:21;;;7452:13;;7355:18;;;7474:22;;;7301:4;;7330:2;7553:15;;;;7527:2;7512:18;;;7301:4;7599:169;7613:6;7610:1;7607:13;7599:169;;;7674:13;;7662:26;;7743:15;;;;7708:12;;;;7635:1;7628:9;7599:169;;;-1:-1:-1;7785:3:1;;7310:484;-1:-1:-1;;;;;;7310:484:1:o;7991:219::-;8140:2;8129:9;8122:21;8103:4;8160:44;8200:2;8189:9;8185:18;8177:6;8160:44;:::i;8215:414::-;8417:2;8399:21;;;8456:2;8436:18;;;8429:30;8495:34;8490:2;8475:18;;8468:62;-1:-1:-1;;;8561:2:1;8546:18;;8539:48;8619:3;8604:19;;8389:240::o;12996:356::-;13198:2;13180:21;;;13217:18;;;13210:30;13276:34;13271:2;13256:18;;13249:62;13343:2;13328:18;;13170:182::o;14876:413::-;15078:2;15060:21;;;15117:2;15097:18;;;15090:30;15156:34;15151:2;15136:18;;15129:62;-1:-1:-1;;;15222:2:1;15207:18;;15200:47;15279:3;15264:19;;15050:239::o;15956:128::-;15996:3;16027:1;16023:6;16020:1;16017:13;16014:2;;;16033:18;;:::i;:::-;-1:-1:-1;16069:9:1;;16004:80::o;16089:120::-;16129:1;16155;16145:2;;16160:18;;:::i;:::-;-1:-1:-1;16194:9:1;;16135:74::o;16214:168::-;16254:7;16320:1;16316;16312:6;16308:14;16305:1;16302:21;16297:1;16290:9;16283:17;16279:45;16276:2;;;16327:18;;:::i;:::-;-1:-1:-1;16367:9:1;;16266:116::o;16387:125::-;16427:4;16455:1;16452;16449:8;16446:2;;;16460:18;;:::i;:::-;-1:-1:-1;16497:9:1;;16436:76::o;16517:258::-;16589:1;16599:113;16613:6;16610:1;16607:13;16599:113;;;16689:11;;;16683:18;16670:11;;;16663:39;16635:2;16628:10;16599:113;;;16730:6;16727:1;16724:13;16721:2;;;-1:-1:-1;;16765:1:1;16747:16;;16740:27;16570:205::o;16780:380::-;16859:1;16855:12;;;;16902;;;16923:2;;16977:4;16969:6;16965:17;16955:27;;16923:2;17030;17022:6;17019:14;16999:18;16996:38;16993:2;;;17076:10;17071:3;17067:20;17064:1;17057:31;17111:4;17108:1;17101:15;17139:4;17136:1;17129:15;16993:2;;16835:325;;;:::o;17165:135::-;17204:3;-1:-1:-1;;17225:17:1;;17222:2;;;17245:18;;:::i;:::-;-1:-1:-1;17292:1:1;17281:13;;17212:88::o;17305:112::-;17337:1;17363;17353:2;;17368:18;;:::i;:::-;-1:-1:-1;17402:9:1;;17343:74::o;17422:127::-;17483:10;17478:3;17474:20;17471:1;17464:31;17514:4;17511:1;17504:15;17538:4;17535:1;17528:15;17554:127;17615:10;17610:3;17606:20;17603:1;17596:31;17646:4;17643:1;17636:15;17670:4;17667:1;17660:15;17686:127;17747:10;17742:3;17738:20;17735:1;17728:31;17778:4;17775:1;17768:15;17802:4;17799:1;17792:15;17818:131;-1:-1:-1;;;;;;17892:32:1;;17882:43;;17872:2;;17939:1;17936;17929:12

Swarm Source

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