ETH Price: $3,631.09 (+7.97%)

Token

Pixel Slimezz (PS)
 

Overview

Max Total Supply

0 PS

Holders

66

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 PS
0x04ac4c2c7ba5915e13a6126abfefb1b32200ad4e
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:
PixelSlimezz

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: GPL-3.0

// 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 v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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 v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _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 || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

// File: contracts/pixelslime.sol



pragma solidity ^0.8.7;





contract PixelSlimezz is ERC721, Ownable {

    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;
    uint256 totalSupply = 3333;
    uint256 public maxMintPerTransaction = 5;
    bool public revealed = false;
    string public _baseURIRevealed = "ipfs://QmQBgYCSkFtoDbgmzkJRgoN9dNLnE7yZydi6c7xHyFDt58/";
    string public notRevealedURI = "ipfs://QmY2kouYZRaiF6rAgAHogTqvxmTCjeyF5SNJP2EikK5fRA";


    event Mint(address to, uint tokenId);

    constructor() ERC721("Pixel Slimezz", "PS") {
        _tokenIds.increment();
        _mint(msg.sender, _tokenIds.current());
        _tokenIds.increment();
    }

    function mint(uint _amount) public payable {
        require(_amount <= maxMintPerTransaction, "Amount exceeded");
        require(_tokenIds.current() + _amount <= totalSupply, "Supply exceeded");
        if(_tokenIds.current() > 500) {
            require(msg.value >= 25000000000000000, "Value is too low");
        }
        for(uint i = 0; i < _amount; i++) {
            _mint(msg.sender, _tokenIds.current());
            emit Mint(msg.sender, _tokenIds.current());
            _tokenIds.increment();
        }
    }
    
    function tokenURI(uint _tokenId) public view virtual override returns (string memory) {
        if(revealed == true) {
            return string(abi.encodePacked(_baseURIRevealed, Strings.toString(_tokenId), ".json"));
        } else {
            return notRevealedURI;
        }
    }

    function setRevealed(bool _state) public {
        revealed = _state;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Mint","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":[],"name":"_baseURIRevealed","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxMintPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedURI","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"bool","name":"_state","type":"bool"}],"name":"setRevealed","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":[{"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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610d056008556005600955600a805460ff1916905560e0604052603660808181529062001ead60a03980516200003e91600b9160209091019062000305565b5060405180606001604052806035815260200162001ee36035913980516200006f91600c9160209091019062000305565b503480156200007d57600080fd5b50604080518082018252600d81526c2834bc32b61029b634b6b2bd3d60991b602080830191825283518085019094526002845261505360f01b908401528151919291620000cd9160009162000305565b508051620000e390600190602084019062000305565b50505062000100620000fa6200015660201b60201c565b6200015a565b620001176007620001ac60201b62000cdd1760201c565b6200013933620001336007620001b560201b62000ce61760201c565b620001b9565b620001506007620001ac60201b62000cdd1760201c565b6200040f565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80546001019055565b5490565b6001600160a01b038216620002155760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064015b60405180910390fd5b6000818152600260205260409020546001600160a01b0316156200027c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016200020c565b6001600160a01b0382166000908152600360205260408120805460019290620002a7908490620003ab565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546200031390620003d2565b90600052602060002090601f01602090048101928262000337576000855562000382565b82601f106200035257805160ff191683800117855562000382565b8280016001018555821562000382579182015b828111156200038257825182559160200191906001019062000365565b506200039092915062000394565b5090565b5b8082111562000390576000815560010162000395565b60008219821115620003cd57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620003e757607f821691505b602082108114156200040957634e487b7160e01b600052602260045260246000fd5b50919050565b611a8e806200041f6000396000f3fe6080604052600436106101405760003560e01c8063715018a6116100b6578063a22cb4651161006f578063a22cb4651461034e578063b88d4fde1461036e578063c87b56dd1461038e578063e0a80853146103ae578063e985e9c5146103dc578063f2fde38b1461042557600080fd5b8063715018a6146102c957806372250380146102de578063789534b4146102f35780638da5cb5b1461030857806395d89b4114610326578063a0712d681461033b57600080fd5b806323b872dd1161010857806323b872dd1461021a5780633ccfd60b1461023a57806342842e0e1461024f578063518302271461026f5780636352211e1461028957806370a08231146102a957600080fd5b806301f569971461014557806301ffc9a71461016e57806306fdde031461019e578063081812fc146101c0578063095ea7b3146101f8575b600080fd5b34801561015157600080fd5b5061015b60095481565b6040519081526020015b60405180910390f35b34801561017a57600080fd5b5061018e610189366004611693565b610445565b6040519015158152602001610165565b3480156101aa57600080fd5b506101b3610497565b6040516101659190611826565b3480156101cc57600080fd5b506101e06101db3660046116cd565b610529565b6040516001600160a01b039091168152602001610165565b34801561020457600080fd5b5061021861021336600461164e565b6105c3565b005b34801561022657600080fd5b5061021861023536600461150c565b6106d9565b34801561024657600080fd5b5061021861070a565b34801561025b57600080fd5b5061021861026a36600461150c565b6107a8565b34801561027b57600080fd5b50600a5461018e9060ff1681565b34801561029557600080fd5b506101e06102a43660046116cd565b6107c3565b3480156102b557600080fd5b5061015b6102c43660046114b7565b61083a565b3480156102d557600080fd5b506102186108c1565b3480156102ea57600080fd5b506101b36108f7565b3480156102ff57600080fd5b506101b3610985565b34801561031457600080fd5b506006546001600160a01b03166101e0565b34801561033257600080fd5b506101b3610992565b6102186103493660046116cd565b6109a1565b34801561035a57600080fd5b50610218610369366004611624565b610b26565b34801561037a57600080fd5b50610218610389366004611548565b610b31565b34801561039a57600080fd5b506101b36103a93660046116cd565b610b69565b3480156103ba57600080fd5b506102186103c9366004611678565b600a805460ff1916911515919091179055565b3480156103e857600080fd5b5061018e6103f73660046114d9565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561043157600080fd5b506102186104403660046114b7565b610c45565b60006001600160e01b031982166380ac58cd60e01b148061047657506001600160e01b03198216635b5e139f60e01b145b8061049157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546104a690611980565b80601f01602080910402602001604051908101604052809291908181526020018280546104d290611980565b801561051f5780601f106104f45761010080835404028352916020019161051f565b820191906000526020600020905b81548152906001019060200180831161050257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105a75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105ce826107c3565b9050806001600160a01b0316836001600160a01b0316141561063c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161059e565b336001600160a01b0382161480610658575061065881336103f7565b6106ca5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161059e565b6106d48383610cea565b505050565b6106e33382610d58565b6106ff5760405162461bcd60e51b815260040161059e906118c0565b6106d4838383610e4f565b6006546001600160a01b031633146107345760405162461bcd60e51b815260040161059e9061188b565b60006107486006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610792576040519150601f19603f3d011682016040523d82523d6000602084013e610797565b606091505b50509050806107a557600080fd5b50565b6106d483838360405180602001604052806000815250610b31565b6000818152600260205260408120546001600160a01b0316806104915760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161059e565b60006001600160a01b0382166108a55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161059e565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146108eb5760405162461bcd60e51b815260040161059e9061188b565b6108f56000610fef565b565b600c805461090490611980565b80601f016020809104026020016040519081016040528092919081815260200182805461093090611980565b801561097d5780601f106109525761010080835404028352916020019161097d565b820191906000526020600020905b81548152906001019060200180831161096057829003601f168201915b505050505081565b600b805461090490611980565b6060600180546104a690611980565b6009548111156109e55760405162461bcd60e51b815260206004820152600f60248201526e105b5bdd5b9d08195e18d959591959608a1b604482015260640161059e565b600854816109f260075490565b6109fc9190611911565b1115610a3c5760405162461bcd60e51b815260206004820152600f60248201526e14dd5c1c1b1e48195e18d959591959608a1b604482015260640161059e565b6101f4610a4860075490565b1115610a98576658d15e17628000341015610a985760405162461bcd60e51b815260206004820152601060248201526f56616c756520697320746f6f206c6f7760801b604482015260640161059e565b60005b81811015610b2257610ab533610ab060075490565b611041565b7f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688533610ae060075490565b604080516001600160a01b03909316835260208301919091520160405180910390a1610b10600780546001019055565b80610b1a816119bb565b915050610a9b565b5050565b610b22338383611183565b610b3b3383610d58565b610b575760405162461bcd60e51b815260040161059e906118c0565b610b6384848484611252565b50505050565b600a5460609060ff16151560011415610bae57600b610b8783611285565b604051602001610b9892919061172e565b6040516020818303038152906040529050919050565b600c8054610bbb90611980565b80601f0160208091040260200160405190810160405280929190818152602001828054610be790611980565b8015610c345780601f10610c0957610100808354040283529160200191610c34565b820191906000526020600020905b815481529060010190602001808311610c1757829003601f168201915b50505050509050919050565b919050565b6006546001600160a01b03163314610c6f5760405162461bcd60e51b815260040161059e9061188b565b6001600160a01b038116610cd45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161059e565b6107a581610fef565b80546001019055565b5490565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610d1f826107c3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610dd15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161059e565b6000610ddc836107c3565b9050806001600160a01b0316846001600160a01b03161480610e175750836001600160a01b0316610e0c84610529565b6001600160a01b0316145b80610e4757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610e62826107c3565b6001600160a01b031614610eca5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161059e565b6001600160a01b038216610f2c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161059e565b610f37600082610cea565b6001600160a01b0383166000908152600360205260408120805460019290610f6090849061193d565b90915550506001600160a01b0382166000908152600360205260408120805460019290610f8e908490611911565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166110975760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161059e565b6000818152600260205260409020546001600160a01b0316156110fc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161059e565b6001600160a01b0382166000908152600360205260408120805460019290611125908490611911565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b031614156111e55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161059e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61125d848484610e4f565b61126984848484611383565b610b635760405162461bcd60e51b815260040161059e90611839565b6060816112a95750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112d357806112bd816119bb565b91506112cc9050600a83611929565b91506112ad565b60008167ffffffffffffffff8111156112ee576112ee611a2c565b6040519080825280601f01601f191660200182016040528015611318576020820181803683370190505b5090505b8415610e475761132d60018361193d565b915061133a600a866119d6565b611345906030611911565b60f81b81838151811061135a5761135a611a16565b60200101906001600160f81b031916908160001a90535061137c600a86611929565b945061131c565b60006001600160a01b0384163b1561148557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113c79033908990889088906004016117e9565b602060405180830381600087803b1580156113e157600080fd5b505af1925050508015611411575060408051601f3d908101601f1916820190925261140e918101906116b0565b60015b61146b573d80801561143f576040519150601f19603f3d011682016040523d82523d6000602084013e611444565b606091505b5080516114635760405162461bcd60e51b815260040161059e90611839565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e47565b506001949350505050565b80356001600160a01b0381168114610c4057600080fd5b80358015158114610c4057600080fd5b6000602082840312156114c957600080fd5b6114d282611490565b9392505050565b600080604083850312156114ec57600080fd5b6114f583611490565b915061150360208401611490565b90509250929050565b60008060006060848603121561152157600080fd5b61152a84611490565b925061153860208501611490565b9150604084013590509250925092565b6000806000806080858703121561155e57600080fd5b61156785611490565b935061157560208601611490565b925060408501359150606085013567ffffffffffffffff8082111561159957600080fd5b818701915087601f8301126115ad57600080fd5b8135818111156115bf576115bf611a2c565b604051601f8201601f19908116603f011681019083821181831017156115e7576115e7611a2c565b816040528281528a602084870101111561160057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561163757600080fd5b61164083611490565b9150611503602084016114a7565b6000806040838503121561166157600080fd5b61166a83611490565b946020939093013593505050565b60006020828403121561168a57600080fd5b6114d2826114a7565b6000602082840312156116a557600080fd5b81356114d281611a42565b6000602082840312156116c257600080fd5b81516114d281611a42565b6000602082840312156116df57600080fd5b5035919050565b600081518084526116fe816020860160208601611954565b601f01601f19169290920160200192915050565b60008151611724818560208601611954565b9290920192915050565b600080845481600182811c91508083168061174a57607f831692505b602080841082141561176a57634e487b7160e01b86526022600452602486fd5b81801561177e576001811461178f576117bc565b60ff198616895284890196506117bc565b60008b81526020902060005b868110156117b45781548b82015290850190830161179b565b505084890196505b5050505050506117e06117cf8286611712565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061181c908301846116e6565b9695505050505050565b6020815260006114d260208301846116e6565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611924576119246119ea565b500190565b60008261193857611938611a00565b500490565b60008282101561194f5761194f6119ea565b500390565b60005b8381101561196f578181015183820152602001611957565b83811115610b635750506000910152565b600181811c9082168061199457607f821691505b602082108114156119b557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156119cf576119cf6119ea565b5060010190565b6000826119e5576119e5611a00565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146107a557600080fdfea26469706673582212202d1f8539c14f22439623f13e9381ecbff228f07d25815bcf2039b2c75b4aef0964736f6c63430008070033697066733a2f2f516d5142675943536b46746f4462676d7a6b4a52676f4e39644e4c6e4537795a79646936633778487946447435382f697066733a2f2f516d59326b6f75595a526169463672416741486f67547176786d54436a65794635534e4a503245696b4b35665241

Deployed Bytecode

0x6080604052600436106101405760003560e01c8063715018a6116100b6578063a22cb4651161006f578063a22cb4651461034e578063b88d4fde1461036e578063c87b56dd1461038e578063e0a80853146103ae578063e985e9c5146103dc578063f2fde38b1461042557600080fd5b8063715018a6146102c957806372250380146102de578063789534b4146102f35780638da5cb5b1461030857806395d89b4114610326578063a0712d681461033b57600080fd5b806323b872dd1161010857806323b872dd1461021a5780633ccfd60b1461023a57806342842e0e1461024f578063518302271461026f5780636352211e1461028957806370a08231146102a957600080fd5b806301f569971461014557806301ffc9a71461016e57806306fdde031461019e578063081812fc146101c0578063095ea7b3146101f8575b600080fd5b34801561015157600080fd5b5061015b60095481565b6040519081526020015b60405180910390f35b34801561017a57600080fd5b5061018e610189366004611693565b610445565b6040519015158152602001610165565b3480156101aa57600080fd5b506101b3610497565b6040516101659190611826565b3480156101cc57600080fd5b506101e06101db3660046116cd565b610529565b6040516001600160a01b039091168152602001610165565b34801561020457600080fd5b5061021861021336600461164e565b6105c3565b005b34801561022657600080fd5b5061021861023536600461150c565b6106d9565b34801561024657600080fd5b5061021861070a565b34801561025b57600080fd5b5061021861026a36600461150c565b6107a8565b34801561027b57600080fd5b50600a5461018e9060ff1681565b34801561029557600080fd5b506101e06102a43660046116cd565b6107c3565b3480156102b557600080fd5b5061015b6102c43660046114b7565b61083a565b3480156102d557600080fd5b506102186108c1565b3480156102ea57600080fd5b506101b36108f7565b3480156102ff57600080fd5b506101b3610985565b34801561031457600080fd5b506006546001600160a01b03166101e0565b34801561033257600080fd5b506101b3610992565b6102186103493660046116cd565b6109a1565b34801561035a57600080fd5b50610218610369366004611624565b610b26565b34801561037a57600080fd5b50610218610389366004611548565b610b31565b34801561039a57600080fd5b506101b36103a93660046116cd565b610b69565b3480156103ba57600080fd5b506102186103c9366004611678565b600a805460ff1916911515919091179055565b3480156103e857600080fd5b5061018e6103f73660046114d9565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561043157600080fd5b506102186104403660046114b7565b610c45565b60006001600160e01b031982166380ac58cd60e01b148061047657506001600160e01b03198216635b5e139f60e01b145b8061049157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546104a690611980565b80601f01602080910402602001604051908101604052809291908181526020018280546104d290611980565b801561051f5780601f106104f45761010080835404028352916020019161051f565b820191906000526020600020905b81548152906001019060200180831161050257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105a75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105ce826107c3565b9050806001600160a01b0316836001600160a01b0316141561063c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161059e565b336001600160a01b0382161480610658575061065881336103f7565b6106ca5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161059e565b6106d48383610cea565b505050565b6106e33382610d58565b6106ff5760405162461bcd60e51b815260040161059e906118c0565b6106d4838383610e4f565b6006546001600160a01b031633146107345760405162461bcd60e51b815260040161059e9061188b565b60006107486006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610792576040519150601f19603f3d011682016040523d82523d6000602084013e610797565b606091505b50509050806107a557600080fd5b50565b6106d483838360405180602001604052806000815250610b31565b6000818152600260205260408120546001600160a01b0316806104915760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161059e565b60006001600160a01b0382166108a55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161059e565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146108eb5760405162461bcd60e51b815260040161059e9061188b565b6108f56000610fef565b565b600c805461090490611980565b80601f016020809104026020016040519081016040528092919081815260200182805461093090611980565b801561097d5780601f106109525761010080835404028352916020019161097d565b820191906000526020600020905b81548152906001019060200180831161096057829003601f168201915b505050505081565b600b805461090490611980565b6060600180546104a690611980565b6009548111156109e55760405162461bcd60e51b815260206004820152600f60248201526e105b5bdd5b9d08195e18d959591959608a1b604482015260640161059e565b600854816109f260075490565b6109fc9190611911565b1115610a3c5760405162461bcd60e51b815260206004820152600f60248201526e14dd5c1c1b1e48195e18d959591959608a1b604482015260640161059e565b6101f4610a4860075490565b1115610a98576658d15e17628000341015610a985760405162461bcd60e51b815260206004820152601060248201526f56616c756520697320746f6f206c6f7760801b604482015260640161059e565b60005b81811015610b2257610ab533610ab060075490565b611041565b7f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688533610ae060075490565b604080516001600160a01b03909316835260208301919091520160405180910390a1610b10600780546001019055565b80610b1a816119bb565b915050610a9b565b5050565b610b22338383611183565b610b3b3383610d58565b610b575760405162461bcd60e51b815260040161059e906118c0565b610b6384848484611252565b50505050565b600a5460609060ff16151560011415610bae57600b610b8783611285565b604051602001610b9892919061172e565b6040516020818303038152906040529050919050565b600c8054610bbb90611980565b80601f0160208091040260200160405190810160405280929190818152602001828054610be790611980565b8015610c345780601f10610c0957610100808354040283529160200191610c34565b820191906000526020600020905b815481529060010190602001808311610c1757829003601f168201915b50505050509050919050565b919050565b6006546001600160a01b03163314610c6f5760405162461bcd60e51b815260040161059e9061188b565b6001600160a01b038116610cd45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161059e565b6107a581610fef565b80546001019055565b5490565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610d1f826107c3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610dd15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161059e565b6000610ddc836107c3565b9050806001600160a01b0316846001600160a01b03161480610e175750836001600160a01b0316610e0c84610529565b6001600160a01b0316145b80610e4757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610e62826107c3565b6001600160a01b031614610eca5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161059e565b6001600160a01b038216610f2c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161059e565b610f37600082610cea565b6001600160a01b0383166000908152600360205260408120805460019290610f6090849061193d565b90915550506001600160a01b0382166000908152600360205260408120805460019290610f8e908490611911565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166110975760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161059e565b6000818152600260205260409020546001600160a01b0316156110fc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161059e565b6001600160a01b0382166000908152600360205260408120805460019290611125908490611911565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b031614156111e55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161059e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61125d848484610e4f565b61126984848484611383565b610b635760405162461bcd60e51b815260040161059e90611839565b6060816112a95750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112d357806112bd816119bb565b91506112cc9050600a83611929565b91506112ad565b60008167ffffffffffffffff8111156112ee576112ee611a2c565b6040519080825280601f01601f191660200182016040528015611318576020820181803683370190505b5090505b8415610e475761132d60018361193d565b915061133a600a866119d6565b611345906030611911565b60f81b81838151811061135a5761135a611a16565b60200101906001600160f81b031916908160001a90535061137c600a86611929565b945061131c565b60006001600160a01b0384163b1561148557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113c79033908990889088906004016117e9565b602060405180830381600087803b1580156113e157600080fd5b505af1925050508015611411575060408051601f3d908101601f1916820190925261140e918101906116b0565b60015b61146b573d80801561143f576040519150601f19603f3d011682016040523d82523d6000602084013e611444565b606091505b5080516114635760405162461bcd60e51b815260040161059e90611839565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e47565b506001949350505050565b80356001600160a01b0381168114610c4057600080fd5b80358015158114610c4057600080fd5b6000602082840312156114c957600080fd5b6114d282611490565b9392505050565b600080604083850312156114ec57600080fd5b6114f583611490565b915061150360208401611490565b90509250929050565b60008060006060848603121561152157600080fd5b61152a84611490565b925061153860208501611490565b9150604084013590509250925092565b6000806000806080858703121561155e57600080fd5b61156785611490565b935061157560208601611490565b925060408501359150606085013567ffffffffffffffff8082111561159957600080fd5b818701915087601f8301126115ad57600080fd5b8135818111156115bf576115bf611a2c565b604051601f8201601f19908116603f011681019083821181831017156115e7576115e7611a2c565b816040528281528a602084870101111561160057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561163757600080fd5b61164083611490565b9150611503602084016114a7565b6000806040838503121561166157600080fd5b61166a83611490565b946020939093013593505050565b60006020828403121561168a57600080fd5b6114d2826114a7565b6000602082840312156116a557600080fd5b81356114d281611a42565b6000602082840312156116c257600080fd5b81516114d281611a42565b6000602082840312156116df57600080fd5b5035919050565b600081518084526116fe816020860160208601611954565b601f01601f19169290920160200192915050565b60008151611724818560208601611954565b9290920192915050565b600080845481600182811c91508083168061174a57607f831692505b602080841082141561176a57634e487b7160e01b86526022600452602486fd5b81801561177e576001811461178f576117bc565b60ff198616895284890196506117bc565b60008b81526020902060005b868110156117b45781548b82015290850190830161179b565b505084890196505b5050505050506117e06117cf8286611712565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061181c908301846116e6565b9695505050505050565b6020815260006114d260208301846116e6565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611924576119246119ea565b500190565b60008261193857611938611a00565b500490565b60008282101561194f5761194f6119ea565b500390565b60005b8381101561196f578181015183820152602001611957565b83811115610b635750506000910152565b600181811c9082168061199457607f821691505b602082108114156119b557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156119cf576119cf6119ea565b5060010190565b6000826119e5576119e5611a00565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146107a557600080fdfea26469706673582212202d1f8539c14f22439623f13e9381ecbff228f07d25815bcf2039b2c75b4aef0964736f6c63430008070033

Deployed Bytecode Sourcemap

37762:1739:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37928:40;;;;;;;;;;;;;;;;;;;14308:25:1;;;14296:2;14281:18;37928:40:0;;;;;;;;25246:305;;;;;;;;;;-1:-1:-1;25246:305:0;;;;;:::i;:::-;;:::i;:::-;;;6912:14:1;;6905:22;6887:41;;6875:2;6860:18;25246:305:0;6747:187:1;26191:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27750:221::-;;;;;;;;;;-1:-1:-1;27750:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5931:32:1;;;5913:51;;5901:2;5886:18;27750:221:0;5767:203:1;27273:411:0;;;;;;;;;;-1:-1:-1;27273:411:0;;;;;:::i;:::-;;:::i;:::-;;28500:339;;;;;;;;;;-1:-1:-1;28500:339:0;;;;;:::i;:::-;;:::i;39351:147::-;;;;;;;;;;;;;:::i;28910:185::-;;;;;;;;;;-1:-1:-1;28910:185:0;;;;;:::i;:::-;;:::i;37975:28::-;;;;;;;;;;-1:-1:-1;37975:28:0;;;;;;;;25885:239;;;;;;;;;;-1:-1:-1;25885:239:0;;;;;:::i;:::-;;:::i;25615:208::-;;;;;;;;;;-1:-1:-1;25615:208:0;;;;;:::i;:::-;;:::i;6234:103::-;;;;;;;;;;;;;:::i;38106:86::-;;;;;;;;;;;;;:::i;38010:89::-;;;;;;;;;;;;;:::i;5583:87::-;;;;;;;;;;-1:-1:-1;5656:6:0;;-1:-1:-1;;;;;5656:6:0;5583:87;;26360:104;;;;;;;;;;;;;:::i;38421:533::-;;;;;;:::i;:::-;;:::i;28043:155::-;;;;;;;;;;-1:-1:-1;28043:155:0;;;;;:::i;:::-;;:::i;29166:328::-;;;;;;;;;;-1:-1:-1;29166:328:0;;;;;:::i;:::-;;:::i;38966:292::-;;;;;;;;;;-1:-1:-1;38966:292:0;;;;;:::i;:::-;;:::i;39266:77::-;;;;;;;;;;-1:-1:-1;39266:77:0;;;;;:::i;:::-;39318:8;:17;;-1:-1:-1;;39318:17:0;;;;;;;;;;39266:77;28269:164;;;;;;;;;;-1:-1:-1;28269:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28390:25:0;;;28366:4;28390:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28269:164;6492:201;;;;;;;;;;-1:-1:-1;6492:201:0;;;;;:::i;:::-;;:::i;25246:305::-;25348:4;-1:-1:-1;;;;;;25385:40:0;;-1:-1:-1;;;25385:40:0;;:105;;-1:-1:-1;;;;;;;25442:48:0;;-1:-1:-1;;;25442:48:0;25385:105;:158;;;-1:-1:-1;;;;;;;;;;18124:40:0;;;25507:36;25365:178;25246:305;-1:-1:-1;;25246:305:0:o;26191:100::-;26245:13;26278:5;26271:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26191:100;:::o;27750:221::-;27826:7;31093:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31093:16:0;27846:73;;;;-1:-1:-1;;;27846:73:0;;11671:2:1;27846:73:0;;;11653:21:1;11710:2;11690:18;;;11683:30;11749:34;11729:18;;;11722:62;-1:-1:-1;;;11800:18:1;;;11793:42;11852:19;;27846:73:0;;;;;;;;;-1:-1:-1;27939:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27939:24:0;;27750:221::o;27273:411::-;27354:13;27370:23;27385:7;27370:14;:23::i;:::-;27354:39;;27418:5;-1:-1:-1;;;;;27412:11:0;:2;-1:-1:-1;;;;;27412:11:0;;;27404:57;;;;-1:-1:-1;;;27404:57:0;;13544:2:1;27404:57:0;;;13526:21:1;13583:2;13563:18;;;13556:30;13622:34;13602:18;;;13595:62;-1:-1:-1;;;13673:18:1;;;13666:31;13714:19;;27404:57:0;13342:397:1;27404:57:0;4387:10;-1:-1:-1;;;;;27496:21:0;;;;:62;;-1:-1:-1;27521:37:0;27538:5;4387:10;28269:164;:::i;27521:37::-;27474:168;;;;-1:-1:-1;;;27474:168:0;;10064:2:1;27474:168:0;;;10046:21:1;10103:2;10083:18;;;10076:30;10142:34;10122:18;;;10115:62;10213:26;10193:18;;;10186:54;10257:19;;27474:168:0;9862:420:1;27474:168:0;27655:21;27664:2;27668:7;27655:8;:21::i;:::-;27343:341;27273:411;;:::o;28500:339::-;28695:41;4387:10;28728:7;28695:18;:41::i;:::-;28687:103;;;;-1:-1:-1;;;28687:103:0;;;;;;;:::i;:::-;28803:28;28813:4;28819:2;28823:7;28803:9;:28::i;39351:147::-;5656:6;;-1:-1:-1;;;;;5656:6:0;4387:10;5803:23;5795:68;;;;-1:-1:-1;;;5795:68:0;;;;;;;:::i;:::-;39400:7:::1;39421;5656:6:::0;;-1:-1:-1;;;;;5656:6:0;;5583:87;39421:7:::1;-1:-1:-1::0;;;;;39413:21:0::1;39442;39413:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39399:69;;;39487:2;39479:11;;;::::0;::::1;;39388:110;39351:147::o:0;28910:185::-;29048:39;29065:4;29071:2;29075:7;29048:39;;;;;;;;;;;;:16;:39::i;25885:239::-;25957:7;25993:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25993:16:0;26028:19;26020:73;;;;-1:-1:-1;;;26020:73:0;;10900:2:1;26020:73:0;;;10882:21:1;10939:2;10919:18;;;10912:30;10978:34;10958:18;;;10951:62;-1:-1:-1;;;11029:18:1;;;11022:39;11078:19;;26020:73:0;10698:405:1;25615:208:0;25687:7;-1:-1:-1;;;;;25715:19:0;;25707:74;;;;-1:-1:-1;;;25707:74:0;;10489:2:1;25707:74:0;;;10471:21:1;10528:2;10508:18;;;10501:30;10567:34;10547:18;;;10540:62;-1:-1:-1;;;10618:18:1;;;10611:40;10668:19;;25707:74:0;10287:406:1;25707:74:0;-1:-1:-1;;;;;;25799:16:0;;;;;:9;:16;;;;;;;25615:208::o;6234:103::-;5656:6;;-1:-1:-1;;;;;5656:6:0;4387:10;5803:23;5795:68;;;;-1:-1:-1;;;5795:68:0;;;;;;;:::i;:::-;6299:30:::1;6326:1;6299:18;:30::i;:::-;6234:103::o:0;38106:86::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38010:89::-;;;;;;;:::i;26360:104::-;26416:13;26449:7;26442:14;;;;;:::i;38421:533::-;38494:21;;38483:7;:32;;38475:60;;;;-1:-1:-1;;;38475:60:0;;13200:2:1;38475:60:0;;;13182:21:1;13239:2;13219:18;;;13212:30;-1:-1:-1;;;13258:18:1;;;13251:45;13313:18;;38475:60:0;12998:339:1;38475:60:0;38587:11;;38576:7;38554:19;:9;1003:14;;911:114;38554:19;:29;;;;:::i;:::-;:44;;38546:72;;;;-1:-1:-1;;;38546:72:0;;9720:2:1;38546:72:0;;;9702:21:1;9759:2;9739:18;;;9732:30;-1:-1:-1;;;9778:18:1;;;9771:45;9833:18;;38546:72:0;9518:339:1;38546:72:0;38654:3;38632:19;:9;1003:14;;911:114;38632:19;:25;38629:116;;;38695:17;38682:9;:30;;38674:59;;;;-1:-1:-1;;;38674:59:0;;12855:2:1;38674:59:0;;;12837:21:1;12894:2;12874:18;;;12867:30;-1:-1:-1;;;12913:18:1;;;12906:46;12969:18;;38674:59:0;12653:340:1;38674:59:0;38759:6;38755:192;38775:7;38771:1;:11;38755:192;;;38804:38;38810:10;38822:19;:9;1003:14;;911:114;38822:19;38804:5;:38::i;:::-;38862:37;38867:10;38879:19;:9;1003:14;;911:114;38879:19;38862:37;;;-1:-1:-1;;;;;6660:32:1;;;6642:51;;6724:2;6709:18;;6702:34;;;;6615:18;38862:37:0;;;;;;;38914:21;:9;1122:19;;1140:1;1122:19;;;1033:127;38914:21;38784:3;;;;:::i;:::-;;;;38755:192;;;;38421:533;:::o;28043:155::-;28138:52;4387:10;28171:8;28181;28138:18;:52::i;29166:328::-;29341:41;4387:10;29374:7;29341:18;:41::i;:::-;29333:103;;;;-1:-1:-1;;;29333:103:0;;;;;;;:::i;:::-;29447:39;29461:4;29467:2;29471:7;29480:5;29447:13;:39::i;:::-;29166:328;;;;:::o;38966:292::-;39066:8;;39037:13;;39066:8;;:16;;:8;:16;39063:188;;;39130:16;39148:26;39165:8;39148:16;:26::i;:::-;39113:71;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39099:86;;38966:292;;;:::o;39063:188::-;39225:14;39218:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38966:292;;;:::o;39063:188::-;38966:292;;;:::o;6492:201::-;5656:6;;-1:-1:-1;;;;;5656:6:0;4387:10;5803:23;5795:68;;;;-1:-1:-1;;;5795:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6581:22:0;::::1;6573:73;;;::::0;-1:-1:-1;;;6573:73:0;;7784:2:1;6573:73:0::1;::::0;::::1;7766:21:1::0;7823:2;7803:18;;;7796:30;7862:34;7842:18;;;7835:62;-1:-1:-1;;;7913:18:1;;;7906:36;7959:19;;6573:73:0::1;7582:402:1::0;6573:73:0::1;6657:28;6676:8;6657:18;:28::i;1033:127::-:0;1122:19;;1140:1;1122:19;;;1033:127::o;911:114::-;1003:14;;911:114::o;34986:174::-;35061:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35061:29:0;-1:-1:-1;;;;;35061:29:0;;;;;;;;:24;;35115:23;35061:24;35115:14;:23::i;:::-;-1:-1:-1;;;;;35106:46:0;;;;;;;;;;;34986:174;;:::o;31298:348::-;31391:4;31093:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31093:16:0;31408:73;;;;-1:-1:-1;;;31408:73:0;;9307:2:1;31408:73:0;;;9289:21:1;9346:2;9326:18;;;9319:30;9385:34;9365:18;;;9358:62;-1:-1:-1;;;9436:18:1;;;9429:42;9488:19;;31408:73:0;9105:408:1;31408:73:0;31492:13;31508:23;31523:7;31508:14;:23::i;:::-;31492:39;;31561:5;-1:-1:-1;;;;;31550:16:0;:7;-1:-1:-1;;;;;31550:16:0;;:51;;;;31594:7;-1:-1:-1;;;;;31570:31:0;:20;31582:7;31570:11;:20::i;:::-;-1:-1:-1;;;;;31570:31:0;;31550:51;:87;;;-1:-1:-1;;;;;;28390:25:0;;;28366:4;28390:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31605:32;31542:96;31298:348;-1:-1:-1;;;;31298:348:0:o;34290:578::-;34449:4;-1:-1:-1;;;;;34422:31:0;:23;34437:7;34422:14;:23::i;:::-;-1:-1:-1;;;;;34422:31:0;;34414:85;;;;-1:-1:-1;;;34414:85:0;;12445:2:1;34414:85:0;;;12427:21:1;12484:2;12464:18;;;12457:30;12523:34;12503:18;;;12496:62;-1:-1:-1;;;12574:18:1;;;12567:39;12623:19;;34414:85:0;12243:405:1;34414:85:0;-1:-1:-1;;;;;34518:16:0;;34510:65;;;;-1:-1:-1;;;34510:65:0;;8548:2:1;34510:65:0;;;8530:21:1;8587:2;8567:18;;;8560:30;8626:34;8606:18;;;8599:62;-1:-1:-1;;;8677:18:1;;;8670:34;8721:19;;34510:65:0;8346:400:1;34510:65:0;34692:29;34709:1;34713:7;34692:8;:29::i;:::-;-1:-1:-1;;;;;34734:15:0;;;;;;:9;:15;;;;;:20;;34753:1;;34734:15;:20;;34753:1;;34734:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34765:13:0;;;;;;:9;:13;;;;;:18;;34782:1;;34765:13;:18;;34782:1;;34765:18;:::i;:::-;;;;-1:-1:-1;;34794:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34794:21:0;-1:-1:-1;;;;;34794:21:0;;;;;;;;;34833:27;;34794:16;;34833:27;;;;;;;34290:578;;;:::o;6853:191::-;6946:6;;;-1:-1:-1;;;;;6963:17:0;;;-1:-1:-1;;;;;;6963:17:0;;;;;;;6996:40;;6946:6;;;6963:17;6946:6;;6996:40;;6927:16;;6996:40;6916:128;6853:191;:::o;32982:382::-;-1:-1:-1;;;;;33062:16:0;;33054:61;;;;-1:-1:-1;;;33054:61:0;;11310:2:1;33054:61:0;;;11292:21:1;;;11329:18;;;11322:30;11388:34;11368:18;;;11361:62;11440:18;;33054:61:0;11108:356:1;33054:61:0;31069:4;31093:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31093:16:0;:30;33126:58;;;;-1:-1:-1;;;33126:58:0;;8191:2:1;33126:58:0;;;8173:21:1;8230:2;8210:18;;;8203:30;8269;8249:18;;;8242:58;8317:18;;33126:58:0;7989:352:1;33126:58:0;-1:-1:-1;;;;;33255:13:0;;;;;;:9;:13;;;;;:18;;33272:1;;33255:13;:18;;33272:1;;33255:18;:::i;:::-;;;;-1:-1:-1;;33284:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33284:21:0;-1:-1:-1;;;;;33284:21:0;;;;;;;;33323:33;;33284:16;;;33323:33;;33284:16;;33323:33;32982:382;;:::o;35302:315::-;35457:8;-1:-1:-1;;;;;35448:17:0;:5;-1:-1:-1;;;;;35448:17:0;;;35440:55;;;;-1:-1:-1;;;35440:55:0;;8953:2:1;35440:55:0;;;8935:21:1;8992:2;8972:18;;;8965:30;9031:27;9011:18;;;9004:55;9076:18;;35440:55:0;8751:349:1;35440:55:0;-1:-1:-1;;;;;35506:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35506:46:0;;;;;;;;;;35568:41;;6887::1;;;35568::0;;6860:18:1;35568:41:0;;;;;;;35302:315;;;:::o;30376:::-;30533:28;30543:4;30549:2;30553:7;30533:9;:28::i;:::-;30580:48;30603:4;30609:2;30613:7;30622:5;30580:22;:48::i;:::-;30572:111;;;;-1:-1:-1;;;30572:111:0;;;;;;;:::i;1869:723::-;1925:13;2146:10;2142:53;;-1:-1:-1;;2173:10:0;;;;;;;;;;;;-1:-1:-1;;;2173:10:0;;;;;1869:723::o;2142:53::-;2220:5;2205:12;2261:78;2268:9;;2261:78;;2294:8;;;;:::i;:::-;;-1:-1:-1;2317:10:0;;-1:-1:-1;2325:2:0;2317:10;;:::i;:::-;;;2261:78;;;2349:19;2381:6;2371:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2371:17:0;;2349:39;;2399:154;2406:10;;2399:154;;2433:11;2443:1;2433:11;;:::i;:::-;;-1:-1:-1;2502:10:0;2510:2;2502:5;:10;:::i;:::-;2489:24;;:2;:24;:::i;:::-;2476:39;;2459:6;2466;2459:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2459:56:0;;;;;;;;-1:-1:-1;2530:11:0;2539:2;2530:11;;:::i;:::-;;;2399:154;;36182:799;36337:4;-1:-1:-1;;;;;36358:13:0;;8194:20;8242:8;36354:620;;36394:72;;-1:-1:-1;;;36394:72:0;;-1:-1:-1;;;;;36394:36:0;;;;;:72;;4387:10;;36445:4;;36451:7;;36460:5;;36394:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36394:72:0;;;;;;;;-1:-1:-1;;36394:72:0;;;;;;;;;;;;:::i;:::-;;;36390:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36636:13:0;;36632:272;;36679:60;;-1:-1:-1;;;36679:60:0;;;;;;;:::i;36632:272::-;36854:6;36848:13;36839:6;36835:2;36831:15;36824:38;36390:529;-1:-1:-1;;;;;;36517:51:0;-1:-1:-1;;;36517:51:0;;-1:-1:-1;36510:58:0;;36354:620;-1:-1:-1;36958:4:0;36182:799;;;;;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;192:160;257:20;;313:13;;306:21;296:32;;286:60;;342:1;339;332:12;357:186;416:6;469:2;457:9;448:7;444:23;440:32;437:52;;;485:1;482;475:12;437:52;508:29;527:9;508:29;:::i;:::-;498:39;357:186;-1:-1:-1;;;357:186:1:o;548:260::-;616:6;624;677:2;665:9;656:7;652:23;648:32;645:52;;;693:1;690;683:12;645:52;716:29;735:9;716:29;:::i;:::-;706:39;;764:38;798:2;787:9;783:18;764:38;:::i;:::-;754:48;;548:260;;;;;:::o;813:328::-;890:6;898;906;959:2;947:9;938:7;934:23;930:32;927:52;;;975:1;972;965:12;927:52;998:29;1017:9;998:29;:::i;:::-;988:39;;1046:38;1080:2;1069:9;1065:18;1046:38;:::i;:::-;1036:48;;1131:2;1120:9;1116:18;1103:32;1093:42;;813:328;;;;;:::o;1146:1138::-;1241:6;1249;1257;1265;1318:3;1306:9;1297:7;1293:23;1289:33;1286:53;;;1335:1;1332;1325:12;1286:53;1358:29;1377:9;1358:29;:::i;:::-;1348:39;;1406:38;1440:2;1429:9;1425:18;1406:38;:::i;:::-;1396:48;;1491:2;1480:9;1476:18;1463:32;1453:42;;1546:2;1535:9;1531:18;1518:32;1569:18;1610:2;1602:6;1599:14;1596:34;;;1626:1;1623;1616:12;1596:34;1664:6;1653:9;1649:22;1639:32;;1709:7;1702:4;1698:2;1694:13;1690:27;1680:55;;1731:1;1728;1721:12;1680:55;1767:2;1754:16;1789:2;1785;1782:10;1779:36;;;1795:18;;:::i;:::-;1870:2;1864:9;1838:2;1924:13;;-1:-1:-1;;1920:22:1;;;1944:2;1916:31;1912:40;1900:53;;;1968:18;;;1988:22;;;1965:46;1962:72;;;2014:18;;:::i;:::-;2054:10;2050:2;2043:22;2089:2;2081:6;2074:18;2129:7;2124:2;2119;2115;2111:11;2107:20;2104:33;2101:53;;;2150:1;2147;2140:12;2101:53;2206:2;2201;2197;2193:11;2188:2;2180:6;2176:15;2163:46;2251:1;2246:2;2241;2233:6;2229:15;2225:24;2218:35;2272:6;2262:16;;;;;;;1146:1138;;;;;;;:::o;2289:254::-;2354:6;2362;2415:2;2403:9;2394:7;2390:23;2386:32;2383:52;;;2431:1;2428;2421:12;2383:52;2454:29;2473:9;2454:29;:::i;:::-;2444:39;;2502:35;2533:2;2522:9;2518:18;2502:35;:::i;2548:254::-;2616:6;2624;2677:2;2665:9;2656:7;2652:23;2648:32;2645:52;;;2693:1;2690;2683:12;2645:52;2716:29;2735:9;2716:29;:::i;:::-;2706:39;2792:2;2777:18;;;;2764:32;;-1:-1:-1;;;2548:254:1:o;2807:180::-;2863:6;2916:2;2904:9;2895:7;2891:23;2887:32;2884:52;;;2932:1;2929;2922:12;2884:52;2955:26;2971:9;2955:26;:::i;2992:245::-;3050:6;3103:2;3091:9;3082:7;3078:23;3074:32;3071:52;;;3119:1;3116;3109:12;3071:52;3158:9;3145:23;3177:30;3201:5;3177:30;:::i;3242:249::-;3311:6;3364:2;3352:9;3343:7;3339:23;3335:32;3332:52;;;3380:1;3377;3370:12;3332:52;3412:9;3406:16;3431:30;3455:5;3431:30;:::i;3496:180::-;3555:6;3608:2;3596:9;3587:7;3583:23;3579:32;3576:52;;;3624:1;3621;3614:12;3576:52;-1:-1:-1;3647:23:1;;3496:180;-1:-1:-1;3496:180:1:o;3681:257::-;3722:3;3760:5;3754:12;3787:6;3782:3;3775:19;3803:63;3859:6;3852:4;3847:3;3843:14;3836:4;3829:5;3825:16;3803:63;:::i;:::-;3920:2;3899:15;-1:-1:-1;;3895:29:1;3886:39;;;;3927:4;3882:50;;3681:257;-1:-1:-1;;3681:257:1:o;3943:185::-;3985:3;4023:5;4017:12;4038:52;4083:6;4078:3;4071:4;4064:5;4060:16;4038:52;:::i;:::-;4106:16;;;;;3943:185;-1:-1:-1;;3943:185:1:o;4251:1301::-;4528:3;4557:1;4590:6;4584:13;4620:3;4642:1;4670:9;4666:2;4662:18;4652:28;;4730:2;4719:9;4715:18;4752;4742:61;;4796:4;4788:6;4784:17;4774:27;;4742:61;4822:2;4870;4862:6;4859:14;4839:18;4836:38;4833:165;;;-1:-1:-1;;;4897:33:1;;4953:4;4950:1;4943:15;4983:4;4904:3;4971:17;4833:165;5014:18;5041:104;;;;5159:1;5154:320;;;;5007:467;;5041:104;-1:-1:-1;;5074:24:1;;5062:37;;5119:16;;;;-1:-1:-1;5041:104:1;;5154:320;14417:1;14410:14;;;14454:4;14441:18;;5249:1;5263:165;5277:6;5274:1;5271:13;5263:165;;;5355:14;;5342:11;;;5335:35;5398:16;;;;5292:10;;5263:165;;;5267:3;;5457:6;5452:3;5448:16;5441:23;;5007:467;;;;;;;5490:56;5515:30;5541:3;5533:6;5515:30;:::i;:::-;-1:-1:-1;;;4193:20:1;;4238:1;4229:11;;4133:113;5490:56;5483:63;4251:1301;-1:-1:-1;;;;;4251:1301:1:o;5975:488::-;-1:-1:-1;;;;;6244:15:1;;;6226:34;;6296:15;;6291:2;6276:18;;6269:43;6343:2;6328:18;;6321:34;;;6391:3;6386:2;6371:18;;6364:31;;;6169:4;;6412:45;;6437:19;;6429:6;6412:45;:::i;:::-;6404:53;5975:488;-1:-1:-1;;;;;;5975:488:1:o;6939:219::-;7088:2;7077:9;7070:21;7051:4;7108:44;7148:2;7137:9;7133:18;7125:6;7108:44;:::i;7163:414::-;7365:2;7347:21;;;7404:2;7384:18;;;7377:30;7443:34;7438:2;7423:18;;7416:62;-1:-1:-1;;;7509:2:1;7494:18;;7487:48;7567:3;7552:19;;7163:414::o;11882:356::-;12084:2;12066:21;;;12103:18;;;12096:30;12162:34;12157:2;12142:18;;12135:62;12229:2;12214:18;;11882:356::o;13744:413::-;13946:2;13928:21;;;13985:2;13965:18;;;13958:30;14024:34;14019:2;14004:18;;13997:62;-1:-1:-1;;;14090:2:1;14075:18;;14068:47;14147:3;14132:19;;13744:413::o;14470:128::-;14510:3;14541:1;14537:6;14534:1;14531:13;14528:39;;;14547:18;;:::i;:::-;-1:-1:-1;14583:9:1;;14470:128::o;14603:120::-;14643:1;14669;14659:35;;14674:18;;:::i;:::-;-1:-1:-1;14708:9:1;;14603:120::o;14728:125::-;14768:4;14796:1;14793;14790:8;14787:34;;;14801:18;;:::i;:::-;-1:-1:-1;14838:9:1;;14728:125::o;14858:258::-;14930:1;14940:113;14954:6;14951:1;14948:13;14940:113;;;15030:11;;;15024:18;15011:11;;;15004:39;14976:2;14969:10;14940:113;;;15071:6;15068:1;15065:13;15062:48;;;-1:-1:-1;;15106:1:1;15088:16;;15081:27;14858:258::o;15121:380::-;15200:1;15196:12;;;;15243;;;15264:61;;15318:4;15310:6;15306:17;15296:27;;15264:61;15371:2;15363:6;15360:14;15340:18;15337:38;15334:161;;;15417:10;15412:3;15408:20;15405:1;15398:31;15452:4;15449:1;15442:15;15480:4;15477:1;15470:15;15334:161;;15121:380;;;:::o;15506:135::-;15545:3;-1:-1:-1;;15566:17:1;;15563:43;;;15586:18;;:::i;:::-;-1:-1:-1;15633:1:1;15622:13;;15506:135::o;15646:112::-;15678:1;15704;15694:35;;15709:18;;:::i;:::-;-1:-1:-1;15743:9:1;;15646:112::o;15763:127::-;15824:10;15819:3;15815:20;15812:1;15805:31;15855:4;15852:1;15845:15;15879:4;15876:1;15869:15;15895:127;15956:10;15951:3;15947:20;15944:1;15937:31;15987:4;15984:1;15977:15;16011:4;16008:1;16001:15;16027:127;16088:10;16083:3;16079:20;16076:1;16069:31;16119:4;16116:1;16109:15;16143:4;16140:1;16133:15;16159:127;16220:10;16215:3;16211:20;16208:1;16201:31;16251:4;16248:1;16241:15;16275:4;16272:1;16265:15;16291:131;-1:-1:-1;;;;;;16365:32:1;;16355:43;;16345:71;;16412:1;16409;16402:12

Swarm Source

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