ETH Price: $3,189.75 (+1.07%)
 

Overview

Max Total Supply

436 TH

Holders

292

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 TH
0xb902dfe6bd8aee747f0a2218aca57c274a651b87
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:
humarsContract

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: GPL-3.0
// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts v4.4.0 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/humarsContract.sol


pragma solidity ^0.8.0;




contract humarsContract is ERC721Enumerable, Ownable {
    using Strings for uint256;
    uint256 public totalCount = 10000;
    uint256 public presalePrice = 0.095 ether; 
    uint256 public publicSalePrice = 0.15 ether; 
    uint256 public limitPerWallet = 10;
    uint256 addressRegistryCount;
    string public baseURI;
    string public notRevealURI;
    string public URIPost = ".json";
    bytes32 public root;
    bool public revealed = false;
    bool public presaleActive = true;
    bool public paused = false;
    bool public limitActive = false;

    mapping(address => uint256) public whitelisted; //For public sale if needed
    mapping(address => uint256) public ownedHumars; //For limiting pre-sale

    constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _inintNotRevealURI,
    address _initOwner,
    bytes32 _initMerkleroot
    ) ERC721(_name, _symbol) {
    _setMerkleRoot(_initMerkleroot);
    _setBaseURI(_initBaseURI);
    _setNotRevealedURI(_inintNotRevealURI);
    transferOwnership(_initOwner);
    }

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

    function getSaleInfo() public view virtual returns (bool) {
        return presaleActive;
    }

    function getPauseInfo() public view virtual returns (bool) {
        return paused;
    }

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

    if(revealed == false) {
    return notRevealURI;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), URIPost))
        : "";
    }
    
    function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
    {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
    }

    function preSaleMint(address _to ,uint256 _mintAmount, bytes32[] calldata _proof) public payable {
        require(!paused, "Smart contract is paused");
        require(presaleActive == true, "Presale ended");
        uint256 supply = totalSupply();
        require(supply + _mintAmount <= totalCount, "Supply limit reached!");
        require(_mintAmount > 0, "No amount to mint");
        require(_mintAmount <= 10, "You cant mint more than 10");
        require(_verify(_leaf(_to), _proof), "Invalid merkle proof");

        if (limitActive == true) {
            require(ownedHumars[_to] <= limitPerWallet, "You cant pre-buy more humars");
        }

        if (msg.sender != owner()) {
            require(msg.value >= presalePrice * _mintAmount, "Wrong price!");
        }
        
        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(_to, supply + i);
        }

        ownedHumars[_to] = ownedHumars[_to] + _mintAmount;
    }

    function publicSaleMint(address _to ,uint256 _mintAmount) public payable {
        require(!paused, "Smart contract is paused");
        require(presaleActive == false, "Publicsale ended or not started yet");
        uint256 supply = totalSupply();
        require(supply + _mintAmount <= totalCount, "Supply limit reached!");
        require(_mintAmount > 0, "No amount to mint");
        require(_mintAmount <= 10, "You cant mint more than 10");

        if (msg.sender != owner()) {
            require(msg.value >= publicSalePrice * _mintAmount, "Wrong price!");
        }
        
        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(_to, supply + i);
        }
    }

    function claimFreeNFT(address _to) public payable {
        require(!paused, "Smart contract is paused");
        require(whitelisted[_to] > 0, "You dont have any free NFT!");
        uint256 supply = totalSupply();
        require(supply + whitelisted[_to] <= totalCount, "Supply limit reached!");
        
        for (uint256 i = 1; i <= whitelisted[_to]; i++) {
            _safeMint(_to, supply + i);
        }

        whitelisted[_to] = 0;
    }

    function burn(uint256 tokenId) public {
        require(!paused, "Smart contract is paused");
        _burn(tokenId);
    }

    function _burn(uint256 tokenId)
        internal
        virtual
        override(ERC721)
    {
        _burn(tokenId);
    }
    
    function _setBaseURI(string memory _newURI) private {
        baseURI = _newURI;
    }

    function _setNotRevealedURI(string memory _newURI) private {
        notRevealURI = _newURI;
    }

    function _setMerkleRoot(bytes32 _newRoot) private {
        root = _newRoot;
    }

    function _startPublicsale() private {     
        presaleActive = false;
    }

    function _endPublicsale() private {     
        presaleActive = true;
    }

    //Merkle tree
    function _leaf(address account)
    internal pure returns (bytes32)
    {
        return keccak256(abi.encodePacked(account));
    }

    function _verify(bytes32 leaf, bytes32[] memory proof)
    internal view returns (bool)
    {
        return MerkleProof.verify(proof, root, leaf);
    }
    
    //Only Owner Stuff
    function setNotRevealedURI(string memory _newURI) public onlyOwner {
        _setNotRevealedURI(_newURI);
    }

    function setTokenURI(string memory _tokenURI) public onlyOwner {
        _setBaseURI(_tokenURI);
    }

    function changePresalePrice(uint256 _newPrice) public onlyOwner {
        presalePrice = _newPrice;
    }

    function changePublicSalePrice(uint256 _newPrice) public onlyOwner {
        publicSalePrice = _newPrice;
    }

    function whitelistMoreUsers(address[] memory _users, uint256 _freeNftAmount) public onlyOwner {
        for (uint256 i = 0; i < _users.length; i++) {
            whitelisted[_users[i]] = _freeNftAmount;
        }
    }

    function removeWhitelistMoreUsers(address[] memory _users) public onlyOwner {
        for (uint256 i = 0; i < _users.length; i++) {
            whitelisted[_users[i]] = 0;
        }
    }

    function whitelistUser(address _user, uint256 _freeNftAmount) public onlyOwner {
        whitelisted[_user] = _freeNftAmount;
    }

    function removeWhitelistUser(address _user) public onlyOwner {
        whitelisted[_user] = 0;
    }

    function activateLimit(bool _active) public onlyOwner {
        limitActive = _active;
    }

    function changeLimit(uint256 _newLimit) public onlyOwner {
        limitPerWallet = _newLimit;
    }

    function startPublicSale() public onlyOwner {
        require(presaleActive == true, "Public sale already started!");
        _startPublicsale();
    }

    function endPublicSale() public onlyOwner {
        require(presaleActive == false, "Public sale already started!");
        _endPublicsale();
    }

    function reveal() public onlyOwner {
        require (revealed == false, "NFTs already revealed");
        revealed = true;
    }

    function unReveal() public onlyOwner {
        require (revealed == true, "NFTs already UNrevealed");
        revealed = false;
    }

    function changeMerkleRoot(bytes32 _newRoot) public onlyOwner {
        _setMerkleRoot(_newRoot);
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }
    
    function withdraw() public payable onlyOwner {
    require(payable(owner()).send(address(this).balance));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_inintNotRevealURI","type":"string"},{"internalType":"address","name":"_initOwner","type":"address"},{"internalType":"bytes32","name":"_initMerkleroot","type":"bytes32"}],"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":"URIPost","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_active","type":"bool"}],"name":"activateLimit","outputs":[],"stateMutability":"nonpayable","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLimit","type":"uint256"}],"name":"changeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newRoot","type":"bytes32"}],"name":"changeMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePublicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"claimFreeNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"endPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPauseInfo","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleInfo","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"limitActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ownedHumars","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"removeWhitelistMoreUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeWhitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPublicSale","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":"totalCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"unReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"},{"internalType":"uint256","name":"_freeNftAmount","type":"uint256"}],"name":"whitelistMoreUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_freeNftAmount","type":"uint256"}],"name":"whitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

612710600b5567015181ff25a98000600c55670214e8348c4f0000600d55600a600e5560c06040526005608081905264173539b7b760d91b60a09081526200004b916012919062000236565b506014805463ffff00001961ffff19909116610100171690553480156200007157600080fd5b5060405162003cdc38038062003cdc8339810160408190526200009491620003a4565b855186908690620000ad90600090602085019062000236565b508051620000c390600190602084019062000236565b505050620000e0620000da6200011860201b60201c565b6200011c565b620000eb816200016e565b620000f68462000173565b62000101836200018c565b6200010c82620001a1565b50505050505062000541565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b601355565b80516200018890601090602084019062000236565b5050565b80516200018890601190602084019062000236565b620001ab62000118565b6001600160a01b0316620001be62000227565b6001600160a01b031614620001f05760405162461bcd60e51b8152600401620001e790620004b9565b60405180910390fd5b6001600160a01b038116620002195760405162461bcd60e51b8152600401620001e79062000473565b62000224816200011c565b50565b600a546001600160a01b031690565b8280546200024490620004ee565b90600052602060002090601f016020900481019282620002685760008555620002b3565b82601f106200028357805160ff1916838001178555620002b3565b82800160010185558215620002b3579182015b82811115620002b357825182559160200191906001019062000296565b50620002c1929150620002c5565b5090565b5b80821115620002c15760008155600101620002c6565b80516001600160a01b0381168114620002f457600080fd5b919050565b600082601f8301126200030a578081fd5b81516001600160401b03808211156200032757620003276200052b565b6040516020601f8401601f19168201810183811183821017156200034f576200034f6200052b565b604052838252858401810187101562000366578485fd5b8492505b838310156200038957858301810151828401820152918201916200036a565b838311156200039a57848185840101525b5095945050505050565b60008060008060008060c08789031215620003bd578182fd5b86516001600160401b0380821115620003d4578384fd5b620003e28a838b01620002f9565b97506020890151915080821115620003f8578384fd5b620004068a838b01620002f9565b965060408901519150808211156200041c578384fd5b6200042a8a838b01620002f9565b9550606089015191508082111562000440578384fd5b506200044f89828a01620002f9565b9350506200046060808801620002dc565b915060a087015190509295509295509295565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6002810460018216806200050357607f821691505b602082108114156200052557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61378b80620005516000396000f3fe6080604052600436106103755760003560e01c80636c0360eb116101d1578063bdcc134a11610102578063e0df5b6f116100a0578063ebcea3db1161006f578063ebcea3db14610935578063ebf0c71714610955578063f2c4ce1e1461096a578063f2fde38b1461098a57610375565b8063e0df5b6f146108c2578063e1010f7e146108e2578063e1bff46214610902578063e985e9c51461091557610375565b8063d021aa50116100dc578063d021aa5014610858578063d936547e1461086d578063db83694c1461088d578063e054ffc3146108a257610375565b8063bdcc134a14610803578063c7d17fd114610823578063c87b56dd1461083857610375565b806395d89b411161016f578063a475b5dd11610149578063a475b5dd146107a6578063a620ce5a146107bb578063ac5ae11b146107d0578063b88d4fde146107e357610375565b806395d89b411461075c5780639b6860c814610771578063a22cb4651461078657610375565b8063715018a6116101ab578063715018a6146106f257806379d42ed9146107075780638606d938146107275780638da5cb5b1461074757610375565b80636c0360eb1461069d5780636d33b42b146106b257806370a08231146106d257610375565b806330cc7ae0116102ab5780634a56d9ca116102495780635183022711610223578063518302271461063e57806353135ca0146106535780635c975abb146106685780636352211e1461067d57610375565b80634a56d9ca146105de5780634f6ccce7146105fe5780634fda72851461061e57610375565b806342842e0e1161028557806342842e0e1461055c57806342966c681461057c578063438b63001461059c57806345282a92146105c957610375565b806330cc7ae01461051f57806334eafb111461053f5780633ccfd60b1461055457610375565b80630b1f79321161031857806318160ddd116102f257806318160ddd146104b75780631ff61e00146104cc57806323b872dd146104df5780632f745c59146104ff57610375565b80630b1f7932146104785780630c1c972a1461048d57806315edf5f3146104a257610375565b806306fdde031161035457806306fdde03146103f4578063079400f214610416578063081812fc1461042b578063095ea7b31461045857610375565b80620e7fa81461037a57806301ffc9a7146103a557806302329a29146103d2575b600080fd5b34801561038657600080fd5b5061038f6109aa565b60405161039c9190612e25565b60405180910390f35b3480156103b157600080fd5b506103c56103c0366004612bee565b6109b0565b60405161039c9190612e1a565b3480156103de57600080fd5b506103f26103ed366004612bbc565b6109dd565b005b34801561040057600080fd5b50610409610a41565b60405161039c9190612e2e565b34801561042257600080fd5b50610409610ad3565b34801561043757600080fd5b5061044b610446366004612bd6565b610b61565b60405161039c9190612d85565b34801561046457600080fd5b506103f2610473366004612a99565b610ba4565b34801561048457600080fd5b506103c5610c3c565b34801561049957600080fd5b506103f2610c4c565b3480156104ae57600080fd5b506103f2610cc2565b3480156104c357600080fd5b5061038f610d34565b6103f26104da366004612970565b610d3a565b3480156104eb57600080fd5b506103f26104fa3660046129bc565b610e4d565b34801561050b57600080fd5b5061038f61051a366004612a99565b610e85565b34801561052b57600080fd5b506103f261053a366004612970565b610ed7565b34801561054b57600080fd5b5061038f610f30565b6103f2610f36565b34801561056857600080fd5b506103f26105773660046129bc565b610fad565b34801561058857600080fd5b506103f2610597366004612bd6565b610fc8565b3480156105a857600080fd5b506105bc6105b7366004612970565b610ffd565b60405161039c9190612dd6565b3480156105d557600080fd5b506103c56110bb565b3480156105ea57600080fd5b506103f26105f9366004612b46565b6110ca565b34801561060a57600080fd5b5061038f610619366004612bd6565b61117e565b34801561062a57600080fd5b506103f2610639366004612bd6565b6111d9565b34801561064a57600080fd5b506103c561121d565b34801561065f57600080fd5b506103c5611226565b34801561067457600080fd5b506103c5611234565b34801561068957600080fd5b5061044b610698366004612bd6565b611243565b3480156106a957600080fd5b50610409611278565b3480156106be57600080fd5b506103f26106cd366004612bd6565b611285565b3480156106de57600080fd5b5061038f6106ed366004612970565b6112c9565b3480156106fe57600080fd5b506103f261130d565b34801561071357600080fd5b5061038f610722366004612970565b611356565b34801561073357600080fd5b506103f2610742366004612bd6565b611368565b34801561075357600080fd5b5061044b6113ac565b34801561076857600080fd5b506104096113bb565b34801561077d57600080fd5b5061038f6113ca565b34801561079257600080fd5b506103f26107a1366004612a70565b6113d0565b3480156107b257600080fd5b506103f26113e2565b3480156107c757600080fd5b5061038f611453565b6103f26107de366004612a99565b611459565b3480156107ef57600080fd5b506103f26107fe3660046129f7565b6115a0565b34801561080f57600080fd5b506103f261081e366004612b79565b6115d9565b34801561082f57600080fd5b506103f2611688565b34801561084457600080fd5b50610409610853366004612bd6565b6116f7565b34801561086457600080fd5b50610409611819565b34801561087957600080fd5b5061038f610888366004612970565b611826565b34801561089957600080fd5b506103c5611838565b3480156108ae57600080fd5b506103f26108bd366004612a99565b611846565b3480156108ce57600080fd5b506103f26108dd366004612c26565b6118a1565b3480156108ee57600080fd5b506103f26108fd366004612bbc565b6118e9565b6103f2610910366004612ac2565b611946565b34801561092157600080fd5b506103c561093036600461298a565b611b86565b34801561094157600080fd5b506103f2610950366004612bd6565b611bb4565b34801561096157600080fd5b5061038f611bfc565b34801561097657600080fd5b506103f2610985366004612c26565b611c02565b34801561099657600080fd5b506103f26109a5366004612970565b611c4a565b600c5481565b60006001600160e01b0319821663780e9d6360e01b14806109d557506109d582611cb8565b90505b919050565b6109e5611cf8565b6001600160a01b03166109f66113ac565b6001600160a01b031614610a255760405162461bcd60e51b8152600401610a1c9061326f565b60405180910390fd5b60148054911515620100000262ff000019909216919091179055565b606060008054610a5090613693565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7c90613693565b8015610ac95780601f10610a9e57610100808354040283529160200191610ac9565b820191906000526020600020905b815481529060010190602001808311610aac57829003601f168201915b5050505050905090565b60128054610ae090613693565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0c90613693565b8015610b595780601f10610b2e57610100808354040283529160200191610b59565b820191906000526020600020905b815481529060010190602001808311610b3c57829003601f168201915b505050505081565b6000610b6c82611cfc565b610b885760405162461bcd60e51b8152600401610a1c90613223565b506000908152600460205260409020546001600160a01b031690565b6000610baf82611243565b9050806001600160a01b0316836001600160a01b03161415610be35760405162461bcd60e51b8152600401610a1c906133f7565b806001600160a01b0316610bf5611cf8565b6001600160a01b03161480610c115750610c1181610930611cf8565b610c2d5760405162461bcd60e51b8152600401610a1c906130c7565b610c378383611d19565b505050565b6014546301000000900460ff1681565b610c54611cf8565b6001600160a01b0316610c656113ac565b6001600160a01b031614610c8b5760405162461bcd60e51b8152600401610a1c9061326f565b60145460ff610100909104161515600114610cb85760405162461bcd60e51b8152600401610a1c906131b7565b610cc0611d87565b565b610cca611cf8565b6001600160a01b0316610cdb6113ac565b6001600160a01b031614610d015760405162461bcd60e51b8152600401610a1c9061326f565b60145460ff161515600114610d285760405162461bcd60e51b8152600401610a1c90613090565b6014805460ff19169055565b60085490565b60145462010000900460ff1615610d635760405162461bcd60e51b8152600401610a1c90613391565b6001600160a01b038116600090815260156020526040902054610d985760405162461bcd60e51b8152600401610a1c90612e41565b6000610da2610d34565b600b546001600160a01b03841660009081526015602052604090205491925090610dcc9083613605565b1115610dea5760405162461bcd60e51b8152600401610a1c906133c8565b60015b6001600160a01b0383166000908152601560205260409020548111610e3157610e1f83610e1a8385613605565b611d94565b80610e29816136ce565b915050610ded565b50506001600160a01b0316600090815260156020526040812055565b610e5e610e58611cf8565b82611dae565b610e7a5760405162461bcd60e51b8152600401610a1c906134b8565b610c37838383611e33565b6000610e90836112c9565b8210610eae5760405162461bcd60e51b8152600401610a1c90612e78565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610edf611cf8565b6001600160a01b0316610ef06113ac565b6001600160a01b031614610f165760405162461bcd60e51b8152600401610a1c9061326f565b6001600160a01b0316600090815260156020526040812055565b600b5481565b610f3e611cf8565b6001600160a01b0316610f4f6113ac565b6001600160a01b031614610f755760405162461bcd60e51b8152600401610a1c9061326f565b610f7d6113ac565b6001600160a01b03166108fc479081150290604051600060405180830381858888f19350505050610cc057600080fd5b610c37838383604051806020016040528060008152506115a0565b60145462010000900460ff1615610ff15760405162461bcd60e51b8152600401610a1c90613391565b610ffa81611f60565b50565b6060600061100a836112c9565b905060008167ffffffffffffffff81111561103557634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561105e578160200160208202803683370190505b50905060005b828110156110b3576110768582610e85565b82828151811061109657634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806110ab816136ce565b915050611064565b509392505050565b60145462010000900460ff1690565b6110d2611cf8565b6001600160a01b03166110e36113ac565b6001600160a01b0316146111095760405162461bcd60e51b8152600401610a1c9061326f565b60005b815181101561117a5760006015600084848151811061113b57634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080611172906136ce565b91505061110c565b5050565b6000611188610d34565b82106111a65760405162461bcd60e51b8152600401610a1c90613509565b600882815481106111c757634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6111e1611cf8565b6001600160a01b03166111f26113ac565b6001600160a01b0316146112185760405162461bcd60e51b8152600401610a1c9061326f565b600d55565b60145460ff1681565b601454610100900460ff1681565b60145462010000900460ff1681565b6000818152600260205260408120546001600160a01b0316806109d55760405162461bcd60e51b8152600401610a1c9061316e565b60108054610ae090613693565b61128d611cf8565b6001600160a01b031661129e6113ac565b6001600160a01b0316146112c45760405162461bcd60e51b8152600401610a1c9061326f565b600e55565b60006001600160a01b0382166112f15760405162461bcd60e51b8152600401610a1c90613124565b506001600160a01b031660009081526003602052604090205490565b611315611cf8565b6001600160a01b03166113266113ac565b6001600160a01b03161461134c5760405162461bcd60e51b8152600401610a1c9061326f565b610cc06000611f69565b60166020526000908152604090205481565b611370611cf8565b6001600160a01b03166113816113ac565b6001600160a01b0316146113a75760405162461bcd60e51b8152600401610a1c9061326f565b600c55565b600a546001600160a01b031690565b606060018054610a5090613693565b600d5481565b61117a6113db611cf8565b8383611fbb565b6113ea611cf8565b6001600160a01b03166113fb6113ac565b6001600160a01b0316146114215760405162461bcd60e51b8152600401610a1c9061326f565b60145460ff16156114445760405162461bcd60e51b8152600401610a1c9061345e565b6014805460ff19166001179055565b600e5481565b60145462010000900460ff16156114825760405162461bcd60e51b8152600401610a1c90613391565b601454610100900460ff16156114aa5760405162461bcd60e51b8152600401610a1c9061358c565b60006114b4610d34565b600b549091506114c48383613605565b11156114e25760405162461bcd60e51b8152600401610a1c906133c8565b600082116115025760405162461bcd60e51b8152600401610a1c9061348d565b600a8211156115235760405162461bcd60e51b8152600401610a1c90612f92565b61152b6113ac565b6001600160a01b0316336001600160a01b0316146115705781600d546115519190613631565b3410156115705760405162461bcd60e51b8152600401610a1c90613438565b60015b82811161159a5761158884610e1a8385613605565b80611592816136ce565b915050611573565b50505050565b6115b16115ab611cf8565b83611dae565b6115cd5760405162461bcd60e51b8152600401610a1c906134b8565b61159a8484848461205e565b6115e1611cf8565b6001600160a01b03166115f26113ac565b6001600160a01b0316146116185760405162461bcd60e51b8152600401610a1c9061326f565b60005b8251811015610c3757816015600085848151811061164957634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080611680906136ce565b91505061161b565b611690611cf8565b6001600160a01b03166116a16113ac565b6001600160a01b0316146116c75760405162461bcd60e51b8152600401610a1c9061326f565b601454610100900460ff16156116ef5760405162461bcd60e51b8152600401610a1c906131b7565b610cc0612091565b606061170282611cfc565b61171e5760405162461bcd60e51b8152600401610a1c90613342565b60145460ff166117ba576011805461173590613693565b80601f016020809104026020016040519081016040528092919081815260200182805461176190613693565b80156117ae5780601f10611783576101008083540402835291602001916117ae565b820191906000526020600020905b81548152906001019060200180831161179157829003601f168201915b505050505090506109d8565b60006117c46120a2565b905060008151116117e45760405180602001604052806000815250611812565b806117ee846120b1565b601260405160200161180293929190612cc3565b6040516020818303038152906040525b9392505050565b60118054610ae090613693565b60156020526000908152604090205481565b601454610100900460ff1690565b61184e611cf8565b6001600160a01b031661185f6113ac565b6001600160a01b0316146118855760405162461bcd60e51b8152600401610a1c9061326f565b6001600160a01b03909116600090815260156020526040902055565b6118a9611cf8565b6001600160a01b03166118ba6113ac565b6001600160a01b0316146118e05760405162461bcd60e51b8152600401610a1c9061326f565b610ffa816121cc565b6118f1611cf8565b6001600160a01b03166119026113ac565b6001600160a01b0316146119285760405162461bcd60e51b8152600401610a1c9061326f565b6014805491151563010000000263ff00000019909216919091179055565b60145462010000900460ff161561196f5760405162461bcd60e51b8152600401610a1c90613391565b60145460ff61010090910416151560011461199c5760405162461bcd60e51b8152600401610a1c906132a4565b60006119a6610d34565b600b549091506119b68583613605565b11156119d45760405162461bcd60e51b8152600401610a1c906133c8565b600084116119f45760405162461bcd60e51b8152600401610a1c9061348d565b600a841115611a155760405162461bcd60e51b8152600401610a1c90612f92565b611a5a611a21866121df565b84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061220f92505050565b611a765760405162461bcd60e51b8152600401610a1c906132cb565b6014546301000000900460ff16151560011415611ac757600e546001600160a01b0386166000908152601660205260409020541115611ac75760405162461bcd60e51b8152600401610a1c90613555565b611acf6113ac565b6001600160a01b0316336001600160a01b031614611b145783600c54611af59190613631565b341015611b145760405162461bcd60e51b8152600401610a1c90613438565b60015b848111611b3e57611b2c86610e1a8385613605565b80611b36816136ce565b915050611b17565b506001600160a01b038516600090815260166020526040902054611b63908590613605565b6001600160a01b0390951660009081526016602052604090209490945550505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611bbc611cf8565b6001600160a01b0316611bcd6113ac565b6001600160a01b031614611bf35760405162461bcd60e51b8152600401610a1c9061326f565b610ffa8161221e565b60135481565b611c0a611cf8565b6001600160a01b0316611c1b6113ac565b6001600160a01b031614611c415760405162461bcd60e51b8152600401610a1c9061326f565b610ffa81612223565b611c52611cf8565b6001600160a01b0316611c636113ac565b6001600160a01b031614611c895760405162461bcd60e51b8152600401610a1c9061326f565b6001600160a01b038116611caf5760405162461bcd60e51b8152600401610a1c90612f15565b610ffa81611f69565b60006001600160e01b031982166380ac58cd60e01b1480611ce957506001600160e01b03198216635b5e139f60e01b145b806109d557506109d582612236565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d4e82611243565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6014805461ff0019169055565b61117a82826040518060200160405280600081525061224f565b6000611db982611cfc565b611dd55760405162461bcd60e51b8152600401610a1c90613044565b6000611de083611243565b9050806001600160a01b0316846001600160a01b03161480611e1b5750836001600160a01b0316611e1084610b61565b6001600160a01b0316145b80611e2b5750611e2b8185611b86565b949350505050565b826001600160a01b0316611e4682611243565b6001600160a01b031614611e6c5760405162461bcd60e51b8152600401610a1c906132f9565b6001600160a01b038216611e925760405162461bcd60e51b8152600401610a1c90612fc9565b611e9d838383612282565b611ea8600082611d19565b6001600160a01b0383166000908152600360205260408120805460019290611ed1908490613650565b90915550506001600160a01b0382166000908152600360205260408120805460019290611eff908490613605565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610ffa81611f60565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611fed5760405162461bcd60e51b8152600401610a1c9061300d565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190612051908590612e1a565b60405180910390a3505050565b612069848484611e33565b6120758484848461230b565b61159a5760405162461bcd60e51b8152600401610a1c90612ec3565b6014805461ff001916610100179055565b606060108054610a5090613693565b6060816120d657506040805180820190915260018152600360fc1b60208201526109d8565b8160005b811561210057806120ea816136ce565b91506120f99050600a8361361d565b91506120da565b60008167ffffffffffffffff81111561212957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612153576020820181803683370190505b5090505b8415611e2b57612168600183613650565b9150612175600a866136e9565b612180906030613605565b60f81b8183815181106121a357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506121c5600a8661361d565b9450612157565b805161117a9060109060208401906127cf565b6000816040516020016121f29190612c98565b604051602081830303815290604052805190602001209050919050565b60006118128260135485612426565b601355565b805161117a9060119060208401906127cf565b6001600160e01b031981166301ffc9a760e01b14919050565b612259838361243c565b612266600084848461230b565b610c375760405162461bcd60e51b8152600401610a1c90612ec3565b61228d838383610c37565b6001600160a01b0383166122a9576122a48161251b565b6122cc565b816001600160a01b0316836001600160a01b0316146122cc576122cc838261255f565b6001600160a01b0382166122e8576122e3816125fc565b610c37565b826001600160a01b0316826001600160a01b031614610c3757610c3782826126d5565b600061231f846001600160a01b0316612719565b1561241b57836001600160a01b031663150b7a0261233b611cf8565b8786866040518563ffffffff1660e01b815260040161235d9493929190612d99565b602060405180830381600087803b15801561237757600080fd5b505af19250505080156123a7575060408051601f3d908101601f191682019092526123a491810190612c0a565b60015b612401573d8080156123d5576040519150601f19603f3d011682016040523d82523d6000602084013e6123da565b606091505b5080516123f95760405162461bcd60e51b8152600401610a1c90612ec3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e2b565b506001949350505050565b600082612433858461271f565b14949350505050565b6001600160a01b0382166124625760405162461bcd60e51b8152600401610a1c906131ee565b61246b81611cfc565b156124885760405162461bcd60e51b8152600401610a1c90612f5b565b61249460008383612282565b6001600160a01b03821660009081526003602052604081208054600192906124bd908490613605565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161256c846112c9565b6125769190613650565b6000838152600760205260409020549091508082146125c9576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061260e90600190613650565b6000838152600960205260408120546008805493945090928490811061264457634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061267357634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806126b957634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006126e0836112c9565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b600081815b84518110156110b357600085828151811061274f57634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311612790578281604051602001612773929190612cb5565b6040516020818303038152906040528051906020012092506127bc565b80836040516020016127a3929190612cb5565b6040516020818303038152906040528051906020012092505b50806127c7816136ce565b915050612724565b8280546127db90613693565b90600052602060002090601f0160209004810192826127fd5760008555612843565b82601f1061281657805160ff1916838001178555612843565b82800160010185558215612843579182015b82811115612843578251825591602001919060010190612828565b5061284f929150612853565b5090565b5b8082111561284f5760008155600101612854565b600067ffffffffffffffff83111561288257612882613729565b612895601f8401601f19166020016135cf565b90508281528383830111156128a957600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146109d857600080fd5b600082601f8301126128e7578081fd5b8135602067ffffffffffffffff82111561290357612903613729565b8082026129118282016135cf565b83815282810190868401838801850189101561292b578687fd5b8693505b8584101561295457612940816128c0565b83526001939093019291840191840161292f565b50979650505050505050565b803580151581146109d857600080fd5b600060208284031215612981578081fd5b611812826128c0565b6000806040838503121561299c578081fd5b6129a5836128c0565b91506129b3602084016128c0565b90509250929050565b6000806000606084860312156129d0578081fd5b6129d9846128c0565b92506129e7602085016128c0565b9150604084013590509250925092565b60008060008060808587031215612a0c578081fd5b612a15856128c0565b9350612a23602086016128c0565b925060408501359150606085013567ffffffffffffffff811115612a45578182fd5b8501601f81018713612a55578182fd5b612a6487823560208401612868565b91505092959194509250565b60008060408385031215612a82578182fd5b612a8b836128c0565b91506129b360208401612960565b60008060408385031215612aab578182fd5b612ab4836128c0565b946020939093013593505050565b60008060008060608587031215612ad7578384fd5b612ae0856128c0565b935060208501359250604085013567ffffffffffffffff80821115612b03578384fd5b818701915087601f830112612b16578384fd5b813581811115612b24578485fd5b8860208083028501011115612b37578485fd5b95989497505060200194505050565b600060208284031215612b57578081fd5b813567ffffffffffffffff811115612b6d578182fd5b611e2b848285016128d7565b60008060408385031215612b8b578182fd5b823567ffffffffffffffff811115612ba1578283fd5b612bad858286016128d7565b95602094909401359450505050565b600060208284031215612bcd578081fd5b61181282612960565b600060208284031215612be7578081fd5b5035919050565b600060208284031215612bff578081fd5b81356118128161373f565b600060208284031215612c1b578081fd5b81516118128161373f565b600060208284031215612c37578081fd5b813567ffffffffffffffff811115612c4d578182fd5b8201601f81018413612c5d578182fd5b611e2b84823560208401612868565b60008151808452612c84816020860160208601613667565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b918252602082015260400190565b600084516020612cd68285838a01613667565b855191840191612ce98184848a01613667565b8554920191839060028104600180831680612d0557607f831692505b858310811415612d2357634e487b7160e01b88526022600452602488fd5b808015612d375760018114612d4857612d74565b60ff19851688528388019550612d74565b612d518b6135f9565b895b85811015612d6c5781548a820152908401908801612d53565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612dcc90830184612c6c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612e0e57835183529284019291840191600101612df2565b50909695505050505050565b901515815260200190565b90815260200190565b6000602082526118126020830184612c6c565b6020808252601b908201527f596f7520646f6e74206861766520616e792066726565204e4654210000000000604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601a908201527f596f752063616e74206d696e74206d6f7265207468616e203130000000000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526017908201527f4e46547320616c726561647920554e72657665616c6564000000000000000000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252601c908201527f5075626c69632073616c6520616c726561647920737461727465642100000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600d908201526c141c995cd85b1948195b991959609a1b604082015260600190565b60208082526014908201527324b73b30b634b21036b2b935b63290383937b7b360611b604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526018908201527f536d61727420636f6e7472616374206973207061757365640000000000000000604082015260600190565b602080825260159082015274537570706c79206c696d697420726561636865642160581b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252600c908201526b57726f6e672070726963652160a01b604082015260600190565b6020808252601590820152741391951cc8185b1c9958591e481c995d99585b1959605a1b604082015260600190565b602080825260119082015270139bc8185b5bdd5b9d081d1bc81b5a5b9d607a1b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601c908201527f596f752063616e74207072652d627579206d6f72652068756d61727300000000604082015260600190565b60208082526023908201527f5075626c696373616c6520656e646564206f72206e6f742073746172746564206040820152621e595d60ea1b606082015260800190565b60405181810167ffffffffffffffff811182821017156135f1576135f1613729565b604052919050565b60009081526020902090565b60008219821115613618576136186136fd565b500190565b60008261362c5761362c613713565b500490565b600081600019048311821515161561364b5761364b6136fd565b500290565b600082821015613662576136626136fd565b500390565b60005b8381101561368257818101518382015260200161366a565b8381111561159a5750506000910152565b6002810460018216806136a757607f821691505b602082108114156136c857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156136e2576136e26136fd565b5060010190565b6000826136f8576136f8613713565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ffa57600080fdfea26469706673582212207823e081f4fcb2454dc19b7a1517b07c0f7b9230e0f9aae7d76736911d9c406b64736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000ab7999894f36ede923278d4e898e78085b289e6ce22cd1b887dbbcab47652baa53e5d920436710b7863226402f14fe12e499220000000000000000000000000000000000000000000000000000000000000000a5448452048554d41525300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000254480000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000048697066733a2f2f626166796265696834733776686e6867626362646f6564677a6e6c34656e6e746f71757865766b736f62637a616f736a67743362716568787036752f6a736f6e2f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000052697066733a2f2f62616679626569646a706b7779367769646b76703233696e643668666a776a666867336f33616d707667336b356464333473636f7a746a75736e752f756e72657665616c65642e6a736f6e0000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103755760003560e01c80636c0360eb116101d1578063bdcc134a11610102578063e0df5b6f116100a0578063ebcea3db1161006f578063ebcea3db14610935578063ebf0c71714610955578063f2c4ce1e1461096a578063f2fde38b1461098a57610375565b8063e0df5b6f146108c2578063e1010f7e146108e2578063e1bff46214610902578063e985e9c51461091557610375565b8063d021aa50116100dc578063d021aa5014610858578063d936547e1461086d578063db83694c1461088d578063e054ffc3146108a257610375565b8063bdcc134a14610803578063c7d17fd114610823578063c87b56dd1461083857610375565b806395d89b411161016f578063a475b5dd11610149578063a475b5dd146107a6578063a620ce5a146107bb578063ac5ae11b146107d0578063b88d4fde146107e357610375565b806395d89b411461075c5780639b6860c814610771578063a22cb4651461078657610375565b8063715018a6116101ab578063715018a6146106f257806379d42ed9146107075780638606d938146107275780638da5cb5b1461074757610375565b80636c0360eb1461069d5780636d33b42b146106b257806370a08231146106d257610375565b806330cc7ae0116102ab5780634a56d9ca116102495780635183022711610223578063518302271461063e57806353135ca0146106535780635c975abb146106685780636352211e1461067d57610375565b80634a56d9ca146105de5780634f6ccce7146105fe5780634fda72851461061e57610375565b806342842e0e1161028557806342842e0e1461055c57806342966c681461057c578063438b63001461059c57806345282a92146105c957610375565b806330cc7ae01461051f57806334eafb111461053f5780633ccfd60b1461055457610375565b80630b1f79321161031857806318160ddd116102f257806318160ddd146104b75780631ff61e00146104cc57806323b872dd146104df5780632f745c59146104ff57610375565b80630b1f7932146104785780630c1c972a1461048d57806315edf5f3146104a257610375565b806306fdde031161035457806306fdde03146103f4578063079400f214610416578063081812fc1461042b578063095ea7b31461045857610375565b80620e7fa81461037a57806301ffc9a7146103a557806302329a29146103d2575b600080fd5b34801561038657600080fd5b5061038f6109aa565b60405161039c9190612e25565b60405180910390f35b3480156103b157600080fd5b506103c56103c0366004612bee565b6109b0565b60405161039c9190612e1a565b3480156103de57600080fd5b506103f26103ed366004612bbc565b6109dd565b005b34801561040057600080fd5b50610409610a41565b60405161039c9190612e2e565b34801561042257600080fd5b50610409610ad3565b34801561043757600080fd5b5061044b610446366004612bd6565b610b61565b60405161039c9190612d85565b34801561046457600080fd5b506103f2610473366004612a99565b610ba4565b34801561048457600080fd5b506103c5610c3c565b34801561049957600080fd5b506103f2610c4c565b3480156104ae57600080fd5b506103f2610cc2565b3480156104c357600080fd5b5061038f610d34565b6103f26104da366004612970565b610d3a565b3480156104eb57600080fd5b506103f26104fa3660046129bc565b610e4d565b34801561050b57600080fd5b5061038f61051a366004612a99565b610e85565b34801561052b57600080fd5b506103f261053a366004612970565b610ed7565b34801561054b57600080fd5b5061038f610f30565b6103f2610f36565b34801561056857600080fd5b506103f26105773660046129bc565b610fad565b34801561058857600080fd5b506103f2610597366004612bd6565b610fc8565b3480156105a857600080fd5b506105bc6105b7366004612970565b610ffd565b60405161039c9190612dd6565b3480156105d557600080fd5b506103c56110bb565b3480156105ea57600080fd5b506103f26105f9366004612b46565b6110ca565b34801561060a57600080fd5b5061038f610619366004612bd6565b61117e565b34801561062a57600080fd5b506103f2610639366004612bd6565b6111d9565b34801561064a57600080fd5b506103c561121d565b34801561065f57600080fd5b506103c5611226565b34801561067457600080fd5b506103c5611234565b34801561068957600080fd5b5061044b610698366004612bd6565b611243565b3480156106a957600080fd5b50610409611278565b3480156106be57600080fd5b506103f26106cd366004612bd6565b611285565b3480156106de57600080fd5b5061038f6106ed366004612970565b6112c9565b3480156106fe57600080fd5b506103f261130d565b34801561071357600080fd5b5061038f610722366004612970565b611356565b34801561073357600080fd5b506103f2610742366004612bd6565b611368565b34801561075357600080fd5b5061044b6113ac565b34801561076857600080fd5b506104096113bb565b34801561077d57600080fd5b5061038f6113ca565b34801561079257600080fd5b506103f26107a1366004612a70565b6113d0565b3480156107b257600080fd5b506103f26113e2565b3480156107c757600080fd5b5061038f611453565b6103f26107de366004612a99565b611459565b3480156107ef57600080fd5b506103f26107fe3660046129f7565b6115a0565b34801561080f57600080fd5b506103f261081e366004612b79565b6115d9565b34801561082f57600080fd5b506103f2611688565b34801561084457600080fd5b50610409610853366004612bd6565b6116f7565b34801561086457600080fd5b50610409611819565b34801561087957600080fd5b5061038f610888366004612970565b611826565b34801561089957600080fd5b506103c5611838565b3480156108ae57600080fd5b506103f26108bd366004612a99565b611846565b3480156108ce57600080fd5b506103f26108dd366004612c26565b6118a1565b3480156108ee57600080fd5b506103f26108fd366004612bbc565b6118e9565b6103f2610910366004612ac2565b611946565b34801561092157600080fd5b506103c561093036600461298a565b611b86565b34801561094157600080fd5b506103f2610950366004612bd6565b611bb4565b34801561096157600080fd5b5061038f611bfc565b34801561097657600080fd5b506103f2610985366004612c26565b611c02565b34801561099657600080fd5b506103f26109a5366004612970565b611c4a565b600c5481565b60006001600160e01b0319821663780e9d6360e01b14806109d557506109d582611cb8565b90505b919050565b6109e5611cf8565b6001600160a01b03166109f66113ac565b6001600160a01b031614610a255760405162461bcd60e51b8152600401610a1c9061326f565b60405180910390fd5b60148054911515620100000262ff000019909216919091179055565b606060008054610a5090613693565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7c90613693565b8015610ac95780601f10610a9e57610100808354040283529160200191610ac9565b820191906000526020600020905b815481529060010190602001808311610aac57829003601f168201915b5050505050905090565b60128054610ae090613693565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0c90613693565b8015610b595780601f10610b2e57610100808354040283529160200191610b59565b820191906000526020600020905b815481529060010190602001808311610b3c57829003601f168201915b505050505081565b6000610b6c82611cfc565b610b885760405162461bcd60e51b8152600401610a1c90613223565b506000908152600460205260409020546001600160a01b031690565b6000610baf82611243565b9050806001600160a01b0316836001600160a01b03161415610be35760405162461bcd60e51b8152600401610a1c906133f7565b806001600160a01b0316610bf5611cf8565b6001600160a01b03161480610c115750610c1181610930611cf8565b610c2d5760405162461bcd60e51b8152600401610a1c906130c7565b610c378383611d19565b505050565b6014546301000000900460ff1681565b610c54611cf8565b6001600160a01b0316610c656113ac565b6001600160a01b031614610c8b5760405162461bcd60e51b8152600401610a1c9061326f565b60145460ff610100909104161515600114610cb85760405162461bcd60e51b8152600401610a1c906131b7565b610cc0611d87565b565b610cca611cf8565b6001600160a01b0316610cdb6113ac565b6001600160a01b031614610d015760405162461bcd60e51b8152600401610a1c9061326f565b60145460ff161515600114610d285760405162461bcd60e51b8152600401610a1c90613090565b6014805460ff19169055565b60085490565b60145462010000900460ff1615610d635760405162461bcd60e51b8152600401610a1c90613391565b6001600160a01b038116600090815260156020526040902054610d985760405162461bcd60e51b8152600401610a1c90612e41565b6000610da2610d34565b600b546001600160a01b03841660009081526015602052604090205491925090610dcc9083613605565b1115610dea5760405162461bcd60e51b8152600401610a1c906133c8565b60015b6001600160a01b0383166000908152601560205260409020548111610e3157610e1f83610e1a8385613605565b611d94565b80610e29816136ce565b915050610ded565b50506001600160a01b0316600090815260156020526040812055565b610e5e610e58611cf8565b82611dae565b610e7a5760405162461bcd60e51b8152600401610a1c906134b8565b610c37838383611e33565b6000610e90836112c9565b8210610eae5760405162461bcd60e51b8152600401610a1c90612e78565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610edf611cf8565b6001600160a01b0316610ef06113ac565b6001600160a01b031614610f165760405162461bcd60e51b8152600401610a1c9061326f565b6001600160a01b0316600090815260156020526040812055565b600b5481565b610f3e611cf8565b6001600160a01b0316610f4f6113ac565b6001600160a01b031614610f755760405162461bcd60e51b8152600401610a1c9061326f565b610f7d6113ac565b6001600160a01b03166108fc479081150290604051600060405180830381858888f19350505050610cc057600080fd5b610c37838383604051806020016040528060008152506115a0565b60145462010000900460ff1615610ff15760405162461bcd60e51b8152600401610a1c90613391565b610ffa81611f60565b50565b6060600061100a836112c9565b905060008167ffffffffffffffff81111561103557634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561105e578160200160208202803683370190505b50905060005b828110156110b3576110768582610e85565b82828151811061109657634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806110ab816136ce565b915050611064565b509392505050565b60145462010000900460ff1690565b6110d2611cf8565b6001600160a01b03166110e36113ac565b6001600160a01b0316146111095760405162461bcd60e51b8152600401610a1c9061326f565b60005b815181101561117a5760006015600084848151811061113b57634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080611172906136ce565b91505061110c565b5050565b6000611188610d34565b82106111a65760405162461bcd60e51b8152600401610a1c90613509565b600882815481106111c757634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6111e1611cf8565b6001600160a01b03166111f26113ac565b6001600160a01b0316146112185760405162461bcd60e51b8152600401610a1c9061326f565b600d55565b60145460ff1681565b601454610100900460ff1681565b60145462010000900460ff1681565b6000818152600260205260408120546001600160a01b0316806109d55760405162461bcd60e51b8152600401610a1c9061316e565b60108054610ae090613693565b61128d611cf8565b6001600160a01b031661129e6113ac565b6001600160a01b0316146112c45760405162461bcd60e51b8152600401610a1c9061326f565b600e55565b60006001600160a01b0382166112f15760405162461bcd60e51b8152600401610a1c90613124565b506001600160a01b031660009081526003602052604090205490565b611315611cf8565b6001600160a01b03166113266113ac565b6001600160a01b03161461134c5760405162461bcd60e51b8152600401610a1c9061326f565b610cc06000611f69565b60166020526000908152604090205481565b611370611cf8565b6001600160a01b03166113816113ac565b6001600160a01b0316146113a75760405162461bcd60e51b8152600401610a1c9061326f565b600c55565b600a546001600160a01b031690565b606060018054610a5090613693565b600d5481565b61117a6113db611cf8565b8383611fbb565b6113ea611cf8565b6001600160a01b03166113fb6113ac565b6001600160a01b0316146114215760405162461bcd60e51b8152600401610a1c9061326f565b60145460ff16156114445760405162461bcd60e51b8152600401610a1c9061345e565b6014805460ff19166001179055565b600e5481565b60145462010000900460ff16156114825760405162461bcd60e51b8152600401610a1c90613391565b601454610100900460ff16156114aa5760405162461bcd60e51b8152600401610a1c9061358c565b60006114b4610d34565b600b549091506114c48383613605565b11156114e25760405162461bcd60e51b8152600401610a1c906133c8565b600082116115025760405162461bcd60e51b8152600401610a1c9061348d565b600a8211156115235760405162461bcd60e51b8152600401610a1c90612f92565b61152b6113ac565b6001600160a01b0316336001600160a01b0316146115705781600d546115519190613631565b3410156115705760405162461bcd60e51b8152600401610a1c90613438565b60015b82811161159a5761158884610e1a8385613605565b80611592816136ce565b915050611573565b50505050565b6115b16115ab611cf8565b83611dae565b6115cd5760405162461bcd60e51b8152600401610a1c906134b8565b61159a8484848461205e565b6115e1611cf8565b6001600160a01b03166115f26113ac565b6001600160a01b0316146116185760405162461bcd60e51b8152600401610a1c9061326f565b60005b8251811015610c3757816015600085848151811061164957634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080611680906136ce565b91505061161b565b611690611cf8565b6001600160a01b03166116a16113ac565b6001600160a01b0316146116c75760405162461bcd60e51b8152600401610a1c9061326f565b601454610100900460ff16156116ef5760405162461bcd60e51b8152600401610a1c906131b7565b610cc0612091565b606061170282611cfc565b61171e5760405162461bcd60e51b8152600401610a1c90613342565b60145460ff166117ba576011805461173590613693565b80601f016020809104026020016040519081016040528092919081815260200182805461176190613693565b80156117ae5780601f10611783576101008083540402835291602001916117ae565b820191906000526020600020905b81548152906001019060200180831161179157829003601f168201915b505050505090506109d8565b60006117c46120a2565b905060008151116117e45760405180602001604052806000815250611812565b806117ee846120b1565b601260405160200161180293929190612cc3565b6040516020818303038152906040525b9392505050565b60118054610ae090613693565b60156020526000908152604090205481565b601454610100900460ff1690565b61184e611cf8565b6001600160a01b031661185f6113ac565b6001600160a01b0316146118855760405162461bcd60e51b8152600401610a1c9061326f565b6001600160a01b03909116600090815260156020526040902055565b6118a9611cf8565b6001600160a01b03166118ba6113ac565b6001600160a01b0316146118e05760405162461bcd60e51b8152600401610a1c9061326f565b610ffa816121cc565b6118f1611cf8565b6001600160a01b03166119026113ac565b6001600160a01b0316146119285760405162461bcd60e51b8152600401610a1c9061326f565b6014805491151563010000000263ff00000019909216919091179055565b60145462010000900460ff161561196f5760405162461bcd60e51b8152600401610a1c90613391565b60145460ff61010090910416151560011461199c5760405162461bcd60e51b8152600401610a1c906132a4565b60006119a6610d34565b600b549091506119b68583613605565b11156119d45760405162461bcd60e51b8152600401610a1c906133c8565b600084116119f45760405162461bcd60e51b8152600401610a1c9061348d565b600a841115611a155760405162461bcd60e51b8152600401610a1c90612f92565b611a5a611a21866121df565b84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061220f92505050565b611a765760405162461bcd60e51b8152600401610a1c906132cb565b6014546301000000900460ff16151560011415611ac757600e546001600160a01b0386166000908152601660205260409020541115611ac75760405162461bcd60e51b8152600401610a1c90613555565b611acf6113ac565b6001600160a01b0316336001600160a01b031614611b145783600c54611af59190613631565b341015611b145760405162461bcd60e51b8152600401610a1c90613438565b60015b848111611b3e57611b2c86610e1a8385613605565b80611b36816136ce565b915050611b17565b506001600160a01b038516600090815260166020526040902054611b63908590613605565b6001600160a01b0390951660009081526016602052604090209490945550505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611bbc611cf8565b6001600160a01b0316611bcd6113ac565b6001600160a01b031614611bf35760405162461bcd60e51b8152600401610a1c9061326f565b610ffa8161221e565b60135481565b611c0a611cf8565b6001600160a01b0316611c1b6113ac565b6001600160a01b031614611c415760405162461bcd60e51b8152600401610a1c9061326f565b610ffa81612223565b611c52611cf8565b6001600160a01b0316611c636113ac565b6001600160a01b031614611c895760405162461bcd60e51b8152600401610a1c9061326f565b6001600160a01b038116611caf5760405162461bcd60e51b8152600401610a1c90612f15565b610ffa81611f69565b60006001600160e01b031982166380ac58cd60e01b1480611ce957506001600160e01b03198216635b5e139f60e01b145b806109d557506109d582612236565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d4e82611243565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6014805461ff0019169055565b61117a82826040518060200160405280600081525061224f565b6000611db982611cfc565b611dd55760405162461bcd60e51b8152600401610a1c90613044565b6000611de083611243565b9050806001600160a01b0316846001600160a01b03161480611e1b5750836001600160a01b0316611e1084610b61565b6001600160a01b0316145b80611e2b5750611e2b8185611b86565b949350505050565b826001600160a01b0316611e4682611243565b6001600160a01b031614611e6c5760405162461bcd60e51b8152600401610a1c906132f9565b6001600160a01b038216611e925760405162461bcd60e51b8152600401610a1c90612fc9565b611e9d838383612282565b611ea8600082611d19565b6001600160a01b0383166000908152600360205260408120805460019290611ed1908490613650565b90915550506001600160a01b0382166000908152600360205260408120805460019290611eff908490613605565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610ffa81611f60565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611fed5760405162461bcd60e51b8152600401610a1c9061300d565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190612051908590612e1a565b60405180910390a3505050565b612069848484611e33565b6120758484848461230b565b61159a5760405162461bcd60e51b8152600401610a1c90612ec3565b6014805461ff001916610100179055565b606060108054610a5090613693565b6060816120d657506040805180820190915260018152600360fc1b60208201526109d8565b8160005b811561210057806120ea816136ce565b91506120f99050600a8361361d565b91506120da565b60008167ffffffffffffffff81111561212957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612153576020820181803683370190505b5090505b8415611e2b57612168600183613650565b9150612175600a866136e9565b612180906030613605565b60f81b8183815181106121a357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506121c5600a8661361d565b9450612157565b805161117a9060109060208401906127cf565b6000816040516020016121f29190612c98565b604051602081830303815290604052805190602001209050919050565b60006118128260135485612426565b601355565b805161117a9060119060208401906127cf565b6001600160e01b031981166301ffc9a760e01b14919050565b612259838361243c565b612266600084848461230b565b610c375760405162461bcd60e51b8152600401610a1c90612ec3565b61228d838383610c37565b6001600160a01b0383166122a9576122a48161251b565b6122cc565b816001600160a01b0316836001600160a01b0316146122cc576122cc838261255f565b6001600160a01b0382166122e8576122e3816125fc565b610c37565b826001600160a01b0316826001600160a01b031614610c3757610c3782826126d5565b600061231f846001600160a01b0316612719565b1561241b57836001600160a01b031663150b7a0261233b611cf8565b8786866040518563ffffffff1660e01b815260040161235d9493929190612d99565b602060405180830381600087803b15801561237757600080fd5b505af19250505080156123a7575060408051601f3d908101601f191682019092526123a491810190612c0a565b60015b612401573d8080156123d5576040519150601f19603f3d011682016040523d82523d6000602084013e6123da565b606091505b5080516123f95760405162461bcd60e51b8152600401610a1c90612ec3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e2b565b506001949350505050565b600082612433858461271f565b14949350505050565b6001600160a01b0382166124625760405162461bcd60e51b8152600401610a1c906131ee565b61246b81611cfc565b156124885760405162461bcd60e51b8152600401610a1c90612f5b565b61249460008383612282565b6001600160a01b03821660009081526003602052604081208054600192906124bd908490613605565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161256c846112c9565b6125769190613650565b6000838152600760205260409020549091508082146125c9576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061260e90600190613650565b6000838152600960205260408120546008805493945090928490811061264457634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061267357634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806126b957634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006126e0836112c9565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b600081815b84518110156110b357600085828151811061274f57634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311612790578281604051602001612773929190612cb5565b6040516020818303038152906040528051906020012092506127bc565b80836040516020016127a3929190612cb5565b6040516020818303038152906040528051906020012092505b50806127c7816136ce565b915050612724565b8280546127db90613693565b90600052602060002090601f0160209004810192826127fd5760008555612843565b82601f1061281657805160ff1916838001178555612843565b82800160010185558215612843579182015b82811115612843578251825591602001919060010190612828565b5061284f929150612853565b5090565b5b8082111561284f5760008155600101612854565b600067ffffffffffffffff83111561288257612882613729565b612895601f8401601f19166020016135cf565b90508281528383830111156128a957600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146109d857600080fd5b600082601f8301126128e7578081fd5b8135602067ffffffffffffffff82111561290357612903613729565b8082026129118282016135cf565b83815282810190868401838801850189101561292b578687fd5b8693505b8584101561295457612940816128c0565b83526001939093019291840191840161292f565b50979650505050505050565b803580151581146109d857600080fd5b600060208284031215612981578081fd5b611812826128c0565b6000806040838503121561299c578081fd5b6129a5836128c0565b91506129b3602084016128c0565b90509250929050565b6000806000606084860312156129d0578081fd5b6129d9846128c0565b92506129e7602085016128c0565b9150604084013590509250925092565b60008060008060808587031215612a0c578081fd5b612a15856128c0565b9350612a23602086016128c0565b925060408501359150606085013567ffffffffffffffff811115612a45578182fd5b8501601f81018713612a55578182fd5b612a6487823560208401612868565b91505092959194509250565b60008060408385031215612a82578182fd5b612a8b836128c0565b91506129b360208401612960565b60008060408385031215612aab578182fd5b612ab4836128c0565b946020939093013593505050565b60008060008060608587031215612ad7578384fd5b612ae0856128c0565b935060208501359250604085013567ffffffffffffffff80821115612b03578384fd5b818701915087601f830112612b16578384fd5b813581811115612b24578485fd5b8860208083028501011115612b37578485fd5b95989497505060200194505050565b600060208284031215612b57578081fd5b813567ffffffffffffffff811115612b6d578182fd5b611e2b848285016128d7565b60008060408385031215612b8b578182fd5b823567ffffffffffffffff811115612ba1578283fd5b612bad858286016128d7565b95602094909401359450505050565b600060208284031215612bcd578081fd5b61181282612960565b600060208284031215612be7578081fd5b5035919050565b600060208284031215612bff578081fd5b81356118128161373f565b600060208284031215612c1b578081fd5b81516118128161373f565b600060208284031215612c37578081fd5b813567ffffffffffffffff811115612c4d578182fd5b8201601f81018413612c5d578182fd5b611e2b84823560208401612868565b60008151808452612c84816020860160208601613667565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b918252602082015260400190565b600084516020612cd68285838a01613667565b855191840191612ce98184848a01613667565b8554920191839060028104600180831680612d0557607f831692505b858310811415612d2357634e487b7160e01b88526022600452602488fd5b808015612d375760018114612d4857612d74565b60ff19851688528388019550612d74565b612d518b6135f9565b895b85811015612d6c5781548a820152908401908801612d53565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612dcc90830184612c6c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612e0e57835183529284019291840191600101612df2565b50909695505050505050565b901515815260200190565b90815260200190565b6000602082526118126020830184612c6c565b6020808252601b908201527f596f7520646f6e74206861766520616e792066726565204e4654210000000000604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601a908201527f596f752063616e74206d696e74206d6f7265207468616e203130000000000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526017908201527f4e46547320616c726561647920554e72657665616c6564000000000000000000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252601c908201527f5075626c69632073616c6520616c726561647920737461727465642100000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600d908201526c141c995cd85b1948195b991959609a1b604082015260600190565b60208082526014908201527324b73b30b634b21036b2b935b63290383937b7b360611b604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526018908201527f536d61727420636f6e7472616374206973207061757365640000000000000000604082015260600190565b602080825260159082015274537570706c79206c696d697420726561636865642160581b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252600c908201526b57726f6e672070726963652160a01b604082015260600190565b6020808252601590820152741391951cc8185b1c9958591e481c995d99585b1959605a1b604082015260600190565b602080825260119082015270139bc8185b5bdd5b9d081d1bc81b5a5b9d607a1b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601c908201527f596f752063616e74207072652d627579206d6f72652068756d61727300000000604082015260600190565b60208082526023908201527f5075626c696373616c6520656e646564206f72206e6f742073746172746564206040820152621e595d60ea1b606082015260800190565b60405181810167ffffffffffffffff811182821017156135f1576135f1613729565b604052919050565b60009081526020902090565b60008219821115613618576136186136fd565b500190565b60008261362c5761362c613713565b500490565b600081600019048311821515161561364b5761364b6136fd565b500290565b600082821015613662576136626136fd565b500390565b60005b8381101561368257818101518382015260200161366a565b8381111561159a5750506000910152565b6002810460018216806136a757607f821691505b602082108114156136c857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156136e2576136e26136fd565b5060010190565b6000826136f8576136f8613713565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ffa57600080fdfea26469706673582212207823e081f4fcb2454dc19b7a1517b07c0f7b9230e0f9aae7d76736911d9c406b64736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000ab7999894f36ede923278d4e898e78085b289e6ce22cd1b887dbbcab47652baa53e5d920436710b7863226402f14fe12e499220000000000000000000000000000000000000000000000000000000000000000a5448452048554d41525300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000254480000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000048697066733a2f2f626166796265696834733776686e6867626362646f6564677a6e6c34656e6e746f71757865766b736f62637a616f736a67743362716568787036752f6a736f6e2f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000052697066733a2f2f62616679626569646a706b7779367769646b76703233696e643668666a776a666867336f33616d707667336b356464333473636f7a746a75736e752f756e72657665616c65642e6a736f6e0000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): THE HUMARS
Arg [1] : _symbol (string): TH
Arg [2] : _initBaseURI (string): ipfs://bafybeih4s7vhnhgbcbdoedgznl4enntoquxevksobczaosjgt3bqehxp6u/json/
Arg [3] : _inintNotRevealURI (string): ipfs://bafybeidjpkwy6widkvp23ind6hfjwjfhg3o3ampvg3k5dd34scoztjusnu/unrevealed.json
Arg [4] : _initOwner (address): 0x0aB7999894F36eDe923278d4E898e78085B289e6
Arg [5] : _initMerkleroot (bytes32): 0xce22cd1b887dbbcab47652baa53e5d920436710b7863226402f14fe12e499220

-----Encoded View---------------
18 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [4] : 0000000000000000000000000ab7999894f36ede923278d4e898e78085b289e6
Arg [5] : ce22cd1b887dbbcab47652baa53e5d920436710b7863226402f14fe12e499220
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [7] : 5448452048554d41525300000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [9] : 5448000000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000048
Arg [11] : 697066733a2f2f626166796265696834733776686e6867626362646f6564677a
Arg [12] : 6e6c34656e6e746f71757865766b736f62637a616f736a677433627165687870
Arg [13] : 36752f6a736f6e2f000000000000000000000000000000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000052
Arg [15] : 697066733a2f2f62616679626569646a706b7779367769646b76703233696e64
Arg [16] : 3668666a776a666867336f33616d707667336b356464333473636f7a746a7573
Arg [17] : 6e752f756e72657665616c65642e6a736f6e0000000000000000000000000000


Deployed Bytecode Sourcemap

46695:7992:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46827:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40471:224;;;;;;;;;;-1:-1:-1;40471:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;54480:79::-;;;;;;;;;;-1:-1:-1;54480:79:0;;;;;:::i;:::-;;:::i;:::-;;27965:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;47064:31::-;;;;;;;;;;;;;:::i;29524:221::-;;;;;;;;;;-1:-1:-1;29524:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;29047:411::-;;;;;;;;;;-1:-1:-1;29047:411:0;;;;;:::i;:::-;;:::i;47235:31::-;;;;;;;;;;;;;:::i;53763:154::-;;;;;;;;;;;;;:::i;54224:136::-;;;;;;;;;;;;;:::i;41111:113::-;;;;;;;;;;;;;:::i;50827:463::-;;;;;;:::i;:::-;;:::i;30274:339::-;;;;;;;;;;-1:-1:-1;30274:339:0;;;;;:::i;:::-;;:::i;40779:256::-;;;;;;;;;;-1:-1:-1;40779:256:0;;;;;:::i;:::-;;:::i;53441:102::-;;;;;;;;;;-1:-1:-1;53441:102:0;;;;;:::i;:::-;;:::i;46787:33::-;;;;;;;;;;;;;:::i;54571:113::-;;;:::i;30684:185::-;;;;;;;;;;-1:-1:-1;30684:185:0;;;;;:::i;:::-;;:::i;51298:126::-;;;;;;;;;;-1:-1:-1;51298:126:0;;;;;:::i;:::-;;:::i;48763:352::-;;;;;;;;;;-1:-1:-1;48763:352:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;48167:91::-;;;;;;;;;;;;;:::i;53101:191::-;;;;;;;;;;-1:-1:-1;53101:191:0;;;;;:::i;:::-;;:::i;41301:233::-;;;;;;;;;;-1:-1:-1;41301:233:0;;;;;:::i;:::-;;:::i;52750:113::-;;;;;;;;;;-1:-1:-1;52750:113:0;;;;;:::i;:::-;;:::i;47128:28::-;;;;;;;;;;;;;:::i;47163:32::-;;;;;;;;;;;;;:::i;47202:26::-;;;;;;;;;;;;;:::i;27659:239::-;;;;;;;;;;-1:-1:-1;27659:239:0;;;;;:::i;:::-;;:::i;47003:21::-;;;;;;;;;;;;;:::i;53653:102::-;;;;;;;;;;-1:-1:-1;53653:102:0;;;;;:::i;:::-;;:::i;27389:208::-;;;;;;;;;;-1:-1:-1;27389:208:0;;;;;:::i;:::-;;:::i;6935:103::-;;;;;;;;;;;;;:::i;47356:46::-;;;;;;;;;;-1:-1:-1;47356:46:0;;;;;:::i;:::-;;:::i;52635:107::-;;;;;;;;;;-1:-1:-1;52635:107:0;;;;;:::i;:::-;;:::i;6284:87::-;;;;;;;;;;;;;:::i;28134:104::-;;;;;;;;;;;;;:::i;46876:43::-;;;;;;;;;;;;;:::i;29817:155::-;;;;;;;;;;-1:-1:-1;29817:155:0;;;;;:::i;:::-;;:::i;54084:132::-;;;;;;;;;;;;;:::i;46927:34::-;;;;;;;;;;;;;:::i;50110:709::-;;;;;;:::i;:::-;;:::i;30940:328::-;;;;;;;;;;-1:-1:-1;30940:328:0;;;;;:::i;:::-;;:::i;52871:222::-;;;;;;;;;;-1:-1:-1;52871:222:0;;;;;:::i;:::-;;:::i;53925:151::-;;;;;;;;;;;;;:::i;48266:485::-;;;;;;;;;;-1:-1:-1;48266:485:0;;;;;:::i;:::-;;:::i;47031:26::-;;;;;;;;;;;;;:::i;47275:46::-;;;;;;;;;;-1:-1:-1;47275:46:0;;;;;:::i;:::-;;:::i;48062:97::-;;;;;;;;;;;;;:::i;53300:133::-;;;;;;;;;;-1:-1:-1;53300:133:0;;;;;:::i;:::-;;:::i;52523:104::-;;;;;;;;;;-1:-1:-1;52523:104:0;;;;;:::i;:::-;;:::i;53551:94::-;;;;;;;;;;-1:-1:-1;53551:94:0;;;;;:::i;:::-;;:::i;49123:979::-;;;;;;:::i;:::-;;:::i;30043:164::-;;;;;;;;;;-1:-1:-1;30043:164:0;;;;;:::i;:::-;;:::i;54368:104::-;;;;;;;;;;-1:-1:-1;54368:104:0;;;;;:::i;:::-;;:::i;47102:19::-;;;;;;;;;;;;;:::i;52402:113::-;;;;;;;;;;-1:-1:-1;52402:113:0;;;;;:::i;:::-;;:::i;7193:201::-;;;;;;;;;;-1:-1:-1;7193:201:0;;;;;:::i;:::-;;:::i;46827:41::-;;;;:::o;40471:224::-;40573:4;-1:-1:-1;;;;;;40597:50:0;;-1:-1:-1;;;40597:50:0;;:90;;;40651:36;40675:11;40651:23;:36::i;:::-;40590:97;;40471:224;;;;:::o;54480:79::-;6515:12;:10;:12::i;:::-;-1:-1:-1;;;;;6504:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;6504:23:0;;6496:68;;;;-1:-1:-1;;;6496:68:0;;;;;;;:::i;:::-;;;;;;;;;54536:6:::1;:15:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;54536:15:0;;::::1;::::0;;;::::1;::::0;;54480:79::o;27965:100::-;28019:13;28052:5;28045:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27965:100;:::o;47064:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29524:221::-;29600:7;29628:16;29636:7;29628;:16::i;:::-;29620:73;;;;-1:-1:-1;;;29620:73:0;;;;;;;:::i;:::-;-1:-1:-1;29713:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29713:24:0;;29524:221::o;29047:411::-;29128:13;29144:23;29159:7;29144:14;:23::i;:::-;29128:39;;29192:5;-1:-1:-1;;;;;29186:11:0;:2;-1:-1:-1;;;;;29186:11:0;;;29178:57;;;;-1:-1:-1;;;29178:57:0;;;;;;;:::i;:::-;29286:5;-1:-1:-1;;;;;29270:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;29270:21:0;;:62;;;;29295:37;29312:5;29319:12;:10;:12::i;29295:37::-;29248:168;;;;-1:-1:-1;;;29248:168:0;;;;;;;:::i;:::-;29429:21;29438:2;29442:7;29429:8;:21::i;:::-;29047:411;;;:::o;47235:31::-;;;;;;;;;:::o;53763:154::-;6515:12;:10;:12::i;:::-;-1:-1:-1;;;;;6504:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;6504:23:0;;6496:68;;;;-1:-1:-1;;;6496:68:0;;;;;;;:::i;:::-;53826:13:::1;::::0;::::1;;::::0;;::::1;;:21;;:13;:21;53818:62;;;;-1:-1:-1::0;;;53818:62:0::1;;;;;;;:::i;:::-;53891:18;:16;:18::i;:::-;53763:154::o:0;54224:136::-;6515:12;:10;:12::i;:::-;-1:-1:-1;;;;;6504:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;6504:23:0;;6496:68;;;;-1:-1:-1;;;6496:68:0;;;;;;;:::i;:::-;54281:8:::1;::::0;::::1;;:16;;:8:::0;:16:::1;54272:53;;;;-1:-1:-1::0;;;54272:53:0::1;;;;;;;:::i;:::-;54336:8;:16:::0;;-1:-1:-1;;54336:16:0::1;::::0;;54224:136::o;41111:113::-;41199:10;:17;41111:113;:::o;50827:463::-;50897:6;;;;;;;50896:7;50888:44;;;;-1:-1:-1;;;50888:44:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50951:16:0;;50970:1;50951:16;;;:11;:16;;;;;;50943:60;;;;-1:-1:-1;;;50943:60:0;;;;;;;:::i;:::-;51014:14;51031:13;:11;:13::i;:::-;51092:10;;-1:-1:-1;;;;;51072:16:0;;;;;;:11;:16;;;;;;51014:30;;-1:-1:-1;51092:10:0;51063:25;;51014:30;51063:25;:::i;:::-;:39;;51055:73;;;;-1:-1:-1;;;51055:73:0;;;;;;;:::i;:::-;51166:1;51149:101;-1:-1:-1;;;;;51174:16:0;;;;;;:11;:16;;;;;;51169:21;;51149:101;;51212:26;51222:3;51227:10;51236:1;51227:6;:10;:::i;:::-;51212:9;:26::i;:::-;51192:3;;;;:::i;:::-;;;;51149:101;;;-1:-1:-1;;;;;;;51262:16:0;51281:1;51262:16;;;:11;:16;;;;;:20;50827:463::o;30274:339::-;30469:41;30488:12;:10;:12::i;:::-;30502:7;30469:18;:41::i;:::-;30461:103;;;;-1:-1:-1;;;30461:103:0;;;;;;;:::i;:::-;30577:28;30587:4;30593:2;30597:7;30577:9;:28::i;40779:256::-;40876:7;40912:23;40929:5;40912:16;:23::i;:::-;40904:5;:31;40896:87;;;;-1:-1:-1;;;40896:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;41001:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40779:256::o;53441:102::-;6515:12;:10;:12::i;:::-;-1:-1:-1;;;;;6504:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;6504:23:0;;6496:68;;;;-1:-1:-1;;;6496:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;53513:18:0::1;53534:1;53513:18:::0;;;:11:::1;:18;::::0;;;;:22;53441:102::o;46787:33::-;;;;:::o;54571:113::-;6515:12;:10;:12::i;:::-;-1:-1:-1;;;;;6504:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;6504:23:0;;6496:68;;;;-1:-1:-1;;;6496:68:0;;;;;;;:::i;:::-;54639:7:::1;:5;:7::i;:::-;-1:-1:-1::0;;;;;54631:21:0::1;:44;54653:21;54631:44;;;;;;;;;;;;;;;;;;;;;;;54623:53;;;::::0;::::1;30684:185:::0;30822:39;30839:4;30845:2;30849:7;30822:39;;;;;;;;;;;;:16;:39::i;51298:126::-;51356:6;;;;;;;51355:7;51347:44;;;;-1:-1:-1;;;51347:44:0;;;;;;;:::i;:::-;51402:14;51408:7;51402:5;:14::i;:::-;51298:126;:::o;48763:352::-;48838:16;48868:23;48894:17;48904:6;48894:9;:17::i;:::-;48868:43;;48918:25;48960:15;48946:30;;;;;;-1:-1:-1;;;48946:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48946:30:0;;48918:58;;48988:9;48983:103;49003:15;48999:1;:19;48983:103;;;49048:30;49068:6;49076:1;49048:19;:30::i;:::-;49034:8;49043:1;49034:11;;;;;;-1:-1:-1;;;49034:11:0;;;;;;;;;;;;;;;;;;:44;49020:3;;;;:::i;:::-;;;;48983:103;;;-1:-1:-1;49099:8:0;48763:352;-1:-1:-1;;;48763:352:0:o;48167:91::-;48244:6;;;;;;;;48167:91::o;53101:191::-;6515:12;:10;:12::i;:::-;-1:-1:-1;;;;;6504:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;6504:23:0;;6496:68;;;;-1:-1:-1;;;6496:68:0;;;;;;;:::i;:::-;53193:9:::1;53188:97;53212:6;:13;53208:1;:17;53188:97;;;53272:1;53247:11;:22;53259:6;53266:1;53259:9;;;;;;-1:-1:-1::0;;;53259:9:0::1;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;53247:22:0::1;-1:-1:-1::0;;;;;53247:22:0::1;;;;;;;;;;;;:26;;;;53227:3;;;;;:::i;:::-;;;;53188:97;;;;53101:191:::0;:::o;41301:233::-;41376:7;41412:30;:28;:30::i;:::-;41404:5;:38;41396:95;;;;-1:-1:-1;;;41396:95:0;;;;;;;:::i;:::-;41509:10;41520:5;41509:17;;;;;;-1:-1:-1;;;41509:17:0;;;;;;;;;;;;;;;;;41502:24;;41301:233;;;:::o;52750:113::-;6515:12;:10;:12::i;:::-;-1:-1:-1;;;;;6504:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;6504:23:0;;6496:68;;;;-1:-1:-1;;;6496:68:0;;;;;;;:::i;:::-;52828:15:::1;:27:::0;52750:113::o;47128:28::-;;;;;;:::o;47163:32::-;;;;;;;;;:::o;47202:26::-;;;;;;;;;:::o;27659:239::-;27731:7;27767:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27767:16:0;27802:19;27794:73;;;;-1:-1:-1;;;27794:73:0;;;;;;;:::i;47003:21::-;;;;;;;:::i;53653:102::-;6515:12;:10;:12::i;:::-;-1:-1:-1;;;;;6504:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;6504:23:0;;6496:68;;;;-1:-1:-1;;;6496:68:0;;;;;;;:::i;:::-;53721:14:::1;:26:::0;53653:102::o;27389:208::-;27461:7;-1:-1:-1;;;;;27489:19:0;;27481:74;;;;-1:-1:-1;;;27481:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;27573:16:0;;;;;:9;:16;;;;;;;27389:208::o;6935:103::-;6515:12;:10;:12::i;:::-;-1:-1:-1;;;;;6504:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;6504:23:0;;6496:68;;;;-1:-1:-1;;;6496:68:0;;;;;;;:::i;:::-;7000:30:::1;7027:1;7000:18;:30::i;47356:46::-:0;;;;;;;;;;;;;:::o;52635:107::-;6515:12;:10;:12::i;:::-;-1:-1:-1;;;;;6504:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;6504:23:0;;6496:68;;;;-1:-1:-1;;;6496:68:0;;;;;;;:::i;:::-;52710:12:::1;:24:::0;52635:107::o;6284:87::-;6357:6;;-1:-1:-1;;;;;6357:6:0;6284:87;:::o;28134:104::-;28190:13;28223:7;28216:14;;;;;:::i;46876:43::-;;;;:::o;29817:155::-;29912:52;29931:12;:10;:12::i;:::-;29945:8;29955;29912:18;:52::i;54084:132::-;6515:12;:10;:12::i;:::-;-1:-1:-1;;;;;6504:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;6504:23:0;;6496:68;;;;-1:-1:-1;;;6496:68:0;;;;;;;:::i;:::-;54139:8:::1;::::0;::::1;;:17;54130:52;;;;-1:-1:-1::0;;;54130:52:0::1;;;;;;;:::i;:::-;54193:8;:15:::0;;-1:-1:-1;;54193:15:0::1;54204:4;54193:15;::::0;;54084:132::o;46927:34::-;;;;:::o;50110:709::-;50203:6;;;;;;;50202:7;50194:44;;;;-1:-1:-1;;;50194:44:0;;;;;;;:::i;:::-;50257:13;;;;;;;:22;50249:70;;;;-1:-1:-1;;;50249:70:0;;;;;;;:::i;:::-;50330:14;50347:13;:11;:13::i;:::-;50403:10;;50330:30;;-1:-1:-1;50379:20:0;50388:11;50330:30;50379:20;:::i;:::-;:34;;50371:68;;;;-1:-1:-1;;;50371:68:0;;;;;;;:::i;:::-;50472:1;50458:11;:15;50450:45;;;;-1:-1:-1;;;50450:45:0;;;;;;;:::i;:::-;50529:2;50514:11;:17;;50506:56;;;;-1:-1:-1;;;50506:56:0;;;;;;;:::i;:::-;50593:7;:5;:7::i;:::-;-1:-1:-1;;;;;50579:21:0;:10;-1:-1:-1;;;;;50579:21:0;;50575:121;;50656:11;50638:15;;:29;;;;:::i;:::-;50625:9;:42;;50617:67;;;;-1:-1:-1;;;50617:67:0;;;;;;;:::i;:::-;50733:1;50716:96;50741:11;50736:1;:16;50716:96;;50774:26;50784:3;50789:10;50798:1;50789:6;:10;:::i;50774:26::-;50754:3;;;;:::i;:::-;;;;50716:96;;;;50110:709;;;:::o;30940:328::-;31115:41;31134:12;:10;:12::i;:::-;31148:7;31115:18;:41::i;:::-;31107:103;;;;-1:-1:-1;;;31107:103:0;;;;;;;:::i;:::-;31221:39;31235:4;31241:2;31245:7;31254:5;31221:13;:39::i;52871:222::-;6515:12;:10;:12::i;:::-;-1:-1:-1;;;;;6504:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;6504:23:0;;6496:68;;;;-1:-1:-1;;;6496:68:0;;;;;;;:::i;:::-;52981:9:::1;52976:110;53000:6;:13;52996:1;:17;52976:110;;;53060:14;53035:11;:22;53047:6;53054:1;53047:9;;;;;;-1:-1:-1::0;;;53047:9:0::1;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;53035:22:0::1;-1:-1:-1::0;;;;;53035:22:0::1;;;;;;;;;;;;:39;;;;53015:3;;;;;:::i;:::-;;;;52976:110;;53925:151:::0;6515:12;:10;:12::i;:::-;-1:-1:-1;;;;;6504:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;6504:23:0;;6496:68;;;;-1:-1:-1;;;6496:68:0;;;;;;;:::i;:::-;53986:13:::1;::::0;::::1;::::0;::::1;;;:22;53978:63;;;;-1:-1:-1::0;;;53978:63:0::1;;;;;;;:::i;:::-;54052:16;:14;:16::i;48266:485::-:0;48364:13;48407:16;48415:7;48407;:16::i;:::-;48391:97;;;;-1:-1:-1;;;48391:97:0;;;;;;;:::i;:::-;48500:8;;;;48497:56;;48533:12;48526:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48497:56;48561:28;48592:10;:8;:10::i;:::-;48561:41;;48647:1;48622:14;48616:28;:32;:127;;;;;;;;;;;;;;;;;48684:14;48700:18;:7;:16;:18::i;:::-;48720:7;48667:61;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48616:127;48609:134;48266:485;-1:-1:-1;;;48266:485:0:o;47031:26::-;;;;;;;:::i;47275:46::-;;;;;;;;;;;;;:::o;48062:97::-;48138:13;;;;;;;;48062:97::o;53300:133::-;6515:12;:10;:12::i;:::-;-1:-1:-1;;;;;6504:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;6504:23:0;;6496:68;;;;-1:-1:-1;;;6496:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;53390:18:0;;::::1;;::::0;;;:11:::1;:18;::::0;;;;:35;53300:133::o;52523:104::-;6515:12;:10;:12::i;:::-;-1:-1:-1;;;;;6504:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;6504:23:0;;6496:68;;;;-1:-1:-1;;;6496:68:0;;;;;;;:::i;:::-;52597:22:::1;52609:9;52597:11;:22::i;53551:94::-:0;6515:12;:10;:12::i;:::-;-1:-1:-1;;;;;6504:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;6504:23:0;;6496:68;;;;-1:-1:-1;;;6496:68:0;;;;;;;:::i;:::-;53616:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;53616:21:0;;::::1;::::0;;;::::1;::::0;;53551:94::o;49123:979::-;49240:6;;;;;;;49239:7;49231:44;;;;-1:-1:-1;;;49231:44:0;;;;;;;:::i;:::-;49294:13;;;;;;;;:21;;:13;:21;49286:47;;;;-1:-1:-1;;;49286:47:0;;;;;;;:::i;:::-;49344:14;49361:13;:11;:13::i;:::-;49417:10;;49344:30;;-1:-1:-1;49393:20:0;49402:11;49344:30;49393:20;:::i;:::-;:34;;49385:68;;;;-1:-1:-1;;;49385:68:0;;;;;;;:::i;:::-;49486:1;49472:11;:15;49464:45;;;;-1:-1:-1;;;49464:45:0;;;;;;;:::i;:::-;49543:2;49528:11;:17;;49520:56;;;;-1:-1:-1;;;49520:56:0;;;;;;;:::i;:::-;49595:27;49603:10;49609:3;49603:5;:10::i;:::-;49615:6;;49595:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49595:7:0;;-1:-1:-1;;;49595:27:0:i;:::-;49587:60;;;;-1:-1:-1;;;49587:60:0;;;;;;;:::i;:::-;49664:11;;;;;;;:19;;49679:4;49664:19;49660:127;;;49728:14;;-1:-1:-1;;;;;49708:16:0;;;;;;:11;:16;;;;;;:34;;49700:75;;;;-1:-1:-1;;;49700:75:0;;;;;;;:::i;:::-;49817:7;:5;:7::i;:::-;-1:-1:-1;;;;;49803:21:0;:10;-1:-1:-1;;;;;49803:21:0;;49799:118;;49877:11;49862:12;;:26;;;;:::i;:::-;49849:9;:39;;49841:64;;;;-1:-1:-1;;;49841:64:0;;;;;;;:::i;:::-;49954:1;49937:96;49962:11;49957:1;:16;49937:96;;49995:26;50005:3;50010:10;50019:1;50010:6;:10;:::i;49995:26::-;49975:3;;;;:::i;:::-;;;;49937:96;;;-1:-1:-1;;;;;;50064:16:0;;;;;;:11;:16;;;;;;:30;;50083:11;;50064:30;:::i;:::-;-1:-1:-1;;;;;50045:16:0;;;;;;;:11;:16;;;;;:49;;;;-1:-1:-1;;;;49123:979:0:o;30043:164::-;-1:-1:-1;;;;;30164:25:0;;;30140:4;30164:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30043:164::o;54368:104::-;6515:12;:10;:12::i;:::-;-1:-1:-1;;;;;6504:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;6504:23:0;;6496:68;;;;-1:-1:-1;;;6496:68:0;;;;;;;:::i;:::-;54440:24:::1;54455:8;54440:14;:24::i;47102:19::-:0;;;;:::o;52402:113::-;6515:12;:10;:12::i;:::-;-1:-1:-1;;;;;6504:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;6504:23:0;;6496:68;;;;-1:-1:-1;;;6496:68:0;;;;;;;:::i;:::-;52480:27:::1;52499:7;52480:18;:27::i;7193:201::-:0;6515:12;:10;:12::i;:::-;-1:-1:-1;;;;;6504:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;6504:23:0;;6496:68;;;;-1:-1:-1;;;6496:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7282:22:0;::::1;7274:73;;;;-1:-1:-1::0;;;7274:73:0::1;;;;;;;:::i;:::-;7358:28;7377:8;7358:18;:28::i;27020:305::-:0;27122:4;-1:-1:-1;;;;;;27159:40:0;;-1:-1:-1;;;27159:40:0;;:105;;-1:-1:-1;;;;;;;27216:48:0;;-1:-1:-1;;;27216:48:0;27159:105;:158;;;;27281:36;27305:11;27281:23;:36::i;5008:98::-;5088:10;5008:98;:::o;32778:127::-;32843:4;32867:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32867:16:0;:30;;;32778:127::o;36760:174::-;36835:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36835:29:0;-1:-1:-1;;;;;36835:29:0;;;;;;;;:24;;36889:23;36835:24;36889:14;:23::i;:::-;-1:-1:-1;;;;;36880:46:0;;;;;;;;;;;36760:174;;:::o;51871:81::-;51923:13;:21;;-1:-1:-1;;51923:21:0;;;51871:81::o;33762:110::-;33838:26;33848:2;33852:7;33838:26;;;;;;;;;;;;:9;:26::i;33072:348::-;33165:4;33190:16;33198:7;33190;:16::i;:::-;33182:73;;;;-1:-1:-1;;;33182:73:0;;;;;;;:::i;:::-;33266:13;33282:23;33297:7;33282:14;:23::i;:::-;33266:39;;33335:5;-1:-1:-1;;;;;33324:16:0;:7;-1:-1:-1;;;;;33324:16:0;;:51;;;;33368:7;-1:-1:-1;;;;;33344:31:0;:20;33356:7;33344:11;:20::i;:::-;-1:-1:-1;;;;;33344:31:0;;33324:51;:87;;;;33379:32;33396:5;33403:7;33379:16;:32::i;:::-;33316:96;33072:348;-1:-1:-1;;;;33072:348:0:o;36064:578::-;36223:4;-1:-1:-1;;;;;36196:31:0;:23;36211:7;36196:14;:23::i;:::-;-1:-1:-1;;;;;36196:31:0;;36188:85;;;;-1:-1:-1;;;36188:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36292:16:0;;36284:65;;;;-1:-1:-1;;;36284:65:0;;;;;;;:::i;:::-;36362:39;36383:4;36389:2;36393:7;36362:20;:39::i;:::-;36466:29;36483:1;36487:7;36466:8;:29::i;:::-;-1:-1:-1;;;;;36508:15:0;;;;;;:9;:15;;;;;:20;;36527:1;;36508:15;:20;;36527:1;;36508:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36539:13:0;;;;;;:9;:13;;;;;:18;;36556:1;;36539:13;:18;;36556:1;;36539:18;:::i;:::-;;;;-1:-1:-1;;36568:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36568:21:0;-1:-1:-1;;;;;36568:21:0;;;;;;;;;36607:27;;36568:16;;36607:27;;;;;;;36064:578;;;:::o;51432:131::-;51541:14;51547:7;51541:5;:14::i;7554:191::-;7647:6;;;-1:-1:-1;;;;;7664:17:0;;;-1:-1:-1;;;;;;7664:17:0;;;;;;;7697:40;;7647:6;;;7664:17;7647:6;;7697:40;;7628:16;;7697:40;7554:191;;:::o;37076:315::-;37231:8;-1:-1:-1;;;;;37222:17:0;:5;-1:-1:-1;;;;;37222:17:0;;;37214:55;;;;-1:-1:-1;;;37214:55:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37280:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;:46;;-1:-1:-1;;37280:46:0;;;;;;;37342:41;;;;;37280:46;;37342:41;:::i;:::-;;;;;;;;37076:315;;;:::o;32150:::-;32307:28;32317:4;32323:2;32327:7;32307:9;:28::i;:::-;32354:48;32377:4;32383:2;32387:7;32396:5;32354:22;:48::i;:::-;32346:111;;;;-1:-1:-1;;;32346:111:0;;;;;;;:::i;51960:78::-;52010:13;:20;;-1:-1:-1;;52010:20:0;;;;;51960:78::o;47825:108::-;47885:13;47918:7;47911:14;;;;;:::i;2570:723::-;2626:13;2847:10;2843:53;;-1:-1:-1;2874:10:0;;;;;;;;;;;;-1:-1:-1;;;2874:10:0;;;;;;2843:53;2921:5;2906:12;2962:78;2969:9;;2962:78;;2995:8;;;;:::i;:::-;;-1:-1:-1;3018:10:0;;-1:-1:-1;3026:2:0;3018:10;;:::i;:::-;;;2962:78;;;3050:19;3082:6;3072:17;;;;;;-1:-1:-1;;;3072:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3072:17:0;;3050:39;;3100:154;3107:10;;3100:154;;3134:11;3144:1;3134:11;;:::i;:::-;;-1:-1:-1;3203:10:0;3211:2;3203:5;:10;:::i;:::-;3190:24;;:2;:24;:::i;:::-;3177:39;;3160:6;3167;3160:14;;;;;;-1:-1:-1;;;3160:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;3160:56:0;;;;;;;;-1:-1:-1;3231:11:0;3240:2;3231:11;;:::i;:::-;;;3100:154;;51575:88;51638:17;;;;:7;;:17;;;;;:::i;52065:136::-;52125:7;52184;52167:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;52157:36;;;;;;52150:43;;52065:136;;;:::o;52209:157::-;52292:4;52321:37;52340:5;52347:4;;52353;52321:18;:37::i;51779:84::-;51840:4;:15;51779:84::o;51671:100::-;51741:22;;;;:12;;:22;;;;;:::i;18716:157::-;-1:-1:-1;;;;;;18825:40:0;;-1:-1:-1;;;18825:40:0;18716:157;;;:::o;34099:321::-;34229:18;34235:2;34239:7;34229:5;:18::i;:::-;34280:54;34311:1;34315:2;34319:7;34328:5;34280:22;:54::i;:::-;34258:154;;;;-1:-1:-1;;;34258:154:0;;;;;;;:::i;42147:589::-;42291:45;42318:4;42324:2;42328:7;42291:26;:45::i;:::-;-1:-1:-1;;;;;42353:18:0;;42349:187;;42388:40;42420:7;42388:31;:40::i;:::-;42349:187;;;42458:2;-1:-1:-1;;;;;42450:10:0;:4;-1:-1:-1;;;;;42450:10:0;;42446:90;;42477:47;42510:4;42516:7;42477:32;:47::i;:::-;-1:-1:-1;;;;;42550:16:0;;42546:183;;42583:45;42620:7;42583:36;:45::i;:::-;42546:183;;;42656:4;-1:-1:-1;;;;;42650:10:0;:2;-1:-1:-1;;;;;42650:10:0;;42646:83;;42677:40;42705:2;42709:7;42677:27;:40::i;37956:799::-;38111:4;38132:15;:2;-1:-1:-1;;;;;38132:13:0;;:15::i;:::-;38128:620;;;38184:2;-1:-1:-1;;;;;38168:36:0;;38205:12;:10;:12::i;:::-;38219:4;38225:7;38234:5;38168:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38168:72:0;;;;;;;;-1:-1:-1;;38168:72:0;;;;;;;;;;;;:::i;:::-;;;38164:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38410:13:0;;38406:272;;38453:60;;-1:-1:-1;;;38453:60:0;;;;;;;:::i;38406:272::-;38628:6;38622:13;38613:6;38609:2;38605:15;38598:38;38164:529;-1:-1:-1;;;;;;38291:51:0;-1:-1:-1;;;38291:51:0;;-1:-1:-1;38284:58:0;;38128:620;-1:-1:-1;38732:4:0;37956:799;;;;;;:::o;945:190::-;1070:4;1123;1094:25;1107:5;1114:4;1094:12;:25::i;:::-;:33;;945:190;-1:-1:-1;;;;945:190:0:o;34756:382::-;-1:-1:-1;;;;;34836:16:0;;34828:61;;;;-1:-1:-1;;;34828:61:0;;;;;;;:::i;:::-;34909:16;34917:7;34909;:16::i;:::-;34908:17;34900:58;;;;-1:-1:-1;;;34900:58:0;;;;;;;:::i;:::-;34971:45;35000:1;35004:2;35008:7;34971:20;:45::i;:::-;-1:-1:-1;;;;;35029:13:0;;;;;;:9;:13;;;;;:18;;35046:1;;35029:13;:18;;35046:1;;35029:18;:::i;:::-;;;;-1:-1:-1;;35058:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35058:21:0;-1:-1:-1;;;;;35058:21:0;;;;;;;;35097:33;;35058:16;;;35097:33;;35058:16;;35097:33;34756:382;;:::o;43459:164::-;43563:10;:17;;43536:24;;;;:15;:24;;;;;:44;;;43591:24;;;;;;;;;;;;43459:164::o;44250:988::-;44516:22;44566:1;44541:22;44558:4;44541:16;:22::i;:::-;:26;;;;:::i;:::-;44578:18;44599:26;;;:17;:26;;;;;;44516:51;;-1:-1:-1;44732:28:0;;;44728:328;;-1:-1:-1;;;;;44799:18:0;;44777:19;44799:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44850:30;;;;;;:44;;;44967:30;;:17;:30;;;;;:43;;;44728:328;-1:-1:-1;45152:26:0;;;;:17;:26;;;;;;;;45145:33;;;-1:-1:-1;;;;;45196:18:0;;;;;:12;:18;;;;;:34;;;;;;;45189:41;44250:988::o;45533:1079::-;45811:10;:17;45786:22;;45811:21;;45831:1;;45811:21;:::i;:::-;45843:18;45864:24;;;:15;:24;;;;;;46237:10;:26;;45786:46;;-1:-1:-1;45864:24:0;;45786:46;;46237:26;;;;-1:-1:-1;;;46237:26:0;;;;;;;;;;;;;;;;;46215:48;;46301:11;46276:10;46287;46276:22;;;;;;-1:-1:-1;;;46276:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;46381:28;;;:15;:28;;;;;;;:41;;;46553:24;;;;;46546:31;46588:10;:16;;;;;-1:-1:-1;;;46588:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;45533:1079;;;;:::o;43037:221::-;43122:14;43139:20;43156:2;43139:16;:20::i;:::-;-1:-1:-1;;;;;43170:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;43215:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;43037:221:0:o;8572:387::-;8895:20;8943:8;;;8572:387::o;1497:701::-;1580:7;1623:4;1580:7;1638:523;1662:5;:12;1658:1;:16;1638:523;;;1696:20;1719:5;1725:1;1719:8;;;;;;-1:-1:-1;;;1719:8:0;;;;;;;;;;;;;;;1696:31;;1762:12;1746;:28;1742:408;;1916:12;1930;1899:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1889:55;;;;;;1874:70;;1742:408;;;2106:12;2120;2089:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2079:55;;;;;;2064:70;;1742:408;-1:-1:-1;1676:3:0;;;;:::i;:::-;;;;1638:523;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:409:1;;114:18;106:6;103:30;100:2;;;136:18;;:::i;:::-;174:58;220:2;197:17;;-1:-1:-1;;193:31:1;226:4;189:42;174:58;:::i;:::-;165:67;;255:6;248:5;241:21;295:3;286:6;281:3;277:16;274:25;271:2;;;312:1;309;302:12;271:2;361:6;356:3;349:4;342:5;338:16;325:43;415:1;408:4;399:6;392:5;388:18;384:29;377:40;90:333;;;;;:::o;428:175::-;498:20;;-1:-1:-1;;;;;547:31:1;;537:42;;527:2;;593:1;590;583:12;608:757;;721:3;714:4;706:6;702:17;698:27;688:2;;743:5;736;729:20;688:2;783:6;770:20;809:4;832:18;828:2;825:26;822:2;;;854:18;;:::i;:::-;901:2;897;893:11;924:27;947:2;943;939:11;924:27;:::i;:::-;985:15;;;1016:12;;;;1048:15;;;1082;;;1078:24;;1075:33;-1:-1:-1;1072:2:1;;;1125:5;1118;1111:20;1072:2;1151:5;1142:14;;1165:171;1179:2;1176:1;1173:9;1165:171;;;1236:25;1257:3;1236:25;:::i;:::-;1224:38;;1197:1;1190:9;;;;;1282:12;;;;1314;;1165:171;;;-1:-1:-1;1354:5:1;678:687;-1:-1:-1;;;;;;;678:687:1:o;1370:162::-;1437:20;;1493:13;;1486:21;1476:32;;1466:2;;1522:1;1519;1512:12;1537:198;;1649:2;1637:9;1628:7;1624:23;1620:32;1617:2;;;1670:6;1662;1655:22;1617:2;1698:31;1719:9;1698:31;:::i;1740:274::-;;;1869:2;1857:9;1848:7;1844:23;1840:32;1837:2;;;1890:6;1882;1875:22;1837:2;1918:31;1939:9;1918:31;:::i;:::-;1908:41;;1968:40;2004:2;1993:9;1989:18;1968:40;:::i;:::-;1958:50;;1827:187;;;;;:::o;2019:342::-;;;;2165:2;2153:9;2144:7;2140:23;2136:32;2133:2;;;2186:6;2178;2171:22;2133:2;2214:31;2235:9;2214:31;:::i;:::-;2204:41;;2264:40;2300:2;2289:9;2285:18;2264:40;:::i;:::-;2254:50;;2351:2;2340:9;2336:18;2323:32;2313:42;;2123:238;;;;;:::o;2366:702::-;;;;;2538:3;2526:9;2517:7;2513:23;2509:33;2506:2;;;2560:6;2552;2545:22;2506:2;2588:31;2609:9;2588:31;:::i;:::-;2578:41;;2638:40;2674:2;2663:9;2659:18;2638:40;:::i;:::-;2628:50;;2725:2;2714:9;2710:18;2697:32;2687:42;;2780:2;2769:9;2765:18;2752:32;2807:18;2799:6;2796:30;2793:2;;;2844:6;2836;2829:22;2793:2;2872:22;;2925:4;2917:13;;2913:27;-1:-1:-1;2903:2:1;;2959:6;2951;2944:22;2903:2;2987:75;3054:7;3049:2;3036:16;3031:2;3027;3023:11;2987:75;:::i;:::-;2977:85;;;2496:572;;;;;;;:::o;3073:268::-;;;3199:2;3187:9;3178:7;3174:23;3170:32;3167:2;;;3220:6;3212;3205:22;3167:2;3248:31;3269:9;3248:31;:::i;:::-;3238:41;;3298:37;3331:2;3320:9;3316:18;3298:37;:::i;3346:266::-;;;3475:2;3463:9;3454:7;3450:23;3446:32;3443:2;;;3496:6;3488;3481:22;3443:2;3524:31;3545:9;3524:31;:::i;:::-;3514:41;3602:2;3587:18;;;;3574:32;;-1:-1:-1;;;3433:179:1:o;3617:810::-;;;;;3798:2;3786:9;3777:7;3773:23;3769:32;3766:2;;;3819:6;3811;3804:22;3766:2;3847:31;3868:9;3847:31;:::i;:::-;3837:41;;3925:2;3914:9;3910:18;3897:32;3887:42;;3980:2;3969:9;3965:18;3952:32;4003:18;4044:2;4036:6;4033:14;4030:2;;;4065:6;4057;4050:22;4030:2;4108:6;4097:9;4093:22;4083:32;;4153:7;4146:4;4142:2;4138:13;4134:27;4124:2;;4180:6;4172;4165:22;4124:2;4225;4212:16;4251:2;4243:6;4240:14;4237:2;;;4272:6;4264;4257:22;4237:2;4331:7;4326:2;4320;4312:6;4308:15;4304:2;4300:24;4296:33;4293:46;4290:2;;;4357:6;4349;4342:22;4290:2;3756:671;;;;-1:-1:-1;;4393:2:1;4385:11;;-1:-1:-1;;;3756:671:1:o;4432:374::-;;4569:2;4557:9;4548:7;4544:23;4540:32;4537:2;;;4590:6;4582;4575:22;4537:2;4635:9;4622:23;4668:18;4660:6;4657:30;4654:2;;;4705:6;4697;4690:22;4654:2;4733:67;4792:7;4783:6;4772:9;4768:22;4733:67;:::i;4811:442::-;;;4965:2;4953:9;4944:7;4940:23;4936:32;4933:2;;;4986:6;4978;4971:22;4933:2;5031:9;5018:23;5064:18;5056:6;5053:30;5050:2;;;5101:6;5093;5086:22;5050:2;5129:67;5188:7;5179:6;5168:9;5164:22;5129:67;:::i;:::-;5119:77;5243:2;5228:18;;;;5215:32;;-1:-1:-1;;;;4923:330:1:o;5258:192::-;;5367:2;5355:9;5346:7;5342:23;5338:32;5335:2;;;5388:6;5380;5373:22;5335:2;5416:28;5434:9;5416:28;:::i;5455:190::-;;5567:2;5555:9;5546:7;5542:23;5538:32;5535:2;;;5588:6;5580;5573:22;5535:2;-1:-1:-1;5616:23:1;;5525:120;-1:-1:-1;5525:120:1:o;5650:257::-;;5761:2;5749:9;5740:7;5736:23;5732:32;5729:2;;;5782:6;5774;5767:22;5729:2;5826:9;5813:23;5845:32;5871:5;5845:32;:::i;5912:261::-;;6034:2;6022:9;6013:7;6009:23;6005:32;6002:2;;;6055:6;6047;6040:22;6002:2;6092:9;6086:16;6111:32;6137:5;6111:32;:::i;6178:482::-;;6300:2;6288:9;6279:7;6275:23;6271:32;6268:2;;;6321:6;6313;6306:22;6268:2;6366:9;6353:23;6399:18;6391:6;6388:30;6385:2;;;6436:6;6428;6421:22;6385:2;6464:22;;6517:4;6509:13;;6505:27;-1:-1:-1;6495:2:1;;6551:6;6543;6536:22;6495:2;6579:75;6646:7;6641:2;6628:16;6623:2;6619;6615:11;6579:75;:::i;6860:259::-;;6941:5;6935:12;6968:6;6963:3;6956:19;6984:63;7040:6;7033:4;7028:3;7024:14;7017:4;7010:5;7006:16;6984:63;:::i;:::-;7101:2;7080:15;-1:-1:-1;;7076:29:1;7067:39;;;;7108:4;7063:50;;6911:208;-1:-1:-1;;6911:208:1:o;7124:229::-;7273:2;7269:15;;;;-1:-1:-1;;7265:53:1;7253:66;;7344:2;7335:12;;7243:110::o;7358:247::-;7515:19;;;7559:2;7550:12;;7543:28;7596:2;7587:12;;7505:100::o;7610:1532::-;;7872:6;7866:13;7898:4;7911:51;7955:6;7950:3;7945:2;7937:6;7933:15;7911:51;:::i;:::-;8025:13;;7984:16;;;;8047:55;8025:13;7984:16;8069:15;;;8047:55;:::i;:::-;8193:13;;8124:20;;;8164:3;;8270:1;8255:17;;8291:1;8327:18;;;;8354:2;;8432:4;8422:8;8418:19;8406:31;;8354:2;8495;8485:8;8482:16;8462:18;8459:40;8456:2;;;-1:-1:-1;;;8522:33:1;;8578:4;8575:1;8568:15;8608:4;8529:3;8596:17;8456:2;8639:18;8666:110;;;;8790:1;8785:332;;;;8632:485;;8666:110;-1:-1:-1;;8701:24:1;;8687:39;;8746:20;;;;-1:-1:-1;8666:110:1;;8785:332;8821:39;8853:6;8821:39;:::i;:::-;8882:3;8898:169;8912:8;8909:1;8906:15;8898:169;;;8994:14;;8979:13;;;8972:37;9037:16;;;;8929:10;;8898:169;;;8902:3;;9098:8;9091:5;9087:20;9080:27;;8632:485;-1:-1:-1;9133:3:1;;7842:1300;-1:-1:-1;;;;;;;;;;;7842:1300:1:o;9147:203::-;-1:-1:-1;;;;;9311:32:1;;;;9293:51;;9281:2;9266:18;;9248:102::o;9355:490::-;-1:-1:-1;;;;;9624:15:1;;;9606:34;;9676:15;;9671:2;9656:18;;9649:43;9723:2;9708:18;;9701:34;;;9771:3;9766:2;9751:18;;9744:31;;;9355:490;;9792:47;;9819:19;;9811:6;9792:47;:::i;:::-;9784:55;9558:287;-1:-1:-1;;;;;;9558:287:1:o;9850:635::-;10021:2;10073:21;;;10143:13;;10046:18;;;10165:22;;;9850:635;;10021:2;10244:15;;;;10218:2;10203:18;;;9850:635;10290:169;10304:6;10301:1;10298:13;10290:169;;;10365:13;;10353:26;;10434:15;;;;10399:12;;;;10326:1;10319:9;10290:169;;;-1:-1:-1;10476:3:1;;10001:484;-1:-1:-1;;;;;;10001:484:1:o;10490:187::-;10655:14;;10648:22;10630:41;;10618:2;10603:18;;10585:92::o;10682:177::-;10828:25;;;10816:2;10801:18;;10783:76::o;10864:221::-;;11013:2;11002:9;10995:21;11033:46;11075:2;11064:9;11060:18;11052:6;11033:46;:::i;11090:351::-;11292:2;11274:21;;;11331:2;11311:18;;;11304:30;11370:29;11365:2;11350:18;;11343:57;11432:2;11417:18;;11264:177::o;11446:407::-;11648:2;11630:21;;;11687:2;11667:18;;;11660:30;11726:34;11721:2;11706:18;;11699:62;-1:-1:-1;;;11792:2:1;11777:18;;11770:41;11843:3;11828:19;;11620:233::o;11858:414::-;12060:2;12042:21;;;12099:2;12079:18;;;12072:30;12138:34;12133:2;12118:18;;12111:62;-1:-1:-1;;;12204:2:1;12189:18;;12182:48;12262:3;12247:19;;12032:240::o;12277:402::-;12479:2;12461:21;;;12518:2;12498:18;;;12491:30;12557:34;12552:2;12537:18;;12530:62;-1:-1:-1;;;12623:2:1;12608:18;;12601:36;12669:3;12654:19;;12451:228::o;12684:352::-;12886:2;12868:21;;;12925:2;12905:18;;;12898:30;12964;12959:2;12944:18;;12937:58;13027:2;13012:18;;12858:178::o;13041:350::-;13243:2;13225:21;;;13282:2;13262:18;;;13255:30;13321:28;13316:2;13301:18;;13294:56;13382:2;13367:18;;13215:176::o;13396:400::-;13598:2;13580:21;;;13637:2;13617:18;;;13610:30;13676:34;13671:2;13656:18;;13649:62;-1:-1:-1;;;13742:2:1;13727:18;;13720:34;13786:3;13771:19;;13570:226::o;13801:349::-;14003:2;13985:21;;;14042:2;14022:18;;;14015:30;14081:27;14076:2;14061:18;;14054:55;14141:2;14126:18;;13975:175::o;14155:408::-;14357:2;14339:21;;;14396:2;14376:18;;;14369:30;14435:34;14430:2;14415:18;;14408:62;-1:-1:-1;;;14501:2:1;14486:18;;14479:42;14553:3;14538:19;;14329:234::o;14568:347::-;14770:2;14752:21;;;14809:2;14789:18;;;14782:30;14848:25;14843:2;14828:18;;14821:53;14906:2;14891:18;;14742:173::o;14920:420::-;15122:2;15104:21;;;15161:2;15141:18;;;15134:30;15200:34;15195:2;15180:18;;15173:62;15271:26;15266:2;15251:18;;15244:54;15330:3;15315:19;;15094:246::o;15345:406::-;15547:2;15529:21;;;15586:2;15566:18;;;15559:30;15625:34;15620:2;15605:18;;15598:62;-1:-1:-1;;;15691:2:1;15676:18;;15669:40;15741:3;15726:19;;15519:232::o;15756:405::-;15958:2;15940:21;;;15997:2;15977:18;;;15970:30;16036:34;16031:2;16016:18;;16009:62;-1:-1:-1;;;16102:2:1;16087:18;;16080:39;16151:3;16136:19;;15930:231::o;16166:352::-;16368:2;16350:21;;;16407:2;16387:18;;;16380:30;16446;16441:2;16426:18;;16419:58;16509:2;16494:18;;16340:178::o;16523:356::-;16725:2;16707:21;;;16744:18;;;16737:30;16803:34;16798:2;16783:18;;16776:62;16870:2;16855:18;;16697:182::o;16884:408::-;17086:2;17068:21;;;17125:2;17105:18;;;17098:30;17164:34;17159:2;17144:18;;17137:62;-1:-1:-1;;;17230:2:1;17215:18;;17208:42;17282:3;17267:19;;17058:234::o;17297:356::-;17499:2;17481:21;;;17518:18;;;17511:30;17577:34;17572:2;17557:18;;17550:62;17644:2;17629:18;;17471:182::o;17658:337::-;17860:2;17842:21;;;17899:2;17879:18;;;17872:30;-1:-1:-1;;;17933:2:1;17918:18;;17911:43;17986:2;17971:18;;17832:163::o;18000:344::-;18202:2;18184:21;;;18241:2;18221:18;;;18214:30;-1:-1:-1;;;18275:2:1;18260:18;;18253:50;18335:2;18320:18;;18174:170::o;18349:405::-;18551:2;18533:21;;;18590:2;18570:18;;;18563:30;18629:34;18624:2;18609:18;;18602:62;-1:-1:-1;;;18695:2:1;18680:18;;18673:39;18744:3;18729:19;;18523:231::o;18759:411::-;18961:2;18943:21;;;19000:2;18980:18;;;18973:30;19039:34;19034:2;19019:18;;19012:62;-1:-1:-1;;;19105:2:1;19090:18;;19083:45;19160:3;19145:19;;18933:237::o;19175:348::-;19377:2;19359:21;;;19416:2;19396:18;;;19389:30;19455:26;19450:2;19435:18;;19428:54;19514:2;19499:18;;19349:174::o;19528:345::-;19730:2;19712:21;;;19769:2;19749:18;;;19742:30;-1:-1:-1;;;19803:2:1;19788:18;;19781:51;19864:2;19849:18;;19702:171::o;19878:397::-;20080:2;20062:21;;;20119:2;20099:18;;;20092:30;20158:34;20153:2;20138:18;;20131:62;-1:-1:-1;;;20224:2:1;20209:18;;20202:31;20265:3;20250:19;;20052:223::o;20280:336::-;20482:2;20464:21;;;20521:2;20501:18;;;20494:30;-1:-1:-1;;;20555:2:1;20540:18;;20533:42;20607:2;20592:18;;20454:162::o;20621:345::-;20823:2;20805:21;;;20862:2;20842:18;;;20835:30;-1:-1:-1;;;20896:2:1;20881:18;;20874:51;20957:2;20942:18;;20795:171::o;20971:341::-;21173:2;21155:21;;;21212:2;21192:18;;;21185:30;-1:-1:-1;;;21246:2:1;21231:18;;21224:47;21303:2;21288:18;;21145:167::o;21317:413::-;21519:2;21501:21;;;21558:2;21538:18;;;21531:30;21597:34;21592:2;21577:18;;21570:62;-1:-1:-1;;;21663:2:1;21648:18;;21641:47;21720:3;21705:19;;21491:239::o;21735:408::-;21937:2;21919:21;;;21976:2;21956:18;;;21949:30;22015:34;22010:2;21995:18;;21988:62;-1:-1:-1;;;22081:2:1;22066:18;;22059:42;22133:3;22118:19;;21909:234::o;22148:352::-;22350:2;22332:21;;;22389:2;22369:18;;;22362:30;22428;22423:2;22408:18;;22401:58;22491:2;22476:18;;22322:178::o;22505:399::-;22707:2;22689:21;;;22746:2;22726:18;;;22719:30;22785:34;22780:2;22765:18;;22758:62;-1:-1:-1;;;22851:2:1;22836:18;;22829:33;22894:3;22879:19;;22679:225::o;23091:251::-;23161:2;23155:9;23191:17;;;23238:18;23223:34;;23259:22;;;23220:62;23217:2;;;23285:18;;:::i;:::-;23321:2;23314:22;23135:207;;-1:-1:-1;23135:207:1:o;23347:129::-;;23415:17;;;23465:4;23449:21;;;23405:71::o;23481:128::-;;23552:1;23548:6;23545:1;23542:13;23539:2;;;23558:18;;:::i;:::-;-1:-1:-1;23594:9:1;;23529:80::o;23614:120::-;;23680:1;23670:2;;23685:18;;:::i;:::-;-1:-1:-1;23719:9:1;;23660:74::o;23739:168::-;;23845:1;23841;23837:6;23833:14;23830:1;23827:21;23822:1;23815:9;23808:17;23804:45;23801:2;;;23852:18;;:::i;:::-;-1:-1:-1;23892:9:1;;23791:116::o;23912:125::-;;23980:1;23977;23974:8;23971:2;;;23985:18;;:::i;:::-;-1:-1:-1;24022:9:1;;23961:76::o;24042:258::-;24114:1;24124:113;24138:6;24135:1;24132:13;24124:113;;;24214:11;;;24208:18;24195:11;;;24188:39;24160:2;24153:10;24124:113;;;24255:6;24252:1;24249:13;24246:2;;;-1:-1:-1;;24290:1:1;24272:16;;24265:27;24095:205::o;24305:380::-;24390:1;24380:12;;24437:1;24427:12;;;24448:2;;24502:4;24494:6;24490:17;24480:27;;24448:2;24555;24547:6;24544:14;24524:18;24521:38;24518:2;;;24601:10;24596:3;24592:20;24589:1;24582:31;24636:4;24633:1;24626:15;24664:4;24661:1;24654:15;24518:2;;24360:325;;;:::o;24690:135::-;;-1:-1:-1;;24750:17:1;;24747:2;;;24770:18;;:::i;:::-;-1:-1:-1;24817:1:1;24806:13;;24737:88::o;24830:112::-;;24888:1;24878:2;;24893:18;;:::i;:::-;-1:-1:-1;24927:9:1;;24868:74::o;24947:127::-;25008:10;25003:3;24999:20;24996:1;24989:31;25039:4;25036:1;25029:15;25063:4;25060:1;25053:15;25079:127;25140:10;25135:3;25131:20;25128:1;25121:31;25171:4;25168:1;25161:15;25195:4;25192:1;25185:15;25211:127;25272:10;25267:3;25263:20;25260:1;25253:31;25303:4;25300:1;25293:15;25327:4;25324:1;25317:15;25343:133;-1:-1:-1;;;;;;25419:32:1;;25409:43;;25399:2;;25466:1;25463;25456:12

Swarm Source

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