ETH Price: $3,482.49 (+2.19%)
Gas: 8 Gwei

Token

Goobers NFT Rewards (GOOBREWARDS)
 

Overview

Max Total Supply

3,155 GOOBREWARDS

Holders

1,702

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

0xe83bb5d3230dc6569bfeeb1b0f5af5d1b1e967bf
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:
GoobersRewardsNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-26
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

/**
 * @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);
}


/**
 * @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;
    }
}

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

/**
 * @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;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}


/**
 * @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.
        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. 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);
}

/**
 * @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;
}


/**
 * @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);
}


/**
 * @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 {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), 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);

        _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);

        _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 `account`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(account != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data);

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

        _doSafeTransferAcceptanceCheck(operator, address(0), account, 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);

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

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

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

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

        emit TransferSingle(operator, account, address(0), id, amount);
    }

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

        address operator = _msgSender();

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

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

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

        emit TransferBatch(operator, account, address(0), ids, amounts);
    }

    /**
     * @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 {}

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


contract GoobersRewardsNFT is ERC1155 {
    address public admin;
    string public name;
    string public symbol;
    string public metadata;
    
    mapping(uint256 => bool) minted;
    
    using ECDSA for bytes32;
    address signer = 0x2d74B499EF55E067cB1C2715F01AA505187B6F80;
	address maintainer;

    modifier onlyAdmin {
        require(admin == msg.sender, "Not allowed");
        _;
    }

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _metadata
    ) ERC1155("") {
        name = _name;
        symbol = _symbol;
        metadata = _metadata;
        admin = msg.sender;
    }

    function authorizedMint(uint _nftId, bool _unique, uint _nonce, bytes memory _signature) public {
        bytes32 hash = hashTransaction(msg.sender, _nftId, _unique, _nonce);
        require(!minted[uint(hash)], "Token already minted");
        require(matchSignerAdmin(signTransaction(hash), _signature), "Signature mismatch");
        _mint(msg.sender, _nftId, 1, "");
        minted[uint(hash)] = true;
    }

    function adminBatchMint(
        address[] memory _to,
        uint256[] memory _ids,
        uint256[] memory _values,
        bytes memory _data
    ) public onlyAdmin {
        for (uint256 i = 0; i < _to.length; i++) {
            _mint(_to[i], _ids[i], _values[i], _data);
        }
    }

    function updateMetadata(string memory _metadata) external {
		require (msg.sender == admin || msg.sender == maintainer, "Not allowed");
        metadata = _metadata;
    }

    function uri(uint256 _id) public view override returns (string memory) {
        return string(abi.encodePacked(metadata, uint2str(_id), ".json"));
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC1155)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
    
    function hasBeenMinted(address _sender, uint _nftId, bool _unique, uint _nonce) public view returns (bool) {
        return minted[uint(keccak256(abi.encodePacked(_sender, _nftId, _unique, _nonce)))];
    }
    
    function hashTransaction(address _sender, uint _nftId, bool _unique, uint _nonce) public pure returns (bytes32) {
        bytes32 _hash = keccak256(abi.encodePacked(_sender, _nftId, _unique, _nonce));
    	return _hash;
	}
	
	
	function signTransaction(bytes32 _hash) public pure returns (bytes32) {
	    return _hash.toEthSignedMessageHash();
	}

	function matchSignerAdmin(bytes32 _payload, bytes memory _signature) public view returns (bool) {
		return signer == _payload.recover(_signature);
	}

    function changeMaintainer(address newAddress) external onlyAdmin {
        maintainer = newAddress;
    }
	
	function changeAdmin(address newAdmin) external onlyAdmin {
	    admin = newAdmin;
	}
	
	function changeApprovedSigner(address newSigner) external onlyAdmin {
	    signer = newSigner;
	}

    function uint2str(uint _i) internal pure returns (string memory _uintAsString) {
        if (_i == 0) {
            return "0";
        }
        uint j = _i;
        uint len;
        while (j != 0) {
            len++;
            j /= 10;
        }
        bytes memory bstr = new bytes(len);
        uint k = len;
        while (_i != 0) {
            k = k-1;
            uint8 temp = (48 + uint8(_i - _i / 10 * 10));
            bytes1 b1 = bytes1(temp);
            bstr[k] = b1;
            _i /= 10;
        }
        return string(bstr);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_metadata","type":"string"}],"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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_values","type":"uint256[]"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"adminBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftId","type":"uint256"},{"internalType":"bool","name":"_unique","type":"bool"},{"internalType":"uint256","name":"_nonce","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"authorizedMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"address","name":"newAdmin","type":"address"}],"name":"changeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newSigner","type":"address"}],"name":"changeApprovedSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"changeMaintainer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"},{"internalType":"uint256","name":"_nftId","type":"uint256"},{"internalType":"bool","name":"_unique","type":"bool"},{"internalType":"uint256","name":"_nonce","type":"uint256"}],"name":"hasBeenMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"},{"internalType":"uint256","name":"_nftId","type":"uint256"},{"internalType":"bool","name":"_unique","type":"bool"},{"internalType":"uint256","name":"_nonce","type":"uint256"}],"name":"hashTransaction","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","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":"_payload","type":"bytes32"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"matchSignerAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadata","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"_hash","type":"bytes32"}],"name":"signTransaction","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_metadata","type":"string"}],"name":"updateMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

6080604052600880546001600160a01b031916732d74b499ef55e067cb1c2715f01aa505187b6f801790553480156200003757600080fd5b50604051620029f4380380620029f48339810160408190526200005a9162000249565b6040805160208101909152600081526200007481620000d3565b5082516200008a906004906020860190620000ec565b508151620000a0906005906020850190620000ec565b508051620000b6906006906020840190620000ec565b5050600380546001600160a01b03191633179055506200032d9050565b8051620000e8906002906020840190620000ec565b5050565b828054620000fa90620002da565b90600052602060002090601f0160209004810192826200011e576000855562000169565b82601f106200013957805160ff191683800117855562000169565b8280016001018555821562000169579182015b82811115620001695782518255916020019190600101906200014c565b50620001779291506200017b565b5090565b5b808211156200017757600081556001016200017c565b600082601f830112620001a457600080fd5b81516001600160401b0380821115620001c157620001c162000317565b604051601f8301601f19908116603f01168101908282118183101715620001ec57620001ec62000317565b816040528381526020925086838588010111156200020957600080fd5b600091505b838210156200022d57858201830151818301840152908201906200020e565b838211156200023f5760008385830101525b9695505050505050565b6000806000606084860312156200025f57600080fd5b83516001600160401b03808211156200027757600080fd5b620002858783880162000192565b945060208601519150808211156200029c57600080fd5b620002aa8783880162000192565b93506040860151915080821115620002c157600080fd5b50620002d08682870162000192565b9150509250925092565b600181811c90821680620002ef57607f821691505b602082108114156200031157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6126b7806200033d6000396000f3fe608060405234801561001057600080fd5b50600436106101815760003560e01c8063955c20b2116100d8578063d87b90d21161008c578063ed1261ba11610066578063ed1261ba146103ed578063f242432a14610400578063f851a4401461041357600080fd5b8063d87b90d214610326578063e0f4ea901461039e578063e985e9c5146103b157600080fd5b8063a12ee7ba116100bd578063a12ee7ba1461029b578063a22cb465146102ae578063a5848ee1146102c157600080fd5b8063955c20b21461028057806395d89b411461029357600080fd5b8063392f37e91161013a57806385a318e11161011457806385a318e1146102475780638f2839701461025a578063918b5be11461026d57600080fd5b8063392f37e91461020c5780634e1273f4146102145780636613d13a1461023457600080fd5b806306fdde031161016b57806306fdde03146101cf5780630e89341c146101e45780632eb2c2d6146101f757600080fd5b8062fdd58e1461018657806301ffc9a7146101ac575b600080fd5b610199610194366004611f0a565b61043e565b6040519081526020015b60405180910390f35b6101bf6101ba3660046120df565b6104e7565b60405190151581526020016101a3565b6101d76104f8565b6040516101a391906123ee565b6101d76101f2366004612089565b610586565b61020a610205366004611dd1565b6105ba565b005b6101d761065c565b610227610222366004611f78565b610669565b6040516101a391906123b6565b61020a610242366004611d83565b6107a7565b61020a61025536600461216a565b61081e565b61020a610268366004611d83565b610969565b61020a61027b366004612119565b6109e0565b61019961028e366004612089565b610a54565b6101d7610aad565b61020a6102a9366004611d83565b610aba565b61020a6102bc366004611ee0565b610b31565b6101996102cf366004611f34565b6040805160609590951b6bffffffffffffffffffffffff1916602080870191909152603486019490945291151560f81b60548501526055808501919091528151808503909101815260759093019052815191012090565b6101bf610334366004611f34565b6040805160609590951b6bffffffffffffffffffffffff1916602080870191909152603486019490945291151560f81b6054850152605580850191909152815180850390910181526075909301815282519282019290922060009081526007909152205460ff1690565b6101bf6103ac3660046120a2565b610c1c565b6101bf6103bf366004611d9e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61020a6103fb366004611fdc565b610c40565b61020a61040e366004611e7b565b610cfd565b600354610426906001600160a01b031681565b6040516001600160a01b0390911681526020016101a3565b60006001600160a01b0383166104c15760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006104f282610d98565b92915050565b60048054610505906124ea565b80601f0160208091040260200160405190810160405280929190818152602001828054610531906124ea565b801561057e5780601f106105535761010080835404028352916020019161057e565b820191906000526020600020905b81548152906001019060200180831161056157829003601f168201915b505050505081565b6060600661059383610e33565b6040516020016105a4929190612242565b6040516020818303038152906040529050919050565b6001600160a01b0385163314806105d657506105d685336103bf565b6106485760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f766564000000000000000000000000000060648201526084016104b8565b6106558585858585610f90565b5050505050565b60068054610505906124ea565b606081518351146106e25760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d61746368000000000000000000000000000000000000000000000060648201526084016104b8565b6000835167ffffffffffffffff8111156106fe576106fe6125af565b604051908082528060200260200182016040528015610727578160200160208202803683370190505b50905060005b845181101561079f5761077285828151811061074b5761074b612599565b602002602001015185838151811061076557610765612599565b602002602001015161043e565b82828151811061078457610784612599565b602090810291909101015261079881612552565b905061072d565b509392505050565b6003546001600160a01b031633146107ef5760405162461bcd60e51b815260206004820152600b60248201526a139bdd08185b1b1bddd95960aa1b60448201526064016104b8565b6008805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b604080513360601b6bffffffffffffffffffffffff19166020808301919091526034820187905285151560f81b605483015260558083018690528351808403909101815260759092018352815191810191909120600081815260079092529190205460ff16156108d05760405162461bcd60e51b815260206004820152601460248201527f546f6b656e20616c7265616479206d696e74656400000000000000000000000060448201526064016104b8565b6108e26108dc82610a54565b83610c1c565b61092e5760405162461bcd60e51b815260206004820152601260248201527f5369676e6174757265206d69736d61746368000000000000000000000000000060448201526064016104b8565b61094a3386600160405180602001604052806000815250611203565b6000908152600760205260409020805460ff1916600117905550505050565b6003546001600160a01b031633146109b15760405162461bcd60e51b815260206004820152600b60248201526a139bdd08185b1b1bddd95960aa1b60448201526064016104b8565b6003805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6003546001600160a01b0316331480610a0357506009546001600160a01b031633145b610a3d5760405162461bcd60e51b815260206004820152600b60248201526a139bdd08185b1b1bddd95960aa1b60448201526064016104b8565b8051610a50906006906020840190611b51565b5050565b60006104f2826040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b60058054610505906124ea565b6003546001600160a01b03163314610b025760405162461bcd60e51b815260206004820152600b60248201526a139bdd08185b1b1bddd95960aa1b60448201526064016104b8565b6009805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b336001600160a01b0383161415610bb05760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c66000000000000000000000000000000000000000000000060648201526084016104b8565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000610c288383611329565b6008546001600160a01b039182169116149392505050565b6003546001600160a01b03163314610c885760405162461bcd60e51b815260206004820152600b60248201526a139bdd08185b1b1bddd95960aa1b60448201526064016104b8565b60005b845181101561065557610ceb858281518110610ca957610ca9612599565b6020026020010151858381518110610cc357610cc3612599565b6020026020010151858481518110610cdd57610cdd612599565b602002602001015185611203565b80610cf581612552565b915050610c8b565b6001600160a01b038516331480610d195750610d1985336103bf565b610d8b5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f766564000000000000000000000000000000000000000000000060648201526084016104b8565b6106558585858585611345565b60006001600160e01b031982167fd9b67a26000000000000000000000000000000000000000000000000000000001480610dfb57506001600160e01b031982167f0e89341c00000000000000000000000000000000000000000000000000000000145b806104f257507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146104f2565b606081610e7357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115610e9d5780610e8781612552565b9150610e969050600a83612462565b9150610e77565b60008167ffffffffffffffff811115610eb857610eb86125af565b6040519080825280601f01601f191660200182016040528015610ee2576020820181803683370190505b509050815b8515610f8757610ef86001826124a3565b90506000610f07600a88612462565b610f1290600a612484565b610f1c90886124a3565b610f2790603061243d565b905060008160f81b905080848481518110610f4457610f44612599565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350610f7e600a89612462565b97505050610ee7565b50949350505050565b81518351146110075760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d6174636800000000000000000000000000000000000000000000000060648201526084016104b8565b6001600160a01b03841661106b5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016104b8565b3360005b845181101561119557600085828151811061108c5761108c612599565b6020026020010151905060008583815181106110aa576110aa612599565b602090810291909101810151600084815280835260408082206001600160a01b038e16835290935291909120549091508181101561113d5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201526939103a3930b739b332b960b11b60648201526084016104b8565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b1682528120805484929061117a908490612425565b925050819055505050508061118e90612552565b905061106f565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516111e59291906123c9565b60405180910390a46111fb8187878787876114e3565b505050505050565b6001600160a01b03841661127f5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016104b8565b336112998160008761129088611698565b61065588611698565b6000848152602081815260408083206001600160a01b0389168452909152812080548592906112c9908490612425565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610655816000878787876116e3565b600080600061133885856117ee565b9150915061079f8161185e565b6001600160a01b0384166113a95760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016104b8565b336113b981878761129088611698565b6000848152602081815260408083206001600160a01b038a1684529091529020548381101561143d5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201526939103a3930b739b332b960b11b60648201526084016104b8565b6000858152602081815260408083206001600160a01b038b811685529252808320878503905590881682528120805486929061147a908490612425565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46114da8288888888886116e3565b50505050505050565b6001600160a01b0384163b156111fb5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906115279089908990889088908890600401612315565b602060405180830381600087803b15801561154157600080fd5b505af1925050508015611571575060408051601f3d908101601f1916820190925261156e918101906120fc565b60015b6116275761157d6125c5565b806308c379a014156115b757506115926125e1565b8061159d57506115b9565b8060405162461bcd60e51b81526004016104b891906123ee565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e74657200000000000000000000000060648201526084016104b8565b6001600160e01b0319811663bc197c8160e01b146114da5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b60648201526084016104b8565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106116d2576116d2612599565b602090810291909101015292915050565b6001600160a01b0384163b156111fb5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906117279089908990889088908890600401612373565b602060405180830381600087803b15801561174157600080fd5b505af1925050508015611771575060408051601f3d908101601f1916820190925261176e918101906120fc565b60015b61177d5761157d6125c5565b6001600160e01b0319811663f23a6e6160e01b146114da5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b60648201526084016104b8565b6000808251604114156118255760208301516040840151606085015160001a61181987828585611a1c565b94509450505050611857565b82516040141561184f5760208301516040840151611844868383611b09565b935093505050611857565b506000905060025b9250929050565b600081600481111561187257611872612583565b141561187b5750565b600181600481111561188f5761188f612583565b14156118dd5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016104b8565b60028160048111156118f1576118f1612583565b141561193f5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016104b8565b600381600481111561195357611953612583565b14156119ac5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016104b8565b60048160048111156119c0576119c0612583565b1415611a195760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016104b8565b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611a535750600090506003611b00565b8460ff16601b14158015611a6b57508460ff16601c14155b15611a7c5750600090506004611b00565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611ad0573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611af957600060019250925050611b00565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b01611b4387828885611a1c565b935093505050935093915050565b828054611b5d906124ea565b90600052602060002090601f016020900481019282611b7f5760008555611bc5565b82601f10611b9857805160ff1916838001178555611bc5565b82800160010185558215611bc5579182015b82811115611bc5578251825591602001919060010190611baa565b50611bd1929150611bd5565b5090565b5b80821115611bd15760008155600101611bd6565b600067ffffffffffffffff831115611c0457611c046125af565b604051611c1b601f8501601f191660200182612525565b809150838152848484011115611c3057600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b0381168114611c5f57600080fd5b919050565b600082601f830112611c7557600080fd5b81356020611c8282612401565b604051611c8f8282612525565b8381528281019150858301600585901b87018401881015611caf57600080fd5b60005b85811015611cd557611cc382611c48565b84529284019290840190600101611cb2565b5090979650505050505050565b600082601f830112611cf357600080fd5b81356020611d0082612401565b604051611d0d8282612525565b8381528281019150858301600585901b87018401881015611d2d57600080fd5b60005b85811015611cd557813584529284019290840190600101611d30565b80358015158114611c5f57600080fd5b600082601f830112611d6d57600080fd5b611d7c83833560208501611bea565b9392505050565b600060208284031215611d9557600080fd5b611d7c82611c48565b60008060408385031215611db157600080fd5b611dba83611c48565b9150611dc860208401611c48565b90509250929050565b600080600080600060a08688031215611de957600080fd5b611df286611c48565b9450611e0060208701611c48565b9350604086013567ffffffffffffffff80821115611e1d57600080fd5b611e2989838a01611ce2565b94506060880135915080821115611e3f57600080fd5b611e4b89838a01611ce2565b93506080880135915080821115611e6157600080fd5b50611e6e88828901611d5c565b9150509295509295909350565b600080600080600060a08688031215611e9357600080fd5b611e9c86611c48565b9450611eaa60208701611c48565b93506040860135925060608601359150608086013567ffffffffffffffff811115611ed457600080fd5b611e6e88828901611d5c565b60008060408385031215611ef357600080fd5b611efc83611c48565b9150611dc860208401611d4c565b60008060408385031215611f1d57600080fd5b611f2683611c48565b946020939093013593505050565b60008060008060808587031215611f4a57600080fd5b611f5385611c48565b935060208501359250611f6860408601611d4c565b9396929550929360600135925050565b60008060408385031215611f8b57600080fd5b823567ffffffffffffffff80821115611fa357600080fd5b611faf86838701611c64565b93506020850135915080821115611fc557600080fd5b50611fd285828601611ce2565b9150509250929050565b60008060008060808587031215611ff257600080fd5b843567ffffffffffffffff8082111561200a57600080fd5b61201688838901611c64565b9550602087013591508082111561202c57600080fd5b61203888838901611ce2565b9450604087013591508082111561204e57600080fd5b61205a88838901611ce2565b9350606087013591508082111561207057600080fd5b5061207d87828801611d5c565b91505092959194509250565b60006020828403121561209b57600080fd5b5035919050565b600080604083850312156120b557600080fd5b82359150602083013567ffffffffffffffff8111156120d357600080fd5b611fd285828601611d5c565b6000602082840312156120f157600080fd5b8135611d7c8161266b565b60006020828403121561210e57600080fd5b8151611d7c8161266b565b60006020828403121561212b57600080fd5b813567ffffffffffffffff81111561214257600080fd5b8201601f8101841361215357600080fd5b61216284823560208401611bea565b949350505050565b6000806000806080858703121561218057600080fd5b8435935061219060208601611d4c565b925060408501359150606085013567ffffffffffffffff8111156121b357600080fd5b61207d87828801611d5c565b600081518084526020808501945080840160005b838110156121ef578151875295820195908201906001016121d3565b509495945050505050565b600081518084526122128160208601602086016124ba565b601f01601f19169290920160200192915050565b600081516122388185602086016124ba565b9290920192915050565b600080845481600182811c91508083168061225e57607f831692505b602080841082141561227e57634e487b7160e01b86526022600452602486fd5b81801561229257600181146122a3576122d0565b60ff198616895284890196506122d0565b60008b81526020902060005b868110156122c85781548b8201529085019083016122af565b505084890196505b50505050505061230c6122e38286612226565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815260050190565b95945050505050565b60006001600160a01b03808816835280871660208401525060a0604083015261234160a08301866121bf565b828103606084015261235381866121bf565b9050828103608084015261236781856121fa565b98975050505050505050565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a060808301526123ab60a08301846121fa565b979650505050505050565b602081526000611d7c60208301846121bf565b6040815260006123dc60408301856121bf565b828103602084015261230c81856121bf565b602081526000611d7c60208301846121fa565b600067ffffffffffffffff82111561241b5761241b6125af565b5060051b60200190565b600082198211156124385761243861256d565b500190565b600060ff821660ff84168060ff0382111561245a5761245a61256d565b019392505050565b60008261247f57634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561249e5761249e61256d565b500290565b6000828210156124b5576124b561256d565b500390565b60005b838110156124d55781810151838201526020016124bd565b838111156124e4576000848401525b50505050565b600181811c908216806124fe57607f821691505b6020821081141561251f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff8111828210171561254b5761254b6125af565b6040525050565b60006000198214156125665761256661256d565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156125de5760046000803e5060005160e01c5b90565b600060443d10156125ef5790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561261f57505050505090565b82850191508151818111156126375750505050505090565b843d87010160208285010111156126515750505050505090565b61266060208286010187612525565b509095945050505050565b6001600160e01b031981168114611a1957600080fdfea2646970667358221220aae01f9c55be1b3c7c286c2bfd3a9d15a2813a45f4e047f20473e3e9f8b86d7c64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000013476f6f62657273204e4654205265776172647300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b474f4f42524557415244530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101815760003560e01c8063955c20b2116100d8578063d87b90d21161008c578063ed1261ba11610066578063ed1261ba146103ed578063f242432a14610400578063f851a4401461041357600080fd5b8063d87b90d214610326578063e0f4ea901461039e578063e985e9c5146103b157600080fd5b8063a12ee7ba116100bd578063a12ee7ba1461029b578063a22cb465146102ae578063a5848ee1146102c157600080fd5b8063955c20b21461028057806395d89b411461029357600080fd5b8063392f37e91161013a57806385a318e11161011457806385a318e1146102475780638f2839701461025a578063918b5be11461026d57600080fd5b8063392f37e91461020c5780634e1273f4146102145780636613d13a1461023457600080fd5b806306fdde031161016b57806306fdde03146101cf5780630e89341c146101e45780632eb2c2d6146101f757600080fd5b8062fdd58e1461018657806301ffc9a7146101ac575b600080fd5b610199610194366004611f0a565b61043e565b6040519081526020015b60405180910390f35b6101bf6101ba3660046120df565b6104e7565b60405190151581526020016101a3565b6101d76104f8565b6040516101a391906123ee565b6101d76101f2366004612089565b610586565b61020a610205366004611dd1565b6105ba565b005b6101d761065c565b610227610222366004611f78565b610669565b6040516101a391906123b6565b61020a610242366004611d83565b6107a7565b61020a61025536600461216a565b61081e565b61020a610268366004611d83565b610969565b61020a61027b366004612119565b6109e0565b61019961028e366004612089565b610a54565b6101d7610aad565b61020a6102a9366004611d83565b610aba565b61020a6102bc366004611ee0565b610b31565b6101996102cf366004611f34565b6040805160609590951b6bffffffffffffffffffffffff1916602080870191909152603486019490945291151560f81b60548501526055808501919091528151808503909101815260759093019052815191012090565b6101bf610334366004611f34565b6040805160609590951b6bffffffffffffffffffffffff1916602080870191909152603486019490945291151560f81b6054850152605580850191909152815180850390910181526075909301815282519282019290922060009081526007909152205460ff1690565b6101bf6103ac3660046120a2565b610c1c565b6101bf6103bf366004611d9e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61020a6103fb366004611fdc565b610c40565b61020a61040e366004611e7b565b610cfd565b600354610426906001600160a01b031681565b6040516001600160a01b0390911681526020016101a3565b60006001600160a01b0383166104c15760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006104f282610d98565b92915050565b60048054610505906124ea565b80601f0160208091040260200160405190810160405280929190818152602001828054610531906124ea565b801561057e5780601f106105535761010080835404028352916020019161057e565b820191906000526020600020905b81548152906001019060200180831161056157829003601f168201915b505050505081565b6060600661059383610e33565b6040516020016105a4929190612242565b6040516020818303038152906040529050919050565b6001600160a01b0385163314806105d657506105d685336103bf565b6106485760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f766564000000000000000000000000000060648201526084016104b8565b6106558585858585610f90565b5050505050565b60068054610505906124ea565b606081518351146106e25760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d61746368000000000000000000000000000000000000000000000060648201526084016104b8565b6000835167ffffffffffffffff8111156106fe576106fe6125af565b604051908082528060200260200182016040528015610727578160200160208202803683370190505b50905060005b845181101561079f5761077285828151811061074b5761074b612599565b602002602001015185838151811061076557610765612599565b602002602001015161043e565b82828151811061078457610784612599565b602090810291909101015261079881612552565b905061072d565b509392505050565b6003546001600160a01b031633146107ef5760405162461bcd60e51b815260206004820152600b60248201526a139bdd08185b1b1bddd95960aa1b60448201526064016104b8565b6008805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b604080513360601b6bffffffffffffffffffffffff19166020808301919091526034820187905285151560f81b605483015260558083018690528351808403909101815260759092018352815191810191909120600081815260079092529190205460ff16156108d05760405162461bcd60e51b815260206004820152601460248201527f546f6b656e20616c7265616479206d696e74656400000000000000000000000060448201526064016104b8565b6108e26108dc82610a54565b83610c1c565b61092e5760405162461bcd60e51b815260206004820152601260248201527f5369676e6174757265206d69736d61746368000000000000000000000000000060448201526064016104b8565b61094a3386600160405180602001604052806000815250611203565b6000908152600760205260409020805460ff1916600117905550505050565b6003546001600160a01b031633146109b15760405162461bcd60e51b815260206004820152600b60248201526a139bdd08185b1b1bddd95960aa1b60448201526064016104b8565b6003805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6003546001600160a01b0316331480610a0357506009546001600160a01b031633145b610a3d5760405162461bcd60e51b815260206004820152600b60248201526a139bdd08185b1b1bddd95960aa1b60448201526064016104b8565b8051610a50906006906020840190611b51565b5050565b60006104f2826040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b60058054610505906124ea565b6003546001600160a01b03163314610b025760405162461bcd60e51b815260206004820152600b60248201526a139bdd08185b1b1bddd95960aa1b60448201526064016104b8565b6009805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b336001600160a01b0383161415610bb05760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c66000000000000000000000000000000000000000000000060648201526084016104b8565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000610c288383611329565b6008546001600160a01b039182169116149392505050565b6003546001600160a01b03163314610c885760405162461bcd60e51b815260206004820152600b60248201526a139bdd08185b1b1bddd95960aa1b60448201526064016104b8565b60005b845181101561065557610ceb858281518110610ca957610ca9612599565b6020026020010151858381518110610cc357610cc3612599565b6020026020010151858481518110610cdd57610cdd612599565b602002602001015185611203565b80610cf581612552565b915050610c8b565b6001600160a01b038516331480610d195750610d1985336103bf565b610d8b5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f766564000000000000000000000000000000000000000000000060648201526084016104b8565b6106558585858585611345565b60006001600160e01b031982167fd9b67a26000000000000000000000000000000000000000000000000000000001480610dfb57506001600160e01b031982167f0e89341c00000000000000000000000000000000000000000000000000000000145b806104f257507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146104f2565b606081610e7357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115610e9d5780610e8781612552565b9150610e969050600a83612462565b9150610e77565b60008167ffffffffffffffff811115610eb857610eb86125af565b6040519080825280601f01601f191660200182016040528015610ee2576020820181803683370190505b509050815b8515610f8757610ef86001826124a3565b90506000610f07600a88612462565b610f1290600a612484565b610f1c90886124a3565b610f2790603061243d565b905060008160f81b905080848481518110610f4457610f44612599565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350610f7e600a89612462565b97505050610ee7565b50949350505050565b81518351146110075760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d6174636800000000000000000000000000000000000000000000000060648201526084016104b8565b6001600160a01b03841661106b5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016104b8565b3360005b845181101561119557600085828151811061108c5761108c612599565b6020026020010151905060008583815181106110aa576110aa612599565b602090810291909101810151600084815280835260408082206001600160a01b038e16835290935291909120549091508181101561113d5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201526939103a3930b739b332b960b11b60648201526084016104b8565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b1682528120805484929061117a908490612425565b925050819055505050508061118e90612552565b905061106f565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516111e59291906123c9565b60405180910390a46111fb8187878787876114e3565b505050505050565b6001600160a01b03841661127f5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016104b8565b336112998160008761129088611698565b61065588611698565b6000848152602081815260408083206001600160a01b0389168452909152812080548592906112c9908490612425565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610655816000878787876116e3565b600080600061133885856117ee565b9150915061079f8161185e565b6001600160a01b0384166113a95760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016104b8565b336113b981878761129088611698565b6000848152602081815260408083206001600160a01b038a1684529091529020548381101561143d5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201526939103a3930b739b332b960b11b60648201526084016104b8565b6000858152602081815260408083206001600160a01b038b811685529252808320878503905590881682528120805486929061147a908490612425565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46114da8288888888886116e3565b50505050505050565b6001600160a01b0384163b156111fb5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906115279089908990889088908890600401612315565b602060405180830381600087803b15801561154157600080fd5b505af1925050508015611571575060408051601f3d908101601f1916820190925261156e918101906120fc565b60015b6116275761157d6125c5565b806308c379a014156115b757506115926125e1565b8061159d57506115b9565b8060405162461bcd60e51b81526004016104b891906123ee565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e74657200000000000000000000000060648201526084016104b8565b6001600160e01b0319811663bc197c8160e01b146114da5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b60648201526084016104b8565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106116d2576116d2612599565b602090810291909101015292915050565b6001600160a01b0384163b156111fb5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906117279089908990889088908890600401612373565b602060405180830381600087803b15801561174157600080fd5b505af1925050508015611771575060408051601f3d908101601f1916820190925261176e918101906120fc565b60015b61177d5761157d6125c5565b6001600160e01b0319811663f23a6e6160e01b146114da5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b60648201526084016104b8565b6000808251604114156118255760208301516040840151606085015160001a61181987828585611a1c565b94509450505050611857565b82516040141561184f5760208301516040840151611844868383611b09565b935093505050611857565b506000905060025b9250929050565b600081600481111561187257611872612583565b141561187b5750565b600181600481111561188f5761188f612583565b14156118dd5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016104b8565b60028160048111156118f1576118f1612583565b141561193f5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016104b8565b600381600481111561195357611953612583565b14156119ac5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016104b8565b60048160048111156119c0576119c0612583565b1415611a195760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016104b8565b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611a535750600090506003611b00565b8460ff16601b14158015611a6b57508460ff16601c14155b15611a7c5750600090506004611b00565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611ad0573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611af957600060019250925050611b00565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b01611b4387828885611a1c565b935093505050935093915050565b828054611b5d906124ea565b90600052602060002090601f016020900481019282611b7f5760008555611bc5565b82601f10611b9857805160ff1916838001178555611bc5565b82800160010185558215611bc5579182015b82811115611bc5578251825591602001919060010190611baa565b50611bd1929150611bd5565b5090565b5b80821115611bd15760008155600101611bd6565b600067ffffffffffffffff831115611c0457611c046125af565b604051611c1b601f8501601f191660200182612525565b809150838152848484011115611c3057600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b0381168114611c5f57600080fd5b919050565b600082601f830112611c7557600080fd5b81356020611c8282612401565b604051611c8f8282612525565b8381528281019150858301600585901b87018401881015611caf57600080fd5b60005b85811015611cd557611cc382611c48565b84529284019290840190600101611cb2565b5090979650505050505050565b600082601f830112611cf357600080fd5b81356020611d0082612401565b604051611d0d8282612525565b8381528281019150858301600585901b87018401881015611d2d57600080fd5b60005b85811015611cd557813584529284019290840190600101611d30565b80358015158114611c5f57600080fd5b600082601f830112611d6d57600080fd5b611d7c83833560208501611bea565b9392505050565b600060208284031215611d9557600080fd5b611d7c82611c48565b60008060408385031215611db157600080fd5b611dba83611c48565b9150611dc860208401611c48565b90509250929050565b600080600080600060a08688031215611de957600080fd5b611df286611c48565b9450611e0060208701611c48565b9350604086013567ffffffffffffffff80821115611e1d57600080fd5b611e2989838a01611ce2565b94506060880135915080821115611e3f57600080fd5b611e4b89838a01611ce2565b93506080880135915080821115611e6157600080fd5b50611e6e88828901611d5c565b9150509295509295909350565b600080600080600060a08688031215611e9357600080fd5b611e9c86611c48565b9450611eaa60208701611c48565b93506040860135925060608601359150608086013567ffffffffffffffff811115611ed457600080fd5b611e6e88828901611d5c565b60008060408385031215611ef357600080fd5b611efc83611c48565b9150611dc860208401611d4c565b60008060408385031215611f1d57600080fd5b611f2683611c48565b946020939093013593505050565b60008060008060808587031215611f4a57600080fd5b611f5385611c48565b935060208501359250611f6860408601611d4c565b9396929550929360600135925050565b60008060408385031215611f8b57600080fd5b823567ffffffffffffffff80821115611fa357600080fd5b611faf86838701611c64565b93506020850135915080821115611fc557600080fd5b50611fd285828601611ce2565b9150509250929050565b60008060008060808587031215611ff257600080fd5b843567ffffffffffffffff8082111561200a57600080fd5b61201688838901611c64565b9550602087013591508082111561202c57600080fd5b61203888838901611ce2565b9450604087013591508082111561204e57600080fd5b61205a88838901611ce2565b9350606087013591508082111561207057600080fd5b5061207d87828801611d5c565b91505092959194509250565b60006020828403121561209b57600080fd5b5035919050565b600080604083850312156120b557600080fd5b82359150602083013567ffffffffffffffff8111156120d357600080fd5b611fd285828601611d5c565b6000602082840312156120f157600080fd5b8135611d7c8161266b565b60006020828403121561210e57600080fd5b8151611d7c8161266b565b60006020828403121561212b57600080fd5b813567ffffffffffffffff81111561214257600080fd5b8201601f8101841361215357600080fd5b61216284823560208401611bea565b949350505050565b6000806000806080858703121561218057600080fd5b8435935061219060208601611d4c565b925060408501359150606085013567ffffffffffffffff8111156121b357600080fd5b61207d87828801611d5c565b600081518084526020808501945080840160005b838110156121ef578151875295820195908201906001016121d3565b509495945050505050565b600081518084526122128160208601602086016124ba565b601f01601f19169290920160200192915050565b600081516122388185602086016124ba565b9290920192915050565b600080845481600182811c91508083168061225e57607f831692505b602080841082141561227e57634e487b7160e01b86526022600452602486fd5b81801561229257600181146122a3576122d0565b60ff198616895284890196506122d0565b60008b81526020902060005b868110156122c85781548b8201529085019083016122af565b505084890196505b50505050505061230c6122e38286612226565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815260050190565b95945050505050565b60006001600160a01b03808816835280871660208401525060a0604083015261234160a08301866121bf565b828103606084015261235381866121bf565b9050828103608084015261236781856121fa565b98975050505050505050565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a060808301526123ab60a08301846121fa565b979650505050505050565b602081526000611d7c60208301846121bf565b6040815260006123dc60408301856121bf565b828103602084015261230c81856121bf565b602081526000611d7c60208301846121fa565b600067ffffffffffffffff82111561241b5761241b6125af565b5060051b60200190565b600082198211156124385761243861256d565b500190565b600060ff821660ff84168060ff0382111561245a5761245a61256d565b019392505050565b60008261247f57634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561249e5761249e61256d565b500290565b6000828210156124b5576124b561256d565b500390565b60005b838110156124d55781810151838201526020016124bd565b838111156124e4576000848401525b50505050565b600181811c908216806124fe57607f821691505b6020821081141561251f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff8111828210171561254b5761254b6125af565b6040525050565b60006000198214156125665761256661256d565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156125de5760046000803e5060005160e01c5b90565b600060443d10156125ef5790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561261f57505050505090565b82850191508151818111156126375750505050505090565b843d87010160208285010111156126515750505050505090565b61266060208286010187612525565b509095945050505050565b6001600160e01b031981168114611a1957600080fdfea2646970667358221220aae01f9c55be1b3c7c286c2bfd3a9d15a2813a45f4e047f20473e3e9f8b86d7c64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000013476f6f62657273204e4654205265776172647300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b474f4f42524557415244530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Goobers NFT Rewards
Arg [1] : _symbol (string): GOOBREWARDS
Arg [2] : _metadata (string):

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [4] : 476f6f62657273204e4654205265776172647300000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [6] : 474f4f4252455741524453000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

56640:3608:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43344:231;;;;;;:::i;:::-;;:::i;:::-;;;15324:25:1;;;15312:2;15297:18;43344:231:0;;;;;;;;58397:212;;;;;;:::i;:::-;;:::i;:::-;;;15151:14:1;;15144:22;15126:41;;15114:2;15099:18;58397:212:0;14986:187:1;56712:18:0;;;:::i;:::-;;;;;;;:::i;58234:155::-;;;;;;:::i;:::-;;:::i;45439:442::-;;;;;;:::i;:::-;;:::i;:::-;;56764:22;;;:::i;43741:524::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;59565:99::-;;;;;;:::i;:::-;;:::i;57317:417::-;;;;;;:::i;:::-;;:::i;59472:87::-;;;;;;:::i;:::-;;:::i;58052:174::-;;;;;;:::i;:::-;;:::i;59075:120::-;;;;;;:::i;:::-;;:::i;56737:20::-;;;:::i;59359:107::-;;;;;;:::i;:::-;;:::i;44338:311::-;;;;;;:::i;:::-;;:::i;58841:225::-;;;;;;:::i;:::-;58990:50;;;10607:2:1;10603:15;;;;-1:-1:-1;;10599:53:1;58990:50:0;;;;10587:66:1;;;;10669:12;;;10662:28;;;;10736:14;;10729:22;10724:3;10720:32;10706:12;;;10699:54;10769:12;;;;10762:28;;;;58990:50:0;;;;;;;;;;10806:12:1;;;;58990:50:0;;58980:61;;;;;;58841:225;58621:208;;;;;;:::i;:::-;58768:50;;;10607:2:1;10603:15;;;;-1:-1:-1;;10599:53:1;58768:50:0;;;;10587:66:1;;;;10669:12;;;10662:28;;;;10736:14;;10729:22;10724:3;10720:32;10706:12;;;10699:54;10769:12;;;;10762:28;;;;58768:50:0;;;;;;;;;;10806:12:1;;;;58768:50:0;;58758:61;;;;;;;;;-1:-1:-1;58746:75:0;;;:6;:75;;;;;;;;58621:208;59200:151;;;;;;:::i;:::-;;:::i;44721:168::-;;;;;;:::i;:::-;-1:-1:-1;;;;;44844:27:0;;;44820:4;44844:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;44721:168;57742:302;;;;;;:::i;:::-;;:::i;44961:401::-;;;;;;:::i;:::-;;:::i;56685:20::-;;;;;-1:-1:-1;;;;;56685:20:0;;;;;;-1:-1:-1;;;;;12741:55:1;;;12723:74;;12711:2;12696:18;56685:20:0;12577:226:1;43344:231:0;43430:7;-1:-1:-1;;;;;43458:21:0;;43450:77;;;;-1:-1:-1;;;43450:77:0;;18081:2:1;43450:77:0;;;18063:21:1;18120:2;18100:18;;;18093:30;18159:34;18139:18;;;18132:62;18230:13;18210:18;;;18203:41;18261:19;;43450:77:0;;;;;;;;;-1:-1:-1;43545:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;43545:22:0;;;;;;;;;;;;43344:231::o;58397:212::-;58536:4;58565:36;58589:11;58565:23;:36::i;:::-;58558:43;58397:212;-1:-1:-1;;58397:212:0:o;56712:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58234:155::-;58290:13;58347:8;58357:13;58366:3;58357:8;:13::i;:::-;58330:50;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58316:65;;58234:155;;;:::o;45439:442::-;-1:-1:-1;;;;;45672:20:0;;11204:10;45672:20;;:60;;-1:-1:-1;45696:36:0;45713:4;11204:10;44721:168;:::i;45696:36::-;45650:160;;;;-1:-1:-1;;;45650:160:0;;19712:2:1;45650:160:0;;;19694:21:1;19751:2;19731:18;;;19724:30;19790:34;19770:18;;;19763:62;19861:20;19841:18;;;19834:48;19899:19;;45650:160:0;19510:414:1;45650:160:0;45821:52;45844:4;45850:2;45854:3;45859:7;45868:4;45821:22;:52::i;:::-;45439:442;;;;;:::o;56764:22::-;;;;;;;:::i;43741:524::-;43897:16;43958:3;:10;43939:8;:15;:29;43931:83;;;;-1:-1:-1;;;43931:83:0;;22042:2:1;43931:83:0;;;22024:21:1;22081:2;22061:18;;;22054:30;22120:34;22100:18;;;22093:62;22191:11;22171:18;;;22164:39;22220:19;;43931:83:0;21840:405:1;43931:83:0;44027:30;44074:8;:15;44060:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44060:30:0;;44027:63;;44108:9;44103:122;44127:8;:15;44123:1;:19;44103:122;;;44183:30;44193:8;44202:1;44193:11;;;;;;;;:::i;:::-;;;;;;;44206:3;44210:1;44206:6;;;;;;;;:::i;:::-;;;;;;;44183:9;:30::i;:::-;44164:13;44178:1;44164:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;44144:3;;;:::i;:::-;;;44103:122;;;-1:-1:-1;44244:13:0;43741:524;-1:-1:-1;;;43741:524:0:o;59565:99::-;57001:5;;-1:-1:-1;;;;;57001:5:0;57010:10;57001:19;56993:43;;;;-1:-1:-1;;;56993:43:0;;21292:2:1;56993:43:0;;;21274:21:1;21331:2;21311:18;;;21304:30;-1:-1:-1;;;21350:18:1;;;21343:41;21401:18;;56993:43:0;21090:335:1;56993:43:0;59641:6:::1;:18:::0;;-1:-1:-1;;59641:18:0::1;-1:-1:-1::0;;;;;59641:18:0;;;::::1;::::0;;;::::1;::::0;;59565:99::o;57317:417::-;58990:50;;;57455:10;10607:2:1;10603:15;-1:-1:-1;;10599:53:1;58990:50:0;;;;10587:66:1;;;;10669:12;;;10662:28;;;10736:14;;10729:22;10724:3;10720:32;10706:12;;;10699:54;10769:12;;;;10762:28;;;58990:50:0;;;;;;;;;;10806:12:1;;;;58990:50:0;;58980:61;;;;;;;;;-1:-1:-1;57511:18:0;;;:6;:18;;;;;;;;;57510:19;57502:52;;;;-1:-1:-1;;;57502:52:0;;17732:2:1;57502:52:0;;;17714:21:1;17771:2;17751:18;;;17744:30;17810:22;17790:18;;;17783:50;17850:18;;57502:52:0;17530:344:1;57502:52:0;57573:51;57590:21;57606:4;57590:15;:21::i;:::-;57613:10;57573:16;:51::i;:::-;57565:82;;;;-1:-1:-1;;;57565:82:0;;20945:2:1;57565:82:0;;;20927:21:1;20984:2;20964:18;;;20957:30;21023:20;21003:18;;;20996:48;21061:18;;57565:82:0;20743:342:1;57565:82:0;57658:32;57664:10;57676:6;57684:1;57658:32;;;;;;;;;;;;:5;:32::i;:::-;57701:18;;;;:6;:18;;;;;:25;;-1:-1:-1;;57701:25:0;57722:4;57701:25;;;-1:-1:-1;;;;57317:417:0:o;59472:87::-;57001:5;;-1:-1:-1;;;;;57001:5:0;57010:10;57001:19;56993:43;;;;-1:-1:-1;;;56993:43:0;;21292:2:1;56993:43:0;;;21274:21:1;21331:2;21311:18;;;21304:30;-1:-1:-1;;;21350:18:1;;;21343:41;21401:18;;56993:43:0;21090:335:1;56993:43:0;59538:5:::1;:16:::0;;-1:-1:-1;;59538:16:0::1;-1:-1:-1::0;;;;;59538:16:0;;;::::1;::::0;;;::::1;::::0;;59472:87::o;58052:174::-;58138:5;;-1:-1:-1;;;;;58138:5:0;58124:10;:19;;:47;;-1:-1:-1;58161:10:0;;-1:-1:-1;;;;;58161:10:0;58147;:24;58124:47;58115:72;;;;-1:-1:-1;;;58115:72:0;;21292:2:1;58115:72:0;;;21274:21:1;21331:2;21311:18;;;21304:30;-1:-1:-1;;;21350:18:1;;;21343:41;21401:18;;58115:72:0;21090:335:1;58115:72:0;58198:20;;;;:8;;:20;;;;;:::i;:::-;;58052:174;:::o;59075:120::-;59136:7;59160:30;:5;9964:58;;12434:66:1;9964:58:0;;;12422:79:1;12517:12;;;12510:28;;;9831:7:0;;12554:12:1;;9964:58:0;;;;;;;;;;;;9954:69;;;;;;9947:76;;9762:269;;;;56737:20;;;;;;;:::i;59359:107::-;57001:5;;-1:-1:-1;;;;;57001:5:0;57010:10;57001:19;56993:43;;;;-1:-1:-1;;;56993:43:0;;21292:2:1;56993:43:0;;;21274:21:1;21331:2;21311:18;;;21304:30;-1:-1:-1;;;21350:18:1;;;21343:41;21401:18;;56993:43:0;21090:335:1;56993:43:0;59435:10:::1;:23:::0;;-1:-1:-1;;59435:23:0::1;-1:-1:-1::0;;;;;59435:23:0;;;::::1;::::0;;;::::1;::::0;;59359:107::o;44338:311::-;11204:10;-1:-1:-1;;;;;44441:24:0;;;;44433:78;;;;-1:-1:-1;;;44433:78:0;;21632:2:1;44433:78:0;;;21614:21:1;21671:2;21651:18;;;21644:30;21710:34;21690:18;;;21683:62;21781:11;21761:18;;;21754:39;21810:19;;44433:78:0;21430:405:1;44433:78:0;11204:10;44524:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;44524:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;44524:53:0;;;;;;;;;;44593:48;;15126:41:1;;;44524:42:0;;11204:10;44593:48;;15099:18:1;44593:48:0;;;;;;;44338:311;;:::o;59200:151::-;59290:4;59318:28;:8;59335:10;59318:16;:28::i;:::-;59308:6;;-1:-1:-1;;;;;59308:38:0;;;:6;;:38;;59200:151;-1:-1:-1;;;59200:151:0:o;57742:302::-;57001:5;;-1:-1:-1;;;;;57001:5:0;57010:10;57001:19;56993:43;;;;-1:-1:-1;;;56993:43:0;;21292:2:1;56993:43:0;;;21274:21:1;21331:2;21311:18;;;21304:30;-1:-1:-1;;;21350:18:1;;;21343:41;21401:18;;56993:43:0;21090:335:1;56993:43:0;57933:9:::1;57928:109;57952:3;:10;57948:1;:14;57928:109;;;57984:41;57990:3;57994:1;57990:6;;;;;;;;:::i;:::-;;;;;;;57998:4;58003:1;57998:7;;;;;;;;:::i;:::-;;;;;;;58007;58015:1;58007:10;;;;;;;;:::i;:::-;;;;;;;58019:5;57984;:41::i;:::-;57964:3:::0;::::1;::::0;::::1;:::i;:::-;;;;57928:109;;44961:401:::0;-1:-1:-1;;;;;45169:20:0;;11204:10;45169:20;;:60;;-1:-1:-1;45193:36:0;45210:4;11204:10;44721:168;:::i;45193:36::-;45147:151;;;;-1:-1:-1;;;45147:151:0;;18493:2:1;45147:151:0;;;18475:21:1;18532:2;18512:18;;;18505:30;18571:34;18551:18;;;18544:62;18642:11;18622:18;;;18615:39;18671:19;;45147:151:0;18291:405:1;45147:151:0;45309:45;45327:4;45333:2;45337;45341:6;45349:4;45309:17;:45::i;42367:310::-;42469:4;-1:-1:-1;;;;;;42506:41:0;;42521:26;42506:41;;:110;;-1:-1:-1;;;;;;;42564:52:0;;42579:37;42564:52;42506:110;:163;;;-1:-1:-1;1634:25:0;-1:-1:-1;;;;;;1619:40:0;;;42633:36;1510:157;59672:573;59722:27;59766:7;59762:50;;-1:-1:-1;;59790:10:0;;;;;;;;;;;;;;;;;;59672:573::o;59762:50::-;59831:2;59822:6;59863:69;59870:6;;59863:69;;59893:5;;;;:::i;:::-;;-1:-1:-1;59913:7:0;;-1:-1:-1;59918:2:0;59913:7;;:::i;:::-;;;59863:69;;;59942:17;59972:3;59962:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59962:14:0;-1:-1:-1;59942:34:0;-1:-1:-1;59996:3:0;60010:198;60017:7;;60010:198;;60045:3;60047:1;60045;:3;:::i;:::-;60041:7;-1:-1:-1;60063:10:0;60093:7;60098:2;60093;:7;:::i;:::-;:12;;60103:2;60093:12;:::i;:::-;60088:17;;:2;:17;:::i;:::-;60077:29;;:2;:29;:::i;:::-;60063:44;;60122:9;60141:4;60134:12;;60122:24;;60171:2;60161:4;60166:1;60161:7;;;;;;;;:::i;:::-;;;;:12;;;;;;;;;;-1:-1:-1;60188:8:0;60194:2;60188:8;;:::i;:::-;;;60026:182;;60010:198;;;-1:-1:-1;60232:4:0;59672:573;-1:-1:-1;;;;59672:573:0:o;47523:1074::-;47750:7;:14;47736:3;:10;:28;47728:81;;;;-1:-1:-1;;;47728:81:0;;22452:2:1;47728:81:0;;;22434:21:1;22491:2;22471:18;;;22464:30;22530:34;22510:18;;;22503:62;22601:10;22581:18;;;22574:38;22629:19;;47728:81:0;22250:404:1;47728:81:0;-1:-1:-1;;;;;47828:16:0;;47820:66;;;;-1:-1:-1;;;47820:66:0;;19306:2:1;47820:66:0;;;19288:21:1;19345:2;19325:18;;;19318:30;19384:34;19364:18;;;19357:62;-1:-1:-1;;;19435:18:1;;;19428:35;19480:19;;47820:66:0;19104:401:1;47820:66:0;11204:10;47899:16;48016:421;48040:3;:10;48036:1;:14;48016:421;;;48072:10;48085:3;48089:1;48085:6;;;;;;;;:::i;:::-;;;;;;;48072:19;;48106:14;48123:7;48131:1;48123:10;;;;;;;;:::i;:::-;;;;;;;;;;;;48150:19;48172:13;;;;;;;;;;-1:-1:-1;;;;;48172:19:0;;;;;;;;;;;;48123:10;;-1:-1:-1;48214:21:0;;;;48206:76;;;;-1:-1:-1;;;48206:76:0;;20534:2:1;48206:76:0;;;20516:21:1;20573:2;20553:18;;;20546:30;20612:34;20592:18;;;20585:62;-1:-1:-1;;;20663:18:1;;;20656:40;20713:19;;48206:76:0;20332:406:1;48206:76:0;48326:9;:13;;;;;;;;;;;-1:-1:-1;;;;;48326:19:0;;;;;;;;;;48348:20;;;48326:42;;48398:17;;;;;;;:27;;48348:20;;48326:9;48398:27;;48348:20;;48398:27;:::i;:::-;;;;;;;;48057:380;;;48052:3;;;;:::i;:::-;;;48016:421;;;;48484:2;-1:-1:-1;;;;;48454:47:0;48478:4;-1:-1:-1;;;;;48454:47:0;48468:8;-1:-1:-1;;;;;48454:47:0;;48488:3;48493:7;48454:47;;;;;;;:::i;:::-;;;;;;;;48514:75;48550:8;48560:4;48566:2;48570:3;48575:7;48584:4;48514:35;:75::i;:::-;47717:880;47523:1074;;;;;:::o;49930:599::-;-1:-1:-1;;;;;50088:21:0;;50080:67;;;;-1:-1:-1;;;50080:67:0;;22861:2:1;50080:67:0;;;22843:21:1;22900:2;22880:18;;;22873:30;22939:34;22919:18;;;22912:62;23010:3;22990:18;;;22983:31;23031:19;;50080:67:0;22659:397:1;50080:67:0;11204:10;50204:107;11204:10;50160:16;50247:7;50256:21;50274:2;50256:17;:21::i;:::-;50279:25;50297:6;50279:17;:25::i;50204:107::-;50324:9;:13;;;;;;;;;;;-1:-1:-1;;;;;50324:22:0;;;;;;;;;:32;;50350:6;;50324:9;:32;;50350:6;;50324:32;:::i;:::-;;;;-1:-1:-1;;50372:57:0;;;23417:25:1;;;23473:2;23458:18;;23451:34;;;-1:-1:-1;;;;;50372:57:0;;;;50405:1;;50372:57;;;;;;23390:18:1;50372:57:0;;;;;;;50442:79;50473:8;50491:1;50495:7;50504:2;50508:6;50516:4;50442:30;:79::i;5913:231::-;5991:7;6012:17;6031:18;6053:27;6064:4;6070:9;6053:10;:27::i;:::-;6011:69;;;;6091:18;6103:5;6091:11;:18::i;46345:820::-;-1:-1:-1;;;;;46533:16:0;;46525:66;;;;-1:-1:-1;;;46525:66:0;;19306:2:1;46525:66:0;;;19288:21:1;19345:2;19325:18;;;19318:30;19384:34;19364:18;;;19357:62;-1:-1:-1;;;19435:18:1;;;19428:35;19480:19;;46525:66:0;19104:401:1;46525:66:0;11204:10;46648:96;11204:10;46679:4;46685:2;46689:21;46707:2;46689:17;:21::i;46648:96::-;46757:19;46779:13;;;;;;;;;;;-1:-1:-1;;;;;46779:19:0;;;;;;;;;;46817:21;;;;46809:76;;;;-1:-1:-1;;;46809:76:0;;20534:2:1;46809:76:0;;;20516:21:1;20573:2;20553:18;;;20546:30;20612:34;20592:18;;;20585:62;-1:-1:-1;;;20663:18:1;;;20656:40;20713:19;;46809:76:0;20332:406:1;46809:76:0;46921:9;:13;;;;;;;;;;;-1:-1:-1;;;;;46921:19:0;;;;;;;;;;46943:20;;;46921:42;;46985:17;;;;;;;:27;;46943:20;;46921:9;46985:27;;46943:20;;46985:27;:::i;:::-;;;;-1:-1:-1;;47030:46:0;;;23417:25:1;;;23473:2;23458:18;;23451:34;;;-1:-1:-1;;;;;47030:46:0;;;;;;;;;;;;;;23390:18:1;47030:46:0;;;;;;;47089:68;47120:8;47130:4;47136:2;47140;47144:6;47152:4;47089:30;:68::i;:::-;46514:651;;46345:820;;;;;:::o;55612:813::-;-1:-1:-1;;;;;55852:13:0;;12342:20;12390:8;55848:570;;55888:79;;-1:-1:-1;;;55888:79:0;;-1:-1:-1;;;;;55888:43:0;;;;;:79;;55932:8;;55942:4;;55948:3;;55953:7;;55962:4;;55888:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55888:79:0;;;;;;;;-1:-1:-1;;55888:79:0;;;;;;;;;;;;:::i;:::-;;;55884:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;56280:6;56273:14;;-1:-1:-1;;;56273:14:0;;;;;;;;:::i;55884:523::-;;;56329:62;;-1:-1:-1;;;56329:62:0;;16542:2:1;56329:62:0;;;16524:21:1;16581:2;16561:18;;;16554:30;16620:34;16600:18;;;16593:62;16691:22;16671:18;;;16664:50;16731:19;;56329:62:0;16340:416:1;55884:523:0;-1:-1:-1;;;;;;56049:60:0;;-1:-1:-1;;;56049:60:0;56045:159;;56134:50;;-1:-1:-1;;;56134:50:0;;16963:2:1;56134:50:0;;;16945:21:1;17002:2;16982:18;;;16975:30;17041:34;17021:18;;;17014:62;-1:-1:-1;;;17092:18:1;;;17085:38;17140:19;;56134:50:0;16761:404:1;56433:198:0;56553:16;;;56567:1;56553:16;;;;;;;;;56499;;56528:22;;56553:16;;;;;;;;;;;;-1:-1:-1;56553:16:0;56528:41;;56591:7;56580:5;56586:1;56580:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;56618:5;56433:198;-1:-1:-1;;56433:198:0:o;54860:744::-;-1:-1:-1;;;;;55075:13:0;;12342:20;12390:8;55071:526;;55111:72;;-1:-1:-1;;;55111:72:0;;-1:-1:-1;;;;;55111:38:0;;;;;:72;;55150:8;;55160:4;;55166:2;;55170:6;;55178:4;;55111:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55111:72:0;;;;;;;;-1:-1:-1;;55111:72:0;;;;;;;;;;;;:::i;:::-;;;55107:479;;;;:::i;:::-;-1:-1:-1;;;;;;55233:55:0;;-1:-1:-1;;;55233:55:0;55229:154;;55313:50;;-1:-1:-1;;;55313:50:0;;16963:2:1;55313:50:0;;;16945:21:1;17002:2;16982:18;;;16975:30;17041:34;17021:18;;;17014:62;-1:-1:-1;;;17092:18:1;;;17085:38;17140:19;;55313:50:0;16761:404:1;3803:1308:0;3884:7;3893:12;4118:9;:16;4138:2;4118:22;4114:990;;;4414:4;4399:20;;4393:27;4464:4;4449:20;;4443:27;4522:4;4507:20;;4501:27;4157:9;4493:36;4565:25;4576:4;4493:36;4393:27;4443;4565:10;:25::i;:::-;4558:32;;;;;;;;;4114:990;4612:9;:16;4632:2;4612:22;4608:496;;;4887:4;4872:20;;4866:27;4938:4;4923:20;;4917:27;4980:23;4991:4;4866:27;4917;4980:10;:23::i;:::-;4973:30;;;;;;;;4608:496;-1:-1:-1;5052:1:0;;-1:-1:-1;5056:35:0;4608:496;3803:1308;;;;;:::o;2074:643::-;2152:20;2143:5;:29;;;;;;;;:::i;:::-;;2139:571;;;2074:643;:::o;2139:571::-;2250:29;2241:5;:38;;;;;;;;:::i;:::-;;2237:473;;;2296:34;;-1:-1:-1;;;2296:34:0;;16189:2:1;2296:34:0;;;16171:21:1;16228:2;16208:18;;;16201:30;16267:26;16247:18;;;16240:54;16311:18;;2296:34:0;15987:348:1;2237:473:0;2361:35;2352:5;:44;;;;;;;;:::i;:::-;;2348:362;;;2413:41;;-1:-1:-1;;;2413:41:0;;17372:2:1;2413:41:0;;;17354:21:1;17411:2;17391:18;;;17384:30;17450:33;17430:18;;;17423:61;17501:18;;2413:41:0;17170:355:1;2348:362:0;2485:30;2476:5;:39;;;;;;;;:::i;:::-;;2472:238;;;2532:44;;-1:-1:-1;;;2532:44:0;;18903:2:1;2532:44:0;;;18885:21:1;18942:2;18922:18;;;18915:30;18981:34;18961:18;;;18954:62;-1:-1:-1;;;19032:18:1;;;19025:32;19074:19;;2532:44:0;18701:398:1;2472:238:0;2607:30;2598:5;:39;;;;;;;;:::i;:::-;;2594:116;;;2654:44;;-1:-1:-1;;;2654:44:0;;20131:2:1;2654:44:0;;;20113:21:1;20170:2;20150:18;;;20143:30;20209:34;20189:18;;;20182:62;-1:-1:-1;;;20260:18:1;;;20253:32;20302:19;;2654:44:0;19929:398:1;2594:116:0;2074:643;:::o;7412:1632::-;7543:7;;8477:66;8464:79;;8460:163;;;-1:-1:-1;8576:1:0;;-1:-1:-1;8580:30:0;8560:51;;8460:163;8637:1;:7;;8642:2;8637:7;;:18;;;;;8648:1;:7;;8653:2;8648:7;;8637:18;8633:102;;;-1:-1:-1;8688:1:0;;-1:-1:-1;8692:30:0;8672:51;;8633:102;8849:24;;;8832:14;8849:24;;;;;;;;;15587:25:1;;;15660:4;15648:17;;15628:18;;;15621:45;;;;15682:18;;;15675:34;;;15725:18;;;15718:34;;;8849:24:0;;15559:19:1;;8849:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;8849:24:0;;-1:-1:-1;;8849:24:0;;;-1:-1:-1;;;;;;;8888:20:0;;8884:103;;8941:1;8945:29;8925:50;;;;;;;8884:103;9007:6;-1:-1:-1;9015:20:0;;-1:-1:-1;7412:1632:0;;;;;;;;:::o;6407:391::-;6521:7;;6630:66;6622:75;;6724:3;6720:12;;;6734:2;6716:21;6765:25;6776:4;6716:21;6785:1;6622:75;6765:10;:25::i;:::-;6758:32;;;;;;6407:391;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:468:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;183:2;177:9;195:69;252:2;231:15;;-1:-1:-1;;227:29:1;258:4;223:40;177:9;195:69;:::i;:::-;282:6;273:15;;312:6;304;297:22;352:3;343:6;338:3;334:16;331:25;328:45;;;369:1;366;359:12;328:45;419:6;414:3;407:4;399:6;395:17;382:44;474:1;467:4;458:6;450;446:19;442:30;435:41;;14:468;;;;;:::o;487:196::-;555:20;;-1:-1:-1;;;;;604:54:1;;594:65;;584:93;;673:1;670;663:12;584:93;487:196;;;:::o;688:741::-;742:5;795:3;788:4;780:6;776:17;772:27;762:55;;813:1;810;803:12;762:55;849:6;836:20;875:4;898:43;938:2;898:43;:::i;:::-;970:2;964:9;982:31;1010:2;1002:6;982:31;:::i;:::-;1048:18;;;1082:15;;;;-1:-1:-1;1117:15:1;;;1167:1;1163:10;;;1151:23;;1147:32;;1144:41;-1:-1:-1;1141:61:1;;;1198:1;1195;1188:12;1141:61;1220:1;1230:169;1244:2;1241:1;1238:9;1230:169;;;1301:23;1320:3;1301:23;:::i;:::-;1289:36;;1345:12;;;;1377;;;;1262:1;1255:9;1230:169;;;-1:-1:-1;1417:6:1;;688:741;-1:-1:-1;;;;;;;688:741:1:o;1434:735::-;1488:5;1541:3;1534:4;1526:6;1522:17;1518:27;1508:55;;1559:1;1556;1549:12;1508:55;1595:6;1582:20;1621:4;1644:43;1684:2;1644:43;:::i;:::-;1716:2;1710:9;1728:31;1756:2;1748:6;1728:31;:::i;:::-;1794:18;;;1828:15;;;;-1:-1:-1;1863:15:1;;;1913:1;1909:10;;;1897:23;;1893:32;;1890:41;-1:-1:-1;1887:61:1;;;1944:1;1941;1934:12;1887:61;1966:1;1976:163;1990:2;1987:1;1984:9;1976:163;;;2047:17;;2035:30;;2085:12;;;;2117;;;;2008:1;2001:9;1976:163;;2174:160;2239:20;;2295:13;;2288:21;2278:32;;2268:60;;2324:1;2321;2314:12;2339:220;2381:5;2434:3;2427:4;2419:6;2415:17;2411:27;2401:55;;2452:1;2449;2442:12;2401:55;2474:79;2549:3;2540:6;2527:20;2520:4;2512:6;2508:17;2474:79;:::i;:::-;2465:88;2339:220;-1:-1:-1;;;2339:220:1:o;2564:186::-;2623:6;2676:2;2664:9;2655:7;2651:23;2647:32;2644:52;;;2692:1;2689;2682:12;2644:52;2715:29;2734:9;2715:29;:::i;2755:260::-;2823:6;2831;2884:2;2872:9;2863:7;2859:23;2855:32;2852:52;;;2900:1;2897;2890:12;2852:52;2923:29;2942:9;2923:29;:::i;:::-;2913:39;;2971:38;3005:2;2994:9;2990:18;2971:38;:::i;:::-;2961:48;;2755:260;;;;;:::o;3020:943::-;3174:6;3182;3190;3198;3206;3259:3;3247:9;3238:7;3234:23;3230:33;3227:53;;;3276:1;3273;3266:12;3227:53;3299:29;3318:9;3299:29;:::i;:::-;3289:39;;3347:38;3381:2;3370:9;3366:18;3347:38;:::i;:::-;3337:48;;3436:2;3425:9;3421:18;3408:32;3459:18;3500:2;3492:6;3489:14;3486:34;;;3516:1;3513;3506:12;3486:34;3539:61;3592:7;3583:6;3572:9;3568:22;3539:61;:::i;:::-;3529:71;;3653:2;3642:9;3638:18;3625:32;3609:48;;3682:2;3672:8;3669:16;3666:36;;;3698:1;3695;3688:12;3666:36;3721:63;3776:7;3765:8;3754:9;3750:24;3721:63;:::i;:::-;3711:73;;3837:3;3826:9;3822:19;3809:33;3793:49;;3867:2;3857:8;3854:16;3851:36;;;3883:1;3880;3873:12;3851:36;;3906:51;3949:7;3938:8;3927:9;3923:24;3906:51;:::i;:::-;3896:61;;;3020:943;;;;;;;;:::o;3968:606::-;4072:6;4080;4088;4096;4104;4157:3;4145:9;4136:7;4132:23;4128:33;4125:53;;;4174:1;4171;4164:12;4125:53;4197:29;4216:9;4197:29;:::i;:::-;4187:39;;4245:38;4279:2;4268:9;4264:18;4245:38;:::i;:::-;4235:48;;4330:2;4319:9;4315:18;4302:32;4292:42;;4381:2;4370:9;4366:18;4353:32;4343:42;;4436:3;4425:9;4421:19;4408:33;4464:18;4456:6;4453:30;4450:50;;;4496:1;4493;4486:12;4450:50;4519:49;4560:7;4551:6;4540:9;4536:22;4519:49;:::i;4579:254::-;4644:6;4652;4705:2;4693:9;4684:7;4680:23;4676:32;4673:52;;;4721:1;4718;4711:12;4673:52;4744:29;4763:9;4744:29;:::i;:::-;4734:39;;4792:35;4823:2;4812:9;4808:18;4792:35;:::i;4838:254::-;4906:6;4914;4967:2;4955:9;4946:7;4942:23;4938:32;4935:52;;;4983:1;4980;4973:12;4935:52;5006:29;5025:9;5006:29;:::i;:::-;4996:39;5082:2;5067:18;;;;5054:32;;-1:-1:-1;;;4838:254:1:o;5097:391::-;5180:6;5188;5196;5204;5257:3;5245:9;5236:7;5232:23;5228:33;5225:53;;;5274:1;5271;5264:12;5225:53;5297:29;5316:9;5297:29;:::i;:::-;5287:39;;5373:2;5362:9;5358:18;5345:32;5335:42;;5396:35;5427:2;5416:9;5412:18;5396:35;:::i;:::-;5097:391;;;;-1:-1:-1;5386:45:1;;5478:2;5463:18;5450:32;;-1:-1:-1;;5097:391:1:o;5493:595::-;5611:6;5619;5672:2;5660:9;5651:7;5647:23;5643:32;5640:52;;;5688:1;5685;5678:12;5640:52;5728:9;5715:23;5757:18;5798:2;5790:6;5787:14;5784:34;;;5814:1;5811;5804:12;5784:34;5837:61;5890:7;5881:6;5870:9;5866:22;5837:61;:::i;:::-;5827:71;;5951:2;5940:9;5936:18;5923:32;5907:48;;5980:2;5970:8;5967:16;5964:36;;;5996:1;5993;5986:12;5964:36;;6019:63;6074:7;6063:8;6052:9;6048:24;6019:63;:::i;:::-;6009:73;;;5493:595;;;;;:::o;6093:1020::-;6263:6;6271;6279;6287;6340:3;6328:9;6319:7;6315:23;6311:33;6308:53;;;6357:1;6354;6347:12;6308:53;6397:9;6384:23;6426:18;6467:2;6459:6;6456:14;6453:34;;;6483:1;6480;6473:12;6453:34;6506:61;6559:7;6550:6;6539:9;6535:22;6506:61;:::i;:::-;6496:71;;6620:2;6609:9;6605:18;6592:32;6576:48;;6649:2;6639:8;6636:16;6633:36;;;6665:1;6662;6655:12;6633:36;6688:63;6743:7;6732:8;6721:9;6717:24;6688:63;:::i;:::-;6678:73;;6804:2;6793:9;6789:18;6776:32;6760:48;;6833:2;6823:8;6820:16;6817:36;;;6849:1;6846;6839:12;6817:36;6872:63;6927:7;6916:8;6905:9;6901:24;6872:63;:::i;:::-;6862:73;;6988:2;6977:9;6973:18;6960:32;6944:48;;7017:2;7007:8;7004:16;7001:36;;;7033:1;7030;7023:12;7001:36;;7056:51;7099:7;7088:8;7077:9;7073:24;7056:51;:::i;:::-;7046:61;;;6093:1020;;;;;;;:::o;7118:180::-;7177:6;7230:2;7218:9;7209:7;7205:23;7201:32;7198:52;;;7246:1;7243;7236:12;7198:52;-1:-1:-1;7269:23:1;;7118:180;-1:-1:-1;7118:180:1:o;7303:388::-;7380:6;7388;7441:2;7429:9;7420:7;7416:23;7412:32;7409:52;;;7457:1;7454;7447:12;7409:52;7493:9;7480:23;7470:33;;7554:2;7543:9;7539:18;7526:32;7581:18;7573:6;7570:30;7567:50;;;7613:1;7610;7603:12;7567:50;7636:49;7677:7;7668:6;7657:9;7653:22;7636:49;:::i;7696:245::-;7754:6;7807:2;7795:9;7786:7;7782:23;7778:32;7775:52;;;7823:1;7820;7813:12;7775:52;7862:9;7849:23;7881:30;7905:5;7881:30;:::i;7946:249::-;8015:6;8068:2;8056:9;8047:7;8043:23;8039:32;8036:52;;;8084:1;8081;8074:12;8036:52;8116:9;8110:16;8135:30;8159:5;8135:30;:::i;8200:450::-;8269:6;8322:2;8310:9;8301:7;8297:23;8293:32;8290:52;;;8338:1;8335;8328:12;8290:52;8378:9;8365:23;8411:18;8403:6;8400:30;8397:50;;;8443:1;8440;8433:12;8397:50;8466:22;;8519:4;8511:13;;8507:27;-1:-1:-1;8497:55:1;;8548:1;8545;8538:12;8497:55;8571:73;8636:7;8631:2;8618:16;8613:2;8609;8605:11;8571:73;:::i;:::-;8561:83;8200:450;-1:-1:-1;;;;8200:450:1:o;8840:525::-;8932:6;8940;8948;8956;9009:3;8997:9;8988:7;8984:23;8980:33;8977:53;;;9026:1;9023;9016:12;8977:53;9062:9;9049:23;9039:33;;9091:35;9122:2;9111:9;9107:18;9091:35;:::i;:::-;9081:45;;9173:2;9162:9;9158:18;9145:32;9135:42;;9228:2;9217:9;9213:18;9200:32;9255:18;9247:6;9244:30;9241:50;;;9287:1;9284;9277:12;9241:50;9310:49;9351:7;9342:6;9331:9;9327:22;9310:49;:::i;9370:435::-;9423:3;9461:5;9455:12;9488:6;9483:3;9476:19;9514:4;9543:2;9538:3;9534:12;9527:19;;9580:2;9573:5;9569:14;9601:1;9611:169;9625:6;9622:1;9619:13;9611:169;;;9686:13;;9674:26;;9720:12;;;;9755:15;;;;9647:1;9640:9;9611:169;;;-1:-1:-1;9796:3:1;;9370:435;-1:-1:-1;;;;;9370:435:1:o;9810:257::-;9851:3;9889:5;9883:12;9916:6;9911:3;9904:19;9932:63;9988:6;9981:4;9976:3;9972:14;9965:4;9958:5;9954:16;9932:63;:::i;:::-;10049:2;10028:15;-1:-1:-1;;10024:29:1;10015:39;;;;10056:4;10011:50;;9810:257;-1:-1:-1;;9810:257:1:o;10072:185::-;10114:3;10152:5;10146:12;10167:52;10212:6;10207:3;10200:4;10193:5;10189:16;10167:52;:::i;:::-;10235:16;;;;;10072:185;-1:-1:-1;;10072:185:1:o;10829:1358::-;11106:3;11135:1;11168:6;11162:13;11198:3;11220:1;11248:9;11244:2;11240:18;11230:28;;11308:2;11297:9;11293:18;11330;11320:61;;11374:4;11366:6;11362:17;11352:27;;11320:61;11400:2;11448;11440:6;11437:14;11417:18;11414:38;11411:222;;;-1:-1:-1;;;11482:3:1;11475:90;11588:4;11585:1;11578:15;11618:4;11613:3;11606:17;11411:222;11649:18;11676:104;;;;11794:1;11789:320;;;;11642:467;;11676:104;-1:-1:-1;;11709:24:1;;11697:37;;11754:16;;;;-1:-1:-1;11676:104:1;;11789:320;23757:1;23750:14;;;23794:4;23781:18;;11884:1;11898:165;11912:6;11909:1;11906:13;11898:165;;;11990:14;;11977:11;;;11970:35;12033:16;;;;11927:10;;11898:165;;;11902:3;;12092:6;12087:3;12083:16;12076:23;;11642:467;;;;;;;12125:56;12150:30;12176:3;12168:6;12150:30;:::i;:::-;10334:7;10322:20;;10367:1;10358:11;;10262:113;12125:56;12118:63;10829:1358;-1:-1:-1;;;;;10829:1358:1:o;12808:849::-;13130:4;-1:-1:-1;;;;;13240:2:1;13232:6;13228:15;13217:9;13210:34;13292:2;13284:6;13280:15;13275:2;13264:9;13260:18;13253:43;;13332:3;13327:2;13316:9;13312:18;13305:31;13359:57;13411:3;13400:9;13396:19;13388:6;13359:57;:::i;:::-;13464:9;13456:6;13452:22;13447:2;13436:9;13432:18;13425:50;13498:44;13535:6;13527;13498:44;:::i;:::-;13484:58;;13591:9;13583:6;13579:22;13573:3;13562:9;13558:19;13551:51;13619:32;13644:6;13636;13619:32;:::i;:::-;13611:40;12808:849;-1:-1:-1;;;;;;;;12808:849:1:o;13662:583::-;13884:4;-1:-1:-1;;;;;13994:2:1;13986:6;13982:15;13971:9;13964:34;14046:2;14038:6;14034:15;14029:2;14018:9;14014:18;14007:43;;14086:6;14081:2;14070:9;14066:18;14059:34;14129:6;14124:2;14113:9;14109:18;14102:34;14173:3;14167;14156:9;14152:19;14145:32;14194:45;14234:3;14223:9;14219:19;14211:6;14194:45;:::i;:::-;14186:53;13662:583;-1:-1:-1;;;;;;;13662:583:1:o;14250:261::-;14429:2;14418:9;14411:21;14392:4;14449:56;14501:2;14490:9;14486:18;14478:6;14449:56;:::i;14516:465::-;14773:2;14762:9;14755:21;14736:4;14799:56;14851:2;14840:9;14836:18;14828:6;14799:56;:::i;:::-;14903:9;14895:6;14891:22;14886:2;14875:9;14871:18;14864:50;14931:44;14968:6;14960;14931:44;:::i;15763:219::-;15912:2;15901:9;15894:21;15875:4;15932:44;15972:2;15961:9;15957:18;15949:6;15932:44;:::i;23496:183::-;23556:4;23589:18;23581:6;23578:30;23575:56;;;23611:18;;:::i;:::-;-1:-1:-1;23656:1:1;23652:14;23668:4;23648:25;;23496:183::o;23810:128::-;23850:3;23881:1;23877:6;23874:1;23871:13;23868:39;;;23887:18;;:::i;:::-;-1:-1:-1;23923:9:1;;23810:128::o;23943:204::-;23981:3;24017:4;24014:1;24010:12;24049:4;24046:1;24042:12;24084:3;24078:4;24074:14;24069:3;24066:23;24063:49;;;24092:18;;:::i;:::-;24128:13;;23943:204;-1:-1:-1;;;23943:204:1:o;24152:274::-;24192:1;24218;24208:189;;-1:-1:-1;;;24250:1:1;24243:88;24354:4;24351:1;24344:15;24382:4;24379:1;24372:15;24208:189;-1:-1:-1;24411:9:1;;24152:274::o;24431:168::-;24471:7;24537:1;24533;24529:6;24525:14;24522:1;24519:21;24514:1;24507:9;24500:17;24496:45;24493:71;;;24544:18;;:::i;:::-;-1:-1:-1;24584:9:1;;24431:168::o;24604:125::-;24644:4;24672:1;24669;24666:8;24663:34;;;24677:18;;:::i;:::-;-1:-1:-1;24714:9:1;;24604:125::o;24734:258::-;24806:1;24816:113;24830:6;24827:1;24824:13;24816:113;;;24906:11;;;24900:18;24887:11;;;24880:39;24852:2;24845:10;24816:113;;;24947:6;24944:1;24941:13;24938:48;;;24982:1;24973:6;24968:3;24964:16;24957:27;24938:48;;24734:258;;;:::o;24997:437::-;25076:1;25072:12;;;;25119;;;25140:61;;25194:4;25186:6;25182:17;25172:27;;25140:61;25247:2;25239:6;25236:14;25216:18;25213:38;25210:218;;;-1:-1:-1;;;25281:1:1;25274:88;25385:4;25382:1;25375:15;25413:4;25410:1;25403:15;25210:218;;24997:437;;;:::o;25439:249::-;25549:2;25530:13;;-1:-1:-1;;25526:27:1;25514:40;;25584:18;25569:34;;25605:22;;;25566:62;25563:88;;;25631:18;;:::i;:::-;25667:2;25660:22;-1:-1:-1;;25439:249:1:o;25693:135::-;25732:3;-1:-1:-1;;25753:17:1;;25750:43;;;25773:18;;:::i;:::-;-1:-1:-1;25820:1:1;25809:13;;25693:135::o;25833:184::-;-1:-1:-1;;;25882:1:1;25875:88;25982:4;25979:1;25972:15;26006:4;26003:1;25996:15;26022:184;-1:-1:-1;;;26071:1:1;26064:88;26171:4;26168:1;26161:15;26195:4;26192:1;26185:15;26211:184;-1:-1:-1;;;26260:1:1;26253:88;26360:4;26357:1;26350:15;26384:4;26381:1;26374:15;26400:184;-1:-1:-1;;;26449:1:1;26442:88;26549:4;26546:1;26539:15;26573:4;26570:1;26563:15;26589:179;26624:3;26666:1;26648:16;26645:23;26642:120;;;26712:1;26709;26706;26691:23;-1:-1:-1;26749:1:1;26743:8;26738:3;26734:18;26642:120;26589:179;:::o;26773:671::-;26812:3;26854:4;26836:16;26833:26;26830:39;;;26773:671;:::o;26830:39::-;26896:2;26890:9;-1:-1:-1;;26961:16:1;26957:25;;26954:1;26890:9;26933:50;27012:4;27006:11;27036:16;27071:18;27142:2;27135:4;27127:6;27123:17;27120:25;27115:2;27107:6;27104:14;27101:45;27098:58;;;27149:5;;;;;26773:671;:::o;27098:58::-;27186:6;27180:4;27176:17;27165:28;;27222:3;27216:10;27249:2;27241:6;27238:14;27235:27;;;27255:5;;;;;;26773:671;:::o;27235:27::-;27339:2;27320:16;27314:4;27310:27;27306:36;27299:4;27290:6;27285:3;27281:16;27277:27;27274:69;27271:82;;;27346:5;;;;;;26773:671;:::o;27271:82::-;27362:57;27413:4;27404:6;27396;27392:19;27388:30;27382:4;27362:57;:::i;:::-;-1:-1:-1;27435:3:1;;26773:671;-1:-1:-1;;;;;26773:671:1:o;27449:177::-;-1:-1:-1;;;;;;27527:5:1;27523:78;27516:5;27513:89;27503:117;;27616:1;27613;27606:12

Swarm Source

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