ETH Price: $2,565.05 (-2.90%)

Contract

0x90CbE4BDd538D6e9b379bFF5fE72c3d67A521De5

Overview

ETH Balance

0.836453488635317852 ETH

ETH Value

$2,145.55 (@ $2,565.05/ETH)

Token Holdings

More Info

Private Name Tags

Age:1H
Amount:Between 1-1M
Reset Filter

Transaction Hash
Method
Block
From
To

There are no matching entries

> 10 Internal Transactions and > 10 Token Transfers found.

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To
1371238922025-06-13 20:29:212 hrs ago1749846561
0x90CbE4BD...67A521De5
0.000009264790141 ETH
1371214192025-06-13 19:06:553 hrs ago1749841615
0x90CbE4BD...67A521De5
0.00000011176032 ETH
1371177262025-06-13 17:03:495 hrs ago1749834229
0x90CbE4BD...67A521De5
0.000015 ETH
1371168242025-06-13 16:33:456 hrs ago1749832425
0x90CbE4BD...67A521De5
0.0000231 ETH
1371167602025-06-13 16:31:376 hrs ago1749832297
0x90CbE4BD...67A521De5
0.000018 ETH
1371166862025-06-13 16:29:096 hrs ago1749832149
0x90CbE4BD...67A521De5
0.0000666 ETH
1371165512025-06-13 16:24:396 hrs ago1749831879
0x90CbE4BD...67A521De5
0.0000225 ETH
1371162112025-06-13 16:13:196 hrs ago1749831199
0x90CbE4BD...67A521De5
0.000018 ETH
1371161742025-06-13 16:12:056 hrs ago1749831125
0x90CbE4BD...67A521De5
0.000015 ETH
1371161682025-06-13 16:11:536 hrs ago1749831113
0x90CbE4BD...67A521De5
0.0000039 ETH
1371160112025-06-13 16:06:396 hrs ago1749830799
0x90CbE4BD...67A521De5
0.000024 ETH
1371155172025-06-13 15:50:116 hrs ago1749829811
0x90CbE4BD...67A521De5
0.000078 ETH
1371153072025-06-13 15:43:116 hrs ago1749829391
0x90CbE4BD...67A521De5
0.0000066 ETH
1371148512025-06-13 15:27:597 hrs ago1749828479
0x90CbE4BD...67A521De5
0.000039 ETH
1371145842025-06-13 15:19:057 hrs ago1749827945
0x90CbE4BD...67A521De5
0.000003 ETH
1371145212025-06-13 15:16:597 hrs ago1749827819
0x90CbE4BD...67A521De5
0.000057 ETH
1371144542025-06-13 15:14:457 hrs ago1749827685
0x90CbE4BD...67A521De5
0.000042 ETH
1371139722025-06-13 14:58:417 hrs ago1749826721
0x90CbE4BD...67A521De5
0.000027 ETH
1371137792025-06-13 14:52:157 hrs ago1749826335
0x90CbE4BD...67A521De5
0.0000534 ETH
1371137742025-06-13 14:52:057 hrs ago1749826325
0x90CbE4BD...67A521De5
0.0000381 ETH
1371134312025-06-13 14:40:397 hrs ago1749825639
0x90CbE4BD...67A521De5
0.000036 ETH
1371132172025-06-13 14:33:318 hrs ago1749825211
0x90CbE4BD...67A521De5
0.000042 ETH
1371131342025-06-13 14:30:458 hrs ago1749825045
0x90CbE4BD...67A521De5
0.0000402 ETH
1371131272025-06-13 14:30:318 hrs ago1749825031
0x90CbE4BD...67A521De5
0.000015 ETH
1371131022025-06-13 14:29:418 hrs ago1749824981
0x90CbE4BD...67A521De5
0.0000243 ETH
View All Internal Transactions

Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x91FaD5D4...6f9a7a5bD
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
BeaconProxy

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
Yes with 1000000 runs

Other Settings:
shanghai EvmVersion
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (proxy/beacon/BeaconProxy.sol)

pragma solidity ^0.8.20;

import {IBeacon} from "./IBeacon.sol";
import {Proxy} from "../Proxy.sol";
import {ERC1967Utils} from "../ERC1967/ERC1967Utils.sol";

/**
 * @dev This contract implements a proxy that gets the implementation address for each call from an {UpgradeableBeacon}.
 *
 * The beacon address can only be set once during construction, and cannot be changed afterwards. It is stored in an
 * immutable variable to avoid unnecessary storage reads, and also in the beacon storage slot specified by
 * https://eips.ethereum.org/EIPS/eip-1967[ERC-1967] so that it can be accessed externally.
 *
 * CAUTION: Since the beacon address can never be changed, you must ensure that you either control the beacon, or trust
 * the beacon to not upgrade the implementation maliciously.
 *
 * IMPORTANT: Do not use the implementation logic to modify the beacon storage slot. Doing so would leave the proxy in
 * an inconsistent state where the beacon storage slot does not match the beacon address.
 */
contract BeaconProxy is Proxy {
    // An immutable address for the beacon to avoid unnecessary SLOADs before each delegate call.
    address private immutable _beacon;

    /**
     * @dev Initializes the proxy with `beacon`.
     *
     * If `data` is nonempty, it's used as data in a delegate call to the implementation returned by the beacon. This
     * will typically be an encoded function call, and allows initializing the storage of the proxy like a Solidity
     * constructor.
     *
     * Requirements:
     *
     * - `beacon` must be a contract with the interface {IBeacon}.
     * - If `data` is empty, `msg.value` must be zero.
     */
    constructor(address beacon, bytes memory data) payable {
        ERC1967Utils.upgradeBeaconToAndCall(beacon, data);
        _beacon = beacon;
    }

    /**
     * @dev Returns the current implementation address of the associated beacon.
     */
    function _implementation() internal view virtual override returns (address) {
        return IBeacon(_getBeacon()).implementation();
    }

    /**
     * @dev Returns the beacon.
     */
    function _getBeacon() internal view virtual returns (address) {
        return _beacon;
    }
}

File 1 of 8 : IERC1967.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC1967.sol)

pragma solidity ^0.8.20;

/**
 * @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC.
 */
interface IERC1967 {
    /**
     * @dev Emitted when the implementation is upgraded.
     */
    event Upgraded(address indexed implementation);

    /**
     * @dev Emitted when the admin account has changed.
     */
    event AdminChanged(address previousAdmin, address newAdmin);

    /**
     * @dev Emitted when the beacon is changed.
     */
    event BeaconUpgraded(address indexed beacon);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/beacon/IBeacon.sol)

pragma solidity ^0.8.20;

/**
 * @dev This is the interface that {BeaconProxy} expects of its beacon.
 */
interface IBeacon {
    /**
     * @dev Must return an address that can be used as a delegate call target.
     *
     * {UpgradeableBeacon} will check that this address is a contract.
     */
    function implementation() external view returns (address);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (proxy/ERC1967/ERC1967Utils.sol)

pragma solidity ^0.8.21;

import {IBeacon} from "../beacon/IBeacon.sol";
import {IERC1967} from "../../interfaces/IERC1967.sol";
import {Address} from "../../utils/Address.sol";
import {StorageSlot} from "../../utils/StorageSlot.sol";

/**
 * @dev This library provides getters and event emitting update functions for
 * https://eips.ethereum.org/EIPS/eip-1967[ERC-1967] slots.
 */
library ERC1967Utils {
    /**
     * @dev Storage slot with the address of the current implementation.
     * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1.
     */
    // solhint-disable-next-line private-vars-leading-underscore
    bytes32 internal constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;

    /**
     * @dev The `implementation` of the proxy is invalid.
     */
    error ERC1967InvalidImplementation(address implementation);

    /**
     * @dev The `admin` of the proxy is invalid.
     */
    error ERC1967InvalidAdmin(address admin);

    /**
     * @dev The `beacon` of the proxy is invalid.
     */
    error ERC1967InvalidBeacon(address beacon);

    /**
     * @dev An upgrade function sees `msg.value > 0` that may be lost.
     */
    error ERC1967NonPayable();

    /**
     * @dev Returns the current implementation address.
     */
    function getImplementation() internal view returns (address) {
        return StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value;
    }

    /**
     * @dev Stores a new address in the ERC-1967 implementation slot.
     */
    function _setImplementation(address newImplementation) private {
        if (newImplementation.code.length == 0) {
            revert ERC1967InvalidImplementation(newImplementation);
        }
        StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value = newImplementation;
    }

    /**
     * @dev Performs implementation upgrade with additional setup call if data is nonempty.
     * This function is payable only if the setup call is performed, otherwise `msg.value` is rejected
     * to avoid stuck value in the contract.
     *
     * Emits an {IERC1967-Upgraded} event.
     */
    function upgradeToAndCall(address newImplementation, bytes memory data) internal {
        _setImplementation(newImplementation);
        emit IERC1967.Upgraded(newImplementation);

        if (data.length > 0) {
            Address.functionDelegateCall(newImplementation, data);
        } else {
            _checkNonPayable();
        }
    }

    /**
     * @dev Storage slot with the admin of the contract.
     * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1.
     */
    // solhint-disable-next-line private-vars-leading-underscore
    bytes32 internal constant ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;

    /**
     * @dev Returns the current admin.
     *
     * TIP: To get this value clients can read directly from the storage slot shown below (specified by ERC-1967) using
     * the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.
     * `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103`
     */
    function getAdmin() internal view returns (address) {
        return StorageSlot.getAddressSlot(ADMIN_SLOT).value;
    }

    /**
     * @dev Stores a new address in the ERC-1967 admin slot.
     */
    function _setAdmin(address newAdmin) private {
        if (newAdmin == address(0)) {
            revert ERC1967InvalidAdmin(address(0));
        }
        StorageSlot.getAddressSlot(ADMIN_SLOT).value = newAdmin;
    }

    /**
     * @dev Changes the admin of the proxy.
     *
     * Emits an {IERC1967-AdminChanged} event.
     */
    function changeAdmin(address newAdmin) internal {
        emit IERC1967.AdminChanged(getAdmin(), newAdmin);
        _setAdmin(newAdmin);
    }

    /**
     * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.
     * This is the keccak-256 hash of "eip1967.proxy.beacon" subtracted by 1.
     */
    // solhint-disable-next-line private-vars-leading-underscore
    bytes32 internal constant BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50;

    /**
     * @dev Returns the current beacon.
     */
    function getBeacon() internal view returns (address) {
        return StorageSlot.getAddressSlot(BEACON_SLOT).value;
    }

    /**
     * @dev Stores a new beacon in the ERC-1967 beacon slot.
     */
    function _setBeacon(address newBeacon) private {
        if (newBeacon.code.length == 0) {
            revert ERC1967InvalidBeacon(newBeacon);
        }

        StorageSlot.getAddressSlot(BEACON_SLOT).value = newBeacon;

        address beaconImplementation = IBeacon(newBeacon).implementation();
        if (beaconImplementation.code.length == 0) {
            revert ERC1967InvalidImplementation(beaconImplementation);
        }
    }

    /**
     * @dev Change the beacon and trigger a setup call if data is nonempty.
     * This function is payable only if the setup call is performed, otherwise `msg.value` is rejected
     * to avoid stuck value in the contract.
     *
     * Emits an {IERC1967-BeaconUpgraded} event.
     *
     * CAUTION: Invoking this function has no effect on an instance of {BeaconProxy} since v5, since
     * it uses an immutable beacon without looking at the value of the ERC-1967 beacon slot for
     * efficiency.
     */
    function upgradeBeaconToAndCall(address newBeacon, bytes memory data) internal {
        _setBeacon(newBeacon);
        emit IERC1967.BeaconUpgraded(newBeacon);

        if (data.length > 0) {
            Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data);
        } else {
            _checkNonPayable();
        }
    }

    /**
     * @dev Reverts if `msg.value` is not zero. It can be used to avoid `msg.value` stuck in the contract
     * if an upgrade doesn't perform an initialization call.
     */
    function _checkNonPayable() private {
        if (msg.value > 0) {
            revert ERC1967NonPayable();
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/Proxy.sol)

pragma solidity ^0.8.20;

/**
 * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM
 * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to
 * be specified by overriding the virtual {_implementation} function.
 *
 * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a
 * different contract through the {_delegate} function.
 *
 * The success and return data of the delegated call will be returned back to the caller of the proxy.
 */
abstract contract Proxy {
    /**
     * @dev Delegates the current call to `implementation`.
     *
     * This function does not return to its internal call site, it will return directly to the external caller.
     */
    function _delegate(address implementation) internal virtual {
        assembly {
            // Copy msg.data. We take full control of memory in this inline assembly
            // block because it will not return to Solidity code. We overwrite the
            // Solidity scratch pad at memory position 0.
            calldatacopy(0, 0, calldatasize())

            // Call the implementation.
            // out and outsize are 0 because we don't know the size yet.
            let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0)

            // Copy the returned data.
            returndatacopy(0, 0, returndatasize())

            switch result
            // delegatecall returns 0 on error.
            case 0 {
                revert(0, returndatasize())
            }
            default {
                return(0, returndatasize())
            }
        }
    }

    /**
     * @dev This is a virtual function that should be overridden so it returns the address to which the fallback
     * function and {_fallback} should delegate.
     */
    function _implementation() internal view virtual returns (address);

    /**
     * @dev Delegates the current call to the address returned by `_implementation()`.
     *
     * This function does not return to its internal call site, it will return directly to the external caller.
     */
    function _fallback() internal virtual {
        _delegate(_implementation());
    }

    /**
     * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other
     * function in the contract matches the call data.
     */
    fallback() external payable virtual {
        _fallback();
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/Address.sol)

pragma solidity ^0.8.20;

import {Errors} from "./Errors.sol";

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @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://consensys.net/diligence/blog/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.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        if (address(this).balance < amount) {
            revert Errors.InsufficientBalance(address(this).balance, amount);
        }

        (bool success, ) = recipient.call{value: amount}("");
        if (!success) {
            revert Errors.FailedCall();
        }
    }

    /**
     * @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 or custom error, it is bubbled
     * up by this function (like regular Solidity function calls). However, if
     * the call reverted with no returned reason, this function reverts with a
     * {Errors.FailedCall} error.
     *
     * 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.
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0);
    }

    /**
     * @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`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert Errors.InsufficientBalance(address(this).balance, value);
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {Errors.FailedCall}) in case
     * of an unsuccessful call.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata
    ) internal view returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {Errors.FailedCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

    /**
     * @dev Reverts with returndata if present. Otherwise reverts with {Errors.FailedCall}.
     */
    function _revert(bytes memory returndata) private pure {
        // 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 ("memory-safe") {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert Errors.FailedCall();
        }
    }
}

File 2 of 8 : Errors.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/Errors.sol)

pragma solidity ^0.8.20;

/**
 * @dev Collection of common custom errors used in multiple contracts
 *
 * IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library.
 * It is recommended to avoid relying on the error API for critical functionality.
 *
 * _Available since v5.1._
 */
library Errors {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error InsufficientBalance(uint256 balance, uint256 needed);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedCall();

    /**
     * @dev The deployment failed.
     */
    error FailedDeployment();

    /**
     * @dev A necessary precompile is missing.
     */
    error MissingPrecompile(address);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/StorageSlot.sol)
// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.

pragma solidity ^0.8.20;

/**
 * @dev Library for reading and writing primitive types to specific storage slots.
 *
 * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
 * This library helps with reading and writing to such slots without the need for inline assembly.
 *
 * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
 *
 * Example usage to set ERC-1967 implementation slot:
 * ```solidity
 * contract ERC1967 {
 *     // Define the slot. Alternatively, use the SlotDerivation library to derive the slot.
 *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
 *
 *     function _getImplementation() internal view returns (address) {
 *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
 *     }
 *
 *     function _setImplementation(address newImplementation) internal {
 *         require(newImplementation.code.length > 0);
 *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
 *     }
 * }
 * ```
 *
 * TIP: Consider using this library along with {SlotDerivation}.
 */
library StorageSlot {
    struct AddressSlot {
        address value;
    }

    struct BooleanSlot {
        bool value;
    }

    struct Bytes32Slot {
        bytes32 value;
    }

    struct Uint256Slot {
        uint256 value;
    }

    struct Int256Slot {
        int256 value;
    }

    struct StringSlot {
        string value;
    }

    struct BytesSlot {
        bytes value;
    }

    /**
     * @dev Returns an `AddressSlot` with member `value` located at `slot`.
     */
    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
        assembly ("memory-safe") {
            r.slot := slot
        }
    }

    /**
     * @dev Returns a `BooleanSlot` with member `value` located at `slot`.
     */
    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
        assembly ("memory-safe") {
            r.slot := slot
        }
    }

    /**
     * @dev Returns a `Bytes32Slot` with member `value` located at `slot`.
     */
    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
        assembly ("memory-safe") {
            r.slot := slot
        }
    }

    /**
     * @dev Returns a `Uint256Slot` with member `value` located at `slot`.
     */
    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
        assembly ("memory-safe") {
            r.slot := slot
        }
    }

    /**
     * @dev Returns a `Int256Slot` with member `value` located at `slot`.
     */
    function getInt256Slot(bytes32 slot) internal pure returns (Int256Slot storage r) {
        assembly ("memory-safe") {
            r.slot := slot
        }
    }

    /**
     * @dev Returns a `StringSlot` with member `value` located at `slot`.
     */
    function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {
        assembly ("memory-safe") {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `StringSlot` representation of the string storage pointer `store`.
     */
    function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {
        assembly ("memory-safe") {
            r.slot := store.slot
        }
    }

    /**
     * @dev Returns a `BytesSlot` with member `value` located at `slot`.
     */
    function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {
        assembly ("memory-safe") {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.
     */
    function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {
        assembly ("memory-safe") {
            r.slot := store.slot
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 1000000
  },
  "evmVersion": "shanghai",
  "viaIR": true,
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"beacon","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"stateMutability":"payable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"beacon","type":"address"}],"name":"ERC1967InvalidBeacon","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"stateMutability":"payable","type":"fallback"}]

0x60a0604090808252610527803803809161001982856102a3565b8339810182828203126101e15761002f826102da565b60208084015191939091906001600160401b0382116101e1570182601f820112156101e157805190610060826102ee565b9361006d875195866102a3565b8285528383830101116101e15782905f5b83811061028f5750505f9184010152823b1561026f577fa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d5080546001600160a01b0319166001600160a01b038581169182179092558551635c60da1b60e01b8082529194928482600481895afa918215610265575f9261022e575b50813b156102155750508551847f1cf3b03a6cf19fa2baba4df148e9dcabedea7f8a5c07840e207e5c089be95d3e5f80a28251156101f657508290600487518096819382525afa9283156101ec575f936101ac575b50915f80848461018996519101845af4903d156101a3573d61016e816102ee565b9061017b885192836102a3565b81525f81943d92013e610309565b505b608052516101ba908161036d82396080518160450152f35b60609250610309565b92508183813d83116101e5575b6101c381836102a3565b810103126101e1575f806101d9610189956102da565b94505061014d565b5f80fd5b503d6101b9565b85513d5f823e3d90fd5b935050505034610206575061018b565b63b398979f60e01b8152600490fd5b8751634c9c8ce360e01b81529116600482015260249150fd5b9091508481813d831161025e575b61024681836102a3565b810103126101e157610257906102da565b905f6100f8565b503d61023c565b88513d5f823e3d90fd5b8351631933b43b60e21b81526001600160a01b0384166004820152602490fd5b81810183015186820184015284920161007e565b601f909101601f19168101906001600160401b038211908210176102c657604052565b634e487b7160e01b5f52604160045260245ffd5b51906001600160a01b03821682036101e157565b6001600160401b0381116102c657601f01601f191660200190565b90610330575080511561031e57805190602001fd5b60405163d6bda27560e01b8152600490fd5b81511580610363575b610341575090565b604051639996b31560e01b81526001600160a01b039091166004820152602490fd5b50803b1561033956fe6080806040527f5c60da1b00000000000000000000000000000000000000000000000000000000815260208160048173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165afa90811561010b575f9161007b575b50610167565b905060203d602011610104575b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f82011682019180831067ffffffffffffffff8411176100d7576100d19260405201610116565b5f610075565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b503d610088565b6040513d5f823e3d90fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8060209101126101635760805173ffffffffffffffffffffffffffffffffffffffff811681036101635790565b5f80fd5b5f8091368280378136915af43d5f803e15610180573d5ff35b3d5ffdfea2646970667358221220b60cbf4ce8772cb3e254605ee39a357ae36438377aa078a457c041ee4eec50da64736f6c63430008170033000000000000000000000000d25c6f0293d41758552b0b27d6f69353a1134d5100000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080806040527f5c60da1b00000000000000000000000000000000000000000000000000000000815260208160048173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000d25c6f0293d41758552b0b27d6f69353a1134d51165afa90811561010b575f9161007b575b50610167565b905060203d602011610104575b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f82011682019180831067ffffffffffffffff8411176100d7576100d19260405201610116565b5f610075565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b503d610088565b6040513d5f823e3d90fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8060209101126101635760805173ffffffffffffffffffffffffffffffffffffffff811681036101635790565b5f80fd5b5f8091368280378136915af43d5f803e15610180573d5ff35b3d5ffdfea2646970667358221220b60cbf4ce8772cb3e254605ee39a357ae36438377aa078a457c041ee4eec50da64736f6c63430008170033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Chain Token Portfolio % Price Amount Value
ETH6.32%$0.9997576,378.4623$6,376.91
ETH5.57%$15,616.7918$5,616.79
ETH4.63%$2,562.931.822$4,669.69
ETH0.74%$105,6740.00708143$748.32
ETH0.48%$2,562.930.1906$488.46
ETH0.46%$27.1216.9861$460.7
ETH0.44%$0.99973448.3239$448.2
ETH0.38%$0.993564384.0051$381.53
ETH0.37%<$0.00000154,739,625,479.906$377.56
ETH0.34%$0.02645913,102.3542$346.67
ETH0.31%$0.01114728,001.0686$312.12
ETH0.30%$1303.6386$303.64
ETH0.30%$0.0669044,487.5819$300.24
ETH0.30%$105,7210.0028363$299.86
ETH0.29%$1.04284.97$295.23
ETH0.29%<$0.000001627,983,752.9316$292.13
ETH0.29%$0.0514245,598.7402$287.91
ETH0.28%$7.6936.5299$280.84
ETH0.28%$0.220941,257.4032$277.81
ETH0.27%$0.00041675,134.0358$276.91
ETH0.27%$0.0893723,006.8577$268.73
ETH0.26%$0.347623750.7712$260.99
ETH0.26%$1.27203.9154$258.97
ETH0.26%$0.0668543,869.7277$258.71
ETH0.25%$3,459.40.0743$257.11
ETH0.24%<$0.000001542,718,204.625$245.55
ETH0.23%<$0.0000015,600,961,963.4677$231.07
ETH0.22%$2,555.560.0884$225.8
ETH0.22%$100.832.2143$223.27
ETH0.21%$0.612299349.071$213.74
ETH0.21%<$0.000001565,977,689.1995$213.48
ETH0.21%$0.00000636,136,600.0184$209.04
ETH0.21%$0.01891911,003.6744$208.18
ETH0.20%$0.1359641,485.4252$201.96
ETH0.20%$0.1938571,023.9909$198.51
ETH0.19%$1.51130.1961$196.6
ETH0.18%$0.674129262.5542$177
ETH0.17%$0.000512343,922.8285$176.16
ETH0.17%$0.005730,840.5887$175.8
ETH0.17%$3.9444.2145$174.2
ETH0.16%$7.5222.019$165.58
ETH0.16%$0.0000592,804,495.0034$165.02
ETH0.16%$71.462.2899$163.63
ETH0.16%$0.37914427.8808$162.23
ETH0.16%<$0.00000136,900,356,025.8484$159
ETH0.16%$0.993378160.0115$158.95
ETH0.16%$0.00691722,957.6102$158.81
ETH0.16%$0.189645832.4449$157.87
ETH0.15%$0.0624512,478.6054$154.79
ETH0.15%$0.0336544,552.7692$153.22
ETH0.15%<$0.0000015,731,469,960.9328$149.56
ETH0.15%$3,085.410.0475$146.5
ETH0.14%$0.0333734,382.718$146.26
ETH0.14%$6.2423.2794$145.26
ETH0.14%$0.0986181,456.3819$143.63
ETH0.14%$1.8677.0805$143.49
ETH0.14%$0.0000463,069,528.4149$140.03
ETH0.14%$0.274886505.0945$138.84
ETH0.14%$119.241.1633$138.71
ETH0.13%$0.0289144,678.0654$135.26
ETH0.13%$0.246629534.5068$131.82
ETH0.13%$8.1816.0376$131.19
ETH0.13%$0.156513832.8885$130.36
ETH0.13%$0.001099118,006.4833$129.71
ETH0.13%$0.0347423,658.5979$127.11
ETH0.12%$0.641375191.9626$123.12
ETH0.12%<$0.0000012,475,392,978.3153$122.5
ETH0.12%$2.6146.6126$121.66
ETH0.12%$0.00001110,835,642.3153$120.49
ETH0.12%$0.0000294,092,895.0001$117.26
ETH0.12%$0.0554672,105.4613$116.78
ETH0.11%<$0.00000135,178,638,246.9948$114.61
ETH0.11%$0.00195756,104.1404$109.79
ETH0.11%$2,865.70.0377$108.08
ETH0.10%<$0.000001400,335,134.9572$105.19
ETH0.10%$1.2384.8304$104.34
ETH0.10%$27.763.7509$104.12
ETH0.10%$0.99988698.6753$98.66
ETH0.10%<$0.00000113,331,943,378.0081$98.48
ETH0.10%$105,3320.00091557$96.44
ETH0.09%$0.0327312,896.8338$94.82
ETH0.09%<$0.0000014,528,678,290.2441$94.6
ETH0.09%$0.0177285,301.9104$93.99
ETH0.09%$19.534.7968$93.68
ETH0.09%$0.0103349,011.4701$93.12
ETH0.09%$0.815438112.3975$91.65
ETH0.09%$0.358807254.7135$91.39
ETH0.09%$0.00147961,742.4178$91.31
ETH0.09%<$0.00000182,203,327,207,538.922$90.04
ETH0.09%$0.0000224,032,271.9838$87.48
ETH0.09%$0.0144476,051.9547$87.43
ETH0.08%$0.098142870.3973$85.42
ETH0.08%$0.791536106.3954$84.22
ETH0.08%$0.012516,705.3271$83.89
ETH0.08%$0.0213073,914.5243$83.41
ETH0.08%$0.0508391,583.0712$80.48
ETH0.07%$0.00377819,765.8991$74.67
ETH0.07%$0.0574571,290.3711$74.14
ETH0.07%$0.00135754,618.6298$74.11
ETH0.07%$18.164.0218$73.04
ETH0.07%$0.0000641,137,694.4407$72.51
ETH0.07%$1060.6836$72.46
ETH0.07%$1.1861.401$72.45
ETH0.07%$1.0667.8069$71.81
ETH0.07%$0.227852312.5135$71.21
ETH0.07%$0.368882189.3376$69.84
ETH0.07%$0.000146476,839.4951$69.47
ETH0.07%$0.0000292,340,514.9908$68.23
ETH0.07%$0.260546258.3568$67.31
ETH0.07%$0.0284392,359.6674$67.11
ETH0.06%$0.00083578,388.3811$65.42
ETH0.06%$0.0000125,401,043.0128$65.08
ETH0.06%$0.195717327.3318$64.06
ETH0.06%$2.1229.9988$63.6
ETH0.06%$0.0494451,212.5553$59.95
ETH0.06%$0.366523162.0481$59.39
ETH0.06%$105,3820.00056201$59.23
ETH0.06%$0.137908420.62$58.01
ETH0.06%$0.0262422,185.1787$57.34
ETH0.06%$0.296815190.8377$56.64
ETH0.06%$13.314.1836$55.68
ETH0.05%$0.477751115.2356$55.05
ETH0.05%$0.00125343,670.779$54.72
ETH0.05%<$0.000001284,178,533.444$54.67
ETH0.05%$0.124346439.2826$54.62
ETH0.05%$0.0259572,095.9502$54.4
ETH0.05%$0.0304121,765.2499$53.68
ETH0.05%$0.0423521,253.6039$53.09
ETH0.05%$0.000411128,417.2471$52.72
ETH0.05%$0.0053379,596.1868$51.22
ETH0.05%$0.0097575,195.4903$50.69
ETH0.05%$0.195797255.5124$50.03
ETH0.05%$2.619.2159$49.96
ETH0.05%$0.467572102.4368$47.9
ETH0.05%$0.0223642,139.9718$47.86
ETH0.05%$104,8280.00045328$47.52
ETH0.05%$0.0013335,609.6585$47.37
ETH0.05%$0.63789373.557$46.92
ETH0.05%<$0.00000120,053,780,806.3803$46.83
ETH0.05%$0.157567294.6368$46.43
ETH0.05%$0.0247461,860.6124$46.04
ETH0.05%$0.0051738,795.0837$45.5
ETH0.04%$0.26154172.9426$45.23
ETH0.04%$0.0116683,837.8968$44.78
ETH0.04%$0.62039371.3385$44.26
ETH0.04%$2.4817.7106$43.92
ETH0.04%$0.0354321,235.0609$43.76
ETH0.04%$52.690.8289$43.67
ETH0.04%$0.0008153,758.2126$43.56
ETH0.04%$143.1516$43.17
ETH0.04%$0.00344512,517.1902$43.12
ETH0.04%$0.00363311,756.3528$42.71
ETH0.04%$284.770.1493$42.51
ETH0.04%$2,913.390.0142$41.28
ETH0.04%$0.007265,681.0888$41.25
ETH0.04%$0.0021918,609.8788$40.75
ETH0.04%$0.100849403.3792$40.68
ETH0.04%$0.071622553.2825$39.63
ETH0.04%$0.89430344.1958$39.52
ETH0.04%$9.24.2877$39.45
ETH0.04%$0.0040529,703.05$39.32
ETH0.04%$0.0336391,167.1487$39.26
ETH0.04%$0.357109109.3597$39.05
ETH0.04%<$0.00000112,928,655,281.2452$38.29
ETH0.04%$3.0612.0968$37.02
ETH0.04%$0.094722388.8957$36.84
ETH0.04%$0.0046477,722$35.88
ETH0.04%<$0.00000127,677,361,355.1397$35.73
ETH0.04%$0.0134762,627.026$35.4
ETH0.03%$0.0060935,747.4877$35.02
ETH0.03%$0.00000310,695,523.4029$34.97
ETH0.03%$0.00062156,134.2331$34.87
ETH0.03%$0.00228315,127.0407$34.54
ETH0.03%$0.0334411,029.079$34.41
ETH0.03%$5.925.8104$34.4
ETH0.03%$0.058137579.8874$33.71
ETH0.03%$0.169417196.618$33.31
ETH0.03%$0.0000039,746,293.466$33
ETH0.03%$0.295651111.5233$32.97
ETH0.03%$0.0164261,962.3348$32.23
ETH0.03%$0.0080993,919.277$31.74
ETH0.03%$0.00000133,251,569.3841$31.61
ETH0.03%$0.0035998,707.9609$31.34
ETH0.03%$0.72927942.7999$31.21
ETH0.03%$0.00048164,932.3758$31.21
ETH0.03%$0.113035271.9569$30.74
ETH0.03%$0.050997601.0687$30.65
ETH0.03%$0.46757865.2181$30.49
ETH0.03%$0.99711629.95$29.86
ETH0.03%$0.00153219,365.9685$29.66
ETH0.03%$0.0000251,190,036.9247$29.64
ETH0.03%$0.049538594.3898$29.45
ETH0.03%$0.024961,176.6555$29.37
ETH0.03%$0.00193214,897.2545$28.78
ETH0.03%<$0.00000135,917,119,398.5188$28.78
ETH0.03%$0.46750461.2208$28.62
ETH0.03%$0.000047601,169.4726$28.4
ETH0.03%$2,065.020.0137$28.24
ETH0.03%$1.6417.2074$28.17
ETH0.03%$20.21.3753$27.78
ETH0.03%$0.19886139.697$27.78
ETH0.03%$0.091201304.3676$27.76
ETH0.03%$0.00076336,348.362$27.73
ETH0.03%$0.69777139.3045$27.43
ETH0.03%$0.0000132,133,563.1573$27.37
ETH0.03%$0.094184288.4283$27.17
ETH0.03%$0.080909334.8397$27.09
ETH0.03%$0.071875376.8234$27.08
ETH0.03%$0.00000129,710,675.4669$26.81
ETH0.03%$0.00064141,705.5392$26.74
ETH0.03%<$0.0000018,079,126,513.6176$26.71
ETH0.03%$0.9987626.5823$26.55
ETH0.03%$0.0030148,800.5326$26.53
ETH0.03%$0.0000092,855,804.9369$26.07
ETH0.03%$1.2620.4158$25.72
ETH0.03%$0.071586358.6853$25.68
ETH0.03%$2,557.590.01$25.61
ETH0.03%$0.000064402,507.3712$25.6
ETH0.03%$0.028817884.874$25.5
ETH0.03%$0.05542459.7024$25.48
ETH0.03%$0.037763669.2293$25.27
ETH0.02%$0.52381847.7221$25
ETH0.02%$0.0038476,448.5275$24.81
ETH0.02%$0.58544542.1992$24.71
ETH0.02%$0.083453289.8284$24.19
ETH0.02%$0.00110321,864.3769$24.11
ETH0.02%$6.133.91$23.97
ETH0.02%$0.0029718,010.249$23.8
ETH0.02%$0.118849199.3982$23.7
ETH0.02%$0.00104822,581.7231$23.67
ETH0.02%$0.8357128.3039$23.65
ETH0.02%$0.0005940,092.6572$23.64
ETH0.02%$113.620.2072$23.54
ETH0.02%$0.29444579.8086$23.5
ETH0.02%$0.0041845,585.1223$23.37
ETH0.02%$0.000146158,659.6635$23.17
ETH0.02%$0.27102285.0006$23.04
ETH0.02%$0.0000181,269,749.3285$22.91
ETH0.02%$0.00089125,176.2473$22.43
ETH0.02%$0.0000151,496,118.1386$22.13
ETH0.02%$0.00126417,053.9787$21.55
ETH0.02%$0.0182261,176.1237$21.44
ETH0.02%$0.41107651.9613$21.36
ETH0.02%$0.029298725.2312$21.25
ETH0.02%$0.29503371.8668$21.2
ETH0.02%$0.000079265,609.461$21.01
ETH0.02%$1.2217.0703$20.88
ETH0.02%$0.0158211,317.1963$20.84
ETH0.02%$0.00201210,291.2465$20.7
ETH0.02%$0.130261158.8762$20.7
ETH0.02%$1.1517.7941$20.46
ETH0.02%$0.059878341.6554$20.46
ETH0.02%$0.99884620.4791$20.46
ETH0.02%$0.076125268.6038$20.45
ETH0.02%$0.166645122.3435$20.39
ETH0.02%$0.00059234,222.2718$20.25
ETH0.02%$0.1567123.3976$19.34
ETH0.02%$0.151013127.4284$19.24
ETH0.02%$3.435.4486$18.69
ETH0.02%$0.0098031,905.4059$18.68
ETH0.02%<$0.000001534,396,985.4924$18.58
ETH0.02%$0.32348257.2884$18.53
ETH0.02%$0.028016647.8706$18.15
ETH0.02%$0.033249543.9308$18.09
ETH0.02%$0.055217324.8257$17.94
ETH0.02%$0.165992108.0047$17.93
ETH0.02%$0.027102647.0997$17.54
ETH0.02%$0.158492109.9114$17.42
ETH0.02%$4.523.8255$17.29
ETH0.02%$0.05716300$17.15
ETH0.02%$0.000044392,239.4844$17.08
ETH0.02%$0.95532817.8791$17.08
ETH0.02%$0.033692503.0893$16.95
ETH0.02%$0.00000121,429,242.0555$16.69
ETH0.02%$0.0001987,515.2762$16.61
ETH0.02%$0.0000035,316,188.5823$16.59
ETH0.02%$0.52631.4201$16.53
ETH0.02%$15.651.0542$16.49
ETH0.02%$0.70911923.0363$16.34
ETH0.02%$0.034994466.5109$16.32
ETH0.02%$0.121205134.5288$16.31
ETH0.02%$0.037601427.8936$16.09
ETH0.02%$3.854.136$15.92
ETH0.02%$0.0028665,546.7746$15.9
ETH0.02%<$0.000001383,603,520.3649$15.78
ETH0.02%$0.18852880.8026$15.23
ETH0.01%$11.251.3317$14.98
ETH0.01%<$0.000001825,521,802.0962$14.92
ETH0.01%$0.0053792,762.4073$14.86
ETH0.01%$0.18851378.8046$14.86
ETH0.01%$5,202.460.00281443$14.64
ETH0.01%<$0.0000011,380,623,223.7879$14.43
ETH0.01%$0.5240327.3834$14.35
ETH0.01%$1.4210.0537$14.28
ETH0.01%$0.087676162.612$14.26
ETH0.01%$0.027172522.4462$14.2
ETH0.01%$0.04497313.9038$14.12
ETH0.01%$0.0000043,652,536.2332$13.93
ETH0.01%$0.00120211,513.203$13.84
ETH0.01%$0.0123281,121.0311$13.82
ETH0.01%<$0.000001131,012,557.3763$13.64
ETH0.01%$0.091713148.3379$13.6
ETH0.01%$0.00019270,161.0627$13.46
ETH0.01%$0.00058522,734.0601$13.29
ETH0.01%$0.017247767.9934$13.25
ETH0.01%$0.019015696.3154$13.24
ETH0.01%$0.0106581,239.7682$13.21
ETH0.01%$0.15764383.1067$13.1
ETH0.01%$0.0109551,186.8662$13
ETH0.01%$0.052869244.1936$12.91
ETH0.01%$0.2868245.0045$12.91
ETH0.01%$0.057619220.0683$12.68
ETH0.01%<$0.000001295,248,065.835$12.45
ETH0.01%$0.001816,851.4899$12.4
ETH0.01%$2,639.870.00469017$12.38
ETH0.01%$3.014.1085$12.37
ETH0.01%$0.54251322.6245$12.27
ETH0.01%<$0.000001305,193,165.3453$12.27
ETH0.01%$0.025286480.8439$12.16
ETH0.01%$32.360.3668$11.87
ETH0.01%$0.13467987.998$11.85
ETH0.01%<$0.000001297,782,543.276$11.7
ETH0.01%$0.097174120.4012$11.7
ETH0.01%<$0.0000014,238,375,316.0822$11.68
ETH0.01%$2,649.80.00440059$11.66
ETH0.01%$0.76440615$11.47
ETH0.01%$0.003233,485.9526$11.26
ETH0.01%$0.038539292.0059$11.25
ETH0.01%$0.00012490,784.1723$11.23
ETH0.01%$0.0000033,566,773.083$11.2
ETH0.01%$28.220.3965$11.19
ETH0.01%$0.0032993,383.9641$11.16
ETH0.01%$0.15750769.7542$10.99
ETH0.01%$0.0000018,767,865.6335$10.96
ETH0.01%$0.087854121.8336$10.7
ETH0.01%$0.000035307,514.3034$10.68
ETH0.01%$0.0000024,916,268.7101$10.67
ETH0.01%$0.0040252,639.3199$10.62
ETH0.01%$2,821.710.00376183$10.61
ETH0.01%$0.072892145.1053$10.58
ETH0.01%$0.042922245.4476$10.54
ETH0.01%$0.000066158,636.7033$10.41
ETH0.01%$11.690.8854$10.35
ETH0.01%$0.0084181,224.0424$10.3
ETH0.01%$3.812.6978$10.28
ETH0.01%$0.071347143.6887$10.25
ETH<0.01%$3,437.450.002915$10.02
ETH<0.01%$0.00000119,535,298.7336$9.97
ETH<0.01%<$0.000001283,652,073.9459$9.93
ETH<0.01%$0.000025396,310.2243$9.82
ETH<0.01%$0.26669336.8261$9.82
ETH<0.01%$0.34491828.2589$9.75
ETH<0.01%$0.0019734,927.7064$9.72
ETH<0.01%$0.02642367.9025$9.72
ETH<0.01%$0.32474829.4359$9.56
ETH<0.01%$1.098.7417$9.55
ETH<0.01%$0.00007136,379.2098$9.55
ETH<0.01%$2,685.830.00351237$9.43
ETH<0.01%$0.0011278,366.894$9.43
ETH<0.01%$0.00006155,355.2785$9.28
ETH<0.01%$0.0045162,027.57$9.16
ETH<0.01%$0.087783102.7369$9.02
ETH<0.01%$0.00041721,397.8202$8.92
ETH<0.01%$0.03379262.4713$8.87
ETH<0.01%<$0.00000172,713,560.74$8.83
ETH<0.01%<$0.000001108,653,486.4918$8.83
ETH<0.01%$0.000044198,949.942$8.75
ETH<0.01%$1.17.8829$8.67
ETH<0.01%$0.20382941.5282$8.46
ETH<0.01%$0.0073221,153.6247$8.45
ETH<0.01%$0.00018545,328.7149$8.4
ETH<0.01%$0.18794844.1293$8.29
ETH<0.01%$0.032154257.5589$8.28
ETH<0.01%$0.012257662.7853$8.12
ETH<0.01%$0.0012016,733.7534$8.09
ETH<0.01%$0.056999141.4078$8.06
ETH<0.01%$2,738.270.00293867$8.05
ETH<0.01%$5,165.60.00154795$8
ETH<0.01%$0.017991442.7992$7.97
ETH<0.01%$0.0014095,606.094$7.9
ETH<0.01%$0.007977988.2874$7.88
ETH<0.01%$0.012557627.3099$7.88
ETH<0.01%$0.018975412.7046$7.83
ETH<0.01%$0.0014585,361.2754$7.82
ETH<0.01%$0.0001648,009.8553$7.7
ETH<0.01%<$0.00000144,405,026.0145$7.65
ETH<0.01%$0.032589234.627$7.65
ETH<0.01%$0.19546839.069$7.64
ETH<0.01%$0.055535135.649$7.53
ETH<0.01%$0.023804312.5849$7.44
ETH<0.01%$0.0000019,908,761.5227$7.41
ETH<0.01%$0.52842313.6848$7.23
ETH<0.01%$0.67187710.6787$7.17
ETH<0.01%$0.10838664.7725$7.02
ETH<0.01%$152.740.0458$6.99
ETH<0.01%$0.00041516,788.6469$6.96
ETH<0.01%$0.0031952,169.4921$6.93
ETH<0.01%$0.0001353,221.2089$6.92
ETH<0.01%$0.23506629.3283$6.89
ETH<0.01%$0.009291734.7172$6.83
ETH<0.01%$0.0064381,048.5575$6.75
ETH<0.01%$0.059625112.4736$6.71
ETH<0.01%$1.424.6541$6.62
ETH<0.01%$0.032851200.82$6.6
ETH<0.01%$0.027578239$6.59
ETH<0.01%$0.015977411.9474$6.58
ETH<0.01%$42.340.1542$6.53
ETH<0.01%$0.00019932,502.7062$6.48
ETH<0.01%$2.612.4699$6.45
ETH<0.01%$0.000012521,989.7223$6.36
ETH<0.01%$0.033338190.2555$6.34
ETH<0.01%$3.142.0157$6.32
ETH<0.01%$0.007638826.0289$6.31
ETH<0.01%$0.1349746.1635$6.23
ETH<0.01%$0.17182435.2443$6.06
ETH<0.01%$0.0009816,125.4465$6.01
ETH<0.01%$0.000033179,196.9239$5.99
ETH<0.01%$0.018564315.9653$5.87
ETH<0.01%$0.0014753,947.069$5.82
ETH<0.01%$0.22907225.4138$5.82
ETH<0.01%$0.00036415,734.8755$5.73
ETH<0.01%<$0.00000122,556,585,250.6192$5.69
ETH<0.01%$0.06948881.4662$5.66
ETH<0.01%$0.0024582,265.3633$5.57
ETH<0.01%$0.045919121.1098$5.56
ETH<0.01%$0.005597986.8868$5.52
ETH<0.01%$0.00026820,599.395$5.52
ETH<0.01%$0.008062682.1386$5.5
ETH<0.01%$0.010267534.2738$5.49
ETH<0.01%$0.022307245.3855$5.47
ETH<0.01%$15.4305$5.43
ETH<0.01%$0.0010155,285.1991$5.36
ETH<0.01%$0.021116251.0614$5.3
ETH<0.01%$0.00034215,473.142$5.29
ETH<0.01%<$0.0000011,295,945,542.5149$5.23
ETH<0.01%$0.31072216.8035$5.22
ETH<0.01%$0.00019726,368.1474$5.18
ETH<0.01%$0.014735349.1583$5.14
ETH<0.01%$0.00007567,272.2256$5.07
ETH<0.01%$0.033561149.7177$5.02
ETH<0.01%$0.6260898.0059$5.01
ETH<0.01%$0.0023252,141.3314$4.98
ETH<0.01%$1.672.9715$4.96
ETH<0.01%$0.07379166.5629$4.91
ETH<0.01%$0.6151457.9488$4.89
ETH<0.01%$0.0014613,337.4821$4.87
ETH<0.01%$0.9993714.8189$4.82
ETH<0.01%<$0.0000011,938,731,809.6231$4.79
ETH<0.01%$0.28492816.8016$4.79
ETH<0.01%$0.05163791.6603$4.73
ETH<0.01%$0.00013634,844.179$4.73
ETH<0.01%$0.6427897.3123$4.7
ETH<0.01%$0.999734.7$4.7
ETH<0.01%$0.018978244.0357$4.63
ETH<0.01%$7.760.5951$4.62
ETH<0.01%$0.20385322.6565$4.62
ETH<0.01%$0.08625853.2025$4.59
ETH<0.01%$1.23.7833$4.54
ETH<0.01%$0.011862375.2997$4.45
ETH<0.01%$0.000022200,055.65$4.44
ETH<0.01%$0.015839280.415$4.44
ETH<0.01%$1.064.199$4.43
ETH<0.01%$0.0010784,104.7056$4.42
ETH<0.01%$0.007952548.873$4.36
ETH<0.01%$0.0004429,777.9578$4.33
ETH<0.01%$0.006227689.6226$4.29
ETH<0.01%$0.00019721,633.3355$4.27
ETH<0.01%$0.1376630.9706$4.26
ETH<0.01%$0.00022918,588.21$4.25
ETH<0.01%$0.11492736.1808$4.16
ETH<0.01%$0.27510415.0663$4.14
ETH<0.01%$0.13499430.6898$4.14
ETH<0.01%$0.00040910,137.3485$4.14
ETH<0.01%$0.010738383.3171$4.12
ETH<0.01%$0.0007965,119.9911$4.08
ETH<0.01%$0.007064573.8812$4.05
ETH<0.01%$0.001143,514.3081$4.01
ETH<0.01%$0.004454898.38$4
ETH<0.01%$0.07072256.5316$4
ETH<0.01%$0.0025051,578.5127$3.95
ETH<0.01%$0.010121390.5062$3.95
ETH<0.01%$0.15764325.0621$3.95
ETH<0.01%$0.09388841.8393$3.93
ETH<0.01%$0.08249947.5655$3.92
ETH<0.01%$0.0004339,039.9402$3.92
ETH<0.01%<$0.000001450,806,643.0109$3.88
ETH<0.01%$1.033.7694$3.86
ETH<0.01%$0.0011253,426.6107$3.85
ETH<0.01%$0.005075757.7206$3.85
ETH<0.01%$0.0029321,302.3186$3.82
ETH<0.01%$0.030497124.284$3.79
ETH<0.01%$0.01941195.0744$3.79
ETH<0.01%$0.00015324,480.6417$3.75
ETH<0.01%$0.018898197.086$3.72
ETH<0.01%$0.0000021,713,645.8309$3.72
ETH<0.01%$0.000419,079.2144$3.72
ETH<0.01%$0.000814,583.8084$3.71
ETH<0.01%$0.0000012,625,596.1714$3.7
ETH<0.01%$0.30827511.9736$3.69
ETH<0.01%$0.012413296.434$3.68
ETH<0.01%$3,433.220.00106485$3.66
ETH<0.01%$0.0000013,925,719.8811$3.6
ETH<0.01%$0.0012122,930.4119$3.55
ETH<0.01%$0.3641059.7383$3.55
ETH<0.01%$0.0000015,278,486.7542$3.54
ETH<0.01%$0.00009138,680.437$3.52
ETH<0.01%$0.33192610.5037$3.49
ETH<0.01%$1.013.4401$3.47
ETH<0.01%$0.000006618,389.0897$3.45
ETH<0.01%$0.00915373.8387$3.42
ETH<0.01%$0.14356723.5944$3.39
ETH<0.01%$0.013128257.3814$3.38
ETH<0.01%<$0.00000116,222,996.8296$3.37
ETH<0.01%$0.29872611.2898$3.37
ETH<0.01%$0.01797184.0105$3.31
ETH<0.01%$0.015129215.4115$3.26
ETH<0.01%$0.0007334,416.4592$3.24
ETH<0.01%$0.07466143.2494$3.23
ETH<0.01%$0.05095163.0007$3.21
ETH<0.01%$0.0000014,364,589.6933$3.21
ETH<0.01%$0.0001817,526.656$3.16
ETH<0.01%$0.04031278.223$3.15
ETH<0.01%$3.320.9464$3.15
ETH<0.01%$12.110.2593$3.14
ETH<0.01%$0.000007445,096.8318$3.14
ETH<0.01%$0.7423014.222$3.13
ETH<0.01%$0.04733465.7275$3.11
ETH<0.01%$0.1239625.0872$3.11
ETH<0.01%$0.21223814.6328$3.11
ETH<0.01%<$0.0000013,616,967,204.8345$3.1
ETH<0.01%$0.07002944.0437$3.08
ETH<0.01%$0.4347877.053$3.07
ETH<0.01%$0.04738264.7063$3.07
ETH<0.01%$0.18370616.6202$3.05
ETH<0.01%$0.0013172,290.6833$3.02
ETH<0.01%$0.002921,029.8686$3.01
ETH<0.01%$1.292.313$2.98
ETH<0.01%$7.230.41$2.96
ETH<0.01%$0.35338.3543$2.95
ETH<0.01%$0.007813376.637$2.94
ETH<0.01%$0.001821,612.455$2.93
ETH<0.01%<$0.0000011,118,829,238.282$2.93
ETH<0.01%$0.021748132.131$2.87
ETH<0.01%$0.0016341,741.2806$2.85
ETH<0.01%$96,856.60.00002886$2.8
ETH<0.01%$0.000289,968.1607$2.8
ETH<0.01%$0.26575410.5043$2.79
ETH<0.01%$0.0022651,231.9689$2.79
ETH<0.01%$0.19296114.3075$2.76
ETH<0.01%$0.0013661,978.9432$2.7
ETH<0.01%$7.630.3538$2.7
ETH<0.01%$0.0003038,875.173$2.69
ETH<0.01%$0.02801895.6728$2.68
ETH<0.01%$0.007416360.42$2.67
ETH<0.01%$0.00003380,820.0916$2.67
ETH<0.01%$0.00009627,500$2.64
ETH<0.01%$0.001711,544.9505$2.64
ETH<0.01%$0.0005294,926.5912$2.61
ETH<0.01%$0.011914216.8484$2.58
ETH<0.01%<$0.00000171,838,123.2332$2.58
ETH<0.01%$0.003237794.2066$2.57
ETH<0.01%$0.9975192.5622$2.56
ETH<0.01%<$0.0000011,061,650,899.817$2.54
ETH<0.01%$0.007668329.307$2.53
ETH<0.01%$0.6745123.69$2.49
ETH<0.01%$0.010942226.4111$2.48
ETH<0.01%$0.1020923.9481$2.44
ETH<0.01%$0.001271,921.4731$2.44
ETH<0.01%$0.16892314.3247$2.42
ETH<0.01%$0.0003087,795.3416$2.4
ETH<0.01%$0.03856561.8534$2.39
ETH<0.01%$0.020472115.482$2.36
ETH<0.01%$0.05241944.734$2.34
ETH<0.01%$0.19415111.9408$2.32
ETH<0.01%$0.006558352.8898$2.31
ETH<0.01%$0.00752302.5351$2.28
ETH<0.01%$0.0009022,487.8489$2.24
ETH<0.01%$0.004079547.581$2.23
ETH<0.01%$0.0015331,429.2583$2.19
ETH<0.01%$0.00015614,074.8918$2.19
ETH<0.01%$0.4716424.5381$2.14
ETH<0.01%$0.00012816,663.8119$2.13
ETH<0.01%$0.4377964.8598$2.13
ETH<0.01%$0.008519247.6446$2.11
ETH<0.01%$2.210.9475$2.09
ETH<0.01%$370.660.00553286$2.05
ETH<0.01%$0.0344558.8404$2.03
ETH<0.01%$0.0400750.5359$2.02
ETH<0.01%$0.014935135.1273$2.02
ETH<0.01%$0.011402175.6593$2
ETH<0.01%$0.05359537.1871$1.99
ETH<0.01%$0.03266460$1.96
ETH<0.01%$0.03888750.0574$1.95
ETH<0.01%$0.0004364,413.2114$1.93
ETH<0.01%$0.0003565,401.9471$1.93
ETH<0.01%$0.0004484,294.5055$1.92
ETH<0.01%$0.244837.8325$1.92
ETH<0.01%$0.00018310,045.293$1.84
ETH<0.01%$653.720.00280824$1.84
ETH<0.01%$0.013347137.3686$1.83
ETH<0.01%$0.0002547,223.027$1.83
ETH<0.01%$0.002499730.1896$1.83
ETH<0.01%$0.00017410,443.0248$1.81
ETH<0.01%$0.9673751.8687$1.81
ETH<0.01%$1.161.5428$1.79
ETH<0.01%$0.2399117.4352$1.78
ETH<0.01%$2.470.7095$1.75
ETH<0.01%$1.261.3725$1.73
ETH<0.01%$0.0403442.4264$1.71
ETH<0.01%<$0.0000013,773,899,543.488$1.7
ETH<0.01%$0.0011051,528.7132$1.69
ETH<0.01%$0.00003253,288.7112$1.68
ETH<0.01%$0.9997431.6733$1.67
ETH<0.01%$0.03664345.632$1.67
ETH<0.01%$0.9587961.7394$1.67
ETH<0.01%$0.00001168,219.0509$1.67
ETH<0.01%$0.06996923.8003$1.67
ETH<0.01%$0.0000012,252,368.3192$1.65
ETH<0.01%$0.003221510.5155$1.64
ETH<0.01%$0.009901165.7669$1.64
ETH<0.01%$0.0011421,436.4884$1.64
ETH<0.01%$2.630.6173$1.62
ETH<0.01%$0.08253219.5631$1.61
ETH<0.01%$0.1349911.9252$1.61
ETH<0.01%$0.013639117.9173$1.61
ETH<0.01%$0.01852386.5307$1.6
ETH<0.01%$0.001906839.3975$1.6
ETH<0.01%$2.720.5866$1.6
ETH<0.01%$0.013139121.4372$1.6
ETH<0.01%$0.02196272.4432$1.59
ETH<0.01%$0.000014111,428.0655$1.59
ETH<0.01%$0.1095214.2976$1.57
ETH<0.01%$0.334644.6675$1.56
ETH<0.01%$0.3013955.1788$1.56
ETH<0.01%$0.006079256.4135$1.56
ETH<0.01%$0.000198,177.0134$1.55
ETH<0.01%$0.06827222.6694$1.55
ETH<0.01%$0.0003534,373.8714$1.55
ETH<0.01%$2.90.5321$1.54
ETH<0.01%$0.302445.099$1.54
ETH<0.01%$0.014922102.242$1.53
ETH<0.01%<$0.00000139,004,645.3255$1.5
ETH<0.01%$0.002919507.4088$1.48
ETH<0.01%$0.0003973,662.8665$1.46
ETH<0.01%$0.0004523,192.3867$1.44
ETH<0.01%$9.680.1479$1.43
ETH<0.01%$0.02203863.7368$1.4
ETH<0.01%$0.001848759.7793$1.4
ETH<0.01%$0.009339148.7651$1.39
ETH<0.01%$0.04648229.8311$1.39
ETH<0.01%$0.004378315.8616$1.38
ETH<0.01%<$0.0000016,966,000$1.37
ETH<0.01%$0.03224342.4123$1.37
ETH<0.01%$0.04706428.0191$1.32
ETH<0.01%$147.310.00894704$1.32
ETH<0.01%$0.012798102.3484$1.31
ETH<0.01%<$0.0000014,214,450.1158$1.3
ETH<0.01%$0.002918442.8916$1.29
ETH<0.01%$0.001753728.8689$1.28
ETH<0.01%$0.04206430.1249$1.27
ETH<0.01%$0.00493255.4389$1.26
ETH<0.01%$0.0003873,196.9939$1.24
ETH<0.01%$0.004706261.8511$1.23
ETH<0.01%$0.02373851.8241$1.23
ETH<0.01%$0.000004278,736.1976$1.23
ETH<0.01%<$0.000001291,074,452.6777$1.23
ETH<0.01%$2.010.6091$1.22
ETH<0.01%$0.4375662.7739$1.21
ETH<0.01%$0.2708824.4458$1.2
ETH<0.01%<$0.000001152,797,911.4845$1.2
ETH<0.01%$0.001472798.4299$1.18
ETH<0.01%$0.003666320.0443$1.17
ETH<0.01%$0.9556711.2033$1.15
ETH<0.01%$2.180.5211$1.14
ETH<0.01%$0.3504763.1871$1.12
ETH<0.01%$0.0001696,546.5599$1.11
ETH<0.01%$0.06234117.7261$1.11
ETH<0.01%$1.20.9148$1.1
ETH<0.01%$0.03730729.4$1.1
ETH<0.01%$105,8410.00001032$1.09
ETH<0.01%$0.08087313.3732$1.08
ETH<0.01%$0.09399611.4973$1.08
ETH<0.01%$0.01579668.3441$1.08
ETH<0.01%$0.00855124.5538$1.06
ETH<0.01%<$0.0000013,004,136.1399$1.06
ETH<0.01%$0.0002953,502.2304$1.03
ETH<0.01%$0.005758178.9158$1.03
ETH<0.01%$0.00238430.4127$1.02
ETH<0.01%$0.01252479.3529$0.9938
ETH<0.01%$0.002955334.8835$0.9895
ETH<0.01%$0.9980460.9755$0.9735
ETH<0.01%$0.2905373.3085$0.9612
ETH<0.01%$0.0003372,852.1234$0.9597
ETH<0.01%<$0.000001142,159,822.0508$0.9561
ETH<0.01%$10.9553$0.9552
ETH<0.01%$0.0001039,241.1955$0.9517
ETH<0.01%$111.510.00840583$0.9373
ETH<0.01%$0.003122298.2824$0.9311
ETH<0.01%$0.004487207.2354$0.9299
ETH<0.01%$0.0003262,847.8178$0.9282
ETH<0.01%$0.006176148.404$0.9165
ETH<0.01%$0.128027.1487$0.9151
ETH<0.01%$0.6399021.42$0.9086
ETH<0.01%$0.0002094,317.8337$0.9035
ETH<0.01%$0.9999990.9019$0.9019
ETH<0.01%$0.004419203.4559$0.8991
ETH<0.01%$0.003201279.9816$0.8962
ETH<0.01%$0.00937694.4618$0.8856
ETH<0.01%$0.001414624.4252$0.883
ETH<0.01%$0.02200239.7453$0.8744
ETH<0.01%$0.002147403.9538$0.8673
ETH<0.01%$0.3910542.1939$0.8579
ETH<0.01%$0.004446192.6119$0.8563
ETH<0.01%$0.004416193.485$0.8544
ETH<0.01%$0.01502656.5114$0.8491
ETH<0.01%$664.030.001269$0.8426
ETH<0.01%$0.08212410.2453$0.8413
ETH<0.01%$0.002933286.0854$0.8389
ETH<0.01%$11.760.071$0.8351
ETH<0.01%$0.000223,781.0457$0.8332
ETH<0.01%$1.390.5928$0.8239
ETH<0.01%$0.0006231,303.389$0.8125
ETH<0.01%$0.1681474.7458$0.7979
ETH<0.01%$0.001368575.9012$0.7881
ETH<0.01%$0.0001555,000$0.7762
ETH<0.01%$0.0006021,275.728$0.7683
ETH<0.01%$0.01601147.2536$0.7565
ETH<0.01%$0.03872119.2168$0.744
ETH<0.01%<$0.000001327,291,333.2845$0.7389
ETH<0.01%$0.5243181.4033$0.7357
ETH<0.01%$0.01219558.4768$0.7131
ETH<0.01%$0.001876374.973$0.7033
ETH<0.01%$0.00706599.3667$0.702
ETH<0.01%$0.00004714,734.3662$0.6978
ETH<0.01%$0.001109628.5677$0.6971
ETH<0.01%$0.002359295.0329$0.6958
ETH<0.01%$27.70.0251$0.6939
ETH<0.01%<$0.000001210,734,113.7235$0.6899
ETH<0.01%$0.0163442.0478$0.687
ETH<0.01%$0.0252227.17$0.6852
ETH<0.01%$0.3363822.0225$0.6803
ETH<0.01%$0.1241625.3226$0.6608
ETH<0.01%$0.1381934.7748$0.6598
ETH<0.01%$2,551.260.00025535$0.6514
ETH<0.01%$0.4427771.4685$0.6501
ETH<0.01%$0.0000321,563.1394$0.6492
ETH<0.01%$0.06374110.1388$0.6462
ETH<0.01%$24,2450.00002642$0.6405
ETH<0.01%$0.2256782.7718$0.6255
ETH<0.01%$0.001846338.165$0.6242
ETH<0.01%$0.3880621.6028$0.6219
ETH<0.01%$0.00079780.6511$0.6166
ETH<0.01%$8.980.0687$0.6166
ETH<0.01%$0.001292471.2681$0.609
ETH<0.01%<$0.00000112,144,353.9375$0.6021
ETH<0.01%$0.0675098.8181$0.5952
ETH<0.01%$0.0929446.3882$0.5937
ETH<0.01%$0.00133444.4753$0.5913
ETH<0.01%$51.550.0114$0.5858
ETH<0.01%<$0.0000014,788,511.494$0.5858
ETH<0.01%$0.00002523,745.7217$0.5834
ETH<0.01%$0.6691350.8556$0.5725
ETH<0.01%$0.003543159.0519$0.5635
ETH<0.01%$0.0001513,730.1663$0.5625
ETH<0.01%$0.000077,964.8048$0.5604
ETH<0.01%$0.057559.7338$0.5601
ETH<0.01%$1.010.5514$0.5541
ETH<0.01%$0.0087262.4295$0.5443
ETH<0.01%$0.9410480.5664$0.533
ETH<0.01%$0.02279623.0696$0.5258
ETH<0.01%$0.00948254.7598$0.5192
ETH<0.01%$0.01757529.351$0.5158
ETH<0.01%$0.9977960.5121$0.5109
ETH<0.01%$0.00001147,876.0862$0.5108
ETH<0.01%$0.4737851.0699$0.5068
ETH<0.01%$0.9579160.5289$0.5066
ETH<0.01%$0.0845025.9912$0.5062
ETH<0.01%$0.002022247.4098$0.5002
ETH<0.01%$0.0000677,435.1659$0.4995
ETH<0.01%$0.00747966.6117$0.4981
ETH<0.01%$0.0003721,337.7158$0.4973
ETH<0.01%$0.001208409.9898$0.4953
ETH<0.01%$0.0830225.9202$0.4915
ETH<0.01%$0.00164299.7483$0.4914
ETH<0.01%$0.0003281,485.0793$0.4873
ETH<0.01%<$0.000001228,995,160.5939$0.4836
ETH<0.01%$0.2305222.0918$0.4821
ETH<0.01%$0.0002262,127.4196$0.4815
ETH<0.01%$0.02956215.8759$0.4693
ETH<0.01%$0.002201210.3059$0.4628
ETH<0.01%$0.02124621.3472$0.4535
ETH<0.01%$0.001037429.2628$0.4452
ETH<0.01%$0.0125635.2148$0.4422
ETH<0.01%$0.004362101.169$0.4412
ETH<0.01%$0.0458519.6219$0.4411
ETH<0.01%$0.03645811.9901$0.4371
ETH<0.01%$0.00591171.6744$0.4236
ETH<0.01%$0.02134419.8455$0.4235
ETH<0.01%<$0.0000016,874,781.804$0.4103
ETH<0.01%$0.0000439,586.704$0.4076
ETH<0.01%$0.001053374.5905$0.3945
ETH<0.01%$0.03260911.8492$0.3863
ETH<0.01%$0.4097740.9363$0.3836
ETH<0.01%<$0.000001998,994.3106$0.3792
ETH<0.01%$0.00001919,967.2434$0.3779
ETH<0.01%$0.01744221.6033$0.3768
ETH<0.01%$0.000001327,713.1347$0.3768
ETH<0.01%$0.0148425.3488$0.3761
ETH<0.01%<$0.00000162,430,334.651$0.3699
ETH<0.01%$0.0814444.4799$0.3648
ETH<0.01%$0.00719950.6373$0.3645
ETH<0.01%$0.0912913.8835$0.3545
ETH<0.01%$0.00003410,348.608$0.3543
ETH<0.01%$0.001193295.4177$0.3525
ETH<0.01%$0.00281125.1558$0.3517
ETH<0.01%$1.130.3072$0.3471
ETH<0.01%$0.001438241.0665$0.3466
ETH<0.01%$0.00002812,260.8991$0.3453
ETH<0.01%$0.0001562,192.0432$0.341
ETH<0.01%<$0.000001915,847.7781$0.3401
ETH<0.01%$0.2822951.2042$0.3399
ETH<0.01%$0.1580652.0945$0.331
ETH<0.01%$0.002599126.108$0.3278
ETH<0.01%$0.001021318.2648$0.3248
ETH<0.01%$0.001132281.094$0.3183
ETH<0.01%$0.000971327.8467$0.3183
ETH<0.01%$0.00000566,132$0.3055
ETH<0.01%$0.9891380.3$0.2967
ETH<0.01%$0.0384397.6472$0.2939
ETH<0.01%$0.0001821,604.7089$0.2923
ETH<0.01%<$0.000001335,574,268.7172$0.292
ETH<0.01%$0.001371212.6737$0.2916
ETH<0.01%$0.0001382,061.5159$0.2854
ETH<0.01%$0.403490.7016$0.2831
ETH<0.01%$0.4745090.591$0.2804
ETH<0.01%$0.02125813.0574$0.2775
ETH<0.01%<$0.00000160,000,000$0.2702
ETH<0.01%$0.002414110.0245$0.2655
ETH<0.01%$0.00571345.5139$0.26
ETH<0.01%$0.001326192.8312$0.2556
ETH<0.01%$0.9989820.2553$0.255
ETH<0.01%$1.450.1758$0.2542
ETH<0.01%$0.0822963.0794$0.2534
ETH<0.01%$0.000719350.6511$0.2522
ETH<0.01%$0.0728713.2707$0.2383
ETH<0.01%$0.1660071.4281$0.237
ETH<0.01%$0.00000387,084.7208$0.2328
ETH<0.01%$0.0000376,193.3264$0.2319
ETH<0.01%$0.000399580.2264$0.2315
ETH<0.01%$0.4729860.486$0.2298
ETH<0.01%$0.001848124.08$0.2292
ETH<0.01%$0.0000211,653.6115$0.2282
ETH<0.01%$0.0114419.712$0.2254
ETH<0.01%$0.01436415.6517$0.2248
ETH<0.01%$0.0000455,000$0.2244
ETH<0.01%$0.512520.4349$0.2229
ETH<0.01%$0.00582238.2122$0.2224
ETH<0.01%$0.0614433.6192$0.2223
ETH<0.01%$0.000964228.6463$0.2205
ETH<0.01%$0.00949322.9782$0.2181
ETH<0.01%$0.9998660.218$0.2179
ETH<0.01%$0.000001220,483.5292$0.2131
ETH<0.01%$0.01414215.0407$0.2127
ETH<0.01%$0.00001514,425.9823$0.2109
ETH<0.01%$0.0000852,460.0353$0.209
ETH<0.01%$0.9998830.2085$0.2084
ETH<0.01%$0.4155850.5009$0.2081
ETH<0.01%$0.0458424.4993$0.2062
ETH<0.01%$3,039.80.00006625$0.2013
ETH<0.01%$0.000738270.9257$0.1998
ETH<0.01%<$0.0000013,153,822.559$0.1964
ETH<0.01%$0.3682820.52$0.1915
ETH<0.01%$0.000948197.877$0.1876
ETH<0.01%$97.950.00188741$0.1848
ETH<0.01%$871.460.00021163$0.1844
ETH<0.01%$0.00122150.5657$0.1837
ETH<0.01%$0.000612295.609$0.1808
ETH<0.01%$0.0344985.234$0.1805
ETH<0.01%$0.01565311.3563$0.1777
ETH<0.01%$0.01530311.3981$0.1744
ETH<0.01%$0.1123321.543$0.1733
ETH<0.01%$0.000801216.15$0.173
ETH<0.01%$0.00227176.0823$0.1727
ETH<0.01%$0.142671.1755$0.1677
ETH<0.01%$0.1466971.1436$0.1677
ETH<0.01%$0.00049341.272$0.1671
ETH<0.01%$0.000035,566.9361$0.1643
ETH<0.01%$105,2210.00000155$0.163
ETH<0.01%$0.01215413.1742$0.1601
ETH<0.01%$0.00590425.8157$0.1524
ETH<0.01%$0.00289452.1944$0.151
ETH<0.01%$0.0000981,524.6155$0.1497
ETH<0.01%<$0.0000012,847,680.8224$0.1489
ETH<0.01%<$0.0000011,399,486.6488$0.1485
ETH<0.01%$0.0360844.1022$0.148
ETH<0.01%$0.0282315.2313$0.1476
ETH<0.01%$0.00372439.0406$0.1453
ETH<0.01%$0.00159390$0.1433
ETH<0.01%$0.01301810.8832$0.1416
ETH<0.01%$0.000574246.5299$0.1415
ETH<0.01%$0.0001151,216.3635$0.1403
ETH<0.01%$0.00586123.4957$0.1377
ETH<0.01%$0.00023598.3818$0.1375
ETH<0.01%<$0.000001983,836.8093$0.1368
ETH<0.01%$3.880.035$0.1358
ETH<0.01%<$0.000001134,697,241.0404$0.1353
ETH<0.01%$0.00802516.8537$0.1352
ETH<0.01%$0.6983620.1899$0.1326
ETH<0.01%$7.010.0189$0.1325
ETH<0.01%$0.000132988.7193$0.1307
ETH<0.01%$0.6466510.2015$0.1303
ETH<0.01%$0.0683281.8995$0.1297
ETH<0.01%$0.00000718,631.5666$0.1283
ETH<0.01%$2.120.0601$0.1274
ETH<0.01%$0.3528490.3538$0.1248
ETH<0.01%$0.0179616.8966$0.1238
ETH<0.01%$0.0000961,276.3983$0.122
ETH<0.01%$0.00046260.5356$0.1199
ETH<0.01%$0.000595199.4095$0.1186
ETH<0.01%$0.000399295.4686$0.1178
ETH<0.01%<$0.000001237,452.4279$0.1173
ETH<0.01%$0.0300133.854$0.1156
ETH<0.01%$0.0141977.9705$0.1131
ETH<0.01%$0.00277640.4316$0.1122
ETH<0.01%$2,743.130.00004055$0.1112
ETH<0.01%$0.00665416.5794$0.1103
ETH<0.01%$0.00825113.2427$0.1092
ETH<0.01%$0.0121098.9765$0.1086
ETH<0.01%$0.000366293.3116$0.1073
ETH<0.01%$0.7386230.1451$0.1071
ETH<0.01%$0.00177559.3164$0.1052
ETH<0.01%$0.000001165,827.6803$0.1034
ETH<0.01%$0.0000343,058.4771$0.1027
ETH<0.01%$0.00823412.3766$0.1019
ETH<0.01%<$0.000001917,211,102.6004$0.1015
ETH<0.01%$0.0163346.1682$0.1007
ETH<0.01%$0.0000362,780.9024$0.1005
ARB5.53%$0.9997815,583.5435$5,582.32
ARB4.40%$2,560.281.7342$4,440.01
ARB2.99%$105,5830.0286$3,021.5
ARB2.08%$2,562.450.8182$2,096.64
ARB0.64%$1648.6676$648.67
ARB0.58%$0.999982586.4981$586.49
ARB0.54%$285.191.9108$544.93
ARB0.43%$0.999781433.6774$433.58
ARB0.32%$13.324.1915$321.75
ARB0.15%$3,085.560.0476$146.85
ARB0.04%$0.99974841.1556$41.15
ARB0.02%$7.523.0459$22.91
ARB0.02%$0.04231494.413$20.92
ARB0.02%$0.0000111,656,672.383$18.42
ARB0.01%$0.0078741,742.9182$13.72
ARB0.01%$3.852.8681$11.04
ARB0.01%$0.11695993.9041$10.98
ARB0.01%$52.720.2037$10.74
ARB<0.01%$15.050.6552$9.86
ARB<0.01%$7.011.3993$9.81
ARB<0.01%$1.098.6523$9.46
ARB<0.01%$0.021604376.4568$8.13
ARB<0.01%$0.00041718,564.6131$7.74
ARB<0.01%$2.432.6908$6.54
ARB<0.01%$2,557.630.00234391$5.99
ARB<0.01%$0.0004811,801.7743$5.67
ARB<0.01%$0.6137527.3509$4.51
ARB<0.01%$0.05872274.503$4.37
ARB<0.01%$1.093.9095$4.27
ARB<0.01%$0.9926353.6169$3.59
ARB<0.01%$0.34467310.2311$3.53
ARB<0.01%$2,912.970.0011986$3.49
ARB<0.01%$0.23412213.3155$3.12
ARB<0.01%$13.1097$3.11
ARB<0.01%$0.9988342.7491$2.75
ARB<0.01%$21.3204$2.64
ARB<0.01%$12.4004$2.4
ARB<0.01%$343.30.00634329$2.18
ARB<0.01%$105,3400.0000192$2.02
ARB<0.01%$0.14590213.7485$2.01
ARB<0.01%$105,6470.00001878$1.98
ARB<0.01%$2.490.7386$1.84
ARB<0.01%$0.005171320.8641$1.66
ARB<0.01%$0.002721608.0288$1.65
ARB<0.01%$105,6710.00001531$1.62
ARB<0.01%$2.960.4598$1.36
ARB<0.01%<$0.00000113,263,509,025.7531$1.33
ARB<0.01%$1.071.2299$1.32
ARB<0.01%$0.8147821.5857$1.29
ARB<0.01%$11.2745$1.27
ARB<0.01%$0.0003753,391.2508$1.27
ARB<0.01%$0.00867146.5507$1.27
ARB<0.01%$3.630.315$1.14
ARB<0.01%$0.08763112.4852$1.09
ARB<0.01%$0.00005918,010.8673$1.06
ARB<0.01%$0.01781957.8638$1.03
ARB<0.01%<$0.00000112,673,646.9959$1.03
ARB<0.01%$0.004474208.1864$0.9314
ARB<0.01%$0.04736918.4481$0.8738
ARB<0.01%$1.010.7982$0.8045
ARB<0.01%$0.0929638.5436$0.7942
ARB<0.01%$0.06837711.0357$0.7545
ARB<0.01%$0.0831298.5624$0.7117
ARB<0.01%$0.1694254.0711$0.6897
ARB<0.01%$0.004448151.0753$0.672
ARB<0.01%$0.003008220.221$0.6624
ARB<0.01%$0.0800748.1375$0.6515
ARB<0.01%$0.000687834.348$0.5734
ARB<0.01%$0.9991860.5032$0.5027
ARB<0.01%$10.4399$0.4399
ARB<0.01%$0.02976914.1352$0.4207
ARB<0.01%$0.0000665,401.5153$0.3555
ARB<0.01%$0.9998340.268$0.2679
ARB<0.01%$0.000002122,965.5823$0.2656
ARB<0.01%$0.030626.9832$0.2138
ARB<0.01%$10.1923$0.1929
ARB<0.01%$0.999210.1779$0.1777
ARB<0.01%$1.030.1564$0.1613
ARB<0.01%$105,7790.00000138$0.1459
ARB<0.01%$0.9132340.1584$0.1446
ARB<0.01%$0.3421080.4146$0.1418
ARB<0.01%$0.00264445.6854$0.1208
ARB<0.01%$0.3522240.3293$0.1159
ARB<0.01%$0.00647416.7318$0.1083
BASE6.84%$105,3830.0655$6,897.34
BASE4.05%$0.9997354,085.9258$4,084.84
BASE3.37%$2,561.711.3268$3,398.95
BASE1.22%$0.06271919,690.2413$1,234.94
BASE0.13%$0.999552132.0743$132.02
BASE0.11%$2,563.050.0428$109.72
BASE0.09%$0.99976493.116$93.09
BASE0.09%$0.045371,963.783$89.1
BASE0.07%$3.0523.2826$71.01
BASE0.05%$0.0180643,005.5333$54.29
BASE0.05%$0.00354814,985.33$53.17
BASE0.05%$2,903.190.0159$46.27
BASE0.05%$0.088466514.7701$45.54
BASE0.04%$1.527.9472$41.92
BASE0.04%$0.71318858.6498$41.83
BASE0.04%$0.066029577.1289$38.11
BASE0.03%$285.730.1176$33.6
BASE0.03%$0.84916335.1477$29.85
BASE0.03%$0.0203671,452.23$29.58
BASE0.03%$0.073899356.1585$26.32
BASE0.02%$0.0039656,343.4129$25.15
BASE0.02%$7.643.1776$24.28
BASE0.02%$0.00037360,971.0797$22.77
BASE0.02%$105,6530.00019935$21.06
BASE0.02%$1.8711.1882$20.92
BASE0.02%$0.00109718,257.1341$20.02
BASE0.02%$0.0048834,097.2124$20.01
BASE0.02%$1.1516.685$19.19
BASE0.02%$0.9998818.9467$18.94
BASE0.02%$0.97292518.3669$17.87
BASE0.02%$0.065732262.2$17.23
BASE0.02%$0.99983516.5125$16.51
BASE0.02%$0.0022427,080.2431$15.88
BASE0.01%$0.0046083,145.8841$14.5
BASE0.01%$0.028303499.5057$14.14
BASE0.01%$0.0023195,637.0633$13.07
BASE0.01%$0.034407379.3719$13.05
BASE0.01%$26.2919$12.58
BASE0.01%$24.370.4568$11.13
BASE0.01%$0.053397204.0142$10.89
BASE0.01%$0.5484719.5944$10.75
BASE0.01%$0.00053119,208.6582$10.2
BASE<0.01%$0.0000071,310,951.7997$9.66
BASE<0.01%$0.0017545,454.3309$9.57
BASE<0.01%$0.050076180.6464$9.05
BASE<0.01%$0.76735811.6033$8.9
BASE<0.01%$0.0038562,281.7655$8.8
BASE<0.01%$0.026231334.9625$8.79
BASE<0.01%$0.000013659,252.9354$8.46
BASE<0.01%$0.000025338,286.7554$8.45
BASE<0.01%$2,738.730.00302975$8.3
BASE<0.01%$0.0034992,360.5567$8.26
BASE<0.01%$0.050268161.4829$8.12
BASE<0.01%$0.00027526,667.4799$7.35
BASE<0.01%$0.005321,349.1151$7.18
BASE<0.01%$0.15788643.0279$6.79
BASE<0.01%$0.9997786.6914$6.69
BASE<0.01%$0.0013964,785.7705$6.68
BASE<0.01%$0.17072138.3103$6.54
BASE<0.01%$0.0050931,283.4287$6.54
BASE<0.01%$0.008158792.2942$6.46
BASE<0.01%$0.15858938.6961$6.14
BASE<0.01%$0.0014414,232.7124$6.1
BASE<0.01%$0.4514413.3909$6.05
BASE<0.01%$0.021771272.8081$5.94
BASE<0.01%<$0.000001303,291,573.2515$5.82
BASE<0.01%$0.007192748.7423$5.39
BASE<0.01%$0.014635357.7186$5.24
BASE<0.01%$0.014658354.3486$5.19
BASE<0.01%$0.0005719,030.3216$5.15
BASE<0.01%$0.0005698,922.8094$5.08
BASE<0.01%$0.026399190.5778$5.03
BASE<0.01%$1.53.351$5.03
BASE<0.01%$0.013443358.2962$4.82
BASE<0.01%$0.41533311.4396$4.75
BASE<0.01%$0.016422285.0695$4.68
BASE<0.01%$3.191.444$4.61
BASE<0.01%$0.00041610,607.6884$4.41
BASE<0.01%$1.143.7111$4.23
BASE<0.01%$0.04928684.613$4.17
BASE<0.01%$0.00026615,564.1706$4.14
BASE<0.01%$183.040.022$4.03
BASE<0.01%$0.0020841,890.8106$3.94
BASE<0.01%$0.000517,555.1699$3.86
BASE<0.01%$0.0014612,606.0313$3.81
BASE<0.01%$2.591.4691$3.81
BASE<0.01%$0.005638666.3458$3.76
BASE<0.01%$0.005706650.0035$3.71
BASE<0.01%$0.00469787.659$3.69
BASE<0.01%$0.030403119.4164$3.63
BASE<0.01%$0.000012290,085.7694$3.37
BASE<0.01%$2,725.390.00121817$3.32
BASE<0.01%$0.007817422.3714$3.3
BASE<0.01%$0.0004836,478.0605$3.13
BASE<0.01%$0.0008153,632.243$2.96
BASE<0.01%$0.011137235.8745$2.63
BASE<0.01%$0.6132914.2467$2.6
BASE<0.01%$2,817.770.00091864$2.59
BASE<0.01%$0.03755768.6473$2.58
BASE<0.01%$0.04883652.191$2.55
BASE<0.01%$0.4343725.7906$2.52
BASE<0.01%$0.2597339.5187$2.47
BASE<0.01%$0.004013605.095$2.43
BASE<0.01%$0.0013321,798.9695$2.4
BASE<0.01%$1.012.1863$2.21
BASE<0.01%$0.019858108.974$2.16
BASE<0.01%$0.000018115,692.0711$2.08
BASE<0.01%$0.000018115,692.0711$2.08
BASE<0.01%$0.005704357.1892$2.04
BASE<0.01%$0.00014513,627.1972$1.98
BASE<0.01%$0.16600911.4767$1.91
BASE<0.01%$0.14611512.7597$1.86
BASE<0.01%$0.02276181.586$1.86
BASE<0.01%$0.5144023.3563$1.73
BASE<0.01%$0.00002860,869.3497$1.7
BASE<0.01%$0.8749681.7731$1.55
BASE<0.01%$3,090.830.00050159$1.55
BASE<0.01%$0.0002466,129.2837$1.5
BASE<0.01%$0.008602174.5197$1.5
BASE<0.01%$0.0007152,081.5162$1.49
BASE<0.01%$0.006374233.1437$1.49
BASE<0.01%$0.0006092,424.4196$1.48
BASE<0.01%$0.1666458.2235$1.37
BASE<0.01%$0.9986551.3567$1.35
BASE<0.01%$0.000011125,764.3038$1.35
BASE<0.01%$0.003979335.118$1.33
BASE<0.01%$0.003625367.8162$1.33
BASE<0.01%$0.01440990.8486$1.31
BASE<0.01%$0.01311597.6533$1.28
BASE<0.01%$0.00001126,269.2054$1.26
BASE<0.01%$0.4855872.5834$1.25
BASE<0.01%$0.005332227.0333$1.21
BASE<0.01%$0.14738.0161$1.18
BASE<0.01%$0.02987638.9669$1.16
BASE<0.01%$0.002572442.1966$1.14
BASE<0.01%$1.061.0606$1.12
BASE<0.01%$0.003577300.0104$1.07
BASE<0.01%$0.01203887.1164$1.05
BASE<0.01%$0.0003253,215.889$1.04
BASE<0.01%$0.615591.6793$1.03
BASE<0.01%$0.000003340,090.439$0.959
BASE<0.01%$0.000001645,097.9297$0.9547
BASE<0.01%$0.0009441,008.0403$0.9513
BASE<0.01%$105,3640.00000823$0.8675
BASE<0.01%<$0.0000011,232,468,578.9682$0.8627
BASE<0.01%$0.00005315,845.5886$0.832
BASE<0.01%$0.001991412.2009$0.8205
BASE<0.01%$0.9936140.807$0.8018
BASE<0.01%$0.07235310.3788$0.7509
BASE<0.01%$0.00002528,000.816$0.6963
BASE<0.01%$0.002293288.4988$0.6614
BASE<0.01%$0.00002130,575.3021$0.6368
BASE<0.01%$1.020.624$0.6352
BASE<0.01%$12.20.0505$0.6166
BASE<0.01%<$0.0000011,221,522,047.4476$0.6107
BASE<0.01%$0.01707835.3721$0.604
BASE<0.01%$0.4075541.4752$0.6012
BASE<0.01%$0.02300125.3158$0.5822
BASE<0.01%$0.1776593.2634$0.5797
BASE<0.01%$0.000671838.0553$0.5619
BASE<0.01%$0.0611098.6026$0.5256
BASE<0.01%$0.098555.2816$0.5205
BASE<0.01%$2,700.560.00019214$0.5188
BASE<0.01%$0.9985470.5117$0.5109
BASE<0.01%$0.01974325.5536$0.5044
BASE<0.01%$0.0891055.4545$0.486
BASE<0.01%$0.004444105.0022$0.4666
BASE<0.01%$0.003615126.4224$0.457
BASE<0.01%$0.0000222,346.4603$0.4464
BASE<0.01%$0.0001024,380.6154$0.446
BASE<0.01%$0.000002231,836.0367$0.4312
BASE<0.01%$3.540.118$0.4177
BASE<0.01%$0.00470888.1405$0.4149
BASE<0.01%$0.0004091,000.349$0.4088
BASE<0.01%<$0.0000014,053,776,667.693$0.4053
BASE<0.01%$0.1481542.6639$0.3946
BASE<0.01%$0.0000137,174.677$0.3795
BASE<0.01%$0.00453883.1298$0.3772
BASE<0.01%$0.00583163.7716$0.3718
BASE<0.01%$10.3542$0.3542
BASE<0.01%$0.00376790.8048$0.342
BASE<0.01%$0.00002114,696.6927$0.3152
BASE<0.01%<$0.00000124,586,078.3393$0.3122
BASE<0.01%$0.001353224.4361$0.3037
BASE<0.01%$0.0001142,587.4376$0.2941
BASE<0.01%$0.0243411.9672$0.2912
BASE<0.01%$0.000381740.004$0.2816
BASE<0.01%$0.02433911.4406$0.2784
BASE<0.01%$2,561.120.00010266$0.2629
BASE<0.01%$0.001718151.9021$0.261
BASE<0.01%$0.0683013.7504$0.2561
BASE<0.01%$0.001549164.9853$0.2555
BASE<0.01%$0.001998127.7267$0.2552
BASE<0.01%$0.000002152,640.6981$0.2442
BASE<0.01%$0.1855981.2451$0.231
BASE<0.01%$0.0000239,575.6362$0.2168
BASE<0.01%$2.140.0989$0.2116
BASE<0.01%$105,6280.00000191$0.2017
BASE<0.01%$0.00340857.5835$0.1962
BASE<0.01%$0.8095790.2341$0.1895
BASE<0.01%$1.460.1285$0.1876
BASE<0.01%$0.00920920.2572$0.1865
BASE<0.01%$0.000455408.1305$0.1858
BASE<0.01%$0.000271685.6925$0.1856
BASE<0.01%<$0.0000014,186,719.182$0.1729
BASE<0.01%<$0.00000184,561,458.7427$0.1691
BASE<0.01%$0.00000271,051.0938$0.1534
BASE<0.01%<$0.000001638,481.0527$0.1468
BASE<0.01%$0.0759241.8977$0.144
BASE<0.01%$0.1309591.0505$0.1375
BASE<0.01%$0.0030844.0619$0.1357
BASE<0.01%$0.0805431.6338$0.1315
BASE<0.01%$0.2280990.5419$0.1236
BASE<0.01%$0.0218655.5677$0.1217
BASE<0.01%$0.0061719.5115$0.1203
BASE<0.01%$0.9998140.1166$0.1166
BASE<0.01%$0.00325735.5081$0.1156
BASE<0.01%$0.7342730.1529$0.1122
BASE<0.01%$1.20.0909$0.1091
BASE<0.01%<$0.00000135,409,264.6923$0.1062
BASE<0.01%$0.012698.2181$0.1042
BASE<0.01%$0.4446310.228$0.1013
POL10.92%$0.42640125,838.2316$11,017.45
POL0.60%$1607.403$607.4
POL0.41%$2,561.120.1602$410.23
POL0.36%$0.999757367.8985$367.81
POL0.26%$105,6740.00249251$263.39
POL0.11%$0.999757111.1629$111.14
POL0.10%$0.99988699.27$99.26
POL0.07%$0.236607289.2516$68.44
POL0.04%$0.178837218.5564$39.09
POL0.03%$7.524.237$31.86
POL0.03%$13.312.3667$31.5
POL0.02%$0.0020211,600.6392$23.43
POL0.01%$3,085.410.00478198$14.75
POL0.01%$0.19388371.129$13.79
POL0.01%$0.61265321.9368$13.44
POL0.01%$0.20339656.3423$11.46
POL<0.01%$6.191.5668$9.7
POL<0.01%$0.20325744.7258$9.09
POL<0.01%$1.165.7107$6.62
POL<0.01%$1.165.7107$6.62
POL<0.01%$0.0009456,902.7324$6.52
POL<0.01%$0.33324217.8179$5.94
POL<0.01%$284.770.02$5.69
POL<0.01%$0.050259111.8459$5.62
POL<0.01%$0.018287283.2533$5.18
POL<0.01%$0.048178104.2838$5.02
POL<0.01%$0.026449154.1294$4.08
POL<0.01%$0.9991773.4921$3.49
POL<0.01%$19.10.179$3.42
POL<0.01%$0.5317596.0757$3.23
POL<0.01%$0.08189139.3127$3.22
POL<0.01%$0.018226159.2786$2.9
POL<0.01%$0.2666939.931$2.65
POL<0.01%$0.22907210.5139$2.41
POL<0.01%$0.02364898.1402$2.32
POL<0.01%$0.2923567.4623$2.18
POL<0.01%$0.00006533,373.6923$2.18
POL<0.01%$0.4759864.2362$2.02
POL<0.01%$0.18851310.6314$2
POL<0.01%$0.3785094.6799$1.77
POL<0.01%<$0.000001205,072,941.591$1.66
POL<0.01%$0.004656351.7355$1.64
POL<0.01%$0.003506459.14$1.61
POL<0.01%$0.2657546.0026$1.6
POL<0.01%$1.391.1353$1.58
POL<0.01%$0.2029427.4264$1.51
POL<0.01%$0.06320221.015$1.33
POL<0.01%$0.1482058.9484$1.33
POL<0.01%$0.0006122,023.3828$1.24
POL<0.01%$0.7789011.5484$1.21
POL<0.01%$0.000313,539.3206$1.1
POL<0.01%$0.0004092,631.9984$1.08
POL<0.01%$0.01182790.8897$1.07
POL<0.01%$3.430.3089$1.06
POL<0.01%<$0.0000019,810,976.2252$0.982
POL<0.01%$10.9779$0.9778
POL<0.01%$0.0001436,730.0197$0.9641
POL<0.01%$0.005165182.3338$0.9416
POL<0.01%$0.000136,855.2296$0.893
POL<0.01%$0.0251534.9148$0.878
POL<0.01%$0.00001546,930.8155$0.6933
POL<0.01%$0.00691799.7466$0.6899
POL<0.01%$0.001291525.5333$0.6783
POL<0.01%$0.8154380.8079$0.6587
POL<0.01%$0.001234526.8223$0.6502
POL<0.01%$0.000755835.659$0.6306
POL<0.01%$0.002291272.9097$0.6253
POL<0.01%$0.2605462.2893$0.5964
POL<0.01%$0.001438409.7068$0.5891
POL<0.01%$0.004661124.4352$0.58
POL<0.01%$0.0074966.086$0.495
POL<0.01%$0.0521379.4799$0.4942
POL<0.01%$0.00001240,981.2212$0.4938
POL<0.01%$0.0876765.5945$0.4905
POL<0.01%<$0.000001101,041,814.487$0.4748
POL<0.01%$0.0576198.164$0.4704
POL<0.01%$0.004052114.17$0.4626
POL<0.01%$0.0537497.5287$0.4046
POL<0.01%$0.0002931,370.2334$0.4008
POL<0.01%$0.9998960.4003$0.4002
POL<0.01%$19.980.0198$0.396
POL<0.01%$0.1693692.3303$0.3946
POL<0.01%$0.2318581.6622$0.3853
POL<0.01%$0.002814135.08$0.3801
POL<0.01%$0.093923.5489$0.3333
POL<0.01%$0.002012155.3024$0.3124
POL<0.01%$20.1549$0.3098
POL<0.01%$0.001594186.9242$0.2979
POL<0.01%$0.0335617.863$0.2638
POL<0.01%$3,459.40.00007167$0.2479
POL<0.01%$2,562.280.00009608$0.2461
POL<0.01%$0.001592152.5164$0.2428
POL<0.01%$0.0852142.6806$0.2284
POL<0.01%$0.000655335.1815$0.2195
POL<0.01%$0.0000643,320.39$0.2116
POL<0.01%$0.00206589.5683$0.1849
POL<0.01%$0.1313641.3683$0.1797
POL<0.01%$3.940.0448$0.1764
POL<0.01%$0.00358946.1363$0.1655
POL<0.01%$0.9969780.1643$0.1638
POL<0.01%$0.0223646.6787$0.1493
POL<0.01%$152.740.00097068$0.1482
POL<0.01%<$0.0000011,201,294.7399$0.1459
POL<0.01%$0.6718770.2127$0.1429
POL<0.01%$0.000348376.3009$0.1308
POL<0.01%$16.220.00768573$0.1246
POL<0.01%$147.390.00083056$0.1224
POL<0.01%$52.690.00231633$0.122
POL<0.01%$0.00537922.6087$0.1216
POL<0.01%$0.000545214.5864$0.1169
POL<0.01%$0.071171.6181$0.1151
POL<0.01%$2,821.710.00003632$0.1024
POL<0.01%$10.1011$0.1011
BSC0.84%$1842.558$842.56
BSC0.78%$0.00907387,182.5127$791.04
BSC0.51%$2.14242.5163$519.43
BSC0.39%$115.473.3944$391.95
BSC0.33%$2,561.120.1288$329.79
BSC0.28%$654.110.4293$280.81
BSC0.25%$653.720.3853$251.85
BSC0.23%$0.999823232.9289$232.89
BSC0.16%$105,691.960.00156502$165.41
BSC0.16%$1162.67$162.79
BSC0.14%<$0.0000013,424,175,861.9965$137.6
BSC0.08%$0.000324262,565.7544$85.18
BSC0.04%$0.069399597.9423$41.5
BSC0.04%<$0.000001720,081,753.5297$39.23
BSC0.03%$0.18801181.1131$34.05
BSC0.03%$0.99983431.9577$31.95
BSC0.03%$1.323.2074$30.23
BSC0.03%$2.4811.7688$29.19
BSC0.03%$2.6110.2393$26.72
BSC0.02%<$0.00000119,125,657,107.3294$24.35
BSC0.02%$0.026323810.2896$21.33
BSC0.02%$147.860.1401$20.71
BSC0.02%$0.0000121,657,367.1486$19.98
BSC0.02%$0.46051642.8207$19.72
BSC0.02%$0.29892962.7723$18.76
BSC0.02%$0.01925967.2089$18.62
BSC0.02%$0.0002569,396.7897$17.35
BSC0.02%$2.446.8062$16.64
BSC0.02%$0.63924925.4581$16.27
BSC0.01%$0.0084621,751.8921$14.82
BSC0.01%$0.0113821,293.3975$14.72
BSC0.01%$1.2911.1328$14.35
BSC0.01%$0.41040534.129$14.01
BSC0.01%$0.99988613.764$13.76
BSC0.01%$3.014.1927$12.62
BSC0.01%$0.2917141.5517$12.12
BSC0.01%$284.790.0393$11.19
BSC0.01%$111.1235$11.12
BSC0.01%$0.52422221.1777$11.1
BSC0.01%$2.224.815$10.67
BSC0.01%$0.12136485.8914$10.42
BSC0.01%$0.00010696,044.3317$10.13
BSC<0.01%$0.046467216.7886$10.07
BSC<0.01%$0.00049220,045.5111$9.86
BSC<0.01%$105,6740.00009246$9.77
BSC<0.01%$7.511.2989$9.76
BSC<0.01%$0.0011768,288.0674$9.75
BSC<0.01%<$0.0000016,010,301,130.6193$9.73
BSC<0.01%$0.0021674,310.8888$9.34
BSC<0.01%$0.13008771.7397$9.33
BSC<0.01%$13.310.6965$9.27
BSC<0.01%$3.822.3306$8.91
BSC<0.01%$0.23977136.8554$8.84
BSC<0.01%$6.081.3589$8.26
BSC<0.01%$0.2279936.1529$8.24
BSC<0.01%$0.001834,414.02$8.08
BSC<0.01%$0.8354849.5426$7.97
BSC<0.01%<$0.000001558,062,722.6657$7.96
BSC<0.01%$0.0000015,445,120.9701$7.79
BSC<0.01%$0.09121384.2297$7.68
BSC<0.01%$0.0000061,165,185.3619$7.22
BSC<0.01%<$0.0000013,139,447,773,886.502$7.22
BSC<0.01%$0.9983637.109$7.1
BSC<0.01%$0.29199524.0445$7.02
BSC<0.01%$0.0029782,342.1553$6.97
BSC<0.01%$0.07157297.1376$6.95
BSC<0.01%$0.07617691.0407$6.94
BSC<0.01%$0.033494205.089$6.87
BSC<0.01%$0.01067640.9011$6.84
BSC<0.01%$0.000015461,343.1534$6.82
BSC<0.01%$0.7816138.7212$6.82
BSC<0.01%$0.6907479.5369$6.59
BSC<0.01%$0.06735496.8616$6.52
BSC<0.01%$11.690.558$6.52
BSC<0.01%$0.009459689.4465$6.52
BSC<0.01%$0.0046341,302.6002$6.04
BSC<0.01%$0.030004199.1957$5.98
BSC<0.01%$0.013929426.1318$5.94
BSC<0.01%$2.012.9241$5.88
BSC<0.01%$0.9977615.686$5.67
BSC<0.01%$85.740.0649$5.56
BSC<0.01%$0.20392627.009$5.51
BSC<0.01%$0.029263185.6958$5.43
BSC<0.01%$0.00016931,467.8581$5.31
BSC<0.01%<$0.000001278,416,278.2391$5.19
BSC<0.01%<$0.00000142,634,741.0337$5.18
BSC<0.01%$0.008718593.6925$5.18
BSC<0.01%$0.0013433,782.2884$5.08
BSC<0.01%$0.27101218.7138$5.07
BSC<0.01%$4.121.2248$5.04
BSC<0.01%$0.20450124.4522$5
BSC<0.01%$1.832.7241$4.99
BSC<0.01%$0.019208255.0172$4.9
BSC<0.01%$0.09420251.9781$4.9
BSC<0.01%$0.09861848.7425$4.81
BSC<0.01%$0.16942228.287$4.79
BSC<0.01%$0.00006177,613.0928$4.76
BSC<0.01%$0.002122,237.896$4.74
BSC<0.01%$0.6235317.5585$4.71
BSC<0.01%$0.0000016,561,913.292$4.4
BSC<0.01%$2.611.6336$4.26
BSC<0.01%$0.037885108.4404$4.11
BSC<0.01%$2.11.9399$4.07
BSC<0.01%$438.430.00904081$3.96
BSC<0.01%$5.350.7252$3.88
BSC<0.01%$0.012472306.5676$3.82
BSC<0.01%$16.830.2252$3.79
BSC<0.01%$0.008686429.6792$3.73
BSC<0.01%$0.008325446.8436$3.72
BSC<0.01%$0.00007946,789.845$3.7
BSC<0.01%$0.019245190.279$3.66
BSC<0.01%$0.00001382,679.8365$3.66
BSC<0.01%$0.00005264,657.1365$3.38
BSC<0.01%$0.09080737.0429$3.36
BSC<0.01%$0.26003312.7494$3.32
BSC<0.01%$0.00014123,053.3947$3.25
BSC<0.01%$0.0005585,600.006$3.12
BSC<0.01%$0.0004996,212.9019$3.1
BSC<0.01%$0.07123143.363$3.09
BSC<0.01%$0.004770.8749$3.08
BSC<0.01%$0.01105278.0642$3.07
BSC<0.01%$0.04616765.6183$3.03
BSC<0.01%$0.0003428,773.8283$3
BSC<0.01%$0.015115194.7738$2.94
BSC<0.01%$8.960.3209$2.88
BSC<0.01%$19.290.149$2.87
BSC<0.01%$0.015038186.4996$2.8
BSC<0.01%$0.022536123.2433$2.78
BSC<0.01%$0.002831971.1798$2.75
BSC<0.01%$0.19578513.5717$2.66
BSC<0.01%$0.5918964.4522$2.64
BSC<0.01%$0.14063918.6225$2.62
BSC<0.01%$0.00009727,032.8683$2.61
BSC<0.01%$0.5638164.5704$2.58
BSC<0.01%<$0.00000161,569,609.966$2.57
BSC<0.01%$2.161.1625$2.51
BSC<0.01%$0.000011219,820.8909$2.44
BSC<0.01%$0.0005624,288.3788$2.41
BSC<0.01%$0.016906140.9427$2.38
BSC<0.01%$0.00014616,225.7022$2.37
BSC<0.01%$0.0187126.2682$2.36
BSC<0.01%$0.03347267.829$2.27
BSC<0.01%$0.5256584.311$2.27
BSC<0.01%$0.6379193.5111$2.24
BSC<0.01%$0.020709106$2.2
BSC<0.01%$0.02397391.4316$2.19
BSC<0.01%$0.2620288.3021$2.18
BSC<0.01%$0.010169210.7916$2.14
BSC<0.01%$0.3529526.0602$2.14
BSC<0.01%$0.008107261.0458$2.12
BSC<0.01%$0.15796712.8903$2.04
BSC<0.01%$0.0000012,729,742.5601$2
BSC<0.01%$0.9224662.1415$1.98
BSC<0.01%$105,3870.00001872$1.97
BSC<0.01%$0.0006083,203.489$1.95
BSC<0.01%$0.14765713.1621$1.94
BSC<0.01%$0.003053632.447$1.93
BSC<0.01%$0.007928242.7939$1.92
BSC<0.01%$0.00009420,334.916$1.91
BSC<0.01%$63.520.0301$1.91
BSC<0.01%$0.977711.9475$1.9
BSC<0.01%$0.000002856,843.4992$1.86
BSC<0.01%$0.0010051,846.4323$1.86
BSC<0.01%$0.02485674.3775$1.85
BSC<0.01%$0.0005283,483.7501$1.84
BSC<0.01%$0.000003543,876.7078$1.83
BSC<0.01%$2.730.6593$1.8
BSC<0.01%$0.7870832.2604$1.78
BSC<0.01%$0.002809629.7358$1.77
BSC<0.01%$0.000006313,364.5254$1.76
BSC<0.01%$0.008493207.0576$1.76
BSC<0.01%<$0.0000013,708,418.3062$1.75
BSC<0.01%$0.02368772.6622$1.72
BSC<0.01%$0.5426553.1685$1.72
BSC<0.01%<$0.000001530,379,941.9541$1.71
BSC<0.01%$0.016381104.0132$1.7
BSC<0.01%$0.002979571.1947$1.7
BSC<0.01%$152.70.011$1.68
BSC<0.01%$0.002696619.3583$1.67
BSC<0.01%$0.004937336.1314$1.66
BSC<0.01%$0.008138203.8227$1.66
BSC<0.01%$0.02265773.035$1.65
BSC<0.01%$0.008668189.9675$1.65
BSC<0.01%$0.0008211,981.791$1.63
BSC<0.01%$0.02375868.2504$1.62
BSC<0.01%$45.470.0356$1.62
BSC<0.01%$0.4098183.8348$1.57
BSC<0.01%$0.2655775.9023$1.57
BSC<0.01%$0.0001768,788.7909$1.55
BSC<0.01%$0.1947927.899$1.54
BSC<0.01%$1.031.4761$1.52
BSC<0.01%$0.00012212,293.1272$1.5
BSC<0.01%$3.060.4883$1.49
BSC<0.01%$0.5680942.6129$1.48
BSC<0.01%$0.0219667.5003$1.48
BSC<0.01%$2,564.290.00056914$1.46
BSC<0.01%$0.02188466.056$1.45
BSC<0.01%$6.630.2157$1.43
BSC<0.01%$0.013347105.611$1.41
BSC<0.01%$0.2847334.8862$1.39
BSC<0.01%$0.04705829.2566$1.38
BSC<0.01%$0.000011118,171.4332$1.34
BSC<0.01%$0.0003853,448.7063$1.33
BSC<0.01%$715.660.00183617$1.31
BSC<0.01%$0.011409113.9874$1.3
BSC<0.01%$3.840.3344$1.28
BSC<0.01%$0.10386112.3585$1.28
BSC<0.01%$0.1791547.1055$1.27
BSC<0.01%$0.1585727.7873$1.23
BSC<0.01%<$0.0000016,765,343,981.4946$1.22
BSC<0.01%$0.3568433.4181$1.22
BSC<0.01%$0.03893731.2369$1.22
BSC<0.01%$0.01382887.3574$1.21
BSC<0.01%$0.0236550.9281$1.2
BSC<0.01%$0.0005742,096.3133$1.2
BSC<0.01%$0.09129313.0575$1.19
BSC<0.01%$0.003304357.4222$1.18
BSC<0.01%$0.05938919.519$1.16
BSC<0.01%$0.02200251.6982$1.14
BSC<0.01%<$0.00000113,140,992,942.6157$1.13
BSC<0.01%$0.0001189,482.325$1.12
BSC<0.01%$0.008868121.6617$1.08
BSC<0.01%$0.00008312,943.6862$1.07
BSC<0.01%$0.01650764.7726$1.07
BSC<0.01%$0.0004052,595.427$1.05
BSC<0.01%<$0.000001801,357,105,960.3864$1.05
BSC<0.01%$0.1050029.9544$1.05
BSC<0.01%$0.01942753.7273$1.04
BSC<0.01%$0.004249245.3291$1.04
BSC<0.01%$0.5152951.9629$1.01
BSC<0.01%<$0.0000018,779,968.8662$0.9991
BSC<0.01%$0.005824170.3841$0.9923
BSC<0.01%$0.07543413.1243$0.99
BSC<0.01%$0.002412410.5067$0.99
BSC<0.01%$3.880.2527$0.9804
BSC<0.01%$0.02286642.0194$0.9608
BSC<0.01%$0.04549220.9049$0.951
BSC<0.01%$0.000002498,968.816$0.9494
BSC<0.01%<$0.0000019,855,764.0207$0.9421
BSC<0.01%<$0.00000119,018,384.8623$0.94
BSC<0.01%$0.001842502.2098$0.925
BSC<0.01%$0.01520160.8307$0.9246
BSC<0.01%<$0.00000118,528,871.1116$0.9201
BSC<0.01%$0.3266992.7935$0.9126
BSC<0.01%$0.0000969,455.0365$0.9086
BSC<0.01%$0.6886791.2897$0.8882
BSC<0.01%<$0.000001872,617,785.564$0.8726
BSC<0.01%$0.0005771,505.6953$0.8689
BSC<0.01%$0.1718445.0219$0.8629
BSC<0.01%$0.0003592,375.3585$0.8519
BSC<0.01%$0.02268437.3079$0.8463
BSC<0.01%$0.02978427.5546$0.8206
BSC<0.01%$0.0006911,178.9793$0.8144
BSC<0.01%$0.01207965.7556$0.7942
BSC<0.01%$0.0001485,344.3976$0.793
BSC<0.01%$0.007204109.7054$0.7902
BSC<0.01%$40.880.0191$0.7817
BSC<0.01%$0.4440691.7562$0.7798
BSC<0.01%<$0.000001194,733,734,037.7361$0.7715
BSC<0.01%$0.01530650.0696$0.7663
BSC<0.01%$0.1280265.9617$0.7632
BSC<0.01%$0.004648160.2478$0.7447
BSC<0.01%$0.0001644,453.7502$0.7308
BSC<0.01%$0.0001315,579.8502$0.7304
BSC<0.01%<$0.0000011,257,466,016.676$0.7294
BSC<0.01%$0.01187460.339$0.7164
BSC<0.01%<$0.000001602,777,480.1025$0.7112
BSC<0.01%$0.001258559.2925$0.7035
BSC<0.01%$2,072.310.00033833$0.7011
BSC<0.01%$0.9997640.6955$0.6953
BSC<0.01%$0.0819288.0827$0.6622
BSC<0.01%$0.04821613.5969$0.6555
BSC<0.01%$0.05243412.2164$0.6405
BSC<0.01%$0.0692459.1858$0.636
BSC<0.01%$103,0670.00000613$0.6318
BSC<0.01%$0.000847733.1788$0.6207
BSC<0.01%$0.00314193.6684$0.6082
BSC<0.01%<$0.0000017,319,737.5529$0.5964
BSC<0.01%$0.00929263.6139$0.5911
BSC<0.01%<$0.00000183,057,882,794.6911$0.5892
BSC<0.01%$105,6490.00000554$0.5854
BSC<0.01%$0.6203270.9403$0.5833
BSC<0.01%$0.01255446.0056$0.5775
BSC<0.01%$0.130154.414$0.5744
BSC<0.01%$0.000001774,776.42$0.5739
BSC<0.01%<$0.0000012,496,901.9508$0.5659
BSC<0.01%$0.004977110.7166$0.551
BSC<0.01%$1.390.3957$0.55
BSC<0.01%$0.00985355.7656$0.5494
BSC<0.01%$0.0001373,960.576$0.5417
BSC<0.01%$0.00676577.2965$0.5229
BSC<0.01%$0.092945.6253$0.5228
BSC<0.01%$0.002755185.4444$0.5108
BSC<0.01%$0.1593673.1862$0.5077
BSC<0.01%$0.1084834.6507$0.5045
BSC<0.01%$0.0001982,541.4455$0.5034
BSC<0.01%<$0.000001524,741,003.8191$0.4936
BSC<0.01%$0.03221515.1643$0.4885
BSC<0.01%$0.0000316,084.337$0.4842
BSC<0.01%$0.00774860.5872$0.4694
BSC<0.01%$0.02456818.7713$0.4611
BSC<0.01%$0.0003261,396.6235$0.4552
BSC<0.01%$0.000003142,573.4182$0.4448
BSC<0.01%$0.00003313,403.7931$0.4426
BSC<0.01%$0.00869650.8043$0.4418
BSC<0.01%$0.2603911.6948$0.4412
BSC<0.01%$0.000953458.418$0.4369
BSC<0.01%$0.02554117.0809$0.4362
BSC<0.01%$0.001034421.944$0.4361
BSC<0.01%$0.01742424.8934$0.4337
BSC<0.01%$0.001318327.3916$0.4314
BSC<0.01%$0.002001215.3435$0.4308
BSC<0.01%$0.00000949,314.2556$0.427
BSC<0.01%$0.00949544.8139$0.4254
BSC<0.01%$0.03253313.0511$0.4245
BSC<0.01%$0.00803152.5341$0.4219
BSC<0.01%$0.001167355.0621$0.4145
BSC<0.01%$0.2711321.5278$0.4142
BSC<0.01%$0.1958932.1117$0.4136
BSC<0.01%$0.000568725.6592$0.4124
BSC<0.01%$52.680.00774941$0.4082
BSC<0.01%<$0.0000013,573,455,187,837.415$0.4038
BSC<0.01%$0.002001200.5952$0.4014
BSC<0.01%$2.340.1709$0.3999
BSC<0.01%$0.02522615.503$0.391
BSC<0.01%$0.002813138.2757$0.389
BSC<0.01%$0.001502256.1898$0.3848
BSC<0.01%$0.002205174.4187$0.3846
BSC<0.01%$0.0000218,638.3325$0.3819
BSC<0.01%$1.030.3669$0.3763
BSC<0.01%$0.0460358.1643$0.3758
BSC<0.01%$0.0000626,082.762$0.3748
BSC<0.01%$0.9991390.3702$0.3699
BSC<0.01%$0.02194616.5116$0.3623
BSC<0.01%$0.0001791,953.8962$0.3501
BSC<0.01%$0.0989253.4659$0.3428
BSC<0.01%$0.0947153.607$0.3416
BSC<0.01%$0.0407648.3151$0.3389
BSC<0.01%$0.9869360.3433$0.3388
BSC<0.01%$0.184741.8044$0.3333
BSC<0.01%$0.03209710.2553$0.3291
BSC<0.01%$0.01518721.5198$0.3268
BSC<0.01%$0.00367687.8984$0.323
BSC<0.01%$0.3911390.8217$0.3213
BSC<0.01%$0.0000388,406.393$0.3203
BSC<0.01%$2.930.1071$0.3139
BSC<0.01%$0.0493766.3315$0.3126
BSC<0.01%$0.0355678.4493$0.3005
BSC<0.01%$0.000535556.5127$0.2977
BSC<0.01%$0.001533191.1587$0.293
BSC<0.01%$2.180.1343$0.2925
BSC<0.01%$0.378190.7669$0.29
BSC<0.01%$2,700.690.00010669$0.2881
BSC<0.01%$0.3218870.8878$0.2857
BSC<0.01%$0.002184130.4013$0.2847
BSC<0.01%$0.02198912.908$0.2838
BSC<0.01%$0.00982628.804$0.283
BSC<0.01%$0.000344821.9505$0.2826
BSC<0.01%$0.001135246.273$0.2795
BSC<0.01%$49.830.00558094$0.278
BSC<0.01%$0.0001891,412.4817$0.2667
BSC<0.01%<$0.000001615,901,569.853$0.2662
BSC<0.01%$0.001042254.8554$0.2655
BSC<0.01%$0.1661191.5764$0.2618
BSC<0.01%$0.0661893.9253$0.2598
BSC<0.01%<$0.0000011,216,162.4371$0.2587
BSC<0.01%$0.1285952.0095$0.2584
BSC<0.01%$0.002062124.7087$0.2571
BSC<0.01%$0.002129120.7831$0.2571
BSC<0.01%$0.0275869.0781$0.2504
BSC<0.01%$0.9839880.2541$0.25
BSC<0.01%$0.1953391.2674$0.2475
BSC<0.01%$0.0713463.4174$0.2438
BSC<0.01%$0.1874121.2886$0.2414
BSC<0.01%$0.6245350.3863$0.2412
BSC<0.01%$0.001065220.6585$0.235
BSC<0.01%$0.00383660.6203$0.2325
BSC<0.01%$0.000952243.9415$0.2321
BSC<0.01%$0.00001812,524.7802$0.2265
BSC<0.01%$0.0002061,097.0961$0.2261
BSC<0.01%$0.000585386.827$0.2261
BSC<0.01%$0.0475634.7301$0.2249
BSC<0.01%$5,162.70.00004354$0.2248
BSC<0.01%$0.00001416,112.2139$0.223
BSC<0.01%$0.0002171,025.4214$0.2222
BSC<0.01%$0.0403165.461$0.2201
BSC<0.01%$0.0695173.1627$0.2198
BSC<0.01%$0.01024820.7333$0.2124
BSC<0.01%$0.403490.5258$0.2121
BSC<0.01%<$0.000001110,945,398.557$0.2118
BSC<0.01%$0.0281917.4922$0.2112
BSC<0.01%$0.01897211.1173$0.2109
BSC<0.01%$0.01017220.7312$0.2108
BSC<0.01%<$0.0000016,031,960.7065$0.2096
BSC<0.01%$0.999610.2071$0.2069
BSC<0.01%$0.000205981.9589$0.2016
BSC<0.01%<$0.0000013,819,904.8583$0.1999
BSC<0.01%$0.01606312.1005$0.1943
BSC<0.01%$0.000963199.8528$0.1923
BSC<0.01%$0.0487133.6482$0.1777
BSC<0.01%$0.0016110.6478$0.177
BSC<0.01%$0.00263766.8896$0.1763
BSC<0.01%<$0.0000014,172,121.4551$0.1758
BSC<0.01%$0.002861.894$0.1732
BSC<0.01%$0.00835920.053$0.1676
BSC<0.01%$0.000287582.9817$0.1674
BSC<0.01%$0.0588182.8409$0.167
BSC<0.01%$0.2555430.6457$0.165
BSC<0.01%$0.0165719.7219$0.1611
BSC<0.01%$0.00199776.9492$0.1536
BSC<0.01%$0.00127120.3094$0.1527
BSC<0.01%$0.00445332.5745$0.145
BSC<0.01%<$0.0000016,992,666,766.6272$0.1449
BSC<0.01%$0.001187122.0064$0.1448
BSC<0.01%$0.0252925.701$0.1441
BSC<0.01%$0.7386840.1948$0.1438
BSC<0.01%$1.140.1257$0.143
BSC<0.01%<$0.000001340,159.0654$0.1399
BSC<0.01%<$0.000001338,343.1341$0.1391
BSC<0.01%$0.0391663.4838$0.1364
BSC<0.01%$0.00547224.4229$0.1336
BSC<0.01%$0.00357837.1178$0.1327
BSC<0.01%$0.000052,634.5887$0.1316
BSC<0.01%$10.1311$0.1311
BSC<0.01%$0.001013128.7066$0.1303
BSC<0.01%$0.0001021,258.3343$0.1288
BSC<0.01%$0.0000393,224.7999$0.1255
BSC<0.01%$105,4250.00000115$0.1211
BSC<0.01%$0.0800171.5071$0.1205
BSC<0.01%$0.171640.6886$0.1181
BSC<0.01%$0.00391829.8452$0.1169
BSC<0.01%$0.0718251.6232$0.1165
BSC<0.01%$0.0000215,658.0221$0.1164
BSC<0.01%$0.000499230.0381$0.1148
BSC<0.01%$0.0187526.1191$0.1147
BSC<0.01%$0.1054941.0812$0.114
BSC<0.01%$0.0579741.9552$0.1133
BSC<0.01%$0.0021951.7737$0.1133
BSC<0.01%$0.0227774.9154$0.1119
BSC<0.01%$0.0220935.0509$0.1115
BSC<0.01%$0.0446232.4896$0.111
BSC<0.01%$0.00823913.4182$0.1105
BSC<0.01%<$0.0000011,087,362.3198$0.1088
BSC<0.01%$0.0818971.3189$0.108
BSC<0.01%$0.000304352.3824$0.1071
BSC<0.01%$0.0217744.8743$0.1061
BSC<0.01%$0.00135378.2784$0.1059
BSC<0.01%$0.000612172.7381$0.1057
BSC<0.01%$0.000758136.212$0.1033
BSC<0.01%$0.0473822.1762$0.1031
BSC<0.01%<$0.000001250,000,642$0.1024
BSC<0.01%$0.000986103.5425$0.102
OP
Ether (ETH)
2.13%$2,565.050.8365$2,145.55
OP0.49%$105,6280.00465859$492.08
OP0.43%$2,561.710.1697$434.64
OP0.32%$0.584154556.1653$324.89
OP0.13%$0.999735132.8948$132.86
OP0.12%$0.999735123.6948$123.66
OP0.07%$171.5937$71.59
OP0.01%$111.2657$11.27
OP<0.01%$3,090.830.00314467$9.72
OP<0.01%$0.047793172.6218$8.25
OP<0.01%$0.9554858.3055$7.94
OP<0.01%$0.14611542.7712$6.25
OP<0.01%$285.730.0214$6.13
OP<0.01%$13.290.3857$5.13
OP<0.01%$10.20.4955$5.05
OP<0.01%$0.12169238.9633$4.74
OP<0.01%$22.3233$4.65
OP<0.01%$11.9525$1.95
OP<0.01%$0.16555911.3852$1.88
OP<0.01%$0.0007521,885.8143$1.42
OP<0.01%$0.999161.2118$1.21
OP<0.01%$0.002052563.4169$1.16
OP<0.01%$2,557.930.00044648$1.14
OP<0.01%$0.2457172.9165$0.7166
OP<0.01%$0.4182371.5279$0.639
OP<0.01%$0.02288823.004$0.5265
OP<0.01%$0.001737266.9193$0.4636
OP<0.01%$152.040.00296101$0.4501
OP<0.01%$0.00986444.8439$0.4423
OP<0.01%$0.2278511.8953$0.4318
OP<0.01%$7.540.0338$0.2548
OP<0.01%$0.1692821.4384$0.2434
OP<0.01%$0.0001451,602.345$0.2316
OP<0.01%$1.060.2024$0.2143
OP<0.01%$0.6151750.3307$0.2034
OP<0.01%$0.99990.1947$0.1947
OP<0.01%$0.8148920.1853$0.1509
OP<0.01%$1.570.0638$0.1001
GNO0.01%$113.650.0941$10.69
GNO<0.01%$0.9997355.859$5.86
GNO<0.01%$0.9998131.975$1.97
GNO<0.01%$1.161.4602$1.69
GNO<0.01%$1.161.4602$1.69
GNO<0.01%$0.03151534.6203$1.09
GNO<0.01%$0.9998130.8715$0.871322
GNO<0.01%$0.9997350.7016$0.7014
GNO<0.01%$1.060.184$0.1948
GNO<0.01%$3,090.830.00005739$0.1773
GNO<0.01%$0.9998670.1163$0.1163
LINEA<0.01%$2,549.380.00004684$0.1194
UNI<0.01%$2,564.910.00000393$0.01009
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.

OSZAR »