ETH Price: $3,335.69 (-1.74%)
Gas: 50 Gwei

Token

Early Birds (EBG)
 

Overview

Max Total Supply

999 EBG

Holders

127

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 EBG
0xca8f05814324264a2f22b00236cda7903160715f
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

999 Early Birds nested on the Ethereum Blockchain "Early Birds Get The $WORMS" Alpha | $WORMS Mart | Community Building | Retail Arbitrage | ACO | Education | Treasury - birdbank.eth

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
EarlyBirds

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
/*
   ___   ____  ____   _      __ __      ____   ____  ____   ___   _____
  /  _] /    ||    \ | |    |  |  |    |    \ |    ||    \ |   \ / ___/
 /  [_ |  o  ||  D  )| |    |  |  |    |  o  ) |  | |  D  )|    (   \_ 
|    _]|     ||    / | |___ |  ~  |    |     | |  | |    / |  D  \__  |
|   [_ |  _  ||    \ |     ||___, |    |  O  | |  | |    \ |     /  \ |
|     ||  |  ||  .  \|     ||     |    |     | |  | |  .  \|     \    |
|_____||__|__||__|\_||_____||____/     |_____||____||__|\_||_____|\___|
                                                                       
                      by Devko.dev#7286
*/
// File: @openzeppelin/contracts/utils/Strings.sol

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @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 = vs &
            bytes32(
                0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
            );
        uint8 v = uint8((uint256(vs) >> 255) + 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 Message, created from `s`. 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(bytes memory s)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked(
                    "\x19Ethereum Signed Message:\n",
                    Strings.toString(s.length),
                    s
                )
            );
    }

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @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.
     * - `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 tokenId
    ) internal virtual {}
}

// File: contract.sol

pragma solidity ^0.8.4;

interface IStaking {
    function mint(address _to, uint256 _amount) external;
}

contract EarlyBirds is ERC721, Ownable {
    string public _tokenBaseURI = "https://gateway.pinata.cloud/ipfs/QmRYr3DRPeoJAxELGSZWnZ2haKZZDqFKgXrLkxV4ry4QLD/";
    uint256 public EBG_MAX = 1400;
    uint256 public _tokensMinted;
    uint256 public _price = 0.1 ether;
    bool public OG_live;
    bool public PR_live;
    address private _signer = 0xA3fF44F69d770A203fF148D0069C0D9CFb85bd65;
    string private constant _sigWord = "EARLY_BIRDS_SC";
    mapping(address => bool) public OG_MINT_LIST;
    mapping(address => bool) public PR_MINT_LIST;

    bool public stakingLive;
    IStaking public StakingContract;
    uint256 public earningRate = 0.00005787037 ether;
    mapping(uint256 => uint256) public tokensLastClaimTime;

    using Strings for uint256;
    using ECDSA for bytes32;

    constructor() ERC721("Early Birds", "EBG") {
        for (uint256 index = 1401; index <= 1420; index++) {
            tokensLastClaimTime[index] = block.timestamp;
            _safeMint(msg.sender, index);
        }
    }

    modifier notContract() {
        require((!_isContract(msg.sender)) && (msg.sender == tx.origin), "contract not allowed");
        _;
    }

    function _isContract(address addr) internal view returns (bool) {
        uint256 size;
        assembly {
            size := extcodesize(addr)
        }
        return size > 0;
    }

    function matchAddresSigner(bytes memory signature, string memory whitelistingType) private view returns (bool) {
        bytes32 hash = keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", keccak256(abi.encodePacked(msg.sender, _sigWord, whitelistingType))));
        return _signer == hash.recover(signature);
    }

    function OG_Mint(bytes memory signature) external payable notContract {
        require(OG_live, "MINT_CLOSED");
        require(matchAddresSigner(signature, "OG"), "DIRECT_MINT_DISALLOWED");
        require(!OG_MINT_LIST[msg.sender], "EXCEED_ALLOWED");
        require(_tokensMinted + 1 <= EBG_MAX, "EXCEED_MAX");
        require(_price <= msg.value, "INSUFFICIENT_ETH");

        tokensLastClaimTime[_tokensMinted] = block.timestamp;
        OG_MINT_LIST[msg.sender] = true;
        _tokensMinted++;
        _safeMint(msg.sender, _tokensMinted);
    }

    function PR_Mint(bytes memory signature) external payable notContract {
        require(PR_live, "MINT_CLOSED");
        require(matchAddresSigner(signature, "PR"), "DIRECT_MINT_DISALLOWED");
        require(!PR_MINT_LIST[msg.sender], "EXCEED_ALLOWED");
        require(_tokensMinted + 1 <= EBG_MAX, "EXCEED_MAX");
        require(_price <= msg.value, "INSUFFICIENT_ETH");

        tokensLastClaimTime[_tokensMinted] = block.timestamp;
        PR_MINT_LIST[msg.sender] = true;
        _tokensMinted++;
        _safeMint(msg.sender, _tokensMinted);
    }

    function toggleOGMint() external onlyOwner {
        OG_live = !OG_live;
    }

    function togglePR() external onlyOwner {
        PR_live = !PR_live;
    }

    function toggleStaking() external onlyOwner {
        stakingLive = !stakingLive;
    }

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _tokenBaseURI = baseURI;
    }

    function setSigner(address newAddress) external onlyOwner {
        _signer = newAddress;
    }

    function totalSupply() public view returns (uint256) {
        return _tokensMinted + 20;
    }

    function withdraw() external onlyOwner {
        uint256 currentBalance = address(this).balance;
        payable(0x57977C4D220984edE1190396EEBE3B6bc7045Ef5).transfer((currentBalance * 20) / 100);
        payable(0x83fdd985926c8AbE6958005AedEE2247528fFAEd).transfer((currentBalance * 20) / 100);
        payable(0x11111F01570EeAA3e5a2Fd51f4A2f127661B9834).transfer((currentBalance * 12) / 100);
        payable(0xE8cC8049d434b6d10e89cd084584D65Ba1a2ac08).transfer(address(this).balance);
    }

    function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
        require(_exists(tokenId), "Cannot query non-existent token");
        return string(abi.encodePacked(_tokenBaseURI, tokenId.toString()));
    }

    function tokensOwnedBy(address owner) public view returns (uint256[] memory) {
        uint256[] memory tokensList = new uint256[](this.balanceOf(owner));
        uint256 currentIndex;
        for (uint256 index = 1; index <= _tokensMinted; index++) {
            if (this.ownerOf(index) == owner) {
                tokensList[currentIndex++] = uint256(index);
            }
        }
        return tokensList;
    }

    // STAKING
    function claimRewardsByIds(uint256[] calldata tokenIds) external notContract {
        require(stakingLive, "STAKING_CLOSED");
        uint256 totalRewards;

        for (uint256 index = 0; index < tokenIds.length; index++) {
            if (this.ownerOf(tokenIds[index]) == msg.sender) {
                totalRewards = totalRewards + earningRate * (block.timestamp - (tokensLastClaimTime[tokenIds[index]]));
                tokensLastClaimTime[tokenIds[index]] = block.timestamp;
            }
        }
        StakingContract.mint(msg.sender, totalRewards);
    }

    function currentRewardsForIds(uint256[] calldata tokenIds) external view returns (uint256) {
        uint256 totalRewards = 0;
        for (uint256 index = 0; index < tokenIds.length; index++) {
            if (block.timestamp - tokensLastClaimTime[tokenIds[index]] > 0) {
                totalRewards = totalRewards + (earningRate * (block.timestamp - (tokensLastClaimTime[tokenIds[index]])));
            }
        }
        return totalRewards;
    }

    function setEarningRate(uint256 rate) external onlyOwner {
        earningRate = rate;
    }

    function setStakingContract(address contractAddress) external onlyOwner {
        StakingContract = IStaking(contractAddress);
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"EBG_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"OG_MINT_LIST","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"OG_Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"OG_live","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"PR_MINT_LIST","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"PR_Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"PR_live","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"StakingContract","outputs":[{"internalType":"contract IStaking","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tokenBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tokensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"claimRewardsByIds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"currentRewardsForIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earningRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"rate","type":"uint256"}],"name":"setEarningRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"setStakingContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"toggleOGMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePR","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleStaking","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokensLastClaimTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOwnedBy","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

61010060405260516080818152906200358760a03980516200002a91600791602090910190620004ff565b5061057860085567016345785d8a0000600a55600b805462010000600160b01b03191675a3ff44f69d770a203ff148d0069c0d9cfb85bd6500001790556534a1fed8cc80600f553480156200007e57600080fd5b50604080518082018252600b81526a4561726c7920426972647360a81b60208083019182528351808501909452600384526245424760e81b908401528151919291620000cd91600091620004ff565b508051620000e3906001906020840190620004ff565b50505062000100620000fa6200014760201b60201c565b6200014b565b6105795b61058c8111620001405760008181526010602052604090204290556200012b33826200019d565b806200013781620006ab565b91505062000104565b50620006df565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001bf828260405180602001604052806000815250620001c360201b60201c565b5050565b620001cf83836200023f565b620001de600084848462000387565b6200023a5760405162461bcd60e51b815260206004820152603260248201526000805160206200356783398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084015b60405180910390fd5b505050565b6001600160a01b038216620002975760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640162000231565b6000818152600260205260409020546001600160a01b031615620002fe5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640162000231565b6001600160a01b03821660009081526003602052604081208054600192906200032990849062000653565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000620003a8846001600160a01b0316620004f060201b620019821760201c565b15620004e457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290620003e2903390899088908890600401620005d8565b602060405180830381600087803b158015620003fd57600080fd5b505af192505050801562000430575060408051601f3d908101601f191682019092526200042d91810190620005a5565b60015b620004c9573d80801562000461576040519150601f19603f3d011682016040523d82523d6000602084013e62000466565b606091505b508051620004c15760405162461bcd60e51b815260206004820152603260248201526000805160206200356783398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000231565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620004e8565b5060015b949350505050565b6001600160a01b03163b151590565b8280546200050d906200066e565b90600052602060002090601f0160209004810192826200053157600085556200057c565b82601f106200054c57805160ff19168380011785556200057c565b828001600101855582156200057c579182015b828111156200057c5782518255916020019190600101906200055f565b506200058a9291506200058e565b5090565b5b808211156200058a57600081556001016200058f565b600060208284031215620005b857600080fd5b81516001600160e01b031981168114620005d157600080fd5b9392505050565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620006275785810182015185820160a00152810162000609565b828111156200063a57600060a084870101525b5050601f01601f19169190910160a00195945050505050565b60008219821115620006695762000669620006c9565b500190565b600181811c908216806200068357607f821691505b60208210811415620006a557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620006c257620006c2620006c9565b5060010190565b634e487b7160e01b600052601160045260246000fd5b612e7880620006ef6000396000f3fe6080604052600436106102555760003560e01c80636352211e11610139578063a62dd55c116100b6578063c87b56dd1161007a578063c87b56dd146106af578063d92656a7146106cf578063e985e9c5146106e9578063ea66aeb314610732578063f2fde38b1461075f578063fc5c2ed91461077f57600080fd5b8063a62dd55c14610600578063a9a476541461061a578063ad003bef1461063f578063b88d4fde1461065f578063b947e6b11461067f57600080fd5b80638d6f5df6116100fd5780638d6f5df6146105775780638da5cb5b1461058d57806395d89b41146105ab5780639dd373b9146105c0578063a22cb465146105e057600080fd5b80636352211e146104e25780636c19e783146105025780636efabb011461052257806370a0823114610542578063715018a61461056257600080fd5b80633020afe8116101d25780633ccfd60b116101965780633ccfd60b1461042957806342842e0e1461043e578063524da6a11461045e57806355f804b31461047d578063566cc4fe1461049d5780635bf66223146104cd57600080fd5b80633020afe8146103aa57806331ddbff1146103bd57806331ff5675146103d25780633b8105b3146103ff5780633ca4fb761461041457600080fd5b80631594c147116102195780631594c1471461033657806318160ddd1461034c578063235b6ea11461036157806323b872dd146103775780632ec052731461039757600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b857806308f09a89146102f0578063095ea7b31461031457600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b5061028161027c3660046128d9565b61079f565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107f1565b60405161028d9190612b98565b3480156102c457600080fd5b506102d86102d33660046129a8565b610883565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b50610306600f5481565b60405190815260200161028d565b34801561032057600080fd5b5061033461032f366004612838565b61091d565b005b34801561034257600080fd5b5061030660085481565b34801561035857600080fd5b50610306610a33565b34801561036d57600080fd5b50610306600a5481565b34801561038357600080fd5b50610334610392366004612758565b610a49565b6103346103a5366004612913565b610a7a565b6103346103b8366004612913565b610c82565b3480156103c957600080fd5b50610334610e71565b3480156103de57600080fd5b506103066103ed3660046129a8565b60106020526000908152604090205481565b34801561040b57600080fd5b50610334610eaf565b34801561042057600080fd5b506102ab610eed565b34801561043557600080fd5b50610334610f7b565b34801561044a57600080fd5b50610334610459366004612758565b6110f2565b34801561046a57600080fd5b50600b5461028190610100900460ff1681565b34801561048957600080fd5b50610334610498366004612948565b61110d565b3480156104a957600080fd5b506102816104b83660046126de565b600d6020526000908152604090205460ff1681565b3480156104d957600080fd5b50610334611143565b3480156104ee57600080fd5b506102d86104fd3660046129a8565b61118a565b34801561050e57600080fd5b5061033461051d3660046126de565b611201565b34801561052e57600080fd5b5061033461053d3660046129a8565b611255565b34801561054e57600080fd5b5061030661055d3660046126de565b611284565b34801561056e57600080fd5b5061033461130b565b34801561058357600080fd5b5061030660095481565b34801561059957600080fd5b506006546001600160a01b03166102d8565b3480156105b757600080fd5b506102ab611341565b3480156105cc57600080fd5b506103346105db3660046126de565b611350565b3480156105ec57600080fd5b506103346105fb366004612805565b6113a2565b34801561060c57600080fd5b50600b546102819060ff1681565b34801561062657600080fd5b50600e546102d89061010090046001600160a01b031681565b34801561064b57600080fd5b5061033461065a366004612864565b6113ad565b34801561066b57600080fd5b5061033461067a366004612799565b6115c4565b34801561068b57600080fd5b5061028161069a3660046126de565b600c6020526000908152604090205460ff1681565b3480156106bb57600080fd5b506102ab6106ca3660046129a8565b6115fc565b3480156106db57600080fd5b50600e546102819060ff1681565b3480156106f557600080fd5b5061028161070436600461271f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561073e57600080fd5b5061075261074d3660046126de565b611695565b60405161028d9190612b54565b34801561076b57600080fd5b5061033461077a3660046126de565b611833565b34801561078b57600080fd5b5061030661079a366004612864565b6118cb565b60006001600160e01b031982166380ac58cd60e01b14806107d057506001600160e01b03198216635b5e139f60e01b145b806107eb57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461080090612d3f565b80601f016020809104026020016040519081016040528092919081815260200182805461082c90612d3f565b80156108795780601f1061084e57610100808354040283529160200191610879565b820191906000526020600020905b81548152906001019060200180831161085c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109015760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109288261118a565b9050806001600160a01b0316836001600160a01b031614156109965760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108f8565b336001600160a01b03821614806109b257506109b28133610704565b610a245760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108f8565b610a2e8383611991565b505050565b60006009546014610a449190612cb1565b905090565b610a5333826119ff565b610a6f5760405162461bcd60e51b81526004016108f890612c60565b610a2e838383611af6565b333b158015610a8857503332145b610aa45760405162461bcd60e51b81526004016108f890612c32565b600b54610100900460ff16610ae95760405162461bcd60e51b815260206004820152600b60248201526a1352539517d0d313d4d15160aa1b60448201526064016108f8565b610b0d8160405180604001604052806002815260200161282960f11b815250611c92565b610b525760405162461bcd60e51b81526020600482015260166024820152751112549150d517d352539517d11254d0531313d5d15160521b60448201526064016108f8565b336000908152600d602052604090205460ff1615610ba35760405162461bcd60e51b815260206004820152600e60248201526d115610d1515117d0531313d5d15160921b60448201526064016108f8565b600854600954610bb4906001612cb1565b1115610bef5760405162461bcd60e51b815260206004820152600a60248201526908ab0868a8a88be9a82b60b31b60448201526064016108f8565b34600a541115610c345760405162461bcd60e51b815260206004820152601060248201526f0929ca6aa8c8c9286928a9ca8be8aa8960831b60448201526064016108f8565b600980546000908152601060209081526040808320429055338352600d9091528120805460ff1916600117905581549190610c6e83612d7a565b9190505550610c7f33600954611d5d565b50565b333b158015610c9057503332145b610cac5760405162461bcd60e51b81526004016108f890612c32565b600b5460ff16610cec5760405162461bcd60e51b815260206004820152600b60248201526a1352539517d0d313d4d15160aa1b60448201526064016108f8565b610d1081604051806040016040528060028152602001614f4760f01b815250611c92565b610d555760405162461bcd60e51b81526020600482015260166024820152751112549150d517d352539517d11254d0531313d5d15160521b60448201526064016108f8565b336000908152600c602052604090205460ff1615610da65760405162461bcd60e51b815260206004820152600e60248201526d115610d1515117d0531313d5d15160921b60448201526064016108f8565b600854600954610db7906001612cb1565b1115610df25760405162461bcd60e51b815260206004820152600a60248201526908ab0868a8a88be9a82b60b31b60448201526064016108f8565b34600a541115610e375760405162461bcd60e51b815260206004820152601060248201526f0929ca6aa8c8c9286928a9ca8be8aa8960831b60448201526064016108f8565b600980546000908152601060209081526040808320429055338352600c9091528120805460ff1916600117905581549190610c6e83612d7a565b6006546001600160a01b03163314610e9b5760405162461bcd60e51b81526004016108f890612bfd565b600b805460ff19811660ff90911615179055565b6006546001600160a01b03163314610ed95760405162461bcd60e51b81526004016108f890612bfd565b600e805460ff19811660ff90911615179055565b60078054610efa90612d3f565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2690612d3f565b8015610f735780601f10610f4857610100808354040283529160200191610f73565b820191906000526020600020905b815481529060010190602001808311610f5657829003601f168201915b505050505081565b6006546001600160a01b03163314610fa55760405162461bcd60e51b81526004016108f890612bfd565b477357977c4d220984ede1190396eebe3b6bc7045ef56108fc6064610fcb846014612cdd565b610fd59190612cc9565b6040518115909202916000818181858888f19350505050158015610ffd573d6000803e3d6000fd5b507383fdd985926c8abe6958005aedee2247528ffaed6108fc6064611023846014612cdd565b61102d9190612cc9565b6040518115909202916000818181858888f19350505050158015611055573d6000803e3d6000fd5b507311111f01570eeaa3e5a2fd51f4a2f127661b98346108fc606461107b84600c612cdd565b6110859190612cc9565b6040518115909202916000818181858888f193505050501580156110ad573d6000803e3d6000fd5b5060405173e8cc8049d434b6d10e89cd084584d65ba1a2ac08904780156108fc02916000818181858888f193505050501580156110ee573d6000803e3d6000fd5b5050565b610a2e838383604051806020016040528060008152506115c4565b6006546001600160a01b031633146111375760405162461bcd60e51b81526004016108f890612bfd565b610a2e600783836125b8565b6006546001600160a01b0316331461116d5760405162461bcd60e51b81526004016108f890612bfd565b600b805461ff001981166101009182900460ff1615909102179055565b6000818152600260205260408120546001600160a01b0316806107eb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108f8565b6006546001600160a01b0316331461122b5760405162461bcd60e51b81526004016108f890612bfd565b600b80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b6006546001600160a01b0316331461127f5760405162461bcd60e51b81526004016108f890612bfd565b600f55565b60006001600160a01b0382166112ef5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108f8565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146113355760405162461bcd60e51b81526004016108f890612bfd565b61133f6000611d77565b565b60606001805461080090612d3f565b6006546001600160a01b0316331461137a5760405162461bcd60e51b81526004016108f890612bfd565b600e80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6110ee338383611dc9565b333b1580156113bb57503332145b6113d75760405162461bcd60e51b81526004016108f890612c32565b600e5460ff1661141a5760405162461bcd60e51b815260206004820152600e60248201526d14d51052d25391d7d0d313d4d15160921b60448201526064016108f8565b6000805b82811015611556573330636352211e86868581811061143f5761143f612deb565b905060200201356040518263ffffffff1660e01b815260040161146491815260200190565b60206040518083038186803b15801561147c57600080fd5b505afa158015611490573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b49190612702565b6001600160a01b0316141561154457601060008585848181106114d9576114d9612deb565b90506020020135815260200190815260200160002054426114fa9190612cfc565b600f546115079190612cdd565b6115119083612cb1565b9150426010600086868581811061152a5761152a612deb565b905060200201358152602001908152602001600020819055505b8061154e81612d7a565b91505061141e565b50600e546040516340c10f1960e01b8152336004820152602481018390526101009091046001600160a01b0316906340c10f1990604401600060405180830381600087803b1580156115a757600080fd5b505af11580156115bb573d6000803e3d6000fd5b50505050505050565b6115ce33836119ff565b6115ea5760405162461bcd60e51b81526004016108f890612c60565b6115f684848484611e98565b50505050565b6000818152600260205260409020546060906001600160a01b03166116635760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e0060448201526064016108f8565b600761166e83611ecb565b60405160200161167f929190612a70565b6040516020818303038152906040529050919050565b6040516370a0823160e01b81526001600160a01b038216600482015260609060009030906370a082319060240160206040518083038186803b1580156116da57600080fd5b505afa1580156116ee573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061171291906129c1565b67ffffffffffffffff81111561172a5761172a612e01565b604051908082528060200260200182016040528015611753578160200160208202803683370190505b509050600060015b600954811161182a576040516331a9108f60e11b8152600481018290526001600160a01b038616903090636352211e9060240160206040518083038186803b1580156117a657600080fd5b505afa1580156117ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117de9190612702565b6001600160a01b03161415611818578083836117f981612d7a565b94508151811061180b5761180b612deb565b6020026020010181815250505b8061182281612d7a565b91505061175b565b50909392505050565b6006546001600160a01b0316331461185d5760405162461bcd60e51b81526004016108f890612bfd565b6001600160a01b0381166118c25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f8565b610c7f81611d77565b600080805b8381101561197a576000601060008787858181106118f0576118f0612deb565b90506020020135815260200190815260200160002054426119119190612cfc565b1115611968576010600086868481811061192d5761192d612deb565b905060200201358152602001908152602001600020544261194e9190612cfc565b600f5461195b9190612cdd565b6119659083612cb1565b91505b8061197281612d7a565b9150506118d0565b509392505050565b6001600160a01b03163b151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119c68261118a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a785760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108f8565b6000611a838361118a565b9050806001600160a01b0316846001600160a01b03161480611abe5750836001600160a01b0316611ab384610883565b6001600160a01b0316145b80611aee57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b098261118a565b6001600160a01b031614611b6d5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016108f8565b6001600160a01b038216611bcf5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108f8565b611bda600082611991565b6001600160a01b0383166000908152600360205260408120805460019290611c03908490612cfc565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c31908490612cb1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080336040518060400160405280600e81526020016d4541524c595f42495244535f534360901b81525084604051602001611cd093929190612a22565b60408051601f198184030181529082905280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000091830191909152603c820152605c0160408051601f1981840301815291905280516020909101209050611d3d8185611fc9565b600b546201000090046001600160a01b0390811691161491505092915050565b6110ee828260405180602001604052806000815250611fe5565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611e2b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108f8565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611ea3848484611af6565b611eaf84848484612018565b6115f65760405162461bcd60e51b81526004016108f890612bab565b606081611eef5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f195780611f0381612d7a565b9150611f129050600a83612cc9565b9150611ef3565b60008167ffffffffffffffff811115611f3457611f34612e01565b6040519080825280601f01601f191660200182016040528015611f5e576020820181803683370190505b5090505b8415611aee57611f73600183612cfc565b9150611f80600a86612d95565b611f8b906030612cb1565b60f81b818381518110611fa057611fa0612deb565b60200101906001600160f81b031916908160001a905350611fc2600a86612cc9565b9450611f62565b6000806000611fd88585612125565b9150915061197a81612195565b611fef8383612350565b611ffc6000848484612018565b610a2e5760405162461bcd60e51b81526004016108f890612bab565b60006001600160a01b0384163b1561211a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061205c903390899088908890600401612b17565b602060405180830381600087803b15801561207657600080fd5b505af19250505080156120a6575060408051601f3d908101601f191682019092526120a3918101906128f6565b60015b612100573d8080156120d4576040519150601f19603f3d011682016040523d82523d6000602084013e6120d9565b606091505b5080516120f85760405162461bcd60e51b81526004016108f890612bab565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611aee565b506001949350505050565b60008082516041141561215c5760208301516040840151606085015160001a61215087828585612492565b9450945050505061218e565b825160401415612186576020830151604084015161217b86838361257f565b93509350505061218e565b506000905060025b9250929050565b60008160048111156121a9576121a9612dd5565b14156121b25750565b60018160048111156121c6576121c6612dd5565b14156122145760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016108f8565b600281600481111561222857612228612dd5565b14156122765760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016108f8565b600381600481111561228a5761228a612dd5565b14156122e35760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016108f8565b60048160048111156122f7576122f7612dd5565b1415610c7f5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016108f8565b6001600160a01b0382166123a65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108f8565b6000818152600260205260409020546001600160a01b03161561240b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108f8565b6001600160a01b0382166000908152600360205260408120805460019290612434908490612cb1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156124c95750600090506003612576565b8460ff16601b141580156124e157508460ff16601c14155b156124f25750600090506004612576565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612546573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661256f57600060019250925050612576565b9150600090505b94509492505050565b6000806001600160ff1b0383168161259c60ff86901c601b612cb1565b90506125aa87828885612492565b935093505050935093915050565b8280546125c490612d3f565b90600052602060002090601f0160209004810192826125e6576000855561262c565b82601f106125ff5782800160ff1982351617855561262c565b8280016001018555821561262c579182015b8281111561262c578235825591602001919060010190612611565b5061263892915061263c565b5090565b5b80821115612638576000815560010161263d565b600082601f83011261266257600080fd5b813567ffffffffffffffff8082111561267d5761267d612e01565b604051601f8301601f19908116603f011681019082821181831017156126a5576126a5612e01565b816040528381528660208588010111156126be57600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000602082840312156126f057600080fd5b81356126fb81612e17565b9392505050565b60006020828403121561271457600080fd5b81516126fb81612e17565b6000806040838503121561273257600080fd5b823561273d81612e17565b9150602083013561274d81612e17565b809150509250929050565b60008060006060848603121561276d57600080fd5b833561277881612e17565b9250602084013561278881612e17565b929592945050506040919091013590565b600080600080608085870312156127af57600080fd5b84356127ba81612e17565b935060208501356127ca81612e17565b925060408501359150606085013567ffffffffffffffff8111156127ed57600080fd5b6127f987828801612651565b91505092959194509250565b6000806040838503121561281857600080fd5b823561282381612e17565b91506020830135801515811461274d57600080fd5b6000806040838503121561284b57600080fd5b823561285681612e17565b946020939093013593505050565b6000806020838503121561287757600080fd5b823567ffffffffffffffff8082111561288f57600080fd5b818501915085601f8301126128a357600080fd5b8135818111156128b257600080fd5b8660208260051b85010111156128c757600080fd5b60209290920196919550909350505050565b6000602082840312156128eb57600080fd5b81356126fb81612e2c565b60006020828403121561290857600080fd5b81516126fb81612e2c565b60006020828403121561292557600080fd5b813567ffffffffffffffff81111561293c57600080fd5b611aee84828501612651565b6000806020838503121561295b57600080fd5b823567ffffffffffffffff8082111561297357600080fd5b818501915085601f83011261298757600080fd5b81358181111561299657600080fd5b8660208285010111156128c757600080fd5b6000602082840312156129ba57600080fd5b5035919050565b6000602082840312156129d357600080fd5b5051919050565b600081518084526129f2816020860160208601612d13565b601f01601f19169290920160200192915050565b60008151612a18818560208601612d13565b9290920192915050565b6bffffffffffffffffffffffff198460601b16815260008351612a4c816014850160208801612d13565b835190830190612a63816014840160208801612d13565b0160140195945050505050565b600080845481600182811c915080831680612a8c57607f831692505b6020808410821415612aac57634e487b7160e01b86526022600452602486fd5b818015612ac05760018114612ad157612afe565b60ff19861689528489019650612afe565b60008b81526020902060005b86811015612af65781548b820152908501908301612add565b505084890196505b505050505050612b0e8185612a06565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b4a908301846129da565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612b8c57835183529284019291840191600101612b70565b50909695505050505050565b6020815260006126fb60208301846129da565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526014908201527318dbdb9d1c9858dd081b9bdd08185b1b1bddd95960621b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612cc457612cc4612da9565b500190565b600082612cd857612cd8612dbf565b500490565b6000816000190483118215151615612cf757612cf7612da9565b500290565b600082821015612d0e57612d0e612da9565b500390565b60005b83811015612d2e578181015183820152602001612d16565b838111156115f65750506000910152565b600181811c90821680612d5357607f821691505b60208210811415612d7457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d8e57612d8e612da9565b5060010190565b600082612da457612da4612dbf565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610c7f57600080fd5b6001600160e01b031981168114610c7f57600080fdfea2646970667358221220a311a852cae0414f69dbd617c2023feae521fe30e2c181ed02d81fbb85154b5164736f6c634300080700334552433732313a207472616e7366657220746f206e6f6e20455243373231526568747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d52597233445250656f4a4178454c47535a576e5a3268614b5a5a4471464b6758724c6b785634727934514c442f

Deployed Bytecode

0x6080604052600436106102555760003560e01c80636352211e11610139578063a62dd55c116100b6578063c87b56dd1161007a578063c87b56dd146106af578063d92656a7146106cf578063e985e9c5146106e9578063ea66aeb314610732578063f2fde38b1461075f578063fc5c2ed91461077f57600080fd5b8063a62dd55c14610600578063a9a476541461061a578063ad003bef1461063f578063b88d4fde1461065f578063b947e6b11461067f57600080fd5b80638d6f5df6116100fd5780638d6f5df6146105775780638da5cb5b1461058d57806395d89b41146105ab5780639dd373b9146105c0578063a22cb465146105e057600080fd5b80636352211e146104e25780636c19e783146105025780636efabb011461052257806370a0823114610542578063715018a61461056257600080fd5b80633020afe8116101d25780633ccfd60b116101965780633ccfd60b1461042957806342842e0e1461043e578063524da6a11461045e57806355f804b31461047d578063566cc4fe1461049d5780635bf66223146104cd57600080fd5b80633020afe8146103aa57806331ddbff1146103bd57806331ff5675146103d25780633b8105b3146103ff5780633ca4fb761461041457600080fd5b80631594c147116102195780631594c1471461033657806318160ddd1461034c578063235b6ea11461036157806323b872dd146103775780632ec052731461039757600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b857806308f09a89146102f0578063095ea7b31461031457600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b5061028161027c3660046128d9565b61079f565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107f1565b60405161028d9190612b98565b3480156102c457600080fd5b506102d86102d33660046129a8565b610883565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b50610306600f5481565b60405190815260200161028d565b34801561032057600080fd5b5061033461032f366004612838565b61091d565b005b34801561034257600080fd5b5061030660085481565b34801561035857600080fd5b50610306610a33565b34801561036d57600080fd5b50610306600a5481565b34801561038357600080fd5b50610334610392366004612758565b610a49565b6103346103a5366004612913565b610a7a565b6103346103b8366004612913565b610c82565b3480156103c957600080fd5b50610334610e71565b3480156103de57600080fd5b506103066103ed3660046129a8565b60106020526000908152604090205481565b34801561040b57600080fd5b50610334610eaf565b34801561042057600080fd5b506102ab610eed565b34801561043557600080fd5b50610334610f7b565b34801561044a57600080fd5b50610334610459366004612758565b6110f2565b34801561046a57600080fd5b50600b5461028190610100900460ff1681565b34801561048957600080fd5b50610334610498366004612948565b61110d565b3480156104a957600080fd5b506102816104b83660046126de565b600d6020526000908152604090205460ff1681565b3480156104d957600080fd5b50610334611143565b3480156104ee57600080fd5b506102d86104fd3660046129a8565b61118a565b34801561050e57600080fd5b5061033461051d3660046126de565b611201565b34801561052e57600080fd5b5061033461053d3660046129a8565b611255565b34801561054e57600080fd5b5061030661055d3660046126de565b611284565b34801561056e57600080fd5b5061033461130b565b34801561058357600080fd5b5061030660095481565b34801561059957600080fd5b506006546001600160a01b03166102d8565b3480156105b757600080fd5b506102ab611341565b3480156105cc57600080fd5b506103346105db3660046126de565b611350565b3480156105ec57600080fd5b506103346105fb366004612805565b6113a2565b34801561060c57600080fd5b50600b546102819060ff1681565b34801561062657600080fd5b50600e546102d89061010090046001600160a01b031681565b34801561064b57600080fd5b5061033461065a366004612864565b6113ad565b34801561066b57600080fd5b5061033461067a366004612799565b6115c4565b34801561068b57600080fd5b5061028161069a3660046126de565b600c6020526000908152604090205460ff1681565b3480156106bb57600080fd5b506102ab6106ca3660046129a8565b6115fc565b3480156106db57600080fd5b50600e546102819060ff1681565b3480156106f557600080fd5b5061028161070436600461271f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561073e57600080fd5b5061075261074d3660046126de565b611695565b60405161028d9190612b54565b34801561076b57600080fd5b5061033461077a3660046126de565b611833565b34801561078b57600080fd5b5061030661079a366004612864565b6118cb565b60006001600160e01b031982166380ac58cd60e01b14806107d057506001600160e01b03198216635b5e139f60e01b145b806107eb57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461080090612d3f565b80601f016020809104026020016040519081016040528092919081815260200182805461082c90612d3f565b80156108795780601f1061084e57610100808354040283529160200191610879565b820191906000526020600020905b81548152906001019060200180831161085c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109015760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109288261118a565b9050806001600160a01b0316836001600160a01b031614156109965760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108f8565b336001600160a01b03821614806109b257506109b28133610704565b610a245760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108f8565b610a2e8383611991565b505050565b60006009546014610a449190612cb1565b905090565b610a5333826119ff565b610a6f5760405162461bcd60e51b81526004016108f890612c60565b610a2e838383611af6565b333b158015610a8857503332145b610aa45760405162461bcd60e51b81526004016108f890612c32565b600b54610100900460ff16610ae95760405162461bcd60e51b815260206004820152600b60248201526a1352539517d0d313d4d15160aa1b60448201526064016108f8565b610b0d8160405180604001604052806002815260200161282960f11b815250611c92565b610b525760405162461bcd60e51b81526020600482015260166024820152751112549150d517d352539517d11254d0531313d5d15160521b60448201526064016108f8565b336000908152600d602052604090205460ff1615610ba35760405162461bcd60e51b815260206004820152600e60248201526d115610d1515117d0531313d5d15160921b60448201526064016108f8565b600854600954610bb4906001612cb1565b1115610bef5760405162461bcd60e51b815260206004820152600a60248201526908ab0868a8a88be9a82b60b31b60448201526064016108f8565b34600a541115610c345760405162461bcd60e51b815260206004820152601060248201526f0929ca6aa8c8c9286928a9ca8be8aa8960831b60448201526064016108f8565b600980546000908152601060209081526040808320429055338352600d9091528120805460ff1916600117905581549190610c6e83612d7a565b9190505550610c7f33600954611d5d565b50565b333b158015610c9057503332145b610cac5760405162461bcd60e51b81526004016108f890612c32565b600b5460ff16610cec5760405162461bcd60e51b815260206004820152600b60248201526a1352539517d0d313d4d15160aa1b60448201526064016108f8565b610d1081604051806040016040528060028152602001614f4760f01b815250611c92565b610d555760405162461bcd60e51b81526020600482015260166024820152751112549150d517d352539517d11254d0531313d5d15160521b60448201526064016108f8565b336000908152600c602052604090205460ff1615610da65760405162461bcd60e51b815260206004820152600e60248201526d115610d1515117d0531313d5d15160921b60448201526064016108f8565b600854600954610db7906001612cb1565b1115610df25760405162461bcd60e51b815260206004820152600a60248201526908ab0868a8a88be9a82b60b31b60448201526064016108f8565b34600a541115610e375760405162461bcd60e51b815260206004820152601060248201526f0929ca6aa8c8c9286928a9ca8be8aa8960831b60448201526064016108f8565b600980546000908152601060209081526040808320429055338352600c9091528120805460ff1916600117905581549190610c6e83612d7a565b6006546001600160a01b03163314610e9b5760405162461bcd60e51b81526004016108f890612bfd565b600b805460ff19811660ff90911615179055565b6006546001600160a01b03163314610ed95760405162461bcd60e51b81526004016108f890612bfd565b600e805460ff19811660ff90911615179055565b60078054610efa90612d3f565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2690612d3f565b8015610f735780601f10610f4857610100808354040283529160200191610f73565b820191906000526020600020905b815481529060010190602001808311610f5657829003601f168201915b505050505081565b6006546001600160a01b03163314610fa55760405162461bcd60e51b81526004016108f890612bfd565b477357977c4d220984ede1190396eebe3b6bc7045ef56108fc6064610fcb846014612cdd565b610fd59190612cc9565b6040518115909202916000818181858888f19350505050158015610ffd573d6000803e3d6000fd5b507383fdd985926c8abe6958005aedee2247528ffaed6108fc6064611023846014612cdd565b61102d9190612cc9565b6040518115909202916000818181858888f19350505050158015611055573d6000803e3d6000fd5b507311111f01570eeaa3e5a2fd51f4a2f127661b98346108fc606461107b84600c612cdd565b6110859190612cc9565b6040518115909202916000818181858888f193505050501580156110ad573d6000803e3d6000fd5b5060405173e8cc8049d434b6d10e89cd084584d65ba1a2ac08904780156108fc02916000818181858888f193505050501580156110ee573d6000803e3d6000fd5b5050565b610a2e838383604051806020016040528060008152506115c4565b6006546001600160a01b031633146111375760405162461bcd60e51b81526004016108f890612bfd565b610a2e600783836125b8565b6006546001600160a01b0316331461116d5760405162461bcd60e51b81526004016108f890612bfd565b600b805461ff001981166101009182900460ff1615909102179055565b6000818152600260205260408120546001600160a01b0316806107eb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108f8565b6006546001600160a01b0316331461122b5760405162461bcd60e51b81526004016108f890612bfd565b600b80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b6006546001600160a01b0316331461127f5760405162461bcd60e51b81526004016108f890612bfd565b600f55565b60006001600160a01b0382166112ef5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108f8565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146113355760405162461bcd60e51b81526004016108f890612bfd565b61133f6000611d77565b565b60606001805461080090612d3f565b6006546001600160a01b0316331461137a5760405162461bcd60e51b81526004016108f890612bfd565b600e80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6110ee338383611dc9565b333b1580156113bb57503332145b6113d75760405162461bcd60e51b81526004016108f890612c32565b600e5460ff1661141a5760405162461bcd60e51b815260206004820152600e60248201526d14d51052d25391d7d0d313d4d15160921b60448201526064016108f8565b6000805b82811015611556573330636352211e86868581811061143f5761143f612deb565b905060200201356040518263ffffffff1660e01b815260040161146491815260200190565b60206040518083038186803b15801561147c57600080fd5b505afa158015611490573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b49190612702565b6001600160a01b0316141561154457601060008585848181106114d9576114d9612deb565b90506020020135815260200190815260200160002054426114fa9190612cfc565b600f546115079190612cdd565b6115119083612cb1565b9150426010600086868581811061152a5761152a612deb565b905060200201358152602001908152602001600020819055505b8061154e81612d7a565b91505061141e565b50600e546040516340c10f1960e01b8152336004820152602481018390526101009091046001600160a01b0316906340c10f1990604401600060405180830381600087803b1580156115a757600080fd5b505af11580156115bb573d6000803e3d6000fd5b50505050505050565b6115ce33836119ff565b6115ea5760405162461bcd60e51b81526004016108f890612c60565b6115f684848484611e98565b50505050565b6000818152600260205260409020546060906001600160a01b03166116635760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e0060448201526064016108f8565b600761166e83611ecb565b60405160200161167f929190612a70565b6040516020818303038152906040529050919050565b6040516370a0823160e01b81526001600160a01b038216600482015260609060009030906370a082319060240160206040518083038186803b1580156116da57600080fd5b505afa1580156116ee573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061171291906129c1565b67ffffffffffffffff81111561172a5761172a612e01565b604051908082528060200260200182016040528015611753578160200160208202803683370190505b509050600060015b600954811161182a576040516331a9108f60e11b8152600481018290526001600160a01b038616903090636352211e9060240160206040518083038186803b1580156117a657600080fd5b505afa1580156117ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117de9190612702565b6001600160a01b03161415611818578083836117f981612d7a565b94508151811061180b5761180b612deb565b6020026020010181815250505b8061182281612d7a565b91505061175b565b50909392505050565b6006546001600160a01b0316331461185d5760405162461bcd60e51b81526004016108f890612bfd565b6001600160a01b0381166118c25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f8565b610c7f81611d77565b600080805b8381101561197a576000601060008787858181106118f0576118f0612deb565b90506020020135815260200190815260200160002054426119119190612cfc565b1115611968576010600086868481811061192d5761192d612deb565b905060200201358152602001908152602001600020544261194e9190612cfc565b600f5461195b9190612cdd565b6119659083612cb1565b91505b8061197281612d7a565b9150506118d0565b509392505050565b6001600160a01b03163b151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119c68261118a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a785760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108f8565b6000611a838361118a565b9050806001600160a01b0316846001600160a01b03161480611abe5750836001600160a01b0316611ab384610883565b6001600160a01b0316145b80611aee57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b098261118a565b6001600160a01b031614611b6d5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016108f8565b6001600160a01b038216611bcf5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108f8565b611bda600082611991565b6001600160a01b0383166000908152600360205260408120805460019290611c03908490612cfc565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c31908490612cb1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080336040518060400160405280600e81526020016d4541524c595f42495244535f534360901b81525084604051602001611cd093929190612a22565b60408051601f198184030181529082905280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000091830191909152603c820152605c0160408051601f1981840301815291905280516020909101209050611d3d8185611fc9565b600b546201000090046001600160a01b0390811691161491505092915050565b6110ee828260405180602001604052806000815250611fe5565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611e2b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108f8565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611ea3848484611af6565b611eaf84848484612018565b6115f65760405162461bcd60e51b81526004016108f890612bab565b606081611eef5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f195780611f0381612d7a565b9150611f129050600a83612cc9565b9150611ef3565b60008167ffffffffffffffff811115611f3457611f34612e01565b6040519080825280601f01601f191660200182016040528015611f5e576020820181803683370190505b5090505b8415611aee57611f73600183612cfc565b9150611f80600a86612d95565b611f8b906030612cb1565b60f81b818381518110611fa057611fa0612deb565b60200101906001600160f81b031916908160001a905350611fc2600a86612cc9565b9450611f62565b6000806000611fd88585612125565b9150915061197a81612195565b611fef8383612350565b611ffc6000848484612018565b610a2e5760405162461bcd60e51b81526004016108f890612bab565b60006001600160a01b0384163b1561211a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061205c903390899088908890600401612b17565b602060405180830381600087803b15801561207657600080fd5b505af19250505080156120a6575060408051601f3d908101601f191682019092526120a3918101906128f6565b60015b612100573d8080156120d4576040519150601f19603f3d011682016040523d82523d6000602084013e6120d9565b606091505b5080516120f85760405162461bcd60e51b81526004016108f890612bab565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611aee565b506001949350505050565b60008082516041141561215c5760208301516040840151606085015160001a61215087828585612492565b9450945050505061218e565b825160401415612186576020830151604084015161217b86838361257f565b93509350505061218e565b506000905060025b9250929050565b60008160048111156121a9576121a9612dd5565b14156121b25750565b60018160048111156121c6576121c6612dd5565b14156122145760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016108f8565b600281600481111561222857612228612dd5565b14156122765760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016108f8565b600381600481111561228a5761228a612dd5565b14156122e35760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016108f8565b60048160048111156122f7576122f7612dd5565b1415610c7f5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016108f8565b6001600160a01b0382166123a65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108f8565b6000818152600260205260409020546001600160a01b03161561240b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108f8565b6001600160a01b0382166000908152600360205260408120805460019290612434908490612cb1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156124c95750600090506003612576565b8460ff16601b141580156124e157508460ff16601c14155b156124f25750600090506004612576565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612546573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661256f57600060019250925050612576565b9150600090505b94509492505050565b6000806001600160ff1b0383168161259c60ff86901c601b612cb1565b90506125aa87828885612492565b935093505050935093915050565b8280546125c490612d3f565b90600052602060002090601f0160209004810192826125e6576000855561262c565b82601f106125ff5782800160ff1982351617855561262c565b8280016001018555821561262c579182015b8281111561262c578235825591602001919060010190612611565b5061263892915061263c565b5090565b5b80821115612638576000815560010161263d565b600082601f83011261266257600080fd5b813567ffffffffffffffff8082111561267d5761267d612e01565b604051601f8301601f19908116603f011681019082821181831017156126a5576126a5612e01565b816040528381528660208588010111156126be57600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000602082840312156126f057600080fd5b81356126fb81612e17565b9392505050565b60006020828403121561271457600080fd5b81516126fb81612e17565b6000806040838503121561273257600080fd5b823561273d81612e17565b9150602083013561274d81612e17565b809150509250929050565b60008060006060848603121561276d57600080fd5b833561277881612e17565b9250602084013561278881612e17565b929592945050506040919091013590565b600080600080608085870312156127af57600080fd5b84356127ba81612e17565b935060208501356127ca81612e17565b925060408501359150606085013567ffffffffffffffff8111156127ed57600080fd5b6127f987828801612651565b91505092959194509250565b6000806040838503121561281857600080fd5b823561282381612e17565b91506020830135801515811461274d57600080fd5b6000806040838503121561284b57600080fd5b823561285681612e17565b946020939093013593505050565b6000806020838503121561287757600080fd5b823567ffffffffffffffff8082111561288f57600080fd5b818501915085601f8301126128a357600080fd5b8135818111156128b257600080fd5b8660208260051b85010111156128c757600080fd5b60209290920196919550909350505050565b6000602082840312156128eb57600080fd5b81356126fb81612e2c565b60006020828403121561290857600080fd5b81516126fb81612e2c565b60006020828403121561292557600080fd5b813567ffffffffffffffff81111561293c57600080fd5b611aee84828501612651565b6000806020838503121561295b57600080fd5b823567ffffffffffffffff8082111561297357600080fd5b818501915085601f83011261298757600080fd5b81358181111561299657600080fd5b8660208285010111156128c757600080fd5b6000602082840312156129ba57600080fd5b5035919050565b6000602082840312156129d357600080fd5b5051919050565b600081518084526129f2816020860160208601612d13565b601f01601f19169290920160200192915050565b60008151612a18818560208601612d13565b9290920192915050565b6bffffffffffffffffffffffff198460601b16815260008351612a4c816014850160208801612d13565b835190830190612a63816014840160208801612d13565b0160140195945050505050565b600080845481600182811c915080831680612a8c57607f831692505b6020808410821415612aac57634e487b7160e01b86526022600452602486fd5b818015612ac05760018114612ad157612afe565b60ff19861689528489019650612afe565b60008b81526020902060005b86811015612af65781548b820152908501908301612add565b505084890196505b505050505050612b0e8185612a06565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b4a908301846129da565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612b8c57835183529284019291840191600101612b70565b50909695505050505050565b6020815260006126fb60208301846129da565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526014908201527318dbdb9d1c9858dd081b9bdd08185b1b1bddd95960621b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612cc457612cc4612da9565b500190565b600082612cd857612cd8612dbf565b500490565b6000816000190483118215151615612cf757612cf7612da9565b500290565b600082821015612d0e57612d0e612da9565b500390565b60005b83811015612d2e578181015183820152602001612d16565b838111156115f65750506000910152565b600181811c90821680612d5357607f821691505b60208210811415612d7457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d8e57612d8e612da9565b5060010190565b600082612da457612da4612dbf565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610c7f57600080fd5b6001600160e01b031981168114610c7f57600080fdfea2646970667358221220a311a852cae0414f69dbd617c2023feae521fe30e2c181ed02d81fbb85154b5164736f6c63430008070033

Deployed Bytecode Sourcemap

49701:6011:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35489:355;;;;;;;;;;-1:-1:-1;35489:355:0;;;;;:::i;:::-;;:::i;:::-;;;10324:14:1;;10317:22;10299:41;;10287:2;10272:18;35489:355:0;;;;;;;;36658:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;38351:308::-;;;;;;;;;;-1:-1:-1;38351:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8706:32:1;;;8688:51;;8676:2;8661:18;38351:308:0;8542:203:1;50335:48:0;;;;;;;;;;;;;;;;;;;21600:25:1;;;21588:2;21573:18;50335:48:0;21454:177:1;37874:411:0;;;;;;;;;;-1:-1:-1;37874:411:0;;;;;:::i;:::-;;:::i;:::-;;49867:29;;;;;;;;;;;;;;;;53069:97;;;;;;;;;;;;;:::i;49938:33::-;;;;;;;;;;;;;;;;39270:376;;;;;;;;;;-1:-1:-1;39270:376:0;;;;;:::i;:::-;;:::i;52009:564::-;;;;;;:::i;:::-;;:::i;51437:::-;;;;;;:::i;:::-;;:::i;52581:80::-;;;;;;;;;;;;;:::i;50390:54::-;;;;;;;;;;-1:-1:-1;50390:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;52753:89;;;;;;;;;;;;;:::i;49747:113::-;;;;;;;;;;;;;:::i;53174:498::-;;;;;;;;;;;;;:::i;39717:185::-;;;;;;;;;;-1:-1:-1;39717:185:0;;;;;:::i;:::-;;:::i;50004:19::-;;;;;;;;;;-1:-1:-1;50004:19:0;;;;;;;;;;;52850:106;;;;;;;;;;-1:-1:-1;52850:106:0;;;;;:::i;:::-;;:::i;50214:44::-;;;;;;;;;;-1:-1:-1;50214:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;52669:76;;;;;;;;;;;;;:::i;36265:326::-;;;;;;;;;;-1:-1:-1;36265:326:0;;;;;:::i;:::-;;:::i;52964:97::-;;;;;;;;;;-1:-1:-1;52964:97:0;;;;;:::i;:::-;;:::i;55436:94::-;;;;;;;;;;-1:-1:-1;55436:94:0;;;;;:::i;:::-;;:::i;35908:295::-;;;;;;;;;;-1:-1:-1;35908:295:0;;;;;:::i;:::-;;:::i;15434:103::-;;;;;;;;;;;;;:::i;49903:28::-;;;;;;;;;;;;;;;;14783:87;;;;;;;;;;-1:-1:-1;14856:6:0;;-1:-1:-1;;;;;14856:6:0;14783:87;;36827:104;;;;;;;;;;;;;:::i;55538:134::-;;;;;;;;;;-1:-1:-1;55538:134:0;;;;;:::i;:::-;;:::i;38731:187::-;;;;;;;;;;-1:-1:-1;38731:187:0;;;;;:::i;:::-;;:::i;49978:19::-;;;;;;;;;;-1:-1:-1;49978:19:0;;;;;;;;50297:31;;;;;;;;;;-1:-1:-1;50297:31:0;;;;;;;-1:-1:-1;;;;;50297:31:0;;;54382:577;;;;;;;;;;-1:-1:-1;54382:577:0;;;;;:::i;:::-;;:::i;39973:365::-;;;;;;;;;;-1:-1:-1;39973:365:0;;;;;:::i;:::-;;:::i;50163:44::-;;;;;;;;;;-1:-1:-1;50163:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;53680:244;;;;;;;;;;-1:-1:-1;53680:244:0;;;;;:::i;:::-;;:::i;50267:23::-;;;;;;;;;;-1:-1:-1;50267:23:0;;;;;;;;38989:214;;;;;;;;;;-1:-1:-1;38989:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;39160:25:0;;;39131:4;39160:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;38989:214;53932:426;;;;;;;;;;-1:-1:-1;53932:426:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;15692:238::-;;;;;;;;;;-1:-1:-1;15692:238:0;;;;;:::i;:::-;;:::i;54967:461::-;;;;;;;;;;-1:-1:-1;54967:461:0;;;;;:::i;:::-;;:::i;35489:355::-;35636:4;-1:-1:-1;;;;;;35678:40:0;;-1:-1:-1;;;35678:40:0;;:105;;-1:-1:-1;;;;;;;35735:48:0;;-1:-1:-1;;;35735:48:0;35678:105;:158;;;-1:-1:-1;;;;;;;;;;28220:40:0;;;35800:36;35658:178;35489:355;-1:-1:-1;;35489:355:0:o;36658:100::-;36712:13;36745:5;36738:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36658:100;:::o;38351:308::-;38472:7;41974:16;;;:7;:16;;;;;;-1:-1:-1;;;;;41974:16:0;38497:110;;;;-1:-1:-1;;;38497:110:0;;18669:2:1;38497:110:0;;;18651:21:1;18708:2;18688:18;;;18681:30;18747:34;18727:18;;;18720:62;-1:-1:-1;;;18798:18:1;;;18791:42;18850:19;;38497:110:0;;;;;;;;;-1:-1:-1;38627:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;38627:24:0;;38351:308::o;37874:411::-;37955:13;37971:23;37986:7;37971:14;:23::i;:::-;37955:39;;38019:5;-1:-1:-1;;;;;38013:11:0;:2;-1:-1:-1;;;;;38013:11:0;;;38005:57;;;;-1:-1:-1;;;38005:57:0;;20152:2:1;38005:57:0;;;20134:21:1;20191:2;20171:18;;;20164:30;20230:34;20210:18;;;20203:62;-1:-1:-1;;;20281:18:1;;;20274:31;20322:19;;38005:57:0;19950:397:1;38005:57:0;13566:10;-1:-1:-1;;;;;38097:21:0;;;;:62;;-1:-1:-1;38122:37:0;38139:5;13566:10;38989:214;:::i;38122:37::-;38075:168;;;;-1:-1:-1;;;38075:168:0;;16659:2:1;38075:168:0;;;16641:21:1;16698:2;16678:18;;;16671:30;16737:34;16717:18;;;16710:62;16808:26;16788:18;;;16781:54;16852:19;;38075:168:0;16457:420:1;38075:168:0;38256:21;38265:2;38269:7;38256:8;:21::i;:::-;37944:341;37874:411;;:::o;53069:97::-;53113:7;53140:13;;53156:2;53140:18;;;;:::i;:::-;53133:25;;53069:97;:::o;39270:376::-;39479:41;13566:10;39512:7;39479:18;:41::i;:::-;39457:140;;;;-1:-1:-1;;;39457:140:0;;;;;;;:::i;:::-;39610:28;39620:4;39626:2;39630:7;39610:9;:28::i;52009:564::-;50807:10;51031:17;51076:8;;;50793:55;;-1:-1:-1;50824:10:0;50838:9;50824:23;50793:55;50785:88;;;;-1:-1:-1;;;50785:88:0;;;;;;;:::i;:::-;52098:7:::1;::::0;::::1;::::0;::::1;;;52090:31;;;::::0;-1:-1:-1;;;52090:31:0;;14401:2:1;52090:31:0::1;::::0;::::1;14383:21:1::0;14440:2;14420:18;;;14413:30;-1:-1:-1;;;14459:18:1;;;14452:41;14510:18;;52090:31:0::1;14199:335:1::0;52090:31:0::1;52140:34;52158:9;52140:34;;;;;;;;;;;;;-1:-1:-1::0;;;52140:34:0::1;;::::0;:17:::1;:34::i;:::-;52132:69;;;::::0;-1:-1:-1;;;52132:69:0;;11758:2:1;52132:69:0::1;::::0;::::1;11740:21:1::0;11797:2;11777:18;;;11770:30;-1:-1:-1;;;11816:18:1;;;11809:52;11878:18;;52132:69:0::1;11556:346:1::0;52132:69:0::1;52234:10;52221:24;::::0;;;:12:::1;:24;::::0;;;;;::::1;;52220:25;52212:52;;;::::0;-1:-1:-1;;;52212:52:0;;12469:2:1;52212:52:0::1;::::0;::::1;12451:21:1::0;12508:2;12488:18;;;12481:30;-1:-1:-1;;;12527:18:1;;;12520:44;12581:18;;52212:52:0::1;12267:338:1::0;52212:52:0::1;52304:7;::::0;52283:13:::1;::::0;:17:::1;::::0;52299:1:::1;52283:17;:::i;:::-;:28;;52275:51;;;::::0;-1:-1:-1;;;52275:51:0;;20554:2:1;52275:51:0::1;::::0;::::1;20536:21:1::0;20593:2;20573:18;;;20566:30;-1:-1:-1;;;20612:18:1;;;20605:40;20662:18;;52275:51:0::1;20352:334:1::0;52275:51:0::1;52355:9;52345:6;;:19;;52337:48;;;::::0;-1:-1:-1;;;52337:48:0;;21311:2:1;52337:48:0::1;::::0;::::1;21293:21:1::0;21350:2;21330:18;;;21323:30;-1:-1:-1;;;21369:18:1;;;21362:46;21425:18;;52337:48:0::1;21109:340:1::0;52337:48:0::1;52418:13;::::0;;52398:34:::1;::::0;;;:19:::1;:34;::::0;;;;;;;52435:15:::1;52398:52:::0;;52474:10:::1;52461:24:::0;;:12:::1;:24:::0;;;;;:31;;-1:-1:-1;;52461:31:0::1;52488:4;52461:31;::::0;;52503:15;;;52418:13;52503:15:::1;::::0;::::1;:::i;:::-;;;;;;52529:36;52539:10;52551:13;;52529:9;:36::i;:::-;52009:564:::0;:::o;51437:::-;50807:10;51031:17;51076:8;;;50793:55;;-1:-1:-1;50824:10:0;50838:9;50824:23;50793:55;50785:88;;;;-1:-1:-1;;;50785:88:0;;;;;;;:::i;:::-;51526:7:::1;::::0;::::1;;51518:31;;;::::0;-1:-1:-1;;;51518:31:0;;14401:2:1;51518:31:0::1;::::0;::::1;14383:21:1::0;14440:2;14420:18;;;14413:30;-1:-1:-1;;;14459:18:1;;;14452:41;14510:18;;51518:31:0::1;14199:335:1::0;51518:31:0::1;51568:34;51586:9;51568:34;;;;;;;;;;;;;-1:-1:-1::0;;;51568:34:0::1;;::::0;:17:::1;:34::i;:::-;51560:69;;;::::0;-1:-1:-1;;;51560:69:0;;11758:2:1;51560:69:0::1;::::0;::::1;11740:21:1::0;11797:2;11777:18;;;11770:30;-1:-1:-1;;;11816:18:1;;;11809:52;11878:18;;51560:69:0::1;11556:346:1::0;51560:69:0::1;51662:10;51649:24;::::0;;;:12:::1;:24;::::0;;;;;::::1;;51648:25;51640:52;;;::::0;-1:-1:-1;;;51640:52:0;;12469:2:1;51640:52:0::1;::::0;::::1;12451:21:1::0;12508:2;12488:18;;;12481:30;-1:-1:-1;;;12527:18:1;;;12520:44;12581:18;;51640:52:0::1;12267:338:1::0;51640:52:0::1;51732:7;::::0;51711:13:::1;::::0;:17:::1;::::0;51727:1:::1;51711:17;:::i;:::-;:28;;51703:51;;;::::0;-1:-1:-1;;;51703:51:0;;20554:2:1;51703:51:0::1;::::0;::::1;20536:21:1::0;20593:2;20573:18;;;20566:30;-1:-1:-1;;;20612:18:1;;;20605:40;20662:18;;51703:51:0::1;20352:334:1::0;51703:51:0::1;51783:9;51773:6;;:19;;51765:48;;;::::0;-1:-1:-1;;;51765:48:0;;21311:2:1;51765:48:0::1;::::0;::::1;21293:21:1::0;21350:2;21330:18;;;21323:30;-1:-1:-1;;;21369:18:1;;;21362:46;21425:18;;51765:48:0::1;21109:340:1::0;51765:48:0::1;51846:13;::::0;;51826:34:::1;::::0;;;:19:::1;:34;::::0;;;;;;;51863:15:::1;51826:52:::0;;51902:10:::1;51889:24:::0;;:12:::1;:24:::0;;;;;:31;;-1:-1:-1;;51889:31:0::1;51916:4;51889:31;::::0;;51931:15;;;51846:13;51931:15:::1;::::0;::::1;:::i;52581:80::-:0;14856:6;;-1:-1:-1;;;;;14856:6:0;13566:10;15003:23;14995:68;;;;-1:-1:-1;;;14995:68:0;;;;;;;:::i;:::-;52646:7:::1;::::0;;-1:-1:-1;;52635:18:0;::::1;52646:7;::::0;;::::1;52645:8;52635:18;::::0;;52581:80::o;52753:89::-;14856:6;;-1:-1:-1;;;;;14856:6:0;13566:10;15003:23;14995:68;;;;-1:-1:-1;;;14995:68:0;;;;;;;:::i;:::-;52823:11:::1;::::0;;-1:-1:-1;;52808:26:0;::::1;52823:11;::::0;;::::1;52822:12;52808:26;::::0;;52753:89::o;49747:113::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53174:498::-;14856:6;;-1:-1:-1;;;;;14856:6:0;13566:10;15003:23;14995:68;;;;-1:-1:-1;;;14995:68:0;;;;;;;:::i;:::-;53249:21:::1;53289:42;53281:89;53366:3;53343:19;53249:21:::0;53360:2:::1;53343:19;:::i;:::-;53342:27;;;;:::i;:::-;53281:89;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;53389:42:0::1;53381:89;53466:3;53443:19;:14:::0;53460:2:::1;53443:19;:::i;:::-;53442:27;;;;:::i;:::-;53381:89;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;53489:42:0::1;53481:89;53566:3;53543:19;:14:::0;53560:2:::1;53543:19;:::i;:::-;53542:27;;;;:::i;:::-;53481:89;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;53581:83:0::1;::::0;53589:42:::1;::::0;53642:21:::1;53581:83:::0;::::1;;;::::0;::::1;::::0;;;53642:21;53589:42;53581:83;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;53213:459;53174:498::o:0;39717:185::-;39855:39;39872:4;39878:2;39882:7;39855:39;;;;;;;;;;;;:16;:39::i;52850:106::-;14856:6;;-1:-1:-1;;;;;14856:6:0;13566:10;15003:23;14995:68;;;;-1:-1:-1;;;14995:68:0;;;;;;;:::i;:::-;52925:23:::1;:13;52941:7:::0;;52925:23:::1;:::i;52669:76::-:0;14856:6;;-1:-1:-1;;;;;14856:6:0;13566:10;15003:23;14995:68;;;;-1:-1:-1;;;14995:68:0;;;;;;;:::i;:::-;52730:7:::1;::::0;;-1:-1:-1;;52719:18:0;::::1;52730:7;::::0;;;::::1;;;52729:8;52719:18:::0;;::::1;;::::0;;52669:76::o;36265:326::-;36382:7;36423:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36423:16:0;36472:19;36450:110;;;;-1:-1:-1;;;36450:110:0;;17495:2:1;36450:110:0;;;17477:21:1;17534:2;17514:18;;;17507:30;17573:34;17553:18;;;17546:62;-1:-1:-1;;;17624:18:1;;;17617:39;17673:19;;36450:110:0;17293:405:1;52964:97:0;14856:6;;-1:-1:-1;;;;;14856:6:0;13566:10;15003:23;14995:68;;;;-1:-1:-1;;;14995:68:0;;;;;;;:::i;:::-;53033:7:::1;:20:::0;;-1:-1:-1;;;;;53033:20:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;53033:20:0;;::::1;::::0;;;::::1;::::0;;52964:97::o;55436:94::-;14856:6;;-1:-1:-1;;;;;14856:6:0;13566:10;15003:23;14995:68;;;;-1:-1:-1;;;14995:68:0;;;;;;;:::i;:::-;55504:11:::1;:18:::0;55436:94::o;35908:295::-;36025:7;-1:-1:-1;;;;;36072:19:0;;36050:111;;;;-1:-1:-1;;;36050:111:0;;17084:2:1;36050:111:0;;;17066:21:1;17123:2;17103:18;;;17096:30;17162:34;17142:18;;;17135:62;-1:-1:-1;;;17213:18:1;;;17206:40;17263:19;;36050:111:0;16882:406:1;36050:111:0;-1:-1:-1;;;;;;36179:16:0;;;;;:9;:16;;;;;;;35908:295::o;15434:103::-;14856:6;;-1:-1:-1;;;;;14856:6:0;13566:10;15003:23;14995:68;;;;-1:-1:-1;;;14995:68:0;;;;;;;:::i;:::-;15499:30:::1;15526:1;15499:18;:30::i;:::-;15434:103::o:0;36827:104::-;36883:13;36916:7;36909:14;;;;;:::i;55538:134::-;14856:6;;-1:-1:-1;;;;;14856:6:0;13566:10;15003:23;14995:68;;;;-1:-1:-1;;;14995:68:0;;;;;;;:::i;:::-;55621:15:::1;:43:::0;;-1:-1:-1;;;;;55621:43:0;;::::1;;;-1:-1:-1::0;;;;;;55621:43:0;;::::1;::::0;;;::::1;::::0;;55538:134::o;38731:187::-;38858:52;13566:10;38891:8;38901;38858:18;:52::i;54382:577::-;50807:10;51031:17;51076:8;;;50793:55;;-1:-1:-1;50824:10:0;50838:9;50824:23;50793:55;50785:88;;;;-1:-1:-1;;;50785:88:0;;;;;;;:::i;:::-;54478:11:::1;::::0;::::1;;54470:38;;;::::0;-1:-1:-1;;;54470:38:0;;16316:2:1;54470:38:0::1;::::0;::::1;16298:21:1::0;16355:2;16335:18;;;16328:30;-1:-1:-1;;;16374:18:1;;;16367:44;16428:18;;54470:38:0::1;16114:338:1::0;54470:38:0::1;54519:20;::::0;54552:343:::1;54576:23:::0;;::::1;54552:343;;;54662:10;54629:4;:12;54642:8:::0;;54651:5;54642:15;;::::1;;;;;:::i;:::-;;;;;;;54629:29;;;;;;;;;;;;;21600:25:1::0;;21588:2;21573:18;;21454:177;54629:29:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;54629:43:0::1;;54625:259;;;54757:19;:36;54777:8;;54786:5;54777:15;;;;;;;:::i;:::-;;;;;;;54757:36;;;;;;;;;;;;54738:15;:56;;;;:::i;:::-;54723:11;;:72;;;;:::i;:::-;54708:87;::::0;:12;:87:::1;:::i;:::-;54693:102;;54853:15;54814:19;:36;54834:8;;54843:5;54834:15;;;;;;;:::i;:::-;;;;;;;54814:36;;;;;;;;;;;:54;;;;54625:259;54601:7:::0;::::1;::::0;::::1;:::i;:::-;;;;54552:343;;;-1:-1:-1::0;54905:15:0::1;::::0;:46:::1;::::0;-1:-1:-1;;;54905:46:0;;54926:10:::1;54905:46;::::0;::::1;9417:51:1::0;9484:18;;;9477:34;;;54905:15:0::1;::::0;;::::1;-1:-1:-1::0;;;;;54905:15:0::1;::::0;:20:::1;::::0;9390:18:1;;54905:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;54459:500;54382:577:::0;;:::o;39973:365::-;40162:41;13566:10;40195:7;40162:18;:41::i;:::-;40140:140;;;;-1:-1:-1;;;40140:140:0;;;;;;;:::i;:::-;40291:39;40305:4;40311:2;40315:7;40324:5;40291:13;:39::i;:::-;39973:365;;;;:::o;53680:244::-;41950:4;41974:16;;;:7;:16;;;;;;53753:13;;-1:-1:-1;;;;;41974:16:0;53779:60;;;;-1:-1:-1;;;53779:60:0;;19792:2:1;53779:60:0;;;19774:21:1;19831:2;19811:18;;;19804:30;19870:33;19850:18;;;19843:61;19921:18;;53779:60:0;19590:355:1;53779:60:0;53881:13;53896:18;:7;:16;:18::i;:::-;53864:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53850:66;;53680:244;;;:::o;53932:426::-;54064:21;;-1:-1:-1;;;54064:21:0;;-1:-1:-1;;;;;8706:32:1;;54064:21:0;;;8688:51:1;53991:16:0;;54020:27;;54064:4;;:14;;8661:18:1;;54064:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54050:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54050:36:0;-1:-1:-1;54020:66:0;-1:-1:-1;54097:20:0;54149:1;54128:195;54161:13;;54152:5;:22;54128:195;;54204:19;;-1:-1:-1;;;54204:19:0;;;;;21600:25:1;;;-1:-1:-1;;;;;54204:28:0;;;:4;;:12;;21573:18:1;;54204:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;54204:28:0;;54200:112;;;54290:5;54253:10;54264:14;;;;:::i;:::-;;;54253:26;;;;;;;;:::i;:::-;;;;;;:43;;;;;54200:112;54176:7;;;;:::i;:::-;;;;54128:195;;;-1:-1:-1;54340:10:0;;53932:426;-1:-1:-1;;;53932:426:0:o;15692:238::-;14856:6;;-1:-1:-1;;;;;14856:6:0;13566:10;15003:23;14995:68;;;;-1:-1:-1;;;14995:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15795:22:0;::::1;15773:110;;;::::0;-1:-1:-1;;;15773:110:0;;13231:2:1;15773:110:0::1;::::0;::::1;13213:21:1::0;13270:2;13250:18;;;13243:30;13309:34;13289:18;;;13282:62;-1:-1:-1;;;13360:18:1;;;13353:36;13406:19;;15773:110:0::1;13029:402:1::0;15773:110:0::1;15894:28;15913:8;15894:18;:28::i;54967:461::-:0;55049:7;;;55104:287;55128:23;;;55104:287;;;55238:1;55199:19;:36;55219:8;;55228:5;55219:15;;;;;;;:::i;:::-;;;;;;;55199:36;;;;;;;;;;;;55181:15;:54;;;;:::i;:::-;:58;55177:203;;;55325:19;:36;55345:8;;55354:5;55345:15;;;;;;;:::i;:::-;;;;;;;55325:36;;;;;;;;;;;;55306:15;:56;;;;:::i;:::-;55291:11;;:72;;;;:::i;:::-;55275:89;;:12;:89;:::i;:::-;55260:104;;55177:203;55153:7;;;;:::i;:::-;;;;55104:287;;;-1:-1:-1;55408:12:0;54967:461;-1:-1:-1;;;54967:461:0:o;17519:326::-;-1:-1:-1;;;;;17814:19:0;;:23;;;17519:326::o;46172:174::-;46247:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;46247:29:0;-1:-1:-1;;;;;46247:29:0;;;;;;;;:24;;46301:23;46247:24;46301:14;:23::i;:::-;-1:-1:-1;;;;;46292:46:0;;;;;;;;;;;46172:174;;:::o;42179:452::-;42308:4;41974:16;;;:7;:16;;;;;;-1:-1:-1;;;;;41974:16:0;42330:110;;;;-1:-1:-1;;;42330:110:0;;15903:2:1;42330:110:0;;;15885:21:1;15942:2;15922:18;;;15915:30;15981:34;15961:18;;;15954:62;-1:-1:-1;;;16032:18:1;;;16025:42;16084:19;;42330:110:0;15701:408:1;42330:110:0;42451:13;42467:23;42482:7;42467:14;:23::i;:::-;42451:39;;42520:5;-1:-1:-1;;;;;42509:16:0;:7;-1:-1:-1;;;;;42509:16:0;;:64;;;;42566:7;-1:-1:-1;;;;;42542:31:0;:20;42554:7;42542:11;:20::i;:::-;-1:-1:-1;;;;;42542:31:0;;42509:64;:113;;;-1:-1:-1;;;;;;39160:25:0;;;39131:4;39160:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;42590:32;42501:122;42179:452;-1:-1:-1;;;;42179:452:0:o;45392:662::-;45565:4;-1:-1:-1;;;;;45538:31:0;:23;45553:7;45538:14;:23::i;:::-;-1:-1:-1;;;;;45538:31:0;;45516:118;;;;-1:-1:-1;;;45516:118:0;;13638:2:1;45516:118:0;;;13620:21:1;13677:2;13657:18;;;13650:30;13716:34;13696:18;;;13689:62;-1:-1:-1;;;13767:18:1;;;13760:35;13812:19;;45516:118:0;13436:401:1;45516:118:0;-1:-1:-1;;;;;45653:16:0;;45645:65;;;;-1:-1:-1;;;45645:65:0;;14741:2:1;45645:65:0;;;14723:21:1;14780:2;14760:18;;;14753:30;14819:34;14799:18;;;14792:62;-1:-1:-1;;;14870:18:1;;;14863:34;14914:19;;45645:65:0;14539:400:1;45645:65:0;45827:29;45844:1;45848:7;45827:8;:29::i;:::-;-1:-1:-1;;;;;45869:15:0;;;;;;:9;:15;;;;;:20;;45888:1;;45869:15;:20;;45888:1;;45869:20;:::i;:::-;;;;-1:-1:-1;;;;;;;45900:13:0;;;;;;:9;:13;;;;;:18;;45917:1;;45900:13;:18;;45917:1;;45900:18;:::i;:::-;;;;-1:-1:-1;;45929:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;45929:21:0;-1:-1:-1;;;;;45929:21:0;;;;;;;;;45968:27;;45929:16;;45968:27;;;;;;;37944:341;37874:411;;:::o;51100:329::-;51205:4;51222:12;51327:10;51339:8;;;;;;;;;;;;;-1:-1:-1;;;51339:8:0;;;51349:16;51310:56;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;51310:56:0;;;;;;;;;;51300:67;;51310:56;51300:67;;;;8399:66:1;51247:121:0;;;8387:79:1;;;;8482:12;;;8475:28;8519:12;;51247:121:0;;;-1:-1:-1;;51247:121:0;;;;;;;;;51237:132;;51247:121;51237:132;;;;;-1:-1:-1;51398:23:0;51237:132;51411:9;51398:12;:23::i;:::-;51387:7;;;;;-1:-1:-1;;;;;51387:7:0;;;:34;;;;-1:-1:-1;;51100:329:0;;;;:::o;42973:110::-;43049:26;43059:2;43063:7;43049:26;;;;;;;;;;;;:9;:26::i;16090:191::-;16183:6;;;-1:-1:-1;;;;;16200:17:0;;;-1:-1:-1;;;;;;16200:17:0;;;;;;;16233:40;;16183:6;;;16200:17;16183:6;;16233:40;;16164:16;;16233:40;16153:128;16090:191;:::o;46488:315::-;46643:8;-1:-1:-1;;;;;46634:17:0;:5;-1:-1:-1;;;;;46634:17:0;;;46626:55;;;;-1:-1:-1;;;46626:55:0;;15146:2:1;46626:55:0;;;15128:21:1;15185:2;15165:18;;;15158:30;15224:27;15204:18;;;15197:55;15269:18;;46626:55:0;14944:349:1;46626:55:0;-1:-1:-1;;;;;46692:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;46692:46:0;;;;;;;;;;46754:41;;10299::1;;;46754::0;;10272:18:1;46754:41:0;;;;;;;46488:315;;;:::o;41220:352::-;41377:28;41387:4;41393:2;41397:7;41377:9;:28::i;:::-;41438:48;41461:4;41467:2;41471:7;41480:5;41438:22;:48::i;:::-;41416:148;;;;-1:-1:-1;;;41416:148:0;;;;;;;:::i;1029:723::-;1085:13;1306:10;1302:53;;-1:-1:-1;;1333:10:0;;;;;;;;;;;;-1:-1:-1;;;1333:10:0;;;;;1029:723::o;1302:53::-;1380:5;1365:12;1421:78;1428:9;;1421:78;;1454:8;;;;:::i;:::-;;-1:-1:-1;1477:10:0;;-1:-1:-1;1485:2:0;1477:10;;:::i;:::-;;;1421:78;;;1509:19;1541:6;1531:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1531:17:0;;1509:39;;1559:154;1566:10;;1559:154;;1593:11;1603:1;1593:11;;:::i;:::-;;-1:-1:-1;1662:10:0;1670:2;1662:5;:10;:::i;:::-;1649:24;;:2;:24;:::i;:::-;1636:39;;1619:6;1626;1619:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1619:56:0;;;;;;;;-1:-1:-1;1690:11:0;1699:2;1690:11;;:::i;:::-;;;1559:154;;7265:263;7370:7;7396:17;7415:18;7437:27;7448:4;7454:9;7437:10;:27::i;:::-;7395:69;;;;7475:18;7487:5;7475:11;:18::i;43310:321::-;43440:18;43446:2;43450:7;43440:5;:18::i;:::-;43491:54;43522:1;43526:2;43530:7;43539:5;43491:22;:54::i;:::-;43469:154;;;;-1:-1:-1;;;43469:154:0;;;;;;;:::i;47368:980::-;47523:4;-1:-1:-1;;;;;47544:13:0;;17814:19;:23;47540:801;;47597:175;;-1:-1:-1;;;47597:175:0;;-1:-1:-1;;;;;47597:36:0;;;;;:175;;13566:10;;47691:4;;47718:7;;47748:5;;47597:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47597:175:0;;;;;;;;-1:-1:-1;;47597:175:0;;;;;;;;;;;;:::i;:::-;;;47576:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47955:13:0;;47951:320;;47998:108;;-1:-1:-1;;;47998:108:0;;;;;;;:::i;47951:320::-;48221:6;48215:13;48206:6;48202:2;48198:15;48191:38;47576:710;-1:-1:-1;;;;;;47836:51:0;-1:-1:-1;;;47836:51:0;;-1:-1:-1;47829:58:0;;47540:801;-1:-1:-1;48325:4:0;47368:980;;;;;;:::o;5123:1340::-;5231:7;5240:12;5470:9;:16;5490:2;5470:22;5466:990;;;5766:4;5751:20;;5745:27;5816:4;5801:20;;5795:27;5874:4;5859:20;;5853:27;5509:9;5845:36;5917:25;5928:4;5845:36;5745:27;5795;5917:10;:25::i;:::-;5910:32;;;;;;;;;5466:990;5964:9;:16;5984:2;5964:22;5960:496;;;6239:4;6224:20;;6218:27;6290:4;6275:20;;6269:27;6332:23;6343:4;6218:27;6269;6332:10;:23::i;:::-;6325:30;;;;;;;;5960:496;-1:-1:-1;6404:1:0;;-1:-1:-1;6408:35:0;5960:496;5123:1340;;;;;:::o;3394:643::-;3472:20;3463:5;:29;;;;;;;;:::i;:::-;;3459:571;;;3394:643;:::o;3459:571::-;3570:29;3561:5;:38;;;;;;;;:::i;:::-;;3557:473;;;3616:34;;-1:-1:-1;;;3616:34:0;;11405:2:1;3616:34:0;;;11387:21:1;11444:2;11424:18;;;11417:30;11483:26;11463:18;;;11456:54;11527:18;;3616:34:0;11203:348:1;3557:473:0;3681:35;3672:5;:44;;;;;;;;:::i;:::-;;3668:362;;;3733:41;;-1:-1:-1;;;3733:41:0;;12109:2:1;3733:41:0;;;12091:21:1;12148:2;12128:18;;;12121:30;12187:33;12167:18;;;12160:61;12238:18;;3733:41:0;11907:355:1;3668:362:0;3805:30;3796:5;:39;;;;;;;;:::i;:::-;;3792:238;;;3852:44;;-1:-1:-1;;;3852:44:0;;15500:2:1;3852:44:0;;;15482:21:1;15539:2;15519:18;;;15512:30;15578:34;15558:18;;;15551:62;-1:-1:-1;;;15629:18:1;;;15622:32;15671:19;;3852:44:0;15298:398:1;3792:238:0;3927:30;3918:5;:39;;;;;;;;:::i;:::-;;3914:116;;;3974:44;;-1:-1:-1;;;3974:44:0;;17905:2:1;3974:44:0;;;17887:21:1;17944:2;17924:18;;;17917:30;17983:34;17963:18;;;17956:62;-1:-1:-1;;;18034:18:1;;;18027:32;18076:19;;3974:44:0;17703:398:1;43967:439:0;-1:-1:-1;;;;;44047:16:0;;44039:61;;;;-1:-1:-1;;;44039:61:0;;18308:2:1;44039:61:0;;;18290:21:1;;;18327:18;;;18320:30;18386:34;18366:18;;;18359:62;18438:18;;44039:61:0;18106:356:1;44039:61:0;41950:4;41974:16;;;:7;:16;;;;;;-1:-1:-1;;;;;41974:16:0;:30;44111:58;;;;-1:-1:-1;;;44111:58:0;;14044:2:1;44111:58:0;;;14026:21:1;14083:2;14063:18;;;14056:30;14122;14102:18;;;14095:58;14170:18;;44111:58:0;13842:352:1;44111:58:0;-1:-1:-1;;;;;44240:13:0;;;;;;:9;:13;;;;;:18;;44257:1;;44240:13;:18;;44257:1;;44240:18;:::i;:::-;;;;-1:-1:-1;;44269:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;44269:21:0;-1:-1:-1;;;;;44269:21:0;;;;;;;;44308:33;;44269:16;;;44308:33;;44269:16;;44308:33;53581:83:::1;53213:459;53174:498::o:0;8794:1669::-;8925:7;;9886:66;9860:92;;9842:200;;;-1:-1:-1;9995:1:0;;-1:-1:-1;9999:30:0;9979:51;;9842:200;10056:1;:7;;10061:2;10056:7;;:18;;;;;10067:1;:7;;10072:2;10067:7;;10056:18;10052:102;;;-1:-1:-1;10107:1:0;;-1:-1:-1;10111:30:0;10091:51;;10052:102;10268:24;;;10251:14;10268:24;;;;;;;;;10578:25:1;;;10651:4;10639:17;;10619:18;;;10612:45;;;;10673:18;;;10666:34;;;10716:18;;;10709:34;;;10268:24:0;;10550:19:1;;10268:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;10268:24:0;;-1:-1:-1;;10268:24:0;;;-1:-1:-1;;;;;;;10307:20:0;;10303:103;;10360:1;10364:29;10344:50;;;;;;;10303:103;10426:6;-1:-1:-1;10434:20:0;;-1:-1:-1;8794:1669:0;;;;;;;;:::o;7791:389::-;7905:7;;-1:-1:-1;;;;;7951:125:0;;7905:7;8103:25;8119:3;8104:18;;;8126:2;8103:25;:::i;:::-;8087:42;;8147:25;8158:4;8164:1;8167;8170;8147:10;:25::i;:::-;8140:32;;;;;;7791:389;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:718:1;56:5;109:3;102:4;94:6;90:17;86:27;76:55;;127:1;124;117:12;76:55;163:6;150:20;189:18;226:2;222;219:10;216:36;;;232:18;;:::i;:::-;307:2;301:9;275:2;361:13;;-1:-1:-1;;357:22:1;;;381:2;353:31;349:40;337:53;;;405:18;;;425:22;;;402:46;399:72;;;451:18;;:::i;:::-;491:10;487:2;480:22;526:2;518:6;511:18;572:3;565:4;560:2;552:6;548:15;544:26;541:35;538:55;;;589:1;586;579:12;538:55;653:2;646:4;638:6;634:17;627:4;619:6;615:17;602:54;700:1;693:4;688:2;680:6;676:15;672:26;665:37;720:6;711:15;;;;;;14:718;;;;:::o;737:247::-;796:6;849:2;837:9;828:7;824:23;820:32;817:52;;;865:1;862;855:12;817:52;904:9;891:23;923:31;948:5;923:31;:::i;:::-;973:5;737:247;-1:-1:-1;;;737:247:1:o;989:251::-;1059:6;1112:2;1100:9;1091:7;1087:23;1083:32;1080:52;;;1128:1;1125;1118:12;1080:52;1160:9;1154:16;1179:31;1204:5;1179:31;:::i;1245:388::-;1313:6;1321;1374:2;1362:9;1353:7;1349:23;1345:32;1342:52;;;1390:1;1387;1380:12;1342:52;1429:9;1416:23;1448:31;1473:5;1448:31;:::i;:::-;1498:5;-1:-1:-1;1555:2:1;1540:18;;1527:32;1568:33;1527:32;1568:33;:::i;:::-;1620:7;1610:17;;;1245:388;;;;;:::o;1638:456::-;1715:6;1723;1731;1784:2;1772:9;1763:7;1759:23;1755:32;1752:52;;;1800:1;1797;1790:12;1752:52;1839:9;1826:23;1858:31;1883:5;1858:31;:::i;:::-;1908:5;-1:-1:-1;1965:2:1;1950:18;;1937:32;1978:33;1937:32;1978:33;:::i;:::-;1638:456;;2030:7;;-1:-1:-1;;;2084:2:1;2069:18;;;;2056:32;;1638:456::o;2099:665::-;2194:6;2202;2210;2218;2271:3;2259:9;2250:7;2246:23;2242:33;2239:53;;;2288:1;2285;2278:12;2239:53;2327:9;2314:23;2346:31;2371:5;2346:31;:::i;:::-;2396:5;-1:-1:-1;2453:2:1;2438:18;;2425:32;2466:33;2425:32;2466:33;:::i;:::-;2518:7;-1:-1:-1;2572:2:1;2557:18;;2544:32;;-1:-1:-1;2627:2:1;2612:18;;2599:32;2654:18;2643:30;;2640:50;;;2686:1;2683;2676:12;2640:50;2709:49;2750:7;2741:6;2730:9;2726:22;2709:49;:::i;:::-;2699:59;;;2099:665;;;;;;;:::o;2769:416::-;2834:6;2842;2895:2;2883:9;2874:7;2870:23;2866:32;2863:52;;;2911:1;2908;2901:12;2863:52;2950:9;2937:23;2969:31;2994:5;2969:31;:::i;:::-;3019:5;-1:-1:-1;3076:2:1;3061:18;;3048:32;3118:15;;3111:23;3099:36;;3089:64;;3149:1;3146;3139:12;3190:315;3258:6;3266;3319:2;3307:9;3298:7;3294:23;3290:32;3287:52;;;3335:1;3332;3325:12;3287:52;3374:9;3361:23;3393:31;3418:5;3393:31;:::i;:::-;3443:5;3495:2;3480:18;;;;3467:32;;-1:-1:-1;;;3190:315:1:o;3510:615::-;3596:6;3604;3657:2;3645:9;3636:7;3632:23;3628:32;3625:52;;;3673:1;3670;3663:12;3625:52;3713:9;3700:23;3742:18;3783:2;3775:6;3772:14;3769:34;;;3799:1;3796;3789:12;3769:34;3837:6;3826:9;3822:22;3812:32;;3882:7;3875:4;3871:2;3867:13;3863:27;3853:55;;3904:1;3901;3894:12;3853:55;3944:2;3931:16;3970:2;3962:6;3959:14;3956:34;;;3986:1;3983;3976:12;3956:34;4039:7;4034:2;4024:6;4021:1;4017:14;4013:2;4009:23;4005:32;4002:45;3999:65;;;4060:1;4057;4050:12;3999:65;4091:2;4083:11;;;;;4113:6;;-1:-1:-1;3510:615:1;;-1:-1:-1;;;;3510:615:1:o;4130:245::-;4188:6;4241:2;4229:9;4220:7;4216:23;4212:32;4209:52;;;4257:1;4254;4247:12;4209:52;4296:9;4283:23;4315:30;4339:5;4315:30;:::i;4380:249::-;4449:6;4502:2;4490:9;4481:7;4477:23;4473:32;4470:52;;;4518:1;4515;4508:12;4470:52;4550:9;4544:16;4569:30;4593:5;4569:30;:::i;4634:320::-;4702:6;4755:2;4743:9;4734:7;4730:23;4726:32;4723:52;;;4771:1;4768;4761:12;4723:52;4811:9;4798:23;4844:18;4836:6;4833:30;4830:50;;;4876:1;4873;4866:12;4830:50;4899:49;4940:7;4931:6;4920:9;4916:22;4899:49;:::i;4959:592::-;5030:6;5038;5091:2;5079:9;5070:7;5066:23;5062:32;5059:52;;;5107:1;5104;5097:12;5059:52;5147:9;5134:23;5176:18;5217:2;5209:6;5206:14;5203:34;;;5233:1;5230;5223:12;5203:34;5271:6;5260:9;5256:22;5246:32;;5316:7;5309:4;5305:2;5301:13;5297:27;5287:55;;5338:1;5335;5328:12;5287:55;5378:2;5365:16;5404:2;5396:6;5393:14;5390:34;;;5420:1;5417;5410:12;5390:34;5465:7;5460:2;5451:6;5447:2;5443:15;5439:24;5436:37;5433:57;;;5486:1;5483;5476:12;5556:180;5615:6;5668:2;5656:9;5647:7;5643:23;5639:32;5636:52;;;5684:1;5681;5674:12;5636:52;-1:-1:-1;5707:23:1;;5556:180;-1:-1:-1;5556:180:1:o;5741:184::-;5811:6;5864:2;5852:9;5843:7;5839:23;5835:32;5832:52;;;5880:1;5877;5870:12;5832:52;-1:-1:-1;5903:16:1;;5741:184;-1:-1:-1;5741:184:1:o;5930:257::-;5971:3;6009:5;6003:12;6036:6;6031:3;6024:19;6052:63;6108:6;6101:4;6096:3;6092:14;6085:4;6078:5;6074:16;6052:63;:::i;:::-;6169:2;6148:15;-1:-1:-1;;6144:29:1;6135:39;;;;6176:4;6131:50;;5930:257;-1:-1:-1;;5930:257:1:o;6192:185::-;6234:3;6272:5;6266:12;6287:52;6332:6;6327:3;6320:4;6313:5;6309:16;6287:52;:::i;:::-;6355:16;;;;;6192:185;-1:-1:-1;;6192:185:1:o;6382:591::-;6644:26;6640:31;6631:6;6627:2;6623:15;6619:53;6614:3;6607:66;6589:3;6702:6;6696:13;6718:62;6773:6;6768:2;6763:3;6759:12;6752:4;6744:6;6740:17;6718:62;:::i;:::-;6840:13;;6799:16;;;;6862:63;6840:13;6911:2;6903:11;;6896:4;6884:17;;6862:63;:::i;:::-;6945:17;6964:2;6941:26;;6382:591;-1:-1:-1;;;;;6382:591:1:o;6978:1174::-;7154:3;7183:1;7216:6;7210:13;7246:3;7268:1;7296:9;7292:2;7288:18;7278:28;;7356:2;7345:9;7341:18;7378;7368:61;;7422:4;7414:6;7410:17;7400:27;;7368:61;7448:2;7496;7488:6;7485:14;7465:18;7462:38;7459:165;;;-1:-1:-1;;;7523:33:1;;7579:4;7576:1;7569:15;7609:4;7530:3;7597:17;7459:165;7640:18;7667:104;;;;7785:1;7780:320;;;;7633:467;;7667:104;-1:-1:-1;;7700:24:1;;7688:37;;7745:16;;;;-1:-1:-1;7667:104:1;;7780:320;21709:1;21702:14;;;21746:4;21733:18;;7875:1;7889:165;7903:6;7900:1;7897:13;7889:165;;;7981:14;;7968:11;;;7961:35;8024:16;;;;7918:10;;7889:165;;;7893:3;;8083:6;8078:3;8074:16;8067:23;;7633:467;;;;;;;8116:30;8142:3;8134:6;8116:30;:::i;:::-;8109:37;6978:1174;-1:-1:-1;;;;;6978:1174:1:o;8750:488::-;-1:-1:-1;;;;;9019:15:1;;;9001:34;;9071:15;;9066:2;9051:18;;9044:43;9118:2;9103:18;;9096:34;;;9166:3;9161:2;9146:18;;9139:31;;;8944:4;;9187:45;;9212:19;;9204:6;9187:45;:::i;:::-;9179:53;8750:488;-1:-1:-1;;;;;;8750:488:1:o;9522:632::-;9693:2;9745:21;;;9815:13;;9718:18;;;9837:22;;;9664:4;;9693:2;9916:15;;;;9890:2;9875:18;;;9664:4;9959:169;9973:6;9970:1;9967:13;9959:169;;;10034:13;;10022:26;;10103:15;;;;10068:12;;;;9995:1;9988:9;9959:169;;;-1:-1:-1;10145:3:1;;9522:632;-1:-1:-1;;;;;;9522:632:1:o;10979:219::-;11128:2;11117:9;11110:21;11091:4;11148:44;11188:2;11177:9;11173:18;11165:6;11148:44;:::i;12610:414::-;12812:2;12794:21;;;12851:2;12831:18;;;12824:30;12890:34;12885:2;12870:18;;12863:62;-1:-1:-1;;;12956:2:1;12941:18;;12934:48;13014:3;12999:19;;12610:414::o;18880:356::-;19082:2;19064:21;;;19101:18;;;19094:30;19160:34;19155:2;19140:18;;19133:62;19227:2;19212:18;;18880:356::o;19241:344::-;19443:2;19425:21;;;19482:2;19462:18;;;19455:30;-1:-1:-1;;;19516:2:1;19501:18;;19494:50;19576:2;19561:18;;19241:344::o;20691:413::-;20893:2;20875:21;;;20932:2;20912:18;;;20905:30;20971:34;20966:2;20951:18;;20944:62;-1:-1:-1;;;21037:2:1;21022:18;;21015:47;21094:3;21079:19;;20691:413::o;21762:128::-;21802:3;21833:1;21829:6;21826:1;21823:13;21820:39;;;21839:18;;:::i;:::-;-1:-1:-1;21875:9:1;;21762:128::o;21895:120::-;21935:1;21961;21951:35;;21966:18;;:::i;:::-;-1:-1:-1;22000:9:1;;21895:120::o;22020:168::-;22060:7;22126:1;22122;22118:6;22114:14;22111:1;22108:21;22103:1;22096:9;22089:17;22085:45;22082:71;;;22133:18;;:::i;:::-;-1:-1:-1;22173:9:1;;22020:168::o;22193:125::-;22233:4;22261:1;22258;22255:8;22252:34;;;22266:18;;:::i;:::-;-1:-1:-1;22303:9:1;;22193:125::o;22323:258::-;22395:1;22405:113;22419:6;22416:1;22413:13;22405:113;;;22495:11;;;22489:18;22476:11;;;22469:39;22441:2;22434:10;22405:113;;;22536:6;22533:1;22530:13;22527:48;;;-1:-1:-1;;22571:1:1;22553:16;;22546:27;22323:258::o;22586:380::-;22665:1;22661:12;;;;22708;;;22729:61;;22783:4;22775:6;22771:17;22761:27;;22729:61;22836:2;22828:6;22825:14;22805:18;22802:38;22799:161;;;22882:10;22877:3;22873:20;22870:1;22863:31;22917:4;22914:1;22907:15;22945:4;22942:1;22935:15;22799:161;;22586:380;;;:::o;22971:135::-;23010:3;-1:-1:-1;;23031:17:1;;23028:43;;;23051:18;;:::i;:::-;-1:-1:-1;23098:1:1;23087:13;;22971:135::o;23111:112::-;23143:1;23169;23159:35;;23174:18;;:::i;:::-;-1:-1:-1;23208:9:1;;23111:112::o;23228:127::-;23289:10;23284:3;23280:20;23277:1;23270:31;23320:4;23317:1;23310:15;23344:4;23341:1;23334:15;23360:127;23421:10;23416:3;23412:20;23409:1;23402:31;23452:4;23449:1;23442:15;23476:4;23473:1;23466:15;23492:127;23553:10;23548:3;23544:20;23541:1;23534:31;23584:4;23581:1;23574:15;23608:4;23605:1;23598:15;23624:127;23685:10;23680:3;23676:20;23673:1;23666:31;23716:4;23713:1;23706:15;23740:4;23737:1;23730:15;23756:127;23817:10;23812:3;23808:20;23805:1;23798:31;23848:4;23845:1;23838:15;23872:4;23869:1;23862:15;23888:131;-1:-1:-1;;;;;23963:31:1;;23953:42;;23943:70;;24009:1;24006;23999:12;24024:131;-1:-1:-1;;;;;;24098:32:1;;24088:43;;24078:71;;24145:1;24142;24135:12

Swarm Source

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