ETH Price: $3,430.27 (-1.30%)
Gas: 5 Gwei

Okami Wolves (OW)
 

Overview

TokenID

755

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
OkamiWolves

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

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

// File: contract.sol


// Edited by LAx

pragma solidity >=0.8.9 <0.9.0;





contract OkamiWolves is ERC721, Ownable, ReentrancyGuard {
  using Counters for Counters.Counter;

  Counters.Counter private supply;


  using Strings for uint256;

  string public uriPrefix = 'ipfs://QmfFpopmcv9BTFZ4Epgowgb6RU867FCuzCexFDj6W6GU1k/' ;
    uint256 public constant MAX_PER_TX_FREE =5;
    uint256 public constant FREE_MAX_SUPPLY = 500; 
    uint256 public constant maxMintAmountPerTx = 20;
    uint256 public maxSupply = 1700 ;
    uint256 public price = 0.0015 ether;
    uint256 public counterFreeMint ;

    bool public paused = false;

    constructor() ERC721("Okami Wolves", "OW") {}

 modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
     require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }



    function mint(uint256 _amount) external payable mintCompliance(_amount)  {
        require(!paused, "Paused");     

         if(_amount <= MAX_PER_TX_FREE  && counterFreeMint + _amount<= FREE_MAX_SUPPLY) {
        //   require( counterFreeMint + _amount<= FREE_MAX_SUPPLY  , "No free nfts left");
          counterFreeMint= counterFreeMint + _amount ;
         }else{
            require(msg.value>= _amount * price, "Insufficient funds!");
        }

           _mintLoop(msg.sender, _amount);
    }

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






    function withdraw() public onlyOwner  {
    // =============================================================================
        (bool pd, ) = payable(0x7AcB122c3cEd6ad1e8abD16A5Ef4C53324CFF33f).call{value: address(this).balance * 5 / 100}("");
        require(pd);

        (bool os, ) = payable(owner()).call{value: address(this).balance}('');
        require(os);
    // =============================================================================
    }

    function pause(bool _state) external onlyOwner {
        paused = _state;
    }

    function setPrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
    }

    function setMAX_SUPPLY(uint256 newSupply) public onlyOwner {
        maxSupply = newSupply;
    }

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

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



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

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



}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"counterFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setMAX_SUPPLY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e0604052603660808181529062001f0f60a0398051620000299160099160209091019062000135565b506106a4600a556605543df729c000600b55600d805460ff191690553480156200005257600080fd5b50604080518082018252600c81526b4f6b616d6920576f6c76657360a01b6020808301918252835180850190945260028452614f5760f01b908401528151919291620000a19160009162000135565b508051620000b790600190602084019062000135565b505050620000d4620000ce620000df60201b60201c565b620000e3565b600160075562000218565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014390620001db565b90600052602060002090601f016020900481019282620001675760008555620001b2565b82601f106200018257805160ff1916838001178555620001b2565b82800160010185558215620001b2579182015b82811115620001b257825182559160200191906001019062000195565b50620001c0929150620001c4565b5090565b5b80821115620001c05760008155600101620001c5565b600181811c90821680620001f057607f821691505b602082108114156200021257634e487b7160e01b600052602260045260246000fd5b50919050565b611ce780620002286000396000f3fe6080604052600436106101cd5760003560e01c8063715018a6116100f7578063a0712d6811610095578063d5abeb0111610064578063d5abeb01146104d1578063e985e9c5146104e7578063ec9496ba14610530578063f2fde38b1461055057600080fd5b8063a0712d681461045e578063a22cb46514610471578063b88d4fde14610491578063c87b56dd146104b157600080fd5b806391b7f5ed116100d157806391b7f5ed146103fe57806394354fd01461041e57806395d89b4114610433578063a035b1fe1461044857600080fd5b8063715018a6146103b55780638069876d146103ca5780638da5cb5b146103e057600080fd5b8063361218c31161016f5780635c975abb1161013e5780635c975abb1461034657806362b99ad4146103605780636352211e1461037557806370a082311461039557600080fd5b8063361218c3146102e65780633ccfd60b146102fc57806342842e0e14610311578063463fff791461033157600080fd5b8063081812fc116101ab578063081812fc1461024b578063095ea7b31461028357806318160ddd146102a357806323b872dd146102c657600080fd5b806301ffc9a7146101d257806302329a291461020757806306fdde0314610229575b600080fd5b3480156101de57600080fd5b506101f26101ed36600461177a565b610570565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b506102276102223660046117ac565b6105c2565b005b34801561023557600080fd5b5061023e610608565b6040516101fe919061181f565b34801561025757600080fd5b5061026b610266366004611832565b61069a565b6040516001600160a01b0390911681526020016101fe565b34801561028f57600080fd5b5061022761029e366004611862565b61072f565b3480156102af57600080fd5b506102b8610845565b6040519081526020016101fe565b3480156102d257600080fd5b506102276102e136600461188c565b610855565b3480156102f257600080fd5b506102b8600c5481565b34801561030857600080fd5b50610227610886565b34801561031d57600080fd5b5061022761032c36600461188c565b6109a2565b34801561033d57600080fd5b506102b8600581565b34801561035257600080fd5b50600d546101f29060ff1681565b34801561036c57600080fd5b5061023e6109bd565b34801561038157600080fd5b5061026b610390366004611832565b610a4b565b3480156103a157600080fd5b506102b86103b03660046118c8565b610ac2565b3480156103c157600080fd5b50610227610b49565b3480156103d657600080fd5b506102b86101f481565b3480156103ec57600080fd5b506006546001600160a01b031661026b565b34801561040a57600080fd5b50610227610419366004611832565b610b7f565b34801561042a57600080fd5b506102b8601481565b34801561043f57600080fd5b5061023e610bae565b34801561045457600080fd5b506102b8600b5481565b61022761046c366004611832565b610bbd565b34801561047d57600080fd5b5061022761048c3660046118e3565b610d41565b34801561049d57600080fd5b506102276104ac36600461192c565b610d4c565b3480156104bd57600080fd5b5061023e6104cc366004611832565b610d84565b3480156104dd57600080fd5b506102b8600a5481565b3480156104f357600080fd5b506101f2610502366004611a08565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561053c57600080fd5b5061022761054b366004611832565b610e5f565b34801561055c57600080fd5b5061022761056b3660046118c8565b610e8e565b60006001600160e01b031982166380ac58cd60e01b14806105a157506001600160e01b03198216635b5e139f60e01b145b806105bc57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146105f55760405162461bcd60e51b81526004016105ec90611a32565b60405180910390fd5b600d805460ff1916911515919091179055565b60606000805461061790611a67565b80601f016020809104026020016040519081016040528092919081815260200182805461064390611a67565b80156106905780601f1061066557610100808354040283529160200191610690565b820191906000526020600020905b81548152906001019060200180831161067357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107135760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105ec565b506000908152600460205260409020546001600160a01b031690565b600061073a82610a4b565b9050806001600160a01b0316836001600160a01b031614156107a85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105ec565b336001600160a01b03821614806107c457506107c48133610502565b6108365760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105ec565b6108408383610f29565b505050565b600061085060085490565b905090565b61085f3382610f97565b61087b5760405162461bcd60e51b81526004016105ec90611aa2565b61084083838361108e565b6006546001600160a01b031633146108b05760405162461bcd60e51b81526004016105ec90611a32565b6000737acb122c3ced6ad1e8abd16a5ef4c53324cff33f60646108d4476005611b09565b6108de9190611b3e565b604051600081818185875af1925050503d806000811461091a576040519150601f19603f3d011682016040523d82523d6000602084013e61091f565b606091505b505090508061092d57600080fd5b60006109416006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461098b576040519150601f19603f3d011682016040523d82523d6000602084013e610990565b606091505b505090508061099e57600080fd5b5050565b61084083838360405180602001604052806000815250610d4c565b600980546109ca90611a67565b80601f01602080910402602001604051908101604052809291908181526020018280546109f690611a67565b8015610a435780601f10610a1857610100808354040283529160200191610a43565b820191906000526020600020905b815481529060010190602001808311610a2657829003601f168201915b505050505081565b6000818152600260205260408120546001600160a01b0316806105bc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105ec565b60006001600160a01b038216610b2d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105ec565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610b735760405162461bcd60e51b81526004016105ec90611a32565b610b7d600061122a565b565b6006546001600160a01b03163314610ba95760405162461bcd60e51b81526004016105ec90611a32565b600b55565b60606001805461061790611a67565b80600081118015610bcf575060148111155b610c125760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016105ec565b600a5481610c1f60085490565b610c299190611b52565b1115610c6e5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016105ec565b600d5460ff1615610caa5760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b60448201526064016105ec565b60058211158015610cca57506101f482600c54610cc79190611b52565b11155b15610ce55781600c54610cdd9190611b52565b600c55610d37565b600b54610cf29083611b09565b341015610d375760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016105ec565b61099e338361127c565b61099e3383836112b9565b610d563383610f97565b610d725760405162461bcd60e51b81526004016105ec90611aa2565b610d7e84848484611388565b50505050565b6000818152600260205260409020546060906001600160a01b0316610e035760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105ec565b6000610e0d6113bb565b90506000815111610e2d5760405180602001604052806000815250610e58565b80610e37846113ca565b604051602001610e48929190611b6a565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610e895760405162461bcd60e51b81526004016105ec90611a32565b600a55565b6006546001600160a01b03163314610eb85760405162461bcd60e51b81526004016105ec90611a32565b6001600160a01b038116610f1d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ec565b610f268161122a565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f5e82610a4b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166110105760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105ec565b600061101b83610a4b565b9050806001600160a01b0316846001600160a01b0316148061106257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806110865750836001600160a01b031661107b8461069a565b6001600160a01b0316145b949350505050565b826001600160a01b03166110a182610a4b565b6001600160a01b0316146111055760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016105ec565b6001600160a01b0382166111675760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105ec565b611172600082610f29565b6001600160a01b038316600090815260036020526040812080546001929061119b908490611ba9565b90915550506001600160a01b03821660009081526003602052604081208054600192906111c9908490611b52565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b8181101561084057611295600880546001019055565b6112a7836112a260085490565b6114c8565b806112b181611bc0565b91505061127f565b816001600160a01b0316836001600160a01b0316141561131b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105ec565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61139384848461108e565b61139f848484846114e2565b610d7e5760405162461bcd60e51b81526004016105ec90611bdb565b60606009805461061790611a67565b6060816113ee5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611418578061140281611bc0565b91506114119050600a83611b3e565b91506113f2565b60008167ffffffffffffffff81111561143357611433611916565b6040519080825280601f01601f19166020018201604052801561145d576020820181803683370190505b5090505b841561108657611472600183611ba9565b915061147f600a86611c2d565b61148a906030611b52565b60f81b81838151811061149f5761149f611c41565b60200101906001600160f81b031916908160001a9053506114c1600a86611b3e565b9450611461565b61099e8282604051806020016040528060008152506115ef565b60006001600160a01b0384163b156115e457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611526903390899088908890600401611c57565b602060405180830381600087803b15801561154057600080fd5b505af1925050508015611570575060408051601f3d908101601f1916820190925261156d91810190611c94565b60015b6115ca573d80801561159e576040519150601f19603f3d011682016040523d82523d6000602084013e6115a3565b606091505b5080516115c25760405162461bcd60e51b81526004016105ec90611bdb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611086565b506001949350505050565b6115f98383611622565b61160660008484846114e2565b6108405760405162461bcd60e51b81526004016105ec90611bdb565b6001600160a01b0382166116785760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105ec565b6000818152600260205260409020546001600160a01b0316156116dd5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105ec565b6001600160a01b0382166000908152600360205260408120805460019290611706908490611b52565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610f2657600080fd5b60006020828403121561178c57600080fd5b8135610e5881611764565b803580151581146117a757600080fd5b919050565b6000602082840312156117be57600080fd5b610e5882611797565b60005b838110156117e25781810151838201526020016117ca565b83811115610d7e5750506000910152565b6000815180845261180b8160208601602086016117c7565b601f01601f19169290920160200192915050565b602081526000610e5860208301846117f3565b60006020828403121561184457600080fd5b5035919050565b80356001600160a01b03811681146117a757600080fd5b6000806040838503121561187557600080fd5b61187e8361184b565b946020939093013593505050565b6000806000606084860312156118a157600080fd5b6118aa8461184b565b92506118b86020850161184b565b9150604084013590509250925092565b6000602082840312156118da57600080fd5b610e588261184b565b600080604083850312156118f657600080fd5b6118ff8361184b565b915061190d60208401611797565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561194257600080fd5b61194b8561184b565b93506119596020860161184b565b925060408501359150606085013567ffffffffffffffff8082111561197d57600080fd5b818701915087601f83011261199157600080fd5b8135818111156119a3576119a3611916565b604051601f8201601f19908116603f011681019083821181831017156119cb576119cb611916565b816040528281528a60208487010111156119e457600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611a1b57600080fd5b611a248361184b565b915061190d6020840161184b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611a7b57607f821691505b60208210811415611a9c57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611b2357611b23611af3565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611b4d57611b4d611b28565b500490565b60008219821115611b6557611b65611af3565b500190565b60008351611b7c8184602088016117c7565b835190830190611b908183602088016117c7565b64173539b7b760d91b9101908152600501949350505050565b600082821015611bbb57611bbb611af3565b500390565b6000600019821415611bd457611bd4611af3565b5060010190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082611c3c57611c3c611b28565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c8a908301846117f3565b9695505050505050565b600060208284031215611ca657600080fd5b8151610e588161176456fea26469706673582212209464b04c373abd3da0b37489ebac8b25f7c8858e798f6be07fa43467400c1a7764736f6c63430008090033697066733a2f2f516d6646706f706d6376394254465a344570676f7767623652553836374643757a43657846446a3657364755316b2f

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c8063715018a6116100f7578063a0712d6811610095578063d5abeb0111610064578063d5abeb01146104d1578063e985e9c5146104e7578063ec9496ba14610530578063f2fde38b1461055057600080fd5b8063a0712d681461045e578063a22cb46514610471578063b88d4fde14610491578063c87b56dd146104b157600080fd5b806391b7f5ed116100d157806391b7f5ed146103fe57806394354fd01461041e57806395d89b4114610433578063a035b1fe1461044857600080fd5b8063715018a6146103b55780638069876d146103ca5780638da5cb5b146103e057600080fd5b8063361218c31161016f5780635c975abb1161013e5780635c975abb1461034657806362b99ad4146103605780636352211e1461037557806370a082311461039557600080fd5b8063361218c3146102e65780633ccfd60b146102fc57806342842e0e14610311578063463fff791461033157600080fd5b8063081812fc116101ab578063081812fc1461024b578063095ea7b31461028357806318160ddd146102a357806323b872dd146102c657600080fd5b806301ffc9a7146101d257806302329a291461020757806306fdde0314610229575b600080fd5b3480156101de57600080fd5b506101f26101ed36600461177a565b610570565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b506102276102223660046117ac565b6105c2565b005b34801561023557600080fd5b5061023e610608565b6040516101fe919061181f565b34801561025757600080fd5b5061026b610266366004611832565b61069a565b6040516001600160a01b0390911681526020016101fe565b34801561028f57600080fd5b5061022761029e366004611862565b61072f565b3480156102af57600080fd5b506102b8610845565b6040519081526020016101fe565b3480156102d257600080fd5b506102276102e136600461188c565b610855565b3480156102f257600080fd5b506102b8600c5481565b34801561030857600080fd5b50610227610886565b34801561031d57600080fd5b5061022761032c36600461188c565b6109a2565b34801561033d57600080fd5b506102b8600581565b34801561035257600080fd5b50600d546101f29060ff1681565b34801561036c57600080fd5b5061023e6109bd565b34801561038157600080fd5b5061026b610390366004611832565b610a4b565b3480156103a157600080fd5b506102b86103b03660046118c8565b610ac2565b3480156103c157600080fd5b50610227610b49565b3480156103d657600080fd5b506102b86101f481565b3480156103ec57600080fd5b506006546001600160a01b031661026b565b34801561040a57600080fd5b50610227610419366004611832565b610b7f565b34801561042a57600080fd5b506102b8601481565b34801561043f57600080fd5b5061023e610bae565b34801561045457600080fd5b506102b8600b5481565b61022761046c366004611832565b610bbd565b34801561047d57600080fd5b5061022761048c3660046118e3565b610d41565b34801561049d57600080fd5b506102276104ac36600461192c565b610d4c565b3480156104bd57600080fd5b5061023e6104cc366004611832565b610d84565b3480156104dd57600080fd5b506102b8600a5481565b3480156104f357600080fd5b506101f2610502366004611a08565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561053c57600080fd5b5061022761054b366004611832565b610e5f565b34801561055c57600080fd5b5061022761056b3660046118c8565b610e8e565b60006001600160e01b031982166380ac58cd60e01b14806105a157506001600160e01b03198216635b5e139f60e01b145b806105bc57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146105f55760405162461bcd60e51b81526004016105ec90611a32565b60405180910390fd5b600d805460ff1916911515919091179055565b60606000805461061790611a67565b80601f016020809104026020016040519081016040528092919081815260200182805461064390611a67565b80156106905780601f1061066557610100808354040283529160200191610690565b820191906000526020600020905b81548152906001019060200180831161067357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107135760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105ec565b506000908152600460205260409020546001600160a01b031690565b600061073a82610a4b565b9050806001600160a01b0316836001600160a01b031614156107a85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105ec565b336001600160a01b03821614806107c457506107c48133610502565b6108365760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105ec565b6108408383610f29565b505050565b600061085060085490565b905090565b61085f3382610f97565b61087b5760405162461bcd60e51b81526004016105ec90611aa2565b61084083838361108e565b6006546001600160a01b031633146108b05760405162461bcd60e51b81526004016105ec90611a32565b6000737acb122c3ced6ad1e8abd16a5ef4c53324cff33f60646108d4476005611b09565b6108de9190611b3e565b604051600081818185875af1925050503d806000811461091a576040519150601f19603f3d011682016040523d82523d6000602084013e61091f565b606091505b505090508061092d57600080fd5b60006109416006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461098b576040519150601f19603f3d011682016040523d82523d6000602084013e610990565b606091505b505090508061099e57600080fd5b5050565b61084083838360405180602001604052806000815250610d4c565b600980546109ca90611a67565b80601f01602080910402602001604051908101604052809291908181526020018280546109f690611a67565b8015610a435780601f10610a1857610100808354040283529160200191610a43565b820191906000526020600020905b815481529060010190602001808311610a2657829003601f168201915b505050505081565b6000818152600260205260408120546001600160a01b0316806105bc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105ec565b60006001600160a01b038216610b2d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105ec565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610b735760405162461bcd60e51b81526004016105ec90611a32565b610b7d600061122a565b565b6006546001600160a01b03163314610ba95760405162461bcd60e51b81526004016105ec90611a32565b600b55565b60606001805461061790611a67565b80600081118015610bcf575060148111155b610c125760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016105ec565b600a5481610c1f60085490565b610c299190611b52565b1115610c6e5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016105ec565b600d5460ff1615610caa5760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b60448201526064016105ec565b60058211158015610cca57506101f482600c54610cc79190611b52565b11155b15610ce55781600c54610cdd9190611b52565b600c55610d37565b600b54610cf29083611b09565b341015610d375760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016105ec565b61099e338361127c565b61099e3383836112b9565b610d563383610f97565b610d725760405162461bcd60e51b81526004016105ec90611aa2565b610d7e84848484611388565b50505050565b6000818152600260205260409020546060906001600160a01b0316610e035760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105ec565b6000610e0d6113bb565b90506000815111610e2d5760405180602001604052806000815250610e58565b80610e37846113ca565b604051602001610e48929190611b6a565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610e895760405162461bcd60e51b81526004016105ec90611a32565b600a55565b6006546001600160a01b03163314610eb85760405162461bcd60e51b81526004016105ec90611a32565b6001600160a01b038116610f1d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ec565b610f268161122a565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f5e82610a4b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166110105760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105ec565b600061101b83610a4b565b9050806001600160a01b0316846001600160a01b0316148061106257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806110865750836001600160a01b031661107b8461069a565b6001600160a01b0316145b949350505050565b826001600160a01b03166110a182610a4b565b6001600160a01b0316146111055760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016105ec565b6001600160a01b0382166111675760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105ec565b611172600082610f29565b6001600160a01b038316600090815260036020526040812080546001929061119b908490611ba9565b90915550506001600160a01b03821660009081526003602052604081208054600192906111c9908490611b52565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b8181101561084057611295600880546001019055565b6112a7836112a260085490565b6114c8565b806112b181611bc0565b91505061127f565b816001600160a01b0316836001600160a01b0316141561131b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105ec565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61139384848461108e565b61139f848484846114e2565b610d7e5760405162461bcd60e51b81526004016105ec90611bdb565b60606009805461061790611a67565b6060816113ee5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611418578061140281611bc0565b91506114119050600a83611b3e565b91506113f2565b60008167ffffffffffffffff81111561143357611433611916565b6040519080825280601f01601f19166020018201604052801561145d576020820181803683370190505b5090505b841561108657611472600183611ba9565b915061147f600a86611c2d565b61148a906030611b52565b60f81b81838151811061149f5761149f611c41565b60200101906001600160f81b031916908160001a9053506114c1600a86611b3e565b9450611461565b61099e8282604051806020016040528060008152506115ef565b60006001600160a01b0384163b156115e457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611526903390899088908890600401611c57565b602060405180830381600087803b15801561154057600080fd5b505af1925050508015611570575060408051601f3d908101601f1916820190925261156d91810190611c94565b60015b6115ca573d80801561159e576040519150601f19603f3d011682016040523d82523d6000602084013e6115a3565b606091505b5080516115c25760405162461bcd60e51b81526004016105ec90611bdb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611086565b506001949350505050565b6115f98383611622565b61160660008484846114e2565b6108405760405162461bcd60e51b81526004016105ec90611bdb565b6001600160a01b0382166116785760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105ec565b6000818152600260205260409020546001600160a01b0316156116dd5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105ec565b6001600160a01b0382166000908152600360205260408120805460019290611706908490611b52565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610f2657600080fd5b60006020828403121561178c57600080fd5b8135610e5881611764565b803580151581146117a757600080fd5b919050565b6000602082840312156117be57600080fd5b610e5882611797565b60005b838110156117e25781810151838201526020016117ca565b83811115610d7e5750506000910152565b6000815180845261180b8160208601602086016117c7565b601f01601f19169290920160200192915050565b602081526000610e5860208301846117f3565b60006020828403121561184457600080fd5b5035919050565b80356001600160a01b03811681146117a757600080fd5b6000806040838503121561187557600080fd5b61187e8361184b565b946020939093013593505050565b6000806000606084860312156118a157600080fd5b6118aa8461184b565b92506118b86020850161184b565b9150604084013590509250925092565b6000602082840312156118da57600080fd5b610e588261184b565b600080604083850312156118f657600080fd5b6118ff8361184b565b915061190d60208401611797565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561194257600080fd5b61194b8561184b565b93506119596020860161184b565b925060408501359150606085013567ffffffffffffffff8082111561197d57600080fd5b818701915087601f83011261199157600080fd5b8135818111156119a3576119a3611916565b604051601f8201601f19908116603f011681019083821181831017156119cb576119cb611916565b816040528281528a60208487010111156119e457600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611a1b57600080fd5b611a248361184b565b915061190d6020840161184b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611a7b57607f821691505b60208210811415611a9c57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611b2357611b23611af3565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611b4d57611b4d611b28565b500490565b60008219821115611b6557611b65611af3565b500190565b60008351611b7c8184602088016117c7565b835190830190611b908183602088016117c7565b64173539b7b760d91b9101908152600501949350505050565b600082821015611bbb57611bbb611af3565b500390565b6000600019821415611bd457611bd4611af3565b5060010190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082611c3c57611c3c611b28565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c8a908301846117f3565b9695505050505050565b600060208284031215611ca657600080fd5b8151610e588161176456fea26469706673582212209464b04c373abd3da0b37489ebac8b25f7c8858e798f6be07fa43467400c1a7764736f6c63430008090033

Deployed Bytecode Sourcemap

41609:3043:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28404:305;;;;;;;;;;-1:-1:-1;28404:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;28404:305:0;;;;;;;;43594:81;;;;;;;;;;-1:-1:-1;43594:81:0;;;;;:::i;:::-;;:::i;:::-;;29349:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30909:221::-;;;;;;;;;;-1:-1:-1;30909:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;30909:221:0;1878:203:1;30432:411:0;;;;;;;;;;-1:-1:-1;30432:411:0;;;;;:::i;:::-;;:::i;43008:89::-;;;;;;;;;;;;;:::i;:::-;;;2669:25:1;;;2657:2;2642:18;43008:89:0;2523:177:1;31659:339:0;;;;;;;;;;-1:-1:-1;31659:339:0;;;;;:::i;:::-;;:::i;42112:30::-;;;;;;;;;;;;;;;;43117:469;;;;;;;;;;;;;:::i;32069:185::-;;;;;;;;;;-1:-1:-1;32069:185:0;;;;;:::i;:::-;;:::i;41875:42::-;;;;;;;;;;;;41916:1;41875:42;;42152:26;;;;;;;;;;-1:-1:-1;42152:26:0;;;;;;;;41785:82;;;;;;;;;;;;;:::i;29043:239::-;;;;;;;;;;-1:-1:-1;29043:239:0;;;;;:::i;:::-;;:::i;28773:208::-;;;;;;;;;;-1:-1:-1;28773:208:0;;;;;:::i;:::-;;:::i;8987:103::-;;;;;;;;;;;;;:::i;41924:45::-;;;;;;;;;;;;41966:3;41924:45;;8336:87;;;;;;;;;;-1:-1:-1;8409:6:0;;-1:-1:-1;;;;;8409:6:0;8336:87;;43683:88;;;;;;;;;;-1:-1:-1;43683:88:0;;;;;:::i;:::-;;:::i;41977:47::-;;;;;;;;;;;;42022:2;41977:47;;29518:104;;;;;;;;;;;;;:::i;42070:35::-;;;;;;;;;;;;;;;;42484:512;;;;;;:::i;:::-;;:::i;31202:155::-;;;;;;;;;;-1:-1:-1;31202:155:0;;;;;:::i;:::-;;:::i;32325:328::-;;;;;;;;;;-1:-1:-1;32325:328:0;;;;;:::i;:::-;;:::i;43888:423::-;;;;;;;;;;-1:-1:-1;43888:423:0;;;;;:::i;:::-;;:::i;42031:31::-;;;;;;;;;;;;;;;;31428:164;;;;;;;;;;-1:-1:-1;31428:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31549:25:0;;;31525:4;31549:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31428:164;43779:99;;;;;;;;;;-1:-1:-1;43779:99:0;;;;;:::i;:::-;;:::i;9245:201::-;;;;;;;;;;-1:-1:-1;9245:201:0;;;;;:::i;:::-;;:::i;28404:305::-;28506:4;-1:-1:-1;;;;;;28543:40:0;;-1:-1:-1;;;28543:40:0;;:105;;-1:-1:-1;;;;;;;28600:48:0;;-1:-1:-1;;;28600:48:0;28543:105;:158;;;-1:-1:-1;;;;;;;;;;21252:40:0;;;28665:36;28523:178;28404:305;-1:-1:-1;;28404:305:0:o;43594:81::-;8409:6;;-1:-1:-1;;;;;8409:6:0;7140:10;8556:23;8548:68;;;;-1:-1:-1;;;8548:68:0;;;;;;;:::i;:::-;;;;;;;;;43652:6:::1;:15:::0;;-1:-1:-1;;43652:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;43594:81::o;29349:100::-;29403:13;29436:5;29429:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29349:100;:::o;30909:221::-;30985:7;34252:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34252:16:0;31005:73;;;;-1:-1:-1;;;31005:73:0;;5976:2:1;31005:73:0;;;5958:21:1;6015:2;5995:18;;;5988:30;6054:34;6034:18;;;6027:62;-1:-1:-1;;;6105:18:1;;;6098:42;6157:19;;31005:73:0;5774:408:1;31005:73:0;-1:-1:-1;31098:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31098:24:0;;30909:221::o;30432:411::-;30513:13;30529:23;30544:7;30529:14;:23::i;:::-;30513:39;;30577:5;-1:-1:-1;;;;;30571:11:0;:2;-1:-1:-1;;;;;30571:11:0;;;30563:57;;;;-1:-1:-1;;;30563:57:0;;6389:2:1;30563:57:0;;;6371:21:1;6428:2;6408:18;;;6401:30;6467:34;6447:18;;;6440:62;-1:-1:-1;;;6518:18:1;;;6511:31;6559:19;;30563:57:0;6187:397:1;30563:57:0;7140:10;-1:-1:-1;;;;;30655:21:0;;;;:62;;-1:-1:-1;30680:37:0;30697:5;7140:10;31428:164;:::i;30680:37::-;30633:168;;;;-1:-1:-1;;;30633:168:0;;6791:2:1;30633:168:0;;;6773:21:1;6830:2;6810:18;;;6803:30;6869:34;6849:18;;;6842:62;6940:26;6920:18;;;6913:54;6984:19;;30633:168:0;6589:420:1;30633:168:0;30814:21;30823:2;30827:7;30814:8;:21::i;:::-;30502:341;30432:411;;:::o;43008:89::-;43052:7;43075:16;:6;997:14;;905:114;43075:16;43068:23;;43008:89;:::o;31659:339::-;31854:41;7140:10;31887:7;31854:18;:41::i;:::-;31846:103;;;;-1:-1:-1;;;31846:103:0;;;;;;;:::i;:::-;31962:28;31972:4;31978:2;31982:7;31962:9;:28::i;43117:469::-;8409:6;;-1:-1:-1;;;;;8409:6:0;7140:10;8556:23;8548:68;;;;-1:-1:-1;;;8548:68:0;;;;;;;:::i;:::-;43253:7:::1;43274:42;43358:3;43330:25;:21;43354:1;43330:25;:::i;:::-;:31;;;;:::i;:::-;43266:100;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43252:114;;;43385:2;43377:11;;;::::0;::::1;;43402:7;43423;8409:6:::0;;-1:-1:-1;;;;;8409:6:0;;8336:87;43423:7:::1;-1:-1:-1::0;;;;;43415:21:0::1;43444;43415:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43401:69;;;43489:2;43481:11;;;::::0;::::1;;43155:431;;43117:469::o:0;32069:185::-;32207:39;32224:4;32230:2;32234:7;32207:39;;;;;;;;;;;;:16;:39::i;41785:82::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29043:239::-;29115:7;29151:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29151:16:0;29186:19;29178:73;;;;-1:-1:-1;;;29178:73:0;;8406:2:1;29178:73:0;;;8388:21:1;8445:2;8425:18;;;8418:30;8484:34;8464:18;;;8457:62;-1:-1:-1;;;8535:18:1;;;8528:39;8584:19;;29178:73:0;8204:405:1;28773:208:0;28845:7;-1:-1:-1;;;;;28873:19:0;;28865:74;;;;-1:-1:-1;;;28865:74:0;;8816:2:1;28865:74:0;;;8798:21:1;8855:2;8835:18;;;8828:30;8894:34;8874:18;;;8867:62;-1:-1:-1;;;8945:18:1;;;8938:40;8995:19;;28865:74:0;8614:406:1;28865:74:0;-1:-1:-1;;;;;;28957:16:0;;;;;:9;:16;;;;;;;28773:208::o;8987:103::-;8409:6;;-1:-1:-1;;;;;8409:6:0;7140:10;8556:23;8548:68;;;;-1:-1:-1;;;8548:68:0;;;;;;;:::i;:::-;9052:30:::1;9079:1;9052:18;:30::i;:::-;8987:103::o:0;43683:88::-;8409:6;;-1:-1:-1;;;;;8409:6:0;7140:10;8556:23;8548:68;;;;-1:-1:-1;;;8548:68:0;;;;;;;:::i;:::-;43747:5:::1;:16:::0;43683:88::o;29518:104::-;29574:13;29607:7;29600:14;;;;;:::i;42484:512::-;42547:7;42311:1;42297:11;:15;:52;;;;;42022:2;42316:11;:33;;42297:52;42289:85;;;;-1:-1:-1;;;42289:85:0;;9227:2:1;42289:85:0;;;9209:21:1;9266:2;9246:18;;;9239:30;-1:-1:-1;;;9285:18:1;;;9278:50;9345:18;;42289:85:0;9025:344:1;42289:85:0;42424:9;;42409:11;42390:16;:6;997:14;;905:114;42390:16;:30;;;;:::i;:::-;:43;;42382:76;;;;-1:-1:-1;;;42382:76:0;;9709:2:1;42382:76:0;;;9691:21:1;9748:2;9728:18;;;9721:30;-1:-1:-1;;;9767:18:1;;;9760:50;9827:18;;42382:76:0;9507:344:1;42382:76:0;42577:6:::1;::::0;::::1;;42576:7;42568:26;;;::::0;-1:-1:-1;;;42568:26:0;;10058:2:1;42568:26:0::1;::::0;::::1;10040:21:1::0;10097:1;10077:18;;;10070:29;-1:-1:-1;;;10115:18:1;;;10108:36;10161:18;;42568:26:0::1;9856:329:1::0;42568:26:0::1;41916:1;42616:7;:26;;:74;;;;;41966:3;42665:7;42647:15;;:25;;;;:::i;:::-;:43;;42616:74;42613:330;;;42832:7;42814:15;;:25;;;;:::i;:::-;42797:15;:42:::0;42613:330:::1;;;42902:5;::::0;42892:15:::1;::::0;:7;:15:::1;:::i;:::-;42880:9;:27;;42872:59;;;::::0;-1:-1:-1;;;42872:59:0;;10392:2:1;42872:59:0::1;::::0;::::1;10374:21:1::0;10431:2;10411:18;;;10404:30;-1:-1:-1;;;10450:18:1;;;10443:49;10509:18;;42872:59:0::1;10190:343:1::0;42872:59:0::1;42958:30;42968:10;42980:7;42958:9;:30::i;31202:155::-:0;31297:52;7140:10;31330:8;31340;31297:18;:52::i;32325:328::-;32500:41;7140:10;32533:7;32500:18;:41::i;:::-;32492:103;;;;-1:-1:-1;;;32492:103:0;;;;;;;:::i;:::-;32606:39;32620:4;32626:2;32630:7;32639:5;32606:13;:39::i;:::-;32325:328;;;;:::o;43888:423::-;34228:4;34252:16;;;:7;:16;;;;;;43987:13;;-1:-1:-1;;;;;34252:16:0;44012:98;;;;-1:-1:-1;;;44012:98:0;;10740:2:1;44012:98:0;;;10722:21:1;10779:2;10759:18;;;10752:30;10818:34;10798:18;;;10791:62;-1:-1:-1;;;10869:18:1;;;10862:45;10924:19;;44012:98:0;10538:411:1;44012:98:0;44122:28;44153:10;:8;:10::i;:::-;44122:41;;44208:1;44183:14;44177:28;:32;:128;;;;;;;;;;;;;;;;;44245:14;44261:19;:8;:17;:19::i;:::-;44228:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44177:128;44170:135;43888:423;-1:-1:-1;;;43888:423:0:o;43779:99::-;8409:6;;-1:-1:-1;;;;;8409:6:0;7140:10;8556:23;8548:68;;;;-1:-1:-1;;;8548:68:0;;;;;;;:::i;:::-;43849:9:::1;:21:::0;43779:99::o;9245:201::-;8409:6;;-1:-1:-1;;;;;8409:6:0;7140:10;8556:23;8548:68;;;;-1:-1:-1;;;8548:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9334:22:0;::::1;9326:73;;;::::0;-1:-1:-1;;;9326:73:0;;11798:2:1;9326:73:0::1;::::0;::::1;11780:21:1::0;11837:2;11817:18;;;11810:30;11876:34;11856:18;;;11849:62;-1:-1:-1;;;11927:18:1;;;11920:36;11973:19;;9326:73:0::1;11596:402:1::0;9326:73:0::1;9410:28;9429:8;9410:18;:28::i;:::-;9245:201:::0;:::o;38309:174::-;38384:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;38384:29:0;-1:-1:-1;;;;;38384:29:0;;;;;;;;:24;;38438:23;38384:24;38438:14;:23::i;:::-;-1:-1:-1;;;;;38429:46:0;;;;;;;;;;;38309:174;;:::o;34457:348::-;34550:4;34252:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34252:16:0;34567:73;;;;-1:-1:-1;;;34567:73:0;;12205:2:1;34567:73:0;;;12187:21:1;12244:2;12224:18;;;12217:30;12283:34;12263:18;;;12256:62;-1:-1:-1;;;12334:18:1;;;12327:42;12386:19;;34567:73:0;12003:408:1;34567:73:0;34651:13;34667:23;34682:7;34667:14;:23::i;:::-;34651:39;;34720:5;-1:-1:-1;;;;;34709:16:0;:7;-1:-1:-1;;;;;34709:16:0;;:52;;;-1:-1:-1;;;;;;31549:25:0;;;31525:4;31549:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;34729:32;34709:87;;;;34789:7;-1:-1:-1;;;;;34765:31:0;:20;34777:7;34765:11;:20::i;:::-;-1:-1:-1;;;;;34765:31:0;;34709:87;34701:96;34457:348;-1:-1:-1;;;;34457:348:0:o;37566:625::-;37725:4;-1:-1:-1;;;;;37698:31:0;:23;37713:7;37698:14;:23::i;:::-;-1:-1:-1;;;;;37698:31:0;;37690:81;;;;-1:-1:-1;;;37690:81:0;;12618:2:1;37690:81:0;;;12600:21:1;12657:2;12637:18;;;12630:30;12696:34;12676:18;;;12669:62;-1:-1:-1;;;12747:18:1;;;12740:35;12792:19;;37690:81:0;12416:401:1;37690:81:0;-1:-1:-1;;;;;37790:16:0;;37782:65;;;;-1:-1:-1;;;37782:65:0;;13024:2:1;37782:65:0;;;13006:21:1;13063:2;13043:18;;;13036:30;13102:34;13082:18;;;13075:62;-1:-1:-1;;;13153:18:1;;;13146:34;13197:19;;37782:65:0;12822:400:1;37782:65:0;37964:29;37981:1;37985:7;37964:8;:29::i;:::-;-1:-1:-1;;;;;38006:15:0;;;;;;:9;:15;;;;;:20;;38025:1;;38006:15;:20;;38025:1;;38006:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38037:13:0;;;;;;:9;:13;;;;;:18;;38054:1;;38037:13;:18;;38054:1;;38037:18;:::i;:::-;;;;-1:-1:-1;;38066:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38066:21:0;-1:-1:-1;;;;;38066:21:0;;;;;;;;;38105:27;;38066:16;;38105:27;;;;;;;30502:341;30432:411;;:::o;9606:191::-;9699:6;;;-1:-1:-1;;;;;9716:17:0;;;-1:-1:-1;;;;;;9716:17:0;;;;;;;9749:40;;9699:6;;;9716:17;9699:6;;9749:40;;9680:16;;9749:40;9669:128;9606:191;:::o;44438:204::-;44518:9;44513:124;44537:11;44533:1;:15;44513:124;;;44564:18;:6;1116:19;;1134:1;1116:19;;;1027:127;44564:18;44591:38;44601:9;44612:16;:6;997:14;;905:114;44612:16;44591:9;:38::i;:::-;44550:3;;;;:::i;:::-;;;;44513:124;;38625:315;38780:8;-1:-1:-1;;;;;38771:17:0;:5;-1:-1:-1;;;;;38771:17:0;;;38763:55;;;;-1:-1:-1;;;38763:55:0;;13699:2:1;38763:55:0;;;13681:21:1;13738:2;13718:18;;;13711:30;13777:27;13757:18;;;13750:55;13822:18;;38763:55:0;13497:349:1;38763:55:0;-1:-1:-1;;;;;38829:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;38829:46:0;;;;;;;;;;38891:41;;540::1;;;38891::0;;513:18:1;38891:41:0;;;;;;;38625:315;;;:::o;33535:::-;33692:28;33702:4;33708:2;33712:7;33692:9;:28::i;:::-;33739:48;33762:4;33768:2;33772:7;33781:5;33739:22;:48::i;:::-;33731:111;;;;-1:-1:-1;;;33731:111:0;;;;;;;:::i;44323:105::-;44383:13;44412:9;44405:16;;;;;:::i;4622:723::-;4678:13;4899:10;4895:53;;-1:-1:-1;;4926:10:0;;;;;;;;;;;;-1:-1:-1;;;4926:10:0;;;;;4622:723::o;4895:53::-;4973:5;4958:12;5014:78;5021:9;;5014:78;;5047:8;;;;:::i;:::-;;-1:-1:-1;5070:10:0;;-1:-1:-1;5078:2:0;5070:10;;:::i;:::-;;;5014:78;;;5102:19;5134:6;5124:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5124:17:0;;5102:39;;5152:154;5159:10;;5152:154;;5186:11;5196:1;5186:11;;:::i;:::-;;-1:-1:-1;5255:10:0;5263:2;5255:5;:10;:::i;:::-;5242:24;;:2;:24;:::i;:::-;5229:39;;5212:6;5219;5212:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;5212:56:0;;;;;;;;-1:-1:-1;5283:11:0;5292:2;5283:11;;:::i;:::-;;;5152:154;;35147:110;35223:26;35233:2;35237:7;35223:26;;;;;;;;;;;;:9;:26::i;39505:799::-;39660:4;-1:-1:-1;;;;;39681:13:0;;11332:19;:23;39677:620;;39717:72;;-1:-1:-1;;;39717:72:0;;-1:-1:-1;;;;;39717:36:0;;;;;:72;;7140:10;;39768:4;;39774:7;;39783:5;;39717:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39717:72:0;;;;;;;;-1:-1:-1;;39717:72:0;;;;;;;;;;;;:::i;:::-;;;39713:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39959:13:0;;39955:272;;40002:60;;-1:-1:-1;;;40002:60:0;;;;;;;:::i;39955:272::-;40177:6;40171:13;40162:6;40158:2;40154:15;40147:38;39713:529;-1:-1:-1;;;;;;39840:51:0;-1:-1:-1;;;39840:51:0;;-1:-1:-1;39833:58:0;;39677:620;-1:-1:-1;40281:4:0;39505:799;;;;;;:::o;35484:321::-;35614:18;35620:2;35624:7;35614:5;:18::i;:::-;35665:54;35696:1;35700:2;35704:7;35713:5;35665:22;:54::i;:::-;35643:154;;;;-1:-1:-1;;;35643:154:0;;;;;;;:::i;36141:439::-;-1:-1:-1;;;;;36221:16:0;;36213:61;;;;-1:-1:-1;;;36213:61:0;;15469:2:1;36213:61:0;;;15451:21:1;;;15488:18;;;15481:30;15547:34;15527:18;;;15520:62;15599:18;;36213:61:0;15267:356:1;36213:61:0;34228:4;34252:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34252:16:0;:30;36285:58;;;;-1:-1:-1;;;36285:58:0;;15830:2:1;36285:58:0;;;15812:21:1;15869:2;15849:18;;;15842:30;15908;15888:18;;;15881:58;15956:18;;36285:58:0;15628:352:1;36285:58:0;-1:-1:-1;;;;;36414:13:0;;;;;;:9;:13;;;;;:18;;36431:1;;36414:13;:18;;36431:1;;36414:18;:::i;:::-;;;;-1:-1:-1;;36443:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36443:21:0;-1:-1:-1;;;;;36443:21:0;;;;;;;;36482:33;;36443:16;;;36482:33;;36443:16;;36482:33;43155:431:::1;;43117:469::o:0;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:1;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:1:o;2705:328::-;2782:6;2790;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;;2938:38;2972:2;2961:9;2957:18;2938:38;:::i;:::-;2928:48;;3023:2;3012:9;3008:18;2995:32;2985:42;;2705:328;;;;;:::o;3038:186::-;3097:6;3150:2;3138:9;3129:7;3125:23;3121:32;3118:52;;;3166:1;3163;3156:12;3118:52;3189:29;3208:9;3189:29;:::i;3229:254::-;3294:6;3302;3355:2;3343:9;3334:7;3330:23;3326:32;3323:52;;;3371:1;3368;3361:12;3323:52;3394:29;3413:9;3394:29;:::i;:::-;3384:39;;3442:35;3473:2;3462:9;3458:18;3442:35;:::i;:::-;3432:45;;3229:254;;;;;:::o;3488:127::-;3549:10;3544:3;3540:20;3537:1;3530:31;3580:4;3577:1;3570:15;3604:4;3601:1;3594:15;3620:1138;3715:6;3723;3731;3739;3792:3;3780:9;3771:7;3767:23;3763:33;3760:53;;;3809:1;3806;3799:12;3760:53;3832:29;3851:9;3832:29;:::i;:::-;3822:39;;3880:38;3914:2;3903:9;3899:18;3880:38;:::i;:::-;3870:48;;3965:2;3954:9;3950:18;3937:32;3927:42;;4020:2;4009:9;4005:18;3992:32;4043:18;4084:2;4076:6;4073:14;4070:34;;;4100:1;4097;4090:12;4070:34;4138:6;4127:9;4123:22;4113:32;;4183:7;4176:4;4172:2;4168:13;4164:27;4154:55;;4205:1;4202;4195:12;4154:55;4241:2;4228:16;4263:2;4259;4256:10;4253:36;;;4269:18;;:::i;:::-;4344:2;4338:9;4312:2;4398:13;;-1:-1:-1;;4394:22:1;;;4418:2;4390:31;4386:40;4374:53;;;4442:18;;;4462:22;;;4439:46;4436:72;;;4488:18;;:::i;:::-;4528:10;4524:2;4517:22;4563:2;4555:6;4548:18;4603:7;4598:2;4593;4589;4585:11;4581:20;4578:33;4575:53;;;4624:1;4621;4614:12;4575:53;4680:2;4675;4671;4667:11;4662:2;4654:6;4650:15;4637:46;4725:1;4720:2;4715;4707:6;4703:15;4699:24;4692:35;4746:6;4736:16;;;;;;;3620:1138;;;;;;;:::o;4763:260::-;4831:6;4839;4892:2;4880:9;4871:7;4867:23;4863:32;4860:52;;;4908:1;4905;4898:12;4860:52;4931:29;4950:9;4931:29;:::i;:::-;4921:39;;4979:38;5013:2;5002:9;4998:18;4979:38;:::i;5028:356::-;5230:2;5212:21;;;5249:18;;;5242:30;5308:34;5303:2;5288:18;;5281:62;5375:2;5360:18;;5028:356::o;5389:380::-;5468:1;5464:12;;;;5511;;;5532:61;;5586:4;5578:6;5574:17;5564:27;;5532:61;5639:2;5631:6;5628:14;5608:18;5605:38;5602:161;;;5685:10;5680:3;5676:20;5673:1;5666:31;5720:4;5717:1;5710:15;5748:4;5745:1;5738:15;5602:161;;5389:380;;;:::o;7014:413::-;7216:2;7198:21;;;7255:2;7235:18;;;7228:30;7294:34;7289:2;7274:18;;7267:62;-1:-1:-1;;;7360:2:1;7345:18;;7338:47;7417:3;7402:19;;7014:413::o;7432:127::-;7493:10;7488:3;7484:20;7481:1;7474:31;7524:4;7521:1;7514:15;7548:4;7545:1;7538:15;7564:168;7604:7;7670:1;7666;7662:6;7658:14;7655:1;7652:21;7647:1;7640:9;7633:17;7629:45;7626:71;;;7677:18;;:::i;:::-;-1:-1:-1;7717:9:1;;7564:168::o;7737:127::-;7798:10;7793:3;7789:20;7786:1;7779:31;7829:4;7826:1;7819:15;7853:4;7850:1;7843:15;7869:120;7909:1;7935;7925:35;;7940:18;;:::i;:::-;-1:-1:-1;7974:9:1;;7869:120::o;9374:128::-;9414:3;9445:1;9441:6;9438:1;9435:13;9432:39;;;9451:18;;:::i;:::-;-1:-1:-1;9487:9:1;;9374:128::o;10954:637::-;11234:3;11272:6;11266:13;11288:53;11334:6;11329:3;11322:4;11314:6;11310:17;11288:53;:::i;:::-;11404:13;;11363:16;;;;11426:57;11404:13;11363:16;11460:4;11448:17;;11426:57;:::i;:::-;-1:-1:-1;;;11505:20:1;;11534:22;;;11583:1;11572:13;;10954:637;-1:-1:-1;;;;10954:637:1:o;13227:125::-;13267:4;13295:1;13292;13289:8;13286:34;;;13300:18;;:::i;:::-;-1:-1:-1;13337:9:1;;13227:125::o;13357:135::-;13396:3;-1:-1:-1;;13417:17:1;;13414:43;;;13437:18;;:::i;:::-;-1:-1:-1;13484:1:1;13473:13;;13357:135::o;13851:414::-;14053:2;14035:21;;;14092:2;14072:18;;;14065:30;14131:34;14126:2;14111:18;;14104:62;-1:-1:-1;;;14197:2:1;14182:18;;14175:48;14255:3;14240:19;;13851:414::o;14270:112::-;14302:1;14328;14318:35;;14333:18;;:::i;:::-;-1:-1:-1;14367:9:1;;14270:112::o;14387:127::-;14448:10;14443:3;14439:20;14436:1;14429:31;14479:4;14476:1;14469:15;14503:4;14500:1;14493:15;14519:489;-1:-1:-1;;;;;14788:15:1;;;14770:34;;14840:15;;14835:2;14820:18;;14813:43;14887:2;14872:18;;14865:34;;;14935:3;14930:2;14915:18;;14908:31;;;14713:4;;14956:46;;14982:19;;14974:6;14956:46;:::i;:::-;14948:54;14519:489;-1:-1:-1;;;;;;14519:489:1:o;15013:249::-;15082:6;15135:2;15123:9;15114:7;15110:23;15106:32;15103:52;;;15151:1;15148;15141:12;15103:52;15183:9;15177:16;15202:30;15226:5;15202:30;:::i

Swarm Source

ipfs://9464b04c373abd3da0b37489ebac8b25f7c8858e798f6be07fa43467400c1a77
Loading...
Loading
Loading...
Loading
[ 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.