ETH Price: $3,414.52 (-1.40%)
Gas: 6 Gwei

Token

simplesNFT (SIMPLES)
 

Overview

Max Total Supply

5,000 SIMPLES

Holders

142

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
moh-abed.eth
Balance
1 SIMPLES
0x73197eD80b1784B2facE98d1600c37190fDbc3D9
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:
SimplesNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-20
*/

// 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: https://github.com/1001-digital/erc721-extensions/blob/main/contracts/WithLimitedSupply.sol


pragma solidity ^0.8.0;


/// @author 1001.digital
/// @title A token tracker that limits the token supply and increments token IDs on each new mint.
abstract contract WithLimitedSupply {
    using Counters for Counters.Counter;

    /// @dev Emitted when the supply of this collection changes
    event SupplyChanged(uint256 indexed supply);

    // Keeps track of how many we have minted
    Counters.Counter private _tokenCount;

    /// @dev The maximum count of tokens this token tracker will hold.
    uint256 private _totalSupply;

    /// Instanciate the contract
    /// @param totalSupply_ how many tokens this collection should hold
    constructor (uint256 totalSupply_) {
        _totalSupply = totalSupply_;
    }

    /// @dev Get the max Supply
    /// @return the maximum token count
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /// @dev Get the current token count
    /// @return the created token count
    function tokenCount() public view returns (uint256) {
        return _tokenCount.current();
    }

    /// @dev Check whether tokens are still available
    /// @return the available token count
    function availableTokenCount() public view returns (uint256) {
        return totalSupply() - tokenCount();
    }

    /// @dev Increment the token count and fetch the latest count
    /// @return the next token id
    function nextToken() internal virtual returns (uint256) {
        uint256 token = _tokenCount.current();

        _tokenCount.increment();

        return token;
    }

    /// @dev Check whether another token is still available
    modifier ensureAvailability() {
        require(availableTokenCount() > 0, "No more tokens available");
        _;
    }

    /// @param amount Check whether number of tokens are still available
    /// @dev Check whether tokens are still available
    modifier ensureAvailabilityFor(uint256 amount) {
        require(availableTokenCount() >= amount, "Requested number of tokens not available");
        _;
    }

    /// Update the supply for the collection
    /// @param _supply the new token supply.
    /// @dev create additional token supply for this collection.
    function _setSupply(uint256 _supply) internal virtual {
        require(_supply > tokenCount(), "Can't set the supply to less than the current token count");
        _totalSupply = _supply;

        emit SupplyChanged(totalSupply());
    }
}

// File: https://github.com/1001-digital/erc721-extensions/blob/main/contracts/RandomlyAssigned.sol


pragma solidity ^0.8.0;


/// @author 1001.digital
/// @title Randomly assign tokenIDs from a given set of tokens.
abstract contract RandomlyAssigned is WithLimitedSupply {
    // Used for random index assignment
    mapping(uint256 => uint256) private tokenMatrix;

    // The initial token ID
    uint256 private startFrom;

    /// Instanciate the contract
    /// @param _totalSupply how many tokens this collection should hold
    /// @param _startFrom the tokenID with which to start counting
    constructor (uint256 _totalSupply, uint256 _startFrom)
        WithLimitedSupply(_totalSupply)
    {
        startFrom = _startFrom;
    }

    /// Get the next token ID
    /// @dev Randomly gets a new token ID and keeps track of the ones that are still available.
    /// @return the next token ID
    function nextToken() internal override ensureAvailability returns (uint256) {
        uint256 maxIndex = totalSupply() - tokenCount();
        uint256 random = uint256(keccak256(
            abi.encodePacked(
                msg.sender,
                block.coinbase,
                block.difficulty,
                block.gaslimit,
                block.timestamp
            )
        )) % maxIndex;

        uint256 value = 0;
        if (tokenMatrix[random] == 0) {
            // If this matrix position is empty, set the value to the generated random number.
            value = random;
        } else {
            // Otherwise, use the previously stored number from the matrix.
            value = tokenMatrix[random];
        }

        // If the last available tokenID is still unused...
        if (tokenMatrix[maxIndex - 1] == 0) {
            // ...store that ID in the current matrix position.
            tokenMatrix[random] = maxIndex - 1;
        } else {
            // ...otherwise copy over the stored number to the current matrix position.
            tokenMatrix[random] = tokenMatrix[maxIndex - 1];
        }

        // Increment counts
        super.nextToken();

        return value + startFrom;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/ERC721.sol


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

        _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/simplesNFT.sol

pragma solidity ^0.8.0;

//SPDX-License-Identifier: MIT



 
contract SimplesNFT is ERC721, Ownable, RandomlyAssigned {
  using Strings for uint256;  
  using Counters for Counters.Counter;
    Counters.Counter private supply;
 
  uint256 public currentSupply        = 0;
  uint256 public maxSupply            = 5000;
  uint256 public mintPrice            = 0.025 ether;
  uint256 public maxMintAmountPerTx   = 50;
  bool    public paused               = true;
  string  public baseURI              = "ipfs://QmSkjdrewA2Dm1Kak38SAbKjxDmsLqvpsF8tzvBUBn7Qs3/";
 
  constructor(
    string memory _name,
    string memory _symbol
  )
    ERC721(_name, _symbol)
    RandomlyAssigned(maxSupply,1)
    {
        mint(1);
    }
 
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }
 
  function mint(uint256 _mintAmount) public payable {
     
    if (msg.sender != owner()) {  
      require(!paused, "Mint is not available at this moment.");
      require(msg.value >= mintPrice * _mintAmount);
    }

    require(availableTokenCount() - _mintAmount >= 0, "You can't mint more than the available.");
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount.");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded.");
   
    for (uint256 i = 1; i <= _mintAmount; i++) {
      uint256 id = nextToken();
      _safeMint(msg.sender, id);
      currentSupply++;
    }
  }

  function gift(address _to) public onlyOwner {
     
    require(availableTokenCount() - 1 >= 0, "You can't mint more than the available.");
    require(supply.current() + 1 <= maxSupply, "Max supply exceeded.");

      uint256 id = nextToken();
      _safeMint(_to, id);
      currentSupply++;
  }
 
  function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
    require(_exists(tokenId),"ERC721Metadata: URI query for nonexistant token");
 
    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ".json"))
        : "";
  }
 
  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }
 
  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
 
  function withdraw() public payable onlyOwner {
    uint256 amountFounder = address(this).balance * 33 / 100;
    uint256 amountArtist = address(this).balance * 33 / 100;
    uint256 amountCommunity = address(this).balance * 8 / 100;
 
    (bool founder, ) = payable(0x37cC41fF7f1569365216D9E01231dE1B656bBBFD).call{value: amountFounder}("");
    require(founder);
    (bool artist, ) = payable(0xeb4d27c91aAa3FA434df1De1874472176cc533E2).call{value: amountArtist}("");
    require(artist);
    (bool community, ) = payable(0x5dFa180d3788feA415C1Db8c5FAc6B4987940F3f).call{value: amountCommunity}("");
    require(community);
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }
 
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"supply","type":"uint256"}],"name":"SupplyChanged","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":[],"name":"availableTokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentSupply","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":"_to","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6000600c55611388600d556658d15e17628000600e556032600f556010805460ff1916600117905560e0604052603660808181529062002e7160a0398051620000519160119160209091019062000913565b503480156200005f57600080fd5b5060405162002ea738038062002ea7833981016040819052620000829162000a7d565b600d5460018184848160009080519060200190620000a292919062000913565b508051620000b890600190602084019062000913565b505050620000d5620000cf620000f060201b60201c565b620000f4565b600855600a5550620000e8600162000146565b505062000c71565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001dd5760105460ff1615620001c05760405162461bcd60e51b815260206004820152602560248201527f4d696e74206973206e6f7420617661696c61626c652061742074686973206d6f60448201526436b2b73a1760d91b60648201526084015b60405180910390fd5b80600e54620001d0919062000b58565b341015620001dd57600080fd5b600081620001ea62000385565b620001f6919062000b7a565b1015620002565760405162461bcd60e51b815260206004820152602760248201527f596f752063616e2774206d696e74206d6f7265207468616e207468652061766160448201526634b630b136329760c91b6064820152608401620001b7565b600081118015620002695750600f548111155b620002b75760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e742e0000000000000000000000006044820152606401620001b7565b600d5481620002d2600b620003a560201b620011401760201c565b620002de919062000b3d565b11156200032e5760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c792065786365656465642e0000000000000000000000006044820152606401620001b7565b60015b8181116200038157600062000345620003a9565b90506200035333826200055f565b600c8054906000620003658362000c04565b9190505550508080620003789062000c04565b91505062000331565b5050565b60006200039162000581565b600854620003a0919062000b7a565b905090565b5490565b600080620003b662000385565b11620004055760405162461bcd60e51b815260206004820152601860248201527f4e6f206d6f726520746f6b656e7320617661696c61626c6500000000000000006044820152606401620001b7565b60006200041162000581565b60085462000420919062000b7a565b6040516001600160601b031933606090811b8216602084015241901b166034820152446048820152456068820152426088820152909150600090829060a8016040516020818303038152906040528051906020012060001c62000484919062000c22565b60008181526009602052604081205491925090620004a4575080620004b5565b506000818152600960205260409020545b60096000620004c660018662000b7a565b815260200190815260200160002054600014156200050057620004eb60018462000b7a565b60008381526009602052604090205562000532565b600960006200051160018662000b7a565b81526020808201929092526040908101600090812054858252600990935220555b620005476200059a60201b620011441760201c565b50600a5462000557908262000b3d565b935050505090565b62000381828260405180602001604052806000815250620005d260201b60201c565b6000620003a06007620003a560201b620011401760201c565b600080620005b46007620003a560201b620011401760201c565b9050620005cd60076200064a60201b620011651760201c565b919050565b620005de838362000653565b620005ed60008484846200079b565b620006455760405162461bcd60e51b8152602060048201526032602482015260008051602062002e5183398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001b7565b505050565b80546001019055565b6001600160a01b038216620006ab5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401620001b7565b6000818152600260205260409020546001600160a01b031615620007125760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620001b7565b6001600160a01b03821660009081526003602052604081208054600192906200073d90849062000b3d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000620007bc846001600160a01b03166200090460201b6200116e1760201c565b15620008f857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290620007f690339089908890889060040162000ae7565b602060405180830381600087803b1580156200081157600080fd5b505af192505050801562000844575060408051601f3d908101601f19168201909252620008419181019062000a4a565b60015b620008dd573d80801562000875576040519150601f19603f3d011682016040523d82523d6000602084013e6200087a565b606091505b508051620008d55760405162461bcd60e51b8152602060048201526032602482015260008051602062002e5183398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001b7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620008fc565b5060015b949350505050565b6001600160a01b03163b151590565b828054620009219062000bc7565b90600052602060002090601f01602090048101928262000945576000855562000990565b82601f106200096057805160ff191683800117855562000990565b8280016001018555821562000990579182015b828111156200099057825182559160200191906001019062000973565b506200099e929150620009a2565b5090565b5b808211156200099e5760008155600101620009a3565b600082601f830112620009cb57600080fd5b81516001600160401b0380821115620009e857620009e862000c5b565b604051601f8301601f19908116603f0116810190828211818310171562000a135762000a1362000c5b565b8160405283815286602085880101111562000a2d57600080fd5b62000a4084602083016020890162000b94565b9695505050505050565b60006020828403121562000a5d57600080fd5b81516001600160e01b03198116811462000a7657600080fd5b9392505050565b6000806040838503121562000a9157600080fd5b82516001600160401b038082111562000aa957600080fd5b62000ab786838701620009b9565b9350602085015191508082111562000ace57600080fd5b5062000add85828601620009b9565b9150509250929050565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000b268160a085016020870162000b94565b601f01601f19169190910160a00195945050505050565b6000821982111562000b535762000b5362000c45565b500190565b600081600019048311821515161562000b755762000b7562000c45565b500290565b60008282101562000b8f5762000b8f62000c45565b500390565b60005b8381101562000bb157818101518382015260200162000b97565b8381111562000bc1576000848401525b50505050565b600181811c9082168062000bdc57607f821691505b6020821081141562000bfe57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000c1b5762000c1b62000c45565b5060010190565b60008262000c4057634e487b7160e01b600052601260045260246000fd5b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6121d08062000c816000396000f3fe6080604052600436106101cd5760003560e01c8063715018a6116100f7578063a22cb46511610095578063d5abeb0111610064578063d5abeb01146104cb578063e14ca353146104e1578063e985e9c5146104f6578063f2fde38b1461053f57600080fd5b8063a22cb4651461044b578063b88d4fde1461046b578063c87b56dd1461048b578063cbfc4bce146104ab57600080fd5b806394354fd0116100d157806394354fd0146103f857806395d89b411461040e5780639f181b5e14610423578063a0712d681461043857600080fd5b8063715018a6146103af578063771282f6146103c45780638da5cb5b146103da57600080fd5b80633ccfd60b1161016f5780636352211e1161013e5780636352211e146103445780636817c76c146103645780636c0360eb1461037a57806370a082311461038f57600080fd5b80633ccfd60b146102e257806342842e0e146102ea57806355f804b31461030a5780635c975abb1461032a57600080fd5b8063081812fc116101ab578063081812fc1461024b578063095ea7b31461028357806318160ddd146102a357806323b872dd146102c257600080fd5b806301ffc9a7146101d257806302329a291461020757806306fdde0314610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611dbe565b61055f565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b50610227610222366004611da3565b6105b1565b005b34801561023557600080fd5b5061023e6105f7565b6040516101fe9190611f02565b34801561025757600080fd5b5061026b610266366004611e41565b610689565b6040516001600160a01b0390911681526020016101fe565b34801561028f57600080fd5b5061022761029e366004611d79565b61071e565b3480156102af57600080fd5b506008545b6040519081526020016101fe565b3480156102ce57600080fd5b506102276102dd366004611c97565b610834565b610227610865565b3480156102f657600080fd5b50610227610305366004611c97565b610a96565b34801561031657600080fd5b50610227610325366004611df8565b610ab1565b34801561033657600080fd5b506010546101f29060ff1681565b34801561035057600080fd5b5061026b61035f366004611e41565b610af2565b34801561037057600080fd5b506102b4600e5481565b34801561038657600080fd5b5061023e610b69565b34801561039b57600080fd5b506102b46103aa366004611c49565b610bf7565b3480156103bb57600080fd5b50610227610c7e565b3480156103d057600080fd5b506102b4600c5481565b3480156103e657600080fd5b506006546001600160a01b031661026b565b34801561040457600080fd5b506102b4600f5481565b34801561041a57600080fd5b5061023e610cb4565b34801561042f57600080fd5b506102b4610cc3565b610227610446366004611e41565b610cd3565b34801561045757600080fd5b50610227610466366004611d4f565b610e8d565b34801561047757600080fd5b50610227610486366004611cd3565b610e98565b34801561049757600080fd5b5061023e6104a6366004611e41565b610ed0565b3480156104b757600080fd5b506102276104c6366004611c49565b610fab565b3480156104d757600080fd5b506102b4600d5481565b3480156104ed57600080fd5b506102b461108e565b34801561050257600080fd5b506101f2610511366004611c64565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561054b57600080fd5b5061022761055a366004611c49565b6110a5565b60006001600160e01b031982166380ac58cd60e01b148061059057506001600160e01b03198216635b5e139f60e01b145b806105ab57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146105e45760405162461bcd60e51b81526004016105db90611f67565b60405180910390fd5b6010805460ff1916911515919091179055565b606060008054610606906120c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610632906120c2565b801561067f5780601f106106545761010080835404028352916020019161067f565b820191906000526020600020905b81548152906001019060200180831161066257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107025760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105db565b506000908152600460205260409020546001600160a01b031690565b600061072982610af2565b9050806001600160a01b0316836001600160a01b031614156107975760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105db565b336001600160a01b03821614806107b357506107b38133610511565b6108255760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105db565b61082f838361117d565b505050565b61083e33826111eb565b61085a5760405162461bcd60e51b81526004016105db90611f9c565b61082f8383836112e2565b6006546001600160a01b0316331461088f5760405162461bcd60e51b81526004016105db90611f67565b6000606461089e476021612060565b6108a8919061204c565b9050600060646108b9476021612060565b6108c3919061204c565b9050600060646108d4476008612060565b6108de919061204c565b6040519091506000907337cc41ff7f1569365216d9e01231de1b656bbbfd9085908381818185875af1925050503d8060008114610937576040519150601f19603f3d011682016040523d82523d6000602084013e61093c565b606091505b505090508061094a57600080fd5b60405160009073eb4d27c91aaa3fa434df1de1874472176cc533e29085908381818185875af1925050503d80600081146109a0576040519150601f19603f3d011682016040523d82523d6000602084013e6109a5565b606091505b50509050806109b357600080fd5b604051600090735dfa180d3788fea415c1db8c5fac6b4987940f3f9085908381818185875af1925050503d8060008114610a09576040519150601f19603f3d011682016040523d82523d6000602084013e610a0e565b606091505b5050905080610a1c57600080fd5b6000610a306006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a7a576040519150601f19603f3d011682016040523d82523d6000602084013e610a7f565b606091505b5050905080610a8d57600080fd5b50505050505050565b61082f83838360405180602001604052806000815250610e98565b6006546001600160a01b03163314610adb5760405162461bcd60e51b81526004016105db90611f67565b8051610aee906011906020840190611b13565b5050565b6000818152600260205260408120546001600160a01b0316806105ab5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105db565b60118054610b76906120c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba2906120c2565b8015610bef5780601f10610bc457610100808354040283529160200191610bef565b820191906000526020600020905b815481529060010190602001808311610bd257829003601f168201915b505050505081565b60006001600160a01b038216610c625760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105db565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ca85760405162461bcd60e51b81526004016105db90611f67565b610cb2600061147e565b565b606060018054610606906120c2565b6000610cce60075490565b905090565b6006546001600160a01b03163314610d605760105460ff1615610d465760405162461bcd60e51b815260206004820152602560248201527f4d696e74206973206e6f7420617661696c61626c652061742074686973206d6f60448201526436b2b73a1760d91b60648201526084016105db565b80600e54610d549190612060565b341015610d6057600080fd5b600081610d6b61108e565b610d75919061207f565b1015610d935760405162461bcd60e51b81526004016105db90611fed565b600081118015610da55750600f548111155b610de85760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b4b73a1030b6b7bab73a1760611b60448201526064016105db565b600d5481610df5600b5490565b610dff9190612034565b1115610e445760405162461bcd60e51b815260206004820152601460248201527326b0bc1039bab838363c9032bc31b2b2b232b21760611b60448201526064016105db565b60015b818111610aee576000610e586114d0565b9050610e643382611668565b600c8054906000610e74836120fd565b9190505550508080610e85906120fd565b915050610e47565b610aee338383611682565b610ea233836111eb565b610ebe5760405162461bcd60e51b81526004016105db90611f9c565b610eca84848484611751565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f4f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba30b73a103a37b5b2b760891b60648201526084016105db565b6000610f59611784565b90506000815111610f795760405180602001604052806000815250610fa4565b80610f8384611793565b604051602001610f94929190611e86565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610fd55760405162461bcd60e51b81526004016105db90611f67565b60006001610fe161108e565b610feb919061207f565b10156110095760405162461bcd60e51b81526004016105db90611fed565b600d54600b5461101a906001612034565b111561105f5760405162461bcd60e51b815260206004820152601460248201527326b0bc1039bab838363c9032bc31b2b2b232b21760611b60448201526064016105db565b60006110696114d0565b90506110758282611668565b600c8054906000611085836120fd565b91905055505050565b6000611098610cc3565b600854610cce919061207f565b6006546001600160a01b031633146110cf5760405162461bcd60e51b81526004016105db90611f67565b6001600160a01b0381166111345760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105db565b61113d8161147e565b50565b5490565b60008061115060075490565b9050611160600780546001019055565b919050565b80546001019055565b6001600160a01b03163b151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111b282610af2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112645760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105db565b600061126f83610af2565b9050806001600160a01b0316846001600160a01b031614806112aa5750836001600160a01b031661129f84610689565b6001600160a01b0316145b806112da57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166112f582610af2565b6001600160a01b0316146113595760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016105db565b6001600160a01b0382166113bb5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105db565b6113c660008261117d565b6001600160a01b03831660009081526003602052604081208054600192906113ef90849061207f565b90915550506001600160a01b038216600090815260036020526040812080546001929061141d908490612034565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000806114db61108e565b116115285760405162461bcd60e51b815260206004820152601860248201527f4e6f206d6f726520746f6b656e7320617661696c61626c65000000000000000060448201526064016105db565b6000611532610cc3565b60085461153f919061207f565b6040516bffffffffffffffffffffffff1933606090811b8216602084015241901b166034820152446048820152456068820152426088820152909150600090829060a8016040516020818303038152906040528051906020012060001c6115a69190612118565b600081815260096020526040812054919250906115c45750806115d5565b506000818152600960205260409020545b600960006115e460018661207f565b8152602001908152602001600020546000141561161a5761160660018461207f565b60008381526009602052604090205561164a565b6009600061162960018661207f565b81526020808201929092526040908101600090812054858252600990935220555b611652611144565b50600a546116609082612034565b935050505090565b610aee828260405180602001604052806000815250611891565b816001600160a01b0316836001600160a01b031614156116e45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105db565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61175c8484846112e2565b611768848484846118c4565b610eca5760405162461bcd60e51b81526004016105db90611f15565b606060118054610606906120c2565b6060816117b75750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117e157806117cb816120fd565b91506117da9050600a8361204c565b91506117bb565b60008167ffffffffffffffff8111156117fc576117fc61216e565b6040519080825280601f01601f191660200182016040528015611826576020820181803683370190505b5090505b84156112da5761183b60018361207f565b9150611848600a86612118565b611853906030612034565b60f81b81838151811061186857611868612158565b60200101906001600160f81b031916908160001a90535061188a600a8661204c565b945061182a565b61189b83836119d1565b6118a860008484846118c4565b61082f5760405162461bcd60e51b81526004016105db90611f15565b60006001600160a01b0384163b156119c657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611908903390899088908890600401611ec5565b602060405180830381600087803b15801561192257600080fd5b505af1925050508015611952575060408051601f3d908101601f1916820190925261194f91810190611ddb565b60015b6119ac573d808015611980576040519150601f19603f3d011682016040523d82523d6000602084013e611985565b606091505b5080516119a45760405162461bcd60e51b81526004016105db90611f15565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112da565b506001949350505050565b6001600160a01b038216611a275760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105db565b6000818152600260205260409020546001600160a01b031615611a8c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105db565b6001600160a01b0382166000908152600360205260408120805460019290611ab5908490612034565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b1f906120c2565b90600052602060002090601f016020900481019282611b415760008555611b87565b82601f10611b5a57805160ff1916838001178555611b87565b82800160010185558215611b87579182015b82811115611b87578251825591602001919060010190611b6c565b50611b93929150611b97565b5090565b5b80821115611b935760008155600101611b98565b600067ffffffffffffffff80841115611bc757611bc761216e565b604051601f8501601f19908116603f01168101908282118183101715611bef57611bef61216e565b81604052809350858152868686011115611c0857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461116057600080fd5b8035801515811461116057600080fd5b600060208284031215611c5b57600080fd5b610fa482611c22565b60008060408385031215611c7757600080fd5b611c8083611c22565b9150611c8e60208401611c22565b90509250929050565b600080600060608486031215611cac57600080fd5b611cb584611c22565b9250611cc360208501611c22565b9150604084013590509250925092565b60008060008060808587031215611ce957600080fd5b611cf285611c22565b9350611d0060208601611c22565b925060408501359150606085013567ffffffffffffffff811115611d2357600080fd5b8501601f81018713611d3457600080fd5b611d4387823560208401611bac565b91505092959194509250565b60008060408385031215611d6257600080fd5b611d6b83611c22565b9150611c8e60208401611c39565b60008060408385031215611d8c57600080fd5b611d9583611c22565b946020939093013593505050565b600060208284031215611db557600080fd5b610fa482611c39565b600060208284031215611dd057600080fd5b8135610fa481612184565b600060208284031215611ded57600080fd5b8151610fa481612184565b600060208284031215611e0a57600080fd5b813567ffffffffffffffff811115611e2157600080fd5b8201601f81018413611e3257600080fd5b6112da84823560208401611bac565b600060208284031215611e5357600080fd5b5035919050565b60008151808452611e72816020860160208601612096565b601f01601f19169290920160200192915050565b60008351611e98818460208801612096565b835190830190611eac818360208801612096565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ef890830184611e5a565b9695505050505050565b602081526000610fa46020830184611e5a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526027908201527f596f752063616e2774206d696e74206d6f7265207468616e207468652061766160408201526634b630b136329760c91b606082015260800190565b600082198211156120475761204761212c565b500190565b60008261205b5761205b612142565b500490565b600081600019048311821515161561207a5761207a61212c565b500290565b6000828210156120915761209161212c565b500390565b60005b838110156120b1578181015183820152602001612099565b83811115610eca5750506000910152565b600181811c908216806120d657607f821691505b602082108114156120f757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121115761211161212c565b5060010190565b60008261212757612127612142565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461113d57600080fdfea2646970667358221220bfef231bdf2a058d925c4d537868cc4c381f19827541c535894706270e4a01dc64736f6c634300080700334552433732313a207472616e7366657220746f206e6f6e204552433732315265697066733a2f2f516d536b6a647265774132446d314b616b33385341624b6a78446d734c717670734638747a764255426e375173332f00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000a73696d706c65734e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000753494d504c455300000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c8063715018a6116100f7578063a22cb46511610095578063d5abeb0111610064578063d5abeb01146104cb578063e14ca353146104e1578063e985e9c5146104f6578063f2fde38b1461053f57600080fd5b8063a22cb4651461044b578063b88d4fde1461046b578063c87b56dd1461048b578063cbfc4bce146104ab57600080fd5b806394354fd0116100d157806394354fd0146103f857806395d89b411461040e5780639f181b5e14610423578063a0712d681461043857600080fd5b8063715018a6146103af578063771282f6146103c45780638da5cb5b146103da57600080fd5b80633ccfd60b1161016f5780636352211e1161013e5780636352211e146103445780636817c76c146103645780636c0360eb1461037a57806370a082311461038f57600080fd5b80633ccfd60b146102e257806342842e0e146102ea57806355f804b31461030a5780635c975abb1461032a57600080fd5b8063081812fc116101ab578063081812fc1461024b578063095ea7b31461028357806318160ddd146102a357806323b872dd146102c257600080fd5b806301ffc9a7146101d257806302329a291461020757806306fdde0314610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611dbe565b61055f565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b50610227610222366004611da3565b6105b1565b005b34801561023557600080fd5b5061023e6105f7565b6040516101fe9190611f02565b34801561025757600080fd5b5061026b610266366004611e41565b610689565b6040516001600160a01b0390911681526020016101fe565b34801561028f57600080fd5b5061022761029e366004611d79565b61071e565b3480156102af57600080fd5b506008545b6040519081526020016101fe565b3480156102ce57600080fd5b506102276102dd366004611c97565b610834565b610227610865565b3480156102f657600080fd5b50610227610305366004611c97565b610a96565b34801561031657600080fd5b50610227610325366004611df8565b610ab1565b34801561033657600080fd5b506010546101f29060ff1681565b34801561035057600080fd5b5061026b61035f366004611e41565b610af2565b34801561037057600080fd5b506102b4600e5481565b34801561038657600080fd5b5061023e610b69565b34801561039b57600080fd5b506102b46103aa366004611c49565b610bf7565b3480156103bb57600080fd5b50610227610c7e565b3480156103d057600080fd5b506102b4600c5481565b3480156103e657600080fd5b506006546001600160a01b031661026b565b34801561040457600080fd5b506102b4600f5481565b34801561041a57600080fd5b5061023e610cb4565b34801561042f57600080fd5b506102b4610cc3565b610227610446366004611e41565b610cd3565b34801561045757600080fd5b50610227610466366004611d4f565b610e8d565b34801561047757600080fd5b50610227610486366004611cd3565b610e98565b34801561049757600080fd5b5061023e6104a6366004611e41565b610ed0565b3480156104b757600080fd5b506102276104c6366004611c49565b610fab565b3480156104d757600080fd5b506102b4600d5481565b3480156104ed57600080fd5b506102b461108e565b34801561050257600080fd5b506101f2610511366004611c64565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561054b57600080fd5b5061022761055a366004611c49565b6110a5565b60006001600160e01b031982166380ac58cd60e01b148061059057506001600160e01b03198216635b5e139f60e01b145b806105ab57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146105e45760405162461bcd60e51b81526004016105db90611f67565b60405180910390fd5b6010805460ff1916911515919091179055565b606060008054610606906120c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610632906120c2565b801561067f5780601f106106545761010080835404028352916020019161067f565b820191906000526020600020905b81548152906001019060200180831161066257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107025760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105db565b506000908152600460205260409020546001600160a01b031690565b600061072982610af2565b9050806001600160a01b0316836001600160a01b031614156107975760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105db565b336001600160a01b03821614806107b357506107b38133610511565b6108255760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105db565b61082f838361117d565b505050565b61083e33826111eb565b61085a5760405162461bcd60e51b81526004016105db90611f9c565b61082f8383836112e2565b6006546001600160a01b0316331461088f5760405162461bcd60e51b81526004016105db90611f67565b6000606461089e476021612060565b6108a8919061204c565b9050600060646108b9476021612060565b6108c3919061204c565b9050600060646108d4476008612060565b6108de919061204c565b6040519091506000907337cc41ff7f1569365216d9e01231de1b656bbbfd9085908381818185875af1925050503d8060008114610937576040519150601f19603f3d011682016040523d82523d6000602084013e61093c565b606091505b505090508061094a57600080fd5b60405160009073eb4d27c91aaa3fa434df1de1874472176cc533e29085908381818185875af1925050503d80600081146109a0576040519150601f19603f3d011682016040523d82523d6000602084013e6109a5565b606091505b50509050806109b357600080fd5b604051600090735dfa180d3788fea415c1db8c5fac6b4987940f3f9085908381818185875af1925050503d8060008114610a09576040519150601f19603f3d011682016040523d82523d6000602084013e610a0e565b606091505b5050905080610a1c57600080fd5b6000610a306006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a7a576040519150601f19603f3d011682016040523d82523d6000602084013e610a7f565b606091505b5050905080610a8d57600080fd5b50505050505050565b61082f83838360405180602001604052806000815250610e98565b6006546001600160a01b03163314610adb5760405162461bcd60e51b81526004016105db90611f67565b8051610aee906011906020840190611b13565b5050565b6000818152600260205260408120546001600160a01b0316806105ab5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105db565b60118054610b76906120c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba2906120c2565b8015610bef5780601f10610bc457610100808354040283529160200191610bef565b820191906000526020600020905b815481529060010190602001808311610bd257829003601f168201915b505050505081565b60006001600160a01b038216610c625760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105db565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ca85760405162461bcd60e51b81526004016105db90611f67565b610cb2600061147e565b565b606060018054610606906120c2565b6000610cce60075490565b905090565b6006546001600160a01b03163314610d605760105460ff1615610d465760405162461bcd60e51b815260206004820152602560248201527f4d696e74206973206e6f7420617661696c61626c652061742074686973206d6f60448201526436b2b73a1760d91b60648201526084016105db565b80600e54610d549190612060565b341015610d6057600080fd5b600081610d6b61108e565b610d75919061207f565b1015610d935760405162461bcd60e51b81526004016105db90611fed565b600081118015610da55750600f548111155b610de85760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b4b73a1030b6b7bab73a1760611b60448201526064016105db565b600d5481610df5600b5490565b610dff9190612034565b1115610e445760405162461bcd60e51b815260206004820152601460248201527326b0bc1039bab838363c9032bc31b2b2b232b21760611b60448201526064016105db565b60015b818111610aee576000610e586114d0565b9050610e643382611668565b600c8054906000610e74836120fd565b9190505550508080610e85906120fd565b915050610e47565b610aee338383611682565b610ea233836111eb565b610ebe5760405162461bcd60e51b81526004016105db90611f9c565b610eca84848484611751565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f4f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba30b73a103a37b5b2b760891b60648201526084016105db565b6000610f59611784565b90506000815111610f795760405180602001604052806000815250610fa4565b80610f8384611793565b604051602001610f94929190611e86565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610fd55760405162461bcd60e51b81526004016105db90611f67565b60006001610fe161108e565b610feb919061207f565b10156110095760405162461bcd60e51b81526004016105db90611fed565b600d54600b5461101a906001612034565b111561105f5760405162461bcd60e51b815260206004820152601460248201527326b0bc1039bab838363c9032bc31b2b2b232b21760611b60448201526064016105db565b60006110696114d0565b90506110758282611668565b600c8054906000611085836120fd565b91905055505050565b6000611098610cc3565b600854610cce919061207f565b6006546001600160a01b031633146110cf5760405162461bcd60e51b81526004016105db90611f67565b6001600160a01b0381166111345760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105db565b61113d8161147e565b50565b5490565b60008061115060075490565b9050611160600780546001019055565b919050565b80546001019055565b6001600160a01b03163b151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111b282610af2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112645760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105db565b600061126f83610af2565b9050806001600160a01b0316846001600160a01b031614806112aa5750836001600160a01b031661129f84610689565b6001600160a01b0316145b806112da57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166112f582610af2565b6001600160a01b0316146113595760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016105db565b6001600160a01b0382166113bb5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105db565b6113c660008261117d565b6001600160a01b03831660009081526003602052604081208054600192906113ef90849061207f565b90915550506001600160a01b038216600090815260036020526040812080546001929061141d908490612034565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000806114db61108e565b116115285760405162461bcd60e51b815260206004820152601860248201527f4e6f206d6f726520746f6b656e7320617661696c61626c65000000000000000060448201526064016105db565b6000611532610cc3565b60085461153f919061207f565b6040516bffffffffffffffffffffffff1933606090811b8216602084015241901b166034820152446048820152456068820152426088820152909150600090829060a8016040516020818303038152906040528051906020012060001c6115a69190612118565b600081815260096020526040812054919250906115c45750806115d5565b506000818152600960205260409020545b600960006115e460018661207f565b8152602001908152602001600020546000141561161a5761160660018461207f565b60008381526009602052604090205561164a565b6009600061162960018661207f565b81526020808201929092526040908101600090812054858252600990935220555b611652611144565b50600a546116609082612034565b935050505090565b610aee828260405180602001604052806000815250611891565b816001600160a01b0316836001600160a01b031614156116e45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105db565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61175c8484846112e2565b611768848484846118c4565b610eca5760405162461bcd60e51b81526004016105db90611f15565b606060118054610606906120c2565b6060816117b75750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117e157806117cb816120fd565b91506117da9050600a8361204c565b91506117bb565b60008167ffffffffffffffff8111156117fc576117fc61216e565b6040519080825280601f01601f191660200182016040528015611826576020820181803683370190505b5090505b84156112da5761183b60018361207f565b9150611848600a86612118565b611853906030612034565b60f81b81838151811061186857611868612158565b60200101906001600160f81b031916908160001a90535061188a600a8661204c565b945061182a565b61189b83836119d1565b6118a860008484846118c4565b61082f5760405162461bcd60e51b81526004016105db90611f15565b60006001600160a01b0384163b156119c657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611908903390899088908890600401611ec5565b602060405180830381600087803b15801561192257600080fd5b505af1925050508015611952575060408051601f3d908101601f1916820190925261194f91810190611ddb565b60015b6119ac573d808015611980576040519150601f19603f3d011682016040523d82523d6000602084013e611985565b606091505b5080516119a45760405162461bcd60e51b81526004016105db90611f15565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112da565b506001949350505050565b6001600160a01b038216611a275760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105db565b6000818152600260205260409020546001600160a01b031615611a8c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105db565b6001600160a01b0382166000908152600360205260408120805460019290611ab5908490612034565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b1f906120c2565b90600052602060002090601f016020900481019282611b415760008555611b87565b82601f10611b5a57805160ff1916838001178555611b87565b82800160010185558215611b87579182015b82811115611b87578251825591602001919060010190611b6c565b50611b93929150611b97565b5090565b5b80821115611b935760008155600101611b98565b600067ffffffffffffffff80841115611bc757611bc761216e565b604051601f8501601f19908116603f01168101908282118183101715611bef57611bef61216e565b81604052809350858152868686011115611c0857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461116057600080fd5b8035801515811461116057600080fd5b600060208284031215611c5b57600080fd5b610fa482611c22565b60008060408385031215611c7757600080fd5b611c8083611c22565b9150611c8e60208401611c22565b90509250929050565b600080600060608486031215611cac57600080fd5b611cb584611c22565b9250611cc360208501611c22565b9150604084013590509250925092565b60008060008060808587031215611ce957600080fd5b611cf285611c22565b9350611d0060208601611c22565b925060408501359150606085013567ffffffffffffffff811115611d2357600080fd5b8501601f81018713611d3457600080fd5b611d4387823560208401611bac565b91505092959194509250565b60008060408385031215611d6257600080fd5b611d6b83611c22565b9150611c8e60208401611c39565b60008060408385031215611d8c57600080fd5b611d9583611c22565b946020939093013593505050565b600060208284031215611db557600080fd5b610fa482611c39565b600060208284031215611dd057600080fd5b8135610fa481612184565b600060208284031215611ded57600080fd5b8151610fa481612184565b600060208284031215611e0a57600080fd5b813567ffffffffffffffff811115611e2157600080fd5b8201601f81018413611e3257600080fd5b6112da84823560208401611bac565b600060208284031215611e5357600080fd5b5035919050565b60008151808452611e72816020860160208601612096565b601f01601f19169290920160200192915050565b60008351611e98818460208801612096565b835190830190611eac818360208801612096565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ef890830184611e5a565b9695505050505050565b602081526000610fa46020830184611e5a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526027908201527f596f752063616e2774206d696e74206d6f7265207468616e207468652061766160408201526634b630b136329760c91b606082015260800190565b600082198211156120475761204761212c565b500190565b60008261205b5761205b612142565b500490565b600081600019048311821515161561207a5761207a61212c565b500290565b6000828210156120915761209161212c565b500390565b60005b838110156120b1578181015183820152602001612099565b83811115610eca5750506000910152565b600181811c908216806120d657607f821691505b602082108114156120f757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121115761211161212c565b5060010190565b60008261212757612127612142565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461113d57600080fdfea2646970667358221220bfef231bdf2a058d925c4d537868cc4c381f19827541c535894706270e4a01dc64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000a73696d706c65734e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000753494d504c455300000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): simplesNFT
Arg [1] : _symbol (string): SIMPLES

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [3] : 73696d706c65734e465400000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [5] : 53494d504c455300000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

44168:3067:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30948:305;;;;;;;;;;-1:-1:-1;30948:305:0;;;;;:::i;:::-;;:::i;:::-;;;6831:14:1;;6824:22;6806:41;;6794:2;6779:18;30948:305:0;;;;;;;;46416:73;;;;;;;;;;-1:-1:-1;46416:73:0;;;;;:::i;:::-;;:::i;:::-;;31893:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33453:221::-;;;;;;;;;;-1:-1:-1;33453:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6129:32:1;;;6111:51;;6099:2;6084:18;33453:221:0;5965:203:1;32976:411:0;;;;;;;;;;-1:-1:-1;32976:411:0;;;;;:::i;:::-;;:::i;2401:91::-;;;;;;;;;;-1:-1:-1;2472:12:0;;2401:91;;;15471:25:1;;;15459:2;15444:18;2401:91:0;15325:177:1;34203:339:0;;;;;;;;;;-1:-1:-1;34203:339:0;;;;;:::i;:::-;;:::i;46496:733::-;;;:::i;34613:185::-;;;;;;;;;;-1:-1:-1;34613:185:0;;;;;:::i;:::-;;:::i;46311:98::-;;;;;;;;;;-1:-1:-1;46311:98:0;;;;;:::i;:::-;;:::i;44533:42::-;;;;;;;;;;-1:-1:-1;44533:42:0;;;;;;;;31587:239;;;;;;;;;;-1:-1:-1;31587:239:0;;;;;:::i;:::-;;:::i;44434:49::-;;;;;;;;;;;;;;;;44580:94;;;;;;;;;;;;;:::i;31317:208::-;;;;;;;;;;-1:-1:-1;31317:208:0;;;;;:::i;:::-;;:::i;11190:103::-;;;;;;;;;;;;;:::i;44343:39::-;;;;;;;;;;;;;;;;10539:87;;;;;;;;;;-1:-1:-1;10612:6:0;;-1:-1:-1;;;;;10612:6:0;10539:87;;44488:40;;;;;;;;;;;;;;;;32062:104;;;;;;;;;;;;;:::i;2583:99::-;;;;;;;;;;;;;:::i;44963:655::-;;;;;;:::i;:::-;;:::i;33746:155::-;;;;;;;;;;-1:-1:-1;33746:155:0;;;;;:::i;:::-;;:::i;34869:328::-;;;;;;;;;;-1:-1:-1;34869:328:0;;;;;:::i;:::-;;:::i;45936:368::-;;;;;;;;;;-1:-1:-1;45936:368:0;;;;;:::i;:::-;;:::i;45624:305::-;;;;;;;;;;-1:-1:-1;45624:305:0;;;;;:::i;:::-;;:::i;44387:42::-;;;;;;;;;;;;;;;;2788:115;;;;;;;;;;;;;:::i;33972:164::-;;;;;;;;;;-1:-1:-1;33972:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34093:25:0;;;34069:4;34093:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33972:164;11448:201;;;;;;;;;;-1:-1:-1;11448:201:0;;;;;:::i;:::-;;:::i;30948:305::-;31050:4;-1:-1:-1;;;;;;31087:40:0;;-1:-1:-1;;;31087:40:0;;:105;;-1:-1:-1;;;;;;;31144:48:0;;-1:-1:-1;;;31144:48:0;31087:105;:158;;;-1:-1:-1;;;;;;;;;;23652:40:0;;;31209:36;31067:178;30948:305;-1:-1:-1;;30948:305:0:o;46416:73::-;10612:6;;-1:-1:-1;;;;;10612:6:0;9290:10;10759:23;10751:68;;;;-1:-1:-1;;;10751:68:0;;;;;;;:::i;:::-;;;;;;;;;46468:6:::1;:15:::0;;-1:-1:-1;;46468:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46416:73::o;31893:100::-;31947:13;31980:5;31973:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31893:100;:::o;33453:221::-;33529:7;36796:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36796:16:0;33549:73;;;;-1:-1:-1;;;33549:73:0;;12411:2:1;33549:73:0;;;12393:21:1;12450:2;12430:18;;;12423:30;12489:34;12469:18;;;12462:62;-1:-1:-1;;;12540:18:1;;;12533:42;12592:19;;33549:73:0;12209:408:1;33549:73:0;-1:-1:-1;33642:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33642:24:0;;33453:221::o;32976:411::-;33057:13;33073:23;33088:7;33073:14;:23::i;:::-;33057:39;;33121:5;-1:-1:-1;;;;;33115:11:0;:2;-1:-1:-1;;;;;33115:11:0;;;33107:57;;;;-1:-1:-1;;;33107:57:0;;13950:2:1;33107:57:0;;;13932:21:1;13989:2;13969:18;;;13962:30;14028:34;14008:18;;;14001:62;-1:-1:-1;;;14079:18:1;;;14072:31;14120:19;;33107:57:0;13748:397:1;33107:57:0;9290:10;-1:-1:-1;;;;;33199:21:0;;;;:62;;-1:-1:-1;33224:37:0;33241:5;9290:10;33972:164;:::i;33224:37::-;33177:168;;;;-1:-1:-1;;;33177:168:0;;10804:2:1;33177:168:0;;;10786:21:1;10843:2;10823:18;;;10816:30;10882:34;10862:18;;;10855:62;10953:26;10933:18;;;10926:54;10997:19;;33177:168:0;10602:420:1;33177:168:0;33358:21;33367:2;33371:7;33358:8;:21::i;:::-;33046:341;32976:411;;:::o;34203:339::-;34398:41;9290:10;34431:7;34398:18;:41::i;:::-;34390:103;;;;-1:-1:-1;;;34390:103:0;;;;;;;:::i;:::-;34506:28;34516:4;34522:2;34526:7;34506:9;:28::i;46496:733::-;10612:6;;-1:-1:-1;;;;;10612:6:0;9290:10;10759:23;10751:68;;;;-1:-1:-1;;;10751:68:0;;;;;;;:::i;:::-;46548:21:::1;46601:3;46572:26;:21;46596:2;46572:26;:::i;:::-;:32;;;;:::i;:::-;46548:56:::0;-1:-1:-1;46611:20:0::1;46663:3;46634:26;:21;46658:2;46634:26;:::i;:::-;:32;;;;:::i;:::-;46611:55:::0;-1:-1:-1;46673:23:0::1;46727:3;46699:25;:21;46723:1;46699:25;:::i;:::-;:31;;;;:::i;:::-;46759:82;::::0;46673:57;;-1:-1:-1;46741:12:0::1;::::0;46767:42:::1;::::0;46823:13;;46741:12;46759:82;46741:12;46759:82;46823:13;46767:42;46759:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46740:101;;;46856:7;46848:16;;;::::0;::::1;;46889:81;::::0;46872:11:::1;::::0;46897:42:::1;::::0;46953:12;;46872:11;46889:81;46872:11;46889:81;46953:12;46897:42;46889:81:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46871:99;;;46985:6;46977:15;;;::::0;::::1;;47020:84;::::0;47000:14:::1;::::0;47028:42:::1;::::0;47084:15;;47000:14;47020:84;47000:14;47020:84;47084:15;47028:42;47020:84:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46999:105;;;47119:9;47111:18;;;::::0;::::1;;47137:7;47158;10612:6:::0;;-1:-1:-1;;;;;10612:6:0;;10539:87;47158:7:::1;-1:-1:-1::0;;;;;47150:21:0::1;47179;47150:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47136:69;;;47220:2;47212:11;;;::::0;::::1;;46541:688;;;;;;;46496:733::o:0;34613:185::-;34751:39;34768:4;34774:2;34778:7;34751:39;;;;;;;;;;;;:16;:39::i;46311:98::-;10612:6;;-1:-1:-1;;;;;10612:6:0;9290:10;10759:23;10751:68;;;;-1:-1:-1;;;10751:68:0;;;;;;;:::i;:::-;46382:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46311:98:::0;:::o;31587:239::-;31659:7;31695:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31695:16:0;31730:19;31722:73;;;;-1:-1:-1;;;31722:73:0;;11640:2:1;31722:73:0;;;11622:21:1;11679:2;11659:18;;;11652:30;11718:34;11698:18;;;11691:62;-1:-1:-1;;;11769:18:1;;;11762:39;11818:19;;31722:73:0;11438:405:1;44580:94:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31317:208::-;31389:7;-1:-1:-1;;;;;31417:19:0;;31409:74;;;;-1:-1:-1;;;31409:74:0;;11229:2:1;31409:74:0;;;11211:21:1;11268:2;11248:18;;;11241:30;11307:34;11287:18;;;11280:62;-1:-1:-1;;;11358:18:1;;;11351:40;11408:19;;31409:74:0;11027:406:1;31409:74:0;-1:-1:-1;;;;;;31501:16:0;;;;;:9;:16;;;;;;;31317:208::o;11190:103::-;10612:6;;-1:-1:-1;;;;;10612:6:0;9290:10;10759:23;10751:68;;;;-1:-1:-1;;;10751:68:0;;;;;;;:::i;:::-;11255:30:::1;11282:1;11255:18;:30::i;:::-;11190:103::o:0;32062:104::-;32118:13;32151:7;32144:14;;;;;:::i;2583:99::-;2626:7;2653:21;:11;964:14;;872:114;2653:21;2646:28;;2583:99;:::o;44963:655::-;10612:6;;-1:-1:-1;;;;;10612:6:0;45031:10;:21;45027:157;;45074:6;;;;45073:7;45065:57;;;;-1:-1:-1;;;45065:57:0;;7284:2:1;45065:57:0;;;7266:21:1;7323:2;7303:18;;;7296:30;7362:34;7342:18;;;7335:62;-1:-1:-1;;;7413:18:1;;;7406:35;7458:19;;45065:57:0;7082:401:1;45065:57:0;45164:11;45152:9;;:23;;;;:::i;:::-;45139:9;:36;;45131:45;;;;;;45239:1;45224:11;45200:21;:19;:21::i;:::-;:35;;;;:::i;:::-;:40;;45192:92;;;;-1:-1:-1;;;45192:92:0;;;;;;;:::i;:::-;45313:1;45299:11;:15;:52;;;;;45333:18;;45318:11;:33;;45299:52;45291:85;;;;-1:-1:-1;;;45291:85:0;;12824:2:1;45291:85:0;;;12806:21:1;12863:2;12843:18;;;12836:30;-1:-1:-1;;;12882:18:1;;;12875:50;12942:18;;45291:85:0;12622:344:1;45291:85:0;45425:9;;45410:11;45391:16;:6;964:14;;872:114;45391:16;:30;;;;:::i;:::-;:43;;45383:76;;;;-1:-1:-1;;;45383:76:0;;15178:2:1;45383:76:0;;;15160:21:1;15217:2;15197:18;;;15190:30;-1:-1:-1;;;15236:18:1;;;15229:50;15296:18;;45383:76:0;14976:344:1;45383:76:0;45488:1;45471:142;45496:11;45491:1;:16;45471:142;;45523:10;45536:11;:9;:11::i;:::-;45523:24;;45556:25;45566:10;45578:2;45556:9;:25::i;:::-;45590:13;:15;;;:13;:15;;;:::i;:::-;;;;;;45514:99;45509:3;;;;;:::i;:::-;;;;45471:142;;33746:155;33841:52;9290:10;33874:8;33884;33841:18;:52::i;34869:328::-;35044:41;9290:10;35077:7;35044:18;:41::i;:::-;35036:103;;;;-1:-1:-1;;;35036:103:0;;;;;;;:::i;:::-;35150:39;35164:4;35170:2;35174:7;35183:5;35150:13;:39::i;:::-;34869:328;;;;:::o;45936:368::-;36772:4;36796:16;;;:7;:16;;;;;;46009:13;;-1:-1:-1;;;;;36796:16:0;46031:75;;;;-1:-1:-1;;;46031:75:0;;13534:2:1;46031:75:0;;;13516:21:1;13573:2;13553:18;;;13546:30;13612:34;13592:18;;;13585:62;-1:-1:-1;;;13663:18:1;;;13656:45;13718:19;;46031:75:0;13332:411:1;46031:75:0;46116:28;46147:10;:8;:10::i;:::-;46116:41;;46202:1;46177:14;46171:28;:32;:127;;;;;;;;;;;;;;;;;46239:14;46255:18;:7;:16;:18::i;:::-;46222:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46171:127;46164:134;45936:368;-1:-1:-1;;;45936:368:0:o;45624:305::-;10612:6;;-1:-1:-1;;;;;10612:6:0;9290:10;10759:23;10751:68;;;;-1:-1:-1;;;10751:68:0;;;;;;;:::i;:::-;45719:1:::1;45714;45690:21;:19;:21::i;:::-;:25;;;;:::i;:::-;:30;;45682:82;;;;-1:-1:-1::0;;;45682:82:0::1;;;;;;;:::i;:::-;45803:9;::::0;45779:6:::1;964:14:::0;45779:20:::1;::::0;45798:1:::1;45779:20;:::i;:::-;:33;;45771:66;;;::::0;-1:-1:-1;;;45771:66:0;;15178:2:1;45771:66:0::1;::::0;::::1;15160:21:1::0;15217:2;15197:18;;;15190:30;-1:-1:-1;;;15236:18:1;;;15229:50;15296:18;;45771:66:0::1;14976:344:1::0;45771:66:0::1;45848:10;45861:11;:9;:11::i;:::-;45848:24;;45881:18;45891:3;45896:2;45881:9;:18::i;:::-;45908:13;:15:::0;;;:13:::1;:15;::::0;::::1;:::i;:::-;;;;;;45668:261;45624:305:::0;:::o;2788:115::-;2840:7;2883:12;:10;:12::i;:::-;2472;;2867:28;;;;:::i;11448:201::-;10612:6;;-1:-1:-1;;;;;10612:6:0;9290:10;10759:23;10751:68;;;;-1:-1:-1;;;10751:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11537:22:0;::::1;11529:73;;;::::0;-1:-1:-1;;;11529:73:0;;8109:2:1;11529:73:0::1;::::0;::::1;8091:21:1::0;8148:2;8128:18;;;8121:30;8187:34;8167:18;;;8160:62;-1:-1:-1;;;8238:18:1;;;8231:36;8284:19;;11529:73:0::1;7907:402:1::0;11529:73:0::1;11613:28;11632:8;11613:18;:28::i;:::-;11448:201:::0;:::o;872:114::-;964:14;;872:114::o;3013:173::-;3060:7;3080:13;3096:21;:11;964:14;;872:114;3096:21;3080:37;;3130:23;:11;1083:19;;1101:1;1083:19;;;994:127;3130:23;3173:5;3013:173;-1:-1:-1;3013:173:0:o;994:127::-;1083:19;;1101:1;1083:19;;;994:127::o;13293:326::-;-1:-1:-1;;;;;13588:19:0;;:23;;;13293:326::o;40853:174::-;40928:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;40928:29:0;-1:-1:-1;;;;;40928:29:0;;;;;;;;:24;;40982:23;40928:24;40982:14;:23::i;:::-;-1:-1:-1;;;;;40973:46:0;;;;;;;;;;;40853:174;;:::o;37001:348::-;37094:4;36796:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36796:16:0;37111:73;;;;-1:-1:-1;;;37111:73:0;;10391:2:1;37111:73:0;;;10373:21:1;10430:2;10410:18;;;10403:30;10469:34;10449:18;;;10442:62;-1:-1:-1;;;10520:18:1;;;10513:42;10572:19;;37111:73:0;10189:408:1;37111:73:0;37195:13;37211:23;37226:7;37211:14;:23::i;:::-;37195:39;;37264:5;-1:-1:-1;;;;;37253:16:0;:7;-1:-1:-1;;;;;37253:16:0;;:51;;;;37297:7;-1:-1:-1;;;;;37273:31:0;:20;37285:7;37273:11;:20::i;:::-;-1:-1:-1;;;;;37273:31:0;;37253:51;:87;;;-1:-1:-1;;;;;;34093:25:0;;;34069:4;34093:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;37308:32;37245:96;37001:348;-1:-1:-1;;;;37001:348:0:o;40110:625::-;40269:4;-1:-1:-1;;;;;40242:31:0;:23;40257:7;40242:14;:23::i;:::-;-1:-1:-1;;;;;40242:31:0;;40234:81;;;;-1:-1:-1;;;40234:81:0;;8516:2:1;40234:81:0;;;8498:21:1;8555:2;8535:18;;;8528:30;8594:34;8574:18;;;8567:62;-1:-1:-1;;;8645:18:1;;;8638:35;8690:19;;40234:81:0;8314:401:1;40234:81:0;-1:-1:-1;;;;;40334:16:0;;40326:65;;;;-1:-1:-1;;;40326:65:0;;9279:2:1;40326:65:0;;;9261:21:1;9318:2;9298:18;;;9291:30;9357:34;9337:18;;;9330:62;-1:-1:-1;;;9408:18:1;;;9401:34;9452:19;;40326:65:0;9077:400:1;40326:65:0;40508:29;40525:1;40529:7;40508:8;:29::i;:::-;-1:-1:-1;;;;;40550:15:0;;;;;;:9;:15;;;;;:20;;40569:1;;40550:15;:20;;40569:1;;40550:20;:::i;:::-;;;;-1:-1:-1;;;;;;;40581:13:0;;;;;;:9;:13;;;;;:18;;40598:1;;40581:13;:18;;40598:1;;40581:18;:::i;:::-;;;;-1:-1:-1;;40610:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40610:21:0;-1:-1:-1;;;;;40610:21:0;;;;;;;;;40649:27;;40610:16;;40649:27;;;;;;;33046:341;32976:411;;:::o;11809:191::-;11902:6;;;-1:-1:-1;;;;;11919:17:0;;;-1:-1:-1;;;;;;11919:17:0;;;;;;;11952:40;;11902:6;;;11919:17;11902:6;;11952:40;;11883:16;;11952:40;11872:128;11809:191;:::o;5030:1264::-;5097:7;3328:1;3304:21;:19;:21::i;:::-;:25;3296:62;;;;-1:-1:-1;;;3296:62:0;;10038:2:1;3296:62:0;;;10020:21:1;10077:2;10057:18;;;10050:30;10116:26;10096:18;;;10089:54;10160:18;;3296:62:0;9836:348:1;3296:62:0;5117:16:::1;5152:12;:10;:12::i;:::-;2472::::0;;5136:28:::1;;;;:::i;:::-;5224:195;::::0;-1:-1:-1;;5259:10:0::1;4889:2:1::0;4885:15;;;4881:24;;5224:195:0::1;::::0;::::1;4869:37:1::0;5288:14:0::1;4940:15:1::0;;4936:24;4922:12;;;4915:46;5321:16:0::1;4977:12:1::0;;;4970:28;5356:14:0::1;5014:12:1::0;;;5007:28;5389:15:0::1;5051:13:1::0;;;5044:29;5117:47:0;;-1:-1:-1;5175:14:0::1;::::0;5117:47;;5089:13:1;;5224:195:0::1;;;;;;;;;;;;5200:230;;;;;;5192:239;;:250;;;;:::i;:::-;5455:13;5487:19:::0;;;:11:::1;:19;::::0;;;;;5175:267;;-1:-1:-1;5455:13:0;5483:304:::1;;-1:-1:-1::0;5632:6:0;5483:304:::1;;;-1:-1:-1::0;5756:19:0::1;::::0;;;:11:::1;:19;::::0;;;;;5483:304:::1;5864:11;:25;5876:12;5887:1;5876:8:::0;:12:::1;:::i;:::-;5864:25;;;;;;;;;;;;5893:1;5864:30;5860:331;;;5998:12;6009:1;5998:8:::0;:12:::1;:::i;:::-;5976:19;::::0;;;:11:::1;:19;::::0;;;;:34;5860:331:::1;;;6154:11;:25;6166:12;6177:1;6166:8:::0;:12:::1;:::i;:::-;6154:25:::0;;::::1;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;6154:25:0;;;;6132:19;;;:11:::1;:19:::0;;;;:47;5860:331:::1;6232:17;:15;:17::i;:::-;-1:-1:-1::0;6277:9:0::1;::::0;6269:17:::1;::::0;:5;:17:::1;:::i;:::-;6262:24;;;;;5030:1264:::0;:::o;37691:110::-;37767:26;37777:2;37781:7;37767:26;;;;;;;;;;;;:9;:26::i;41169:315::-;41324:8;-1:-1:-1;;;;;41315:17:0;:5;-1:-1:-1;;;;;41315:17:0;;;41307:55;;;;-1:-1:-1;;;41307:55:0;;9684:2:1;41307:55:0;;;9666:21:1;9723:2;9703:18;;;9696:30;9762:27;9742:18;;;9735:55;9807:18;;41307:55:0;9482:349:1;41307:55:0;-1:-1:-1;;;;;41373:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;41373:46:0;;;;;;;;;;41435:41;;6806::1;;;41435::0;;6779:18:1;41435:41:0;;;;;;;41169:315;;;:::o;36079:::-;36236:28;36246:4;36252:2;36256:7;36236:9;:28::i;:::-;36283:48;36306:4;36312:2;36316:7;36325:5;36283:22;:48::i;:::-;36275:111;;;;-1:-1:-1;;;36275:111:0;;;;;;;:::i;44854:102::-;44914:13;44943:7;44936:14;;;;;:::i;6719:723::-;6775:13;6996:10;6992:53;;-1:-1:-1;;7023:10:0;;;;;;;;;;;;-1:-1:-1;;;7023:10:0;;;;;6719:723::o;6992:53::-;7070:5;7055:12;7111:78;7118:9;;7111:78;;7144:8;;;;:::i;:::-;;-1:-1:-1;7167:10:0;;-1:-1:-1;7175:2:0;7167:10;;:::i;:::-;;;7111:78;;;7199:19;7231:6;7221:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7221:17:0;;7199:39;;7249:154;7256:10;;7249:154;;7283:11;7293:1;7283:11;;:::i;:::-;;-1:-1:-1;7352:10:0;7360:2;7352:5;:10;:::i;:::-;7339:24;;:2;:24;:::i;:::-;7326:39;;7309:6;7316;7309:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7309:56:0;;;;;;;;-1:-1:-1;7380:11:0;7389:2;7380:11;;:::i;:::-;;;7249:154;;38028:321;38158:18;38164:2;38168:7;38158:5;:18::i;:::-;38209:54;38240:1;38244:2;38248:7;38257:5;38209:22;:54::i;:::-;38187:154;;;;-1:-1:-1;;;38187:154:0;;;;;;;:::i;42049:799::-;42204:4;-1:-1:-1;;;;;42225:13:0;;13588:19;:23;42221:620;;42261:72;;-1:-1:-1;;;42261:72:0;;-1:-1:-1;;;;;42261:36:0;;;;;:72;;9290:10;;42312:4;;42318:7;;42327:5;;42261:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42261:72:0;;;;;;;;-1:-1:-1;;42261:72:0;;;;;;;;;;;;:::i;:::-;;;42257:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42503:13:0;;42499:272;;42546:60;;-1:-1:-1;;;42546:60:0;;;;;;;:::i;42499:272::-;42721:6;42715:13;42706:6;42702:2;42698:15;42691:38;42257:529;-1:-1:-1;;;;;;42384:51:0;-1:-1:-1;;;42384:51:0;;-1:-1:-1;42377:58:0;;42221:620;-1:-1:-1;42825:4:0;42049:799;;;;;;:::o;38685:439::-;-1:-1:-1;;;;;38765:16:0;;38757:61;;;;-1:-1:-1;;;38757:61:0;;12050:2:1;38757:61:0;;;12032:21:1;;;12069:18;;;12062:30;12128:34;12108:18;;;12101:62;12180:18;;38757:61:0;11848:356:1;38757:61:0;36772:4;36796:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36796:16:0;:30;38829:58;;;;-1:-1:-1;;;38829:58:0;;8922:2:1;38829:58:0;;;8904:21:1;8961:2;8941:18;;;8934:30;9000;8980:18;;;8973:58;9048:18;;38829:58:0;8720:352:1;38829:58:0;-1:-1:-1;;;;;38958:13:0;;;;;;:9;:13;;;;;:18;;38975:1;;38958:13;:18;;38975:1;;38958:18;:::i;:::-;;;;-1:-1:-1;;38987:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38987:21:0;-1:-1:-1;;;;;38987:21:0;;;;;;;;39026:33;;38987:16;;;39026:33;;38987:16;;39026:33;46382:21:::1;46311:98:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;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:72;;;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:45;;;532:1;529;522:12;491:45;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;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;828:160;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;5113:637::-;5393:3;5431:6;5425:13;5447:53;5493:6;5488:3;5481:4;5473:6;5469:17;5447:53;:::i;:::-;5563:13;;5522:16;;;;5585:57;5563:13;5522:16;5619:4;5607:17;;5585:57;:::i;:::-;-1:-1:-1;;;5664:20:1;;5693:22;;;5742:1;5731:13;;5113:637;-1:-1:-1;;;;5113:637:1:o;6173:488::-;-1:-1:-1;;;;;6442:15:1;;;6424:34;;6494:15;;6489:2;6474:18;;6467:43;6541:2;6526:18;;6519:34;;;6589:3;6584:2;6569:18;;6562:31;;;6367:4;;6610:45;;6635:19;;6627:6;6610:45;:::i;:::-;6602:53;6173:488;-1:-1:-1;;;;;;6173:488:1:o;6858:219::-;7007:2;6996:9;6989:21;6970:4;7027:44;7067:2;7056:9;7052:18;7044:6;7027:44;:::i;7488:414::-;7690:2;7672:21;;;7729:2;7709:18;;;7702:30;7768:34;7763:2;7748:18;;7741:62;-1:-1:-1;;;7834:2:1;7819:18;;7812:48;7892:3;7877:19;;7488:414::o;12971:356::-;13173:2;13155:21;;;13192:18;;;13185:30;13251:34;13246:2;13231:18;;13224:62;13318:2;13303:18;;12971:356::o;14150:413::-;14352:2;14334:21;;;14391:2;14371:18;;;14364:30;14430:34;14425:2;14410:18;;14403:62;-1:-1:-1;;;14496:2:1;14481:18;;14474:47;14553:3;14538:19;;14150:413::o;14568:403::-;14770:2;14752:21;;;14809:2;14789:18;;;14782:30;14848:34;14843:2;14828:18;;14821:62;-1:-1:-1;;;14914:2:1;14899:18;;14892:37;14961:3;14946:19;;14568:403::o;15507:128::-;15547:3;15578:1;15574:6;15571:1;15568:13;15565:39;;;15584:18;;:::i;:::-;-1:-1:-1;15620:9:1;;15507:128::o;15640:120::-;15680:1;15706;15696:35;;15711:18;;:::i;:::-;-1:-1:-1;15745:9:1;;15640:120::o;15765:168::-;15805:7;15871:1;15867;15863:6;15859:14;15856:1;15853:21;15848:1;15841:9;15834:17;15830:45;15827:71;;;15878:18;;:::i;:::-;-1:-1:-1;15918:9:1;;15765:168::o;15938:125::-;15978:4;16006:1;16003;16000:8;15997:34;;;16011:18;;:::i;:::-;-1:-1:-1;16048:9:1;;15938:125::o;16068:258::-;16140:1;16150:113;16164:6;16161:1;16158:13;16150:113;;;16240:11;;;16234:18;16221:11;;;16214:39;16186:2;16179:10;16150:113;;;16281:6;16278:1;16275:13;16272:48;;;-1:-1:-1;;16316:1:1;16298:16;;16291:27;16068:258::o;16331:380::-;16410:1;16406:12;;;;16453;;;16474:61;;16528:4;16520:6;16516:17;16506:27;;16474:61;16581:2;16573:6;16570:14;16550:18;16547:38;16544:161;;;16627:10;16622:3;16618:20;16615:1;16608:31;16662:4;16659:1;16652:15;16690:4;16687:1;16680:15;16544:161;;16331:380;;;:::o;16716:135::-;16755:3;-1:-1:-1;;16776:17:1;;16773:43;;;16796:18;;:::i;:::-;-1:-1:-1;16843:1:1;16832:13;;16716:135::o;16856:112::-;16888:1;16914;16904:35;;16919:18;;:::i;:::-;-1:-1:-1;16953:9:1;;16856:112::o;16973:127::-;17034:10;17029:3;17025:20;17022:1;17015:31;17065:4;17062:1;17055:15;17089:4;17086:1;17079:15;17105:127;17166:10;17161:3;17157:20;17154:1;17147:31;17197:4;17194:1;17187:15;17221:4;17218:1;17211:15;17237:127;17298:10;17293:3;17289:20;17286:1;17279:31;17329:4;17326:1;17319:15;17353:4;17350:1;17343:15;17369:127;17430:10;17425:3;17421:20;17418:1;17411:31;17461:4;17458:1;17451:15;17485:4;17482:1;17475:15;17501:131;-1:-1:-1;;;;;;17575:32:1;;17565:43;;17555:71;;17622:1;17619;17612:12

Swarm Source

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