ETH Price: $3,061.23 (+2.34%)
Gas: 5 Gwei

Token

Quakheads (QUAK)
 

Overview

Max Total Supply

6,666 QUAK

Holders

5,325

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 QUAK
0x8a3dca6208fab8253575cf83a78ceee7357c7b99
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Quakheads

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-04
*/

// File @openzeppelin/contracts/utils/[email protected]

/*
                   _    _                    _     
  __ _ _   _  __ _| | _| |__   ___  __ _  __| |___ 
 / _` | | | |/ _` | |/ / '_ \ / _ \/ _` |/ _` / __|
| (_| | |_| | (_| |   <| | | |  __/ (_| | (_| \__ \
 \__, |\__,_|\__,_|_|\_\_| |_|\___|\__,_|\__,_|___/
    |_|                                            
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/access/[email protected]


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



/**
 * @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/[email protected]


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



/**
 * @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/introspection/[email protected]


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



/**
 * @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/token/ERC721/[email protected]


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



/**
 * @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/[email protected]


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



/**
 * @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/token/ERC721/extensions/[email protected]


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



/**
 * @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/extensions/[email protected]


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



/**
 * @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/utils/[email protected]


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



/**
 * @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/utils/introspection/[email protected]


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



/**
 * @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 contracts/ERC721A.sol


// Creator: Chiru Labs


/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 0;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        for (uint256 curr = tokenId; ; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: approve to caller');

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), 'ERC721A: token already minted');
        require(quantity > 0, 'ERC721A: quantity must be greater 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                'ERC721A: transfer to non ERC721Receiver implementer'
            );
            updatedIndex++;
        }

        currentIndex = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp);
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

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

    /**
     * @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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}


// File contracts/Quakheads.sol


contract Quakheads is ERC721A, Ownable {

    string public baseURI = "";
    string public contractURI = "";
    string public constant baseExtension = ".json";
    address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;

    uint256 public constant MAX_PER_TX = 1;
    uint256 public constant MAX_SUPPLY = 6666;
    uint256 public constant MAX_PER_WALLET = 1;

    bool public paused = true;
    bool hasClaimedReserved = false;

    constructor() ERC721A("Quakheads", "QUAK") {}

    function mint() external {
        address _caller = _msgSender();
        uint256 ownerTokenCount = balanceOf(_caller);
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + 1, "Exceeds max supply");
        require(tx.origin == _caller, "No contracts");
        require(ownerTokenCount < MAX_PER_WALLET, "Exceeds max token count per wallet");

        _safeMint(_caller, 1);
    }

    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

    function setup() external onlyOwner {
         require(MAX_SUPPLY >= totalSupply() + 66, "Exceeds max supply");
         require(!hasClaimedReserved, "Team reserve already claimed");
         hasClaimedReserved = true;
        _safeMint(_msgSender(), 66);
    }

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

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

    function setContractURI(string memory _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
              baseExtension
            )
        ) : "";
    }
}

contract OwnableDelegateProxy { }
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setup","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600080805560a0604081905260808290526200001f916008919062000139565b50604080516020810191829052600090819052620000409160099162000139565b50600a805461ffff191660011790553480156200005c57600080fd5b5060408051808201825260098152685175616b686561647360b81b6020808301918252835180850190945260048452635155414b60e01b908401528151919291620000aa9160019162000139565b508051620000c090600290602084019062000139565b505050620000dd620000d7620000e360201b60201c565b620000e7565b6200021c565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014790620001df565b90600052602060002090601f0160209004810192826200016b5760008555620001b6565b82601f106200018657805160ff1916838001178555620001b6565b82800160010185558215620001b6579182015b82811115620001b657825182559160200191906001019062000199565b50620001c4929150620001c8565b5090565b5b80821115620001c45760008155600101620001c9565b600181811c90821680620001f457607f821691505b602082108114156200021657634e487b7160e01b600052602260045260246000fd5b50919050565b61221c806200022c6000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c80636352211e1161011a578063b88d4fde116100ad578063cd7c03261161007c578063cd7c0326146103fa578063e8a3d48514610415578063e985e9c51461041d578063f2fde38b14610430578063f43a22dc1461029057600080fd5b8063b88d4fde146103a8578063ba0bba40146103bb578063c6682862146103c3578063c87b56dd146103e757600080fd5b80638da5cb5b116100e95780638da5cb5b14610369578063938e3d7b1461037a57806395d89b411461038d578063a22cb4651461039557600080fd5b80636352211e146103335780636c0360eb1461034657806370a082311461034e578063715018a61461036157600080fd5b806323b872dd1161019257806342842e0e1161016157806342842e0e146102ed5780634f6ccce71461030057806355f804b3146103135780635c975abb1461032657600080fd5b806323b872dd146102b65780632f745c59146102c957806332cb6b0c146102dc5780633ccfd60b146102e557600080fd5b8063095ea7b3116101ce578063095ea7b31461027d5780630f2cdd6c146102905780631249c58b146102a657806318160ddd146102ae57600080fd5b806301ffc9a71461020057806302329a291461022857806306fdde031461023d578063081812fc14610252575b600080fd5b61021361020e366004611dc8565b610443565b60405190151581526020015b60405180910390f35b61023b610236366004611dad565b6104b0565b005b6102456104f6565b60405161021f9190611fad565b610265610260366004611e68565b610588565b6040516001600160a01b03909116815260200161021f565b61023b61028b366004611d81565b610613565b610298600181565b60405190815260200161021f565b61023b61072b565b600054610298565b61023b6102c4366004611c8b565b61087b565b6102986102d7366004611d81565b610886565b610298611a0a81565b61023b6109f4565b61023b6102fb366004611c8b565b610aa9565b61029861030e366004611e68565b610ac4565b61023b610321366004611e1f565b610b26565b600a546102139060ff1681565b610265610341366004611e68565b610b63565b610245610b75565b61029861035c366004611c2e565b610c03565b61023b610c94565b6007546001600160a01b0316610265565b61023b610388366004611e1f565b610cca565b610245610d07565b61023b6103a3366004611d4c565b610d16565b61023b6103b6366004611ccc565b610ddb565b61023b610e14565b61024560405180604001604052806005815260200164173539b7b760d91b81525081565b6102456103f5366004611e68565b610f0a565b61026573a5409ec958c83c3f309868babaca7c86dcb077c181565b610245610fd6565b61021361042b366004611c52565b610fe3565b61023b61043e366004611c2e565b6110c2565b60006001600160e01b031982166380ac58cd60e01b148061047457506001600160e01b03198216635b5e139f60e01b145b8061048f57506001600160e01b0319821663780e9d6360e01b145b806104aa57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146104e35760405162461bcd60e51b81526004016104da90611fc0565b60405180910390fd5b600a805460ff1916911515919091179055565b606060018054610505906120f9565b80601f0160208091040260200160405190810160405280929190818152602001828054610531906120f9565b801561057e5780601f106105535761010080835404028352916020019161057e565b820191906000526020600020905b81548152906001019060200180831161056157829003601f168201915b5050505050905090565b6000610595826000541190565b6105f75760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016104da565b506000908152600560205260409020546001600160a01b031690565b600061061e82610b63565b9050806001600160a01b0316836001600160a01b0316141561068d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016104da565b336001600160a01b03821614806106a957506106a98133610fe3565b61071b5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016104da565b61072683838361115d565b505050565b33600061073782610c03565b600a5490915060ff16156107765760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b60448201526064016104da565b600054610784906001612073565b611a0a10156107ca5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016104da565b326001600160a01b038316146108115760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b60448201526064016104da565b6001811061086c5760405162461bcd60e51b815260206004820152602260248201527f45786365656473206d617820746f6b656e20636f756e74207065722077616c6c604482015261195d60f21b60648201526084016104da565b6108778260016111b9565b5050565b6107268383836111d3565b600061089183610c03565b82106108ea5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016104da565b600080549080805b83811015610994576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561094557805192505b876001600160a01b0316836001600160a01b031614156109815786841415610973575093506104aa92505050565b8361097d81612134565b9450505b508061098c81612134565b9150506108f2565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016104da565b6007546001600160a01b03163314610a1e5760405162461bcd60e51b81526004016104da90611fc0565b6040514790600090339083908381818185875af1925050503d8060008114610a62576040519150601f19603f3d011682016040523d82523d6000602084013e610a67565b606091505b50509050806108775760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b60448201526064016104da565b61072683838360405180602001604052806000815250610ddb565b600080548210610b225760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016104da565b5090565b6007546001600160a01b03163314610b505760405162461bcd60e51b81526004016104da90611fc0565b8051610877906008906020840190611b13565b6000610b6e8261151a565b5192915050565b60088054610b82906120f9565b80601f0160208091040260200160405190810160405280929190818152602001828054610bae906120f9565b8015610bfb5780601f10610bd057610100808354040283529160200191610bfb565b820191906000526020600020905b815481529060010190602001808311610bde57829003601f168201915b505050505081565b60006001600160a01b038216610c6f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016104da565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610cbe5760405162461bcd60e51b81526004016104da90611fc0565b610cc860006115fa565b565b6007546001600160a01b03163314610cf45760405162461bcd60e51b81526004016104da90611fc0565b8051610877906009906020840190611b13565b606060028054610505906120f9565b6001600160a01b038216331415610d6f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016104da565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610de68484846111d3565b610df28484848461164c565b610e0e5760405162461bcd60e51b81526004016104da90611ff5565b50505050565b6007546001600160a01b03163314610e3e5760405162461bcd60e51b81526004016104da90611fc0565b600054610e4c906042612073565b611a0a1015610e925760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016104da565b600a54610100900460ff1615610eea5760405162461bcd60e51b815260206004820152601c60248201527f5465616d207265736572766520616c726561647920636c61696d65640000000060448201526064016104da565b600a805461ff001916610100179055610cc8610f033390565b60426111b9565b6060610f17826000541190565b610f5b5760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b60448201526064016104da565b600060088054610f6a906120f9565b905011610f8657604051806020016040528060008152506104aa565b6008610f9183611759565b60405180604001604052806005815260200164173539b7b760d91b815250604051602001610fc193929190611ec9565b60405160208183030381529060405292915050565b60098054610b82906120f9565b60405163c455279160e01b81526001600160a01b03838116600483015260009173a5409ec958c83c3f309868babaca7c86dcb077c191841690829063c45527919060240160206040518083038186803b15801561103f57600080fd5b505afa158015611053573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110779190611e02565b6001600160a01b031614156110905760019150506104aa565b6001600160a01b0380851660009081526006602090815260408083209387168352929052205460ff165b949350505050565b6007546001600160a01b031633146110ec5760405162461bcd60e51b81526004016104da90611fc0565b6001600160a01b0381166111515760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104da565b61115a816115fa565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610877828260405180602001604052806000815250611857565b60006111de8261151a565b80519091506000906001600160a01b0316336001600160a01b0316148061121557503361120a84610588565b6001600160a01b0316145b80611227575081516112279033610fe3565b9050806112915760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016104da565b846001600160a01b031682600001516001600160a01b0316146113055760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016104da565b6001600160a01b0384166113695760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016104da565b611379600084846000015161115d565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b9590921694909402179092559061143e908590612073565b6000818152600360205260409020549091506001600160a01b03166114d057611468816000541190565b156114d05760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611539826000541190565b6115985760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016104da565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156115e7579392505050565b50806115f2816120e2565b91505061159a565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561174e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611690903390899088908890600401611f7a565b602060405180830381600087803b1580156116aa57600080fd5b505af19250505080156116da575060408051601f3d908101601f191682019092526116d791810190611de5565b60015b611734573d808015611708576040519150601f19603f3d011682016040523d82523d6000602084013e61170d565b606091505b50805161172c5760405162461bcd60e51b81526004016104da90611ff5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110ba565b506001949350505050565b60608161177d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117a7578061179181612134565b91506117a09050600a8361208b565b9150611781565b60008167ffffffffffffffff8111156117c2576117c26121a5565b6040519080825280601f01601f1916602001820160405280156117ec576020820181803683370190505b5090505b84156110ba5761180160018361209f565b915061180e600a8661214f565b611819906030612073565b60f81b81838151811061182e5761182e61218f565b60200101906001600160f81b031916908160001a905350611850600a8661208b565b94506117f0565b6000546001600160a01b0384166118ba5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016104da565b6118c5816000541190565b156119125760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016104da565b6000831161196e5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b60648201526084016104da565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906119ca908790612048565b6001600160801b031681526020018583602001516119e89190612048565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611b085760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611acc600088848861164c565b611ae85760405162461bcd60e51b81526004016104da90611ff5565b81611af281612134565b9250508080611b0090612134565b915050611a7f565b506000819055611512565b828054611b1f906120f9565b90600052602060002090601f016020900481019282611b415760008555611b87565b82601f10611b5a57805160ff1916838001178555611b87565b82800160010185558215611b87579182015b82811115611b87578251825591602001919060010190611b6c565b50610b229291505b80821115610b225760008155600101611b8f565b600067ffffffffffffffff80841115611bbe57611bbe6121a5565b604051601f8501601f19908116603f01168101908282118183101715611be657611be66121a5565b81604052809350858152868686011115611bff57600080fd5b858560208301376000602087830101525050509392505050565b80358015158114611c2957600080fd5b919050565b600060208284031215611c4057600080fd5b8135611c4b816121bb565b9392505050565b60008060408385031215611c6557600080fd5b8235611c70816121bb565b91506020830135611c80816121bb565b809150509250929050565b600080600060608486031215611ca057600080fd5b8335611cab816121bb565b92506020840135611cbb816121bb565b929592945050506040919091013590565b60008060008060808587031215611ce257600080fd5b8435611ced816121bb565b93506020850135611cfd816121bb565b925060408501359150606085013567ffffffffffffffff811115611d2057600080fd5b8501601f81018713611d3157600080fd5b611d4087823560208401611ba3565b91505092959194509250565b60008060408385031215611d5f57600080fd5b8235611d6a816121bb565b9150611d7860208401611c19565b90509250929050565b60008060408385031215611d9457600080fd5b8235611d9f816121bb565b946020939093013593505050565b600060208284031215611dbf57600080fd5b611c4b82611c19565b600060208284031215611dda57600080fd5b8135611c4b816121d0565b600060208284031215611df757600080fd5b8151611c4b816121d0565b600060208284031215611e1457600080fd5b8151611c4b816121bb565b600060208284031215611e3157600080fd5b813567ffffffffffffffff811115611e4857600080fd5b8201601f81018413611e5957600080fd5b6110ba84823560208401611ba3565b600060208284031215611e7a57600080fd5b5035919050565b60008151808452611e998160208601602086016120b6565b601f01601f19169290920160200192915050565b60008151611ebf8185602086016120b6565b9290920192915050565b600080855481600182811c915080831680611ee557607f831692505b6020808410821415611f0557634e487b7160e01b86526022600452602486fd5b818015611f195760018114611f2a57611f57565b60ff19861689528489019650611f57565b60008c81526020902060005b86811015611f4f5781548b820152908501908301611f36565b505084890196505b505050505050611f70611f6a8287611ead565b85611ead565b9695505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f7090830184611e81565b602081526000611c4b6020830184611e81565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b0380831681851680830382111561206a5761206a612163565b01949350505050565b6000821982111561208657612086612163565b500190565b60008261209a5761209a612179565b500490565b6000828210156120b1576120b1612163565b500390565b60005b838110156120d15781810151838201526020016120b9565b83811115610e0e5750506000910152565b6000816120f1576120f1612163565b506000190190565b600181811c9082168061210d57607f821691505b6020821081141561212e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561214857612148612163565b5060010190565b60008261215e5761215e612179565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461115a57600080fd5b6001600160e01b03198116811461115a57600080fdfea26469706673582212205ef7e46c1d7c3b700ea9269267d566f6b6c1585148207a10fdbdaf28dc36979464736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c80636352211e1161011a578063b88d4fde116100ad578063cd7c03261161007c578063cd7c0326146103fa578063e8a3d48514610415578063e985e9c51461041d578063f2fde38b14610430578063f43a22dc1461029057600080fd5b8063b88d4fde146103a8578063ba0bba40146103bb578063c6682862146103c3578063c87b56dd146103e757600080fd5b80638da5cb5b116100e95780638da5cb5b14610369578063938e3d7b1461037a57806395d89b411461038d578063a22cb4651461039557600080fd5b80636352211e146103335780636c0360eb1461034657806370a082311461034e578063715018a61461036157600080fd5b806323b872dd1161019257806342842e0e1161016157806342842e0e146102ed5780634f6ccce71461030057806355f804b3146103135780635c975abb1461032657600080fd5b806323b872dd146102b65780632f745c59146102c957806332cb6b0c146102dc5780633ccfd60b146102e557600080fd5b8063095ea7b3116101ce578063095ea7b31461027d5780630f2cdd6c146102905780631249c58b146102a657806318160ddd146102ae57600080fd5b806301ffc9a71461020057806302329a291461022857806306fdde031461023d578063081812fc14610252575b600080fd5b61021361020e366004611dc8565b610443565b60405190151581526020015b60405180910390f35b61023b610236366004611dad565b6104b0565b005b6102456104f6565b60405161021f9190611fad565b610265610260366004611e68565b610588565b6040516001600160a01b03909116815260200161021f565b61023b61028b366004611d81565b610613565b610298600181565b60405190815260200161021f565b61023b61072b565b600054610298565b61023b6102c4366004611c8b565b61087b565b6102986102d7366004611d81565b610886565b610298611a0a81565b61023b6109f4565b61023b6102fb366004611c8b565b610aa9565b61029861030e366004611e68565b610ac4565b61023b610321366004611e1f565b610b26565b600a546102139060ff1681565b610265610341366004611e68565b610b63565b610245610b75565b61029861035c366004611c2e565b610c03565b61023b610c94565b6007546001600160a01b0316610265565b61023b610388366004611e1f565b610cca565b610245610d07565b61023b6103a3366004611d4c565b610d16565b61023b6103b6366004611ccc565b610ddb565b61023b610e14565b61024560405180604001604052806005815260200164173539b7b760d91b81525081565b6102456103f5366004611e68565b610f0a565b61026573a5409ec958c83c3f309868babaca7c86dcb077c181565b610245610fd6565b61021361042b366004611c52565b610fe3565b61023b61043e366004611c2e565b6110c2565b60006001600160e01b031982166380ac58cd60e01b148061047457506001600160e01b03198216635b5e139f60e01b145b8061048f57506001600160e01b0319821663780e9d6360e01b145b806104aa57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146104e35760405162461bcd60e51b81526004016104da90611fc0565b60405180910390fd5b600a805460ff1916911515919091179055565b606060018054610505906120f9565b80601f0160208091040260200160405190810160405280929190818152602001828054610531906120f9565b801561057e5780601f106105535761010080835404028352916020019161057e565b820191906000526020600020905b81548152906001019060200180831161056157829003601f168201915b5050505050905090565b6000610595826000541190565b6105f75760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016104da565b506000908152600560205260409020546001600160a01b031690565b600061061e82610b63565b9050806001600160a01b0316836001600160a01b0316141561068d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016104da565b336001600160a01b03821614806106a957506106a98133610fe3565b61071b5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016104da565b61072683838361115d565b505050565b33600061073782610c03565b600a5490915060ff16156107765760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b60448201526064016104da565b600054610784906001612073565b611a0a10156107ca5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016104da565b326001600160a01b038316146108115760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b60448201526064016104da565b6001811061086c5760405162461bcd60e51b815260206004820152602260248201527f45786365656473206d617820746f6b656e20636f756e74207065722077616c6c604482015261195d60f21b60648201526084016104da565b6108778260016111b9565b5050565b6107268383836111d3565b600061089183610c03565b82106108ea5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016104da565b600080549080805b83811015610994576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561094557805192505b876001600160a01b0316836001600160a01b031614156109815786841415610973575093506104aa92505050565b8361097d81612134565b9450505b508061098c81612134565b9150506108f2565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016104da565b6007546001600160a01b03163314610a1e5760405162461bcd60e51b81526004016104da90611fc0565b6040514790600090339083908381818185875af1925050503d8060008114610a62576040519150601f19603f3d011682016040523d82523d6000602084013e610a67565b606091505b50509050806108775760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b60448201526064016104da565b61072683838360405180602001604052806000815250610ddb565b600080548210610b225760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016104da565b5090565b6007546001600160a01b03163314610b505760405162461bcd60e51b81526004016104da90611fc0565b8051610877906008906020840190611b13565b6000610b6e8261151a565b5192915050565b60088054610b82906120f9565b80601f0160208091040260200160405190810160405280929190818152602001828054610bae906120f9565b8015610bfb5780601f10610bd057610100808354040283529160200191610bfb565b820191906000526020600020905b815481529060010190602001808311610bde57829003601f168201915b505050505081565b60006001600160a01b038216610c6f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016104da565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610cbe5760405162461bcd60e51b81526004016104da90611fc0565b610cc860006115fa565b565b6007546001600160a01b03163314610cf45760405162461bcd60e51b81526004016104da90611fc0565b8051610877906009906020840190611b13565b606060028054610505906120f9565b6001600160a01b038216331415610d6f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016104da565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610de68484846111d3565b610df28484848461164c565b610e0e5760405162461bcd60e51b81526004016104da90611ff5565b50505050565b6007546001600160a01b03163314610e3e5760405162461bcd60e51b81526004016104da90611fc0565b600054610e4c906042612073565b611a0a1015610e925760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016104da565b600a54610100900460ff1615610eea5760405162461bcd60e51b815260206004820152601c60248201527f5465616d207265736572766520616c726561647920636c61696d65640000000060448201526064016104da565b600a805461ff001916610100179055610cc8610f033390565b60426111b9565b6060610f17826000541190565b610f5b5760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b60448201526064016104da565b600060088054610f6a906120f9565b905011610f8657604051806020016040528060008152506104aa565b6008610f9183611759565b60405180604001604052806005815260200164173539b7b760d91b815250604051602001610fc193929190611ec9565b60405160208183030381529060405292915050565b60098054610b82906120f9565b60405163c455279160e01b81526001600160a01b03838116600483015260009173a5409ec958c83c3f309868babaca7c86dcb077c191841690829063c45527919060240160206040518083038186803b15801561103f57600080fd5b505afa158015611053573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110779190611e02565b6001600160a01b031614156110905760019150506104aa565b6001600160a01b0380851660009081526006602090815260408083209387168352929052205460ff165b949350505050565b6007546001600160a01b031633146110ec5760405162461bcd60e51b81526004016104da90611fc0565b6001600160a01b0381166111515760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104da565b61115a816115fa565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610877828260405180602001604052806000815250611857565b60006111de8261151a565b80519091506000906001600160a01b0316336001600160a01b0316148061121557503361120a84610588565b6001600160a01b0316145b80611227575081516112279033610fe3565b9050806112915760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016104da565b846001600160a01b031682600001516001600160a01b0316146113055760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016104da565b6001600160a01b0384166113695760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016104da565b611379600084846000015161115d565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b9590921694909402179092559061143e908590612073565b6000818152600360205260409020549091506001600160a01b03166114d057611468816000541190565b156114d05760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611539826000541190565b6115985760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016104da565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156115e7579392505050565b50806115f2816120e2565b91505061159a565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561174e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611690903390899088908890600401611f7a565b602060405180830381600087803b1580156116aa57600080fd5b505af19250505080156116da575060408051601f3d908101601f191682019092526116d791810190611de5565b60015b611734573d808015611708576040519150601f19603f3d011682016040523d82523d6000602084013e61170d565b606091505b50805161172c5760405162461bcd60e51b81526004016104da90611ff5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110ba565b506001949350505050565b60608161177d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117a7578061179181612134565b91506117a09050600a8361208b565b9150611781565b60008167ffffffffffffffff8111156117c2576117c26121a5565b6040519080825280601f01601f1916602001820160405280156117ec576020820181803683370190505b5090505b84156110ba5761180160018361209f565b915061180e600a8661214f565b611819906030612073565b60f81b81838151811061182e5761182e61218f565b60200101906001600160f81b031916908160001a905350611850600a8661208b565b94506117f0565b6000546001600160a01b0384166118ba5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016104da565b6118c5816000541190565b156119125760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016104da565b6000831161196e5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b60648201526084016104da565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906119ca908790612048565b6001600160801b031681526020018583602001516119e89190612048565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611b085760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611acc600088848861164c565b611ae85760405162461bcd60e51b81526004016104da90611ff5565b81611af281612134565b9250508080611b0090612134565b915050611a7f565b506000819055611512565b828054611b1f906120f9565b90600052602060002090601f016020900481019282611b415760008555611b87565b82601f10611b5a57805160ff1916838001178555611b87565b82800160010185558215611b87579182015b82811115611b87578251825591602001919060010190611b6c565b50610b229291505b80821115610b225760008155600101611b8f565b600067ffffffffffffffff80841115611bbe57611bbe6121a5565b604051601f8501601f19908116603f01168101908282118183101715611be657611be66121a5565b81604052809350858152868686011115611bff57600080fd5b858560208301376000602087830101525050509392505050565b80358015158114611c2957600080fd5b919050565b600060208284031215611c4057600080fd5b8135611c4b816121bb565b9392505050565b60008060408385031215611c6557600080fd5b8235611c70816121bb565b91506020830135611c80816121bb565b809150509250929050565b600080600060608486031215611ca057600080fd5b8335611cab816121bb565b92506020840135611cbb816121bb565b929592945050506040919091013590565b60008060008060808587031215611ce257600080fd5b8435611ced816121bb565b93506020850135611cfd816121bb565b925060408501359150606085013567ffffffffffffffff811115611d2057600080fd5b8501601f81018713611d3157600080fd5b611d4087823560208401611ba3565b91505092959194509250565b60008060408385031215611d5f57600080fd5b8235611d6a816121bb565b9150611d7860208401611c19565b90509250929050565b60008060408385031215611d9457600080fd5b8235611d9f816121bb565b946020939093013593505050565b600060208284031215611dbf57600080fd5b611c4b82611c19565b600060208284031215611dda57600080fd5b8135611c4b816121d0565b600060208284031215611df757600080fd5b8151611c4b816121d0565b600060208284031215611e1457600080fd5b8151611c4b816121bb565b600060208284031215611e3157600080fd5b813567ffffffffffffffff811115611e4857600080fd5b8201601f81018413611e5957600080fd5b6110ba84823560208401611ba3565b600060208284031215611e7a57600080fd5b5035919050565b60008151808452611e998160208601602086016120b6565b601f01601f19169290920160200192915050565b60008151611ebf8185602086016120b6565b9290920192915050565b600080855481600182811c915080831680611ee557607f831692505b6020808410821415611f0557634e487b7160e01b86526022600452602486fd5b818015611f195760018114611f2a57611f57565b60ff19861689528489019650611f57565b60008c81526020902060005b86811015611f4f5781548b820152908501908301611f36565b505084890196505b505050505050611f70611f6a8287611ead565b85611ead565b9695505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f7090830184611e81565b602081526000611c4b6020830184611e81565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b0380831681851680830382111561206a5761206a612163565b01949350505050565b6000821982111561208657612086612163565b500190565b60008261209a5761209a612179565b500490565b6000828210156120b1576120b1612163565b500390565b60005b838110156120d15781810151838201526020016120b9565b83811115610e0e5750506000910152565b6000816120f1576120f1612163565b506000190190565b600181811c9082168061210d57607f821691505b6020821081141561212e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561214857612148612163565b5060010190565b60008261215e5761215e612179565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461115a57600080fd5b6001600160e01b03198116811461115a57600080fdfea26469706673582212205ef7e46c1d7c3b700ea9269267d566f6b6c1585148207a10fdbdaf28dc36979464736f6c63430008070033

Deployed Bytecode Sourcemap

39002:2595:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26975:372;;;;;;:::i;:::-;;:::i;:::-;;;7756:14:1;;7749:22;7731:41;;7719:2;7704:18;26975:372:0;;;;;;;;40911:81;;;;;;:::i;:::-;;:::i;:::-;;28602:100;;;:::i;:::-;;;;;;;:::i;30163:214::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7054:32:1;;;7036:51;;7024:2;7009:18;30163:214:0;6890:203:1;29684:413:0;;;;;;:::i;:::-;;:::i;39364:42::-;;39405:1;39364:42;;;;;18271:25:1;;;18259:2;18244:18;39364:42:0;18125:177:1;39540:419:0;;;:::i;25416:100::-;25469:7;25496:12;25416:100;;31039:162;;;;;;:::i;:::-;;:::i;26080:823::-;;;;;;:::i;:::-;;:::i;39316:41::-;;39353:4;39316:41;;40420:209;;;:::i;31272:177::-;;;;;;:::i;:::-;;:::i;25593:187::-;;;;;;:::i;:::-;;:::i;41000:100::-;;;;;;:::i;:::-;;:::i;39415:25::-;;;;;;;;;28411:124;;;;;;:::i;:::-;;:::i;39050:26::-;;;:::i;27411:221::-;;;;;;:::i;:::-;;:::i;2954:103::-;;;:::i;2303:87::-;2376:6;;-1:-1:-1;;;;;2376:6:0;2303:87;;41108:116;;;;;;:::i;:::-;;:::i;28771:104::-;;;:::i;30449:288::-;;;;;;:::i;:::-;;:::i;31520:355::-;;;;;;:::i;:::-;;:::i;40637:266::-;;;:::i;39120:46::-;;;;;;;;;;;;;;;-1:-1:-1;;;39120:46:0;;;;;41232:362;;;;;;:::i;:::-;;:::i;39173:89::-;;39220:42;39173:89;;39083:30;;;:::i;39967:445::-;;;;;;:::i;:::-;;:::i;3212:201::-;;;;;;:::i;:::-;;:::i;26975:372::-;27077:4;-1:-1:-1;;;;;;27114:40:0;;-1:-1:-1;;;27114:40:0;;:105;;-1:-1:-1;;;;;;;27171:48:0;;-1:-1:-1;;;27171:48:0;27114:105;:172;;;-1:-1:-1;;;;;;;27236:50:0;;-1:-1:-1;;;27236:50:0;27114:172;:225;;;-1:-1:-1;;;;;;;;;;23588:40:0;;;27303:36;27094:245;26975:372;-1:-1:-1;;26975:372:0:o;40911:81::-;2376:6;;-1:-1:-1;;;;;2376:6:0;1124:10;2523:23;2515:68;;;;-1:-1:-1;;;2515:68:0;;;;;;;:::i;:::-;;;;;;;;;40969:6:::1;:15:::0;;-1:-1:-1;;40969:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;40911:81::o;28602:100::-;28656:13;28689:5;28682:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28602:100;:::o;30163:214::-;30231:7;30259:16;30267:7;32187:4;32221:12;-1:-1:-1;32211:22:0;32130:111;30259:16;30251:74;;;;-1:-1:-1;;;30251:74:0;;17572:2:1;30251:74:0;;;17554:21:1;17611:2;17591:18;;;17584:30;17650:34;17630:18;;;17623:62;-1:-1:-1;;;17701:18:1;;;17694:43;17754:19;;30251:74:0;17370:409:1;30251:74:0;-1:-1:-1;30345:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30345:24:0;;30163:214::o;29684:413::-;29757:13;29773:24;29789:7;29773:15;:24::i;:::-;29757:40;;29822:5;-1:-1:-1;;;;;29816:11:0;:2;-1:-1:-1;;;;;29816:11:0;;;29808:58;;;;-1:-1:-1;;;29808:58:0;;14054:2:1;29808:58:0;;;14036:21:1;14093:2;14073:18;;;14066:30;14132:34;14112:18;;;14105:62;-1:-1:-1;;;14183:18:1;;;14176:32;14225:19;;29808:58:0;13852:398:1;29808:58:0;1124:10;-1:-1:-1;;;;;29901:21:0;;;;:62;;-1:-1:-1;29926:37:0;29943:5;1124:10;39967:445;:::i;29926:37::-;29879:169;;;;-1:-1:-1;;;29879:169:0;;10574:2:1;29879:169:0;;;10556:21:1;10613:2;10593:18;;;10586:30;10652:34;10632:18;;;10625:62;10723:27;10703:18;;;10696:55;10768:19;;29879:169:0;10372:421:1;29879:169:0;30061:28;30070:2;30074:7;30083:5;30061:8;:28::i;:::-;29746:351;29684:413;;:::o;39540:419::-;1124:10;39576:15;39643:18;1124:10;39643:9;:18::i;:::-;39681:6;;39617:44;;-1:-1:-1;39681:6:0;;39680:7;39672:26;;;;-1:-1:-1;;;39672:26:0;;8612:2:1;39672:26:0;;;8594:21:1;8651:1;8631:18;;;8624:29;-1:-1:-1;;;8669:18:1;;;8662:36;8715:18;;39672:26:0;8410:329:1;39672:26:0;25469:7;25496:12;39731:17;;39747:1;39731:17;:::i;:::-;39353:4;39717:31;;39709:62;;;;-1:-1:-1;;;39709:62:0;;11000:2:1;39709:62:0;;;10982:21:1;11039:2;11019:18;;;11012:30;-1:-1:-1;;;11058:18:1;;;11051:48;11116:18;;39709:62:0;10798:342:1;39709:62:0;39790:9;-1:-1:-1;;;;;39790:20:0;;;39782:45;;;;-1:-1:-1;;;39782:45:0;;17986:2:1;39782:45:0;;;17968:21:1;18025:2;18005:18;;;17998:30;-1:-1:-1;;;18044:18:1;;;18037:42;18096:18;;39782:45:0;17784:336:1;39782:45:0;39405:1;39846:15;:32;39838:79;;;;-1:-1:-1;;;39838:79:0;;13651:2:1;39838:79:0;;;13633:21:1;13690:2;13670:18;;;13663:30;13729:34;13709:18;;;13702:62;-1:-1:-1;;;13780:18:1;;;13773:32;13822:19;;39838:79:0;13449:398:1;39838:79:0;39930:21;39940:7;39949:1;39930:9;:21::i;:::-;39565:394;;39540:419::o;31039:162::-;31165:28;31175:4;31181:2;31185:7;31165:9;:28::i;26080:823::-;26169:7;26205:16;26215:5;26205:9;:16::i;:::-;26197:5;:24;26189:71;;;;-1:-1:-1;;;26189:71:0;;8209:2:1;26189:71:0;;;8191:21:1;8248:2;8228:18;;;8221:30;8287:34;8267:18;;;8260:62;-1:-1:-1;;;8338:18:1;;;8331:32;8380:19;;26189:71:0;8007:398:1;26189:71:0;26271:22;25496:12;;;26271:22;;26403:426;26427:14;26423:1;:18;26403:426;;;26463:31;26497:14;;;:11;:14;;;;;;;;;26463:48;;;;;;;;;-1:-1:-1;;;;;26463:48:0;;;;;-1:-1:-1;;;26463:48:0;;;;;;;;;;;;26530:28;26526:103;;26599:14;;;-1:-1:-1;26526:103:0;26668:5;-1:-1:-1;;;;;26647:26:0;:17;-1:-1:-1;;;;;26647:26:0;;26643:175;;;26713:5;26698:11;:20;26694:77;;;-1:-1:-1;26750:1:0;-1:-1:-1;26743:8:0;;-1:-1:-1;;;26743:8:0;26694:77;26789:13;;;;:::i;:::-;;;;26643:175;-1:-1:-1;26443:3:0;;;;:::i;:::-;;;;26403:426;;;-1:-1:-1;26839:56:0;;-1:-1:-1;;;26839:56:0;;16741:2:1;26839:56:0;;;16723:21:1;16780:2;16760:18;;;16753:30;16819:34;16799:18;;;16792:62;-1:-1:-1;;;16870:18:1;;;16863:44;16924:19;;26839:56:0;16539:410:1;40420:209:0;2376:6;;-1:-1:-1;;;;;2376:6:0;1124:10;2523:23;2515:68;;;;-1:-1:-1;;;2515:68:0;;;;;;;:::i;:::-;40539:37:::1;::::0;40488:21:::1;::::0;40470:15:::1;::::0;1124:10;;40488:21;;40470:15;40539:37;40470:15;40539:37;40488:21;1124:10;40539:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40520:56;;;40595:7;40587:34;;;::::0;-1:-1:-1;;;40587:34:0;;16398:2:1;40587:34:0::1;::::0;::::1;16380:21:1::0;16437:2;16417:18;;;16410:30;-1:-1:-1;;;16456:18:1;;;16449:44;16510:18;;40587:34:0::1;16196:338:1::0;31272:177:0;31402:39;31419:4;31425:2;31429:7;31402:39;;;;;;;;;;;;:16;:39::i;25593:187::-;25660:7;25496:12;;25688:5;:21;25680:69;;;;-1:-1:-1;;;25680:69:0;;9764:2:1;25680:69:0;;;9746:21:1;9803:2;9783:18;;;9776:30;9842:34;9822:18;;;9815:62;-1:-1:-1;;;9893:18:1;;;9886:33;9936:19;;25680:69:0;9562:399:1;25680:69:0;-1:-1:-1;25767:5:0;25593:187::o;41000:100::-;2376:6;;-1:-1:-1;;;;;2376:6:0;1124:10;2523:23;2515:68;;;;-1:-1:-1;;;2515:68:0;;;;;;;:::i;:::-;41074:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;28411:124::-:0;28475:7;28502:20;28514:7;28502:11;:20::i;:::-;:25;;28411:124;-1:-1:-1;;28411:124:0:o;39050:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27411:221::-;27475:7;-1:-1:-1;;;;;27503:19:0;;27495:75;;;;-1:-1:-1;;;27495:75:0;;11347:2:1;27495:75:0;;;11329:21:1;11386:2;11366:18;;;11359:30;11425:34;11405:18;;;11398:62;-1:-1:-1;;;11476:18:1;;;11469:41;11527:19;;27495:75:0;11145:407:1;27495:75:0;-1:-1:-1;;;;;;27596:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;27596:27:0;;27411:221::o;2954:103::-;2376:6;;-1:-1:-1;;;;;2376:6:0;1124:10;2523:23;2515:68;;;;-1:-1:-1;;;2515:68:0;;;;;;;:::i;:::-;3019:30:::1;3046:1;3019:18;:30::i;:::-;2954:103::o:0;41108:116::-;2376:6;;-1:-1:-1;;;;;2376:6:0;1124:10;2523:23;2515:68;;;;-1:-1:-1;;;2515:68:0;;;;;;;:::i;:::-;41190:26;;::::1;::::0;:11:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;28771:104::-:0;28827:13;28860:7;28853:14;;;;;:::i;30449:288::-;-1:-1:-1;;;;;30544:24:0;;1124:10;30544:24;;30536:63;;;;-1:-1:-1;;;30536:63:0;;12877:2:1;30536:63:0;;;12859:21:1;12916:2;12896:18;;;12889:30;12955:28;12935:18;;;12928:56;13001:18;;30536:63:0;12675:350:1;30536:63:0;1124:10;30612:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30612:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30612:53:0;;;;;;;;;;30681:48;;7731:41:1;;;30612:42:0;;1124:10;30681:48;;7704:18:1;30681:48:0;;;;;;;30449:288;;:::o;31520:355::-;31679:28;31689:4;31695:2;31699:7;31679:9;:28::i;:::-;31740:48;31763:4;31769:2;31773:7;31782:5;31740:22;:48::i;:::-;31718:149;;;;-1:-1:-1;;;31718:149:0;;;;;;;:::i;:::-;31520:355;;;;:::o;40637:266::-;2376:6;;-1:-1:-1;;;;;2376:6:0;1124:10;2523:23;2515:68;;;;-1:-1:-1;;;2515:68:0;;;;;;;:::i;:::-;25469:7;25496:12;40707:18:::1;::::0;40723:2:::1;40707:18;:::i;:::-;39353:4;40693:32;;40685:63;;;::::0;-1:-1:-1;;;40685:63:0;;11000:2:1;40685:63:0::1;::::0;::::1;10982:21:1::0;11039:2;11019:18;;;11012:30;-1:-1:-1;;;11058:18:1;;;11051:48;11116:18;;40685:63:0::1;10798:342:1::0;40685:63:0::1;40769:18;::::0;::::1;::::0;::::1;;;40768:19;40760:60;;;::::0;-1:-1:-1;;;40760:60:0;;16041:2:1;40760:60:0::1;::::0;::::1;16023:21:1::0;16080:2;16060:18;;;16053:30;16119;16099:18;;;16092:58;16167:18;;40760:60:0::1;15839:352:1::0;40760:60:0::1;40832:18;:25:::0;;-1:-1:-1;;40832:25:0::1;;;::::0;;40868:27:::1;40878:12;1124:10:::0;;1044:98;40878:12:::1;40892:2;40868:9;:27::i;41232:362::-:0;41298:13;41332:17;41340:8;32187:4;32221:12;-1:-1:-1;32211:22:0;32130:111;41332:17;41324:51;;;;-1:-1:-1;;;41324:51:0;;11759:2:1;41324:51:0;;;11741:21:1;11798:2;11778:18;;;11771:30;-1:-1:-1;;;11817:18:1;;;11810:51;11878:18;;41324:51:0;11557:345:1;41324:51:0;41417:1;41399:7;41393:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;41475:7;41499:26;41516:8;41499:16;:26::i;:::-;41542:13;;;;;;;;;;;;;-1:-1:-1;;;41542:13:0;;;41442:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41386:200;41232:362;-1:-1:-1;;41232:362:0:o;39083:30::-;;;;;;;:::i;39967:445::-;40265:28;;-1:-1:-1;;;40265:28:0;;-1:-1:-1;;;;;7054:32:1;;;40265:28:0;;;7036:51:1;40092:4:0;;39220:42;;40257:49;;;39220:42;;40265:21;;7009:18:1;;40265:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;40257:49:0;;40253:93;;;40330:4;40323:11;;;;;40253:93;-1:-1:-1;;;;;30929:25:0;;;30905:4;30929:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;40365:39;40358:46;39967:445;-1:-1:-1;;;;39967:445:0:o;3212:201::-;2376:6;;-1:-1:-1;;;;;2376:6:0;1124:10;2523:23;2515:68;;;;-1:-1:-1;;;2515:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3301:22:0;::::1;3293:73;;;::::0;-1:-1:-1;;;3293:73:0;;8946:2:1;3293:73:0::1;::::0;::::1;8928:21:1::0;8985:2;8965:18;;;8958:30;9024:34;9004:18;;;8997:62;-1:-1:-1;;;9075:18:1;;;9068:36;9121:19;;3293:73:0::1;8744:402:1::0;3293:73:0::1;3377:28;3396:8;3377:18;:28::i;:::-;3212:201:::0;:::o;36174:196::-;36289:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;36289:29:0;-1:-1:-1;;;;;36289:29:0;;;;;;;;;36334:28;;36289:24;;36334:28;;;;;;;36174:196;;;:::o;32249:104::-;32318:27;32328:2;32332:8;32318:27;;;;;;;;;;;;:9;:27::i;34273:1783::-;34388:35;34426:20;34438:7;34426:11;:20::i;:::-;34501:18;;34388:58;;-1:-1:-1;34459:22:0;;-1:-1:-1;;;;;34485:34:0;1124:10;-1:-1:-1;;;;;34485:34:0;;:87;;;-1:-1:-1;1124:10:0;34536:20;34548:7;34536:11;:20::i;:::-;-1:-1:-1;;;;;34536:36:0;;34485:87;:154;;;-1:-1:-1;34606:18:0;;34589:50;;1124:10;39967:445;:::i;34589:50::-;34459:181;;34661:17;34653:80;;;;-1:-1:-1;;;34653:80:0;;13232:2:1;34653:80:0;;;13214:21:1;13271:2;13251:18;;;13244:30;13310:34;13290:18;;;13283:62;-1:-1:-1;;;13361:18:1;;;13354:48;13419:19;;34653:80:0;13030:414:1;34653:80:0;34776:4;-1:-1:-1;;;;;34754:26:0;:13;:18;;;-1:-1:-1;;;;;34754:26:0;;34746:77;;;;-1:-1:-1;;;34746:77:0;;12109:2:1;34746:77:0;;;12091:21:1;12148:2;12128:18;;;12121:30;12187:34;12167:18;;;12160:62;-1:-1:-1;;;12238:18:1;;;12231:36;12284:19;;34746:77:0;11907:402:1;34746:77:0;-1:-1:-1;;;;;34842:16:0;;34834:66;;;;-1:-1:-1;;;34834:66:0;;10168:2:1;34834:66:0;;;10150:21:1;10207:2;10187:18;;;10180:30;10246:34;10226:18;;;10219:62;-1:-1:-1;;;10297:18:1;;;10290:35;10342:19;;34834:66:0;9966:401:1;34834:66:0;35021:49;35038:1;35042:7;35051:13;:18;;;35021:8;:49::i;:::-;-1:-1:-1;;;;;35275:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35275:31:0;;;-1:-1:-1;;;;;35275:31:0;;;-1:-1:-1;;35275:31:0;;;;;;;35321:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35321:29:0;;;;;;;;;;;;;35397:43;;;;;;;;;;35423:15;35397:43;;;;;;;;;;35374:20;;;:11;:20;;;;;;:66;;;;;;;;-1:-1:-1;;;;;;35374:66:0;;;;;;;-1:-1:-1;;;35374:66:0;;;;;;;;;;;;35275:18;35702:11;;35374:20;;35702:11;:::i;:::-;35769:1;35728:24;;;:11;:24;;;;;:29;35680:33;;-1:-1:-1;;;;;;35728:29:0;35724:227;;35792:20;35800:11;32187:4;32221:12;-1:-1:-1;32211:22:0;32130:111;35792:20;35788:152;;;35860:64;;;;;;;;35875:18;;-1:-1:-1;;;;;35860:64:0;;;;;;35895:28;;;;35860:64;;;;;;;;;;-1:-1:-1;35833:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;35833:91:0;-1:-1:-1;;;;;;35833:91:0;;;;;;;;;;;;35788:152;35987:7;35983:2;-1:-1:-1;;;;;35968:27:0;35977:4;-1:-1:-1;;;;;35968:27:0;;;;;;;;;;;36006:42;34377:1679;;;34273:1783;;;:::o;27877:472::-;-1:-1:-1;;;;;;;;;;;;;;;;;27980:16:0;27988:7;32187:4;32221:12;-1:-1:-1;32211:22:0;32130:111;27980:16;27972:71;;;;-1:-1:-1;;;27972:71:0;;9353:2:1;27972:71:0;;;9335:21:1;9392:2;9372:18;;;9365:30;9431:34;9411:18;;;9404:62;-1:-1:-1;;;9482:18:1;;;9475:40;9532:19;;27972:71:0;9151:406:1;27972:71:0;28076:7;28056:216;28110:31;28144:17;;;:11;:17;;;;;;;;;28110:51;;;;;;;;;-1:-1:-1;;;;;28110:51:0;;;;;-1:-1:-1;;;28110:51:0;;;;;;;;;;;;28180:28;28176:85;;28236:9;27877:472;-1:-1:-1;;;27877:472:0:o;28176:85::-;-1:-1:-1;28087:6:0;;;;:::i;:::-;;;;28056:216;;3573:191;3666:6;;;-1:-1:-1;;;;;3683:17:0;;;-1:-1:-1;;;;;;3683:17:0;;;;;;;3716:40;;3666:6;;;3683:17;3666:6;;3716:40;;3647:16;;3716:40;3636:128;3573:191;:::o;36935:804::-;37090:4;-1:-1:-1;;;;;37111:13:0;;15623:20;15671:8;37107:625;;37147:72;;-1:-1:-1;;;37147:72:0;;-1:-1:-1;;;;;37147:36:0;;;;;:72;;1124:10;;37198:4;;37204:7;;37213:5;;37147:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37147:72:0;;;;;;;;-1:-1:-1;;37147:72:0;;;;;;;;;;;;:::i;:::-;;;37143:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37393:13:0;;37389:273;;37436:61;;-1:-1:-1;;;37436:61:0;;;;;;;:::i;37389:273::-;37612:6;37606:13;37597:6;37593:2;37589:15;37582:38;37143:534;-1:-1:-1;;;;;;37270:55:0;-1:-1:-1;;;37270:55:0;;-1:-1:-1;37263:62:0;;37107:625;-1:-1:-1;37716:4:0;36935:804;;;;;;:::o;4121:723::-;4177:13;4398:10;4394:53;;-1:-1:-1;;4425:10:0;;;;;;;;;;;;-1:-1:-1;;;4425:10:0;;;;;4121:723::o;4394:53::-;4472:5;4457:12;4513:78;4520:9;;4513:78;;4546:8;;;;:::i;:::-;;-1:-1:-1;4569:10:0;;-1:-1:-1;4577:2:0;4569:10;;:::i;:::-;;;4513:78;;;4601:19;4633:6;4623:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4623:17:0;;4601:39;;4651:154;4658:10;;4651:154;;4685:11;4695:1;4685:11;;:::i;:::-;;-1:-1:-1;4754:10:0;4762:2;4754:5;:10;:::i;:::-;4741:24;;:2;:24;:::i;:::-;4728:39;;4711:6;4718;4711:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;4711:56:0;;;;;;;;-1:-1:-1;4782:11:0;4791:2;4782:11;;:::i;:::-;;;4651:154;;32630:1389;32753:20;32776:12;-1:-1:-1;;;;;32807:16:0;;32799:62;;;;-1:-1:-1;;;32799:62:0;;15639:2:1;32799:62:0;;;15621:21:1;15678:2;15658:18;;;15651:30;15717:34;15697:18;;;15690:62;-1:-1:-1;;;15768:18:1;;;15761:31;15809:19;;32799:62:0;15437:397:1;32799:62:0;33006:21;33014:12;32187:4;32221:12;-1:-1:-1;32211:22:0;32130:111;33006:21;33005:22;32997:64;;;;-1:-1:-1;;;32997:64:0;;15281:2:1;32997:64:0;;;15263:21:1;15320:2;15300:18;;;15293:30;15359:31;15339:18;;;15332:59;15408:18;;32997:64:0;15079:353:1;32997:64:0;33091:1;33080:8;:12;33072:60;;;;-1:-1:-1;;;33072:60:0;;14457:2:1;33072:60:0;;;14439:21:1;14496:2;14476:18;;;14469:30;14535:34;14515:18;;;14508:62;-1:-1:-1;;;14586:18:1;;;14579:33;14629:19;;33072:60:0;14255:399:1;33072:60:0;-1:-1:-1;;;;;33252:16:0;;33219:30;33252:16;;;:12;:16;;;;;;;;;33219:49;;;;;;;;;-1:-1:-1;;;;;33219:49:0;;;;;-1:-1:-1;;;33219:49:0;;;;;;;;;;;33298:135;;;;;;;;33324:19;;33219:49;;33298:135;;;33324:39;;33354:8;;33324:39;:::i;:::-;-1:-1:-1;;;;;33298:135:0;;;;;33413:8;33378:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;33298:135:0;;;;;;-1:-1:-1;;;;;33279:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;33279:154:0;;;;;;;;;;;;33472:43;;;;;;;;;;;33498:15;33472:43;;;;;;;;33444:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;33444:71:0;-1:-1:-1;;;;;;33444:71:0;;;;;;;;;;;;;;;;;;33456:12;;33576:325;33600:8;33596:1;:12;33576:325;;;33635:38;;33660:12;;-1:-1:-1;;;;;33635:38:0;;;33652:1;;33635:38;;33652:1;;33635:38;33714:59;33745:1;33749:2;33753:12;33767:5;33714:22;:59::i;:::-;33688:172;;;;-1:-1:-1;;;33688:172:0;;;;;;;:::i;:::-;33875:14;;;;:::i;:::-;;;;33610:3;;;;;:::i;:::-;;;;33576:325;;;-1:-1:-1;33913:12:0;:27;;;33951:60;31520:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:160::-;715:20;;771:13;;764:21;754:32;;744:60;;800:1;797;790:12;744:60;650:160;;;:::o;815:247::-;874:6;927:2;915:9;906:7;902:23;898:32;895:52;;;943:1;940;933:12;895:52;982:9;969:23;1001:31;1026:5;1001:31;:::i;:::-;1051:5;815:247;-1:-1:-1;;;815:247:1:o;1067:388::-;1135:6;1143;1196:2;1184:9;1175:7;1171:23;1167:32;1164:52;;;1212:1;1209;1202:12;1164:52;1251:9;1238:23;1270:31;1295:5;1270:31;:::i;:::-;1320:5;-1:-1:-1;1377:2:1;1362:18;;1349:32;1390:33;1349:32;1390:33;:::i;:::-;1442:7;1432:17;;;1067:388;;;;;:::o;1460:456::-;1537:6;1545;1553;1606:2;1594:9;1585:7;1581:23;1577:32;1574:52;;;1622:1;1619;1612:12;1574:52;1661:9;1648:23;1680:31;1705:5;1680:31;:::i;:::-;1730:5;-1:-1:-1;1787:2:1;1772:18;;1759:32;1800:33;1759:32;1800:33;:::i;:::-;1460:456;;1852:7;;-1:-1:-1;;;1906:2:1;1891:18;;;;1878:32;;1460:456::o;1921:794::-;2016:6;2024;2032;2040;2093:3;2081:9;2072:7;2068:23;2064:33;2061:53;;;2110:1;2107;2100:12;2061:53;2149:9;2136:23;2168:31;2193:5;2168:31;:::i;:::-;2218:5;-1:-1:-1;2275:2:1;2260:18;;2247:32;2288:33;2247:32;2288:33;:::i;:::-;2340:7;-1:-1:-1;2394:2:1;2379:18;;2366:32;;-1:-1:-1;2449:2:1;2434:18;;2421:32;2476:18;2465:30;;2462:50;;;2508:1;2505;2498:12;2462:50;2531:22;;2584:4;2576:13;;2572:27;-1:-1:-1;2562:55:1;;2613:1;2610;2603:12;2562:55;2636:73;2701:7;2696:2;2683:16;2678:2;2674;2670:11;2636:73;:::i;:::-;2626:83;;;1921:794;;;;;;;:::o;2720:315::-;2785:6;2793;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:31;2945:5;2920:31;:::i;:::-;2970:5;-1:-1:-1;2994:35:1;3025:2;3010:18;;2994:35;:::i;:::-;2984:45;;2720:315;;;;;:::o;3040:::-;3108:6;3116;3169:2;3157:9;3148:7;3144:23;3140:32;3137:52;;;3185:1;3182;3175:12;3137:52;3224:9;3211:23;3243:31;3268:5;3243:31;:::i;:::-;3293:5;3345:2;3330:18;;;;3317:32;;-1:-1:-1;;;3040:315:1:o;3360:180::-;3416:6;3469:2;3457:9;3448:7;3444:23;3440:32;3437:52;;;3485:1;3482;3475:12;3437:52;3508:26;3524:9;3508:26;:::i;3545:245::-;3603:6;3656:2;3644:9;3635:7;3631:23;3627:32;3624:52;;;3672:1;3669;3662:12;3624:52;3711:9;3698:23;3730:30;3754:5;3730:30;:::i;3795:249::-;3864:6;3917:2;3905:9;3896:7;3892:23;3888:32;3885:52;;;3933:1;3930;3923:12;3885:52;3965:9;3959:16;3984:30;4008:5;3984:30;:::i;4049:280::-;4148:6;4201:2;4189:9;4180:7;4176:23;4172:32;4169:52;;;4217:1;4214;4207:12;4169:52;4249:9;4243:16;4268:31;4293:5;4268:31;:::i;4334:450::-;4403:6;4456:2;4444:9;4435:7;4431:23;4427:32;4424:52;;;4472:1;4469;4462:12;4424:52;4512:9;4499:23;4545:18;4537:6;4534:30;4531:50;;;4577:1;4574;4567:12;4531:50;4600:22;;4653:4;4645:13;;4641:27;-1:-1:-1;4631:55:1;;4682:1;4679;4672:12;4631:55;4705:73;4770:7;4765:2;4752:16;4747:2;4743;4739:11;4705:73;:::i;4789:180::-;4848:6;4901:2;4889:9;4880:7;4876:23;4872:32;4869:52;;;4917:1;4914;4907:12;4869:52;-1:-1:-1;4940:23:1;;4789:180;-1:-1:-1;4789:180:1:o;4974:257::-;5015:3;5053:5;5047:12;5080:6;5075:3;5068:19;5096:63;5152:6;5145:4;5140:3;5136:14;5129:4;5122:5;5118:16;5096:63;:::i;:::-;5213:2;5192:15;-1:-1:-1;;5188:29:1;5179:39;;;;5220:4;5175:50;;4974:257;-1:-1:-1;;4974:257:1:o;5236:185::-;5278:3;5316:5;5310:12;5331:52;5376:6;5371:3;5364:4;5357:5;5353:16;5331:52;:::i;:::-;5399:16;;;;;5236:185;-1:-1:-1;;5236:185:1:o;5426:1249::-;5650:3;5679:1;5712:6;5706:13;5742:3;5764:1;5792:9;5788:2;5784:18;5774:28;;5852:2;5841:9;5837:18;5874;5864:61;;5918:4;5910:6;5906:17;5896:27;;5864:61;5944:2;5992;5984:6;5981:14;5961:18;5958:38;5955:165;;;-1:-1:-1;;;6019:33:1;;6075:4;6072:1;6065:15;6105:4;6026:3;6093:17;5955:165;6136:18;6163:104;;;;6281:1;6276:320;;;;6129:467;;6163:104;-1:-1:-1;;6196:24:1;;6184:37;;6241:16;;;;-1:-1:-1;6163:104:1;;6276:320;18380:1;18373:14;;;18417:4;18404:18;;6371:1;6385:165;6399:6;6396:1;6393:13;6385:165;;;6477:14;;6464:11;;;6457:35;6520:16;;;;6414:10;;6385:165;;;6389:3;;6579:6;6574:3;6570:16;6563:23;;6129:467;;;;;;;6612:57;6638:30;6664:3;6656:6;6638:30;:::i;:::-;6630:6;6612:57;:::i;:::-;6605:64;5426:1249;-1:-1:-1;;;;;;5426:1249:1:o;7098:488::-;-1:-1:-1;;;;;7367:15:1;;;7349:34;;7419:15;;7414:2;7399:18;;7392:43;7466:2;7451:18;;7444:34;;;7514:3;7509:2;7494:18;;7487:31;;;7292:4;;7535:45;;7560:19;;7552:6;7535:45;:::i;7783:219::-;7932:2;7921:9;7914:21;7895:4;7952:44;7992:2;7981:9;7977:18;7969:6;7952:44;:::i;12314:356::-;12516:2;12498:21;;;12535:18;;;12528:30;12594:34;12589:2;12574:18;;12567:62;12661:2;12646:18;;12314:356::o;14659:415::-;14861:2;14843:21;;;14900:2;14880:18;;;14873:30;14939:34;14934:2;14919:18;;14912:62;-1:-1:-1;;;15005:2:1;14990:18;;14983:49;15064:3;15049:19;;14659:415::o;18433:253::-;18473:3;-1:-1:-1;;;;;18562:2:1;18559:1;18555:10;18592:2;18589:1;18585:10;18623:3;18619:2;18615:12;18610:3;18607:21;18604:47;;;18631:18;;:::i;:::-;18667:13;;18433:253;-1:-1:-1;;;;18433:253:1:o;18691:128::-;18731:3;18762:1;18758:6;18755:1;18752:13;18749:39;;;18768:18;;:::i;:::-;-1:-1:-1;18804:9:1;;18691:128::o;18824:120::-;18864:1;18890;18880:35;;18895:18;;:::i;:::-;-1:-1:-1;18929:9:1;;18824:120::o;18949:125::-;18989:4;19017:1;19014;19011:8;19008:34;;;19022:18;;:::i;:::-;-1:-1:-1;19059:9:1;;18949:125::o;19079:258::-;19151:1;19161:113;19175:6;19172:1;19169:13;19161:113;;;19251:11;;;19245:18;19232:11;;;19225:39;19197:2;19190:10;19161:113;;;19292:6;19289:1;19286:13;19283:48;;;-1:-1:-1;;19327:1:1;19309:16;;19302:27;19079:258::o;19342:136::-;19381:3;19409:5;19399:39;;19418:18;;:::i;:::-;-1:-1:-1;;;19454:18:1;;19342:136::o;19483:380::-;19562:1;19558:12;;;;19605;;;19626:61;;19680:4;19672:6;19668:17;19658:27;;19626:61;19733:2;19725:6;19722:14;19702:18;19699:38;19696:161;;;19779:10;19774:3;19770:20;19767:1;19760:31;19814:4;19811:1;19804:15;19842:4;19839:1;19832:15;19696:161;;19483:380;;;:::o;19868:135::-;19907:3;-1:-1:-1;;19928:17:1;;19925:43;;;19948:18;;:::i;:::-;-1:-1:-1;19995:1:1;19984:13;;19868:135::o;20008:112::-;20040:1;20066;20056:35;;20071:18;;:::i;:::-;-1:-1:-1;20105:9:1;;20008:112::o;20125:127::-;20186:10;20181:3;20177:20;20174:1;20167:31;20217:4;20214:1;20207:15;20241:4;20238:1;20231:15;20257:127;20318:10;20313:3;20309:20;20306:1;20299:31;20349:4;20346:1;20339:15;20373:4;20370:1;20363:15;20389:127;20450:10;20445:3;20441:20;20438:1;20431:31;20481:4;20478:1;20471:15;20505:4;20502:1;20495:15;20521:127;20582:10;20577:3;20573:20;20570:1;20563:31;20613:4;20610:1;20603:15;20637:4;20634:1;20627:15;20653:131;-1:-1:-1;;;;;20728:31:1;;20718:42;;20708:70;;20774:1;20771;20764:12;20789:131;-1:-1:-1;;;;;;20863:32:1;;20853:43;;20843:71;;20910:1;20907;20900:12

Swarm Source

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