ETH Price: $3,506.80 (+4.03%)
Gas: 4 Gwei

Token

Beta Calls Pass ()
 

Overview

Max Total Supply

0

Holders

173

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
hereliesmyhopesanddreams.eth
0xba7933402348a902064499ed883c49843eeb7019
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:
BetaCalls

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-10-16
*/

//////////////////////////////////////////////////////////////
//                                                          //
//   Auditing, Website, and Deployment by @ViperwareLabs    //
//                                                          //
//////////////////////////////////////////////////////////////


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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree 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 Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(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++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        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 (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// 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/ERC1155/IERC1155Receiver.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;


/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/token/ERC1155/IERC1155.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;







/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: address zero is not a valid owner");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `ids` and `amounts` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

// File: betacalls.sol



// Contract by @UnchainedAgency

pragma solidity ^0.8.4;




contract BetaCalls is ERC1155, Ownable {

    event Mint(address indexed to, uint256[] indexed tokenId);
    event Revoke(address indexed to, uint256[] indexed tokenId);

    string public name = "Beta Calls Pass";

    string private tokenURI = "ipfs://bafybeibmwdlkysyjixyxdua5bi4bkq7lnrj5r5pn3trrtunuz42vgitnlm/0.json";
    bytes32 public whitelistMerkleRoot;


    constructor() ERC1155("Beta Calls") { }

    function claim(bytes32[] calldata _merkleProof) public {

        require(balanceOf(msg.sender, 0) == 0, "Already Holding Beta Calls Pass");

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, whitelistMerkleRoot, leaf), "Invalid Merkle Proof");



        _mint(msg.sender, 0, 1, "");

    }

    function mint(address to) public onlyOwner {

        require(balanceOf(to, 0) == 0, "Already Holding Beta Calls Pass");

        _mint(to, 0, 1, "");
    }

    function massMint(address[] calldata to) public onlyOwner {

        for (uint i = 0; i < to.length; i++) {

            require(balanceOf(to[i], 0) == 0, "Already Holding Beta Calls Pass");

            _mint(to[i], 0, 1, "");

        }

    }

    function revoke(address wallet) external onlyOwner {
        _burn(wallet, 0, balanceOf(wallet, 0));
    }

    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal override virtual {

    require(from == address(0) || to == address(0), "Not allowed to transfer token");

    }

    function _afterTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal override virtual {

        if (from == address(0)) {
            emit Mint(to, ids);
        } else if (to == address(0)) {
            emit Revoke(to, ids);
        }

    }

    function uri(uint256 _id) override public view returns (string memory) {
        return(tokenURI);
    }

    function setTokenURI(string memory _uri) public onlyOwner {

        tokenURI = _uri;

    }

    function setWhitelistMerkleRoot(bytes32 _merkleRoot) public onlyOwner {

        whitelistMerkleRoot = _merkleRoot;

    }


}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"to","type":"address"},{"indexed":true,"internalType":"uint256[]","name":"tokenId","type":"uint256[]"}],"name":"Mint","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":"to","type":"address"},{"indexed":true,"internalType":"uint256[]","name":"tokenId","type":"uint256[]"}],"name":"Revoke","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"}],"name":"massMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"revoke","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"}]

60c0604052600f60808190526e426574612043616c6c73205061737360881b60a09081526200003291600491906200011b565b50604051806080016040528060498152602001620021db60499139805162000063916005916020909101906200011b565b503480156200007157600080fd5b5060408051808201909152600a815269426574612043616c6c7360b01b60208201526200009e81620000b0565b50620000aa33620000c9565b620001fe565b8051620000c59060029060208401906200011b565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012990620001c1565b90600052602060002090601f0160209004810192826200014d576000855562000198565b82601f106200016857805160ff191683800117855562000198565b8280016001018555821562000198579182015b82811115620001985782518255916020019190600101906200017b565b50620001a6929150620001aa565b5090565b5b80821115620001a65760008155600101620001ab565b600181811c90821680620001d657607f821691505b60208210811415620001f857634e487b7160e01b600052602260045260246000fd5b50919050565b611fcd806200020e6000396000f3fe608060405234801561001057600080fd5b50600436106101205760003560e01c80638da5cb5b116100ad578063e0df5b6f11610071578063e0df5b6f14610256578063e3d8bbe514610269578063e985e9c51461027c578063f242432a146102b8578063f2fde38b146102cb57600080fd5b80638da5cb5b146101f9578063a22cb46514610214578063aa98e0c614610227578063b391c50814610230578063bd32fb661461024357600080fd5b80632eb2c2d6116100f45780632eb2c2d6146101965780634e1273f4146101ab5780636a627842146101cb578063715018a6146101de57806374a8f103146101e657600080fd5b8062fdd58e1461012557806301ffc9a71461014b57806306fdde031461016e5780630e89341c14610183575b600080fd5b6101386101333660046118e7565b6102de565b6040519081526020015b60405180910390f35b61015e610159366004611a3d565b610374565b6040519015158152602001610142565b6101766103c6565b6040516101429190611c6a565b610176610191366004611a24565b610454565b6101a96101a436600461179c565b6104e8565b005b6101be6101b9366004611953565b610534565b6040516101429190611c29565b6101a96101d936600461174e565b61065e565b6101a96106ae565b6101a96101f436600461174e565b6106c2565b6003546040516001600160a01b039091168152602001610142565b6101a96102223660046118ab565b6106e0565b61013860065481565b6101a961023e366004611911565b6106ef565b6101a9610251366004611a24565b6107f6565b6101a9610264366004611a77565b610803565b6101a9610277366004611911565b61081e565b61015e61028a366004611769565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6101a96102c6366004611846565b6108d4565b6101a96102d936600461174e565b610919565b60006001600160a01b03831661034e5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b14806103a557506001600160e01b031982166303a24d0760e21b145b806103c057506301ffc9a760e01b6001600160e01b03198316145b92915050565b600480546103d390611e16565b80601f01602080910402602001604051908101604052809291908181526020018280546103ff90611e16565b801561044c5780601f106104215761010080835404028352916020019161044c565b820191906000526020600020905b81548152906001019060200180831161042f57829003601f168201915b505050505081565b60606005805461046390611e16565b80601f016020809104026020016040519081016040528092919081815260200182805461048f90611e16565b80156104dc5780601f106104b1576101008083540402835291602001916104dc565b820191906000526020600020905b8154815290600101906020018083116104bf57829003601f168201915b50505050509050919050565b6001600160a01b0385163314806105045750610504853361028a565b6105205760405162461bcd60e51b815260040161034590611c7d565b61052d858585858561098f565b5050505050565b606081518351146105995760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610345565b6000835167ffffffffffffffff8111156105b5576105b5611ec5565b6040519080825280602002602001820160405280156105de578160200160208202803683370190505b50905060005b84518110156106565761062985828151811061060257610602611eaf565b602002602001015185838151811061061c5761061c611eaf565b60200260200101516102de565b82828151811061063b5761063b611eaf565b602090810291909101015261064f81611e7e565b90506105e4565b509392505050565b610666610b88565b6106718160006102de565b1561068e5760405162461bcd60e51b815260040161034590611d14565b6106ab816000600160405180602001604052806000815250610be2565b50565b6106b6610b88565b6106c06000610d14565b565b6106ca610b88565b6106ab8160006106db8460006102de565b610d66565b6106eb338383610f00565b5050565b6106fa3360006102de565b156107175760405162461bcd60e51b815260040161034590611d14565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610791838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506006549150849050610fe1565b6107d45760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21026b2b935b63290283937b7b360611b6044820152606401610345565b6107f1336000600160405180602001604052806000815250610be2565b505050565b6107fe610b88565b600655565b61080b610b88565b80516106eb906005906020840190611558565b610826610b88565b60005b818110156107f15761086283838381811061084657610846611eaf565b905060200201602081019061085b919061174e565b60006102de565b1561087f5760405162461bcd60e51b815260040161034590611d14565b6108c283838381811061089457610894611eaf565b90506020020160208101906108a9919061174e565b6000600160405180602001604052806000815250610be2565b806108cc81611e7e565b915050610829565b6001600160a01b0385163314806108f057506108f0853361028a565b61090c5760405162461bcd60e51b815260040161034590611c7d565b61052d8585858585610ff7565b610921610b88565b6001600160a01b0381166109865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610345565b6106ab81610d14565b81518351146109f15760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610345565b6001600160a01b038416610a175760405162461bcd60e51b815260040161034590611d4b565b33610a2681878787878761113d565b60005b8451811015610b0c576000858281518110610a4657610a46611eaf565b602002602001015190506000858381518110610a6457610a64611eaf565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610ab45760405162461bcd60e51b815260040161034590611d90565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610af1908490611dfe565b9250508190555050505080610b0590611e7e565b9050610a29565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610b5c929190611c3c565b60405180910390a4610b728187878787876111a6565b610b80818787878787611261565b505050505050565b6003546001600160a01b031633146106c05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610345565b6001600160a01b038416610c425760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610345565b336000610c4e856113cc565b90506000610c5b856113cc565b9050610c6c8360008985858961113d565b6000868152602081815260408083206001600160a01b038b16845290915281208054879290610c9c908490611dfe565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610cfc836000898585896111a6565b610d0b83600089898989611417565b50505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610dc85760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b6064820152608401610345565b336000610dd4846113cc565b90506000610de1846113cc565b9050610e018387600085856040518060200160405280600081525061113d565b6000858152602081815260408083206001600160a01b038a16845290915290205484811015610e7e5760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b6064820152608401610345565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610d0b848860008686604051806020016040528060008152506111a6565b816001600160a01b0316836001600160a01b03161415610f745760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610345565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b600082610fee85846114e1565b14949350505050565b6001600160a01b03841661101d5760405162461bcd60e51b815260040161034590611d4b565b336000611029856113cc565b90506000611036856113cc565b905061104683898985858961113d565b6000868152602081815260408083206001600160a01b038c168452909152902054858110156110875760405162461bcd60e51b815260040161034590611d90565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a168252812080548892906110c4908490611dfe565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611124848a8a86868a6111a6565b611132848a8a8a8a8a611417565b505050505050505050565b6001600160a01b038516158061115a57506001600160a01b038416155b610b805760405162461bcd60e51b815260206004820152601d60248201527f4e6f7420616c6c6f77656420746f207472616e7366657220746f6b656e0000006044820152606401610345565b6001600160a01b03851661120257826040516111c29190611b50565b604051908190038120906001600160a01b038616907f34e2ff3ca3b7b280f43a24b42d33e7e42e31ace25170aaab6bf694fb545fd38690600090a3610b80565b6001600160a01b038416610b80578260405161121e9190611b50565b604051908190038120906001600160a01b038616907fe8a8af4cc418b64b079fa1fc70a5eb37ab4e034e51e3d0d443b66099b3ff57c790600090a3505050505050565b6001600160a01b0384163b15610b805760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906112a59089908990889088908890600401611b86565b602060405180830381600087803b1580156112bf57600080fd5b505af19250505080156112ef575060408051601f3d908101601f191682019092526112ec91810190611a5a565b60015b61139c576112fb611edb565b806308c379a014156113355750611310611ef7565b8061131b5750611337565b8060405162461bcd60e51b81526004016103459190611c6a565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610345565b6001600160e01b0319811663bc197c8160e01b14610d0b5760405162461bcd60e51b815260040161034590611ccc565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061140657611406611eaf565b602090810291909101015292915050565b6001600160a01b0384163b15610b805760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061145b9089908990889088908890600401611be4565b602060405180830381600087803b15801561147557600080fd5b505af19250505080156114a5575060408051601f3d908101601f191682019092526114a291810190611a5a565b60015b6114b1576112fb611edb565b6001600160e01b0319811663f23a6e6160e01b14610d0b5760405162461bcd60e51b815260040161034590611ccc565b600081815b8451811015610656576115128286838151811061150557611505611eaf565b6020026020010151611526565b91508061151e81611e7e565b9150506114e6565b6000818310611542576000828152602084905260409020611551565b60008381526020839052604090205b9392505050565b82805461156490611e16565b90600052602060002090601f01602090048101928261158657600085556115cc565b82601f1061159f57805160ff19168380011785556115cc565b828001600101855582156115cc579182015b828111156115cc5782518255916020019190600101906115b1565b506115d89291506115dc565b5090565b5b808211156115d857600081556001016115dd565b600067ffffffffffffffff83111561160b5761160b611ec5565b604051611622601f8501601f191660200182611e51565b80915083815284848401111561163757600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461166657600080fd5b919050565b60008083601f84011261167d57600080fd5b50813567ffffffffffffffff81111561169557600080fd5b6020830191508360208260051b85010111156116b057600080fd5b9250929050565b600082601f8301126116c857600080fd5b813560206116d582611dda565b6040516116e28282611e51565b8381528281019150858301600585901b8701840188101561170257600080fd5b60005b8581101561172157813584529284019290840190600101611705565b5090979650505050505050565b600082601f83011261173f57600080fd5b611551838335602085016115f1565b60006020828403121561176057600080fd5b6115518261164f565b6000806040838503121561177c57600080fd5b6117858361164f565b91506117936020840161164f565b90509250929050565b600080600080600060a086880312156117b457600080fd5b6117bd8661164f565b94506117cb6020870161164f565b9350604086013567ffffffffffffffff808211156117e857600080fd5b6117f489838a016116b7565b9450606088013591508082111561180a57600080fd5b61181689838a016116b7565b9350608088013591508082111561182c57600080fd5b506118398882890161172e565b9150509295509295909350565b600080600080600060a0868803121561185e57600080fd5b6118678661164f565b94506118756020870161164f565b93506040860135925060608601359150608086013567ffffffffffffffff81111561189f57600080fd5b6118398882890161172e565b600080604083850312156118be57600080fd5b6118c78361164f565b9150602083013580151581146118dc57600080fd5b809150509250929050565b600080604083850312156118fa57600080fd5b6119038361164f565b946020939093013593505050565b6000806020838503121561192457600080fd5b823567ffffffffffffffff81111561193b57600080fd5b6119478582860161166b565b90969095509350505050565b6000806040838503121561196657600080fd5b823567ffffffffffffffff8082111561197e57600080fd5b818501915085601f83011261199257600080fd5b8135602061199f82611dda565b6040516119ac8282611e51565b8381528281019150858301600585901b870184018b10156119cc57600080fd5b600096505b848710156119f6576119e28161164f565b8352600196909601959183019183016119d1565b5096505086013592505080821115611a0d57600080fd5b50611a1a858286016116b7565b9150509250929050565b600060208284031215611a3657600080fd5b5035919050565b600060208284031215611a4f57600080fd5b813561155181611f81565b600060208284031215611a6c57600080fd5b815161155181611f81565b600060208284031215611a8957600080fd5b813567ffffffffffffffff811115611aa057600080fd5b8201601f81018413611ab157600080fd5b611ac0848235602084016115f1565b949350505050565b600081518084526020808501945080840160005b83811015611af857815187529582019590820190600101611adc565b509495945050505050565b6000815180845260005b81811015611b2957602081850181015186830182015201611b0d565b81811115611b3b576000602083870101525b50601f01601f19169290920160200192915050565b815160009082906020808601845b83811015611b7a57815185529382019390820190600101611b5e565b50929695505050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090611bb290830186611ac8565b8281036060840152611bc48186611ac8565b90508281036080840152611bd88185611b03565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611c1e90830184611b03565b979650505050505050565b6020815260006115516020830184611ac8565b604081526000611c4f6040830185611ac8565b8281036020840152611c618185611ac8565b95945050505050565b6020815260006115516020830184611b03565b6020808252602f908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526e195c881b9bdc88185c1c1c9bdd9959608a1b606082015260800190565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6020808252601f908201527f416c726561647920486f6c64696e6720426574612043616c6c73205061737300604082015260600190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b600067ffffffffffffffff821115611df457611df4611ec5565b5060051b60200190565b60008219821115611e1157611e11611e99565b500190565b600181811c90821680611e2a57607f821691505b60208210811415611e4b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715611e7757611e77611ec5565b6040525050565b6000600019821415611e9257611e92611e99565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115611ef45760046000803e5060005160e01c5b90565b600060443d1015611f055790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611f3557505050505090565b8285019150815181811115611f4d5750505050505090565b843d8701016020828501011115611f675750505050505090565b611f7660208286010187611e51565b509095945050505050565b6001600160e01b0319811681146106ab57600080fdfea26469706673582212201355d4cb75550e980b764820ee74a4d1e3df115e72cce25b713cc6cbd8ce86d264736f6c63430008070033697066733a2f2f62616679626569626d77646c6b7973796a6978797864756135626934626b71376c6e726a357235706e3374727274756e757a3432766769746e6c6d2f302e6a736f6e

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101205760003560e01c80638da5cb5b116100ad578063e0df5b6f11610071578063e0df5b6f14610256578063e3d8bbe514610269578063e985e9c51461027c578063f242432a146102b8578063f2fde38b146102cb57600080fd5b80638da5cb5b146101f9578063a22cb46514610214578063aa98e0c614610227578063b391c50814610230578063bd32fb661461024357600080fd5b80632eb2c2d6116100f45780632eb2c2d6146101965780634e1273f4146101ab5780636a627842146101cb578063715018a6146101de57806374a8f103146101e657600080fd5b8062fdd58e1461012557806301ffc9a71461014b57806306fdde031461016e5780630e89341c14610183575b600080fd5b6101386101333660046118e7565b6102de565b6040519081526020015b60405180910390f35b61015e610159366004611a3d565b610374565b6040519015158152602001610142565b6101766103c6565b6040516101429190611c6a565b610176610191366004611a24565b610454565b6101a96101a436600461179c565b6104e8565b005b6101be6101b9366004611953565b610534565b6040516101429190611c29565b6101a96101d936600461174e565b61065e565b6101a96106ae565b6101a96101f436600461174e565b6106c2565b6003546040516001600160a01b039091168152602001610142565b6101a96102223660046118ab565b6106e0565b61013860065481565b6101a961023e366004611911565b6106ef565b6101a9610251366004611a24565b6107f6565b6101a9610264366004611a77565b610803565b6101a9610277366004611911565b61081e565b61015e61028a366004611769565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6101a96102c6366004611846565b6108d4565b6101a96102d936600461174e565b610919565b60006001600160a01b03831661034e5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b14806103a557506001600160e01b031982166303a24d0760e21b145b806103c057506301ffc9a760e01b6001600160e01b03198316145b92915050565b600480546103d390611e16565b80601f01602080910402602001604051908101604052809291908181526020018280546103ff90611e16565b801561044c5780601f106104215761010080835404028352916020019161044c565b820191906000526020600020905b81548152906001019060200180831161042f57829003601f168201915b505050505081565b60606005805461046390611e16565b80601f016020809104026020016040519081016040528092919081815260200182805461048f90611e16565b80156104dc5780601f106104b1576101008083540402835291602001916104dc565b820191906000526020600020905b8154815290600101906020018083116104bf57829003601f168201915b50505050509050919050565b6001600160a01b0385163314806105045750610504853361028a565b6105205760405162461bcd60e51b815260040161034590611c7d565b61052d858585858561098f565b5050505050565b606081518351146105995760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610345565b6000835167ffffffffffffffff8111156105b5576105b5611ec5565b6040519080825280602002602001820160405280156105de578160200160208202803683370190505b50905060005b84518110156106565761062985828151811061060257610602611eaf565b602002602001015185838151811061061c5761061c611eaf565b60200260200101516102de565b82828151811061063b5761063b611eaf565b602090810291909101015261064f81611e7e565b90506105e4565b509392505050565b610666610b88565b6106718160006102de565b1561068e5760405162461bcd60e51b815260040161034590611d14565b6106ab816000600160405180602001604052806000815250610be2565b50565b6106b6610b88565b6106c06000610d14565b565b6106ca610b88565b6106ab8160006106db8460006102de565b610d66565b6106eb338383610f00565b5050565b6106fa3360006102de565b156107175760405162461bcd60e51b815260040161034590611d14565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610791838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506006549150849050610fe1565b6107d45760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21026b2b935b63290283937b7b360611b6044820152606401610345565b6107f1336000600160405180602001604052806000815250610be2565b505050565b6107fe610b88565b600655565b61080b610b88565b80516106eb906005906020840190611558565b610826610b88565b60005b818110156107f15761086283838381811061084657610846611eaf565b905060200201602081019061085b919061174e565b60006102de565b1561087f5760405162461bcd60e51b815260040161034590611d14565b6108c283838381811061089457610894611eaf565b90506020020160208101906108a9919061174e565b6000600160405180602001604052806000815250610be2565b806108cc81611e7e565b915050610829565b6001600160a01b0385163314806108f057506108f0853361028a565b61090c5760405162461bcd60e51b815260040161034590611c7d565b61052d8585858585610ff7565b610921610b88565b6001600160a01b0381166109865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610345565b6106ab81610d14565b81518351146109f15760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610345565b6001600160a01b038416610a175760405162461bcd60e51b815260040161034590611d4b565b33610a2681878787878761113d565b60005b8451811015610b0c576000858281518110610a4657610a46611eaf565b602002602001015190506000858381518110610a6457610a64611eaf565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610ab45760405162461bcd60e51b815260040161034590611d90565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610af1908490611dfe565b9250508190555050505080610b0590611e7e565b9050610a29565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610b5c929190611c3c565b60405180910390a4610b728187878787876111a6565b610b80818787878787611261565b505050505050565b6003546001600160a01b031633146106c05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610345565b6001600160a01b038416610c425760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610345565b336000610c4e856113cc565b90506000610c5b856113cc565b9050610c6c8360008985858961113d565b6000868152602081815260408083206001600160a01b038b16845290915281208054879290610c9c908490611dfe565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610cfc836000898585896111a6565b610d0b83600089898989611417565b50505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610dc85760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b6064820152608401610345565b336000610dd4846113cc565b90506000610de1846113cc565b9050610e018387600085856040518060200160405280600081525061113d565b6000858152602081815260408083206001600160a01b038a16845290915290205484811015610e7e5760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b6064820152608401610345565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610d0b848860008686604051806020016040528060008152506111a6565b816001600160a01b0316836001600160a01b03161415610f745760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610345565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b600082610fee85846114e1565b14949350505050565b6001600160a01b03841661101d5760405162461bcd60e51b815260040161034590611d4b565b336000611029856113cc565b90506000611036856113cc565b905061104683898985858961113d565b6000868152602081815260408083206001600160a01b038c168452909152902054858110156110875760405162461bcd60e51b815260040161034590611d90565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a168252812080548892906110c4908490611dfe565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611124848a8a86868a6111a6565b611132848a8a8a8a8a611417565b505050505050505050565b6001600160a01b038516158061115a57506001600160a01b038416155b610b805760405162461bcd60e51b815260206004820152601d60248201527f4e6f7420616c6c6f77656420746f207472616e7366657220746f6b656e0000006044820152606401610345565b6001600160a01b03851661120257826040516111c29190611b50565b604051908190038120906001600160a01b038616907f34e2ff3ca3b7b280f43a24b42d33e7e42e31ace25170aaab6bf694fb545fd38690600090a3610b80565b6001600160a01b038416610b80578260405161121e9190611b50565b604051908190038120906001600160a01b038616907fe8a8af4cc418b64b079fa1fc70a5eb37ab4e034e51e3d0d443b66099b3ff57c790600090a3505050505050565b6001600160a01b0384163b15610b805760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906112a59089908990889088908890600401611b86565b602060405180830381600087803b1580156112bf57600080fd5b505af19250505080156112ef575060408051601f3d908101601f191682019092526112ec91810190611a5a565b60015b61139c576112fb611edb565b806308c379a014156113355750611310611ef7565b8061131b5750611337565b8060405162461bcd60e51b81526004016103459190611c6a565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610345565b6001600160e01b0319811663bc197c8160e01b14610d0b5760405162461bcd60e51b815260040161034590611ccc565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061140657611406611eaf565b602090810291909101015292915050565b6001600160a01b0384163b15610b805760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061145b9089908990889088908890600401611be4565b602060405180830381600087803b15801561147557600080fd5b505af19250505080156114a5575060408051601f3d908101601f191682019092526114a291810190611a5a565b60015b6114b1576112fb611edb565b6001600160e01b0319811663f23a6e6160e01b14610d0b5760405162461bcd60e51b815260040161034590611ccc565b600081815b8451811015610656576115128286838151811061150557611505611eaf565b6020026020010151611526565b91508061151e81611e7e565b9150506114e6565b6000818310611542576000828152602084905260409020611551565b60008381526020839052604090205b9392505050565b82805461156490611e16565b90600052602060002090601f01602090048101928261158657600085556115cc565b82601f1061159f57805160ff19168380011785556115cc565b828001600101855582156115cc579182015b828111156115cc5782518255916020019190600101906115b1565b506115d89291506115dc565b5090565b5b808211156115d857600081556001016115dd565b600067ffffffffffffffff83111561160b5761160b611ec5565b604051611622601f8501601f191660200182611e51565b80915083815284848401111561163757600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461166657600080fd5b919050565b60008083601f84011261167d57600080fd5b50813567ffffffffffffffff81111561169557600080fd5b6020830191508360208260051b85010111156116b057600080fd5b9250929050565b600082601f8301126116c857600080fd5b813560206116d582611dda565b6040516116e28282611e51565b8381528281019150858301600585901b8701840188101561170257600080fd5b60005b8581101561172157813584529284019290840190600101611705565b5090979650505050505050565b600082601f83011261173f57600080fd5b611551838335602085016115f1565b60006020828403121561176057600080fd5b6115518261164f565b6000806040838503121561177c57600080fd5b6117858361164f565b91506117936020840161164f565b90509250929050565b600080600080600060a086880312156117b457600080fd5b6117bd8661164f565b94506117cb6020870161164f565b9350604086013567ffffffffffffffff808211156117e857600080fd5b6117f489838a016116b7565b9450606088013591508082111561180a57600080fd5b61181689838a016116b7565b9350608088013591508082111561182c57600080fd5b506118398882890161172e565b9150509295509295909350565b600080600080600060a0868803121561185e57600080fd5b6118678661164f565b94506118756020870161164f565b93506040860135925060608601359150608086013567ffffffffffffffff81111561189f57600080fd5b6118398882890161172e565b600080604083850312156118be57600080fd5b6118c78361164f565b9150602083013580151581146118dc57600080fd5b809150509250929050565b600080604083850312156118fa57600080fd5b6119038361164f565b946020939093013593505050565b6000806020838503121561192457600080fd5b823567ffffffffffffffff81111561193b57600080fd5b6119478582860161166b565b90969095509350505050565b6000806040838503121561196657600080fd5b823567ffffffffffffffff8082111561197e57600080fd5b818501915085601f83011261199257600080fd5b8135602061199f82611dda565b6040516119ac8282611e51565b8381528281019150858301600585901b870184018b10156119cc57600080fd5b600096505b848710156119f6576119e28161164f565b8352600196909601959183019183016119d1565b5096505086013592505080821115611a0d57600080fd5b50611a1a858286016116b7565b9150509250929050565b600060208284031215611a3657600080fd5b5035919050565b600060208284031215611a4f57600080fd5b813561155181611f81565b600060208284031215611a6c57600080fd5b815161155181611f81565b600060208284031215611a8957600080fd5b813567ffffffffffffffff811115611aa057600080fd5b8201601f81018413611ab157600080fd5b611ac0848235602084016115f1565b949350505050565b600081518084526020808501945080840160005b83811015611af857815187529582019590820190600101611adc565b509495945050505050565b6000815180845260005b81811015611b2957602081850181015186830182015201611b0d565b81811115611b3b576000602083870101525b50601f01601f19169290920160200192915050565b815160009082906020808601845b83811015611b7a57815185529382019390820190600101611b5e565b50929695505050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090611bb290830186611ac8565b8281036060840152611bc48186611ac8565b90508281036080840152611bd88185611b03565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611c1e90830184611b03565b979650505050505050565b6020815260006115516020830184611ac8565b604081526000611c4f6040830185611ac8565b8281036020840152611c618185611ac8565b95945050505050565b6020815260006115516020830184611b03565b6020808252602f908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526e195c881b9bdc88185c1c1c9bdd9959608a1b606082015260800190565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6020808252601f908201527f416c726561647920486f6c64696e6720426574612043616c6c73205061737300604082015260600190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b600067ffffffffffffffff821115611df457611df4611ec5565b5060051b60200190565b60008219821115611e1157611e11611e99565b500190565b600181811c90821680611e2a57607f821691505b60208210811415611e4b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715611e7757611e77611ec5565b6040525050565b6000600019821415611e9257611e92611e99565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115611ef45760046000803e5060005160e01c5b90565b600060443d1015611f055790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611f3557505050505090565b8285019150815181811115611f4d5750505050505090565b843d8701016020828501011115611f675750505050505090565b611f7660208286010187611e51565b509095945050505050565b6001600160e01b0319811681146106ab57600080fdfea26469706673582212201355d4cb75550e980b764820ee74a4d1e3df115e72cce25b713cc6cbd8ce86d264736f6c63430008070033

Deployed Bytecode Sourcemap

48298:2435:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32673:230;;;;;;:::i;:::-;;:::i;:::-;;;12441:25:1;;;12429:2;12414:18;32673:230:0;;;;;;;;31696:310;;;;;;:::i;:::-;;:::i;:::-;;;12268:14:1;;12261:22;12243:41;;12231:2;12216:18;31696:310:0;12103:187:1;48478:38:0;;;:::i;:::-;;;;;;;:::i;50382:106::-;;;;;;:::i;:::-;;:::i;34617:439::-;;;;;;:::i;:::-;;:::i;:::-;;33069:524;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49098:161::-;;;;;;:::i;:::-;;:::i;11825:103::-;;;:::i;49530:108::-;;;;;;:::i;:::-;;:::i;11177:87::-;11250:6;;11177:87;;-1:-1:-1;;;;;11250:6:0;;;9909:51:1;;9897:2;9882:18;11177:87:0;9763:203:1;33666:155:0;;;;;;:::i;:::-;;:::i;48633:34::-;;;;;;48725:365;;;;;;:::i;:::-;;:::i;50600:126::-;;;;;;:::i;:::-;;:::i;50496:96::-;;;;;;:::i;:::-;;:::i;49267:255::-;;;;;;:::i;:::-;;:::i;33893:168::-;;;;;;:::i;:::-;-1:-1:-1;;;;;34016:27:0;;;33992:4;34016:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;33893:168;34133:407;;;;;;:::i;:::-;;:::i;12083:201::-;;;;;;:::i;:::-;;:::i;32673:230::-;32759:7;-1:-1:-1;;;;;32787:21:0;;32779:76;;;;-1:-1:-1;;;32779:76:0;;15679:2:1;32779:76:0;;;15661:21:1;15718:2;15698:18;;;15691:30;15757:34;15737:18;;;15730:62;-1:-1:-1;;;15808:18:1;;;15801:40;15858:19;;32779:76:0;;;;;;;;;-1:-1:-1;32873:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;32873:22:0;;;;;;;;;;;;32673:230::o;31696:310::-;31798:4;-1:-1:-1;;;;;;31835:41:0;;-1:-1:-1;;;31835:41:0;;:110;;-1:-1:-1;;;;;;;31893:52:0;;-1:-1:-1;;;31893:52:0;31835:110;:163;;;-1:-1:-1;;;;;;;;;;23086:40:0;;;31962:36;31815:183;31696:310;-1:-1:-1;;31696:310:0:o;48478:38::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50382:106::-;50438:13;50471:8;50464:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50382:106;;;:::o;34617:439::-;-1:-1:-1;;;;;34850:20:0;;9808:10;34850:20;;:60;;-1:-1:-1;34874:36:0;34891:4;9808:10;33893:168;:::i;34874:36::-;34828:157;;;;-1:-1:-1;;;34828:157:0;;;;;;;:::i;:::-;34996:52;35019:4;35025:2;35029:3;35034:7;35043:4;34996:22;:52::i;:::-;34617:439;;;;;:::o;33069:524::-;33225:16;33286:3;:10;33267:8;:15;:29;33259:83;;;;-1:-1:-1;;;33259:83:0;;18082:2:1;33259:83:0;;;18064:21:1;18121:2;18101:18;;;18094:30;18160:34;18140:18;;;18133:62;-1:-1:-1;;;18211:18:1;;;18204:39;18260:19;;33259:83:0;17880:405:1;33259:83:0;33355:30;33402:8;:15;33388:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33388:30:0;;33355:63;;33436:9;33431:122;33455:8;:15;33451:1;:19;33431:122;;;33511:30;33521:8;33530:1;33521:11;;;;;;;;:::i;:::-;;;;;;;33534:3;33538:1;33534:6;;;;;;;;:::i;:::-;;;;;;;33511:9;:30::i;:::-;33492:13;33506:1;33492:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;33472:3;;;:::i;:::-;;;33431:122;;;-1:-1:-1;33572:13:0;33069:524;-1:-1:-1;;;33069:524:0:o;49098:161::-;11063:13;:11;:13::i;:::-;49162:16:::1;49172:2;49176:1;49162:9;:16::i;:::-;:21:::0;49154:65:::1;;;;-1:-1:-1::0;;;49154:65:0::1;;;;;;;:::i;:::-;49232:19;49238:2;49242:1;49245;49232:19;;;;;;;;;;;::::0;:5:::1;:19::i;:::-;49098:161:::0;:::o;11825:103::-;11063:13;:11;:13::i;:::-;11890:30:::1;11917:1;11890:18;:30::i;:::-;11825:103::o:0;49530:108::-;11063:13;:11;:13::i;:::-;49592:38:::1;49598:6;49606:1;49609:20;49619:6;49627:1;49609:9;:20::i;:::-;49592:5;:38::i;33666:155::-:0;33761:52;9808:10;33794:8;33804;33761:18;:52::i;:::-;33666:155;;:::o;48725:365::-;48801:24;48811:10;48823:1;48801:9;:24::i;:::-;:29;48793:73;;;;-1:-1:-1;;;48793:73:0;;;;;;;:::i;:::-;48904:28;;-1:-1:-1;;48921:10:0;9130:2:1;9126:15;9122:53;48904:28:0;;;9110:66:1;48879:12:0;;9192::1;;48904:28:0;;;;;;;;;;;;48894:39;;;;;;48879:54;;48952:59;48971:12;;48952:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48985:19:0;;;-1:-1:-1;49006:4:0;;-1:-1:-1;48952:18:0;:59::i;:::-;48944:92;;;;-1:-1:-1;;;48944:92:0;;18901:2:1;48944:92:0;;;18883:21:1;18940:2;18920:18;;;18913:30;-1:-1:-1;;;18959:18:1;;;18952:50;19019:18;;48944:92:0;18699:344:1;48944:92:0;49053:27;49059:10;49071:1;49074;49053:27;;;;;;;;;;;;:5;:27::i;:::-;48780:310;48725:365;;:::o;50600:126::-;11063:13;:11;:13::i;:::-;50683:19:::1;:33:::0;50600:126::o;50496:96::-;11063:13;:11;:13::i;:::-;50567:15;;::::1;::::0;:8:::1;::::0;:15:::1;::::0;::::1;::::0;::::1;:::i;49267:255::-:0;11063:13;:11;:13::i;:::-;49343:6:::1;49338:175;49355:13:::0;;::::1;49338:175;;;49400:19;49410:2;;49413:1;49410:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;49417:1;49400:9;:19::i;:::-;:24:::0;49392:68:::1;;;;-1:-1:-1::0;;;49392:68:0::1;;;;;;;:::i;:::-;49477:22;49483:2;;49486:1;49483:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;49490:1;49493;49477:22;;;;;;;;;;;::::0;:5:::1;:22::i;:::-;49370:3:::0;::::1;::::0;::::1;:::i;:::-;;;;49338:175;;34133:407:::0;-1:-1:-1;;;;;34341:20:0;;9808:10;34341:20;;:60;;-1:-1:-1;34365:36:0;34382:4;9808:10;33893:168;:::i;34365:36::-;34319:157;;;;-1:-1:-1;;;34319:157:0;;;;;;;:::i;:::-;34487:45;34505:4;34511:2;34515;34519:6;34527:4;34487:17;:45::i;12083:201::-;11063:13;:11;:13::i;:::-;-1:-1:-1;;;;;12172:22:0;::::1;12164:73;;;::::0;-1:-1:-1;;;12164:73:0;;14867:2:1;12164:73:0::1;::::0;::::1;14849:21:1::0;14906:2;14886:18;;;14879:30;14945:34;14925:18;;;14918:62;-1:-1:-1;;;14996:18:1;;;14989:36;15042:19;;12164:73:0::1;14665:402:1::0;12164:73:0::1;12248:28;12267:8;12248:18;:28::i;36852:1146::-:0;37079:7;:14;37065:3;:10;:28;37057:81;;;;-1:-1:-1;;;37057:81:0;;18492:2:1;37057:81:0;;;18474:21:1;18531:2;18511:18;;;18504:30;18570:34;18550:18;;;18543:62;-1:-1:-1;;;18621:18:1;;;18614:38;18669:19;;37057:81:0;18290:404:1;37057:81:0;-1:-1:-1;;;;;37157:16:0;;37149:66;;;;-1:-1:-1;;;37149:66:0;;;;;;;:::i;:::-;9808:10;37272:60;9808:10;37303:4;37309:2;37313:3;37318:7;37327:4;37272:20;:60::i;:::-;37350:9;37345:421;37369:3;:10;37365:1;:14;37345:421;;;37401:10;37414:3;37418:1;37414:6;;;;;;;;:::i;:::-;;;;;;;37401:19;;37435:14;37452:7;37460:1;37452:10;;;;;;;;:::i;:::-;;;;;;;;;;;;37479:19;37501:13;;;;;;;;;;-1:-1:-1;;;;;37501:19:0;;;;;;;;;;;;37452:10;;-1:-1:-1;37543:21:0;;;;37535:76;;;;-1:-1:-1;;;37535:76:0;;;;;;;:::i;:::-;37655:9;:13;;;;;;;;;;;-1:-1:-1;;;;;37655:19:0;;;;;;;;;;37677:20;;;37655:42;;37727:17;;;;;;;:27;;37677:20;;37655:9;37727:27;;37677:20;;37727:27;:::i;:::-;;;;;;;;37386:380;;;37381:3;;;;:::i;:::-;;;37345:421;;;;37813:2;-1:-1:-1;;;;;37783:47:0;37807:4;-1:-1:-1;;;;;37783:47:0;37797:8;-1:-1:-1;;;;;37783:47:0;;37817:3;37822:7;37783:47;;;;;;;:::i;:::-;;;;;;;;37843:59;37863:8;37873:4;37879:2;37883:3;37888:7;37897:4;37843:19;:59::i;:::-;37915:75;37951:8;37961:4;37967:2;37971:3;37976:7;37985:4;37915:35;:75::i;:::-;37046:952;36852:1146;;;;;:::o;11342:132::-;11250:6;;-1:-1:-1;;;;;11250:6:0;9808:10;11406:23;11398:68;;;;-1:-1:-1;;;11398:68:0;;17311:2:1;11398:68:0;;;17293:21:1;;;17330:18;;;17323:30;17389:34;17369:18;;;17362:62;17441:18;;11398:68:0;17109:356:1;39316:729:0;-1:-1:-1;;;;;39469:16:0;;39461:62;;;;-1:-1:-1;;;39461:62:0;;19250:2:1;39461:62:0;;;19232:21:1;19289:2;19269:18;;;19262:30;19328:34;19308:18;;;19301:62;-1:-1:-1;;;19379:18:1;;;19372:31;19420:19;;39461:62:0;19048:397:1;39461:62:0;9808:10;39536:16;39601:21;39619:2;39601:17;:21::i;:::-;39578:44;;39633:24;39660:25;39678:6;39660:17;:25::i;:::-;39633:52;;39698:66;39719:8;39737:1;39741:2;39745:3;39750:7;39759:4;39698:20;:66::i;:::-;39777:9;:13;;;;;;;;;;;-1:-1:-1;;;;;39777:17:0;;;;;;;;;:27;;39798:6;;39777:9;:27;;39798:6;;39777:27;:::i;:::-;;;;-1:-1:-1;;39820:52:0;;;19806:25:1;;;19862:2;19847:18;;19840:34;;;-1:-1:-1;;;;;39820:52:0;;;;39853:1;;39820:52;;;;;;19779:18:1;39820:52:0;;;;;;;39885:65;39905:8;39923:1;39927:2;39931:3;39936:7;39945:4;39885:19;:65::i;:::-;39963:74;39994:8;40012:1;40016:2;40020;40024:6;40032:4;39963:30;:74::i;:::-;39450:595;;;39316:729;;;;:::o;12444:191::-;12537:6;;;-1:-1:-1;;;;;12554:17:0;;;-1:-1:-1;;;;;;12554:17:0;;;;;;;12587:40;;12537:6;;;12554:17;12537:6;;12587:40;;12518:16;;12587:40;12507:128;12444:191;:::o;41559:808::-;-1:-1:-1;;;;;41686:18:0;;41678:66;;;;-1:-1:-1;;;41678:66:0;;16496:2:1;41678:66:0;;;16478:21:1;16535:2;16515:18;;;16508:30;16574:34;16554:18;;;16547:62;-1:-1:-1;;;16625:18:1;;;16618:33;16668:19;;41678:66:0;16294:399:1;41678:66:0;9808:10;41757:16;41822:21;41840:2;41822:17;:21::i;:::-;41799:44;;41854:24;41881:25;41899:6;41881:17;:25::i;:::-;41854:52;;41919:66;41940:8;41950:4;41964:1;41968:3;41973:7;41919:66;;;;;;;;;;;;:20;:66::i;:::-;41998:19;42020:13;;;;;;;;;;;-1:-1:-1;;;;;42020:19:0;;;;;;;;;;42058:21;;;;42050:70;;;;-1:-1:-1;;;42050:70:0;;15274:2:1;42050:70:0;;;15256:21:1;15313:2;15293:18;;;15286:30;15352:34;15332:18;;;15325:62;-1:-1:-1;;;15403:18:1;;;15396:34;15447:19;;42050:70:0;15072:400:1;42050:70:0;42156:9;:13;;;;;;;;;;;-1:-1:-1;;;;;42156:19:0;;;;;;;;;;;;42178:20;;;42156:42;;42227:54;;19806:25:1;;;19847:18;;;19840:34;;;42156:19:0;;42227:54;;;;;;19779:18:1;42227:54:0;;;;;;;42294:65;42314:8;42324:4;42338:1;42342:3;42347:7;42294:65;;;;;;;;;;;;:19;:65::i;43729:331::-;43884:8;-1:-1:-1;;;;;43875:17:0;:5;-1:-1:-1;;;;;43875:17:0;;;43867:71;;;;-1:-1:-1;;;43867:71:0;;17672:2:1;43867:71:0;;;17654:21:1;17711:2;17691:18;;;17684:30;17750:34;17730:18;;;17723:62;-1:-1:-1;;;17801:18:1;;;17794:39;17850:19;;43867:71:0;17470:405:1;43867:71:0;-1:-1:-1;;;;;43949:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;43949:46:0;;;;;;;;;;44011:41;;12243::1;;;44011::0;;12216:18:1;44011:41:0;;;;;;;43729:331;;;:::o;1543:190::-;1668:4;1721;1692:25;1705:5;1712:4;1692:12;:25::i;:::-;:33;;1543:190;-1:-1:-1;;;;1543:190:0:o;35520:974::-;-1:-1:-1;;;;;35708:16:0;;35700:66;;;;-1:-1:-1;;;35700:66:0;;;;;;;:::i;:::-;9808:10;35779:16;35844:21;35862:2;35844:17;:21::i;:::-;35821:44;;35876:24;35903:25;35921:6;35903:17;:25::i;:::-;35876:52;;35941:60;35962:8;35972:4;35978:2;35982:3;35987:7;35996:4;35941:20;:60::i;:::-;36014:19;36036:13;;;;;;;;;;;-1:-1:-1;;;;;36036:19:0;;;;;;;;;;36074:21;;;;36066:76;;;;-1:-1:-1;;;36066:76:0;;;;;;;:::i;:::-;36178:9;:13;;;;;;;;;;;-1:-1:-1;;;;;36178:19:0;;;;;;;;;;36200:20;;;36178:42;;36242:17;;;;;;;:27;;36200:20;;36178:9;36242:27;;36200:20;;36242:27;:::i;:::-;;;;-1:-1:-1;;36287:46:0;;;19806:25:1;;;19862:2;19847:18;;19840:34;;;-1:-1:-1;;;;;36287:46:0;;;;;;;;;;;;;;19779:18:1;36287:46:0;;;;;;;36346:59;36366:8;36376:4;36382:2;36386:3;36391:7;36400:4;36346:19;:59::i;:::-;36418:68;36449:8;36459:4;36465:2;36469;36473:6;36481:4;36418:30;:68::i;:::-;35689:805;;;;35520:974;;;;;:::o;49646:327::-;-1:-1:-1;;;;;49891:18:0;;;;:38;;-1:-1:-1;;;;;;49913:16:0;;;49891:38;49883:80;;;;-1:-1:-1;;;49883:80:0;;13324:2:1;49883:80:0;;;13306:21:1;13363:2;13343:18;;;13336:30;13402:31;13382:18;;;13375:59;13451:18;;49883:80:0;13122:353:1;49981:393:0;-1:-1:-1;;;;;50225:18:0;;50221:144;;50274:3;50265:13;;;;;;:::i;:::-;;;;;;;;;;-1:-1:-1;;;;;50265:13:0;;;;;;;;50221:144;;;-1:-1:-1;;;;;50300:16:0;;50296:69;;50349:3;50338:15;;;;;;:::i;:::-;;;;;;;;;;-1:-1:-1;;;;;50338:15:0;;;;;;;;49981:393;;;;;;:::o;47174:813::-;-1:-1:-1;;;;;47414:13:0;;14170:19;:23;47410:570;;47450:79;;-1:-1:-1;;;47450:79:0;;-1:-1:-1;;;;;47450:43:0;;;;;:79;;47494:8;;47504:4;;47510:3;;47515:7;;47524:4;;47450:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47450:79:0;;;;;;;;-1:-1:-1;;47450:79:0;;;;;;;;;;;;:::i;:::-;;;47446:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;47842:6;47835:14;;-1:-1:-1;;;47835:14:0;;;;;;;;:::i;47446:523::-;;;47891:62;;-1:-1:-1;;;47891:62:0;;12903:2:1;47891:62:0;;;12885:21:1;12942:2;12922:18;;;12915:30;12981:34;12961:18;;;12954:62;-1:-1:-1;;;13032:18:1;;;13025:50;13092:19;;47891:62:0;12701:416:1;47446:523:0;-1:-1:-1;;;;;;47611:60:0;;-1:-1:-1;;;47611:60:0;47607:159;;47696:50;;-1:-1:-1;;;47696:50:0;;;;;;;:::i;47995:198::-;48115:16;;;48129:1;48115:16;;;;;;;;;48061;;48090:22;;48115:16;;;;;;;;;;;;-1:-1:-1;48115:16:0;48090:41;;48153:7;48142:5;48148:1;48142:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;48180:5;47995:198;-1:-1:-1;;47995:198:0:o;46422:744::-;-1:-1:-1;;;;;46637:13:0;;14170:19;:23;46633:526;;46673:72;;-1:-1:-1;;;46673:72:0;;-1:-1:-1;;;;;46673:38:0;;;;;:72;;46712:8;;46722:4;;46728:2;;46732:6;;46740:4;;46673:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46673:72:0;;;;;;;;-1:-1:-1;;46673:72:0;;;;;;;;;;;;:::i;:::-;;;46669:479;;;;:::i;:::-;-1:-1:-1;;;;;;46795:55:0;;-1:-1:-1;;;46795:55:0;46791:154;;46875:50;;-1:-1:-1;;;46875:50:0;;;;;;;:::i;2410:296::-;2493:7;2536:4;2493:7;2551:118;2575:5;:12;2571:1;:16;2551:118;;;2624:33;2634:12;2648:5;2654:1;2648:8;;;;;;;;:::i;:::-;;;;;;;2624:9;:33::i;:::-;2609:48;-1:-1:-1;2589:3:0;;;;:::i;:::-;;;;2551:118;;8617:149;8680:7;8711:1;8707;:5;:51;;8842:13;8936:15;;;8972:4;8965:15;;;9019:4;9003:21;;8707:51;;;8842:13;8936:15;;;8972:4;8965:15;;;9019:4;9003:21;;8715:20;8700:58;8617:149;-1:-1:-1;;;8617:149:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:468:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;183:2;177:9;195:69;252:2;231:15;;-1:-1:-1;;227:29:1;258:4;223:40;177:9;195:69;:::i;:::-;282:6;273:15;;312:6;304;297:22;352:3;343:6;338:3;334:16;331:25;328:45;;;369:1;366;359:12;328:45;419:6;414:3;407:4;399:6;395:17;382:44;474:1;467:4;458:6;450;446:19;442:30;435:41;;14:468;;;;;:::o;487:173::-;555:20;;-1:-1:-1;;;;;604:31:1;;594:42;;584:70;;650:1;647;640:12;584:70;487:173;;;:::o;665:367::-;728:8;738:6;792:3;785:4;777:6;773:17;769:27;759:55;;810:1;807;800:12;759:55;-1:-1:-1;833:20:1;;876:18;865:30;;862:50;;;908:1;905;898:12;862:50;945:4;937:6;933:17;921:29;;1005:3;998:4;988:6;985:1;981:14;973:6;969:27;965:38;962:47;959:67;;;1022:1;1019;1012:12;959:67;665:367;;;;;:::o;1037:735::-;1091:5;1144:3;1137:4;1129:6;1125:17;1121:27;1111:55;;1162:1;1159;1152:12;1111:55;1198:6;1185:20;1224:4;1247:43;1287:2;1247:43;:::i;:::-;1319:2;1313:9;1331:31;1359:2;1351:6;1331:31;:::i;:::-;1397:18;;;1431:15;;;;-1:-1:-1;1466:15:1;;;1516:1;1512:10;;;1500:23;;1496:32;;1493:41;-1:-1:-1;1490:61:1;;;1547:1;1544;1537:12;1490:61;1569:1;1579:163;1593:2;1590:1;1587:9;1579:163;;;1650:17;;1638:30;;1688:12;;;;1720;;;;1611:1;1604:9;1579:163;;;-1:-1:-1;1760:6:1;;1037:735;-1:-1:-1;;;;;;;1037:735:1:o;1777:220::-;1819:5;1872:3;1865:4;1857:6;1853:17;1849:27;1839:55;;1890:1;1887;1880:12;1839:55;1912:79;1987:3;1978:6;1965:20;1958:4;1950:6;1946:17;1912:79;:::i;2002:186::-;2061:6;2114:2;2102:9;2093:7;2089:23;2085:32;2082:52;;;2130:1;2127;2120:12;2082:52;2153:29;2172:9;2153:29;:::i;2193:260::-;2261:6;2269;2322:2;2310:9;2301:7;2297:23;2293:32;2290:52;;;2338:1;2335;2328:12;2290:52;2361:29;2380:9;2361:29;:::i;:::-;2351:39;;2409:38;2443:2;2432:9;2428:18;2409:38;:::i;:::-;2399:48;;2193:260;;;;;:::o;2458:943::-;2612:6;2620;2628;2636;2644;2697:3;2685:9;2676:7;2672:23;2668:33;2665:53;;;2714:1;2711;2704:12;2665:53;2737:29;2756:9;2737:29;:::i;:::-;2727:39;;2785:38;2819:2;2808:9;2804:18;2785:38;:::i;:::-;2775:48;;2874:2;2863:9;2859:18;2846:32;2897:18;2938:2;2930:6;2927:14;2924:34;;;2954:1;2951;2944:12;2924:34;2977:61;3030:7;3021:6;3010:9;3006:22;2977:61;:::i;:::-;2967:71;;3091:2;3080:9;3076:18;3063:32;3047:48;;3120:2;3110:8;3107:16;3104:36;;;3136:1;3133;3126:12;3104:36;3159:63;3214:7;3203:8;3192:9;3188:24;3159:63;:::i;:::-;3149:73;;3275:3;3264:9;3260:19;3247:33;3231:49;;3305:2;3295:8;3292:16;3289:36;;;3321:1;3318;3311:12;3289:36;;3344:51;3387:7;3376:8;3365:9;3361:24;3344:51;:::i;:::-;3334:61;;;2458:943;;;;;;;;:::o;3406:606::-;3510:6;3518;3526;3534;3542;3595:3;3583:9;3574:7;3570:23;3566:33;3563:53;;;3612:1;3609;3602:12;3563:53;3635:29;3654:9;3635:29;:::i;:::-;3625:39;;3683:38;3717:2;3706:9;3702:18;3683:38;:::i;:::-;3673:48;;3768:2;3757:9;3753:18;3740:32;3730:42;;3819:2;3808:9;3804:18;3791:32;3781:42;;3874:3;3863:9;3859:19;3846:33;3902:18;3894:6;3891:30;3888:50;;;3934:1;3931;3924:12;3888:50;3957:49;3998:7;3989:6;3978:9;3974:22;3957:49;:::i;4017:347::-;4082:6;4090;4143:2;4131:9;4122:7;4118:23;4114:32;4111:52;;;4159:1;4156;4149:12;4111:52;4182:29;4201:9;4182:29;:::i;:::-;4172:39;;4261:2;4250:9;4246:18;4233:32;4308:5;4301:13;4294:21;4287:5;4284:32;4274:60;;4330:1;4327;4320:12;4274:60;4353:5;4343:15;;;4017:347;;;;;:::o;4369:254::-;4437:6;4445;4498:2;4486:9;4477:7;4473:23;4469:32;4466:52;;;4514:1;4511;4504:12;4466:52;4537:29;4556:9;4537:29;:::i;:::-;4527:39;4613:2;4598:18;;;;4585:32;;-1:-1:-1;;;4369:254:1:o;4628:437::-;4714:6;4722;4775:2;4763:9;4754:7;4750:23;4746:32;4743:52;;;4791:1;4788;4781:12;4743:52;4831:9;4818:23;4864:18;4856:6;4853:30;4850:50;;;4896:1;4893;4886:12;4850:50;4935:70;4997:7;4988:6;4977:9;4973:22;4935:70;:::i;:::-;5024:8;;4909:96;;-1:-1:-1;4628:437:1;-1:-1:-1;;;;4628:437:1:o;5070:1219::-;5188:6;5196;5249:2;5237:9;5228:7;5224:23;5220:32;5217:52;;;5265:1;5262;5255:12;5217:52;5305:9;5292:23;5334:18;5375:2;5367:6;5364:14;5361:34;;;5391:1;5388;5381:12;5361:34;5429:6;5418:9;5414:22;5404:32;;5474:7;5467:4;5463:2;5459:13;5455:27;5445:55;;5496:1;5493;5486:12;5445:55;5532:2;5519:16;5554:4;5577:43;5617:2;5577:43;:::i;:::-;5649:2;5643:9;5661:31;5689:2;5681:6;5661:31;:::i;:::-;5727:18;;;5761:15;;;;-1:-1:-1;5796:11:1;;;5838:1;5834:10;;;5826:19;;5822:28;;5819:41;-1:-1:-1;5816:61:1;;;5873:1;5870;5863:12;5816:61;5895:1;5886:10;;5905:169;5919:2;5916:1;5913:9;5905:169;;;5976:23;5995:3;5976:23;:::i;:::-;5964:36;;5937:1;5930:9;;;;;6020:12;;;;6052;;5905:169;;;-1:-1:-1;6093:6:1;-1:-1:-1;;6137:18:1;;6124:32;;-1:-1:-1;;6168:16:1;;;6165:36;;;6197:1;6194;6187:12;6165:36;;6220:63;6275:7;6264:8;6253:9;6249:24;6220:63;:::i;:::-;6210:73;;;5070:1219;;;;;:::o;6736:180::-;6795:6;6848:2;6836:9;6827:7;6823:23;6819:32;6816:52;;;6864:1;6861;6854:12;6816:52;-1:-1:-1;6887:23:1;;6736:180;-1:-1:-1;6736:180:1:o;6921:245::-;6979:6;7032:2;7020:9;7011:7;7007:23;7003:32;7000:52;;;7048:1;7045;7038:12;7000:52;7087:9;7074:23;7106:30;7130:5;7106:30;:::i;7171:249::-;7240:6;7293:2;7281:9;7272:7;7268:23;7264:32;7261:52;;;7309:1;7306;7299:12;7261:52;7341:9;7335:16;7360:30;7384:5;7360:30;:::i;7425:450::-;7494:6;7547:2;7535:9;7526:7;7522:23;7518:32;7515:52;;;7563:1;7560;7553:12;7515:52;7603:9;7590:23;7636:18;7628:6;7625:30;7622:50;;;7668:1;7665;7658:12;7622:50;7691:22;;7744:4;7736:13;;7732:27;-1:-1:-1;7722:55:1;;7773:1;7770;7763:12;7722:55;7796:73;7861:7;7856:2;7843:16;7838:2;7834;7830:11;7796:73;:::i;:::-;7786:83;7425:450;-1:-1:-1;;;;7425:450:1:o;8065:435::-;8118:3;8156:5;8150:12;8183:6;8178:3;8171:19;8209:4;8238:2;8233:3;8229:12;8222:19;;8275:2;8268:5;8264:14;8296:1;8306:169;8320:6;8317:1;8314:13;8306:169;;;8381:13;;8369:26;;8415:12;;;;8450:15;;;;8342:1;8335:9;8306:169;;;-1:-1:-1;8491:3:1;;8065:435;-1:-1:-1;;;;;8065:435:1:o;8505:471::-;8546:3;8584:5;8578:12;8611:6;8606:3;8599:19;8636:1;8646:162;8660:6;8657:1;8654:13;8646:162;;;8722:4;8778:13;;;8774:22;;8768:29;8750:11;;;8746:20;;8739:59;8675:12;8646:162;;;8826:6;8823:1;8820:13;8817:87;;;8892:1;8885:4;8876:6;8871:3;8867:16;8863:27;8856:38;8817:87;-1:-1:-1;8958:2:1;8937:15;-1:-1:-1;;8933:29:1;8924:39;;;;8965:4;8920:50;;8505:471;-1:-1:-1;;8505:471:1:o;9215:543::-;9433:13;;9376:3;;9407;;9486:4;9513:15;;;9376:3;9556:175;9570:6;9567:1;9564:13;9556:175;;;9633:13;;9619:28;;9669:14;;;;9706:15;;;;9592:1;9585:9;9556:175;;;-1:-1:-1;9747:5:1;;9215:543;-1:-1:-1;;;;;;9215:543:1:o;9971:826::-;-1:-1:-1;;;;;10368:15:1;;;10350:34;;10420:15;;10415:2;10400:18;;10393:43;10330:3;10467:2;10452:18;;10445:31;;;10293:4;;10499:57;;10536:19;;10528:6;10499:57;:::i;:::-;10604:9;10596:6;10592:22;10587:2;10576:9;10572:18;10565:50;10638:44;10675:6;10667;10638:44;:::i;:::-;10624:58;;10731:9;10723:6;10719:22;10713:3;10702:9;10698:19;10691:51;10759:32;10784:6;10776;10759:32;:::i;:::-;10751:40;9971:826;-1:-1:-1;;;;;;;;9971:826:1:o;10802:560::-;-1:-1:-1;;;;;11099:15:1;;;11081:34;;11151:15;;11146:2;11131:18;;11124:43;11198:2;11183:18;;11176:34;;;11241:2;11226:18;;11219:34;;;11061:3;11284;11269:19;;11262:32;;;11024:4;;11311:45;;11336:19;;11328:6;11311:45;:::i;:::-;11303:53;10802:560;-1:-1:-1;;;;;;;10802:560:1:o;11367:261::-;11546:2;11535:9;11528:21;11509:4;11566:56;11618:2;11607:9;11603:18;11595:6;11566:56;:::i;11633:465::-;11890:2;11879:9;11872:21;11853:4;11916:56;11968:2;11957:9;11953:18;11945:6;11916:56;:::i;:::-;12020:9;12012:6;12008:22;12003:2;11992:9;11988:18;11981:50;12048:44;12085:6;12077;12048:44;:::i;:::-;12040:52;11633:465;-1:-1:-1;;;;;11633:465:1:o;12477:219::-;12626:2;12615:9;12608:21;12589:4;12646:44;12686:2;12675:9;12671:18;12663:6;12646:44;:::i;13480:411::-;13682:2;13664:21;;;13721:2;13701:18;;;13694:30;13760:34;13755:2;13740:18;;13733:62;-1:-1:-1;;;13826:2:1;13811:18;;13804:45;13881:3;13866:19;;13480:411::o;13896:404::-;14098:2;14080:21;;;14137:2;14117:18;;;14110:30;14176:34;14171:2;14156:18;;14149:62;-1:-1:-1;;;14242:2:1;14227:18;;14220:38;14290:3;14275:19;;13896:404::o;14305:355::-;14507:2;14489:21;;;14546:2;14526:18;;;14519:30;14585:33;14580:2;14565:18;;14558:61;14651:2;14636:18;;14305:355::o;15888:401::-;16090:2;16072:21;;;16129:2;16109:18;;;16102:30;16168:34;16163:2;16148:18;;16141:62;-1:-1:-1;;;16234:2:1;16219:18;;16212:35;16279:3;16264:19;;15888:401::o;16698:406::-;16900:2;16882:21;;;16939:2;16919:18;;;16912:30;16978:34;16973:2;16958:18;;16951:62;-1:-1:-1;;;17044:2:1;17029:18;;17022:40;17094:3;17079:19;;16698:406::o;19885:183::-;19945:4;19978:18;19970:6;19967:30;19964:56;;;20000:18;;:::i;:::-;-1:-1:-1;20045:1:1;20041:14;20057:4;20037:25;;19885:183::o;20073:128::-;20113:3;20144:1;20140:6;20137:1;20134:13;20131:39;;;20150:18;;:::i;:::-;-1:-1:-1;20186:9:1;;20073:128::o;20206:380::-;20285:1;20281:12;;;;20328;;;20349:61;;20403:4;20395:6;20391:17;20381:27;;20349:61;20456:2;20448:6;20445:14;20425:18;20422:38;20419:161;;;20502:10;20497:3;20493:20;20490:1;20483:31;20537:4;20534:1;20527:15;20565:4;20562:1;20555:15;20419:161;;20206:380;;;:::o;20591:249::-;20701:2;20682:13;;-1:-1:-1;;20678:27:1;20666:40;;20736:18;20721:34;;20757:22;;;20718:62;20715:88;;;20783:18;;:::i;:::-;20819:2;20812:22;-1:-1:-1;;20591:249:1:o;20845:135::-;20884:3;-1:-1:-1;;20905:17:1;;20902:43;;;20925:18;;:::i;:::-;-1:-1:-1;20972:1:1;20961:13;;20845:135::o;20985:127::-;21046:10;21041:3;21037:20;21034:1;21027:31;21077:4;21074:1;21067:15;21101:4;21098:1;21091:15;21117:127;21178:10;21173:3;21169:20;21166:1;21159:31;21209:4;21206:1;21199:15;21233:4;21230:1;21223:15;21249:127;21310:10;21305:3;21301:20;21298:1;21291:31;21341:4;21338:1;21331:15;21365:4;21362:1;21355:15;21381:179;21416:3;21458:1;21440:16;21437:23;21434:120;;;21504:1;21501;21498;21483:23;-1:-1:-1;21541:1:1;21535:8;21530:3;21526:18;21434:120;21381:179;:::o;21565:671::-;21604:3;21646:4;21628:16;21625:26;21622:39;;;21565:671;:::o;21622:39::-;21688:2;21682:9;-1:-1:-1;;21753:16:1;21749:25;;21746:1;21682:9;21725:50;21804:4;21798:11;21828:16;21863:18;21934:2;21927:4;21919:6;21915:17;21912:25;21907:2;21899:6;21896:14;21893:45;21890:58;;;21941:5;;;;;21565:671;:::o;21890:58::-;21978:6;21972:4;21968:17;21957:28;;22014:3;22008:10;22041:2;22033:6;22030:14;22027:27;;;22047:5;;;;;;21565:671;:::o;22027:27::-;22131:2;22112:16;22106:4;22102:27;22098:36;22091:4;22082:6;22077:3;22073:16;22069:27;22066:69;22063:82;;;22138:5;;;;;;21565:671;:::o;22063:82::-;22154:57;22205:4;22196:6;22188;22184:19;22180:30;22174:4;22154:57;:::i;:::-;-1:-1:-1;22227:3:1;;21565:671;-1:-1:-1;;;;;21565:671:1:o;22241:131::-;-1:-1:-1;;;;;;22315:32:1;;22305:43;;22295:71;;22362:1;22359;22352:12

Swarm Source

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