ETH Price: $3,482.21 (+3.08%)
Gas: 7 Gwei

Token

Hungry Wolves (HUNGRY)
 

Overview

Max Total Supply

6,000 HUNGRY

Holders

1,296

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 HUNGRY
0x78f553B2858fC58473f7c5307446b2B27d240e6d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Hungry Wolves is an NFT collection run by a DOXED team with game mechanics that allow users to earn status and rewards by eating Scrumptious Sheep.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Hungry_Wolves

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-06
*/

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


// OpenZeppelin Contracts v4.4.0 (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.0 (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.0 (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.0 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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


// OpenZeppelin Contracts v4.4.0 (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.0 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

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


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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.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 overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/Hungry Wolves.sol


// Wolfpack Labs LLC

pragma solidity 0.8.10;




contract Hungry_Wolves is ERC721Enumerable, Ownable, ReentrancyGuard {
    using Strings for uint;

    string public baseURI;
    string public baseExtension = ".json";

    uint public cost = 0.06 ether;
    uint public maxGiveawaySupply = 115;
    uint public maxPrioritySupply = 8820;
    uint public maxPublicSupply = 1000;
    uint public maxReserveSupply = 65;
    uint public reserveMinted = 0;
    uint public priorityMaxMintAmount = 3;
    uint public maxMintAmount = 20;
    uint public giveawayMapLength = 0;

    bool public giveawayPaused = true;
    bool public priorityMintPaused = true;
    bool public publicMintPaused = true;

    mapping (address => bool) public giveawayWhitelistedAddresses;

    constructor (string memory _name, string memory _symbol)
    ERC721(_name, _symbol)
    {
    }

    function reserveMint(uint _reserveAmount) external onlyOwner {
        require(msg.sender == owner());
        require(reserveMinted + 1 <= maxReserveSupply);
        uint tokens = totalSupply();
        
        for (uint i = 1; i <= _reserveAmount; i++){
            reserveMinted += 1;
            _safeMint(msg.sender, tokens + 1);
        }
    }

    function giveawayMint() external nonReentrant() {
        require (!giveawayPaused);
        require(giveawayWhitelistedAddresses[msg.sender] == true);
        uint tokens = totalSupply();
        require (tokens + 1 <= maxReserveSupply + maxGiveawaySupply + maxPrioritySupply + maxPublicSupply);
        giveawayWhitelistedAddresses[msg.sender] = false;
        _safeMint(msg.sender, tokens + 1);
    }

    function priorityMint(uint _priorityMintAmount) external payable nonReentrant() {
        uint prioritySupply = totalSupply();
        require(!priorityMintPaused);
        require(_priorityMintAmount <= priorityMaxMintAmount);
        require(msg.value >= cost * _priorityMintAmount);
        require(_priorityMintAmount > 0);
        require(prioritySupply + _priorityMintAmount <= maxReserveSupply + maxPrioritySupply + maxGiveawaySupply);

        for (uint i = 1; i <= _priorityMintAmount; i++){
            _safeMint(msg.sender, prioritySupply + i);
        }
    }

    function mint(uint _mintAmount) external payable nonReentrant() {
        uint supply = totalSupply();
        require(!publicMintPaused);
        require(_mintAmount > 0);
        require(_mintAmount <= maxMintAmount);
        require(supply + _mintAmount <= maxReserveSupply + maxGiveawaySupply + maxPrioritySupply + maxPublicSupply);
        require (msg.value >= cost * _mintAmount);
        for (uint i = 1; i <= _mintAmount; i++){
            _safeMint(msg.sender, supply + i);
        }
    }

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

    function setCost(uint _newCost) external onlyOwner(){
        cost = _newCost;
    }

    function setMaxMintAmount(uint _newMaxMintAmount) external onlyOwner(){
        maxMintAmount = _newMaxMintAmount;
    }

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

    function setBaseURI(string memory uri) external onlyOwner {
        baseURI = uri;
    }


    function setBaseExtension(string memory _newBaseExtension) external onlyOwner {
        baseExtension = _newBaseExtension;
    }

    function giveawayPause(bool _switch) external onlyOwner {
        giveawayPaused = _switch;
    }
    
    function priorityMintPause(bool _state) external onlyOwner {
        priorityMintPaused = _state;
    }

    function publicMintPause(bool _flag) external onlyOwner {
        priorityMintPaused = true;
        publicMintPaused = _flag;
    }

    function initGiveawayWhitelistWallets(address[] memory walletList) external onlyOwner{
        for (uint i; i < walletList.length; i++)
        {
            giveawayWhitelistedAddresses[walletList[i]] = true;
        }
    }

    function burnToken(uint256 tokenId) public onlyOwner {
        require(_isApprovedOrOwner(msg.sender, tokenId));
        _burn(tokenId);
    }
    
    function withdraw() public onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burnToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giveawayMapLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giveawayMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_switch","type":"bool"}],"name":"giveawayPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"giveawayPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"giveawayWhitelistedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"walletList","type":"address[]"}],"name":"initGiveawayWhitelistWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxGiveawaySupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPrioritySupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxReserveSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priorityMaxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_priorityMintAmount","type":"uint256"}],"name":"priorityMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"priorityMintPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"priorityMintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_flag","type":"bool"}],"name":"publicMintPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"publicMintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveMinted","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600d91906200014e565b5066d529ae9e860000600e556073600f556122746010556103e8601155604160125560006013819055600360149081556015556016556017805462ffffff1916620101011790553480156200007c57600080fd5b5060405162002d4c38038062002d4c8339810160408190526200009f91620002c1565b815182908290620000b89060009060208501906200014e565b508051620000ce9060019060208401906200014e565b505050620000eb620000e5620000f860201b60201c565b620000fc565b50506001600b5562000368565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015c906200032b565b90600052602060002090601f016020900481019282620001805760008555620001cb565b82601f106200019b57805160ff1916838001178555620001cb565b82800160010185558215620001cb579182015b82811115620001cb578251825591602001919060010190620001ae565b50620001d9929150620001dd565b5090565b5b80821115620001d95760008155600101620001de565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200021c57600080fd5b81516001600160401b0380821115620002395762000239620001f4565b604051601f8301601f19908116603f01168101908282118183101715620002645762000264620001f4565b816040528381526020925086838588010111156200028157600080fd5b600091505b83821015620002a5578582018301518183018401529082019062000286565b83821115620002b75760008385830101525b9695505050505050565b60008060408385031215620002d557600080fd5b82516001600160401b0380821115620002ed57600080fd5b620002fb868387016200020a565b935060208501519150808211156200031257600080fd5b5062000321858286016200020a565b9150509250929050565b600181811c908216806200034057607f821691505b602082108114156200036257634e487b7160e01b600052602260045260246000fd5b50919050565b6129d480620003786000396000f3fe6080604052600436106102ae5760003560e01c806355f804b311610175578063b8650794116100dc578063cffb47cf11610095578063e9a8b8431161006f578063e9a8b84314610826578063f2fde38b1461083b578063f4536b1c1461085b578063fa85a4041461087b57600080fd5b8063cffb47cf146107a7578063da3ef23f146107bd578063e985e9c5146107dd57600080fd5b8063b8650794146106fd578063b87e51111461071d578063b88d4fde14610733578063c403971814610753578063c668286214610772578063c87b56dd1461078757600080fd5b80637b47ec1a1161012e5780637b47ec1a1461064757806383a00d6f146106675780638da5cb5b1461069757806395d89b41146106b5578063a0712d68146106ca578063a22cb465146106dd57600080fd5b806355f804b3146105a7578063615097d9146105c75780636352211e146105dd5780636c0360eb146105fd57806370a0823114610612578063715018a61461063257600080fd5b806326a74d8e1161021957806342842e0e116101d257806342842e0e146104ea578063438b63001461050a57806344a0d68a146105375780634a8029b3146105575780634c81433f146105715780634f6ccce71461058757600080fd5b806326a74d8e146104495780632aaf1a591461045f5780632f745c5914610475578063309940631461049557806333d9d5fd146104b55780633ccfd60b146104d557600080fd5b80631342ff4c1161026b5780631342ff4c146103a457806313faede6146103c457806318160ddd146103e85780631819cf57146103fd578063239c70ae1461041357806323b872dd1461042957600080fd5b806301ffc9a7146102b357806306fdde03146102e8578063081812fc1461030a578063088a4ed01461034257806308fd9f0b14610364578063095ea7b314610384575b600080fd5b3480156102bf57600080fd5b506102d36102ce3660046122c7565b61088e565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b506102fd6108b9565b6040516102df919061233c565b34801561031657600080fd5b5061032a61032536600461234f565b61094b565b6040516001600160a01b0390911681526020016102df565b34801561034e57600080fd5b5061036261035d36600461234f565b6109e5565b005b34801561037057600080fd5b5061036261037f36600461237d565b610a14565b34801561039057600080fd5b5061036261039f3660046123af565b610a5e565b3480156103b057600080fd5b506103626103bf36600461234f565b610b74565b3480156103d057600080fd5b506103da600e5481565b6040519081526020016102df565b3480156103f457600080fd5b506008546103da565b34801561040957600080fd5b506103da60145481565b34801561041f57600080fd5b506103da60155481565b34801561043557600080fd5b506103626104443660046123d9565b610c27565b34801561045557600080fd5b506103da60115481565b34801561046b57600080fd5b506103da60165481565b34801561048157600080fd5b506103da6104903660046123af565b610c58565b3480156104a157600080fd5b506103626104b036600461237d565b610cee565b3480156104c157600080fd5b506017546102d39062010000900460ff1681565b3480156104e157600080fd5b50610362610d2b565b3480156104f657600080fd5b506103626105053660046123d9565b610d7b565b34801561051657600080fd5b5061052a610525366004612415565b610d96565b6040516102df9190612430565b34801561054357600080fd5b5061036261055236600461234f565b610e38565b34801561056357600080fd5b506017546102d39060ff1681565b34801561057d57600080fd5b506103da60135481565b34801561059357600080fd5b506103da6105a236600461234f565b610e67565b3480156105b357600080fd5b506103626105c2366004612513565b610efa565b3480156105d357600080fd5b506103da600f5481565b3480156105e957600080fd5b5061032a6105f836600461234f565b610f3b565b34801561060957600080fd5b506102fd610fb2565b34801561061e57600080fd5b506103da61062d366004612415565b611040565b34801561063e57600080fd5b506103626110c7565b34801561065357600080fd5b5061036261066236600461234f565b6110fb565b34801561067357600080fd5b506102d3610682366004612415565b60186020526000908152604090205460ff1681565b3480156106a357600080fd5b50600a546001600160a01b031661032a565b3480156106c157600080fd5b506102fd611144565b6103626106d836600461234f565b611153565b3480156106e957600080fd5b506103626106f836600461255c565b611248565b34801561070957600080fd5b5061036261071836600461258f565b611253565b34801561072957600080fd5b506103da60105481565b34801561073f57600080fd5b5061036261074e36600461263c565b6112e5565b34801561075f57600080fd5b506017546102d390610100900460ff1681565b34801561077e57600080fd5b506102fd61131d565b34801561079357600080fd5b506102fd6107a236600461234f565b61132a565b3480156107b357600080fd5b506103da60125481565b3480156107c957600080fd5b506103626107d8366004612513565b611405565b3480156107e957600080fd5b506102d36107f83660046126b8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561083257600080fd5b50610362611442565b34801561084757600080fd5b50610362610856366004612415565b611516565b34801561086757600080fd5b5061036261087636600461237d565b6115ae565b61036261088936600461234f565b6115f2565b60006001600160e01b0319821663780e9d6360e01b14806108b357506108b3826116cf565b92915050565b6060600080546108c8906126e2565b80601f01602080910402602001604051908101604052809291908181526020018280546108f4906126e2565b80156109415780601f1061091657610100808354040283529160200191610941565b820191906000526020600020905b81548152906001019060200180831161092457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109c95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b03163314610a0f5760405162461bcd60e51b81526004016109c09061271d565b601555565b600a546001600160a01b03163314610a3e5760405162461bcd60e51b81526004016109c09061271d565b60178054911515620100000262ffff001990921691909117610100179055565b6000610a6982610f3b565b9050806001600160a01b0316836001600160a01b03161415610ad75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109c0565b336001600160a01b0382161480610af35750610af381336107f8565b610b655760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109c0565b610b6f838361171f565b505050565b600a546001600160a01b03163314610b9e5760405162461bcd60e51b81526004016109c09061271d565b600a546001600160a01b03163314610bb557600080fd5b601254601354610bc6906001612768565b1115610bd157600080fd5b6000610bdc60085490565b905060015b828111610b6f57600160136000828254610bfb9190612768565b90915550610c15905033610c10846001612768565b61178d565b80610c1f81612780565b915050610be1565b610c3133826117a7565b610c4d5760405162461bcd60e51b81526004016109c09061279b565b610b6f83838361189e565b6000610c6383611040565b8210610cc55760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109c0565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610d185760405162461bcd60e51b81526004016109c09061271d565b6017805460ff1916911515919091179055565b600a546001600160a01b03163314610d555760405162461bcd60e51b81526004016109c09061271d565b60405133904780156108fc02916000818181858888f19350505050610d7957600080fd5b565b610b6f838383604051806020016040528060008152506112e5565b60606000610da383611040565b905060008167ffffffffffffffff811115610dc057610dc0612474565b604051908082528060200260200182016040528015610de9578160200160208202803683370190505b50905060005b82811015610e3057610e018582610c58565b828281518110610e1357610e136127ec565b602090810291909101015280610e2881612780565b915050610def565b509392505050565b600a546001600160a01b03163314610e625760405162461bcd60e51b81526004016109c09061271d565b600e55565b6000610e7260085490565b8210610ed55760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109c0565b60088281548110610ee857610ee86127ec565b90600052602060002001549050919050565b600a546001600160a01b03163314610f245760405162461bcd60e51b81526004016109c09061271d565b8051610f3790600c906020840190612218565b5050565b6000818152600260205260408120546001600160a01b0316806108b35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109c0565b600c8054610fbf906126e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610feb906126e2565b80156110385780601f1061100d57610100808354040283529160200191611038565b820191906000526020600020905b81548152906001019060200180831161101b57829003601f168201915b505050505081565b60006001600160a01b0382166110ab5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109c0565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110f15760405162461bcd60e51b81526004016109c09061271d565b610d796000611a49565b600a546001600160a01b031633146111255760405162461bcd60e51b81526004016109c09061271d565b61112f33826117a7565b61113857600080fd5b61114181611a9b565b50565b6060600180546108c8906126e2565b6002600b5414156111765760405162461bcd60e51b81526004016109c090612802565b6002600b55600061118660085490565b60175490915062010000900460ff161561119f57600080fd5b600082116111ac57600080fd5b6015548211156111bb57600080fd5b601154601054600f546012546111d19190612768565b6111db9190612768565b6111e59190612768565b6111ef8383612768565b11156111fa57600080fd5b81600e546112089190612839565b34101561121457600080fd5b60015b82811161123e5761122c33610c108385612768565b8061123681612780565b915050611217565b50506001600b5550565b610f37338383611b42565b600a546001600160a01b0316331461127d5760405162461bcd60e51b81526004016109c09061271d565b60005b8151811015610f37576001601860008484815181106112a1576112a16127ec565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806112dd81612780565b915050611280565b6112ef33836117a7565b61130b5760405162461bcd60e51b81526004016109c09061279b565b61131784848484611c11565b50505050565b600d8054610fbf906126e2565b6000818152600260205260409020546060906001600160a01b03166113a95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109c0565b60006113b3611c44565b905060008151116113d357604051806020016040528060008152506113fe565b806113dd84611c53565b6040516020016113ee929190612858565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461142f5760405162461bcd60e51b81526004016109c09061271d565b8051610f3790600d906020840190612218565b6002600b5414156114655760405162461bcd60e51b81526004016109c090612802565b6002600b5560175460ff161561147a57600080fd5b3360009081526018602052604090205460ff16151560011461149b57600080fd5b60006114a660085490565b9050601154601054600f546012546114be9190612768565b6114c89190612768565b6114d29190612768565b6114dd826001612768565b11156114e857600080fd5b336000818152601860205260409020805460ff1916905561150e90610c10836001612768565b506001600b55565b600a546001600160a01b031633146115405760405162461bcd60e51b81526004016109c09061271d565b6001600160a01b0381166115a55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109c0565b61114181611a49565b600a546001600160a01b031633146115d85760405162461bcd60e51b81526004016109c09061271d565b601780549115156101000261ff0019909216919091179055565b6002600b5414156116155760405162461bcd60e51b81526004016109c090612802565b6002600b55600061162560085490565b601754909150610100900460ff161561163d57600080fd5b60145482111561164c57600080fd5b81600e5461165a9190612839565b34101561166657600080fd5b6000821161167357600080fd5b600f546010546012546116869190612768565b6116909190612768565b61169a8383612768565b11156116a557600080fd5b60015b82811161123e576116bd33610c108385612768565b806116c781612780565b9150506116a8565b60006001600160e01b031982166380ac58cd60e01b148061170057506001600160e01b03198216635b5e139f60e01b145b806108b357506301ffc9a760e01b6001600160e01b03198316146108b3565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061175482610f3b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610f37828260405180602001604052806000815250611d51565b6000818152600260205260408120546001600160a01b03166118205760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109c0565b600061182b83610f3b565b9050806001600160a01b0316846001600160a01b031614806118665750836001600160a01b031661185b8461094b565b6001600160a01b0316145b8061189657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166118b182610f3b565b6001600160a01b0316146119195760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109c0565b6001600160a01b03821661197b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109c0565b611986838383611d84565b61199160008261171f565b6001600160a01b03831660009081526003602052604081208054600192906119ba908490612887565b90915550506001600160a01b03821660009081526003602052604081208054600192906119e8908490612768565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611aa682610f3b565b9050611ab481600084611d84565b611abf60008361171f565b6001600160a01b0381166000908152600360205260408120805460019290611ae8908490612887565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b816001600160a01b0316836001600160a01b03161415611ba45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109c0565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c1c84848461189e565b611c2884848484611e3c565b6113175760405162461bcd60e51b81526004016109c09061289e565b6060600c80546108c8906126e2565b606081611c775750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ca15780611c8b81612780565b9150611c9a9050600a83612906565b9150611c7b565b60008167ffffffffffffffff811115611cbc57611cbc612474565b6040519080825280601f01601f191660200182016040528015611ce6576020820181803683370190505b5090505b841561189657611cfb600183612887565b9150611d08600a8661291a565b611d13906030612768565b60f81b818381518110611d2857611d286127ec565b60200101906001600160f81b031916908160001a905350611d4a600a86612906565b9450611cea565b611d5b8383611f3a565b611d686000848484611e3c565b610b6f5760405162461bcd60e51b81526004016109c09061289e565b6001600160a01b038316611ddf57611dda81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e02565b816001600160a01b0316836001600160a01b031614611e0257611e028382612088565b6001600160a01b038216611e1957610b6f81612125565b826001600160a01b0316826001600160a01b031614610b6f57610b6f82826121d4565b60006001600160a01b0384163b15611f2f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e8090339089908890889060040161292e565b6020604051808303816000875af1925050508015611ebb575060408051601f3d908101601f19168201909252611eb89181019061296b565b60015b611f15573d808015611ee9576040519150601f19603f3d011682016040523d82523d6000602084013e611eee565b606091505b508051611f0d5760405162461bcd60e51b81526004016109c09061289e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611896565b506001949350505050565b6001600160a01b038216611f905760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109c0565b6000818152600260205260409020546001600160a01b031615611ff55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109c0565b61200160008383611d84565b6001600160a01b038216600090815260036020526040812080546001929061202a908490612768565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161209584611040565b61209f9190612887565b6000838152600760205260409020549091508082146120f2576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061213790600190612887565b6000838152600960205260408120546008805493945090928490811061215f5761215f6127ec565b906000526020600020015490508060088381548110612180576121806127ec565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806121b8576121b8612988565b6001900381819060005260206000200160009055905550505050565b60006121df83611040565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612224906126e2565b90600052602060002090601f016020900481019282612246576000855561228c565b82601f1061225f57805160ff191683800117855561228c565b8280016001018555821561228c579182015b8281111561228c578251825591602001919060010190612271565b5061229892915061229c565b5090565b5b80821115612298576000815560010161229d565b6001600160e01b03198116811461114157600080fd5b6000602082840312156122d957600080fd5b81356113fe816122b1565b60005b838110156122ff5781810151838201526020016122e7565b838111156113175750506000910152565b600081518084526123288160208601602086016122e4565b601f01601f19169290920160200192915050565b6020815260006113fe6020830184612310565b60006020828403121561236157600080fd5b5035919050565b8035801515811461237857600080fd5b919050565b60006020828403121561238f57600080fd5b6113fe82612368565b80356001600160a01b038116811461237857600080fd5b600080604083850312156123c257600080fd5b6123cb83612398565b946020939093013593505050565b6000806000606084860312156123ee57600080fd5b6123f784612398565b925061240560208501612398565b9150604084013590509250925092565b60006020828403121561242757600080fd5b6113fe82612398565b6020808252825182820181905260009190848201906040850190845b818110156124685783518352928401929184019160010161244c565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156124b3576124b3612474565b604052919050565b600067ffffffffffffffff8311156124d5576124d5612474565b6124e8601f8401601f191660200161248a565b90508281528383830111156124fc57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561252557600080fd5b813567ffffffffffffffff81111561253c57600080fd5b8201601f8101841361254d57600080fd5b611896848235602084016124bb565b6000806040838503121561256f57600080fd5b61257883612398565b915061258660208401612368565b90509250929050565b600060208083850312156125a257600080fd5b823567ffffffffffffffff808211156125ba57600080fd5b818501915085601f8301126125ce57600080fd5b8135818111156125e0576125e0612474565b8060051b91506125f184830161248a565b818152918301840191848101908884111561260b57600080fd5b938501935b838510156126305761262185612398565b82529385019390850190612610565b98975050505050505050565b6000806000806080858703121561265257600080fd5b61265b85612398565b935061266960208601612398565b925060408501359150606085013567ffffffffffffffff81111561268c57600080fd5b8501601f8101871361269d57600080fd5b6126ac878235602084016124bb565b91505092959194509250565b600080604083850312156126cb57600080fd5b6126d483612398565b915061258660208401612398565b600181811c908216806126f657607f821691505b6020821081141561271757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561277b5761277b612752565b500190565b600060001982141561279457612794612752565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b600081600019048311821515161561285357612853612752565b500290565b6000835161286a8184602088016122e4565b83519083019061287e8183602088016122e4565b01949350505050565b60008282101561289957612899612752565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612915576129156128f0565b500490565b600082612929576129296128f0565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061296190830184612310565b9695505050505050565b60006020828403121561297d57600080fd5b81516113fe816122b1565b634e487b7160e01b600052603160045260246000fdfea26469706673582212207aaad67a850c8d3382bd3cf1b3fb9e18988d3e9401f7ff9a931477bb107896f864736f6c634300080a003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d48756e67727920576f6c76657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000648554e4752590000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102ae5760003560e01c806355f804b311610175578063b8650794116100dc578063cffb47cf11610095578063e9a8b8431161006f578063e9a8b84314610826578063f2fde38b1461083b578063f4536b1c1461085b578063fa85a4041461087b57600080fd5b8063cffb47cf146107a7578063da3ef23f146107bd578063e985e9c5146107dd57600080fd5b8063b8650794146106fd578063b87e51111461071d578063b88d4fde14610733578063c403971814610753578063c668286214610772578063c87b56dd1461078757600080fd5b80637b47ec1a1161012e5780637b47ec1a1461064757806383a00d6f146106675780638da5cb5b1461069757806395d89b41146106b5578063a0712d68146106ca578063a22cb465146106dd57600080fd5b806355f804b3146105a7578063615097d9146105c75780636352211e146105dd5780636c0360eb146105fd57806370a0823114610612578063715018a61461063257600080fd5b806326a74d8e1161021957806342842e0e116101d257806342842e0e146104ea578063438b63001461050a57806344a0d68a146105375780634a8029b3146105575780634c81433f146105715780634f6ccce71461058757600080fd5b806326a74d8e146104495780632aaf1a591461045f5780632f745c5914610475578063309940631461049557806333d9d5fd146104b55780633ccfd60b146104d557600080fd5b80631342ff4c1161026b5780631342ff4c146103a457806313faede6146103c457806318160ddd146103e85780631819cf57146103fd578063239c70ae1461041357806323b872dd1461042957600080fd5b806301ffc9a7146102b357806306fdde03146102e8578063081812fc1461030a578063088a4ed01461034257806308fd9f0b14610364578063095ea7b314610384575b600080fd5b3480156102bf57600080fd5b506102d36102ce3660046122c7565b61088e565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b506102fd6108b9565b6040516102df919061233c565b34801561031657600080fd5b5061032a61032536600461234f565b61094b565b6040516001600160a01b0390911681526020016102df565b34801561034e57600080fd5b5061036261035d36600461234f565b6109e5565b005b34801561037057600080fd5b5061036261037f36600461237d565b610a14565b34801561039057600080fd5b5061036261039f3660046123af565b610a5e565b3480156103b057600080fd5b506103626103bf36600461234f565b610b74565b3480156103d057600080fd5b506103da600e5481565b6040519081526020016102df565b3480156103f457600080fd5b506008546103da565b34801561040957600080fd5b506103da60145481565b34801561041f57600080fd5b506103da60155481565b34801561043557600080fd5b506103626104443660046123d9565b610c27565b34801561045557600080fd5b506103da60115481565b34801561046b57600080fd5b506103da60165481565b34801561048157600080fd5b506103da6104903660046123af565b610c58565b3480156104a157600080fd5b506103626104b036600461237d565b610cee565b3480156104c157600080fd5b506017546102d39062010000900460ff1681565b3480156104e157600080fd5b50610362610d2b565b3480156104f657600080fd5b506103626105053660046123d9565b610d7b565b34801561051657600080fd5b5061052a610525366004612415565b610d96565b6040516102df9190612430565b34801561054357600080fd5b5061036261055236600461234f565b610e38565b34801561056357600080fd5b506017546102d39060ff1681565b34801561057d57600080fd5b506103da60135481565b34801561059357600080fd5b506103da6105a236600461234f565b610e67565b3480156105b357600080fd5b506103626105c2366004612513565b610efa565b3480156105d357600080fd5b506103da600f5481565b3480156105e957600080fd5b5061032a6105f836600461234f565b610f3b565b34801561060957600080fd5b506102fd610fb2565b34801561061e57600080fd5b506103da61062d366004612415565b611040565b34801561063e57600080fd5b506103626110c7565b34801561065357600080fd5b5061036261066236600461234f565b6110fb565b34801561067357600080fd5b506102d3610682366004612415565b60186020526000908152604090205460ff1681565b3480156106a357600080fd5b50600a546001600160a01b031661032a565b3480156106c157600080fd5b506102fd611144565b6103626106d836600461234f565b611153565b3480156106e957600080fd5b506103626106f836600461255c565b611248565b34801561070957600080fd5b5061036261071836600461258f565b611253565b34801561072957600080fd5b506103da60105481565b34801561073f57600080fd5b5061036261074e36600461263c565b6112e5565b34801561075f57600080fd5b506017546102d390610100900460ff1681565b34801561077e57600080fd5b506102fd61131d565b34801561079357600080fd5b506102fd6107a236600461234f565b61132a565b3480156107b357600080fd5b506103da60125481565b3480156107c957600080fd5b506103626107d8366004612513565b611405565b3480156107e957600080fd5b506102d36107f83660046126b8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561083257600080fd5b50610362611442565b34801561084757600080fd5b50610362610856366004612415565b611516565b34801561086757600080fd5b5061036261087636600461237d565b6115ae565b61036261088936600461234f565b6115f2565b60006001600160e01b0319821663780e9d6360e01b14806108b357506108b3826116cf565b92915050565b6060600080546108c8906126e2565b80601f01602080910402602001604051908101604052809291908181526020018280546108f4906126e2565b80156109415780601f1061091657610100808354040283529160200191610941565b820191906000526020600020905b81548152906001019060200180831161092457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109c95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b03163314610a0f5760405162461bcd60e51b81526004016109c09061271d565b601555565b600a546001600160a01b03163314610a3e5760405162461bcd60e51b81526004016109c09061271d565b60178054911515620100000262ffff001990921691909117610100179055565b6000610a6982610f3b565b9050806001600160a01b0316836001600160a01b03161415610ad75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109c0565b336001600160a01b0382161480610af35750610af381336107f8565b610b655760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109c0565b610b6f838361171f565b505050565b600a546001600160a01b03163314610b9e5760405162461bcd60e51b81526004016109c09061271d565b600a546001600160a01b03163314610bb557600080fd5b601254601354610bc6906001612768565b1115610bd157600080fd5b6000610bdc60085490565b905060015b828111610b6f57600160136000828254610bfb9190612768565b90915550610c15905033610c10846001612768565b61178d565b80610c1f81612780565b915050610be1565b610c3133826117a7565b610c4d5760405162461bcd60e51b81526004016109c09061279b565b610b6f83838361189e565b6000610c6383611040565b8210610cc55760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109c0565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610d185760405162461bcd60e51b81526004016109c09061271d565b6017805460ff1916911515919091179055565b600a546001600160a01b03163314610d555760405162461bcd60e51b81526004016109c09061271d565b60405133904780156108fc02916000818181858888f19350505050610d7957600080fd5b565b610b6f838383604051806020016040528060008152506112e5565b60606000610da383611040565b905060008167ffffffffffffffff811115610dc057610dc0612474565b604051908082528060200260200182016040528015610de9578160200160208202803683370190505b50905060005b82811015610e3057610e018582610c58565b828281518110610e1357610e136127ec565b602090810291909101015280610e2881612780565b915050610def565b509392505050565b600a546001600160a01b03163314610e625760405162461bcd60e51b81526004016109c09061271d565b600e55565b6000610e7260085490565b8210610ed55760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109c0565b60088281548110610ee857610ee86127ec565b90600052602060002001549050919050565b600a546001600160a01b03163314610f245760405162461bcd60e51b81526004016109c09061271d565b8051610f3790600c906020840190612218565b5050565b6000818152600260205260408120546001600160a01b0316806108b35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109c0565b600c8054610fbf906126e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610feb906126e2565b80156110385780601f1061100d57610100808354040283529160200191611038565b820191906000526020600020905b81548152906001019060200180831161101b57829003601f168201915b505050505081565b60006001600160a01b0382166110ab5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109c0565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110f15760405162461bcd60e51b81526004016109c09061271d565b610d796000611a49565b600a546001600160a01b031633146111255760405162461bcd60e51b81526004016109c09061271d565b61112f33826117a7565b61113857600080fd5b61114181611a9b565b50565b6060600180546108c8906126e2565b6002600b5414156111765760405162461bcd60e51b81526004016109c090612802565b6002600b55600061118660085490565b60175490915062010000900460ff161561119f57600080fd5b600082116111ac57600080fd5b6015548211156111bb57600080fd5b601154601054600f546012546111d19190612768565b6111db9190612768565b6111e59190612768565b6111ef8383612768565b11156111fa57600080fd5b81600e546112089190612839565b34101561121457600080fd5b60015b82811161123e5761122c33610c108385612768565b8061123681612780565b915050611217565b50506001600b5550565b610f37338383611b42565b600a546001600160a01b0316331461127d5760405162461bcd60e51b81526004016109c09061271d565b60005b8151811015610f37576001601860008484815181106112a1576112a16127ec565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806112dd81612780565b915050611280565b6112ef33836117a7565b61130b5760405162461bcd60e51b81526004016109c09061279b565b61131784848484611c11565b50505050565b600d8054610fbf906126e2565b6000818152600260205260409020546060906001600160a01b03166113a95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109c0565b60006113b3611c44565b905060008151116113d357604051806020016040528060008152506113fe565b806113dd84611c53565b6040516020016113ee929190612858565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461142f5760405162461bcd60e51b81526004016109c09061271d565b8051610f3790600d906020840190612218565b6002600b5414156114655760405162461bcd60e51b81526004016109c090612802565b6002600b5560175460ff161561147a57600080fd5b3360009081526018602052604090205460ff16151560011461149b57600080fd5b60006114a660085490565b9050601154601054600f546012546114be9190612768565b6114c89190612768565b6114d29190612768565b6114dd826001612768565b11156114e857600080fd5b336000818152601860205260409020805460ff1916905561150e90610c10836001612768565b506001600b55565b600a546001600160a01b031633146115405760405162461bcd60e51b81526004016109c09061271d565b6001600160a01b0381166115a55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109c0565b61114181611a49565b600a546001600160a01b031633146115d85760405162461bcd60e51b81526004016109c09061271d565b601780549115156101000261ff0019909216919091179055565b6002600b5414156116155760405162461bcd60e51b81526004016109c090612802565b6002600b55600061162560085490565b601754909150610100900460ff161561163d57600080fd5b60145482111561164c57600080fd5b81600e5461165a9190612839565b34101561166657600080fd5b6000821161167357600080fd5b600f546010546012546116869190612768565b6116909190612768565b61169a8383612768565b11156116a557600080fd5b60015b82811161123e576116bd33610c108385612768565b806116c781612780565b9150506116a8565b60006001600160e01b031982166380ac58cd60e01b148061170057506001600160e01b03198216635b5e139f60e01b145b806108b357506301ffc9a760e01b6001600160e01b03198316146108b3565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061175482610f3b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610f37828260405180602001604052806000815250611d51565b6000818152600260205260408120546001600160a01b03166118205760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109c0565b600061182b83610f3b565b9050806001600160a01b0316846001600160a01b031614806118665750836001600160a01b031661185b8461094b565b6001600160a01b0316145b8061189657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166118b182610f3b565b6001600160a01b0316146119195760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109c0565b6001600160a01b03821661197b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109c0565b611986838383611d84565b61199160008261171f565b6001600160a01b03831660009081526003602052604081208054600192906119ba908490612887565b90915550506001600160a01b03821660009081526003602052604081208054600192906119e8908490612768565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611aa682610f3b565b9050611ab481600084611d84565b611abf60008361171f565b6001600160a01b0381166000908152600360205260408120805460019290611ae8908490612887565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b816001600160a01b0316836001600160a01b03161415611ba45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109c0565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c1c84848461189e565b611c2884848484611e3c565b6113175760405162461bcd60e51b81526004016109c09061289e565b6060600c80546108c8906126e2565b606081611c775750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ca15780611c8b81612780565b9150611c9a9050600a83612906565b9150611c7b565b60008167ffffffffffffffff811115611cbc57611cbc612474565b6040519080825280601f01601f191660200182016040528015611ce6576020820181803683370190505b5090505b841561189657611cfb600183612887565b9150611d08600a8661291a565b611d13906030612768565b60f81b818381518110611d2857611d286127ec565b60200101906001600160f81b031916908160001a905350611d4a600a86612906565b9450611cea565b611d5b8383611f3a565b611d686000848484611e3c565b610b6f5760405162461bcd60e51b81526004016109c09061289e565b6001600160a01b038316611ddf57611dda81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e02565b816001600160a01b0316836001600160a01b031614611e0257611e028382612088565b6001600160a01b038216611e1957610b6f81612125565b826001600160a01b0316826001600160a01b031614610b6f57610b6f82826121d4565b60006001600160a01b0384163b15611f2f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e8090339089908890889060040161292e565b6020604051808303816000875af1925050508015611ebb575060408051601f3d908101601f19168201909252611eb89181019061296b565b60015b611f15573d808015611ee9576040519150601f19603f3d011682016040523d82523d6000602084013e611eee565b606091505b508051611f0d5760405162461bcd60e51b81526004016109c09061289e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611896565b506001949350505050565b6001600160a01b038216611f905760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109c0565b6000818152600260205260409020546001600160a01b031615611ff55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109c0565b61200160008383611d84565b6001600160a01b038216600090815260036020526040812080546001929061202a908490612768565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161209584611040565b61209f9190612887565b6000838152600760205260409020549091508082146120f2576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061213790600190612887565b6000838152600960205260408120546008805493945090928490811061215f5761215f6127ec565b906000526020600020015490508060088381548110612180576121806127ec565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806121b8576121b8612988565b6001900381819060005260206000200160009055905550505050565b60006121df83611040565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612224906126e2565b90600052602060002090601f016020900481019282612246576000855561228c565b82601f1061225f57805160ff191683800117855561228c565b8280016001018555821561228c579182015b8281111561228c578251825591602001919060010190612271565b5061229892915061229c565b5090565b5b80821115612298576000815560010161229d565b6001600160e01b03198116811461114157600080fd5b6000602082840312156122d957600080fd5b81356113fe816122b1565b60005b838110156122ff5781810151838201526020016122e7565b838111156113175750506000910152565b600081518084526123288160208601602086016122e4565b601f01601f19169290920160200192915050565b6020815260006113fe6020830184612310565b60006020828403121561236157600080fd5b5035919050565b8035801515811461237857600080fd5b919050565b60006020828403121561238f57600080fd5b6113fe82612368565b80356001600160a01b038116811461237857600080fd5b600080604083850312156123c257600080fd5b6123cb83612398565b946020939093013593505050565b6000806000606084860312156123ee57600080fd5b6123f784612398565b925061240560208501612398565b9150604084013590509250925092565b60006020828403121561242757600080fd5b6113fe82612398565b6020808252825182820181905260009190848201906040850190845b818110156124685783518352928401929184019160010161244c565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156124b3576124b3612474565b604052919050565b600067ffffffffffffffff8311156124d5576124d5612474565b6124e8601f8401601f191660200161248a565b90508281528383830111156124fc57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561252557600080fd5b813567ffffffffffffffff81111561253c57600080fd5b8201601f8101841361254d57600080fd5b611896848235602084016124bb565b6000806040838503121561256f57600080fd5b61257883612398565b915061258660208401612368565b90509250929050565b600060208083850312156125a257600080fd5b823567ffffffffffffffff808211156125ba57600080fd5b818501915085601f8301126125ce57600080fd5b8135818111156125e0576125e0612474565b8060051b91506125f184830161248a565b818152918301840191848101908884111561260b57600080fd5b938501935b838510156126305761262185612398565b82529385019390850190612610565b98975050505050505050565b6000806000806080858703121561265257600080fd5b61265b85612398565b935061266960208601612398565b925060408501359150606085013567ffffffffffffffff81111561268c57600080fd5b8501601f8101871361269d57600080fd5b6126ac878235602084016124bb565b91505092959194509250565b600080604083850312156126cb57600080fd5b6126d483612398565b915061258660208401612398565b600181811c908216806126f657607f821691505b6020821081141561271757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561277b5761277b612752565b500190565b600060001982141561279457612794612752565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b600081600019048311821515161561285357612853612752565b500290565b6000835161286a8184602088016122e4565b83519083019061287e8183602088016122e4565b01949350505050565b60008282101561289957612899612752565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612915576129156128f0565b500490565b600082612929576129296128f0565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061296190830184612310565b9695505050505050565b60006020828403121561297d57600080fd5b81516113fe816122b1565b634e487b7160e01b600052603160045260246000fdfea26469706673582212207aaad67a850c8d3382bd3cf1b3fb9e18988d3e9401f7ff9a931477bb107896f864736f6c634300080a0033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d48756e67727920576f6c76657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000648554e4752590000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Hungry Wolves
Arg [1] : _symbol (string): HUNGRY

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [3] : 48756e67727920576f6c76657300000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 48554e4752590000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

47272:4597:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41025:224;;;;;;;;;;-1:-1:-1;41025:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;41025:224:0;;;;;;;;28519:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30078:221::-;;;;;;;;;;-1:-1:-1;30078:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;30078:221:0;1528:203:1;50516:122:0;;;;;;;;;;-1:-1:-1;50516:122:0;;;;;:::i;:::-;;:::i;:::-;;51216:135;;;;;;;;;;-1:-1:-1;51216:135:0;;;;;:::i;:::-;;:::i;29601:411::-;;;;;;;;;;-1:-1:-1;29601:411:0;;;;;:::i;:::-;;:::i;48118:360::-;;;;;;;;;;-1:-1:-1;48118:360:0;;;;;:::i;:::-;;:::i;47453:29::-;;;;;;;;;;;;;;;;;;;2669:25:1;;;2657:2;2642:18;47453:29:0;2523:177:1;41665:113:0;;;;;;;;;;-1:-1:-1;41753:10:0;:17;41665:113;;47691:37;;;;;;;;;;;;;;;;47735:30;;;;;;;;;;;;;;;;30828:339;;;;;;;;;;-1:-1:-1;30828:339:0;;;;;:::i;:::-;;:::i;47574:34::-;;;;;;;;;;;;;;;;47772:33;;;;;;;;;;;;;;;;41333:256;;;;;;;;;;-1:-1:-1;41333:256:0;;;;;:::i;:::-;;:::i;50992:99::-;;;;;;;;;;-1:-1:-1;50992:99:0;;;;;:::i;:::-;;:::i;47898:35::-;;;;;;;;;;-1:-1:-1;47898:35:0;;;;;;;;;;;51754:112;;;;;;;;;;;;;:::i;31238:185::-;;;;;;;;;;-1:-1:-1;31238:185:0;;;;;:::i;:::-;;:::i;50011:364::-;;;;;;;;;;-1:-1:-1;50011:364:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;50422:86::-;;;;;;;;;;-1:-1:-1;50422:86:0;;;;;:::i;:::-;;:::i;47814:33::-;;;;;;;;;;-1:-1:-1;47814:33:0;;;;;;;;47655:29;;;;;;;;;;;;;;;;41855:233;;;;;;;;;;-1:-1:-1;41855:233:0;;;;;:::i;:::-;;:::i;50754:90::-;;;;;;;;;;-1:-1:-1;50754:90:0;;;;;:::i;:::-;;:::i;47489:35::-;;;;;;;;;;;;;;;;28213:239;;;;;;;;;;-1:-1:-1;28213:239:0;;;;;:::i;:::-;;:::i;47379:21::-;;;;;;;;;;;;;:::i;27943:208::-;;;;;;;;;;-1:-1:-1;27943:208:0;;;;;:::i;:::-;;:::i;7489:103::-;;;;;;;;;;;;;:::i;51597:145::-;;;;;;;;;;-1:-1:-1;51597:145:0;;;;;:::i;:::-;;:::i;47942:61::-;;;;;;;;;;-1:-1:-1;47942:61:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;6838:87;;;;;;;;;;-1:-1:-1;6911:6:0;;-1:-1:-1;;;;;6911:6:0;6838:87;;28688:104;;;;;;;;;;;;;:::i;49494:509::-;;;;;;:::i;:::-;;:::i;30371:155::-;;;;;;;;;;-1:-1:-1;30371:155:0;;;;;:::i;:::-;;:::i;51359:230::-;;;;;;;;;;-1:-1:-1;51359:230:0;;;;;:::i;:::-;;:::i;47531:36::-;;;;;;;;;;;;;;;;31494:328;;;;;;;;;;-1:-1:-1;31494:328:0;;;;;:::i;:::-;;:::i;47854:37::-;;;;;;;;;;-1:-1:-1;47854:37:0;;;;;;;;;;;47407;;;;;;;;;;;;;:::i;28863:334::-;;;;;;;;;;-1:-1:-1;28863:334:0;;;;;:::i;:::-;;:::i;47615:33::-;;;;;;;;;;;;;;;;50854:130;;;;;;;;;;-1:-1:-1;50854:130:0;;;;;:::i;:::-;;:::i;30597:164::-;;;;;;;;;;-1:-1:-1;30597:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30718:25:0;;;30694:4;30718:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30597:164;48486:410;;;;;;;;;;;;;:::i;7747:201::-;;;;;;;;;;-1:-1:-1;7747:201:0;;;;;:::i;:::-;;:::i;51103:105::-;;;;;;;;;;-1:-1:-1;51103:105:0;;;;;:::i;:::-;;:::i;48904:582::-;;;;;;:::i;:::-;;:::i;41025:224::-;41127:4;-1:-1:-1;;;;;;41151:50:0;;-1:-1:-1;;;41151:50:0;;:90;;;41205:36;41229:11;41205:23;:36::i;:::-;41144:97;41025:224;-1:-1:-1;;41025:224:0:o;28519:100::-;28573:13;28606:5;28599:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28519:100;:::o;30078:221::-;30154:7;33421:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33421:16:0;30174:73;;;;-1:-1:-1;;;30174:73:0;;7886:2:1;30174:73:0;;;7868:21:1;7925:2;7905:18;;;7898:30;7964:34;7944:18;;;7937:62;-1:-1:-1;;;8015:18:1;;;8008:42;8067:19;;30174:73:0;;;;;;;;;-1:-1:-1;30267:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30267:24:0;;30078:221::o;50516:122::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;50597:13:::1;:33:::0;50516:122::o;51216:135::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;51283:18:::1;:25:::0;;51319:24;::::1;;::::0;::::1;-1:-1:-1::0;;51319:24:0;;;;;;;51283:25:::1;51319:24:::0;;;51216:135::o;29601:411::-;29682:13;29698:23;29713:7;29698:14;:23::i;:::-;29682:39;;29746:5;-1:-1:-1;;;;;29740:11:0;:2;-1:-1:-1;;;;;29740:11:0;;;29732:57;;;;-1:-1:-1;;;29732:57:0;;8660:2:1;29732:57:0;;;8642:21:1;8699:2;8679:18;;;8672:30;8738:34;8718:18;;;8711:62;-1:-1:-1;;;8789:18:1;;;8782:31;8830:19;;29732:57:0;8458:397:1;29732:57:0;5642:10;-1:-1:-1;;;;;29824:21:0;;;;:62;;-1:-1:-1;29849:37:0;29866:5;5642:10;30597:164;:::i;29849:37::-;29802:168;;;;-1:-1:-1;;;29802:168:0;;9062:2:1;29802:168:0;;;9044:21:1;9101:2;9081:18;;;9074:30;9140:34;9120:18;;;9113:62;9211:26;9191:18;;;9184:54;9255:19;;29802:168:0;8860:420:1;29802:168:0;29983:21;29992:2;29996:7;29983:8;:21::i;:::-;29671:341;29601:411;;:::o;48118:360::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;6911:6;;-1:-1:-1;;;;;6911:6:0;48198:10:::1;:21;48190:30;;;::::0;::::1;;48260:16;::::0;48239:13:::1;::::0;:17:::1;::::0;48255:1:::1;48239:17;:::i;:::-;:37;;48231:46;;;::::0;::::1;;48288:11;48302:13;41753:10:::0;:17;;41665:113;48302:13:::1;48288:27:::0;-1:-1:-1;48350:1:0::1;48336:135;48358:14;48353:1;:19;48336:135;;48410:1;48393:13;;:18;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;48426:33:0::1;::::0;-1:-1:-1;48436:10:0::1;48448;:6:::0;48457:1:::1;48448:10;:::i;:::-;48426:9;:33::i;:::-;48374:3:::0;::::1;::::0;::::1;:::i;:::-;;;;48336:135;;30828:339:::0;31023:41;5642:10;31056:7;31023:18;:41::i;:::-;31015:103;;;;-1:-1:-1;;;31015:103:0;;;;;;;:::i;:::-;31131:28;31141:4;31147:2;31151:7;31131:9;:28::i;41333:256::-;41430:7;41466:23;41483:5;41466:16;:23::i;:::-;41458:5;:31;41450:87;;;;-1:-1:-1;;;41450:87:0;;10310:2:1;41450:87:0;;;10292:21:1;10349:2;10329:18;;;10322:30;10388:34;10368:18;;;10361:62;-1:-1:-1;;;10439:18:1;;;10432:41;10490:19;;41450:87:0;10108:407:1;41450:87:0;-1:-1:-1;;;;;;41555:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;41333:256::o;50992:99::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;51059:14:::1;:24:::0;;-1:-1:-1;;51059:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50992:99::o;51754:112::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;51810:47:::1;::::0;51818:10:::1;::::0;51835:21:::1;51810:47:::0;::::1;;;::::0;::::1;::::0;;;51835:21;51818:10;51810:47;::::1;;;;;;51802:56;;;::::0;::::1;;51754:112::o:0;31238:185::-;31376:39;31393:4;31399:2;31403:7;31376:39;;;;;;;;;;;;:16;:39::i;50011:364::-;50071:16;50100:20;50123:17;50133:6;50123:9;:17::i;:::-;50100:40;;50151:25;50193:15;50179:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50179:30:0;;50151:58;;50225:9;50220:122;50240:15;50236:1;:19;50220:122;;;50300:30;50320:6;50328:1;50300:19;:30::i;:::-;50286:8;50295:1;50286:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;50257:3;;;;:::i;:::-;;;;50220:122;;;-1:-1:-1;50359:8:0;50011:364;-1:-1:-1;;;50011:364:0:o;50422:86::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;50485:4:::1;:15:::0;50422:86::o;41855:233::-;41930:7;41966:30;41753:10;:17;;41665:113;41966:30;41958:5;:38;41950:95;;;;-1:-1:-1;;;41950:95:0;;10854:2:1;41950:95:0;;;10836:21:1;10893:2;10873:18;;;10866:30;10932:34;10912:18;;;10905:62;-1:-1:-1;;;10983:18:1;;;10976:42;11035:19;;41950:95:0;10652:408:1;41950:95:0;42063:10;42074:5;42063:17;;;;;;;;:::i;:::-;;;;;;;;;42056:24;;41855:233;;;:::o;50754:90::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;50823:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50754:90:::0;:::o;28213:239::-;28285:7;28321:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28321:16:0;28356:19;28348:73;;;;-1:-1:-1;;;28348:73:0;;11267:2:1;28348:73:0;;;11249:21:1;11306:2;11286:18;;;11279:30;11345:34;11325:18;;;11318:62;-1:-1:-1;;;11396:18:1;;;11389:39;11445:19;;28348:73:0;11065:405:1;47379:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27943:208::-;28015:7;-1:-1:-1;;;;;28043:19:0;;28035:74;;;;-1:-1:-1;;;28035:74:0;;11677:2:1;28035:74:0;;;11659:21:1;11716:2;11696:18;;;11689:30;11755:34;11735:18;;;11728:62;-1:-1:-1;;;11806:18:1;;;11799:40;11856:19;;28035:74:0;11475:406:1;28035:74:0;-1:-1:-1;;;;;;28127:16:0;;;;;:9;:16;;;;;;;27943:208::o;7489:103::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;7554:30:::1;7581:1;7554:18;:30::i;51597:145::-:0;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;51669:39:::1;51688:10;51700:7;51669:18;:39::i;:::-;51661:48;;;::::0;::::1;;51720:14;51726:7;51720:5;:14::i;:::-;51597:145:::0;:::o;28688:104::-;28744:13;28777:7;28770:14;;;;;:::i;49494:509::-;1812:1;2410:7;;:19;;2402:63;;;;-1:-1:-1;;;2402:63:0;;;;;;;:::i;:::-;1812:1;2543:7;:18;49569:11:::1;49583:13;41753:10:::0;:17;;41665:113;49583:13:::1;49616:16;::::0;49569:27;;-1:-1:-1;49616:16:0;;::::1;;;49615:17;49607:26;;;::::0;::::1;;49666:1;49652:11;:15;49644:24;;;::::0;::::1;;49702:13;;49687:11;:28;;49679:37;;;::::0;::::1;;49818:15;;49798:17;;49778;;49759:16;;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:74;;;;:::i;:::-;49735:20;49744:11:::0;49735:6;:20:::1;:::i;:::-;:98;;49727:107;;;::::0;::::1;;49874:11;49867:4;;:18;;;;:::i;:::-;49854:9;:31;;49845:41;;;::::0;::::1;;49911:1;49897:99;49919:11;49914:1;:16;49897:99;;49951:33;49961:10;49973;49982:1:::0;49973:6;:10:::1;:::i;49951:33::-;49932:3:::0;::::1;::::0;::::1;:::i;:::-;;;;49897:99;;;-1:-1:-1::0;;1768:1:0;2722:7;:22;-1:-1:-1;49494:509:0:o;30371:155::-;30466:52;5642:10;30499:8;30509;30466:18;:52::i;51359:230::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;51460:6:::1;51455:127;51472:10;:17;51468:1;:21;51455:127;;;51566:4;51520:28;:43;51549:10;51560:1;51549:13;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;51520:43:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;51520:43:0;:50;;-1:-1:-1;;51520:50:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51491:3;::::1;::::0;::::1;:::i;:::-;;;;51455:127;;31494:328:::0;31669:41;5642:10;31702:7;31669:18;:41::i;:::-;31661:103;;;;-1:-1:-1;;;31661:103:0;;;;;;;:::i;:::-;31775:39;31789:4;31795:2;31799:7;31808:5;31775:13;:39::i;:::-;31494:328;;;;:::o;47407:37::-;;;;;;;:::i;28863:334::-;33397:4;33421:16;;;:7;:16;;;;;;28936:13;;-1:-1:-1;;;;;33421:16:0;28962:76;;;;-1:-1:-1;;;28962:76:0;;12621:2:1;28962:76:0;;;12603:21:1;12660:2;12640:18;;;12633:30;12699:34;12679:18;;;12672:62;-1:-1:-1;;;12750:18:1;;;12743:45;12805:19;;28962:76:0;12419:411:1;28962:76:0;29051:21;29075:10;:8;:10::i;:::-;29051:34;;29127:1;29109:7;29103:21;:25;:86;;;;;;;;;;;;;;;;;29155:7;29164:18;:7;:16;:18::i;:::-;29138:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29103:86;29096:93;28863:334;-1:-1:-1;;;28863:334:0:o;50854:130::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;50943:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;48486:410::-:0;1812:1;2410:7;;:19;;2402:63;;;;-1:-1:-1;;;2402:63:0;;;;;;;:::i;:::-;1812:1;2543:7;:18;48555:14:::1;::::0;::::1;;48554:15;48545:25;;;::::0;::::1;;48618:10;48589:40;::::0;;;:28:::1;:40;::::0;;;;;::::1;;:48;;:40:::0;:48:::1;48581:57;;;::::0;::::1;;48649:11;48663:13;41753:10:::0;:17;;41665:113;48663:13:::1;48649:27;;48769:15;;48749:17;;48729;;48710:16;;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:74;;;;:::i;:::-;48696:10;:6:::0;48705:1:::1;48696:10;:::i;:::-;:88;;48687:98;;;::::0;::::1;;48825:10;48839:5;48796:40:::0;;;:28:::1;:40;::::0;;;;:48;;-1:-1:-1;;48796:48:0::1;::::0;;48855:33:::1;::::0;48877:10:::1;:6:::0;48796:48;48877:10:::1;:::i;48855:33::-;-1:-1:-1::0;1768:1:0;2722:7;:22;48486:410::o;7747:201::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7836:22:0;::::1;7828:73;;;::::0;-1:-1:-1;;;7828:73:0;;13512:2:1;7828:73:0::1;::::0;::::1;13494:21:1::0;13551:2;13531:18;;;13524:30;13590:34;13570:18;;;13563:62;-1:-1:-1;;;13641:18:1;;;13634:36;13687:19;;7828:73:0::1;13310:402:1::0;7828:73:0::1;7912:28;7931:8;7912:18;:28::i;51103:105::-:0;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;51173:18:::1;:27:::0;;;::::1;;;;-1:-1:-1::0;;51173:27:0;;::::1;::::0;;;::::1;::::0;;51103:105::o;48904:582::-;1812:1;2410:7;;:19;;2402:63;;;;-1:-1:-1;;;2402:63:0;;;;;;;:::i;:::-;1812:1;2543:7;:18;48995:19:::1;49017:13;41753:10:::0;:17;;41665:113;49017:13:::1;49050:18;::::0;48995:35;;-1:-1:-1;49050:18:0::1;::::0;::::1;;;49049:19;49041:28;;;::::0;::::1;;49111:21;;49088:19;:44;;49080:53;;;::::0;::::1;;49172:19;49165:4;;:26;;;;:::i;:::-;49152:9;:39;;49144:48;;;::::0;::::1;;49233:1;49211:19;:23;49203:32;;;::::0;::::1;;49333:17;;49313;;49294:16;;:36;;;;:::i;:::-;:56;;;;:::i;:::-;49254:36;49271:19:::0;49254:14;:36:::1;:::i;:::-;:96;;49246:105;;;::::0;::::1;;49378:1;49364:115;49386:19;49381:1;:24;49364:115;;49426:41;49436:10;49448:18;49465:1:::0;49448:14;:18:::1;:::i;49426:41::-;49407:3:::0;::::1;::::0;::::1;:::i;:::-;;;;49364:115;;27574:305:::0;27676:4;-1:-1:-1;;;;;;27713:40:0;;-1:-1:-1;;;27713:40:0;;:105;;-1:-1:-1;;;;;;;27770:48:0;;-1:-1:-1;;;27770:48:0;27713:105;:158;;;-1:-1:-1;;;;;;;;;;19379:40:0;;;27835:36;19270:157;37314:174;37389:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37389:29:0;-1:-1:-1;;;;;37389:29:0;;;;;;;;:24;;37443:23;37389:24;37443:14;:23::i;:::-;-1:-1:-1;;;;;37434:46:0;;;;;;;;;;;37314:174;;:::o;34316:110::-;34392:26;34402:2;34406:7;34392:26;;;;;;;;;;;;:9;:26::i;33626:348::-;33719:4;33421:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33421:16:0;33736:73;;;;-1:-1:-1;;;33736:73:0;;13919:2:1;33736:73:0;;;13901:21:1;13958:2;13938:18;;;13931:30;13997:34;13977:18;;;13970:62;-1:-1:-1;;;14048:18:1;;;14041:42;14100:19;;33736:73:0;13717:408:1;33736:73:0;33820:13;33836:23;33851:7;33836:14;:23::i;:::-;33820:39;;33889:5;-1:-1:-1;;;;;33878:16:0;:7;-1:-1:-1;;;;;33878:16:0;;:51;;;;33922:7;-1:-1:-1;;;;;33898:31:0;:20;33910:7;33898:11;:20::i;:::-;-1:-1:-1;;;;;33898:31:0;;33878:51;:87;;;-1:-1:-1;;;;;;30718:25:0;;;30694:4;30718:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33933:32;33870:96;33626:348;-1:-1:-1;;;;33626:348:0:o;36618:578::-;36777:4;-1:-1:-1;;;;;36750:31:0;:23;36765:7;36750:14;:23::i;:::-;-1:-1:-1;;;;;36750:31:0;;36742:85;;;;-1:-1:-1;;;36742:85:0;;14332:2:1;36742:85:0;;;14314:21:1;14371:2;14351:18;;;14344:30;14410:34;14390:18;;;14383:62;-1:-1:-1;;;14461:18:1;;;14454:39;14510:19;;36742:85:0;14130:405:1;36742:85:0;-1:-1:-1;;;;;36846:16:0;;36838:65;;;;-1:-1:-1;;;36838:65:0;;14742:2:1;36838:65:0;;;14724:21:1;14781:2;14761:18;;;14754:30;14820:34;14800:18;;;14793:62;-1:-1:-1;;;14871:18:1;;;14864:34;14915:19;;36838:65:0;14540:400:1;36838:65:0;36916:39;36937:4;36943:2;36947:7;36916:20;:39::i;:::-;37020:29;37037:1;37041:7;37020:8;:29::i;:::-;-1:-1:-1;;;;;37062:15:0;;;;;;:9;:15;;;;;:20;;37081:1;;37062:15;:20;;37081:1;;37062:20;:::i;:::-;;;;-1:-1:-1;;;;;;;37093:13:0;;;;;;:9;:13;;;;;:18;;37110:1;;37093:13;:18;;37110:1;;37093:18;:::i;:::-;;;;-1:-1:-1;;37122:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37122:21:0;-1:-1:-1;;;;;37122:21:0;;;;;;;;;37161:27;;37122:16;;37161:27;;;;;;;36618:578;;;:::o;8108:191::-;8201:6;;;-1:-1:-1;;;;;8218:17:0;;;-1:-1:-1;;;;;;8218:17:0;;;;;;;8251:40;;8201:6;;;8218:17;8201:6;;8251:40;;8182:16;;8251:40;8171:128;8108:191;:::o;35921:360::-;35981:13;35997:23;36012:7;35997:14;:23::i;:::-;35981:39;;36033:48;36054:5;36069:1;36073:7;36033:20;:48::i;:::-;36122:29;36139:1;36143:7;36122:8;:29::i;:::-;-1:-1:-1;;;;;36164:16:0;;;;;;:9;:16;;;;;:21;;36184:1;;36164:16;:21;;36184:1;;36164:21;:::i;:::-;;;;-1:-1:-1;;36203:16:0;;;;:7;:16;;;;;;36196:23;;-1:-1:-1;;;;;;36196:23:0;;;36237:36;36211:7;;36203:16;-1:-1:-1;;;;;36237:36:0;;;;;36203:16;;36237:36;35970:311;35921:360;:::o;37630:315::-;37785:8;-1:-1:-1;;;;;37776:17:0;:5;-1:-1:-1;;;;;37776:17:0;;;37768:55;;;;-1:-1:-1;;;37768:55:0;;15277:2:1;37768:55:0;;;15259:21:1;15316:2;15296:18;;;15289:30;15355:27;15335:18;;;15328:55;15400:18;;37768:55:0;15075:349:1;37768:55:0;-1:-1:-1;;;;;37834:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;37834:46:0;;;;;;;;;;37896:41;;540::1;;;37896::0;;513:18:1;37896:41:0;;;;;;;37630:315;;;:::o;32704:::-;32861:28;32871:4;32877:2;32881:7;32861:9;:28::i;:::-;32908:48;32931:4;32937:2;32941:7;32950:5;32908:22;:48::i;:::-;32900:111;;;;-1:-1:-1;;;32900:111:0;;;;;;;:::i;50646:100::-;50698:13;50731:7;50724:14;;;;;:::i;3124:723::-;3180:13;3401:10;3397:53;;-1:-1:-1;;3428:10:0;;;;;;;;;;;;-1:-1:-1;;;3428:10:0;;;;;3124:723::o;3397:53::-;3475:5;3460:12;3516:78;3523:9;;3516:78;;3549:8;;;;:::i;:::-;;-1:-1:-1;3572:10:0;;-1:-1:-1;3580:2:0;3572:10;;:::i;:::-;;;3516:78;;;3604:19;3636:6;3626:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3626:17:0;;3604:39;;3654:154;3661:10;;3654:154;;3688:11;3698:1;3688:11;;:::i;:::-;;-1:-1:-1;3757:10:0;3765:2;3757:5;:10;:::i;:::-;3744:24;;:2;:24;:::i;:::-;3731:39;;3714:6;3721;3714:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3714:56:0;;;;;;;;-1:-1:-1;3785:11:0;3794:2;3785:11;;:::i;:::-;;;3654:154;;34653:321;34783:18;34789:2;34793:7;34783:5;:18::i;:::-;34834:54;34865:1;34869:2;34873:7;34882:5;34834:22;:54::i;:::-;34812:154;;;;-1:-1:-1;;;34812:154:0;;;;;;;:::i;42701:589::-;-1:-1:-1;;;;;42907:18:0;;42903:187;;42942:40;42974:7;44117:10;:17;;44090:24;;;;:15;:24;;;;;:44;;;44145:24;;;;;;;;;;;;44013:164;42942:40;42903:187;;;43012:2;-1:-1:-1;;;;;43004:10:0;:4;-1:-1:-1;;;;;43004:10:0;;43000:90;;43031:47;43064:4;43070:7;43031:32;:47::i;:::-;-1:-1:-1;;;;;43104:16:0;;43100:183;;43137:45;43174:7;43137:36;:45::i;43100:183::-;43210:4;-1:-1:-1;;;;;43204:10:0;:2;-1:-1:-1;;;;;43204:10:0;;43200:83;;43231:40;43259:2;43263:7;43231:27;:40::i;38510:799::-;38665:4;-1:-1:-1;;;;;38686:13:0;;9449:20;9497:8;38682:620;;38722:72;;-1:-1:-1;;;38722:72:0;;-1:-1:-1;;;;;38722:36:0;;;;;:72;;5642:10;;38773:4;;38779:7;;38788:5;;38722:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38722:72:0;;;;;;;;-1:-1:-1;;38722:72:0;;;;;;;;;;;;:::i;:::-;;;38718:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38964:13:0;;38960:272;;39007:60;;-1:-1:-1;;;39007:60:0;;;;;;;:::i;38960:272::-;39182:6;39176:13;39167:6;39163:2;39159:15;39152:38;38718:529;-1:-1:-1;;;;;;38845:51:0;-1:-1:-1;;;38845:51:0;;-1:-1:-1;38838:58:0;;38682:620;-1:-1:-1;39286:4:0;38510:799;;;;;;:::o;35310:382::-;-1:-1:-1;;;;;35390:16:0;;35382:61;;;;-1:-1:-1;;;35382:61:0;;17172:2:1;35382:61:0;;;17154:21:1;;;17191:18;;;17184:30;17250:34;17230:18;;;17223:62;17302:18;;35382:61:0;16970:356:1;35382:61:0;33397:4;33421:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33421:16:0;:30;35454:58;;;;-1:-1:-1;;;35454:58:0;;17533:2:1;35454:58:0;;;17515:21:1;17572:2;17552:18;;;17545:30;17611;17591:18;;;17584:58;17659:18;;35454:58:0;17331:352:1;35454:58:0;35525:45;35554:1;35558:2;35562:7;35525:20;:45::i;:::-;-1:-1:-1;;;;;35583:13:0;;;;;;:9;:13;;;;;:18;;35600:1;;35583:13;:18;;35600:1;;35583:18;:::i;:::-;;;;-1:-1:-1;;35612:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35612:21:0;-1:-1:-1;;;;;35612:21:0;;;;;;;;35651:33;;35612:16;;;35651:33;;35612:16;;35651:33;35310:382;;:::o;44804:988::-;45070:22;45120:1;45095:22;45112:4;45095:16;:22::i;:::-;:26;;;;:::i;:::-;45132:18;45153:26;;;:17;:26;;;;;;45070:51;;-1:-1:-1;45286:28:0;;;45282:328;;-1:-1:-1;;;;;45353:18:0;;45331:19;45353:18;;;:12;:18;;;;;;;;:34;;;;;;;;;45404:30;;;;;;:44;;;45521:30;;:17;:30;;;;;:43;;;45282:328;-1:-1:-1;45706:26:0;;;;:17;:26;;;;;;;;45699:33;;;-1:-1:-1;;;;;45750:18:0;;;;;:12;:18;;;;;:34;;;;;;;45743:41;44804:988::o;46087:1079::-;46365:10;:17;46340:22;;46365:21;;46385:1;;46365:21;:::i;:::-;46397:18;46418:24;;;:15;:24;;;;;;46791:10;:26;;46340:46;;-1:-1:-1;46418:24:0;;46340:46;;46791:26;;;;;;:::i;:::-;;;;;;;;;46769:48;;46855:11;46830:10;46841;46830:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;46935:28;;;:15;:28;;;;;;;:41;;;47107:24;;;;;47100:31;47142:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;46158:1008;;;46087:1079;:::o;43591:221::-;43676:14;43693:20;43710:2;43693:16;:20::i;:::-;-1:-1:-1;;;;;43724:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;43769:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;43591:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;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:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:160::-;1801:20;;1857:13;;1850:21;1840:32;;1830:60;;1886:1;1883;1876:12;1830:60;1736:160;;;:::o;1901:180::-;1957:6;2010:2;1998:9;1989:7;1985:23;1981:32;1978:52;;;2026:1;2023;2016:12;1978:52;2049:26;2065:9;2049:26;:::i;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:632::-;3400:2;3452:21;;;3522:13;;3425:18;;;3544:22;;;3371:4;;3400:2;3623:15;;;;3597:2;3582:18;;;3371:4;3666:169;3680:6;3677:1;3674:13;3666:169;;;3741:13;;3729:26;;3810:15;;;;3775:12;;;;3702:1;3695:9;3666:169;;;-1:-1:-1;3852:3:1;;3229:632;-1:-1:-1;;;;;;3229:632:1:o;3866:127::-;3927:10;3922:3;3918:20;3915:1;3908:31;3958:4;3955:1;3948:15;3982:4;3979:1;3972:15;3998:275;4069:2;4063:9;4134:2;4115:13;;-1:-1:-1;;4111:27:1;4099:40;;4169:18;4154:34;;4190:22;;;4151:62;4148:88;;;4216:18;;:::i;:::-;4252:2;4245:22;3998:275;;-1:-1:-1;3998:275:1:o;4278:407::-;4343:5;4377:18;4369:6;4366:30;4363:56;;;4399:18;;:::i;:::-;4437:57;4482:2;4461:15;;-1:-1:-1;;4457:29:1;4488:4;4453:40;4437:57;:::i;:::-;4428:66;;4517:6;4510:5;4503:21;4557:3;4548:6;4543:3;4539:16;4536:25;4533:45;;;4574:1;4571;4564:12;4533:45;4623:6;4618:3;4611:4;4604:5;4600:16;4587:43;4677:1;4670:4;4661:6;4654:5;4650:18;4646:29;4639:40;4278:407;;;;;:::o;4690:451::-;4759:6;4812:2;4800:9;4791:7;4787:23;4783:32;4780:52;;;4828:1;4825;4818:12;4780:52;4868:9;4855:23;4901:18;4893:6;4890:30;4887:50;;;4933:1;4930;4923:12;4887:50;4956:22;;5009:4;5001:13;;4997:27;-1:-1:-1;4987:55:1;;5038:1;5035;5028:12;4987:55;5061:74;5127:7;5122:2;5109:16;5104:2;5100;5096:11;5061:74;:::i;5146:254::-;5211:6;5219;5272:2;5260:9;5251:7;5247:23;5243:32;5240:52;;;5288:1;5285;5278:12;5240:52;5311:29;5330:9;5311:29;:::i;:::-;5301:39;;5359:35;5390:2;5379:9;5375:18;5359:35;:::i;:::-;5349:45;;5146:254;;;;;:::o;5405:952::-;5489:6;5520:2;5563;5551:9;5542:7;5538:23;5534:32;5531:52;;;5579:1;5576;5569:12;5531:52;5619:9;5606:23;5648:18;5689:2;5681:6;5678:14;5675:34;;;5705:1;5702;5695:12;5675:34;5743:6;5732:9;5728:22;5718:32;;5788:7;5781:4;5777:2;5773:13;5769:27;5759:55;;5810:1;5807;5800:12;5759:55;5846:2;5833:16;5868:2;5864;5861:10;5858:36;;;5874:18;;:::i;:::-;5920:2;5917:1;5913:10;5903:20;;5943:28;5967:2;5963;5959:11;5943:28;:::i;:::-;6005:15;;;6075:11;;;6071:20;;;6036:12;;;;6103:19;;;6100:39;;;6135:1;6132;6125:12;6100:39;6159:11;;;;6179:148;6195:6;6190:3;6187:15;6179:148;;;6261:23;6280:3;6261:23;:::i;:::-;6249:36;;6212:12;;;;6305;;;;6179:148;;;6346:5;5405:952;-1:-1:-1;;;;;;;;5405:952:1:o;6362:667::-;6457:6;6465;6473;6481;6534:3;6522:9;6513:7;6509:23;6505:33;6502:53;;;6551:1;6548;6541:12;6502:53;6574:29;6593:9;6574:29;:::i;:::-;6564:39;;6622:38;6656:2;6645:9;6641:18;6622:38;:::i;:::-;6612:48;;6707:2;6696:9;6692:18;6679:32;6669:42;;6762:2;6751:9;6747:18;6734:32;6789:18;6781:6;6778:30;6775:50;;;6821:1;6818;6811:12;6775:50;6844:22;;6897:4;6889:13;;6885:27;-1:-1:-1;6875:55:1;;6926:1;6923;6916:12;6875:55;6949:74;7015:7;7010:2;6997:16;6992:2;6988;6984:11;6949:74;:::i;:::-;6939:84;;;6362:667;;;;;;;:::o;7034:260::-;7102:6;7110;7163:2;7151:9;7142:7;7138:23;7134:32;7131:52;;;7179:1;7176;7169:12;7131:52;7202:29;7221:9;7202:29;:::i;:::-;7192:39;;7250:38;7284:2;7273:9;7269:18;7250:38;:::i;7299:380::-;7378:1;7374:12;;;;7421;;;7442:61;;7496:4;7488:6;7484:17;7474:27;;7442:61;7549:2;7541:6;7538:14;7518:18;7515:38;7512:161;;;7595:10;7590:3;7586:20;7583:1;7576:31;7630:4;7627:1;7620:15;7658:4;7655:1;7648:15;7512:161;;7299:380;;;:::o;8097:356::-;8299:2;8281:21;;;8318:18;;;8311:30;8377:34;8372:2;8357:18;;8350:62;8444:2;8429:18;;8097:356::o;9285:127::-;9346:10;9341:3;9337:20;9334:1;9327:31;9377:4;9374:1;9367:15;9401:4;9398:1;9391:15;9417:128;9457:3;9488:1;9484:6;9481:1;9478:13;9475:39;;;9494:18;;:::i;:::-;-1:-1:-1;9530:9:1;;9417:128::o;9550:135::-;9589:3;-1:-1:-1;;9610:17:1;;9607:43;;;9630:18;;:::i;:::-;-1:-1:-1;9677:1:1;9666:13;;9550:135::o;9690:413::-;9892:2;9874:21;;;9931:2;9911:18;;;9904:30;9970:34;9965:2;9950:18;;9943:62;-1:-1:-1;;;10036:2:1;10021:18;;10014:47;10093:3;10078:19;;9690:413::o;10520:127::-;10581:10;10576:3;10572:20;10569:1;10562:31;10612:4;10609:1;10602:15;10636:4;10633:1;10626:15;11886:355;12088:2;12070:21;;;12127:2;12107:18;;;12100:30;12166:33;12161:2;12146:18;;12139:61;12232:2;12217:18;;11886:355::o;12246:168::-;12286:7;12352:1;12348;12344:6;12340:14;12337:1;12334:21;12329:1;12322:9;12315:17;12311:45;12308:71;;;12359:18;;:::i;:::-;-1:-1:-1;12399:9:1;;12246:168::o;12835:470::-;13014:3;13052:6;13046:13;13068:53;13114:6;13109:3;13102:4;13094:6;13090:17;13068:53;:::i;:::-;13184:13;;13143:16;;;;13206:57;13184:13;13143:16;13240:4;13228:17;;13206:57;:::i;:::-;13279:20;;12835:470;-1:-1:-1;;;;12835:470:1:o;14945:125::-;14985:4;15013:1;15010;15007:8;15004:34;;;15018:18;;:::i;:::-;-1:-1:-1;15055:9:1;;14945:125::o;15429:414::-;15631:2;15613:21;;;15670:2;15650:18;;;15643:30;15709:34;15704:2;15689:18;;15682:62;-1:-1:-1;;;15775:2:1;15760:18;;15753:48;15833:3;15818:19;;15429:414::o;15848:127::-;15909:10;15904:3;15900:20;15897:1;15890:31;15940:4;15937:1;15930:15;15964:4;15961:1;15954:15;15980:120;16020:1;16046;16036:35;;16051:18;;:::i;:::-;-1:-1:-1;16085:9:1;;15980:120::o;16105:112::-;16137:1;16163;16153:35;;16168:18;;:::i;:::-;-1:-1:-1;16202:9:1;;16105:112::o;16222:489::-;-1:-1:-1;;;;;16491:15:1;;;16473:34;;16543:15;;16538:2;16523:18;;16516:43;16590:2;16575:18;;16568:34;;;16638:3;16633:2;16618:18;;16611:31;;;16416:4;;16659:46;;16685:19;;16677:6;16659:46;:::i;:::-;16651:54;16222:489;-1:-1:-1;;;;;;16222:489:1:o;16716:249::-;16785:6;16838:2;16826:9;16817:7;16813:23;16809:32;16806:52;;;16854:1;16851;16844:12;16806:52;16886:9;16880:16;16905:30;16929:5;16905:30;:::i;17688:127::-;17749:10;17744:3;17740:20;17737:1;17730:31;17780:4;17777:1;17770:15;17804:4;17801:1;17794:15

Swarm Source

ipfs://7aaad67a850c8d3382bd3cf1b3fb9e18988d3e9401f7ff9a931477bb107896f8
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.