ETH Price: $3,362.44 (-2.62%)

Token

 

Overview

Max Total Supply

19

Holders

19

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
coronalight.eth
0x00aa3d1cd1e65fb2c058143cc72cd4794b50dc12
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:
ToonOGFastPass

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/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 v4.4.1 (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 be 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.6.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: balance query for the zero address");
        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 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: transfer caller is not 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}.
     *
     * 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`
     *
     * 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}.
     *
     * 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 a {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 `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 _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: contracts/ToonOGFastPass.sol


pragma solidity ^0.8.4;





contract ToonOGFastPass is ERC1155, Ownable, Pausable {

    bytes32 merkleRoot;
    string merkleUri;
    uint8 currentSupply;
    uint8 merkleProofDepth;
    bool bypassMerkle;

    constructor() ERC1155("") {}

    function enableProof(bool enable) public onlyOwner {
        bypassMerkle = !enable;
    }

    function setMerkle(bytes32 root, uint8 depth, string memory newuri) public onlyOwner {
        merkleRoot = root;
        merkleProofDepth = depth;
        merkleUri = newuri;
    }

    function setURI(string memory newuri) public onlyOwner {
        _setURI(newuri);
    }

    function getMerkleUri() public view returns(string memory) {
       return merkleUri;
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function mintPass(bytes32[] calldata proof) public {
        address account = _msgSender();
        uint8 amount = 1;
        uint8 id = 1;
        require(
            ((bypassMerkle || 
            (proof.length >= merkleProofDepth - 1 && proof.length <= merkleProofDepth && 
                MerkleProof.processProof(
                    proof, 
                    keccak256(abi.encodePacked(account))) == merkleRoot)) &&
            balanceOf(account, id) < amount && 
            currentSupply + amount <= 233
            ), 
            "Mint not allowed"
        );
        _mint(account, id, amount, "");
        currentSupply += amount;
    }

    function _beforeTokenTransfer(address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data)
        internal
        whenNotPaused
        override
    {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    }
}

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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","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":"bool","name":"enable","type":"bool"}],"name":"enableProof","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getMerkleUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintPass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"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":"bytes32","name":"root","type":"bytes32"},{"internalType":"uint8","name":"depth","type":"uint8"},{"internalType":"string","name":"newuri","type":"string"}],"name":"setMerkle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","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":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040805160208101909152600081526200002c816200004b565b50620000383362000064565b6003805460ff60a01b1916905562000198565b805162000060906002906020840190620000b6565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000c4906200015c565b90600052602060002090601f016020900481019282620000e8576000855562000133565b82601f106200010357805160ff191683800117855562000133565b8280016001018555821562000133579182015b828111156200013357825182559160200191906001019062000116565b506200014192915062000145565b5090565b5b8082111562000141576000815560010162000146565b600181811c908216806200017157607f821691505b6020821081036200019257634e487b7160e01b600052602260045260246000fd5b50919050565b611f1d80620001a86000396000f3fe608060405234801561001057600080fd5b50600436106101205760003560e01c80635c975abb116100ad578063a22cb46511610071578063a22cb46514610249578063e985e9c51461025c578063f242432a14610298578063f2fde38b146102ab578063f84732b3146102be57600080fd5b80635c975abb146101f9578063715018a61461020b5780638456cb59146102135780638da5cb5b1461021b5780639b8114ba1461023657600080fd5b806309f10472116100f457806309f10472146101985780630e89341c146101ab5780632eb2c2d6146101be5780633f4ba83a146101d15780634e1273f4146101d957600080fd5b8062fdd58e1461012557806301ffc9a71461014b57806302fe53051461016e57806308f3a03814610183575b600080fd5b610138610133366004611563565b6102d1565b6040519081526020015b60405180910390f35b61015e6101593660046115a3565b610368565b6040519015158152602001610142565b61018161017c36600461167e565b6103ba565b005b61018b6103f0565b6040516101429190611708565b6101816101a636600461172b565b610482565b61018b6101b9366004611746565b6104c5565b6101816101cc3660046117f4565b610559565b6101816105f0565b6101ec6101e736600461189e565b610624565b60405161014291906119a4565b600354600160a01b900460ff1661015e565b61018161074e565b610181610782565b6003546040516001600160a01b039091168152602001610142565b6101816102443660046119b7565b6107b4565b610181610257366004611a16565b610810565b61015e61026a366004611a49565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6101816102a6366004611a73565b61081f565b6101816102b9366004611ad8565b6108a6565b6101816102cc366004611af3565b61093e565b60006001600160a01b0383166103425760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061039957506001600160e01b031982166303a24d0760e21b145b806103b457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6003546001600160a01b031633146103e45760405162461bcd60e51b815260040161033990611b68565b6103ed81610adf565b50565b6060600580546103ff90611b9d565b80601f016020809104026020016040519081016040528092919081815260200182805461042b90611b9d565b80156104785780601f1061044d57610100808354040283529160200191610478565b820191906000526020600020905b81548152906001019060200180831161045b57829003601f168201915b5050505050905090565b6003546001600160a01b031633146104ac5760405162461bcd60e51b815260040161033990611b68565b6006805462ff0000191691156201000002919091179055565b6060600280546104d490611b9d565b80601f016020809104026020016040519081016040528092919081815260200182805461050090611b9d565b801561054d5780601f106105225761010080835404028352916020019161054d565b820191906000526020600020905b81548152906001019060200180831161053057829003601f168201915b50505050509050919050565b6001600160a01b0385163314806105755750610575853361026a565b6105dc5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610339565b6105e98585858585610af2565b5050505050565b6003546001600160a01b0316331461061a5760405162461bcd60e51b815260040161033990611b68565b610622610cdd565b565b606081518351146106895760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610339565b6000835167ffffffffffffffff8111156106a5576106a56115c7565b6040519080825280602002602001820160405280156106ce578160200160208202803683370190505b50905060005b8451811015610746576107198582815181106106f2576106f2611bd7565b602002602001015185838151811061070c5761070c611bd7565b60200260200101516102d1565b82828151811061072b5761072b611bd7565b602090810291909101015261073f81611c03565b90506106d4565b509392505050565b6003546001600160a01b031633146107785760405162461bcd60e51b815260040161033990611b68565b6106226000610d7a565b6003546001600160a01b031633146107ac5760405162461bcd60e51b815260040161033990611b68565b610622610dcc565b6003546001600160a01b031633146107de5760405162461bcd60e51b815260040161033990611b68565b60048390556006805461ff00191661010060ff851602179055805161080a9060059060208401906114ae565b50505050565b61081b338383610e54565b5050565b6001600160a01b03851633148061083b575061083b853361026a565b6108995760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610339565b6105e98585858585610f34565b6003546001600160a01b031633146108d05760405162461bcd60e51b815260040161033990611b68565b6001600160a01b0381166109355760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610339565b6103ed81610d7a565b6006543390600190819062010000900460ff1680610a0d575060065461096e90600190610100900460ff16611c1c565b60ff16841080159061098a5750600654610100900460ff168411155b8015610a0d5750600454610a0b868680806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff1960608a901b16602082015260340191506109f09050565b6040516020818303038152906040528051906020012061106c565b145b8015610a2757508160ff16610a25848360ff166102d1565b105b8015610a48575060065460e990610a4290849060ff16611c3f565b60ff1611155b610a875760405162461bcd60e51b815260206004820152601060248201526f135a5b9d081b9bdd08185b1b1bddd95960821b6044820152606401610339565b610aa8838260ff168460ff16604051806020016040528060008152506110d8565b60068054839190600090610ac090849060ff16611c3f565b92506101000a81548160ff021916908360ff1602179055505050505050565b805161081b9060029060208401906114ae565b8151835114610b545760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610339565b6001600160a01b038416610b7a5760405162461bcd60e51b815260040161033990611c64565b33610b898187878787876111fb565b60005b8451811015610c6f576000858281518110610ba957610ba9611bd7565b602002602001015190506000858381518110610bc757610bc7611bd7565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610c175760405162461bcd60e51b815260040161033990611ca9565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610c54908490611cf3565b9250508190555050505080610c6890611c03565b9050610b8c565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610cbf929190611d0b565b60405180910390a4610cd581878787878761124d565b505050505050565b600354600160a01b900460ff16610d2d5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610339565b6003805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600354600160a01b900460ff1615610e195760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610339565b6003805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610d5d3390565b816001600160a01b0316836001600160a01b031603610ec75760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610339565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038416610f5a5760405162461bcd60e51b815260040161033990611c64565b336000610f66856113a8565b90506000610f73856113a8565b9050610f838389898585896111fb565b6000868152602081815260408083206001600160a01b038c16845290915290205485811015610fc45760405162461bcd60e51b815260040161033990611ca9565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290611001908490611cf3565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611061848a8a8a8a8a6113f3565b505050505050505050565b600081815b845181101561074657600085828151811061108e5761108e611bd7565b602002602001015190508083116110b457600083815260208290526040902092506110c5565b600081815260208490526040902092505b50806110d081611c03565b915050611071565b6001600160a01b0384166111385760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610339565b336000611144856113a8565b90506000611151856113a8565b9050611162836000898585896111fb565b6000868152602081815260408083206001600160a01b038b16845290915281208054879290611192908490611cf3565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46111f2836000898989896113f3565b50505050505050565b600354600160a01b900460ff16156112485760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610339565b610cd5565b6001600160a01b0384163b15610cd55760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906112919089908990889088908890600401611d39565b6020604051808303816000875af19250505080156112cc575060408051601f3d908101601f191682019092526112c991810190611d97565b60015b611378576112d8611db4565b806308c379a00361131157506112ec611dd0565b806112f75750611313565b8060405162461bcd60e51b81526004016103399190611708565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610339565b6001600160e01b0319811663bc197c8160e01b146111f25760405162461bcd60e51b815260040161033990611e5a565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106113e2576113e2611bd7565b602090810291909101015292915050565b6001600160a01b0384163b15610cd55760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906114379089908990889088908890600401611ea2565b6020604051808303816000875af1925050508015611472575060408051601f3d908101601f1916820190925261146f91810190611d97565b60015b61147e576112d8611db4565b6001600160e01b0319811663f23a6e6160e01b146111f25760405162461bcd60e51b815260040161033990611e5a565b8280546114ba90611b9d565b90600052602060002090601f0160209004810192826114dc5760008555611522565b82601f106114f557805160ff1916838001178555611522565b82800160010185558215611522579182015b82811115611522578251825591602001919060010190611507565b5061152e929150611532565b5090565b5b8082111561152e5760008155600101611533565b80356001600160a01b038116811461155e57600080fd5b919050565b6000806040838503121561157657600080fd5b61157f83611547565b946020939093013593505050565b6001600160e01b0319811681146103ed57600080fd5b6000602082840312156115b557600080fd5b81356115c08161158d565b9392505050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff81118282101715611603576116036115c7565b6040525050565b600082601f83011261161b57600080fd5b813567ffffffffffffffff811115611635576116356115c7565b60405161164c601f8301601f1916602001826115dd565b81815284602083860101111561166157600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561169057600080fd5b813567ffffffffffffffff8111156116a757600080fd5b6116b38482850161160a565b949350505050565b6000815180845260005b818110156116e1576020818501810151868301820152016116c5565b818111156116f3576000602083870101525b50601f01601f19169290920160200192915050565b6020815260006115c060208301846116bb565b8035801515811461155e57600080fd5b60006020828403121561173d57600080fd5b6115c08261171b565b60006020828403121561175857600080fd5b5035919050565b600067ffffffffffffffff821115611779576117796115c7565b5060051b60200190565b600082601f83011261179457600080fd5b813560206117a18261175f565b6040516117ae82826115dd565b83815260059390931b85018201928281019150868411156117ce57600080fd5b8286015b848110156117e957803583529183019183016117d2565b509695505050505050565b600080600080600060a0868803121561180c57600080fd5b61181586611547565b945061182360208701611547565b9350604086013567ffffffffffffffff8082111561184057600080fd5b61184c89838a01611783565b9450606088013591508082111561186257600080fd5b61186e89838a01611783565b9350608088013591508082111561188457600080fd5b506118918882890161160a565b9150509295509295909350565b600080604083850312156118b157600080fd5b823567ffffffffffffffff808211156118c957600080fd5b818501915085601f8301126118dd57600080fd5b813560206118ea8261175f565b6040516118f782826115dd565b83815260059390931b850182019282810191508984111561191757600080fd5b948201945b8386101561193c5761192d86611547565b8252948201949082019061191c565b9650508601359250508082111561195257600080fd5b5061195f85828601611783565b9150509250929050565b600081518084526020808501945080840160005b838110156119995781518752958201959082019060010161197d565b509495945050505050565b6020815260006115c06020830184611969565b6000806000606084860312156119cc57600080fd5b83359250602084013560ff811681146119e457600080fd5b9150604084013567ffffffffffffffff811115611a0057600080fd5b611a0c8682870161160a565b9150509250925092565b60008060408385031215611a2957600080fd5b611a3283611547565b9150611a406020840161171b565b90509250929050565b60008060408385031215611a5c57600080fd5b611a6583611547565b9150611a4060208401611547565b600080600080600060a08688031215611a8b57600080fd5b611a9486611547565b9450611aa260208701611547565b93506040860135925060608601359150608086013567ffffffffffffffff811115611acc57600080fd5b6118918882890161160a565b600060208284031215611aea57600080fd5b6115c082611547565b60008060208385031215611b0657600080fd5b823567ffffffffffffffff80821115611b1e57600080fd5b818501915085601f830112611b3257600080fd5b813581811115611b4157600080fd5b8660208260051b8501011115611b5657600080fd5b60209290920196919550909350505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611bb157607f821691505b602082108103611bd157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611c1557611c15611bed565b5060010190565b600060ff821660ff841680821015611c3657611c36611bed565b90039392505050565b600060ff821660ff84168060ff03821115611c5c57611c5c611bed565b019392505050565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60008219821115611d0657611d06611bed565b500190565b604081526000611d1e6040830185611969565b8281036020840152611d308185611969565b95945050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090611d6590830186611969565b8281036060840152611d778186611969565b90508281036080840152611d8b81856116bb565b98975050505050505050565b600060208284031215611da957600080fd5b81516115c08161158d565b600060033d1115611dcd5760046000803e5060005160e01c5b90565b600060443d1015611dde5790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611e0e57505050505090565b8285019150815181811115611e265750505050505090565b843d8701016020828501011115611e405750505050505090565b611e4f602082860101876115dd565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611edc908301846116bb565b97965050505050505056fea26469706673582212201b0d9bfe4087992aec8b14caefb273639d3cad8234c1eb8370e9ab84ae9506c764736f6c634300080d0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101205760003560e01c80635c975abb116100ad578063a22cb46511610071578063a22cb46514610249578063e985e9c51461025c578063f242432a14610298578063f2fde38b146102ab578063f84732b3146102be57600080fd5b80635c975abb146101f9578063715018a61461020b5780638456cb59146102135780638da5cb5b1461021b5780639b8114ba1461023657600080fd5b806309f10472116100f457806309f10472146101985780630e89341c146101ab5780632eb2c2d6146101be5780633f4ba83a146101d15780634e1273f4146101d957600080fd5b8062fdd58e1461012557806301ffc9a71461014b57806302fe53051461016e57806308f3a03814610183575b600080fd5b610138610133366004611563565b6102d1565b6040519081526020015b60405180910390f35b61015e6101593660046115a3565b610368565b6040519015158152602001610142565b61018161017c36600461167e565b6103ba565b005b61018b6103f0565b6040516101429190611708565b6101816101a636600461172b565b610482565b61018b6101b9366004611746565b6104c5565b6101816101cc3660046117f4565b610559565b6101816105f0565b6101ec6101e736600461189e565b610624565b60405161014291906119a4565b600354600160a01b900460ff1661015e565b61018161074e565b610181610782565b6003546040516001600160a01b039091168152602001610142565b6101816102443660046119b7565b6107b4565b610181610257366004611a16565b610810565b61015e61026a366004611a49565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6101816102a6366004611a73565b61081f565b6101816102b9366004611ad8565b6108a6565b6101816102cc366004611af3565b61093e565b60006001600160a01b0383166103425760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061039957506001600160e01b031982166303a24d0760e21b145b806103b457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6003546001600160a01b031633146103e45760405162461bcd60e51b815260040161033990611b68565b6103ed81610adf565b50565b6060600580546103ff90611b9d565b80601f016020809104026020016040519081016040528092919081815260200182805461042b90611b9d565b80156104785780601f1061044d57610100808354040283529160200191610478565b820191906000526020600020905b81548152906001019060200180831161045b57829003601f168201915b5050505050905090565b6003546001600160a01b031633146104ac5760405162461bcd60e51b815260040161033990611b68565b6006805462ff0000191691156201000002919091179055565b6060600280546104d490611b9d565b80601f016020809104026020016040519081016040528092919081815260200182805461050090611b9d565b801561054d5780601f106105225761010080835404028352916020019161054d565b820191906000526020600020905b81548152906001019060200180831161053057829003601f168201915b50505050509050919050565b6001600160a01b0385163314806105755750610575853361026a565b6105dc5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610339565b6105e98585858585610af2565b5050505050565b6003546001600160a01b0316331461061a5760405162461bcd60e51b815260040161033990611b68565b610622610cdd565b565b606081518351146106895760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610339565b6000835167ffffffffffffffff8111156106a5576106a56115c7565b6040519080825280602002602001820160405280156106ce578160200160208202803683370190505b50905060005b8451811015610746576107198582815181106106f2576106f2611bd7565b602002602001015185838151811061070c5761070c611bd7565b60200260200101516102d1565b82828151811061072b5761072b611bd7565b602090810291909101015261073f81611c03565b90506106d4565b509392505050565b6003546001600160a01b031633146107785760405162461bcd60e51b815260040161033990611b68565b6106226000610d7a565b6003546001600160a01b031633146107ac5760405162461bcd60e51b815260040161033990611b68565b610622610dcc565b6003546001600160a01b031633146107de5760405162461bcd60e51b815260040161033990611b68565b60048390556006805461ff00191661010060ff851602179055805161080a9060059060208401906114ae565b50505050565b61081b338383610e54565b5050565b6001600160a01b03851633148061083b575061083b853361026a565b6108995760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610339565b6105e98585858585610f34565b6003546001600160a01b031633146108d05760405162461bcd60e51b815260040161033990611b68565b6001600160a01b0381166109355760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610339565b6103ed81610d7a565b6006543390600190819062010000900460ff1680610a0d575060065461096e90600190610100900460ff16611c1c565b60ff16841080159061098a5750600654610100900460ff168411155b8015610a0d5750600454610a0b868680806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff1960608a901b16602082015260340191506109f09050565b6040516020818303038152906040528051906020012061106c565b145b8015610a2757508160ff16610a25848360ff166102d1565b105b8015610a48575060065460e990610a4290849060ff16611c3f565b60ff1611155b610a875760405162461bcd60e51b815260206004820152601060248201526f135a5b9d081b9bdd08185b1b1bddd95960821b6044820152606401610339565b610aa8838260ff168460ff16604051806020016040528060008152506110d8565b60068054839190600090610ac090849060ff16611c3f565b92506101000a81548160ff021916908360ff1602179055505050505050565b805161081b9060029060208401906114ae565b8151835114610b545760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610339565b6001600160a01b038416610b7a5760405162461bcd60e51b815260040161033990611c64565b33610b898187878787876111fb565b60005b8451811015610c6f576000858281518110610ba957610ba9611bd7565b602002602001015190506000858381518110610bc757610bc7611bd7565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610c175760405162461bcd60e51b815260040161033990611ca9565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610c54908490611cf3565b9250508190555050505080610c6890611c03565b9050610b8c565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610cbf929190611d0b565b60405180910390a4610cd581878787878761124d565b505050505050565b600354600160a01b900460ff16610d2d5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610339565b6003805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600354600160a01b900460ff1615610e195760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610339565b6003805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610d5d3390565b816001600160a01b0316836001600160a01b031603610ec75760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610339565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038416610f5a5760405162461bcd60e51b815260040161033990611c64565b336000610f66856113a8565b90506000610f73856113a8565b9050610f838389898585896111fb565b6000868152602081815260408083206001600160a01b038c16845290915290205485811015610fc45760405162461bcd60e51b815260040161033990611ca9565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290611001908490611cf3565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611061848a8a8a8a8a6113f3565b505050505050505050565b600081815b845181101561074657600085828151811061108e5761108e611bd7565b602002602001015190508083116110b457600083815260208290526040902092506110c5565b600081815260208490526040902092505b50806110d081611c03565b915050611071565b6001600160a01b0384166111385760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610339565b336000611144856113a8565b90506000611151856113a8565b9050611162836000898585896111fb565b6000868152602081815260408083206001600160a01b038b16845290915281208054879290611192908490611cf3565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46111f2836000898989896113f3565b50505050505050565b600354600160a01b900460ff16156112485760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610339565b610cd5565b6001600160a01b0384163b15610cd55760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906112919089908990889088908890600401611d39565b6020604051808303816000875af19250505080156112cc575060408051601f3d908101601f191682019092526112c991810190611d97565b60015b611378576112d8611db4565b806308c379a00361131157506112ec611dd0565b806112f75750611313565b8060405162461bcd60e51b81526004016103399190611708565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610339565b6001600160e01b0319811663bc197c8160e01b146111f25760405162461bcd60e51b815260040161033990611e5a565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106113e2576113e2611bd7565b602090810291909101015292915050565b6001600160a01b0384163b15610cd55760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906114379089908990889088908890600401611ea2565b6020604051808303816000875af1925050508015611472575060408051601f3d908101601f1916820190925261146f91810190611d97565b60015b61147e576112d8611db4565b6001600160e01b0319811663f23a6e6160e01b146111f25760405162461bcd60e51b815260040161033990611e5a565b8280546114ba90611b9d565b90600052602060002090601f0160209004810192826114dc5760008555611522565b82601f106114f557805160ff1916838001178555611522565b82800160010185558215611522579182015b82811115611522578251825591602001919060010190611507565b5061152e929150611532565b5090565b5b8082111561152e5760008155600101611533565b80356001600160a01b038116811461155e57600080fd5b919050565b6000806040838503121561157657600080fd5b61157f83611547565b946020939093013593505050565b6001600160e01b0319811681146103ed57600080fd5b6000602082840312156115b557600080fd5b81356115c08161158d565b9392505050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff81118282101715611603576116036115c7565b6040525050565b600082601f83011261161b57600080fd5b813567ffffffffffffffff811115611635576116356115c7565b60405161164c601f8301601f1916602001826115dd565b81815284602083860101111561166157600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561169057600080fd5b813567ffffffffffffffff8111156116a757600080fd5b6116b38482850161160a565b949350505050565b6000815180845260005b818110156116e1576020818501810151868301820152016116c5565b818111156116f3576000602083870101525b50601f01601f19169290920160200192915050565b6020815260006115c060208301846116bb565b8035801515811461155e57600080fd5b60006020828403121561173d57600080fd5b6115c08261171b565b60006020828403121561175857600080fd5b5035919050565b600067ffffffffffffffff821115611779576117796115c7565b5060051b60200190565b600082601f83011261179457600080fd5b813560206117a18261175f565b6040516117ae82826115dd565b83815260059390931b85018201928281019150868411156117ce57600080fd5b8286015b848110156117e957803583529183019183016117d2565b509695505050505050565b600080600080600060a0868803121561180c57600080fd5b61181586611547565b945061182360208701611547565b9350604086013567ffffffffffffffff8082111561184057600080fd5b61184c89838a01611783565b9450606088013591508082111561186257600080fd5b61186e89838a01611783565b9350608088013591508082111561188457600080fd5b506118918882890161160a565b9150509295509295909350565b600080604083850312156118b157600080fd5b823567ffffffffffffffff808211156118c957600080fd5b818501915085601f8301126118dd57600080fd5b813560206118ea8261175f565b6040516118f782826115dd565b83815260059390931b850182019282810191508984111561191757600080fd5b948201945b8386101561193c5761192d86611547565b8252948201949082019061191c565b9650508601359250508082111561195257600080fd5b5061195f85828601611783565b9150509250929050565b600081518084526020808501945080840160005b838110156119995781518752958201959082019060010161197d565b509495945050505050565b6020815260006115c06020830184611969565b6000806000606084860312156119cc57600080fd5b83359250602084013560ff811681146119e457600080fd5b9150604084013567ffffffffffffffff811115611a0057600080fd5b611a0c8682870161160a565b9150509250925092565b60008060408385031215611a2957600080fd5b611a3283611547565b9150611a406020840161171b565b90509250929050565b60008060408385031215611a5c57600080fd5b611a6583611547565b9150611a4060208401611547565b600080600080600060a08688031215611a8b57600080fd5b611a9486611547565b9450611aa260208701611547565b93506040860135925060608601359150608086013567ffffffffffffffff811115611acc57600080fd5b6118918882890161160a565b600060208284031215611aea57600080fd5b6115c082611547565b60008060208385031215611b0657600080fd5b823567ffffffffffffffff80821115611b1e57600080fd5b818501915085601f830112611b3257600080fd5b813581811115611b4157600080fd5b8660208260051b8501011115611b5657600080fd5b60209290920196919550909350505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611bb157607f821691505b602082108103611bd157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611c1557611c15611bed565b5060010190565b600060ff821660ff841680821015611c3657611c36611bed565b90039392505050565b600060ff821660ff84168060ff03821115611c5c57611c5c611bed565b019392505050565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60008219821115611d0657611d06611bed565b500190565b604081526000611d1e6040830185611969565b8281036020840152611d308185611969565b95945050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090611d6590830186611969565b8281036060840152611d778186611969565b90508281036080840152611d8b81856116bb565b98975050505050505050565b600060208284031215611da957600080fd5b81516115c08161158d565b600060033d1115611dcd5760046000803e5060005160e01c5b90565b600060443d1015611dde5790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611e0e57505050505090565b8285019150815181811115611e265750505050505090565b843d8701016020828501011115611e405750505050505090565b611e4f602082860101876115dd565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611edc908301846116bb565b97965050505050505056fea26469706673582212201b0d9bfe4087992aec8b14caefb273639d3cad8234c1eb8370e9ab84ae9506c764736f6c634300080d0033

Deployed Bytecode Sourcemap

43853:1831:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28395:231;;;;;;:::i;:::-;;:::i;:::-;;;597:25:1;;;585:2;570:18;28395:231:0;;;;;;;;27418:310;;;;;;:::i;:::-;;:::i;:::-;;;1184:14:1;;1177:22;1159:41;;1147:2;1132:18;27418:310:0;1019:187:1;44374:89:0;;;;;;:::i;:::-;;:::i;:::-;;44471:93;;;:::i;:::-;;;;;;;:::i;44081:92::-;;;;;;:::i;:::-;;:::i;28139:105::-;;;;;;:::i;:::-;;:::i;30334:442::-;;;;;;:::i;:::-;;:::i;44641:65::-;;;:::i;28792:524::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;4710:86::-;4781:7;;-1:-1:-1;;;4781:7:0;;;;4710:86;;7609:103;;;:::i;44572:61::-;;;:::i;6958:87::-;7031:6;;6958:87;;-1:-1:-1;;;;;7031:6:0;;;7653:51:1;;7641:2;7626:18;6958:87:0;7507:203:1;44181:185:0;;;;;;:::i;:::-;;:::i;29389:155::-;;;;;;:::i;:::-;;:::i;29616:168::-;;;;;;:::i;:::-;-1:-1:-1;;;;;29739:27:0;;;29715:4;29739:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;29616:168;29856:401;;;;;;:::i;:::-;;:::i;7867:201::-;;;;;;:::i;:::-;;:::i;44714:669::-;;;;;;:::i;:::-;;:::i;28395:231::-;28481:7;-1:-1:-1;;;;;28509:21:0;;28501:77;;;;-1:-1:-1;;;28501:77:0;;10416:2:1;28501:77:0;;;10398:21:1;10455:2;10435:18;;;10428:30;10494:34;10474:18;;;10467:62;-1:-1:-1;;;10545:18:1;;;10538:41;10596:19;;28501:77:0;;;;;;;;;-1:-1:-1;28596:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;28596:22:0;;;;;;;;;;;;28395:231::o;27418:310::-;27520:4;-1:-1:-1;;;;;;27557:41:0;;-1:-1:-1;;;27557:41:0;;:110;;-1:-1:-1;;;;;;;27615:52:0;;-1:-1:-1;;;27615:52:0;27557:110;:163;;;-1:-1:-1;;;;;;;;;;18820:40:0;;;27684:36;27537:183;27418:310;-1:-1:-1;;27418:310:0:o;44374:89::-;7031:6;;-1:-1:-1;;;;;7031:6:0;3444:10;7178:23;7170:68;;;;-1:-1:-1;;;7170:68:0;;;;;;;:::i;:::-;44440:15:::1;44448:6;44440:7;:15::i;:::-;44374:89:::0;:::o;44471:93::-;44515:13;44547:9;44540:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44471:93;:::o;44081:92::-;7031:6;;-1:-1:-1;;;;;7031:6:0;3444:10;7178:23;7170:68;;;;-1:-1:-1;;;7170:68:0;;;;;;;:::i;:::-;44143:12:::1;:22:::0;;-1:-1:-1;;44143:22:0::1;44158:7:::0;::::1;44143:22:::0;::::1;::::0;;;::::1;::::0;;44081:92::o;28139:105::-;28199:13;28232:4;28225:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28139:105;;;:::o;30334:442::-;-1:-1:-1;;;;;30567:20:0;;3444:10;30567:20;;:60;;-1:-1:-1;30591:36:0;30608:4;3444:10;29616:168;:::i;30591:36::-;30545:160;;;;-1:-1:-1;;;30545:160:0;;11574:2:1;30545:160:0;;;11556:21:1;11613:2;11593:18;;;11586:30;11652:34;11632:18;;;11625:62;-1:-1:-1;;;11703:18:1;;;11696:48;11761:19;;30545:160:0;11372:414:1;30545:160:0;30716:52;30739:4;30745:2;30749:3;30754:7;30763:4;30716:22;:52::i;:::-;30334:442;;;;;:::o;44641:65::-;7031:6;;-1:-1:-1;;;;;7031:6:0;3444:10;7178:23;7170:68;;;;-1:-1:-1;;;7170:68:0;;;;;;;:::i;:::-;44688:10:::1;:8;:10::i;:::-;44641:65::o:0;28792:524::-;28948:16;29009:3;:10;28990:8;:15;:29;28982:83;;;;-1:-1:-1;;;28982:83:0;;11993:2:1;28982:83:0;;;11975:21:1;12032:2;12012:18;;;12005:30;12071:34;12051:18;;;12044:62;-1:-1:-1;;;12122:18:1;;;12115:39;12171:19;;28982:83:0;11791:405:1;28982:83:0;29078:30;29125:8;:15;29111:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29111:30:0;;29078:63;;29159:9;29154:122;29178:8;:15;29174:1;:19;29154:122;;;29234:30;29244:8;29253:1;29244:11;;;;;;;;:::i;:::-;;;;;;;29257:3;29261:1;29257:6;;;;;;;;:::i;:::-;;;;;;;29234:9;:30::i;:::-;29215:13;29229:1;29215:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;29195:3;;;:::i;:::-;;;29154:122;;;-1:-1:-1;29295:13:0;28792:524;-1:-1:-1;;;28792:524:0:o;7609:103::-;7031:6;;-1:-1:-1;;;;;7031:6:0;3444:10;7178:23;7170:68;;;;-1:-1:-1;;;7170:68:0;;;;;;;:::i;:::-;7674:30:::1;7701:1;7674:18;:30::i;44572:61::-:0;7031:6;;-1:-1:-1;;;;;7031:6:0;3444:10;7178:23;7170:68;;;;-1:-1:-1;;;7170:68:0;;;;;;;:::i;:::-;44617:8:::1;:6;:8::i;44181:185::-:0;7031:6;;-1:-1:-1;;;;;7031:6:0;3444:10;7178:23;7170:68;;;;-1:-1:-1;;;7170:68:0;;;;;;;:::i;:::-;44277:10:::1;:17:::0;;;44305:16:::1;:24:::0;;-1:-1:-1;;44305:24:0::1;;;::::0;::::1;;;::::0;;44340:18;;::::1;::::0;:9:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;44181:185:::0;;;:::o;29389:155::-;29484:52;3444:10;29517:8;29527;29484:18;:52::i;:::-;29389:155;;:::o;29856:401::-;-1:-1:-1;;;;;30064:20:0;;3444:10;30064:20;;:60;;-1:-1:-1;30088:36:0;30105:4;3444:10;29616:168;:::i;30088:36::-;30042:151;;;;-1:-1:-1;;;30042:151:0;;12807:2:1;30042:151:0;;;12789:21:1;12846:2;12826:18;;;12819:30;12885:34;12865:18;;;12858:62;-1:-1:-1;;;12936:18:1;;;12929:39;12985:19;;30042:151:0;12605:405:1;30042:151:0;30204:45;30222:4;30228:2;30232;30236:6;30244:4;30204:17;:45::i;7867:201::-;7031:6;;-1:-1:-1;;;;;7031:6:0;3444:10;7178:23;7170:68;;;;-1:-1:-1;;;7170:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7956:22:0;::::1;7948:73;;;::::0;-1:-1:-1;;;7948:73:0;;13217:2:1;7948:73:0::1;::::0;::::1;13199:21:1::0;13256:2;13236:18;;;13229:30;13295:34;13275:18;;;13268:62;-1:-1:-1;;;13346:18:1;;;13339:36;13392:19;;7948:73:0::1;13015:402:1::0;7948:73:0::1;8032:28;8051:8;8032:18;:28::i;44714:669::-:0;44891:12;;3444:10;;44832:1;;;;44891:12;;;;;;:253;;-1:-1:-1;44938:16:0;;:20;;44957:1;;44938:16;;;;;:20;:::i;:::-;44922:36;;;;;;;:72;;-1:-1:-1;44978:16:0;;;;;;;44962:32;;;44922:72;:221;;;;;45133:10;;45016:113;45063:5;;45016:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45102:25:0;;-1:-1:-1;;13771:2:1;13767:15;;;13763:53;45102:25:0;;;13751:66:1;13833:12;;;-1:-1:-1;45102:25:0;;-1:-1:-1;13622:229:1;45102:25:0;;;;;;;;;;;;;45092:36;;;;;;45016:24;:113::i;:::-;:127;44922:221;44890:303;;;;;45187:6;45162:31;;:22;45172:7;45181:2;45162:22;;:9;:22::i;:::-;:31;44890:303;:350;;;;-1:-1:-1;45211:13:0;;45237:3;;45211:22;;45227:6;;45211:13;;:22;:::i;:::-;:29;;;;44890:350;44867:433;;;;-1:-1:-1;;;44867:433:0;;14267:2:1;44867:433:0;;;14249:21:1;14306:2;14286:18;;;14279:30;-1:-1:-1;;;14325:18:1;;;14318:46;14381:18;;44867:433:0;14065:340:1;44867:433:0;45311:30;45317:7;45326:2;45311:30;;45330:6;45311:30;;;;;;;;;;;;;;:5;:30::i;:::-;45352:13;:23;;45369:6;;45352:13;;;:23;;45369:6;;45352:23;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;44765:618;;;44714:669;;:::o;34562:88::-;34629:13;;;;:4;;:13;;;;;:::i;32572:1146::-;32799:7;:14;32785:3;:10;:28;32777:81;;;;-1:-1:-1;;;32777:81:0;;14612:2:1;32777:81:0;;;14594:21:1;14651:2;14631:18;;;14624:30;14690:34;14670:18;;;14663:62;-1:-1:-1;;;14741:18:1;;;14734:38;14789:19;;32777:81:0;14410:404:1;32777:81:0;-1:-1:-1;;;;;32877:16:0;;32869:66;;;;-1:-1:-1;;;32869:66:0;;;;;;;:::i;:::-;3444:10;32992:60;3444:10;33023:4;33029:2;33033:3;33038:7;33047:4;32992:20;:60::i;:::-;33070:9;33065:421;33089:3;:10;33085:1;:14;33065:421;;;33121:10;33134:3;33138:1;33134:6;;;;;;;;:::i;:::-;;;;;;;33121:19;;33155:14;33172:7;33180:1;33172:10;;;;;;;;:::i;:::-;;;;;;;;;;;;33199:19;33221:13;;;;;;;;;;-1:-1:-1;;;;;33221:19:0;;;;;;;;;;;;33172:10;;-1:-1:-1;33263:21:0;;;;33255:76;;;;-1:-1:-1;;;33255:76:0;;;;;;;:::i;:::-;33375:9;:13;;;;;;;;;;;-1:-1:-1;;;;;33375:19:0;;;;;;;;;;33397:20;;;33375:42;;33447:17;;;;;;;:27;;33397:20;;33375:9;33447:27;;33397:20;;33447:27;:::i;:::-;;;;;;;;33106:380;;;33101:3;;;;:::i;:::-;;;33065:421;;;;33533:2;-1:-1:-1;;;;;33503:47:0;33527:4;-1:-1:-1;;;;;33503:47:0;33517:8;-1:-1:-1;;;;;33503:47:0;;33537:3;33542:7;33503:47;;;;;;;:::i;:::-;;;;;;;;33635:75;33671:8;33681:4;33687:2;33691:3;33696:7;33705:4;33635:35;:75::i;:::-;32766:952;32572:1146;;;;;:::o;5769:120::-;4781:7;;-1:-1:-1;;;4781:7:0;;;;5305:41;;;;-1:-1:-1;;;5305:41:0;;16441:2:1;5305:41:0;;;16423:21:1;16480:2;16460:18;;;16453:30;-1:-1:-1;;;16499:18:1;;;16492:50;16559:18;;5305:41:0;16239:344:1;5305:41:0;5828:7:::1;:15:::0;;-1:-1:-1;;;;5828:15:0::1;::::0;;5859:22:::1;3444:10:::0;5868:12:::1;5859:22;::::0;-1:-1:-1;;;;;7671:32:1;;;7653:51;;7641:2;7626:18;5859:22:0::1;;;;;;;5769:120::o:0;8228:191::-;8321:6;;;-1:-1:-1;;;;;8338:17:0;;;-1:-1:-1;;;;;;8338:17:0;;;;;;;8371:40;;8321:6;;;8338:17;8321:6;;8371:40;;8302:16;;8371:40;8291:128;8228:191;:::o;5510:118::-;4781:7;;-1:-1:-1;;;4781:7:0;;;;5035:9;5027:38;;;;-1:-1:-1;;;5027:38:0;;16790:2:1;5027:38:0;;;16772:21:1;16829:2;16809:18;;;16802:30;-1:-1:-1;;;16848:18:1;;;16841:46;16904:18;;5027:38:0;16588:340:1;5027:38:0;5570:7:::1;:14:::0;;-1:-1:-1;;;;5570:14:0::1;-1:-1:-1::0;;;5570:14:0::1;::::0;;5600:20:::1;5607:12;3444:10:::0;;3364:98;39306:331;39461:8;-1:-1:-1;;;;;39452:17:0;:5;-1:-1:-1;;;;;39452:17:0;;39444:71;;;;-1:-1:-1;;;39444:71:0;;17135:2:1;39444:71:0;;;17117:21:1;17174:2;17154:18;;;17147:30;17213:34;17193:18;;;17186:62;-1:-1:-1;;;17264:18:1;;;17257:39;17313:19;;39444:71:0;16933:405:1;39444:71:0;-1:-1:-1;;;;;39526:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;39526:46:0;;;;;;;;;;39588:41;;1159::1;;;39588::0;;1132:18:1;39588:41:0;;;;;;;39306:331;;;:::o;31240:974::-;-1:-1:-1;;;;;31428:16:0;;31420:66;;;;-1:-1:-1;;;31420:66:0;;;;;;;:::i;:::-;3444:10;31499:16;31564:21;31582:2;31564:17;:21::i;:::-;31541:44;;31596:24;31623:25;31641:6;31623:17;:25::i;:::-;31596:52;;31661:60;31682:8;31692:4;31698:2;31702:3;31707:7;31716:4;31661:20;:60::i;:::-;31734:19;31756:13;;;;;;;;;;;-1:-1:-1;;;;;31756:19:0;;;;;;;;;;31794:21;;;;31786:76;;;;-1:-1:-1;;;31786:76:0;;;;;;;:::i;:::-;31898:9;:13;;;;;;;;;;;-1:-1:-1;;;;;31898:19:0;;;;;;;;;;31920:20;;;31898:42;;31962:17;;;;;;;:27;;31920:20;;31898:9;31962:27;;31920:20;;31962:27;:::i;:::-;;;;-1:-1:-1;;32007:46:0;;;17517:25:1;;;17573:2;17558:18;;17551:34;;;-1:-1:-1;;;;;32007:46:0;;;;;;;;;;;;;;17490:18:1;32007:46:0;;;;;;;32138:68;32169:8;32179:4;32185:2;32189;32193:6;32201:4;32138:30;:68::i;:::-;31409:805;;;;31240:974;;;;;:::o;1771:675::-;1854:7;1897:4;1854:7;1912:497;1936:5;:12;1932:1;:16;1912:497;;;1970:20;1993:5;1999:1;1993:8;;;;;;;;:::i;:::-;;;;;;;1970:31;;2036:12;2020;:28;2016:382;;2522:13;2572:15;;;2608:4;2601:15;;;2655:4;2639:21;;2148:57;;2016:382;;;2522:13;2572:15;;;2608:4;2601:15;;;2655:4;2639:21;;2325:57;;2016:382;-1:-1:-1;1950:3:0;;;;:::i;:::-;;;;1912:497;;35036:729;-1:-1:-1;;;;;35189:16:0;;35181:62;;;;-1:-1:-1;;;35181:62:0;;17798:2:1;35181:62:0;;;17780:21:1;17837:2;17817:18;;;17810:30;17876:34;17856:18;;;17849:62;-1:-1:-1;;;17927:18:1;;;17920:31;17968:19;;35181:62:0;17596:397:1;35181:62:0;3444:10;35256:16;35321:21;35339:2;35321:17;:21::i;:::-;35298:44;;35353:24;35380:25;35398:6;35380:17;:25::i;:::-;35353:52;;35418:66;35439:8;35457:1;35461:2;35465:3;35470:7;35479:4;35418:20;:66::i;:::-;35497:9;:13;;;;;;;;;;;-1:-1:-1;;;;;35497:17:0;;;;;;;;;:27;;35518:6;;35497:9;:27;;35518:6;;35497:27;:::i;:::-;;;;-1:-1:-1;;35540:52:0;;;17517:25:1;;;17573:2;17558:18;;17551:34;;;-1:-1:-1;;;;;35540:52:0;;;;35573:1;;35540:52;;;;;;17490:18:1;35540:52:0;;;;;;;35683:74;35714:8;35732:1;35736:2;35740;35744:6;35752:4;35683:30;:74::i;:::-;35170:595;;;35036:729;;;;:::o;45391:290::-;4781:7;;-1:-1:-1;;;4781:7:0;;;;5035:9;5027:38;;;;-1:-1:-1;;;5027:38:0;;16790:2:1;5027:38:0;;;16772:21:1;16829:2;16809:18;;;16802:30;-1:-1:-1;;;16848:18:1;;;16841:46;16904:18;;5027:38:0;16588:340:1;5027:38:0;45607:66:::1;32572:1146:::0;42749:813;-1:-1:-1;;;;;42989:13:0;;9954:19;:23;42985:570;;43025:79;;-1:-1:-1;;;43025:79:0;;-1:-1:-1;;;;;43025:43:0;;;;;:79;;43069:8;;43079:4;;43085:3;;43090:7;;43099:4;;43025:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43025:79:0;;;;;;;;-1:-1:-1;;43025:79:0;;;;;;;;;;;;:::i;:::-;;;43021:523;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;43417:6;43410:14;;-1:-1:-1;;;43410:14:0;;;;;;;;:::i;43021:523::-;;;43466:62;;-1:-1:-1;;;43466:62:0;;20146:2:1;43466:62:0;;;20128:21:1;20185:2;20165:18;;;20158:30;20224:34;20204:18;;;20197:62;-1:-1:-1;;;20275:18:1;;;20268:50;20335:19;;43466:62:0;19944:416:1;43021:523:0;-1:-1:-1;;;;;;43186:60:0;;-1:-1:-1;;;43186:60:0;43182:159;;43271:50;;-1:-1:-1;;;43271:50:0;;;;;;;:::i;43570:198::-;43690:16;;;43704:1;43690:16;;;;;;;;;43636;;43665:22;;43690:16;;;;;;;;;;;;-1:-1:-1;43690:16:0;43665:41;;43728:7;43717:5;43723:1;43717:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;43755:5;43570:198;-1:-1:-1;;43570:198:0:o;41997:744::-;-1:-1:-1;;;;;42212:13:0;;9954:19;:23;42208:526;;42248:72;;-1:-1:-1;;;42248:72:0;;-1:-1:-1;;;;;42248:38:0;;;;;:72;;42287:8;;42297:4;;42303:2;;42307:6;;42315:4;;42248:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42248:72:0;;;;;;;;-1:-1:-1;;42248:72:0;;;;;;;;;;;;:::i;:::-;;;42244:479;;;;:::i;:::-;-1:-1:-1;;;;;;42370:55:0;;-1:-1:-1;;;42370:55:0;42366:154;;42450:50;;-1:-1:-1;;;42450:50:0;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:254::-;260:6;268;321:2;309:9;300:7;296:23;292:32;289:52;;;337:1;334;327:12;289:52;360:29;379:9;360:29;:::i;:::-;350:39;436:2;421:18;;;;408:32;;-1:-1:-1;;;192:254:1:o;633:131::-;-1:-1:-1;;;;;;707:32:1;;697:43;;687:71;;754:1;751;744:12;769:245;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;935:9;922:23;954:30;978:5;954:30;:::i;:::-;1003:5;769:245;-1:-1:-1;;;769:245:1:o;1211:127::-;1272:10;1267:3;1263:20;1260:1;1253:31;1303:4;1300:1;1293:15;1327:4;1324:1;1317:15;1343:249;1453:2;1434:13;;-1:-1:-1;;1430:27:1;1418:40;;1488:18;1473:34;;1509:22;;;1470:62;1467:88;;;1535:18;;:::i;:::-;1571:2;1564:22;-1:-1:-1;;1343:249:1:o;1597:556::-;1640:5;1693:3;1686:4;1678:6;1674:17;1670:27;1660:55;;1711:1;1708;1701:12;1660:55;1747:6;1734:20;1773:18;1769:2;1766:26;1763:52;;;1795:18;;:::i;:::-;1844:2;1838:9;1856:67;1911:2;1892:13;;-1:-1:-1;;1888:27:1;1917:4;1884:38;1838:9;1856:67;:::i;:::-;1947:2;1939:6;1932:18;1993:3;1986:4;1981:2;1973:6;1969:15;1965:26;1962:35;1959:55;;;2010:1;2007;2000:12;1959:55;2074:2;2067:4;2059:6;2055:17;2048:4;2040:6;2036:17;2023:54;2121:1;2097:15;;;2114:4;2093:26;2086:37;;;;2101:6;1597:556;-1:-1:-1;;;1597:556:1:o;2158:322::-;2227:6;2280:2;2268:9;2259:7;2255:23;2251:32;2248:52;;;2296:1;2293;2286:12;2248:52;2336:9;2323:23;2369:18;2361:6;2358:30;2355:50;;;2401:1;2398;2391:12;2355:50;2424;2466:7;2457:6;2446:9;2442:22;2424:50;:::i;:::-;2414:60;2158:322;-1:-1:-1;;;;2158:322:1:o;2485:472::-;2527:3;2565:5;2559:12;2592:6;2587:3;2580:19;2617:1;2627:162;2641:6;2638:1;2635:13;2627:162;;;2703:4;2759:13;;;2755:22;;2749:29;2731:11;;;2727:20;;2720:59;2656:12;2627:162;;;2807:6;2804:1;2801:13;2798:87;;;2873:1;2866:4;2857:6;2852:3;2848:16;2844:27;2837:38;2798:87;-1:-1:-1;2939:2:1;2918:15;-1:-1:-1;;2914:29:1;2905:39;;;;2946:4;2901:50;;2485:472;-1:-1:-1;;2485:472:1:o;2962:220::-;3111:2;3100:9;3093:21;3074:4;3131:45;3172:2;3161:9;3157:18;3149:6;3131:45;:::i;3187:160::-;3252:20;;3308:13;;3301:21;3291:32;;3281:60;;3337:1;3334;3327:12;3352:180;3408:6;3461:2;3449:9;3440:7;3436:23;3432:32;3429:52;;;3477:1;3474;3467:12;3429:52;3500:26;3516:9;3500:26;:::i;3537:180::-;3596:6;3649:2;3637:9;3628:7;3624:23;3620:32;3617:52;;;3665:1;3662;3655:12;3617:52;-1:-1:-1;3688:23:1;;3537:180;-1:-1:-1;3537:180:1:o;3722:183::-;3782:4;3815:18;3807:6;3804:30;3801:56;;;3837:18;;:::i;:::-;-1:-1:-1;3882:1:1;3878:14;3894:4;3874:25;;3722:183::o;3910:724::-;3964:5;4017:3;4010:4;4002:6;3998:17;3994:27;3984:55;;4035:1;4032;4025:12;3984:55;4071:6;4058:20;4097:4;4120:43;4160:2;4120:43;:::i;:::-;4192:2;4186:9;4204:31;4232:2;4224:6;4204:31;:::i;:::-;4270:18;;;4362:1;4358:10;;;;4346:23;;4342:32;;;4304:15;;;;-1:-1:-1;4386:15:1;;;4383:35;;;4414:1;4411;4404:12;4383:35;4450:2;4442:6;4438:15;4462:142;4478:6;4473:3;4470:15;4462:142;;;4544:17;;4532:30;;4582:12;;;;4495;;4462:142;;;-1:-1:-1;4622:6:1;3910:724;-1:-1:-1;;;;;;3910:724:1:o;4639:944::-;4793:6;4801;4809;4817;4825;4878:3;4866:9;4857:7;4853:23;4849:33;4846:53;;;4895:1;4892;4885:12;4846:53;4918:29;4937:9;4918:29;:::i;:::-;4908:39;;4966:38;5000:2;4989:9;4985:18;4966:38;:::i;:::-;4956:48;;5055:2;5044:9;5040:18;5027:32;5078:18;5119:2;5111:6;5108:14;5105:34;;;5135:1;5132;5125:12;5105:34;5158:61;5211:7;5202:6;5191:9;5187:22;5158:61;:::i;:::-;5148:71;;5272:2;5261:9;5257:18;5244:32;5228:48;;5301:2;5291:8;5288:16;5285:36;;;5317:1;5314;5307:12;5285:36;5340:63;5395:7;5384:8;5373:9;5369:24;5340:63;:::i;:::-;5330:73;;5456:3;5445:9;5441:19;5428:33;5412:49;;5486:2;5476:8;5473:16;5470:36;;;5502:1;5499;5492:12;5470:36;;5525:52;5569:7;5558:8;5547:9;5543:24;5525:52;:::i;:::-;5515:62;;;4639:944;;;;;;;;:::o;5588:1208::-;5706:6;5714;5767:2;5755:9;5746:7;5742:23;5738:32;5735:52;;;5783:1;5780;5773:12;5735:52;5823:9;5810:23;5852:18;5893:2;5885:6;5882:14;5879:34;;;5909:1;5906;5899:12;5879:34;5947:6;5936:9;5932:22;5922:32;;5992:7;5985:4;5981:2;5977:13;5973:27;5963:55;;6014:1;6011;6004:12;5963:55;6050:2;6037:16;6072:4;6095:43;6135:2;6095:43;:::i;:::-;6167:2;6161:9;6179:31;6207:2;6199:6;6179:31;:::i;:::-;6245:18;;;6333:1;6329:10;;;;6321:19;;6317:28;;;6279:15;;;;-1:-1:-1;6357:19:1;;;6354:39;;;6389:1;6386;6379:12;6354:39;6413:11;;;;6433:148;6449:6;6444:3;6441:15;6433:148;;;6515:23;6534:3;6515:23;:::i;:::-;6503:36;;6466:12;;;;6559;;;;6433:148;;;6600:6;-1:-1:-1;;6644:18:1;;6631:32;;-1:-1:-1;;6675:16:1;;;6672:36;;;6704:1;6701;6694:12;6672:36;;6727:63;6782:7;6771:8;6760:9;6756:24;6727:63;:::i;:::-;6717:73;;;5588:1208;;;;;:::o;6801:435::-;6854:3;6892:5;6886:12;6919:6;6914:3;6907:19;6945:4;6974:2;6969:3;6965:12;6958:19;;7011:2;7004:5;7000:14;7032:1;7042:169;7056:6;7053:1;7050:13;7042:169;;;7117:13;;7105:26;;7151:12;;;;7186:15;;;;7078:1;7071:9;7042:169;;;-1:-1:-1;7227:3:1;;6801:435;-1:-1:-1;;;;;6801:435:1:o;7241:261::-;7420:2;7409:9;7402:21;7383:4;7440:56;7492:2;7481:9;7477:18;7469:6;7440:56;:::i;7715:547::-;7800:6;7808;7816;7869:2;7857:9;7848:7;7844:23;7840:32;7837:52;;;7885:1;7882;7875:12;7837:52;7921:9;7908:23;7898:33;;7981:2;7970:9;7966:18;7953:32;8025:4;8018:5;8014:16;8007:5;8004:27;7994:55;;8045:1;8042;8035:12;7994:55;8068:5;-1:-1:-1;8124:2:1;8109:18;;8096:32;8151:18;8140:30;;8137:50;;;8183:1;8180;8173:12;8137:50;8206;8248:7;8239:6;8228:9;8224:22;8206:50;:::i;:::-;8196:60;;;7715:547;;;;;:::o;8267:254::-;8332:6;8340;8393:2;8381:9;8372:7;8368:23;8364:32;8361:52;;;8409:1;8406;8399:12;8361:52;8432:29;8451:9;8432:29;:::i;:::-;8422:39;;8480:35;8511:2;8500:9;8496:18;8480:35;:::i;:::-;8470:45;;8267:254;;;;;:::o;8526:260::-;8594:6;8602;8655:2;8643:9;8634:7;8630:23;8626:32;8623:52;;;8671:1;8668;8661:12;8623:52;8694:29;8713:9;8694:29;:::i;:::-;8684:39;;8742:38;8776:2;8765:9;8761:18;8742:38;:::i;8791:607::-;8895:6;8903;8911;8919;8927;8980:3;8968:9;8959:7;8955:23;8951:33;8948:53;;;8997:1;8994;8987:12;8948:53;9020:29;9039:9;9020:29;:::i;:::-;9010:39;;9068:38;9102:2;9091:9;9087:18;9068:38;:::i;:::-;9058:48;;9153:2;9142:9;9138:18;9125:32;9115:42;;9204:2;9193:9;9189:18;9176:32;9166:42;;9259:3;9248:9;9244:19;9231:33;9287:18;9279:6;9276:30;9273:50;;;9319:1;9316;9309:12;9273:50;9342;9384:7;9375:6;9364:9;9360:22;9342:50;:::i;9403:186::-;9462:6;9515:2;9503:9;9494:7;9490:23;9486:32;9483:52;;;9531:1;9528;9521:12;9483:52;9554:29;9573:9;9554:29;:::i;9594:615::-;9680:6;9688;9741:2;9729:9;9720:7;9716:23;9712:32;9709:52;;;9757:1;9754;9747:12;9709:52;9797:9;9784:23;9826:18;9867:2;9859:6;9856:14;9853:34;;;9883:1;9880;9873:12;9853:34;9921:6;9910:9;9906:22;9896:32;;9966:7;9959:4;9955:2;9951:13;9947:27;9937:55;;9988:1;9985;9978:12;9937:55;10028:2;10015:16;10054:2;10046:6;10043:14;10040:34;;;10070:1;10067;10060:12;10040:34;10123:7;10118:2;10108:6;10105:1;10101:14;10097:2;10093:23;10089:32;10086:45;10083:65;;;10144:1;10141;10134:12;10083:65;10175:2;10167:11;;;;;10197:6;;-1:-1:-1;9594:615:1;;-1:-1:-1;;;;9594:615:1:o;10626:356::-;10828:2;10810:21;;;10847:18;;;10840:30;10906:34;10901:2;10886:18;;10879:62;10973:2;10958:18;;10626:356::o;10987:380::-;11066:1;11062:12;;;;11109;;;11130:61;;11184:4;11176:6;11172:17;11162:27;;11130:61;11237:2;11229:6;11226:14;11206:18;11203:38;11200:161;;11283:10;11278:3;11274:20;11271:1;11264:31;11318:4;11315:1;11308:15;11346:4;11343:1;11336:15;11200:161;;10987:380;;;:::o;12201:127::-;12262:10;12257:3;12253:20;12250:1;12243:31;12293:4;12290:1;12283:15;12317:4;12314:1;12307:15;12333:127;12394:10;12389:3;12385:20;12382:1;12375:31;12425:4;12422:1;12415:15;12449:4;12446:1;12439:15;12465:135;12504:3;12525:17;;;12522:43;;12545:18;;:::i;:::-;-1:-1:-1;12592:1:1;12581:13;;12465:135::o;13422:195::-;13460:4;13497;13494:1;13490:12;13529:4;13526:1;13522:12;13554:3;13549;13546:12;13543:38;;;13561:18;;:::i;:::-;13598:13;;;13422:195;-1:-1:-1;;;13422:195:1:o;13856:204::-;13894:3;13930:4;13927:1;13923:12;13962:4;13959:1;13955:12;13997:3;13991:4;13987:14;13982:3;13979:23;13976:49;;;14005:18;;:::i;:::-;14041:13;;13856:204;-1:-1:-1;;;13856:204:1:o;14819:401::-;15021:2;15003:21;;;15060:2;15040:18;;;15033:30;15099:34;15094:2;15079:18;;15072:62;-1:-1:-1;;;15165:2:1;15150:18;;15143:35;15210:3;15195:19;;14819:401::o;15225:406::-;15427:2;15409:21;;;15466:2;15446:18;;;15439:30;15505:34;15500:2;15485:18;;15478:62;-1:-1:-1;;;15571:2:1;15556:18;;15549:40;15621:3;15606:19;;15225:406::o;15636:128::-;15676:3;15707:1;15703:6;15700:1;15697:13;15694:39;;;15713:18;;:::i;:::-;-1:-1:-1;15749:9:1;;15636:128::o;15769:465::-;16026:2;16015:9;16008:21;15989:4;16052:56;16104:2;16093:9;16089:18;16081:6;16052:56;:::i;:::-;16156:9;16148:6;16144:22;16139:2;16128:9;16124:18;16117:50;16184:44;16221:6;16213;16184:44;:::i;:::-;16176:52;15769:465;-1:-1:-1;;;;;15769:465:1:o;17998:827::-;-1:-1:-1;;;;;18395:15:1;;;18377:34;;18447:15;;18442:2;18427:18;;18420:43;18357:3;18494:2;18479:18;;18472:31;;;18320:4;;18526:57;;18563:19;;18555:6;18526:57;:::i;:::-;18631:9;18623:6;18619:22;18614:2;18603:9;18599:18;18592:50;18665:44;18702:6;18694;18665:44;:::i;:::-;18651:58;;18758:9;18750:6;18746:22;18740:3;18729:9;18725:19;18718:51;18786:33;18812:6;18804;18786:33;:::i;:::-;18778:41;17998:827;-1:-1:-1;;;;;;;;17998:827:1:o;18830:249::-;18899:6;18952:2;18940:9;18931:7;18927:23;18923:32;18920:52;;;18968:1;18965;18958:12;18920:52;19000:9;18994:16;19019:30;19043:5;19019:30;:::i;19084:179::-;19119:3;19161:1;19143:16;19140:23;19137:120;;;19207:1;19204;19201;19186:23;-1:-1:-1;19244:1:1;19238:8;19233:3;19229:18;19137:120;19084:179;:::o;19268:671::-;19307:3;19349:4;19331:16;19328:26;19325:39;;;19268:671;:::o;19325:39::-;19391:2;19385:9;-1:-1:-1;;19456:16:1;19452:25;;19449:1;19385:9;19428:50;19507:4;19501:11;19531:16;19566:18;19637:2;19630:4;19622:6;19618:17;19615:25;19610:2;19602:6;19599:14;19596:45;19593:58;;;19644:5;;;;;19268:671;:::o;19593:58::-;19681:6;19675:4;19671:17;19660:28;;19717:3;19711:10;19744:2;19736:6;19733:14;19730:27;;;19750:5;;;;;;19268:671;:::o;19730:27::-;19834:2;19815:16;19809:4;19805:27;19801:36;19794:4;19785:6;19780:3;19776:16;19772:27;19769:69;19766:82;;;19841:5;;;;;;19268:671;:::o;19766:82::-;19857:57;19908:4;19899:6;19891;19887:19;19883:30;19877:4;19857:57;:::i;:::-;-1:-1:-1;19930:3:1;;19268:671;-1:-1:-1;;;;;19268:671:1:o;20365:404::-;20567:2;20549:21;;;20606:2;20586:18;;;20579:30;20645:34;20640:2;20625:18;;20618:62;-1:-1:-1;;;20711:2:1;20696:18;;20689:38;20759:3;20744:19;;20365:404::o;20774:561::-;-1:-1:-1;;;;;21071:15:1;;;21053:34;;21123:15;;21118:2;21103:18;;21096:43;21170:2;21155:18;;21148:34;;;21213:2;21198:18;;21191:34;;;21033:3;21256;21241:19;;21234:32;;;20996:4;;21283:46;;21309:19;;21301:6;21283:46;:::i;:::-;21275:54;20774:561;-1:-1:-1;;;;;;;20774:561:1:o

Swarm Source

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