ETH Price: $3,273.03 (+0.79%)
Gas: 2 Gwei

Token

Hacktivists Genesis (USB)
 

Overview

Max Total Supply

83 USB

Holders

81

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 USB
0x34dA4Cb4A89e245aE45Ec5701C7D6D76bD97d1D7
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:
Hacktivists

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

    /**
     * @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.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.6.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.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
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 Merkle 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 = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/Hacktivists.sol


pragma solidity ^0.8.0;













error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error UnableDetermineTokenOwner();
error URIQueryForNonexistentToken();



contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal _currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        if (index >= totalSupply()) revert TokenIndexOutOfBounds();
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        assert(false);
        return tokenIdsIdx;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken();

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

        revert UnableDetermineTokenOwner();
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) revert ApprovalCallerNotOwnerNorApproved();

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) revert TransferToNonERC721ReceiverImplementer();
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < _currentIndex;
    }

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }

                updatedIndex++;
            }

            _currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

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

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

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

contract Hacktivists is ERC721A, Ownable{
    uint256 public constant MAX_SUPPLY = 444;
    uint256 public constant MAX_WHITELIST_TOTAL_SUPPLY = 420;
    uint256 public constant MAX_TEAM_TOTAL_SUPPLY = 24;

    //Max allowed mints
    uint256 public constant MAX_MINT = 1;

    //Prices
    uint256 public constant PUBLIC_SALE_PRICE = .1 ether;
    uint256 public constant WHITELIST_SALE_PRICE = .1 ether;

    //Whitelist
    uint256 public curTeamTotalSupply = 0;
    uint256 public curWhitelistTotalSupply = 0;

    string public baseTokenUri;

    //Stop / Start sales
    bool public publicSale;
    bool public whiteListSale;
    bool public teamSale;

    bytes32 private merkleRoot;
    bytes32 private merkleRootWL;

    mapping(address => uint256) public totalWhitelistMint;
    mapping(address => uint256) public totalTeamMint;

    constructor() ERC721A("Hacktivists Genesis", "USB"){
        baseTokenUri = "https://ipfs.io/ipfs/QmXHh1DGiGsuUoNr3VLKxdhFXoptPqHFM1ikkTFvv6Ej8q/0.json";
        merkleRoot = 0x1ece9bd3f6f4bff2112a02111464594168580b4a920f73b843a035f92de6905a;
        merkleRootWL = 0x15afae7c68498f21167015858d336625b74aaa6191d2f2389c193471936ddd88;
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "Can only be called by a user");
        _;
    }

    function mint(uint256 _quantity) external payable callerIsUser{
        require(publicSale, "Public Minting is not active");
        require((totalSupply() + _quantity) <= MAX_SUPPLY, "NFTs are sold out!");
        require(msg.value >= (PUBLIC_SALE_PRICE * _quantity), "You need to spend more ETH!");
        _safeMint(msg.sender, _quantity);
    }

    function whitelistMint(bytes32[] memory _merkleProof, uint256 _quantity) external payable callerIsUser{
        require(whiteListSale, "Whitelist Minting is not active");
        require((totalSupply() + _quantity) <= MAX_SUPPLY, "NFTs are sold out!");
        require((totalWhitelistMint[msg.sender] + _quantity) <= MAX_MINT, "Only 1 mint per whitelist allowed!");
        require(msg.value >= (WHITELIST_SALE_PRICE * _quantity), "You need to spend more ETH!");
        require(curWhitelistTotalSupply + _quantity <= MAX_WHITELIST_TOTAL_SUPPLY, "All whitelist NFTs are sold out!");
        //Check Merkle Proof
        bytes32 sender = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, merkleRootWL, sender), "You are not whitelisted!");
        totalWhitelistMint[msg.sender] += _quantity;
        curWhitelistTotalSupply = curWhitelistTotalSupply + _quantity;
        _safeMint(msg.sender, _quantity);
    }


    function teamMint(bytes32[] memory _merkleProof, uint256 _quantity) external payable callerIsUser{
        require(teamSale, "Team Minting is not active!");
        require((totalSupply() + _quantity) <= MAX_SUPPLY, "NFTs are sold out!");
        require((totalTeamMint[msg.sender] + _quantity)  <= MAX_MINT , "Only 1 mint per team member allowed!");
        require(curTeamTotalSupply + _quantity <= MAX_TEAM_TOTAL_SUPPLY, "All team NFTs are sold out!");
        //Check Merkle Proof
        bytes32 sender = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, merkleRoot, sender), "You are not a member of the team!");
        totalTeamMint[msg.sender] += _quantity;
        curTeamTotalSupply = curTeamTotalSupply + _quantity;
        _safeMint(msg.sender, _quantity);
    }


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

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

    function setTokenUri(string memory _baseTokenUri) external onlyOwner{
        baseTokenUri = _baseTokenUri;
    }

    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner{
        merkleRoot = _merkleRoot;
    }

     function setMerkleRootWL(bytes32 _merkleRoot) external onlyOwner{
        merkleRootWL = _merkleRoot;
    }


    function getMerkleRoot() external view returns (bytes32){
        return merkleRoot;
    }
    function getMerkleRootWL() external view returns (bytes32){
        return merkleRootWL;
    }


    function toggleTeamSale() external onlyOwner{
        teamSale = !teamSale;
    }

    function toggleWhiteListSale() external onlyOwner{
        whiteListSale = !whiteListSale;
    }

    function togglePublicSale() external onlyOwner{
        publicSale = !publicSale;
    }

    function withdraw() external onlyOwner{
        //Community Wallet Address:
        (bool success, ) = 0xb028B642cBB636184358229CE1797591827885e6.call{value: address(this).balance * 950/1000}("");
        require(success, "Something went wrong with the withdraw function");
        //Dev Wallet
        (success, ) = 0x02047E04a502A5e1CFA1CB142ebEd8562D2AeeA4.call{value: address(this).balance}("");
        require(success, "Something went wrong with the withdraw function");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"UnableDetermineTokenOwner","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TEAM_TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WHITELIST_TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"curTeamTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"curWhitelistTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMerkleRootWL","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRootWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"name":"setTokenUri","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":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"teamSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleTeamSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhiteListSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalTeamMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalWhitelistMint","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":"whiteListSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600060085560006009553480156200001b57600080fd5b50604080518082018252601381527f4861636b746976697374732047656e65736973000000000000000000000000006020808301918252835180850190945260038452622aa9a160e91b9084015281519192916200007c9160019162000184565b5080516200009290600290602084019062000184565b505050620000af620000a96200012e60201b60201c565b62000132565b6040518060800160405280604a815260200162002634604a91398051620000df91600a9160209091019062000184565b507f1ece9bd3f6f4bff2112a02111464594168580b4a920f73b843a035f92de6905a600c557f15afae7c68498f21167015858d336625b74aaa6191d2f2389c193471936ddd88600d5562000267565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000192906200022a565b90600052602060002090601f016020900481019282620001b6576000855562000201565b82601f10620001d157805160ff191683800117855562000201565b8280016001018555821562000201579182015b8281111562000201578251825591602001919060010190620001e4565b506200020f92915062000213565b5090565b5b808211156200020f576000815560010162000214565b600181811c908216806200023f57607f821691505b602082108114156200026157634e487b7160e01b600052602260045260246000fd5b50919050565b6123bd80620002776000396000f3fe6080604052600436106102725760003560e01c80636352211e1161014f578063a0e94c80116100c1578063cbd0ab001161007a578063cbd0ab00146106db578063d62c26ed146106f1578063e222c7f914610706578063e985e9c51461071b578063f0292a0314610764578063f2fde38b1461077957600080fd5b8063a0e94c8014610645578063a22cb4651461065b578063ad3e31b71461067b578063b88d4fde1461069b578063bc912e1a1461033e578063c87b56dd146106bb57600080fd5b806386a173ee1161011357806386a173ee146105ab5780638bb64a8c146105ca5780638da5cb5b146105df57806395d89b41146105fd5780639f214ba714610612578063a0712d681461063257600080fd5b80636352211e1461052157806370a0823114610541578063715018a6146105615780637a0101a2146105765780637cb647591461058b57600080fd5b8063289eff46116101e85780633ccfd60b116101ac5780633ccfd60b1461047457806342842e0e14610489578063446e93b6146104a957806349590657146104d65780634b330719146104eb5780634f6ccce71461050157600080fd5b8063289eff46146103fc5780632904e6d9146104115780632f745c591461042457806332cb6b0c1461044457806333bc1c5c1461045a57600080fd5b806307e89ec01161023a57806307e89ec01461033e578063081812fc1461035a578063095ea7b3146103925780630db66909146103b257806318160ddd146103c757806323b872dd146103dc57600080fd5b806301ffc9a7146102775780630345e3cb146102ac57806304f3e03a146102e75780630675b7c6146102fc57806306fdde031461031c575b600080fd5b34801561028357600080fd5b50610297610292366004612032565b610799565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102d96102c7366004611df3565b600e6020526000908152604090205481565b6040519081526020016102a3565b6102fa6102f5366004611f66565b610806565b005b34801561030857600080fd5b506102fa61031736600461206c565b610a71565b34801561032857600080fd5b50610331610ab2565b6040516102a3919061213f565b34801561034a57600080fd5b506102d967016345785d8a000081565b34801561036657600080fd5b5061037a610375366004612019565b610b44565b6040516001600160a01b0390911681526020016102a3565b34801561039e57600080fd5b506102fa6103ad366004611f3c565b610b8a565b3480156103be57600080fd5b50600d546102d9565b3480156103d357600080fd5b506000546102d9565b3480156103e857600080fd5b506102fa6103f7366004611e48565b610c13565b34801561040857600080fd5b506102fa610c1e565b6102fa61041f366004611f66565b610c67565b34801561043057600080fd5b506102d961043f366004611f3c565b610f1a565b34801561045057600080fd5b506102d96101bc81565b34801561046657600080fd5b50600b546102979060ff1681565b34801561048057600080fd5b506102fa610fef565b34801561049557600080fd5b506102fa6104a4366004611e48565b61112a565b3480156104b557600080fd5b506102d96104c4366004611df3565b600f6020526000908152604090205481565b3480156104e257600080fd5b50600c546102d9565b3480156104f757600080fd5b506102d96101a481565b34801561050d57600080fd5b506102d961051c366004612019565b611145565b34801561052d57600080fd5b5061037a61053c366004612019565b61116c565b34801561054d57600080fd5b506102d961055c366004611df3565b61117e565b34801561056d57600080fd5b506102fa6111cc565b34801561058257600080fd5b50610331611202565b34801561059757600080fd5b506102fa6105a6366004612019565b611290565b3480156105b757600080fd5b50600b5461029790610100900460ff1681565b3480156105d657600080fd5b506102fa6112bf565b3480156105eb57600080fd5b506007546001600160a01b031661037a565b34801561060957600080fd5b50610331611306565b34801561061e57600080fd5b50600b546102979062010000900460ff1681565b6102fa610640366004612019565b611315565b34801561065157600080fd5b506102d960095481565b34801561066757600080fd5b506102fa610676366004611f00565b611426565b34801561068757600080fd5b506102fa610696366004612019565b6114bc565b3480156106a757600080fd5b506102fa6106b6366004611e84565b6114eb565b3480156106c757600080fd5b506103316106d6366004612019565b611525565b3480156106e757600080fd5b506102d960085481565b3480156106fd57600080fd5b506102d9601881565b34801561071257600080fd5b506102fa61159e565b34801561072757600080fd5b50610297610736366004611e15565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561077057600080fd5b506102d9600181565b34801561078557600080fd5b506102fa610794366004611df3565b6115dc565b60006001600160e01b031982166380ac58cd60e01b14806107ca57506001600160e01b03198216635b5e139f60e01b145b806107e557506001600160e01b0319821663780e9d6360e01b145b8061080057506301ffc9a760e01b6001600160e01b03198316145b92915050565b32331461082e5760405162461bcd60e51b815260040161082590612152565b60405180910390fd5b600b5462010000900460ff166108865760405162461bcd60e51b815260206004820152601b60248201527f5465616d204d696e74696e67206973206e6f74206163746976652100000000006044820152606401610825565b6101bc8161089360005490565b61089d919061226a565b11156108bb5760405162461bcd60e51b815260040161082590612189565b336000908152600f60205260409020546001906108d990839061226a565b11156109335760405162461bcd60e51b8152602060048201526024808201527f4f6e6c792031206d696e7420706572207465616d206d656d62657220616c6c6f6044820152637765642160e01b6064820152608401610825565b601881600854610943919061226a565b11156109915760405162461bcd60e51b815260206004820152601b60248201527f416c6c207465616d204e4654732061726520736f6c64206f75742100000000006044820152606401610825565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506109d783600c5483611674565b610a2d5760405162461bcd60e51b815260206004820152602160248201527f596f7520617265206e6f742061206d656d626572206f6620746865207465616d6044820152602160f81b6064820152608401610825565b336000908152600f602052604081208054849290610a4c90849061226a565b9091555050600854610a5f90839061226a565b600855610a6c338361168a565b505050565b6007546001600160a01b03163314610a9b5760405162461bcd60e51b8152600401610825906121b5565b8051610aae90600a906020840190611cef565b5050565b606060018054610ac1906122c3565b80601f0160208091040260200160405190810160405280929190818152602001828054610aed906122c3565b8015610b3a5780601f10610b0f57610100808354040283529160200191610b3a565b820191906000526020600020905b815481529060010190602001808311610b1d57829003601f168201915b5050505050905090565b6000610b51826000541190565b610b6e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610b958261116c565b9050806001600160a01b0316836001600160a01b03161415610bca5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610bea5750610be88133610736565b155b15610c08576040516367d9dca160e11b815260040160405180910390fd5b610a6c8383836116a4565b610a6c838383611700565b6007546001600160a01b03163314610c485760405162461bcd60e51b8152600401610825906121b5565b600b805462ff0000198116620100009182900460ff1615909102179055565b323314610c865760405162461bcd60e51b815260040161082590612152565b600b54610100900460ff16610cdd5760405162461bcd60e51b815260206004820152601f60248201527f57686974656c697374204d696e74696e67206973206e6f7420616374697665006044820152606401610825565b6101bc81610cea60005490565b610cf4919061226a565b1115610d125760405162461bcd60e51b815260040161082590612189565b336000908152600e6020526040902054600190610d3090839061226a565b1115610d895760405162461bcd60e51b815260206004820152602260248201527f4f6e6c792031206d696e74207065722077686974656c69737420616c6c6f7765604482015261642160f01b6064820152608401610825565b610d9b8167016345785d8a00006122a4565b341015610dea5760405162461bcd60e51b815260206004820152601b60248201527f596f75206e65656420746f207370656e64206d6f7265204554482100000000006044820152606401610825565b6101a481600954610dfb919061226a565b1115610e495760405162461bcd60e51b815260206004820181905260248201527f416c6c2077686974656c697374204e4654732061726520736f6c64206f7574216044820152606401610825565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610e8f83600d5483611674565b610edb5760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f742077686974656c69737465642100000000000000006044820152606401610825565b336000908152600e602052604081208054849290610efa90849061226a565b9091555050600954610f0d90839061226a565b600955610a6c338361168a565b6000610f258361117e565b8210610f44576040516306ed618760e11b815260040160405180910390fd5b600080549080805b83811015610fdd576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610f9f57805192505b876001600160a01b0316836001600160a01b03161415610fd45786841415610fcd5750935061080092505050565b6001909301925b50600101610f4c565b50610fe6612319565b50949350505050565b6007546001600160a01b031633146110195760405162461bcd60e51b8152600401610825906121b5565b600073b028b642cbb636184358229ce1797591827885e66103e861103f476103b66122a4565b6110499190612282565b604051600081818185875af1925050503d8060008114611085576040519150601f19603f3d011682016040523d82523d6000602084013e61108a565b606091505b50509050806110ab5760405162461bcd60e51b8152600401610825906121ea565b6040517302047e04a502a5e1cfa1cb142ebed8562d2aeea4904790600081818185875af1925050503d80600081146110ff576040519150601f19603f3d011682016040523d82523d6000602084013e611104565b606091505b505080915050806111275760405162461bcd60e51b8152600401610825906121ea565b50565b610a6c838383604051806020016040528060008152506114eb565b600080548210611168576040516329c8c00760e21b815260040160405180910390fd5b5090565b60006111778261191f565b5192915050565b60006001600160a01b0382166111a7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146111f65760405162461bcd60e51b8152600401610825906121b5565b61120060006119b4565b565b600a805461120f906122c3565b80601f016020809104026020016040519081016040528092919081815260200182805461123b906122c3565b80156112885780601f1061125d57610100808354040283529160200191611288565b820191906000526020600020905b81548152906001019060200180831161126b57829003601f168201915b505050505081565b6007546001600160a01b031633146112ba5760405162461bcd60e51b8152600401610825906121b5565b600c55565b6007546001600160a01b031633146112e95760405162461bcd60e51b8152600401610825906121b5565b600b805461ff001981166101009182900460ff1615909102179055565b606060028054610ac1906122c3565b3233146113345760405162461bcd60e51b815260040161082590612152565b600b5460ff166113865760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963204d696e74696e67206973206e6f7420616374697665000000006044820152606401610825565b6101bc8161139360005490565b61139d919061226a565b11156113bb5760405162461bcd60e51b815260040161082590612189565b6113cd8167016345785d8a00006122a4565b34101561141c5760405162461bcd60e51b815260206004820152601b60248201527f596f75206e65656420746f207370656e64206d6f7265204554482100000000006044820152606401610825565b611127338261168a565b6001600160a01b0382163314156114505760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146114e65760405162461bcd60e51b8152600401610825906121b5565b600d55565b6114f6848484611700565b61150284848484611a06565b61151f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611532826000541190565b6115965760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610825565b610800611b15565b6007546001600160a01b031633146115c85760405162461bcd60e51b8152600401610825906121b5565b600b805460ff19811660ff90911615179055565b6007546001600160a01b031633146116065760405162461bcd60e51b8152600401610825906121b5565b6001600160a01b03811661166b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610825565b611127816119b4565b6000826116818584611b24565b14949350505050565b610aae828260405180602001604052806000815250611b98565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061170b8261191f565b80519091506000906001600160a01b0316336001600160a01b0316148061174257503361173784610b44565b6001600160a01b0316145b80611754575081516117549033610736565b90508061177457604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146117a95760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166117d057604051633a954ecd60e21b815260040160405180910390fd5b6117e060008484600001516116a4565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166118d557611888816000541190565b156118d5578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080518082019091526000808252602082015261193e826000541190565b61195b57604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156119aa579392505050565b506000190161195d565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611b0957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a4a903390899088908890600401612102565b602060405180830381600087803b158015611a6457600080fd5b505af1925050508015611a94575060408051601f3d908101601f19168201909252611a919181019061204f565b60015b611aef573d808015611ac2576040519150601f19603f3d011682016040523d82523d6000602084013e611ac7565b606091505b508051611ae7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b0d565b5060015b949350505050565b6060600a8054610ac1906122c3565b600081815b8451811015611b90576000858281518110611b4657611b46612345565b60200260200101519050808311611b6c5760008381526020829052604090209250611b7d565b600081815260208490526040902092505b5080611b88816122fe565b915050611b29565b509392505050565b610a6c83838360016000546001600160a01b038516611bc957604051622e076360e81b815260040160405180910390fd5b83611be75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611ce65760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611cbc5750611cba6000888488611a06565b155b15611cda576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611c65565b50600055611918565b828054611cfb906122c3565b90600052602060002090601f016020900481019282611d1d5760008555611d63565b82601f10611d3657805160ff1916838001178555611d63565b82800160010185558215611d63579182015b82811115611d63578251825591602001919060010190611d48565b506111689291505b808211156111685760008155600101611d6b565b600067ffffffffffffffff831115611d9957611d9961235b565b611dac601f8401601f1916602001612239565b9050828152838383011115611dc057600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611dee57600080fd5b919050565b600060208284031215611e0557600080fd5b611e0e82611dd7565b9392505050565b60008060408385031215611e2857600080fd5b611e3183611dd7565b9150611e3f60208401611dd7565b90509250929050565b600080600060608486031215611e5d57600080fd5b611e6684611dd7565b9250611e7460208501611dd7565b9150604084013590509250925092565b60008060008060808587031215611e9a57600080fd5b611ea385611dd7565b9350611eb160208601611dd7565b925060408501359150606085013567ffffffffffffffff811115611ed457600080fd5b8501601f81018713611ee557600080fd5b611ef487823560208401611d7f565b91505092959194509250565b60008060408385031215611f1357600080fd5b611f1c83611dd7565b915060208301358015158114611f3157600080fd5b809150509250929050565b60008060408385031215611f4f57600080fd5b611f5883611dd7565b946020939093013593505050565b60008060408385031215611f7957600080fd5b823567ffffffffffffffff80821115611f9157600080fd5b818501915085601f830112611fa557600080fd5b8135602082821115611fb957611fb961235b565b8160051b9250611fca818401612239565b8281528181019085830185870184018b1015611fe557600080fd5b600096505b84871015612008578035835260019690960195918301918301611fea565b509997909101359750505050505050565b60006020828403121561202b57600080fd5b5035919050565b60006020828403121561204457600080fd5b8135611e0e81612371565b60006020828403121561206157600080fd5b8151611e0e81612371565b60006020828403121561207e57600080fd5b813567ffffffffffffffff81111561209557600080fd5b8201601f810184136120a657600080fd5b611b0d84823560208401611d7f565b6000815180845260005b818110156120db576020818501810151868301820152016120bf565b818111156120ed576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612135908301846120b5565b9695505050505050565b602081526000611e0e60208301846120b5565b6020808252601c908201527f43616e206f6e6c792062652063616c6c65642062792061207573657200000000604082015260600190565b6020808252601290820152714e4654732061726520736f6c64206f75742160701b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f536f6d657468696e672077656e742077726f6e6720776974682074686520776960408201526e3a34323930bb90333ab731ba34b7b760891b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156122625761226261235b565b604052919050565b6000821982111561227d5761227d61232f565b500190565b60008261229f57634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156122be576122be61232f565b500290565b600181811c908216806122d757607f821691505b602082108114156122f857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123125761231261232f565b5060010190565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461112757600080fdfea2646970667358221220bc0b66ccd05efbb2ebc926faf9e09e795b0f48e25e3a01306cd6ac59600518c964736f6c6343000807003368747470733a2f2f697066732e696f2f697066732f516d58486831444769477375556f4e7233564c4b78646846586f7074507148464d31696b6b5446767636456a38712f302e6a736f6e

Deployed Bytecode

0x6080604052600436106102725760003560e01c80636352211e1161014f578063a0e94c80116100c1578063cbd0ab001161007a578063cbd0ab00146106db578063d62c26ed146106f1578063e222c7f914610706578063e985e9c51461071b578063f0292a0314610764578063f2fde38b1461077957600080fd5b8063a0e94c8014610645578063a22cb4651461065b578063ad3e31b71461067b578063b88d4fde1461069b578063bc912e1a1461033e578063c87b56dd146106bb57600080fd5b806386a173ee1161011357806386a173ee146105ab5780638bb64a8c146105ca5780638da5cb5b146105df57806395d89b41146105fd5780639f214ba714610612578063a0712d681461063257600080fd5b80636352211e1461052157806370a0823114610541578063715018a6146105615780637a0101a2146105765780637cb647591461058b57600080fd5b8063289eff46116101e85780633ccfd60b116101ac5780633ccfd60b1461047457806342842e0e14610489578063446e93b6146104a957806349590657146104d65780634b330719146104eb5780634f6ccce71461050157600080fd5b8063289eff46146103fc5780632904e6d9146104115780632f745c591461042457806332cb6b0c1461044457806333bc1c5c1461045a57600080fd5b806307e89ec01161023a57806307e89ec01461033e578063081812fc1461035a578063095ea7b3146103925780630db66909146103b257806318160ddd146103c757806323b872dd146103dc57600080fd5b806301ffc9a7146102775780630345e3cb146102ac57806304f3e03a146102e75780630675b7c6146102fc57806306fdde031461031c575b600080fd5b34801561028357600080fd5b50610297610292366004612032565b610799565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102d96102c7366004611df3565b600e6020526000908152604090205481565b6040519081526020016102a3565b6102fa6102f5366004611f66565b610806565b005b34801561030857600080fd5b506102fa61031736600461206c565b610a71565b34801561032857600080fd5b50610331610ab2565b6040516102a3919061213f565b34801561034a57600080fd5b506102d967016345785d8a000081565b34801561036657600080fd5b5061037a610375366004612019565b610b44565b6040516001600160a01b0390911681526020016102a3565b34801561039e57600080fd5b506102fa6103ad366004611f3c565b610b8a565b3480156103be57600080fd5b50600d546102d9565b3480156103d357600080fd5b506000546102d9565b3480156103e857600080fd5b506102fa6103f7366004611e48565b610c13565b34801561040857600080fd5b506102fa610c1e565b6102fa61041f366004611f66565b610c67565b34801561043057600080fd5b506102d961043f366004611f3c565b610f1a565b34801561045057600080fd5b506102d96101bc81565b34801561046657600080fd5b50600b546102979060ff1681565b34801561048057600080fd5b506102fa610fef565b34801561049557600080fd5b506102fa6104a4366004611e48565b61112a565b3480156104b557600080fd5b506102d96104c4366004611df3565b600f6020526000908152604090205481565b3480156104e257600080fd5b50600c546102d9565b3480156104f757600080fd5b506102d96101a481565b34801561050d57600080fd5b506102d961051c366004612019565b611145565b34801561052d57600080fd5b5061037a61053c366004612019565b61116c565b34801561054d57600080fd5b506102d961055c366004611df3565b61117e565b34801561056d57600080fd5b506102fa6111cc565b34801561058257600080fd5b50610331611202565b34801561059757600080fd5b506102fa6105a6366004612019565b611290565b3480156105b757600080fd5b50600b5461029790610100900460ff1681565b3480156105d657600080fd5b506102fa6112bf565b3480156105eb57600080fd5b506007546001600160a01b031661037a565b34801561060957600080fd5b50610331611306565b34801561061e57600080fd5b50600b546102979062010000900460ff1681565b6102fa610640366004612019565b611315565b34801561065157600080fd5b506102d960095481565b34801561066757600080fd5b506102fa610676366004611f00565b611426565b34801561068757600080fd5b506102fa610696366004612019565b6114bc565b3480156106a757600080fd5b506102fa6106b6366004611e84565b6114eb565b3480156106c757600080fd5b506103316106d6366004612019565b611525565b3480156106e757600080fd5b506102d960085481565b3480156106fd57600080fd5b506102d9601881565b34801561071257600080fd5b506102fa61159e565b34801561072757600080fd5b50610297610736366004611e15565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561077057600080fd5b506102d9600181565b34801561078557600080fd5b506102fa610794366004611df3565b6115dc565b60006001600160e01b031982166380ac58cd60e01b14806107ca57506001600160e01b03198216635b5e139f60e01b145b806107e557506001600160e01b0319821663780e9d6360e01b145b8061080057506301ffc9a760e01b6001600160e01b03198316145b92915050565b32331461082e5760405162461bcd60e51b815260040161082590612152565b60405180910390fd5b600b5462010000900460ff166108865760405162461bcd60e51b815260206004820152601b60248201527f5465616d204d696e74696e67206973206e6f74206163746976652100000000006044820152606401610825565b6101bc8161089360005490565b61089d919061226a565b11156108bb5760405162461bcd60e51b815260040161082590612189565b336000908152600f60205260409020546001906108d990839061226a565b11156109335760405162461bcd60e51b8152602060048201526024808201527f4f6e6c792031206d696e7420706572207465616d206d656d62657220616c6c6f6044820152637765642160e01b6064820152608401610825565b601881600854610943919061226a565b11156109915760405162461bcd60e51b815260206004820152601b60248201527f416c6c207465616d204e4654732061726520736f6c64206f75742100000000006044820152606401610825565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506109d783600c5483611674565b610a2d5760405162461bcd60e51b815260206004820152602160248201527f596f7520617265206e6f742061206d656d626572206f6620746865207465616d6044820152602160f81b6064820152608401610825565b336000908152600f602052604081208054849290610a4c90849061226a565b9091555050600854610a5f90839061226a565b600855610a6c338361168a565b505050565b6007546001600160a01b03163314610a9b5760405162461bcd60e51b8152600401610825906121b5565b8051610aae90600a906020840190611cef565b5050565b606060018054610ac1906122c3565b80601f0160208091040260200160405190810160405280929190818152602001828054610aed906122c3565b8015610b3a5780601f10610b0f57610100808354040283529160200191610b3a565b820191906000526020600020905b815481529060010190602001808311610b1d57829003601f168201915b5050505050905090565b6000610b51826000541190565b610b6e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610b958261116c565b9050806001600160a01b0316836001600160a01b03161415610bca5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610bea5750610be88133610736565b155b15610c08576040516367d9dca160e11b815260040160405180910390fd5b610a6c8383836116a4565b610a6c838383611700565b6007546001600160a01b03163314610c485760405162461bcd60e51b8152600401610825906121b5565b600b805462ff0000198116620100009182900460ff1615909102179055565b323314610c865760405162461bcd60e51b815260040161082590612152565b600b54610100900460ff16610cdd5760405162461bcd60e51b815260206004820152601f60248201527f57686974656c697374204d696e74696e67206973206e6f7420616374697665006044820152606401610825565b6101bc81610cea60005490565b610cf4919061226a565b1115610d125760405162461bcd60e51b815260040161082590612189565b336000908152600e6020526040902054600190610d3090839061226a565b1115610d895760405162461bcd60e51b815260206004820152602260248201527f4f6e6c792031206d696e74207065722077686974656c69737420616c6c6f7765604482015261642160f01b6064820152608401610825565b610d9b8167016345785d8a00006122a4565b341015610dea5760405162461bcd60e51b815260206004820152601b60248201527f596f75206e65656420746f207370656e64206d6f7265204554482100000000006044820152606401610825565b6101a481600954610dfb919061226a565b1115610e495760405162461bcd60e51b815260206004820181905260248201527f416c6c2077686974656c697374204e4654732061726520736f6c64206f7574216044820152606401610825565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610e8f83600d5483611674565b610edb5760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f742077686974656c69737465642100000000000000006044820152606401610825565b336000908152600e602052604081208054849290610efa90849061226a565b9091555050600954610f0d90839061226a565b600955610a6c338361168a565b6000610f258361117e565b8210610f44576040516306ed618760e11b815260040160405180910390fd5b600080549080805b83811015610fdd576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610f9f57805192505b876001600160a01b0316836001600160a01b03161415610fd45786841415610fcd5750935061080092505050565b6001909301925b50600101610f4c565b50610fe6612319565b50949350505050565b6007546001600160a01b031633146110195760405162461bcd60e51b8152600401610825906121b5565b600073b028b642cbb636184358229ce1797591827885e66103e861103f476103b66122a4565b6110499190612282565b604051600081818185875af1925050503d8060008114611085576040519150601f19603f3d011682016040523d82523d6000602084013e61108a565b606091505b50509050806110ab5760405162461bcd60e51b8152600401610825906121ea565b6040517302047e04a502a5e1cfa1cb142ebed8562d2aeea4904790600081818185875af1925050503d80600081146110ff576040519150601f19603f3d011682016040523d82523d6000602084013e611104565b606091505b505080915050806111275760405162461bcd60e51b8152600401610825906121ea565b50565b610a6c838383604051806020016040528060008152506114eb565b600080548210611168576040516329c8c00760e21b815260040160405180910390fd5b5090565b60006111778261191f565b5192915050565b60006001600160a01b0382166111a7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146111f65760405162461bcd60e51b8152600401610825906121b5565b61120060006119b4565b565b600a805461120f906122c3565b80601f016020809104026020016040519081016040528092919081815260200182805461123b906122c3565b80156112885780601f1061125d57610100808354040283529160200191611288565b820191906000526020600020905b81548152906001019060200180831161126b57829003601f168201915b505050505081565b6007546001600160a01b031633146112ba5760405162461bcd60e51b8152600401610825906121b5565b600c55565b6007546001600160a01b031633146112e95760405162461bcd60e51b8152600401610825906121b5565b600b805461ff001981166101009182900460ff1615909102179055565b606060028054610ac1906122c3565b3233146113345760405162461bcd60e51b815260040161082590612152565b600b5460ff166113865760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963204d696e74696e67206973206e6f7420616374697665000000006044820152606401610825565b6101bc8161139360005490565b61139d919061226a565b11156113bb5760405162461bcd60e51b815260040161082590612189565b6113cd8167016345785d8a00006122a4565b34101561141c5760405162461bcd60e51b815260206004820152601b60248201527f596f75206e65656420746f207370656e64206d6f7265204554482100000000006044820152606401610825565b611127338261168a565b6001600160a01b0382163314156114505760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146114e65760405162461bcd60e51b8152600401610825906121b5565b600d55565b6114f6848484611700565b61150284848484611a06565b61151f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611532826000541190565b6115965760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610825565b610800611b15565b6007546001600160a01b031633146115c85760405162461bcd60e51b8152600401610825906121b5565b600b805460ff19811660ff90911615179055565b6007546001600160a01b031633146116065760405162461bcd60e51b8152600401610825906121b5565b6001600160a01b03811661166b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610825565b611127816119b4565b6000826116818584611b24565b14949350505050565b610aae828260405180602001604052806000815250611b98565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061170b8261191f565b80519091506000906001600160a01b0316336001600160a01b0316148061174257503361173784610b44565b6001600160a01b0316145b80611754575081516117549033610736565b90508061177457604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146117a95760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166117d057604051633a954ecd60e21b815260040160405180910390fd5b6117e060008484600001516116a4565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166118d557611888816000541190565b156118d5578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080518082019091526000808252602082015261193e826000541190565b61195b57604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156119aa579392505050565b506000190161195d565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611b0957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a4a903390899088908890600401612102565b602060405180830381600087803b158015611a6457600080fd5b505af1925050508015611a94575060408051601f3d908101601f19168201909252611a919181019061204f565b60015b611aef573d808015611ac2576040519150601f19603f3d011682016040523d82523d6000602084013e611ac7565b606091505b508051611ae7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b0d565b5060015b949350505050565b6060600a8054610ac1906122c3565b600081815b8451811015611b90576000858281518110611b4657611b46612345565b60200260200101519050808311611b6c5760008381526020829052604090209250611b7d565b600081815260208490526040902092505b5080611b88816122fe565b915050611b29565b509392505050565b610a6c83838360016000546001600160a01b038516611bc957604051622e076360e81b815260040160405180910390fd5b83611be75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611ce65760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611cbc5750611cba6000888488611a06565b155b15611cda576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611c65565b50600055611918565b828054611cfb906122c3565b90600052602060002090601f016020900481019282611d1d5760008555611d63565b82601f10611d3657805160ff1916838001178555611d63565b82800160010185558215611d63579182015b82811115611d63578251825591602001919060010190611d48565b506111689291505b808211156111685760008155600101611d6b565b600067ffffffffffffffff831115611d9957611d9961235b565b611dac601f8401601f1916602001612239565b9050828152838383011115611dc057600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611dee57600080fd5b919050565b600060208284031215611e0557600080fd5b611e0e82611dd7565b9392505050565b60008060408385031215611e2857600080fd5b611e3183611dd7565b9150611e3f60208401611dd7565b90509250929050565b600080600060608486031215611e5d57600080fd5b611e6684611dd7565b9250611e7460208501611dd7565b9150604084013590509250925092565b60008060008060808587031215611e9a57600080fd5b611ea385611dd7565b9350611eb160208601611dd7565b925060408501359150606085013567ffffffffffffffff811115611ed457600080fd5b8501601f81018713611ee557600080fd5b611ef487823560208401611d7f565b91505092959194509250565b60008060408385031215611f1357600080fd5b611f1c83611dd7565b915060208301358015158114611f3157600080fd5b809150509250929050565b60008060408385031215611f4f57600080fd5b611f5883611dd7565b946020939093013593505050565b60008060408385031215611f7957600080fd5b823567ffffffffffffffff80821115611f9157600080fd5b818501915085601f830112611fa557600080fd5b8135602082821115611fb957611fb961235b565b8160051b9250611fca818401612239565b8281528181019085830185870184018b1015611fe557600080fd5b600096505b84871015612008578035835260019690960195918301918301611fea565b509997909101359750505050505050565b60006020828403121561202b57600080fd5b5035919050565b60006020828403121561204457600080fd5b8135611e0e81612371565b60006020828403121561206157600080fd5b8151611e0e81612371565b60006020828403121561207e57600080fd5b813567ffffffffffffffff81111561209557600080fd5b8201601f810184136120a657600080fd5b611b0d84823560208401611d7f565b6000815180845260005b818110156120db576020818501810151868301820152016120bf565b818111156120ed576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612135908301846120b5565b9695505050505050565b602081526000611e0e60208301846120b5565b6020808252601c908201527f43616e206f6e6c792062652063616c6c65642062792061207573657200000000604082015260600190565b6020808252601290820152714e4654732061726520736f6c64206f75742160701b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f536f6d657468696e672077656e742077726f6e6720776974682074686520776960408201526e3a34323930bb90333ab731ba34b7b760891b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156122625761226261235b565b604052919050565b6000821982111561227d5761227d61232f565b500190565b60008261229f57634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156122be576122be61232f565b500290565b600181811c908216806122d757607f821691505b602082108114156122f857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123125761231261232f565b5060010190565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461112757600080fdfea2646970667358221220bc0b66ccd05efbb2ebc926faf9e09e795b0f48e25e3a01306cd6ac59600518c964736f6c63430008070033

Deployed Bytecode Sourcemap

42987:5242:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30264:372;;;;;;;;;;-1:-1:-1;30264:372:0;;;;;:::i;:::-;;:::i;:::-;;;6821:14:1;;6814:22;6796:41;;6784:2;6769:18;30264:372:0;;;;;;;;43743:53;;;;;;;;;;-1:-1:-1;43743:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;6994:25:1;;;6982:2;6967:18;43743:53:0;6848:177:1;45671:826:0;;;;;;:::i;:::-;;:::i;:::-;;46883:115;;;;;;;;;;-1:-1:-1;46883:115:0;;;;;:::i;:::-;;:::i;32080:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;43287:52::-;;;;;;;;;;;;43331:8;43287:52;;33557:204;;;;;;;;;;-1:-1:-1;33557:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6119:32:1;;;6101:51;;6089:2;6074:18;33557:204:0;5955:203:1;33146:345:0;;;;;;;;;;-1:-1:-1;33146:345:0;;;;;:::i;:::-;;:::i;47337:96::-;;;;;;;;;;-1:-1:-1;47413:12:0;;47337:96;;28502:101;;;;;;;;;;-1:-1:-1;28555:7:0;28582:13;28502:101;;34414:170;;;;;;;;;;-1:-1:-1;34414:170:0;;;;;:::i;:::-;;:::i;47443:83::-;;;;;;;;;;;;;:::i;44699:962::-;;;;;;:::i;:::-;;:::i;29156:1036::-;;;;;;;;;;-1:-1:-1;29156:1036:0;;;;;:::i;:::-;;:::i;43034:40::-;;;;;;;;;;;;43071:3;43034:40;;43583:22;;;;;;;;;;-1:-1:-1;43583:22:0;;;;;;;;47737:489;;;;;;;;;;;;;:::i;34655:185::-;;;;;;;;;;-1:-1:-1;34655:185:0;;;;;:::i;:::-;;:::i;43803:48::-;;;;;;;;;;-1:-1:-1;43803:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;47239:92;;;;;;;;;;-1:-1:-1;47313:10:0;;47239:92;;43081:56;;;;;;;;;;;;43134:3;43081:56;;28680:176;;;;;;;;;;-1:-1:-1;28680:176:0;;;;;:::i;:::-;;:::i;31889:124::-;;;;;;;;;;-1:-1:-1;31889:124:0;;;;;:::i;:::-;;:::i;30700:206::-;;;;;;;;;;-1:-1:-1;30700:206:0;;;;;:::i;:::-;;:::i;25721:103::-;;;;;;;;;;;;;:::i;43522:26::-;;;;;;;;;;;;;:::i;47006:105::-;;;;;;;;;;-1:-1:-1;47006:105:0;;;;;:::i;:::-;;:::i;43612:25::-;;;;;;;;;;-1:-1:-1;43612:25:0;;;;;;;;;;;47534:98;;;;;;;;;;;;;:::i;25070:87::-;;;;;;;;;;-1:-1:-1;25143:6:0;;-1:-1:-1;;;;;25143:6:0;25070:87;;32249:104;;;;;;;;;;;;;:::i;43644:20::-;;;;;;;;;;-1:-1:-1;43644:20:0;;;;;;;;;;;44338:353;;;;;;:::i;:::-;;:::i;43471:42::-;;;;;;;;;;;;;;;;33833:279;;;;;;;;;;-1:-1:-1;33833:279:0;;;;;:::i;:::-;;:::i;47120:109::-;;;;;;;;;;-1:-1:-1;47120:109:0;;;;;:::i;:::-;;:::i;34911:308::-;;;;;;;;;;-1:-1:-1;34911:308:0;;;;;:::i;:::-;;:::i;46664:211::-;;;;;;;;;;-1:-1:-1;46664:211:0;;;;;:::i;:::-;;:::i;43427:37::-;;;;;;;;;;;;;;;;43144:50;;;;;;;;;;;;43192:2;43144:50;;47640:89;;;;;;;;;;;;;:::i;34183:164::-;;;;;;;;;;-1:-1:-1;34183:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34304:25:0;;;34280:4;34304:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34183:164;43228:36;;;;;;;;;;;;43263:1;43228:36;;25979:201;;;;;;;;;;-1:-1:-1;25979:201:0;;;;;:::i;:::-;;:::i;30264:372::-;30366:4;-1:-1:-1;;;;;;30403:40:0;;-1:-1:-1;;;30403:40:0;;:105;;-1:-1:-1;;;;;;;30460:48:0;;-1:-1:-1;;;30460:48:0;30403:105;:172;;;-1:-1:-1;;;;;;;30525:50:0;;-1:-1:-1;;;30525:50:0;30403:172;:225;;;-1:-1:-1;;;;;;;;;;13605:40:0;;;30592:36;30383:245;30264:372;-1:-1:-1;;30264:372:0:o;45671:826::-;44254:9;44267:10;44254:23;44246:64;;;;-1:-1:-1;;;44246:64:0;;;;;;;:::i;:::-;;;;;;;;;45787:8:::1;::::0;;;::::1;;;45779:48;;;::::0;-1:-1:-1;;;45779:48:0;;9335:2:1;45779:48:0::1;::::0;::::1;9317:21:1::0;9374:2;9354:18;;;9347:30;9413:29;9393:18;;;9386:57;9460:18;;45779:48:0::1;9133:351:1::0;45779:48:0::1;43071:3;45863:9;45847:13;28555:7:::0;28582:13;;28502:101;45847:13:::1;:25;;;;:::i;:::-;45846:41;;45838:72;;;;-1:-1:-1::0;;;45838:72:0::1;;;;;;;:::i;:::-;45944:10;45930:25;::::0;;;:13:::1;:25;::::0;;;;;43263:1:::1;::::0;45930:37:::1;::::0;45958:9;;45930:37:::1;:::i;:::-;45929:52;;45921:102;;;::::0;-1:-1:-1;;;45921:102:0;;12661:2:1;45921:102:0::1;::::0;::::1;12643:21:1::0;12700:2;12680:18;;;12673:30;12739:34;12719:18;;;12712:62;-1:-1:-1;;;12790:18:1;;;12783:34;12834:19;;45921:102:0::1;12459:400:1::0;45921:102:0::1;43192:2;46063:9;46042:18;;:30;;;;:::i;:::-;:55;;46034:95;;;::::0;-1:-1:-1;;;46034:95:0;;8572:2:1;46034:95:0::1;::::0;::::1;8554:21:1::0;8611:2;8591:18;;;8584:30;8650:29;8630:18;;;8623:57;8697:18;;46034:95:0::1;8370:351:1::0;46034:95:0::1;46197:28;::::0;-1:-1:-1;;46214:10:0::1;5660:2:1::0;5656:15;5652:53;46197:28:0::1;::::0;::::1;5640:66:1::0;46170:14:0::1;::::0;5722:12:1;;46197:28:0::1;;;;;;;;;;;;46187:39;;;;;;46170:56;;46245:52;46264:12;46278:10;;46290:6;46245:18;:52::i;:::-;46237:98;;;::::0;-1:-1:-1;;;46237:98:0;;8170:2:1;46237:98:0::1;::::0;::::1;8152:21:1::0;8209:2;8189:18;;;8182:30;8248:34;8228:18;;;8221:62;-1:-1:-1;;;8299:18:1;;;8292:31;8340:19;;46237:98:0::1;7968:397:1::0;46237:98:0::1;46360:10;46346:25;::::0;;;:13:::1;:25;::::0;;;;:38;;46375:9;;46346:25;:38:::1;::::0;46375:9;;46346:38:::1;:::i;:::-;::::0;;;-1:-1:-1;;46416:18:0::1;::::0;:30:::1;::::0;46437:9;;46416:30:::1;:::i;:::-;46395:18;:51:::0;46457:32:::1;46467:10;46479:9:::0;46457::::1;:32::i;:::-;45768:729;45671:826:::0;;:::o;46883:115::-;25143:6;;-1:-1:-1;;;;;25143:6:0;23874:10;25290:23;25282:68;;;;-1:-1:-1;;;25282:68:0;;;;;;;:::i;:::-;46962:28;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46883:115:::0;:::o;32080:100::-;32134:13;32167:5;32160:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32080:100;:::o;33557:204::-;33625:7;33650:16;33658:7;35531:4;35565:13;-1:-1:-1;35555:23:0;35474:112;33650:16;33645:64;;33675:34;;-1:-1:-1;;;33675:34:0;;;;;;;;;;;33645:64;-1:-1:-1;33729:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33729:24:0;;33557:204::o;33146:345::-;33219:13;33235:24;33251:7;33235:15;:24::i;:::-;33219:40;;33280:5;-1:-1:-1;;;;;33274:11:0;:2;-1:-1:-1;;;;;33274:11:0;;33270:48;;;33294:24;;-1:-1:-1;;;33294:24:0;;;;;;;;;;;33270:48;23874:10;-1:-1:-1;;;;;33335:21:0;;;;;;:63;;-1:-1:-1;33361:37:0;33378:5;23874:10;34183:164;:::i;33361:37::-;33360:38;33335:63;33331:111;;;33407:35;;-1:-1:-1;;;33407:35:0;;;;;;;;;;;33331:111;33455:28;33464:2;33468:7;33477:5;33455:8;:28::i;34414:170::-;34548:28;34558:4;34564:2;34568:7;34548:9;:28::i;47443:83::-;25143:6;;-1:-1:-1;;;;;25143:6:0;23874:10;25290:23;25282:68;;;;-1:-1:-1;;;25282:68:0;;;;;;;:::i;:::-;47510:8:::1;::::0;;-1:-1:-1;;47498:20:0;::::1;47510:8:::0;;;;::::1;;;47509:9;47498:20:::0;;::::1;;::::0;;47443:83::o;44699:962::-;44254:9;44267:10;44254:23;44246:64;;;;-1:-1:-1;;;44246:64:0;;;;;;;:::i;:::-;44820:13:::1;::::0;::::1;::::0;::::1;;;44812:57;;;::::0;-1:-1:-1;;;44812:57:0;;11108:2:1;44812:57:0::1;::::0;::::1;11090:21:1::0;11147:2;11127:18;;;11120:30;11186:33;11166:18;;;11159:61;11237:18;;44812:57:0::1;10906:355:1::0;44812:57:0::1;43071:3;44905:9;44889:13;28555:7:::0;28582:13;;28502:101;44889:13:::1;:25;;;;:::i;:::-;44888:41;;44880:72;;;;-1:-1:-1::0;;;44880:72:0::1;;;;;;;:::i;:::-;44991:10;44972:30;::::0;;;:18:::1;:30;::::0;;;;;43263:1:::1;::::0;44972:42:::1;::::0;45005:9;;44972:42:::1;:::i;:::-;44971:56;;44963:103;;;::::0;-1:-1:-1;;;44963:103:0;;13066:2:1;44963:103:0::1;::::0;::::1;13048:21:1::0;13105:2;13085:18;;;13078:30;13144:34;13124:18;;;13117:62;-1:-1:-1;;;13195:18:1;;;13188:32;13237:19;;44963:103:0::1;12864:398:1::0;44963:103:0::1;45099:32;45122:9:::0;43393:8:::1;45099:32;:::i;:::-;45085:9;:47;;45077:87;;;::::0;-1:-1:-1;;;45077:87:0;;10044:2:1;45077:87:0::1;::::0;::::1;10026:21:1::0;10083:2;10063:18;;;10056:30;10122:29;10102:18;;;10095:57;10169:18;;45077:87:0::1;9842:351:1::0;45077:87:0::1;43134:3;45209:9;45183:23;;:35;;;;:::i;:::-;:65;;45175:110;;;::::0;-1:-1:-1;;;45175:110:0;;10747:2:1;45175:110:0::1;::::0;::::1;10729:21:1::0;;;10766:18;;;10759:30;10825:34;10805:18;;;10798:62;10877:18;;45175:110:0::1;10545:356:1::0;45175:110:0::1;45353:28;::::0;-1:-1:-1;;45370:10:0::1;5660:2:1::0;5656:15;5652:53;45353:28:0::1;::::0;::::1;5640:66:1::0;45326:14:0::1;::::0;5722:12:1;;45353:28:0::1;;;;;;;;;;;;45343:39;;;;;;45326:56;;45401:54;45420:12;45434;;45448:6;45401:18;:54::i;:::-;45393:91;;;::::0;-1:-1:-1;;;45393:91:0;;9691:2:1;45393:91:0::1;::::0;::::1;9673:21:1::0;9730:2;9710:18;;;9703:30;9769:26;9749:18;;;9742:54;9813:18;;45393:91:0::1;9489:348:1::0;45393:91:0::1;45514:10;45495:30;::::0;;;:18:::1;:30;::::0;;;;:43;;45529:9;;45495:30;:43:::1;::::0;45529:9;;45495:43:::1;:::i;:::-;::::0;;;-1:-1:-1;;45575:23:0::1;::::0;:35:::1;::::0;45601:9;;45575:35:::1;:::i;:::-;45549:23;:61:::0;45621:32:::1;45631:10;45643:9:::0;45621::::1;:32::i;29156:1036::-:0;29245:7;29278:16;29288:5;29278:9;:16::i;:::-;29269:5;:25;29265:61;;29303:23;;-1:-1:-1;;;29303:23:0;;;;;;;;;;;29265:61;29337:22;28582:13;;;29337:22;;29600:466;29620:14;29616:1;:18;29600:466;;;29660:31;29694:14;;;:11;:14;;;;;;;;;29660:48;;;;;;;;;-1:-1:-1;;;;;29660:48:0;;;;;-1:-1:-1;;;29660:48:0;;;;;;;;;;;;29731:28;29727:111;;29804:14;;;-1:-1:-1;29727:111:0;29881:5;-1:-1:-1;;;;;29860:26:0;:17;-1:-1:-1;;;;;29860:26:0;;29856:195;;;29930:5;29915:11;:20;29911:85;;;-1:-1:-1;29971:1:0;-1:-1:-1;29964:8:0;;-1:-1:-1;;;29964:8:0;29911:85;30018:13;;;;;29856:195;-1:-1:-1;29636:3:0;;29600:466;;;-1:-1:-1;30142:13:0;;:::i;:::-;-1:-1:-1;30173:11:0;29156:1036;-1:-1:-1;;;;29156:1036:0:o;47737:489::-;25143:6;;-1:-1:-1;;;;;25143:6:0;23874:10;25290:23;25282:68;;;;-1:-1:-1;;;25282:68:0;;;;;;;:::i;:::-;47824:12:::1;47842:42;47925:4;47897:27;:21;47921:3;47897:27;:::i;:::-;:32;;;;:::i;:::-;47842:92;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47823:111;;;47953:7;47945:67;;;;-1:-1:-1::0;;;47945:67:0::1;;;;;;;:::i;:::-;48059:81;::::0;:42:::1;::::0;48114:21:::1;::::0;48059:81:::1;::::0;;;48114:21;48059:42;:81:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48045:95;;;;;48159:7;48151:67;;;;-1:-1:-1::0;;;48151:67:0::1;;;;;;;:::i;:::-;47775:451;47737:489::o:0;34655:185::-;34793:39;34810:4;34816:2;34820:7;34793:39;;;;;;;;;;;;:16;:39::i;28680:176::-;28747:7;28582:13;;28771:5;:22;28767:58;;28802:23;;-1:-1:-1;;;28802:23:0;;;;;;;;;;;28767:58;-1:-1:-1;28843:5:0;28680:176::o;31889:124::-;31953:7;31980:20;31992:7;31980:11;:20::i;:::-;:25;;31889:124;-1:-1:-1;;31889:124:0:o;30700:206::-;30764:7;-1:-1:-1;;;;;30788:19:0;;30784:60;;30816:28;;-1:-1:-1;;;30816:28:0;;;;;;;;;;;30784:60;-1:-1:-1;;;;;;30870:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30870:27:0;;30700:206::o;25721:103::-;25143:6;;-1:-1:-1;;;;;25143:6:0;23874:10;25290:23;25282:68;;;;-1:-1:-1;;;25282:68:0;;;;;;;:::i;:::-;25786:30:::1;25813:1;25786:18;:30::i;:::-;25721:103::o:0;43522:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47006:105::-;25143:6;;-1:-1:-1;;;;;25143:6:0;23874:10;25290:23;25282:68;;;;-1:-1:-1;;;25282:68:0;;;;;;;:::i;:::-;47079:10:::1;:24:::0;47006:105::o;47534:98::-;25143:6;;-1:-1:-1;;;;;25143:6:0;23874:10;25290:23;25282:68;;;;-1:-1:-1;;;25282:68:0;;;;;;;:::i;:::-;47611:13:::1;::::0;;-1:-1:-1;;47594:30:0;::::1;47611:13;::::0;;;::::1;;;47610:14;47594:30:::0;;::::1;;::::0;;47534:98::o;32249:104::-;32305:13;32338:7;32331:14;;;;;:::i;44338:353::-;44254:9;44267:10;44254:23;44246:64;;;;-1:-1:-1;;;44246:64:0;;;;;;;:::i;:::-;44419:10:::1;::::0;::::1;;44411:51;;;::::0;-1:-1:-1;;;44411:51:0;;7456:2:1;44411:51:0::1;::::0;::::1;7438:21:1::0;7495:2;7475:18;;;7468:30;7534;7514:18;;;7507:58;7582:18;;44411:51:0::1;7254:352:1::0;44411:51:0::1;43071:3;44498:9;44482:13;28555:7:::0;28582:13;;28502:101;44482:13:::1;:25;;;;:::i;:::-;44481:41;;44473:72;;;;-1:-1:-1::0;;;44473:72:0::1;;;;;;;:::i;:::-;44578:29;44598:9:::0;43331:8:::1;44578:29;:::i;:::-;44564:9;:44;;44556:84;;;::::0;-1:-1:-1;;;44556:84:0;;10044:2:1;44556:84:0::1;::::0;::::1;10026:21:1::0;10083:2;10063:18;;;10056:30;10122:29;10102:18;;;10095:57;10169:18;;44556:84:0::1;9842:351:1::0;44556:84:0::1;44651:32;44661:10;44673:9;44651;:32::i;33833:279::-:0;-1:-1:-1;;;;;33924:24:0;;23874:10;33924:24;33920:54;;;33957:17;;-1:-1:-1;;;33957:17:0;;;;;;;;;;;33920:54;23874:10;33987:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33987:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33987:53:0;;;;;;;;;;34056:48;;6796:41:1;;;33987:42:0;;23874:10;34056:48;;6769:18:1;34056:48:0;;;;;;;33833:279;;:::o;47120:109::-;25143:6;;-1:-1:-1;;;;;25143:6:0;23874:10;25290:23;25282:68;;;;-1:-1:-1;;;25282:68:0;;;;;;;:::i;:::-;47195:12:::1;:26:::0;47120:109::o;34911:308::-;35070:28;35080:4;35086:2;35090:7;35070:9;:28::i;:::-;35114:48;35137:4;35143:2;35147:7;35156:5;35114:22;:48::i;:::-;35109:102;;35171:40;;-1:-1:-1;;;35171:40:0;;;;;;;;;;;35109:102;34911:308;;;;:::o;46664:211::-;46737:13;46771:16;46779:7;35531:4;35565:13;-1:-1:-1;35555:23:0;35474:112;46771:16;46763:76;;;;-1:-1:-1;;;46763:76:0;;11829:2:1;46763:76:0;;;11811:21:1;11868:2;11848:18;;;11841:30;11907:34;11887:18;;;11880:62;-1:-1:-1;;;11958:18:1;;;11951:45;12013:19;;46763:76:0;11627:411:1;46763:76:0;46857:10;:8;:10::i;47640:89::-;25143:6;;-1:-1:-1;;;;;25143:6:0;23874:10;25290:23;25282:68;;;;-1:-1:-1;;;25282:68:0;;;;;;;:::i;:::-;47711:10:::1;::::0;;-1:-1:-1;;47697:24:0;::::1;47711:10;::::0;;::::1;47710:11;47697:24;::::0;;47640:89::o;25979:201::-;25143:6;;-1:-1:-1;;;;;25143:6:0;23874:10;25290:23;25282:68;;;;-1:-1:-1;;;25282:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26068:22:0;::::1;26060:73;;;::::0;-1:-1:-1;;;26060:73:0;;8928:2:1;26060:73:0::1;::::0;::::1;8910:21:1::0;8967:2;8947:18;;;8940:30;9006:34;8986:18;;;8979:62;-1:-1:-1;;;9057:18:1;;;9050:36;9103:19;;26060:73:0::1;8726:402:1::0;26060:73:0::1;26144:28;26163:8;26144:18;:28::i;21650:190::-:0;21775:4;21828;21799:25;21812:5;21819:4;21799:12;:25::i;:::-;:33;;21650:190;-1:-1:-1;;;;21650:190:0:o;35594:104::-;35663:27;35673:2;35677:8;35663:27;;;;;;;;;;;;:9;:27::i;40237:196::-;40352:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40352:29:0;-1:-1:-1;;;;;40352:29:0;;;;;;;;;40397:28;;40352:24;;40397:28;;;;;;;40237:196;;;:::o;38157:1962::-;38272:35;38310:20;38322:7;38310:11;:20::i;:::-;38385:18;;38272:58;;-1:-1:-1;38343:22:0;;-1:-1:-1;;;;;38369:34:0;23874:10;-1:-1:-1;;;;;38369:34:0;;:87;;;-1:-1:-1;23874:10:0;38420:20;38432:7;38420:11;:20::i;:::-;-1:-1:-1;;;;;38420:36:0;;38369:87;:154;;;-1:-1:-1;38490:18:0;;38473:50;;23874:10;34183:164;:::i;38473:50::-;38343:181;;38542:17;38537:66;;38568:35;;-1:-1:-1;;;38568:35:0;;;;;;;;;;;38537:66;38640:4;-1:-1:-1;;;;;38618:26:0;:13;:18;;;-1:-1:-1;;;;;38618:26:0;;38614:67;;38653:28;;-1:-1:-1;;;38653:28:0;;;;;;;;;;;38614:67;-1:-1:-1;;;;;38696:16:0;;38692:52;;38721:23;;-1:-1:-1;;;38721:23:0;;;;;;;;;;;38692:52;38865:49;38882:1;38886:7;38895:13;:18;;;38865:8;:49::i;:::-;-1:-1:-1;;;;;39210:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;39210:31:0;;;-1:-1:-1;;;;;39210:31:0;;;-1:-1:-1;;39210:31:0;;;;;;;39256:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39256:29:0;;;;;;;;;;;;;39302:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;39347:61:0;;;;-1:-1:-1;;;39392:15:0;39347:61;;;;;;39682:11;;;39712:24;;;;;:29;39682:11;;39712:29;39708:295;;39780:20;39788:11;35531:4;35565:13;-1:-1:-1;35555:23:0;35474:112;39780:20;39776:212;;;39857:18;;;39825:24;;;:11;:24;;;;;;;;:50;;39940:28;;;;39898:70;;-1:-1:-1;;;39898:70:0;-1:-1:-1;;;;;;39898:70:0;;;-1:-1:-1;;;;;39825:50:0;;;39898:70;;;;;;;39776:212;39185:829;40050:7;40046:2;-1:-1:-1;;;;;40031:27:0;40040:4;-1:-1:-1;;;;;40031:27:0;;;;;;;;;;;40069:42;38261:1858;;38157:1962;;;:::o;31323:504::-;-1:-1:-1;;;;;;;;;;;;;;;;;31423:16:0;31431:7;35531:4;35565:13;-1:-1:-1;35555:23:0;35474:112;31423:16;31418:61;;31448:31;;-1:-1:-1;;;31448:31:0;;;;;;;;;;;31418:61;31537:7;31517:245;31584:31;31618:17;;;:11;:17;;;;;;;;;31584:51;;;;;;;;;-1:-1:-1;;;;;31584:51:0;;;;;-1:-1:-1;;;31584:51:0;;;;;;;;;;;;31658:28;31654:93;;31718:9;31323:504;-1:-1:-1;;;31323:504:0:o;31654:93::-;-1:-1:-1;;;31557:6:0;31517:245;;26340:191;26433:6;;;-1:-1:-1;;;;;26450:17:0;;;-1:-1:-1;;;;;;26450:17:0;;;;;;;26483:40;;26433:6;;;26450:17;26433:6;;26483:40;;26414:16;;26483:40;26403:128;26340:191;:::o;40998:765::-;41153:4;-1:-1:-1;;;;;41174:13:0;;3685:19;:23;41170:586;;41210:72;;-1:-1:-1;;;41210:72:0;;-1:-1:-1;;;;;41210:36:0;;;;;:72;;23874:10;;41261:4;;41267:7;;41276:5;;41210:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41210:72:0;;;;;;;;-1:-1:-1;;41210:72:0;;;;;;;;;;;;:::i;:::-;;;41206:495;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41456:13:0;;41452:234;;41483:40;;-1:-1:-1;;;41483:40:0;;;;;;;;;;;41452:234;41636:6;41630:13;41621:6;41617:2;41613:15;41606:38;41206:495;-1:-1:-1;;;;;;41333:55:0;-1:-1:-1;;;41333:55:0;;-1:-1:-1;41326:62:0;;41170:586;-1:-1:-1;41740:4:0;41170:586;40998:765;;;;;;:::o;46507:113::-;46567:13;46600:12;46593:19;;;;;:::i;22201:675::-;22284:7;22327:4;22284:7;22342:497;22366:5;:12;22362:1;:16;22342:497;;;22400:20;22423:5;22429:1;22423:8;;;;;;;;:::i;:::-;;;;;;;22400:31;;22466:12;22450;:28;22446:382;;22952:13;23002:15;;;23038:4;23031:15;;;23085:4;23069:21;;22578:57;;22446:382;;;22952:13;23002:15;;;23038:4;23031:15;;;23085:4;23069:21;;22755:57;;22446:382;-1:-1:-1;22380:3:0;;;;:::i;:::-;;;;22342:497;;;-1:-1:-1;22856:12:0;22201:675;-1:-1:-1;;;22201:675:0:o;36061:163::-;36184:32;36190:2;36194:8;36204:5;36211:4;36622:20;36645:13;-1:-1:-1;;;;;36673:16:0;;36669:48;;36698:19;;-1:-1:-1;;;36698:19:0;;;;;;;;;;;36669:48;36732:13;36728:44;;36754:18;;-1:-1:-1;;;36754:18:0;;;;;;;;;;;36728:44;-1:-1:-1;;;;;37125:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;37125:45:0;;-1:-1:-1;;;;;37125:45:0;;;;;;;;;;37185:50;;;;;;;;;;;;;;37252:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;37302:66:0;;;;-1:-1:-1;;;37352:15:0;37302:66;;;;;;;37252:25;;37437:330;37457:8;37453:1;:12;37437:330;;;37496:38;;37521:12;;-1:-1:-1;;;;;37496:38:0;;;37513:1;;37496:38;;37513:1;;37496:38;37557:4;:68;;;;;37566:59;37597:1;37601:2;37605:12;37619:5;37566:22;:59::i;:::-;37565:60;37557:68;37553:164;;;37657:40;;-1:-1:-1;;;37657:40:0;;;;;;;;;;;37553:164;37737:14;;;;;37467:3;37437:330;;;-1:-1:-1;37783:13:0;:28;37835:60;34911:308;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;:::-;744:39;603:186;-1:-1:-1;;;603:186:1:o;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;1819:18;1811:6;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:1;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:1:o;2674:1027::-;2767:6;2775;2828:2;2816:9;2807:7;2803:23;2799:32;2796:52;;;2844:1;2841;2834:12;2796:52;2884:9;2871:23;2913:18;2954:2;2946:6;2943:14;2940:34;;;2970:1;2967;2960:12;2940:34;3008:6;2997:9;2993:22;2983:32;;3053:7;3046:4;3042:2;3038:13;3034:27;3024:55;;3075:1;3072;3065:12;3024:55;3111:2;3098:16;3133:4;3156:2;3152;3149:10;3146:36;;;3162:18;;:::i;:::-;3208:2;3205:1;3201:10;3191:20;;3231:28;3255:2;3251;3247:11;3231:28;:::i;:::-;3293:15;;;3324:12;;;;3356:11;;;3386;;;3382:20;;3379:33;-1:-1:-1;3376:53:1;;;3425:1;3422;3415:12;3376:53;3447:1;3438:10;;3457:163;3471:2;3468:1;3465:9;3457:163;;;3528:17;;3516:30;;3489:1;3482:9;;;;;3566:12;;;;3598;;3457:163;;;-1:-1:-1;3639:5:1;3676:18;;;;3663:32;;-1:-1:-1;;;;;;;2674:1027:1:o;3706:180::-;3765:6;3818:2;3806:9;3797:7;3793:23;3789:32;3786:52;;;3834:1;3831;3824:12;3786:52;-1:-1:-1;3857:23:1;;3706:180;-1:-1:-1;3706:180:1:o;3891:245::-;3949:6;4002:2;3990:9;3981:7;3977:23;3973:32;3970:52;;;4018:1;4015;4008:12;3970:52;4057:9;4044:23;4076:30;4100:5;4076:30;:::i;4141:249::-;4210:6;4263:2;4251:9;4242:7;4238:23;4234:32;4231:52;;;4279:1;4276;4269:12;4231:52;4311:9;4305:16;4330:30;4354:5;4330:30;:::i;4395:450::-;4464:6;4517:2;4505:9;4496:7;4492:23;4488:32;4485:52;;;4533:1;4530;4523:12;4485:52;4573:9;4560:23;4606:18;4598:6;4595:30;4592:50;;;4638:1;4635;4628:12;4592:50;4661:22;;4714:4;4706:13;;4702:27;-1:-1:-1;4692:55:1;;4743:1;4740;4733:12;4692:55;4766:73;4831:7;4826:2;4813:16;4808:2;4804;4800:11;4766:73;:::i;5035:471::-;5076:3;5114:5;5108:12;5141:6;5136:3;5129:19;5166:1;5176:162;5190:6;5187:1;5184:13;5176:162;;;5252:4;5308:13;;;5304:22;;5298:29;5280:11;;;5276:20;;5269:59;5205:12;5176:162;;;5356:6;5353:1;5350:13;5347:87;;;5422:1;5415:4;5406:6;5401:3;5397:16;5393:27;5386:38;5347:87;-1:-1:-1;5488:2:1;5467:15;-1:-1:-1;;5463:29:1;5454:39;;;;5495:4;5450:50;;5035:471;-1:-1:-1;;5035:471:1:o;6163:488::-;-1:-1:-1;;;;;6432:15:1;;;6414:34;;6484:15;;6479:2;6464:18;;6457:43;6531:2;6516:18;;6509:34;;;6579:3;6574:2;6559:18;;6552:31;;;6357:4;;6600:45;;6625:19;;6617:6;6600:45;:::i;:::-;6592:53;6163:488;-1:-1:-1;;;;;;6163:488:1:o;7030:219::-;7179:2;7168:9;7161:21;7142:4;7199:44;7239:2;7228:9;7224:18;7216:6;7199:44;:::i;7611:352::-;7813:2;7795:21;;;7852:2;7832:18;;;7825:30;7891;7886:2;7871:18;;7864:58;7954:2;7939:18;;7611:352::o;10198:342::-;10400:2;10382:21;;;10439:2;10419:18;;;10412:30;-1:-1:-1;;;10473:2:1;10458:18;;10451:48;10531:2;10516:18;;10198:342::o;11266:356::-;11468:2;11450:21;;;11487:18;;;11480:30;11546:34;11541:2;11526:18;;11519:62;11613:2;11598:18;;11266:356::o;12043:411::-;12245:2;12227:21;;;12284:2;12264:18;;;12257:30;12323:34;12318:2;12303:18;;12296:62;-1:-1:-1;;;12389:2:1;12374:18;;12367:45;12444:3;12429:19;;12043:411::o;13449:275::-;13520:2;13514:9;13585:2;13566:13;;-1:-1:-1;;13562:27:1;13550:40;;13620:18;13605:34;;13641:22;;;13602:62;13599:88;;;13667:18;;:::i;:::-;13703:2;13696:22;13449:275;;-1:-1:-1;13449:275:1:o;13729:128::-;13769:3;13800:1;13796:6;13793:1;13790:13;13787:39;;;13806:18;;:::i;:::-;-1:-1:-1;13842:9:1;;13729:128::o;13862:217::-;13902:1;13928;13918:132;;13972:10;13967:3;13963:20;13960:1;13953:31;14007:4;14004:1;13997:15;14035:4;14032:1;14025:15;13918:132;-1:-1:-1;14064:9:1;;13862:217::o;14084:168::-;14124:7;14190:1;14186;14182:6;14178:14;14175:1;14172:21;14167:1;14160:9;14153:17;14149:45;14146:71;;;14197:18;;:::i;:::-;-1:-1:-1;14237:9:1;;14084:168::o;14257:380::-;14336:1;14332:12;;;;14379;;;14400:61;;14454:4;14446:6;14442:17;14432:27;;14400:61;14507:2;14499:6;14496:14;14476:18;14473:38;14470:161;;;14553:10;14548:3;14544:20;14541:1;14534:31;14588:4;14585:1;14578:15;14616:4;14613:1;14606:15;14470:161;;14257:380;;;:::o;14642:135::-;14681:3;-1:-1:-1;;14702:17:1;;14699:43;;;14722:18;;:::i;:::-;-1:-1:-1;14769:1:1;14758:13;;14642:135::o;14782:127::-;14843:10;14838:3;14834:20;14831:1;14824:31;14874:4;14871:1;14864:15;14898:4;14895:1;14888:15;14914:127;14975:10;14970:3;14966:20;14963:1;14956:31;15006:4;15003:1;14996:15;15030:4;15027:1;15020:15;15046:127;15107:10;15102:3;15098:20;15095:1;15088:31;15138:4;15135:1;15128:15;15162:4;15159:1;15152:15;15178:127;15239:10;15234:3;15230:20;15227:1;15220:31;15270:4;15267:1;15260:15;15294:4;15291:1;15284:15;15310:131;-1:-1:-1;;;;;;15384:32:1;;15374:43;;15364:71;;15431:1;15428;15421:12

Swarm Source

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