Latest 11 from a total of 11 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Withdraw All ERC... | 24472087 | 5 days ago | IN | 0 ETH | 0.00001017 | ||||
| Transfer | 24465194 | 6 days ago | IN | 0 ETH | 0.00000091 | ||||
| Batch Withdraw A... | 23970032 | 75 days ago | IN | 0 ETH | 0.00002956 | ||||
| Batch Withdraw A... | 23748620 | 106 days ago | IN | 0 ETH | 0.00021895 | ||||
| Batch Withdraw A... | 23206701 | 182 days ago | IN | 0 ETH | 0.00189568 | ||||
| Batch Withdraw A... | 22136456 | 331 days ago | IN | 0 ETH | 0.00012375 | ||||
| Batch Withdraw A... | 21911558 | 363 days ago | IN | 0 ETH | 0.01470549 | ||||
| Batch Withdraw A... | 21908108 | 363 days ago | IN | 0 ETH | 0.00029035 | ||||
| Withdraw All ERC... | 21595612 | 407 days ago | IN | 0 ETH | 0.00028951 | ||||
| Transfer Ownersh... | 19961015 | 635 days ago | IN | 0 ETH | 0.00051492 | ||||
| Set Augustus App... | 19961013 | 635 days ago | IN | 0 ETH | 0.00085894 |
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 24509350 | 2 hrs ago | 0.00001335 ETH | ||||
| Transfer | 24509349 | 2 hrs ago | 0.00001311 ETH | ||||
| Transfer | 24509349 | 2 hrs ago | 0.00001315 ETH | ||||
| Transfer | 24509349 | 2 hrs ago | 0.00001338 ETH | ||||
| Transfer | 24508942 | 3 hrs ago | 0.00532005 ETH | ||||
| Transfer | 24508826 | 3 hrs ago | 0.00072754 ETH | ||||
| Transfer | 24508565 | 4 hrs ago | 0.00021057 ETH | ||||
| Transfer | 24507303 | 9 hrs ago | 0.00000376 ETH | ||||
| Transfer | 24507244 | 9 hrs ago | 0.00122674 ETH | ||||
| Transfer | 24506207 | 12 hrs ago | 0 ETH | ||||
| Transfer | 24505085 | 16 hrs ago | 0.00019329 ETH | ||||
| Transfer | 24504453 | 18 hrs ago | 0.00007457 ETH | ||||
| Transfer | 24504023 | 20 hrs ago | 0.00033992 ETH | ||||
| Transfer | 24503347 | 22 hrs ago | 0.00010672 ETH | ||||
| Transfer | 24502806 | 24 hrs ago | 0 ETH | ||||
| Transfer | 24501655 | 27 hrs ago | 0.00062659 ETH | ||||
| Transfer | 24501551 | 28 hrs ago | 0.00009178 ETH | ||||
| Transfer | 24501535 | 28 hrs ago | 0.00000308 ETH | ||||
| Transfer | 24501497 | 28 hrs ago | 0.00022184 ETH | ||||
| Transfer | 24500550 | 31 hrs ago | 0.00003815 ETH | ||||
| Transfer | 24500458 | 31 hrs ago | 0.00001192 ETH | ||||
| Transfer | 24500406 | 32 hrs ago | 0 ETH | ||||
| Transfer | 24499940 | 33 hrs ago | 0.0000046 ETH | ||||
| Transfer | 24499688 | 34 hrs ago | 0.00256112 ETH | ||||
| Transfer | 24499516 | 35 hrs ago | 0.00000266 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
AugustusFeeVault
Compiler Version
v0.8.22+commit.4fc1097e
Optimization Enabled:
Yes with 1000000 runs
Other Settings:
shanghai EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity 0.8.22;
// Contracts
import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";
import { Pausable } from "@openzeppelin/contracts/utils/Pausable.sol";
// Interfaces
import { IAugustusFeeVault } from "../interfaces/IAugustusFeeVault.sol";
import { IERC20 } from "@openzeppelin/token/ERC20/IERC20.sol";
// Libraries
import { ERC20Utils } from "../libraries/ERC20Utils.sol";
/// @title Augstus Fee Vault
/// @notice Allows partners to collect fees stored in the vault, and allows augustus contracts to register fees
contract AugustusFeeVault is IAugustusFeeVault, Ownable, Pausable {
/*//////////////////////////////////////////////////////////////
LIBRARIES
//////////////////////////////////////////////////////////////*/
using ERC20Utils for IERC20;
/*//////////////////////////////////////////////////////////////
VARIABLES
//////////////////////////////////////////////////////////////*/
/// @dev A mapping of augustus contract addresses to their approval status
mapping(address augustus => bool approved) public augustusContracts;
// @dev Mapping of fee tokens to stored fee amounts
mapping(address account => mapping(IERC20 token => uint256 amount)) public fees;
// @dev Mapping of fee tokens to allocated fee amounts
mapping(IERC20 token => uint256 amount) public allocatedFees;
/*//////////////////////////////////////////////////////////////
CONSTRUCTOR
//////////////////////////////////////////////////////////////*/
constructor(address[] memory _augustusContracts, address owner) Ownable(owner) {
// Set augustus verifier contracts
for (uint256 i = 0; i < _augustusContracts.length; i++) {
augustusContracts[_augustusContracts[i]] = true;
emit AugustusApprovalSet(_augustusContracts[i], true);
}
}
/*//////////////////////////////////////////////////////////////
MODIFIERS
//////////////////////////////////////////////////////////////*/
/// @dev Modifier to check if the caller is an approved augustus contract
modifier onlyApprovedAugustus() {
if (!augustusContracts[msg.sender]) {
revert UnauthorizedCaller();
}
_;
}
/// @dev Verifies that the withdraw amount is not zero
modifier validAmount(uint256 amount) {
// Check if amount is zero
if (amount == 0) {
revert InvalidWithdrawAmount();
}
_;
}
/*//////////////////////////////////////////////////////////////
PUBLIC
//////////////////////////////////////////////////////////////*/
/// @inheritdoc IAugustusFeeVault
function withdrawSomeERC20(
IERC20 token,
uint256 amount,
address recipient
)
public
validAmount(amount)
whenNotPaused
returns (bool success)
{
/// Check recipient
recipient = _checkRecipient(recipient);
// Update fees mapping
_updateFees(token, msg.sender, amount);
// Transfer tokens to recipient
token.safeTransfer(recipient, amount);
// Return success
return true;
}
/// @inheritdoc IAugustusFeeVault
function getUnallocatedFees(IERC20 token) public view returns (uint256 unallocatedFees) {
// Get the allocated fees for the given token
uint256 allocatedFee = allocatedFees[token];
// Get the balance of the given token
uint256 balance = token.getBalance(address(this));
// If the balance is bigger than the allocated fee, then the unallocated fees should
// be equal to the balance minus the allocated fee
if (balance > allocatedFee) {
// Set the unallocated fees to the balance minus the allocated fee
unallocatedFees = balance - allocatedFee;
}
}
/*///////////////////////////////////////////////////////////////
EXTERNAL
//////////////////////////////////////////////////////////////*/
/// @inheritdoc IAugustusFeeVault
function batchWithdrawSomeERC20(
IERC20[] calldata tokens,
uint256[] calldata amounts,
address recipient
)
external
whenNotPaused
returns (bool success)
{
// Check if the length of the tokens and amounts arrays are the same
if (tokens.length != amounts.length) {
revert InvalidParameterLength();
}
// Loop through the tokens and amounts arrays
for (uint256 i; i < tokens.length; ++i) {
// Collect fees for the given token
if (!withdrawSomeERC20(tokens[i], amounts[i], recipient)) {
// Revert if collect fails
revert BatchCollectFailed();
}
}
// Return success
return true;
}
/// @inheritdoc IAugustusFeeVault
function withdrawAllERC20(IERC20 token, address recipient) public whenNotPaused returns (bool success) {
// Check recipient
recipient = _checkRecipient(recipient);
// Get the total fees for msg.sender in the given token
uint256 totalBalance = fees[msg.sender][token];
// Make sure the amount is not zero
if (totalBalance == 0) {
revert InvalidWithdrawAmount();
}
// Update fees mapping
_updateFees(token, msg.sender, totalBalance);
// Transfer tokens to recipient
token.safeTransfer(recipient, totalBalance);
// Return success
return true;
}
/// @inheritdoc IAugustusFeeVault
function batchWithdrawAllERC20(
IERC20[] calldata tokens,
address recipient
)
external
whenNotPaused
returns (bool success)
{
// Loop through the tokens array
for (uint256 i; i < tokens.length; ++i) {
// Collect all fees for the given token
if (!withdrawAllERC20(tokens[i], recipient)) {
// Revert if withdrawAllERC20 fails
revert BatchCollectFailed();
}
}
// Return success
return true;
}
/// @inheritdoc IAugustusFeeVault
function registerFees(FeeRegistration memory feeData) external onlyApprovedAugustus {
// Get the addresses, tokens, and feeAmounts from the feeData struct
address[] memory addresses = feeData.addresses;
IERC20 token = feeData.token;
uint256[] memory feeAmounts = feeData.fees;
// Make sure the length of the addresses and feeAmounts arrays are the same
if (addresses.length != feeAmounts.length) {
revert InvalidParameterLength();
}
// Loop through the addresses and fees arrays
for (uint256 i; i < addresses.length; ++i) {
// Register the fees for the given address and token if the fee and address are not zero
if (feeAmounts[i] != 0 && addresses[i] != address(0)) {
_registerFee(addresses[i], token, feeAmounts[i]);
}
}
}
/// @inheritdoc IAugustusFeeVault
function setAugustusApproval(address augustus, bool approved) external onlyOwner {
// Set the approval status for the given augustus contract
augustusContracts[augustus] = approved;
// Emit an event
emit AugustusApprovalSet(augustus, approved);
}
/// @inheritdoc IAugustusFeeVault
function setContractPauseState(bool _isPaused) external onlyOwner {
// Set the pause state
if (_isPaused) {
_pause();
} else {
_unpause();
}
}
/// @inheritdoc IAugustusFeeVault
function getBalance(IERC20 token, address partner) external view returns (uint256 feeBalance) {
// Get the fees for the given token and partner
return fees[partner][token];
}
/// @inheritdoc IAugustusFeeVault
function batchGetBalance(
IERC20[] calldata tokens,
address partner
)
external
view
returns (uint256[] memory feeBalances)
{
// Initialize the feeBalances array
feeBalances = new uint256[](tokens.length);
// Loop through the tokens array
for (uint256 i; i < tokens.length; ++i) {
// Get the fees for the given token and partner
feeBalances[i] = fees[partner][tokens[i]];
}
}
/*//////////////////////////////////////////////////////////////
PRIVATE
//////////////////////////////////////////////////////////////*/
/// @notice Register fees for a given account and token
/// @param account The account to register the fees for
/// @param token The token to register the fees for
/// @param fee The amount of fees to register
function _registerFee(address account, IERC20 token, uint256 fee) private {
// Get the unallocated fees for the given token
uint256 unallocatedFees = getUnallocatedFees(token);
// Make sure the fee is not bigger than the unallocated fees
if (fee > unallocatedFees) {
// If it is, set the fee to the unallocated fees
fee = unallocatedFees;
}
// Update the fees mapping
fees[account][token] += fee;
// Update the allocated fees mapping
allocatedFees[token] += fee;
}
/// @notice Update fees and allocatedFees for a given token and claimer
/// @param token The token to update the fees for
/// @param claimer The address to withdraw the fees for
/// @param withdrawAmount The amount of fees to withdraw
function _updateFees(IERC20 token, address claimer, uint256 withdrawAmount) private {
// get the fees for the claimer
uint256 feesForClaimer = fees[claimer][token];
// revert if withdraw amount is bigger than the fees for the claimer
if (withdrawAmount > feesForClaimer) {
revert InvalidWithdrawAmount();
}
// update the allocated fees
allocatedFees[token] -= withdrawAmount;
// update the fees for the claimer
fees[claimer][token] -= withdrawAmount;
}
/// @notice Check if recipient is zero address and set it to msg sender if it is, otherwise return recipient
/// @param recipient The recipient address
/// @return recipient The updated recipient address
function _checkRecipient(address recipient) private view returns (address) {
// Allow arbitrary recipient unless it is zero address
if (recipient == address(0)) {
recipient = msg.sender;
}
// Return recipient
return recipient;
}
/*//////////////////////////////////////////////////////////////
RECEIVE
//////////////////////////////////////////////////////////////*/
/// @notice Reverts if the caller is one of the following:
// - an externally-owned account
// - a contract in construction
// - an address where a contract will be created
// - an address where a contract lived, but was destroyed
receive() external payable {
address addr = msg.sender;
// solhint-disable-next-line no-inline-assembly
assembly ("memory-safe") {
if iszero(extcodesize(addr)) { revert(0, 0) }
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
pragma solidity ^0.8.20;
import {Context} from "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* The initial owner is set to the address provided by the deployer. This can
* later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
/**
* @dev The caller account is not authorized to perform an operation.
*/
error OwnableUnauthorizedAccount(address account);
/**
* @dev The owner is not a valid owner account. (eg. `address(0)`)
*/
error OwnableInvalidOwner(address owner);
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the address provided by the deployer as the initial owner.
*/
constructor(address initialOwner) {
if (initialOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(initialOwner);
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
if (owner() != _msgSender()) {
revert OwnableUnauthorizedAccount(_msgSender());
}
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
if (newOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Pausable.sol)
pragma solidity ^0.8.20;
import {Context} from "../utils/Context.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
bool private _paused;
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
/**
* @dev The operation failed because the contract is paused.
*/
error EnforcedPause();
/**
* @dev The operation failed because the contract is not paused.
*/
error ExpectedPause();
/**
* @dev Initializes the contract in unpaused state.
*/
constructor() {
_paused = false;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
_requireNotPaused();
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
_requirePaused();
_;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Throws if the contract is paused.
*/
function _requireNotPaused() internal view virtual {
if (paused()) {
revert EnforcedPause();
}
}
/**
* @dev Throws if the contract is not paused.
*/
function _requirePaused() internal view virtual {
if (!paused()) {
revert ExpectedPause();
}
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.22;
// Interfaces
import { IERC20 } from "@openzeppelin/token/ERC20/IERC20.sol";
/// @title IAugustusFeeVault
/// @notice Interface for the AugustusFeeVault contract
interface IAugustusFeeVault {
/*//////////////////////////////////////////////////////////////
ERRORS
//////////////////////////////////////////////////////////////*/
/// @notice Error emitted when withdraw amount is zero or exceeds the stored amount
error InvalidWithdrawAmount();
/// @notice Error emmitted when caller is not an approved augustus contract
error UnauthorizedCaller();
/// @notice Error emitted when an invalid parameter length is passed
error InvalidParameterLength();
/// @notice Error emitted when batch withdraw fails
error BatchCollectFailed();
/*//////////////////////////////////////////////////////////////
EVENTS
//////////////////////////////////////////////////////////////*/
/// @notice Emitted when an augustus contract approval status is set
/// @param augustus The augustus contract address
/// @param approved The approval status
event AugustusApprovalSet(address indexed augustus, bool approved);
/*//////////////////////////////////////////////////////////////
STRUCTS
//////////////////////////////////////////////////////////////*/
/// @notice Struct to register fees
/// @param addresses The addresses to register fees for
/// @param token The token to register fees for
/// @param fees The fees to register
struct FeeRegistration {
address[] addresses;
IERC20 token;
uint256[] fees;
}
/*//////////////////////////////////////////////////////////////
COLLECT
//////////////////////////////////////////////////////////////*/
/// @notice Allows partners to withdraw fees allocated to them and stored in the vault
/// @param token The token to withdraw fees in
/// @param amount The amount of fees to withdraw
/// @param recipient The address to send the fees to
/// @return success Whether the transfer was successful or not
function withdrawSomeERC20(IERC20 token, uint256 amount, address recipient) external returns (bool success);
/// @notice Allows partners to withdraw all fees allocated to them and stored in the vault for a given token
/// @param token The token to withdraw fees in
/// @param recipient The address to send the fees to
/// @return success Whether the transfer was successful or not
function withdrawAllERC20(IERC20 token, address recipient) external returns (bool success);
/// @notice Allows partners to withdraw all fees allocated to them and stored in the vault for multiple tokens
/// @param tokens The tokens to withdraw fees i
/// @param recipient The address to send the fees to
/// @return success Whether the transfer was successful or not
function batchWithdrawAllERC20(IERC20[] calldata tokens, address recipient) external returns (bool success);
/// @notice Allows partners to withdraw fees allocated to them and stored in the vault
/// @param tokens The tokens to withdraw fees in
/// @param amounts The amounts of fees to withdraw
/// @param recipient The address to send the fees to
/// @return success Whether the transfer was successful or not
function batchWithdrawSomeERC20(
IERC20[] calldata tokens,
uint256[] calldata amounts,
address recipient
)
external
returns (bool success);
/*//////////////////////////////////////////////////////////////
BALANCE GETTERS
//////////////////////////////////////////////////////////////*/
/// @notice Get the balance of a given token for a given partner
/// @param token The token to get the balance of
/// @param partner The partner to get the balance for
/// @return feeBalance The balance of the given token for the given partner
function getBalance(IERC20 token, address partner) external view returns (uint256 feeBalance);
/// @notice Get the balances of a given partner for multiple tokens
/// @param tokens The tokens to get the balances of
/// @param partner The partner to get the balances for
/// @return feeBalances The balances of the given tokens for the given partner
function batchGetBalance(
IERC20[] calldata tokens,
address partner
)
external
view
returns (uint256[] memory feeBalances);
/// @notice Returns the unallocated fees for a given token
/// @param token The token to get the unallocated fees for
/// @return unallocatedFees The unallocated fees for the given token
function getUnallocatedFees(IERC20 token) external view returns (uint256 unallocatedFees);
/*//////////////////////////////////////////////////////////////
OWNER
//////////////////////////////////////////////////////////////*/
/// @notice Registers the given feeData to the vault
/// @param feeData The fee registration data
function registerFees(FeeRegistration memory feeData) external;
/// @notice Sets the augustus contract approval status
/// @param augustus The augustus contract address
/// @param approved The approval status
function setAugustusApproval(address augustus, bool approved) external;
/// @notice Sets the contract pause state
/// @param _isPaused The new pause state
function setContractPauseState(bool _isPaused) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the value of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the value of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves a `value` amount of tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 value) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets a `value` amount of tokens as the allowance of `spender` over the
* caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the
* allowance mechanism. `value` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 value) external returns (bool);
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.22;
// Interfaces
import { IERC20 } from "@openzeppelin/token/ERC20/IERC20.sol";
/// @title ERC20Utils
/// @notice Optimized functions for ERC20 tokens
library ERC20Utils {
/*//////////////////////////////////////////////////////////////
ERRORS
//////////////////////////////////////////////////////////////*/
error IncorrectEthAmount();
error PermitFailed();
error TransferFromFailed();
error TransferFailed();
error ApprovalFailed();
/*//////////////////////////////////////////////////////////////
CONSTANTS
//////////////////////////////////////////////////////////////*/
IERC20 internal constant ETH = IERC20(0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE);
/*//////////////////////////////////////////////////////////////
APPROVE
//////////////////////////////////////////////////////////////*/
/// @dev Vendored from Solady by @vectorized - SafeTransferLib.approveWithRetry
/// https://github.com/Vectorized/solady/src/utils/SafeTransferLib.sol#L325
/// Instead of approving a specific amount, this function approves for uint256(-1) (type(uint256).max).
function approve(IERC20 token, address to) internal {
// solhint-disable-next-line no-inline-assembly
assembly ("memory-safe") {
mstore(0x14, to) // Store the `to` argument.
mstore(0x34, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) // Store the `amount`
// argument (type(uint256).max).
mstore(0x00, 0x095ea7b3000000000000000000000000) // `approve(address,uint256)`.
// Perform the approval, retrying upon failure.
if iszero(
and( // The arguments of `and` are evaluated from right to left.
or(eq(mload(0x00), 1), iszero(returndatasize())), // Returned 1 or nothing.
call(gas(), token, 0, 0x10, 0x44, 0x00, 0x20)
)
) {
mstore(0x34, 0) // Store 0 for the `amount`.
mstore(0x00, 0x095ea7b3000000000000000000000000) // `approve(address,uint256)`.
pop(call(gas(), token, 0, 0x10, 0x44, codesize(), 0x00)) // Reset the approval.
mstore(0x34, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) // Store
// type(uint256).max for the `amount`.
// Retry the approval, reverting upon failure.
if iszero(
and(
or(eq(mload(0x00), 1), iszero(returndatasize())), // Returned 1 or nothing.
call(gas(), token, 0, 0x10, 0x44, 0x00, 0x20)
)
) {
mstore(0, 0x8164f84200000000000000000000000000000000000000000000000000000000)
// store the selector (error ApprovalFailed())
revert(0, 4) // revert with error selector
}
}
mstore(0x34, 0) // Restore the part of the free memory pointer that was overwritten.
}
}
/*//////////////////////////////////////////////////////////////
PERMIT
//////////////////////////////////////////////////////////////*/
/// @dev Executes an ERC20 permit and reverts if invalid length is provided
function permit(IERC20 token, bytes calldata data) internal {
// solhint-disable-next-line no-inline-assembly
assembly ("memory-safe") {
// check the permit length
switch data.length
// 32 * 7 = 224 EIP2612 Permit
case 224 {
let x := mload(64) // get the free memory pointer
mstore(x, 0xd505accf00000000000000000000000000000000000000000000000000000000) // store the selector
// function permit(address owner, address spender, uint256
// amount, uint256 deadline, uint8 v, bytes32 r, bytes32 s)
calldatacopy(add(x, 4), data.offset, 224) // store the args
pop(call(gas(), token, 0, x, 228, 0, 32)) // call ERC20 permit, skip checking return data
}
// 32 * 8 = 256 DAI-Style Permit
case 256 {
let x := mload(64) // get the free memory pointer
mstore(x, 0x8fcbaf0c00000000000000000000000000000000000000000000000000000000) // store the selector
// function permit(address holder, address spender, uint256
// nonce, uint256 expiry, bool allowed, uint8 v, bytes32 r, bytes32 s)
calldatacopy(add(x, 4), data.offset, 256) // store the args
pop(call(gas(), token, 0, x, 260, 0, 32)) // call ERC20 permit, skip checking return data
}
default {
mstore(0, 0xb78cb0dd00000000000000000000000000000000000000000000000000000000) // store the selector
// (error PermitFailed())
revert(0, 4)
}
}
}
/*//////////////////////////////////////////////////////////////
ETH
//////////////////////////////////////////////////////////////*/
/// @dev Returns 1 if the token is ETH, 0 if not ETH
function isETH(IERC20 token, uint256 amount) internal view returns (uint256 fromETH) {
// solhint-disable-next-line no-inline-assembly
assembly ("memory-safe") {
// If token is ETH
if eq(token, 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE) {
// if msg.value is not equal to fromAmount, then revert
if xor(amount, callvalue()) {
mstore(0, 0x8b6ebb4d00000000000000000000000000000000000000000000000000000000) // store the selector
// (error IncorrectEthAmount())
revert(0, 4) // revert with error selector
}
// return 1 if ETH
fromETH := 1
}
// If token is not ETH
if xor(token, 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE) {
// if msg.value is not equal to 0, then revert
if gt(callvalue(), 0) {
mstore(0, 0x8b6ebb4d00000000000000000000000000000000000000000000000000000000) // store the selector
// (error IncorrectEthAmount())
revert(0, 4) // revert with error selector
}
}
}
// return 0 if not ETH
}
/*//////////////////////////////////////////////////////////////
TRANSFER
//////////////////////////////////////////////////////////////*/
/// @dev Executes transfer and reverts if it fails, works for both ETH and ERC20 transfers
function safeTransfer(IERC20 token, address recipient, uint256 amount) internal returns (bool success) {
// solhint-disable-next-line no-inline-assembly
assembly {
switch eq(token, 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE)
// ETH
case 1 {
// transfer ETH
// Cap gas at 10000 to avoid reentrancy
success := call(10000, recipient, amount, 0, 0, 0, 0)
}
// ERC20
default {
let x := mload(64) // get the free memory pointer
mstore(x, 0xa9059cbb00000000000000000000000000000000000000000000000000000000) // store the selector
// (function transfer(address recipient, uint256 amount))
mstore(add(x, 4), recipient) // store the recipient
mstore(add(x, 36), amount) // store the amount
success := call(gas(), token, 0, x, 68, 0, 32) // call transfer
if success {
switch returndatasize()
// check the return data size
case 0 { success := gt(extcodesize(token), 0) }
default { success := and(gt(returndatasize(), 31), eq(mload(0), 1)) }
}
}
if iszero(success) {
mstore(0, 0x90b8ec1800000000000000000000000000000000000000000000000000000000) // store the selector
// (error TransferFailed())
revert(0, 4) // revert with error selector
}
}
}
/*//////////////////////////////////////////////////////////////
TRANSFER FROM
//////////////////////////////////////////////////////////////*/
/// @dev Executes transferFrom and reverts if it fails
function safeTransferFrom(
IERC20 srcToken,
address sender,
address recipient,
uint256 amount
)
internal
returns (bool success)
{
// solhint-disable-next-line no-inline-assembly
assembly {
let x := mload(64) // get the free memory pointer
mstore(x, 0x23b872dd00000000000000000000000000000000000000000000000000000000) // store the selector
// (function transferFrom(address sender, address recipient,
// uint256 amount))
mstore(add(x, 4), sender) // store the sender
mstore(add(x, 36), recipient) // store the recipient
mstore(add(x, 68), amount) // store the amount
success := call(gas(), srcToken, 0, x, 100, 0, 32) // call transferFrom
if success {
switch returndatasize()
// check the return data size
case 0 { success := gt(extcodesize(srcToken), 0) }
default { success := and(gt(returndatasize(), 31), eq(mload(0), 1)) }
}
if iszero(success) {
mstore(x, 0x7939f42400000000000000000000000000000000000000000000000000000000) // store the selector
// (error TransferFromFailed())
revert(x, 4) // revert with error selector
}
}
}
/*//////////////////////////////////////////////////////////////
BALANCE
//////////////////////////////////////////////////////////////*/
/// @dev Returns the balance of an account, works for both ETH and ERC20 tokens
function getBalance(IERC20 token, address account) internal view returns (uint256 balanceOf) {
// solhint-disable-next-line no-inline-assembly
assembly {
switch eq(token, 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE)
// ETH
case 1 { balanceOf := balance(account) }
// ERC20
default {
let x := mload(64) // get the free memory pointer
mstore(x, 0x70a0823100000000000000000000000000000000000000000000000000000000) // store the selector
// (function balanceOf(address account))
mstore(add(x, 4), account) // store the account
let success := staticcall(gas(), token, x, 36, x, 32) // call balanceOf
if success { balanceOf := mload(x) } // load the balance
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)
pragma solidity ^0.8.20;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}{
"remappings": [
"@prb/test/=lib/prb-test/src/",
"forge-std/=lib/forge-std/src/",
"@openzeppelin/=lib/openzeppelin-contracts/contracts/",
"@solady/=lib/solady/src/",
"@create3/=lib/create3-factory/src/",
"@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
"create3-factory/=lib/create3-factory/",
"ds-test/=lib/forge-std/lib/ds-test/src/",
"erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
"foundry-huff/=lib/foundry-huff/src/",
"openzeppelin-contracts/=lib/openzeppelin-contracts/",
"prb-test/=lib/prb-test/src/",
"solady/=lib/solady/",
"solidity-bytes-utils/=lib/solidity-bytes-utils/contracts/",
"solidity-stringutils/=lib/foundry-huff/lib/solidity-stringutils/",
"solmate/=lib/create3-factory/lib/solmate/src/",
"stringutils/=lib/foundry-huff/lib/solidity-stringutils/"
],
"optimizer": {
"enabled": true,
"runs": 1000000
},
"metadata": {
"useLiteralContent": false,
"bytecodeHash": "none",
"appendCBOR": true
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"evmVersion": "shanghai",
"viaIR": true,
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address[]","name":"_augustusContracts","type":"address[]"},{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"BatchCollectFailed","type":"error"},{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"inputs":[],"name":"InvalidParameterLength","type":"error"},{"inputs":[],"name":"InvalidWithdrawAmount","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"UnauthorizedCaller","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"augustus","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"AugustusApprovalSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"allocatedFees","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"augustus","type":"address"}],"name":"augustusContracts","outputs":[{"internalType":"bool","name":"approved","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20[]","name":"tokens","type":"address[]"},{"internalType":"address","name":"partner","type":"address"}],"name":"batchGetBalance","outputs":[{"internalType":"uint256[]","name":"feeBalances","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20[]","name":"tokens","type":"address[]"},{"internalType":"address","name":"recipient","type":"address"}],"name":"batchWithdrawAllERC20","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20[]","name":"tokens","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"address","name":"recipient","type":"address"}],"name":"batchWithdrawSomeERC20","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"fees","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"partner","type":"address"}],"name":"getBalance","outputs":[{"internalType":"uint256","name":"feeBalance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"getUnallocatedFees","outputs":[{"internalType":"uint256","name":"unallocatedFees","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256[]","name":"fees","type":"uint256[]"}],"internalType":"struct IAugustusFeeVault.FeeRegistration","name":"feeData","type":"tuple"}],"name":"registerFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"augustus","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setAugustusApproval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPaused","type":"bool"}],"name":"setContractPauseState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"recipient","type":"address"}],"name":"withdrawAllERC20","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"withdrawSomeERC20","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
604060808152346200019b57620015ac90813803806200001f81620001b3565b938439820181838203126200019b5782516001600160401b0391908281116200019b5784019381601f860112156200019b5784519160209383116200019f578260051b95848062000072818a01620001b3565b8096815201978201019182116200019b578401955b8187106200018157506001600160a01b03939291849150620000ab908401620001d9565b1680156200016a575f54818582167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a36001600160a81b031916175f9081555b81518110156200015b5780846200010760019385620001ee565b51165f5281808552865f208160ff198254161790557f6e22534cd7ba9ac690c8291d348b7cd994a6753f153ed57cd0a24dd720ae2d0485876200014b8588620001ee565b5116928951908152a201620000ed565b84516113949081620002188239f35b8451631e4fbdf760e01b81525f6004820152602490fd5b8480916200018f89620001d9565b81520196019562000087565b5f80fd5b634e487b7160e01b5f52604160045260245ffd5b6040519190601f01601f191682016001600160401b038111838210176200019f57604052565b51906001600160a01b03821682036200019b57565b8051821015620002035760209160051b010190565b634e487b7160e01b5f52603260045260245ffdfe60806040526004361015610022575b3615610018575f80fd5b610020611056565b005b5f3560e01c80633ea6f5111461013157806345f32b0b1461012c5780635c975abb14610127578063715018a6146101225780638da5cb5b1461011d5780638f79528c146101185780639b9ac2cb14610113578063ae11c7f81461010e578063b0a65b1714610109578063bbedcc4014610104578063d2ea29c0146100ff578063d4fac45d146100fa578063e20b52d9146100f5578063e537348b146100f0578063f2fde38b146100eb578063f89abe8c146100e65763ffcc41ee0361000e57610c1d565b610bd0565b610aee565b610a16565b6109aa565b610951565b610886565b610804565b610723565b610647565b610568565b610508565b6104b8565b61041e565b6103dc565b6102d5565b610165565b73ffffffffffffffffffffffffffffffffffffffff81160361015457565b5f80fd5b359061016382610136565b565b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101545773ffffffffffffffffffffffffffffffffffffffff6004356101b581610136565b165f526003602052602060405f2054604051908152f35b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b604051906060820182811067ffffffffffffffff82111761021957604052565b6101cc565b907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f604051930116820182811067ffffffffffffffff82111761021957604052565b67ffffffffffffffff81116102195760051b60200190565b9080601f8301121561015457602090823561029c61029782610262565b61021e565b9360208086848152019260051b82010192831161015457602001905b8282106102c6575050505090565b813581529083019083016102b8565b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc90602082360112610154576004359167ffffffffffffffff90818411610154576060908436030112610154576103316101f9565b91836004013582811161015457840190366023830112156101545760048201359161035e61029784610262565b926024602085838152019160051b8301019136831161015457602401905b8282106103c35750505050825261039560248401610158565b60208301526044830135908111610154576100209260046103b9923692010161027a565b6040820152610d4a565b83809183356103d181610136565b81520191019061037c565b34610154575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457602060ff5f5460a01c166040519015158152f35b34610154575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610154576104546110ed565b5f73ffffffffffffffffffffffffffffffffffffffff81547fffffffffffffffffffffffff000000000000000000000000000000000000000081168355167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a3005b34610154575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457602073ffffffffffffffffffffffffffffffffffffffff5f5416604051908152f35b346101545760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457602061055e60043561054881610136565b6044359061055582610136565b60243590610eb1565b6040519015158152f35b346101545760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101545760206105f86004356105a881610136565b73ffffffffffffffffffffffffffffffffffffffff602435916105ca83610136565b165f526002835260405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b54604051908152f35b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc60409101126101545760043561063781610136565b9060243561064481610136565b90565b3461015457602061055e61065a36610601565b90610f0c565b9181601f840112156101545782359167ffffffffffffffff8311610154576020808501948460051b01011161015457565b60407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc820112610154576004359067ffffffffffffffff8211610154576106da91600401610660565b909160243561064481610136565b60209060206040818301928281528551809452019301915f5b82811061070f575050505090565b835185529381019392810192600101610701565b346101545761073136610691565b909161073f61029784610262565b9280845261074c81610262565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0602091013660208701375f5b828110610792576040518061078e88826106e8565b0390f35b60019073ffffffffffffffffffffffffffffffffffffffff86165f52600283526107f260405f206107c4838789610f63565b35906107cf82610136565b9073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b546107fd8289610e98565b5201610779565b346101545761081236610691565b61081d92919261113d565b5f5b83811061083157602060405160018152f35b61084f82610840838787610f63565b3561084a81610136565b610f0c565b1561085c5760010161081f565b60046040517f3439313b000000000000000000000000000000000000000000000000000000008152fd5b346101545760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610154576004356108c181610136565b6024359081151580920361015457602073ffffffffffffffffffffffffffffffffffffffff7f6e22534cd7ba9ac690c8291d348b7cd994a6753f153ed57cd0a24dd720ae2d04926109106110ed565b1692835f526001825260405f207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0081541660ff8316179055604051908152a2005b346101545760206105f873ffffffffffffffffffffffffffffffffffffffff61097936610601565b919091165f526002835260405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101545773ffffffffffffffffffffffffffffffffffffffff6004356109fa81610136565b165f526001602052602060ff60405f2054166040519015158152f35b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457600435801515810361015457610a596110ed565b15610a6657610020611316565b5f5460ff8160a01c1615610ac4577fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff165f557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6020604051338152a1005b60046040517f8dfc202b000000000000000000000000000000000000000000000000000000008152fd5b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457600435610b2981610136565b610b316110ed565b73ffffffffffffffffffffffffffffffffffffffff809116908115610ba0575f54827fffffffffffffffffffffffff00000000000000000000000000000000000000008216175f55167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a3005b60246040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081525f6004820152fd5b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610154576020610c15600435610c1081610136565b610fa0565b604051908152f35b346101545760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457600467ffffffffffffffff813581811161015457610c6e903690600401610660565b9160243590811161015457610c87903690600401610660565b9060443590610c9582610136565b610c9d61113d565b828503610d20575f5b858110610cb95760405160018152602090f35b610ceb610ce784610ccb848a8a610f63565b35610cd581610136565b610ce0858988610f63565b3590610eb1565b1590565b610cf757600101610ca6565b866040517f3439313b000000000000000000000000000000000000000000000000000000008152fd5b60046040517fc0375efc000000000000000000000000000000000000000000000000000000008152fd5b335f52600190600160205260ff60405f20541615610e41578051906040610d88602083015173ffffffffffffffffffffffffffffffffffffffff1690565b910151908251825103610d20575f92845b610da5575b5050505050565b8051841015610e3c578484610dbb829686610e98565b51151580610e11575b610dd0575b0193610d99565b610e0c610dfa610de08386610e98565b5173ffffffffffffffffffffffffffffffffffffffff1690565b85610e058489610e98565b519161105f565b610dc9565b5073ffffffffffffffffffffffffffffffffffffffff610e34610de08386610e98565b161515610dc4565b610d9e565b60046040517f5c427cd9000000000000000000000000000000000000000000000000000000008152fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b8051821015610eac5760209160051b010190565b610e6b565b8115610ee257610ecb610edc93610ec661113d565b611175565b90610ed7833383611199565b611248565b50600190565b60046040517fdb73cdf0000000000000000000000000000000000000000000000000000000008152fd5b90610f1990610ec661113d565b335f526002602052610f4c8260405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b54908115610ee257610edc92610ed7833383611199565b9190811015610eac5760051b0190565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b905f9173ffffffffffffffffffffffffffffffffffffffff81165f52600360205260405f20545f9173eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee811460011461104d576020602491604051928380927f70a082310000000000000000000000000000000000000000000000000000000082523060048301525afa611044575b505b80821161102f575050565b90809293500390811161103f5790565b610f73565b5191505f611022565b50479150611024565b333b1561015457565b9061106981610fa0565b8084116110e5575b5073ffffffffffffffffffffffffffffffffffffffff8092165f5260026020526110bc8160405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b80549084820180921161103f5755165f52600360205260405f20805491820180921161103f5755565b92505f611071565b73ffffffffffffffffffffffffffffffffffffffff5f5416330361110d57565b60246040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152fd5b60ff5f5460a01c1661114b57565b60046040517fd93c0665000000000000000000000000000000000000000000000000000000008152fd5b73ffffffffffffffffffffffffffffffffffffffff8116156111945790565b503390565b73ffffffffffffffffffffffffffffffffffffffff80921691825f5260026020526111e58260405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b548411610ee25781165f52600360205260405f2091825484810390811161103f5761123993555f52600260205260405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b805491820391821161103f5755565b929173eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee84146001146113025760446020925f92604051917fa9059cbb0000000000000000000000000000000000000000000000000000000083526004830152602482015282865af191826112dd575b505b81156112b557565b7f90b8ec18000000000000000000000000000000000000000000000000000000005f5260045ffd5b9091503d156112f9575060015f5114601f3d1116905b5f6112ab565b3b1515906112f3565b5f809394508092918192612710f1906112ad565b61131e61113d565b740100000000000000000000000000000000000000007fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff5f5416175f557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586020604051338152a156fea164736f6c6343000816000a0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000d7e24a49944f7972ceb826c7557580658f9c33030000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361015610022575b3615610018575f80fd5b610020611056565b005b5f3560e01c80633ea6f5111461013157806345f32b0b1461012c5780635c975abb14610127578063715018a6146101225780638da5cb5b1461011d5780638f79528c146101185780639b9ac2cb14610113578063ae11c7f81461010e578063b0a65b1714610109578063bbedcc4014610104578063d2ea29c0146100ff578063d4fac45d146100fa578063e20b52d9146100f5578063e537348b146100f0578063f2fde38b146100eb578063f89abe8c146100e65763ffcc41ee0361000e57610c1d565b610bd0565b610aee565b610a16565b6109aa565b610951565b610886565b610804565b610723565b610647565b610568565b610508565b6104b8565b61041e565b6103dc565b6102d5565b610165565b73ffffffffffffffffffffffffffffffffffffffff81160361015457565b5f80fd5b359061016382610136565b565b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101545773ffffffffffffffffffffffffffffffffffffffff6004356101b581610136565b165f526003602052602060405f2054604051908152f35b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b604051906060820182811067ffffffffffffffff82111761021957604052565b6101cc565b907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f604051930116820182811067ffffffffffffffff82111761021957604052565b67ffffffffffffffff81116102195760051b60200190565b9080601f8301121561015457602090823561029c61029782610262565b61021e565b9360208086848152019260051b82010192831161015457602001905b8282106102c6575050505090565b813581529083019083016102b8565b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc90602082360112610154576004359167ffffffffffffffff90818411610154576060908436030112610154576103316101f9565b91836004013582811161015457840190366023830112156101545760048201359161035e61029784610262565b926024602085838152019160051b8301019136831161015457602401905b8282106103c35750505050825261039560248401610158565b60208301526044830135908111610154576100209260046103b9923692010161027a565b6040820152610d4a565b83809183356103d181610136565b81520191019061037c565b34610154575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457602060ff5f5460a01c166040519015158152f35b34610154575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610154576104546110ed565b5f73ffffffffffffffffffffffffffffffffffffffff81547fffffffffffffffffffffffff000000000000000000000000000000000000000081168355167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a3005b34610154575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457602073ffffffffffffffffffffffffffffffffffffffff5f5416604051908152f35b346101545760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457602061055e60043561054881610136565b6044359061055582610136565b60243590610eb1565b6040519015158152f35b346101545760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101545760206105f86004356105a881610136565b73ffffffffffffffffffffffffffffffffffffffff602435916105ca83610136565b165f526002835260405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b54604051908152f35b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc60409101126101545760043561063781610136565b9060243561064481610136565b90565b3461015457602061055e61065a36610601565b90610f0c565b9181601f840112156101545782359167ffffffffffffffff8311610154576020808501948460051b01011161015457565b60407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc820112610154576004359067ffffffffffffffff8211610154576106da91600401610660565b909160243561064481610136565b60209060206040818301928281528551809452019301915f5b82811061070f575050505090565b835185529381019392810192600101610701565b346101545761073136610691565b909161073f61029784610262565b9280845261074c81610262565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0602091013660208701375f5b828110610792576040518061078e88826106e8565b0390f35b60019073ffffffffffffffffffffffffffffffffffffffff86165f52600283526107f260405f206107c4838789610f63565b35906107cf82610136565b9073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b546107fd8289610e98565b5201610779565b346101545761081236610691565b61081d92919261113d565b5f5b83811061083157602060405160018152f35b61084f82610840838787610f63565b3561084a81610136565b610f0c565b1561085c5760010161081f565b60046040517f3439313b000000000000000000000000000000000000000000000000000000008152fd5b346101545760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610154576004356108c181610136565b6024359081151580920361015457602073ffffffffffffffffffffffffffffffffffffffff7f6e22534cd7ba9ac690c8291d348b7cd994a6753f153ed57cd0a24dd720ae2d04926109106110ed565b1692835f526001825260405f207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0081541660ff8316179055604051908152a2005b346101545760206105f873ffffffffffffffffffffffffffffffffffffffff61097936610601565b919091165f526002835260405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101545773ffffffffffffffffffffffffffffffffffffffff6004356109fa81610136565b165f526001602052602060ff60405f2054166040519015158152f35b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457600435801515810361015457610a596110ed565b15610a6657610020611316565b5f5460ff8160a01c1615610ac4577fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff165f557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6020604051338152a1005b60046040517f8dfc202b000000000000000000000000000000000000000000000000000000008152fd5b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457600435610b2981610136565b610b316110ed565b73ffffffffffffffffffffffffffffffffffffffff809116908115610ba0575f54827fffffffffffffffffffffffff00000000000000000000000000000000000000008216175f55167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a3005b60246040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081525f6004820152fd5b346101545760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610154576020610c15600435610c1081610136565b610fa0565b604051908152f35b346101545760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015457600467ffffffffffffffff813581811161015457610c6e903690600401610660565b9160243590811161015457610c87903690600401610660565b9060443590610c9582610136565b610c9d61113d565b828503610d20575f5b858110610cb95760405160018152602090f35b610ceb610ce784610ccb848a8a610f63565b35610cd581610136565b610ce0858988610f63565b3590610eb1565b1590565b610cf757600101610ca6565b866040517f3439313b000000000000000000000000000000000000000000000000000000008152fd5b60046040517fc0375efc000000000000000000000000000000000000000000000000000000008152fd5b335f52600190600160205260ff60405f20541615610e41578051906040610d88602083015173ffffffffffffffffffffffffffffffffffffffff1690565b910151908251825103610d20575f92845b610da5575b5050505050565b8051841015610e3c578484610dbb829686610e98565b51151580610e11575b610dd0575b0193610d99565b610e0c610dfa610de08386610e98565b5173ffffffffffffffffffffffffffffffffffffffff1690565b85610e058489610e98565b519161105f565b610dc9565b5073ffffffffffffffffffffffffffffffffffffffff610e34610de08386610e98565b161515610dc4565b610d9e565b60046040517f5c427cd9000000000000000000000000000000000000000000000000000000008152fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b8051821015610eac5760209160051b010190565b610e6b565b8115610ee257610ecb610edc93610ec661113d565b611175565b90610ed7833383611199565b611248565b50600190565b60046040517fdb73cdf0000000000000000000000000000000000000000000000000000000008152fd5b90610f1990610ec661113d565b335f526002602052610f4c8260405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b54908115610ee257610edc92610ed7833383611199565b9190811015610eac5760051b0190565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b905f9173ffffffffffffffffffffffffffffffffffffffff81165f52600360205260405f20545f9173eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee811460011461104d576020602491604051928380927f70a082310000000000000000000000000000000000000000000000000000000082523060048301525afa611044575b505b80821161102f575050565b90809293500390811161103f5790565b610f73565b5191505f611022565b50479150611024565b333b1561015457565b9061106981610fa0565b8084116110e5575b5073ffffffffffffffffffffffffffffffffffffffff8092165f5260026020526110bc8160405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b80549084820180921161103f5755165f52600360205260405f20805491820180921161103f5755565b92505f611071565b73ffffffffffffffffffffffffffffffffffffffff5f5416330361110d57565b60246040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152fd5b60ff5f5460a01c1661114b57565b60046040517fd93c0665000000000000000000000000000000000000000000000000000000008152fd5b73ffffffffffffffffffffffffffffffffffffffff8116156111945790565b503390565b73ffffffffffffffffffffffffffffffffffffffff80921691825f5260026020526111e58260405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b548411610ee25781165f52600360205260405f2091825484810390811161103f5761123993555f52600260205260405f209073ffffffffffffffffffffffffffffffffffffffff165f5260205260405f2090565b805491820391821161103f5755565b929173eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee84146001146113025760446020925f92604051917fa9059cbb0000000000000000000000000000000000000000000000000000000083526004830152602482015282865af191826112dd575b505b81156112b557565b7f90b8ec18000000000000000000000000000000000000000000000000000000005f5260045ffd5b9091503d156112f9575060015f5114601f3d1116905b5f6112ab565b3b1515906112f3565b5f809394508092918192612710f1906112ad565b61131e61113d565b740100000000000000000000000000000000000000007fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff5f5416175f557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586020604051338152a156fea164736f6c6343000816000a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000d7e24a49944f7972ceb826c7557580658f9c33030000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _augustusContracts (address[]):
Arg [1] : owner (address): 0xD7e24A49944F7972cEb826C7557580658F9C3303
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 000000000000000000000000d7e24a49944f7972ceb826c7557580658f9c3303
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Net Worth in USD
$745,280.82
Net Worth in ETH
378.146547
Token Allocations
TRU
40.63%
UXLINK
30.03%
USDC
6.76%
Others
22.57%
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 40.63% | $0.006565 | 46,123,416.5335 | $302,822.53 | |
| ETH | 2.98% | $0.999906 | 22,181.4025 | $22,179.32 | |
| ETH | 1.39% | $0.999625 | 10,334.2248 | $10,330.35 | |
| ETH | 1.16% | $1.22 | 7,064.5986 | $8,618.81 | |
| ETH | 0.75% | $1,970.88 | 2.8198 | $5,557.57 | |
| ETH | 0.74% | $1,970.88 | 2.7855 | $5,489.8 | |
| ETH | 0.42% | $76,149 | 0.0407 | $3,097.57 | |
| ETH | 0.36% | $0.247116 | 10,890.7464 | $2,691.28 | |
| ETH | 0.34% | $1.16 | 2,163.4003 | $2,509.54 | |
| ETH | 0.28% | $1.09 | 1,942.8545 | $2,109.94 | |
| ETH | 0.27% | $0.99908 | 2,037.6634 | $2,035.79 | |
| ETH | 0.20% | $1 | 1,474.8184 | $1,479.24 | |
| ETH | 0.17% | $99.44 | 12.4115 | $1,234.2 | |
| ETH | 0.17% | $0.997819 | 1,236.491 | $1,233.79 | |
| ETH | 0.10% | $1 | 746.0705 | $746.07 | |
| ETH | 0.09% | $0.999639 | 692.8321 | $692.58 | |
| ETH | 0.07% | $2,767.01 | 0.1865 | $516.02 | |
| ETH | 0.07% | $0.951451 | 541.4858 | $515.2 | |
| ETH | 0.05% | <$0.000001 | 2,113,008,495.8687 | $396.8 | |
| ETH | 0.05% | $0.066904 | 5,046.9594 | $337.66 | |
| ETH | 0.04% | $5,094.3 | 0.0622 | $317.1 | |
| ETH | 0.04% | $8.85 | 34.4427 | $304.82 | |
| ETH | 0.04% | $5,127.85 | 0.053 | $271.69 | |
| ETH | 0.04% | $119.26 | 2.2629 | $269.87 | |
| ETH | 0.03% | $0.311717 | 782.2327 | $243.84 | |
| ETH | 0.03% | $76,331 | 0.00308917 | $235.8 | |
| ETH | 0.03% | $0.999522 | 210.4792 | $210.38 | |
| ETH | 0.03% | $2,257.37 | 0.0895 | $202.06 | |
| ETH | 0.03% | $0.119259 | 1,677.0297 | $200 | |
| ETH | 0.03% | $0.064626 | 3,033.5289 | $196.04 | |
| ETH | 0.02% | $0.999947 | 154.5753 | $154.57 | |
| ETH | 0.02% | $1.28 | 109.885 | $140.65 | |
| ETH | 0.02% | $0.999776 | 134.1405 | $134.11 | |
| ETH | 0.02% | $194.74 | 0.6705 | $130.57 | |
| ETH | 0.02% | $1.18 | 103.2512 | $121.84 | |
| ETH | 0.02% | $0.787226 | 152.9766 | $120.43 | |
| ETH | 0.02% | $0.07594 | 1,527.8395 | $116.02 | |
| ETH | 0.02% | $0.999476 | 112.9246 | $112.87 | |
| ETH | 0.01% | $2,449.67 | 0.0448 | $109.87 | |
| ETH | 0.01% | $0.999206 | 109.3802 | $109.29 | |
| ETH | 0.01% | $0.217815 | 498.159 | $108.51 | |
| ETH | 0.01% | $0.007174 | 14,598.1348 | $104.72 | |
| ETH | 0.01% | $0.491059 | 207.0211 | $101.66 | |
| ETH | 0.01% | $64,957 | 0.00152763 | $99.23 | |
| ETH | 0.01% | $1.89 | 48.9451 | $92.4 | |
| ETH | 0.01% | $65.68 | 1.2085 | $79.37 | |
| ETH | 0.01% | $3.57 | 21.158 | $75.53 | |
| ETH | <0.01% | $2,459.09 | 0.0298 | $73.25 | |
| ETH | <0.01% | $0.403637 | 174.3498 | $70.37 | |
| ETH | <0.01% | $1.04 | 66.1187 | $68.76 | |
| ETH | <0.01% | $2,624.38 | 0.0259 | $68.02 | |
| ETH | <0.01% | $0.016262 | 3,923.6984 | $63.81 | |
| ETH | <0.01% | $76,298 | 0.00079888 | $60.95 | |
| ETH | <0.01% | $0.000198 | 289,073.517 | $57.31 | |
| ETH | <0.01% | $0.009698 | 5,585.9977 | $54.17 | |
| ETH | <0.01% | $0.99981 | 52.3336 | $52.32 | |
| ETH | <0.01% | $0.999 | 50.3648 | $50.31 | |
| ETH | <0.01% | $2.09 | 22.5574 | $47.14 | |
| ETH | <0.01% | $17.24 | 2.459 | $42.39 | |
| ETH | <0.01% | $0.451914 | 92.4163 | $41.76 | |
| ETH | <0.01% | $0.997712 | 41.4995 | $41.4 | |
| ETH | <0.01% | $71,099 | 0.00056614 | $40.25 | |
| ETH | <0.01% | $0.314879 | 125.7211 | $39.59 | |
| ETH | <0.01% | $1 | 36.5764 | $36.58 | |
| ETH | <0.01% | $1.15 | 30.8359 | $35.46 | |
| ETH | <0.01% | $0.000696 | 48,568.9734 | $33.81 | |
| ETH | <0.01% | $0.995143 | 32.8441 | $32.68 | |
| ETH | <0.01% | $0.027401 | 1,163.7783 | $31.89 | |
| ETH | <0.01% | $2,533.88 | 0.0122 | $31.02 | |
| ETH | <0.01% | $0.234595 | 131.3256 | $30.81 | |
| ETH | <0.01% | $0.99791 | 30.4938 | $30.43 | |
| ETH | <0.01% | $0.996862 | 30.4427 | $30.35 | |
| ETH | <0.01% | $0.007359 | 4,112.9773 | $30.27 | |
| ETH | <0.01% | $0.104491 | 283.1235 | $29.58 | |
| ETH | <0.01% | $0.132086 | 217.0045 | $28.66 | |
| ETH | <0.01% | $0.058549 | 479.918 | $28.1 | |
| ETH | <0.01% | <$0.000001 | 303,576,848.8115 | $27.89 | |
| ETH | <0.01% | $8.08 | 3.4216 | $27.65 | |
| ETH | <0.01% | $0.993467 | 27.0627 | $26.89 | |
| ETH | <0.01% | <$0.000001 | 404,566,516.8516 | $26.87 | |
| ETH | <0.01% | $1.64 | 16.1079 | $26.42 | |
| ETH | <0.01% | $76,732 | 0.00033854 | $25.98 | |
| ETH | <0.01% | $0.006037 | 4,201.3769 | $25.36 | |
| ETH | <0.01% | $1.76 | 14.3868 | $25.32 | |
| ETH | <0.01% | $0.853449 | 29.6167 | $25.28 | |
| ETH | <0.01% | $0.013817 | 1,795.1436 | $24.8 | |
| ETH | <0.01% | $0.111042 | 221.592 | $24.61 | |
| ETH | <0.01% | $0.002758 | 8,750.97 | $24.14 | |
| ETH | <0.01% | $2,257.29 | 0.0106 | $23.9 | |
| ETH | <0.01% | $0.999175 | 23.04 | $23.02 | |
| ETH | <0.01% | $0.264076 | 85.7633 | $22.65 | |
| ETH | <0.01% | $1,974.58 | 0.0112 | $22.08 | |
| ETH | <0.01% | $1.01 | 21.9074 | $22.02 | |
| ETH | <0.01% | $0.098092 | 214.6669 | $21.06 | |
| ETH | <0.01% | <$0.000001 | 459,976,285.5222 | $20.14 | |
| ETH | <0.01% | $0.342398 | 58.7835 | $20.13 | |
| ETH | <0.01% | $0.091917 | 213.8167 | $19.65 | |
| ETH | <0.01% | $0.056305 | 344.3343 | $19.39 | |
| ETH | <0.01% | $0.305309 | 62.9862 | $19.23 | |
| ETH | <0.01% | $0.076404 | 240.1719 | $18.35 | |
| ETH | <0.01% | <$0.000001 | 813,474,926.3643 | $18.34 | |
| ETH | <0.01% | $0.00001 | 1,828,501.0801 | $18.32 | |
| ETH | <0.01% | $0.006511 | 2,789.138 | $18.16 | |
| ETH | <0.01% | $0.758423 | 23.8208 | $18.07 | |
| ETH | <0.01% | $121.58 | 0.1478 | $17.97 | |
| ETH | <0.01% | $0.633525 | 28.1184 | $17.81 | |
| ETH | <0.01% | <$0.000001 | 2,306,484,069.6601 | $17.69 | |
| ETH | <0.01% | $0.007895 | 2,239.5321 | $17.68 | |
| ETH | <0.01% | $0.01124 | 1,547.2669 | $17.39 | |
| ETH | <0.01% | $8.12 | 2.116 | $17.18 | |
| ETH | <0.01% | $1.44 | 11.8118 | $17.01 | |
| ETH | <0.01% | $0.996141 | 17.0146 | $16.95 | |
| ETH | <0.01% | $0.023096 | 729.5889 | $16.85 | |
| ETH | <0.01% | $0.003996 | 4,144.301 | $16.56 | |
| ETH | <0.01% | $0.630707 | 26.1053 | $16.46 | |
| ETH | <0.01% | $0.046038 | 356.5409 | $16.41 | |
| ETH | <0.01% | $0.020928 | 782.1298 | $16.37 | |
| ETH | <0.01% | $0.020231 | 796.4735 | $16.11 | |
| ETH | <0.01% | $0.002519 | 6,379.2332 | $16.07 | |
| ETH | <0.01% | $2,793.38 | 0.00575115 | $16.07 | |
| ETH | <0.01% | $1.14 | 13.6668 | $15.58 | |
| ETH | <0.01% | $0.68662 | 22.2901 | $15.3 | |
| ETH | <0.01% | $0.002333 | 6,443.9315 | $15.03 | |
| ETH | <0.01% | $0.006276 | 2,393.3235 | $15.02 | |
| ETH | <0.01% | $0.065309 | 229.5198 | $14.99 | |
| ETH | <0.01% | $0.382164 | 39.1979 | $14.98 | |
| ETH | <0.01% | $0.053508 | 279.5665 | $14.96 | |
| ETH | <0.01% | $76,212 | 0.00019611 | $14.95 | |
| ETH | <0.01% | $0.321936 | 46.2601 | $14.89 | |
| ETH | <0.01% | $1.2 | 12.3901 | $14.87 | |
| ETH | <0.01% | $0.162441 | 90.2115 | $14.65 | |
| ETH | <0.01% | $0.000033 | 447,799.4364 | $14.63 | |
| ETH | <0.01% | <$0.000001 | 63,690,330.8567 | $14.58 | |
| ETH | <0.01% | $0.148014 | 98.2256 | $14.54 | |
| ETH | <0.01% | $8.3 | 1.7056 | $14.16 | |
| ETH | <0.01% | $0.000435 | 32,471.3646 | $14.12 | |
| ETH | <0.01% | $0.107318 | 129.9225 | $13.94 | |
| ETH | <0.01% | $0.011276 | 1,228.548 | $13.85 | |
| ETH | <0.01% | $0.022254 | 621.8613 | $13.84 | |
| ETH | <0.01% | $0.000004 | 3,580,224.3634 | $13.68 | |
| ETH | <0.01% | $0.027606 | 490.7926 | $13.55 | |
| ETH | <0.01% | $0.079711 | 169.7692 | $13.53 | |
| ETH | <0.01% | $0.03265 | 408.4878 | $13.34 | |
| ETH | <0.01% | $0.000006 | 2,113,035.5485 | $13.29 | |
| ETH | <0.01% | $1.17 | 11.333 | $13.26 | |
| ETH | <0.01% | $0.015252 | 865.9631 | $13.21 | |
| ETH | <0.01% | $16.22 | 0.8011 | $12.99 | |
| ETH | <0.01% | $2.1 | 6.0269 | $12.64 | |
| ETH | <0.01% | $0.005349 | 2,360.1616 | $12.62 | |
| ETH | <0.01% | $0.020363 | 618.4002 | $12.59 | |
| ETH | <0.01% | $3.38 | 3.6434 | $12.31 | |
| ETH | <0.01% | $1.29 | 9.5108 | $12.27 | |
| ETH | <0.01% | $0.914162 | 13.2775 | $12.14 | |
| ETH | <0.01% | $257.32 | 0.0468 | $12.03 | |
| ETH | <0.01% | $0.000004 | 2,907,766.0463 | $11.89 | |
| ETH | <0.01% | $76.93 | 0.1545 | $11.89 | |
| ETH | <0.01% | $0.107835 | 109.9897 | $11.86 | |
| ETH | <0.01% | $120.07 | 0.0971 | $11.66 | |
| ETH | <0.01% | $0.005696 | 2,035.0298 | $11.59 | |
| ETH | <0.01% | $0.999494 | 11.4525 | $11.45 | |
| ETH | <0.01% | $3.56 | 3.183 | $11.33 | |
| ETH | <0.01% | $0.005206 | 2,171.0432 | $11.3 | |
| ETH | <0.01% | $0.991195 | 11.351 | $11.25 | |
| ETH | <0.01% | $0.46056 | 24.0472 | $11.08 | |
| ETH | <0.01% | $0.213911 | 50.8686 | $10.88 | |
| ETH | <0.01% | $1.24 | 8.6499 | $10.73 | |
| ETH | <0.01% | $0.020863 | 508.1816 | $10.6 | |
| ETH | <0.01% | $0.057752 | 183.0983 | $10.57 | |
| ETH | <0.01% | $0.980921 | 10.7731 | $10.57 | |
| ETH | <0.01% | $1.32 | 7.9908 | $10.55 | |
| ETH | <0.01% | $1.28 | 8.1754 | $10.46 | |
| ETH | <0.01% | $0.022866 | 455.4231 | $10.41 | |
| ETH | <0.01% | $0.017421 | 593.8601 | $10.35 | |
| ETH | <0.01% | $0.999694 | 10.3073 | $10.3 | |
| ETH | <0.01% | $0.004277 | 2,386.198 | $10.21 | |
| ETH | <0.01% | $0.152179 | 66.96 | $10.19 | |
| ETH | <0.01% | $0.002537 | 3,945.578 | $10.01 | |
| ETH | <0.01% | $0.033662 | 296.0617 | $9.97 | |
| ETH | <0.01% | $0.029163 | 336.1848 | $9.8 | |
| ETH | <0.01% | $119.26 | 0.0811 | $9.68 | |
| ETH | <0.01% | $0.998352 | 9.6638 | $9.65 | |
| ETH | <0.01% | $0.006471 | 1,467.9283 | $9.5 | |
| ETH | <0.01% | $0.044646 | 212.0678 | $9.47 | |
| ETH | <0.01% | $0.177108 | 53.0808 | $9.4 | |
| ETH | <0.01% | $0.155979 | 60.1492 | $9.38 | |
| ETH | <0.01% | $1,810.99 | 0.00512386 | $9.28 | |
| ETH | <0.01% | $0.002249 | 4,095.3172 | $9.21 | |
| ETH | <0.01% | $1.01 | 9.1568 | $9.2 | |
| ETH | <0.01% | $2,594.71 | 0.00353814 | $9.18 | |
| ETH | <0.01% | $0.009854 | 910.0065 | $8.97 | |
| ETH | <0.01% | $0.984014 | 9.0719 | $8.93 | |
| ETH | <0.01% | $0.032642 | 271.0684 | $8.85 | |
| ETH | <0.01% | $1.07 | 8.3047 | $8.84 | |
| ETH | <0.01% | $0.006932 | 1,254.0384 | $8.69 | |
| ETH | <0.01% | $0.018714 | 459.7097 | $8.6 | |
| ETH | <0.01% | $0.002814 | 3,049.3185 | $8.58 | |
| ETH | <0.01% | $0.011849 | 722.8083 | $8.56 | |
| ETH | <0.01% | $0.005877 | 1,446.8852 | $8.5 | |
| ETH | <0.01% | $10.06 | 0.8444 | $8.5 | |
| ETH | <0.01% | $0.036844 | 229.6868 | $8.46 | |
| ETH | <0.01% | $0.163064 | 51.6721 | $8.43 | |
| ETH | <0.01% | <$0.000001 | 816,542,859.0527 | $8.42 | |
| ETH | <0.01% | $8.51 | 0.987 | $8.4 | |
| ETH | <0.01% | $1.06 | 7.8921 | $8.38 | |
| ETH | <0.01% | $0.077268 | 107.909 | $8.34 | |
| ETH | <0.01% | $1,528.26 | 0.00542895 | $8.3 | |
| ETH | <0.01% | $0.116957 | 69.8579 | $8.17 | |
| ETH | <0.01% | $0.479239 | 16.9329 | $8.11 | |
| ETH | <0.01% | $0.084097 | 96.2327 | $8.09 | |
| ETH | <0.01% | $0.209915 | 38.3683 | $8.05 | |
| ETH | <0.01% | $0.013638 | 587.5713 | $8.01 | |
| ETH | <0.01% | $0.052603 | 152.1172 | $8 | |
| ETH | <0.01% | $103.18 | 0.077 | $7.95 | |
| ETH | <0.01% | $0.000001 | 8,825,346.0607 | $7.89 | |
| ETH | <0.01% | $1.58 | 4.9785 | $7.87 | |
| ETH | <0.01% | $0.066365 | 118.3501 | $7.85 | |
| ETH | <0.01% | $0.163136 | 47.7693 | $7.79 | |
| ETH | <0.01% | $0.13757 | 56.0221 | $7.71 | |
| ETH | <0.01% | $0.040014 | 190.7461 | $7.63 | |
| ETH | <0.01% | $0.999522 | 7.6039 | $7.6 | |
| ETH | <0.01% | $7.89 | 0.9596 | $7.57 | |
| ETH | <0.01% | $0.120223 | 62.5585 | $7.52 | |
| ETH | <0.01% | $0.11041 | 66.7495 | $7.37 | |
| ETH | <0.01% | $0.00404 | 1,812.2544 | $7.32 | |
| ETH | <0.01% | $1.18 | 6.1303 | $7.23 | |
| ETH | <0.01% | $0.005457 | 1,325.5052 | $7.23 | |
| ETH | <0.01% | $6.56 | 1.1021 | $7.23 | |
| ETH | <0.01% | $0.00001 | 708,647.6235 | $7.09 | |
| ETH | <0.01% | $0.00709 | 997.8973 | $7.08 | |
| ETH | <0.01% | <$0.000001 | 85,097,355.4529 | $7.07 | |
| ETH | <0.01% | $0.045837 | 152.7576 | $7 | |
| ETH | <0.01% | $0.003682 | 1,890.2749 | $6.96 | |
| ETH | <0.01% | $1.55 | 4.3854 | $6.8 | |
| ETH | <0.01% | $0.000183 | 37,025.8028 | $6.78 | |
| ETH | <0.01% | $0.168647 | 39.9011 | $6.73 | |
| ETH | <0.01% | $1.22 | 5.495 | $6.7 | |
| ETH | <0.01% | $1.63 | 3.9898 | $6.5 | |
| ETH | <0.01% | $0.12606 | 51.3231 | $6.47 | |
| ETH | <0.01% | $0.017032 | 376.856 | $6.42 | |
| ETH | <0.01% | $0.005315 | 1,200.1076 | $6.38 | |
| ETH | <0.01% | $0.072482 | 86.8308 | $6.29 | |
| ETH | <0.01% | $0.14251 | 44.1618 | $6.29 | |
| ETH | <0.01% | $0.070382 | 89.3801 | $6.29 | |
| ETH | <0.01% | $0.000527 | 11,917.7087 | $6.28 | |
| ETH | <0.01% | $0.0805 | 77.2525 | $6.22 | |
| ETH | <0.01% | $621.61 | 0.00997964 | $6.2 | |
| ETH | <0.01% | $0.235164 | 26.2926 | $6.18 | |
| ETH | <0.01% | $0.095811 | 64.2564 | $6.16 | |
| ETH | <0.01% | $0.000004 | 1,591,631.5475 | $6.15 | |
| ETH | <0.01% | <$0.000001 | 36,465,992.2039 | $6.15 | |
| ETH | <0.01% | $0.005017 | 1,220.6656 | $6.12 | |
| ETH | <0.01% | $0.07485 | 81.777 | $6.12 | |
| ETH | <0.01% | $56.93 | 0.1072 | $6.11 | |
| ETH | <0.01% | $0.040456 | 147.2959 | $5.96 | |
| ETH | <0.01% | $0.000714 | 8,330.8703 | $5.95 | |
| ETH | <0.01% | $0.024285 | 244.3287 | $5.93 | |
| ETH | <0.01% | $759.71 | 0.00769599 | $5.85 | |
| ETH | <0.01% | $13.87 | 0.4171 | $5.79 | |
| ETH | <0.01% | $0.00159 | 3,594.1328 | $5.71 | |
| ETH | <0.01% | $9.61 | 0.5892 | $5.66 | |
| ETH | <0.01% | $0.227808 | 24.0705 | $5.48 | |
| ETH | <0.01% | $3.66 | 1.4806 | $5.41 | |
| ETH | <0.01% | $0.013434 | 402.1601 | $5.4 | |
| ETH | <0.01% | $0.475181 | 11.289 | $5.36 | |
| ETH | <0.01% | <$0.000001 | 750,487,366.2558 | $5.36 | |
| ETH | <0.01% | $0.00212 | 2,516.7482 | $5.33 | |
| ETH | <0.01% | $0.00147 | 3,617.9994 | $5.32 | |
| ETH | <0.01% | $0.000017 | 313,218.5075 | $5.26 | |
| ETH | <0.01% | $0.163241 | 32.1843 | $5.25 | |
| ETH | <0.01% | <$0.000001 | 10,592,429.3441 | $5.15 | |
| ETH | <0.01% | $0.018801 | 273.1001 | $5.13 | |
| ETH | <0.01% | $0.029031 | 175.3579 | $5.09 | |
| ETH | <0.01% | $0.010204 | 498.0661 | $5.08 | |
| ETH | <0.01% | $0.112502 | 44.6613 | $5.02 | |
| ETH | <0.01% | $0.044321 | 112.3154 | $4.98 | |
| ETH | <0.01% | $0.342904 | 14.485 | $4.97 | |
| ETH | <0.01% | $0.000006 | 796,065.2646 | $4.92 | |
| ETH | <0.01% | $0.023591 | 208.5305 | $4.92 | |
| ETH | <0.01% | $2,323.98 | 0.00210721 | $4.9 | |
| ETH | <0.01% | $0.000006 | 839,376.9907 | $4.88 | |
| ETH | <0.01% | $0.001843 | 2,621.5495 | $4.83 | |
| ETH | <0.01% | $0.019642 | 245.3142 | $4.82 | |
| ETH | <0.01% | $1.01 | 4.7041 | $4.77 | |
| ETH | <0.01% | $0.985018 | 4.7866 | $4.71 | |
| ETH | <0.01% | $0.000017 | 269,363.8609 | $4.71 | |
| ETH | <0.01% | $1.13 | 4.1485 | $4.69 | |
| ETH | <0.01% | $0.302878 | 15.4142 | $4.67 | |
| ETH | <0.01% | $4.41 | 1.0559 | $4.66 | |
| ETH | <0.01% | $2.32 | 1.9721 | $4.58 | |
| ETH | <0.01% | $0.000425 | 10,766.9373 | $4.57 | |
| ETH | <0.01% | $0.026878 | 167.6406 | $4.51 | |
| ETH | <0.01% | $0.504276 | 8.7415 | $4.41 | |
| ETH | <0.01% | $0.000931 | 4,700.3199 | $4.38 | |
| ETH | <0.01% | $2,407.24 | 0.00181269 | $4.36 | |
| ETH | <0.01% | $0.061986 | 69.4931 | $4.31 | |
| ETH | <0.01% | $0.014206 | 302.356 | $4.3 | |
| ETH | <0.01% | $0.027138 | 157.9296 | $4.29 | |
| ETH | <0.01% | $0.000088 | 47,932.4008 | $4.23 | |
| ETH | <0.01% | $1.03 | 4.0541 | $4.19 | |
| ETH | <0.01% | $2,265.17 | 0.00181939 | $4.12 | |
| ETH | <0.01% | $0.000001 | 2,741,426.2194 | $4.08 | |
| ETH | <0.01% | $0.983662 | 4.1399 | $4.07 | |
| ETH | <0.01% | $0.019934 | 203.8588 | $4.06 | |
| ETH | <0.01% | $0.002938 | 1,377.0583 | $4.05 | |
| ETH | <0.01% | $0.107008 | 37.8011 | $4.05 | |
| ETH | <0.01% | $0.010016 | 403.4307 | $4.04 | |
| ETH | <0.01% | $0.00 | 0.026 | $0.00 | |
| ETH | <0.01% | $0.009227 | 437.2058 | $4.03 | |
| ETH | <0.01% | $2.33 | 1.7185 | $4 | |
| ETH | <0.01% | $0.008573 | 464.2066 | $3.98 | |
| ETH | <0.01% | $0.152522 | 25.992 | $3.96 | |
| ETH | <0.01% | $0.038308 | 100.4971 | $3.85 | |
| ETH | <0.01% | $0.000076 | 50,479.8348 | $3.83 | |
| ETH | <0.01% | $0.038667 | 98.4445 | $3.81 | |
| ETH | <0.01% | $0.000062 | 60,784.5309 | $3.79 | |
| ETH | <0.01% | $0.02109 | 178.6925 | $3.77 | |
| ETH | <0.01% | $0.000004 | 980,782.4849 | $3.77 | |
| ETH | <0.01% | $0.007557 | 497.1292 | $3.76 | |
| ETH | <0.01% | $0.000178 | 21,125.75 | $3.75 | |
| ETH | <0.01% | $0.145101 | 25.7998 | $3.74 | |
| ETH | <0.01% | $0.048748 | 75.9755 | $3.7 | |
| ETH | <0.01% | $0.006014 | 594.4718 | $3.58 | |
| ETH | <0.01% | $0.10863 | 32.866 | $3.57 | |
| ETH | <0.01% | $0.002253 | 1,582.4511 | $3.57 | |
| ETH | <0.01% | $1.16 | 3.0481 | $3.54 | |
| ETH | <0.01% | $0.000271 | 13,038.3177 | $3.53 | |
| ETH | <0.01% | $0.988576 | 3.5377 | $3.5 | |
| ETH | <0.01% | <$0.000001 | 34,040,213,867.8113 | $3.49 | |
| ETH | <0.01% | $0.009332 | 372.9653 | $3.48 | |
| ETH | <0.01% | $0.999938 | 3.4678 | $3.47 | |
| ETH | <0.01% | $0.006864 | 504.0057 | $3.46 | |
| ETH | <0.01% | $0.020255 | 170.2756 | $3.45 | |
| ETH | <0.01% | $0.027774 | 123.6917 | $3.44 | |
| ETH | <0.01% | $0.12585 | 27.2923 | $3.43 | |
| ETH | <0.01% | $3.04 | 1.1279 | $3.43 | |
| ETH | <0.01% | $0.000051 | 66,266.5702 | $3.4 | |
| ETH | <0.01% | <$0.000001 | 1,909,342,256.9495 | $3.39 | |
| ETH | <0.01% | $0.189013 | 17.8307 | $3.37 | |
| ETH | <0.01% | $0.016054 | 207.8648 | $3.34 | |
| ETH | <0.01% | $0.090728 | 36.6922 | $3.33 | |
| ETH | <0.01% | $0.20393 | 16.2626 | $3.32 | |
| ETH | <0.01% | $0.096077 | 34.3627 | $3.3 | |
| ETH | <0.01% | $0.000477 | 6,896.2788 | $3.29 | |
| ETH | <0.01% | $15.79 | 0.2082 | $3.29 | |
| ETH | <0.01% | $0.000035 | 92,506.797 | $3.27 | |
| ETH | <0.01% | $119.69 | 0.0272 | $3.25 | |
| ETH | <0.01% | $1 | 3.2172 | $3.22 | |
| ETH | <0.01% | $1.8 | 1.779 | $3.21 | |
| ETH | <0.01% | $2,397.98 | 0.00133726 | $3.21 | |
| ETH | <0.01% | $0.023393 | 135.1446 | $3.16 | |
| ETH | <0.01% | $0.999077 | 3.1505 | $3.15 | |
| ETH | <0.01% | $0.557684 | 5.6321 | $3.14 | |
| ETH | <0.01% | $0.102487 | 30.3997 | $3.12 | |
| ETH | <0.01% | $18.06 | 0.1715 | $3.1 | |
| ETH | <0.01% | $0.000177 | 17,475.3949 | $3.09 | |
| ETH | <0.01% | <$0.000001 | 3,281,686,334.8625 | $3.09 | |
| ETH | <0.01% | $78.06 | 0.0395 | $3.09 | |
| ETH | <0.01% | $0.187442 | 16.3941 | $3.07 | |
| ETH | <0.01% | $0.078783 | 38.936 | $3.07 | |
| ETH | <0.01% | $0.000911 | 3,320.0201 | $3.02 | |
| ETH | <0.01% | $0.007706 | 391.1205 | $3.01 | |
| ETH | <0.01% | $0.109313 | 27.4217 | $3 | |
| ETH | <0.01% | $0.004437 | 675.3935 | $3 | |
| ETH | <0.01% | $0.024413 | 122.2383 | $2.98 | |
| ETH | <0.01% | $0.00003 | 100,192.7848 | $2.97 | |
| ETH | <0.01% | $0.00008 | 37,100.8501 | $2.97 | |
| ETH | <0.01% | $0.029133 | 100.7696 | $2.94 | |
| ETH | <0.01% | $0.012239 | 239.7794 | $2.93 | |
| ETH | <0.01% | <$0.000001 | 52,485,883.2153 | $2.93 | |
| ETH | <0.01% | $0.083045 | 34.5895 | $2.87 | |
| ETH | <0.01% | $0.010323 | 277.2816 | $2.86 | |
| ETH | <0.01% | <$0.000001 | 396,653,612.9908 | $2.85 | |
| ETH | <0.01% | $0.011129 | 254.3598 | $2.83 | |
| ETH | <0.01% | $0.000109 | 25,915.3775 | $2.81 | |
| ETH | <0.01% | <$0.000001 | 107,908,568.3272 | $2.8 | |
| ETH | <0.01% | $0.679556 | 4.1015 | $2.79 | |
| ETH | <0.01% | $0.003835 | 724.023 | $2.78 | |
| ETH | <0.01% | $0.914162 | 3.0184 | $2.76 | |
| ETH | <0.01% | $1.35 | 2.0333 | $2.74 | |
| ETH | <0.01% | $2.31 | 1.1601 | $2.68 | |
| ETH | <0.01% | $0.003744 | 714.9742 | $2.68 | |
| ETH | <0.01% | $0.092309 | 28.9847 | $2.68 | |
| ETH | <0.01% | $0.000008 | 350,691.3277 | $2.66 | |
| ETH | <0.01% | $76,077 | 0.0000348 | $2.65 | |
| ETH | <0.01% | $0.00025 | 10,586.5824 | $2.64 | |
| ETH | <0.01% | $0.004737 | 555.3004 | $2.63 | |
| ETH | <0.01% | $1.18 | 2.2143 | $2.61 | |
| ETH | <0.01% | $0.032566 | 79.6034 | $2.59 | |
| ETH | <0.01% | $0.000952 | 2,706.7579 | $2.58 | |
| ETH | <0.01% | $0.070858 | 36.2155 | $2.57 | |
| ETH | <0.01% | $0.000475 | 5,397.9564 | $2.56 | |
| ETH | <0.01% | <$0.000001 | 8,829,289,342.7561 | $2.53 | |
| ETH | <0.01% | $0.443257 | 5.6893 | $2.52 | |
| ETH | <0.01% | <$0.000001 | 88,172,289.4717 | $2.51 | |
| ETH | <0.01% | $0.284893 | 8.7708 | $2.5 | |
| ETH | <0.01% | $0.984408 | 2.5267 | $2.49 | |
| ETH | <0.01% | $0.677313 | 3.649 | $2.47 | |
| ETH | <0.01% | $0.999434 | 2.4419 | $2.44 | |
| ETH | <0.01% | $0.005834 | 417.1727 | $2.43 | |
| ETH | <0.01% | $0.021771 | 111.7463 | $2.43 | |
| ETH | <0.01% | <$0.000001 | 543,638,565.5037 | $2.43 | |
| ETH | <0.01% | $0.003114 | 777.0816 | $2.42 | |
| ETH | <0.01% | $0.000021 | 116,434.6246 | $2.42 | |
| ETH | <0.01% | $0.003793 | 630.5327 | $2.39 | |
| ETH | <0.01% | $0.059228 | 40.3414 | $2.39 | |
| ETH | <0.01% | $0.584832 | 4.0473 | $2.37 | |
| ETH | <0.01% | $0.00 | 0.00033402 | $0.00 | |
| ETH | <0.01% | $0.00632 | 367.5982 | $2.32 | |
| ETH | <0.01% | $0.288971 | 8 | $2.31 | |
| ETH | <0.01% | $0.211401 | 10.8854 | $2.3 | |
| ETH | <0.01% | $0.273124 | 8.4187 | $2.3 | |
| ETH | <0.01% | $0.000669 | 3,424.0722 | $2.29 | |
| ETH | <0.01% | $0.003274 | 687.3557 | $2.25 | |
| ETH | <0.01% | $0.00022 | 10,219.3493 | $2.25 | |
| ETH | <0.01% | $0.00396 | 562.2806 | $2.23 | |
| ETH | <0.01% | $0.946432 | 2.349 | $2.22 | |
| ETH | <0.01% | $0.089266 | 24.7557 | $2.21 | |
| ETH | <0.01% | $0.001694 | 1,303.8786 | $2.21 | |
| ETH | <0.01% | $0.000044 | 50,207.2884 | $2.2 | |
| ETH | <0.01% | $2,453.13 | 0.00089802 | $2.2 | |
| ETH | <0.01% | $0.000283 | 7,760.1162 | $2.2 | |
| ETH | <0.01% | $0.001394 | 1,571.5211 | $2.19 | |
| ETH | <0.01% | $0.000386 | 5,667.1115 | $2.19 | |
| ETH | <0.01% | $0.00176 | 1,239.8989 | $2.18 | |
| ETH | <0.01% | $0.085811 | 25.3726 | $2.18 | |
| ETH | <0.01% | $75,933 | 0.00002857 | $2.17 | |
| ETH | <0.01% | $0.00439 | 492.5668 | $2.16 | |
| ETH | <0.01% | $0.000396 | 5,438.3776 | $2.15 | |
| ETH | <0.01% | $0.206909 | 10.3997 | $2.15 | |
| ETH | <0.01% | $0.003805 | 565.3185 | $2.15 | |
| ETH | <0.01% | <$0.000001 | 216,724,765.5405 | $2.14 | |
| ETH | <0.01% | $0.000579 | 3,700.3397 | $2.14 | |
| ETH | <0.01% | $0.004393 | 478.2274 | $2.1 | |
| ETH | <0.01% | $0.020259 | 103.5188 | $2.1 | |
| ETH | <0.01% | <$0.000001 | 2,258,444,768.5326 | $2.09 | |
| ETH | <0.01% | $1.31 | 1.5918 | $2.09 | |
| ETH | <0.01% | $0.000837 | 2,476.5525 | $2.07 | |
| ETH | <0.01% | $188.19 | 0.011 | $2.07 | |
| ETH | <0.01% | $0.102183 | 20.0086 | $2.04 | |
| ETH | <0.01% | $2,027.17 | 0.00100763 | $2.04 | |
| ETH | <0.01% | $0.083803 | 24.3071 | $2.04 | |
| ETH | <0.01% | $0.011922 | 170.0054 | $2.03 | |
| ETH | <0.01% | $0.00196 | 1,021.8548 | $2 | |
| ETH | <0.01% | $0.000158 | 12,648.569 | $2 | |
| ETH | <0.01% | $0.025241 | 79.1499 | $2 | |
| ETH | <0.01% | $0.000178 | 11,122.9129 | $1.98 | |
| ETH | <0.01% | $0.022525 | 87.3465 | $1.97 | |
| ETH | <0.01% | $0.001333 | 1,472.4386 | $1.96 | |
| ETH | <0.01% | $0.044384 | 44.2148 | $1.96 | |
| ETH | <0.01% | $0.00 | 131.9154 | $0.00 | |
| ETH | <0.01% | $0.001041 | 1,873.9887 | $1.95 | |
| ETH | <0.01% | $1.18 | 1.6379 | $1.93 | |
| ETH | <0.01% | $1.18 | 1.6379 | $1.93 | |
| ETH | <0.01% | $0.000385 | 4,986.2956 | $1.92 | |
| ETH | <0.01% | $57,660 | 0.00003261 | $1.88 | |
| ETH | <0.01% | $0.006683 | 277.7517 | $1.86 | |
| ETH | <0.01% | $0.001267 | 1,465.2557 | $1.86 | |
| ETH | <0.01% | $0.005738 | 322.8678 | $1.85 | |
| ETH | <0.01% | $0.109644 | 16.8902 | $1.85 | |
| ETH | <0.01% | $0.000001 | 1,427,579.1698 | $1.84 | |
| ETH | <0.01% | $0.460941 | 3.9831 | $1.84 | |
| ETH | <0.01% | <$0.000001 | 51,304,461.9261 | $1.82 | |
| ETH | <0.01% | $0.05016 | 35.9009 | $1.8 | |
| ETH | <0.01% | $0.02495 | 71.9094 | $1.79 | |
| ETH | <0.01% | $0.000169 | 10,606.2962 | $1.79 | |
| ETH | <0.01% | $0.000002 | 1,054,596.3294 | $1.79 | |
| ETH | <0.01% | $0.016234 | 110.0045 | $1.79 | |
| ETH | <0.01% | $17.77 | 0.0989 | $1.76 | |
| ETH | <0.01% | $5.74 | 0.3046 | $1.75 | |
| ETH | <0.01% | $76,043 | 0.00002274 | $1.73 | |
| ETH | <0.01% | $0.006996 | 241.6952 | $1.69 | |
| ETH | <0.01% | $0.015834 | 106.7526 | $1.69 | |
| ETH | <0.01% | $1.27 | 1.32 | $1.68 | |
| ETH | <0.01% | $0.000687 | 2,436.6995 | $1.67 | |
| ETH | <0.01% | $0.000132 | 12,550.6256 | $1.65 | |
| ETH | <0.01% | $0.00035 | 4,718.0383 | $1.65 | |
| ETH | <0.01% | $0.00387 | 426.2172 | $1.65 | |
| ETH | <0.01% | $0.144904 | 11.3591 | $1.65 | |
| ETH | <0.01% | $0.020394 | 80.521 | $1.64 | |
| ETH | <0.01% | $0.000001 | 1,887,964.0672 | $1.63 | |
| ETH | <0.01% | $2,031.44 | 0.00080027 | $1.63 | |
| ETH | <0.01% | $0.066951 | 24.0989 | $1.61 | |
| ETH | <0.01% | $2.16 | 0.7459 | $1.61 | |
| ETH | <0.01% | $0.001454 | 1,101.0178 | $1.6 | |
| ETH | <0.01% | $0.259349 | 6.1448 | $1.59 | |
| ETH | <0.01% | $0.000465 | 3,404.362 | $1.58 | |
| ETH | <0.01% | $0.712802 | 2.2097 | $1.58 | |
| ETH | <0.01% | $0.552129 | 2.8483 | $1.57 | |
| ETH | <0.01% | $0.003327 | 472.6041 | $1.57 | |
| ETH | <0.01% | $0.007512 | 208.5389 | $1.57 | |
| ETH | <0.01% | <$0.000001 | 83,801,141.7134 | $1.55 | |
| ETH | <0.01% | $0.000622 | 2,483.5095 | $1.54 | |
| ETH | <0.01% | $0.000159 | 9,640.1763 | $1.54 | |
| ETH | <0.01% | $0.007612 | 201.667 | $1.54 | |
| ETH | <0.01% | <$0.000001 | 10,148,371.2822 | $1.52 | |
| ETH | <0.01% | <$0.000001 | 1,103,947,774.1253 | $1.51 | |
| ETH | <0.01% | $0.0001 | 14,998.793 | $1.5 | |
| ETH | <0.01% | $0.004284 | 350.666 | $1.5 | |
| ETH | <0.01% | $1,960.03 | 0.00076446 | $1.5 | |
| ETH | <0.01% | $0.000826 | 1,792.1412 | $1.48 | |
| ETH | <0.01% | <$0.000001 | 16,301,345.4184 | $1.47 | |
| ETH | <0.01% | $0.002387 | 615.2354 | $1.47 | |
| ETH | <0.01% | <$0.000001 | 96,425,274.4677 | $1.47 | |
| ETH | <0.01% | $0.00192 | 761.0433 | $1.46 | |
| ETH | <0.01% | $0.017292 | 84.4693 | $1.46 | |
| ETH | <0.01% | $0.495371 | 2.93 | $1.45 | |
| ETH | <0.01% | $0.002588 | 559.6262 | $1.45 | |
| ETH | <0.01% | $0.009324 | 153.7674 | $1.43 | |
| ETH | <0.01% | $0.004822 | 297.2426 | $1.43 | |
| ETH | <0.01% | $0.088481 | 16.1692 | $1.43 | |
| ETH | <0.01% | $0.222216 | 6.4171 | $1.43 | |
| ETH | <0.01% | $0.000679 | 2,099.5504 | $1.43 | |
| ETH | <0.01% | $0.013089 | 108.4907 | $1.42 | |
| ETH | <0.01% | $0.006916 | 205.0805 | $1.42 | |
| ETH | <0.01% | <$0.000001 | 735,621,648.4346 | $1.42 | |
| ETH | <0.01% | $1.52 | 0.93 | $1.41 | |
| ETH | <0.01% | $0.018039 | 78.2781 | $1.41 | |
| ETH | <0.01% | $2.45 | 0.574 | $1.41 | |
| ETH | <0.01% | $76,340 | 0.00001839 | $1.4 | |
| ETH | <0.01% | $0.000476 | 2,943.3262 | $1.4 | |
| ETH | <0.01% | $0.007996 | 173.4471 | $1.39 | |
| ETH | <0.01% | $0.001701 | 814.1122 | $1.39 | |
| ETH | <0.01% | $0.000105 | 13,215.5563 | $1.38 | |
| ETH | <0.01% | $0.003239 | 426.1935 | $1.38 | |
| ETH | <0.01% | $0.002591 | 527.9798 | $1.37 | |
| ETH | <0.01% | $0.019594 | 69.7813 | $1.37 | |
| ETH | <0.01% | $0.104264 | 12.8539 | $1.34 | |
| ETH | <0.01% | $0.017394 | 76.0883 | $1.32 | |
| ETH | <0.01% | $0.02128 | 61.9439 | $1.32 | |
| ETH | <0.01% | $0.011447 | 114.1608 | $1.31 | |
| ETH | <0.01% | $0.007178 | 179.4428 | $1.29 | |
| ETH | <0.01% | $0.004231 | 303.8546 | $1.29 | |
| ETH | <0.01% | $0.999193 | 1.2814 | $1.28 | |
| ETH | <0.01% | $1.89 | 0.6763 | $1.28 | |
| ETH | <0.01% | $0.00 | 0.00002213 | $0.00 | |
| ETH | <0.01% | $0.000138 | 9,267.8885 | $1.27 | |
| ETH | <0.01% | $0.342965 | 3.7148 | $1.27 | |
| ETH | <0.01% | $75,557 | 0.00001675 | $1.27 | |
| ETH | <0.01% | $0.130125 | 9.6849 | $1.26 | |
| ETH | <0.01% | $0.010822 | 115.0637 | $1.25 | |
| ETH | <0.01% | $0.00004 | 30,519.185 | $1.23 | |
| ETH | <0.01% | $0.155146 | 7.9356 | $1.23 | |
| ETH | <0.01% | $0.091036 | 13.4964 | $1.23 | |
| ETH | <0.01% | $0.006872 | 173.82 | $1.19 | |
| ETH | <0.01% | $0.005293 | 222.2056 | $1.18 | |
| ETH | <0.01% | $0.642137 | 1.8227 | $1.17 | |
| ETH | <0.01% | $0.058016 | 20.0364 | $1.16 | |
| ETH | <0.01% | $0.000002 | 627,275.1643 | $1.16 | |
| ETH | <0.01% | $0.000446 | 2,579.2313 | $1.15 | |
| ETH | <0.01% | $0.062697 | 18.3445 | $1.15 | |
| ETH | <0.01% | <$0.000001 | 5,321,170.5984 | $1.15 | |
| ETH | <0.01% | $0.248742 | 4.5805 | $1.14 | |
| ETH | <0.01% | $0.020741 | 54.8849 | $1.14 | |
| ETH | <0.01% | $2,297.35 | 0.00049436 | $1.14 | |
| ETH | <0.01% | $0.003896 | 290.801 | $1.13 | |
| ETH | <0.01% | $0.008249 | 135.2304 | $1.12 | |
| ETH | <0.01% | $0.137174 | 8.0918 | $1.11 | |
| ETH | <0.01% | $0.001034 | 1,071.0484 | $1.11 | |
| ETH | <0.01% | $0.000123 | 8,990.4023 | $1.11 | |
| ETH | <0.01% | $0.086471 | 12.6134 | $1.09 | |
| ETH | <0.01% | $0.002916 | 373.9598 | $1.09 | |
| ETH | <0.01% | $1.01 | 1.0752 | $1.08 | |
| ETH | <0.01% | $0.003878 | 278.956 | $1.08 | |
| ETH | <0.01% | $0.000606 | 1,777.4512 | $1.08 | |
| ETH | <0.01% | $0.244366 | 4.3771 | $1.07 | |
| ETH | <0.01% | $0.274411 | 3.8052 | $1.04 | |
| ETH | <0.01% | $0.042679 | 24.3733 | $1.04 | |
| ETH | <0.01% | $0.007125 | 145.9224 | $1.04 | |
| ETH | <0.01% | $0.00003 | 34,596.8739 | $1.04 | |
| ETH | <0.01% | $0.016505 | 62.5162 | $1.03 | |
| ETH | <0.01% | $0.000136 | 7,506.8739 | $1.02 | |
| ETH | <0.01% | $67,854.69 | 0.000015 | $1.02 | |
| ETH | <0.01% | <$0.000001 | 628,892,581.1767 | $1.02 | |
| ETH | <0.01% | $0.004174 | 243.0841 | $1.01 | |
| ETH | <0.01% | $0.108382 | 9.3253 | $1.01 | |
| ETH | <0.01% | $4.91 | 0.2054 | $1.01 | |
| ETH | <0.01% | $0.005198 | 192.7933 | $1 | |
| ETH | <0.01% | $0.000001 | 1,278,621.5118 | $0.9923 | |
| ETH | <0.01% | $15.82 | 0.0625 | $0.9881 | |
| ETH | <0.01% | $0.010099 | 96.6689 | $0.9762 | |
| ETH | <0.01% | $0.002517 | 385.4674 | $0.97 | |
| ETH | <0.01% | $0.000819 | 1,183.881 | $0.969 | |
| ETH | <0.01% | $0.664129 | 1.4469 | $0.9609 | |
| ETH | <0.01% | $0.00186 | 515.1178 | $0.9581 | |
| ETH | <0.01% | $0.000298 | 3,196.4979 | $0.9529 | |
| ETH | <0.01% | $0.15263 | 6.2272 | $0.9504 | |
| ETH | <0.01% | $0.012768 | 74.0839 | $0.9459 | |
| ETH | <0.01% | $0.018445 | 51.1157 | $0.9428 | |
| ETH | <0.01% | $0.000042 | 22,218.8002 | $0.9416 | |
| ETH | <0.01% | $0.000015 | 63,648.9998 | $0.9337 | |
| ETH | <0.01% | $0.005473 | 170.5398 | $0.9333 | |
| ETH | <0.01% | $0.051652 | 18.0383 | $0.9317 | |
| ETH | <0.01% | $0.999679 | 0.9025 | $0.9022 | |
| ETH | <0.01% | $0.000089 | 10,099.5678 | $0.901 | |
| ETH | <0.01% | $0.010757 | 83.6398 | $0.8997 | |
| ETH | <0.01% | $0.0008 | 1,118.4769 | $0.8945 | |
| ETH | <0.01% | $0.001402 | 632.9103 | $0.8874 | |
| ETH | <0.01% | $0.003306 | 265.9428 | $0.8791 | |
| ETH | <0.01% | $0.037736 | 23.119 | $0.8724 | |
| ETH | <0.01% | $0.324553 | 2.6869 | $0.872 | |
| ETH | <0.01% | $0.000097 | 9,019.3059 | $0.8716 | |
| ETH | <0.01% | $0.059365 | 14.6768 | $0.8712 | |
| ETH | <0.01% | $0.000324 | 2,677.5132 | $0.8679 | |
| ETH | <0.01% | $0.002513 | 344.5928 | $0.8658 | |
| ETH | <0.01% | $0.000076 | 11,329.7447 | $0.8641 | |
| ETH | <0.01% | $0.95096 | 0.9008 | $0.8566 | |
| ETH | <0.01% | $0.005114 | 167.1294 | $0.8546 | |
| ETH | <0.01% | $0.026634 | 31.8145 | $0.8473 | |
| ETH | <0.01% | $0.009442 | 89.7019 | $0.8469 | |
| ETH | <0.01% | $0.00024 | 3,523.3431 | $0.8468 | |
| ETH | <0.01% | $0.17494 | 4.8263 | $0.8443 | |
| ETH | <0.01% | $45.52 | 0.0185 | $0.8417 | |
| ETH | <0.01% | $0.064969 | 12.9116 | $0.8388 | |
| ETH | <0.01% | $0.035294 | 23.7002 | $0.8364 | |
| ETH | <0.01% | $2,085.85 | 0.00039832 | $0.8308 | |
| ETH | <0.01% | $0.002239 | 363.6077 | $0.8139 | |
| ETH | <0.01% | $0.001395 | 572.6653 | $0.7987 | |
| ETH | <0.01% | $0.001961 | 404.293 | $0.7928 | |
| ETH | <0.01% | $2,288.82 | 0.00034033 | $0.7789 | |
| ETH | <0.01% | $0.341109 | 2.2756 | $0.7762 | |
| ETH | <0.01% | $0.011474 | 67.4633 | $0.774 | |
| ETH | <0.01% | <$0.000001 | 2,262,522.4994 | $0.7713 | |
| ETH | <0.01% | $0.000184 | 4,175.5332 | $0.7694 | |
| ETH | <0.01% | $0.076484 | 10.0219 | $0.7665 | |
| ETH | <0.01% | <$0.000001 | 14,979,190.8839 | $0.7659 | |
| ETH | <0.01% | $0.075916 | 10.082 | $0.7653 | |
| ETH | <0.01% | $0.00339 | 225.5109 | $0.7643 | |
| ETH | <0.01% | $0.034377 | 22.1036 | $0.7598 | |
| ETH | <0.01% | $0.034051 | 22.2796 | $0.7586 | |
| ETH | <0.01% | $1 | 0.757 | $0.7569 | |
| ETH | <0.01% | $0.0513 | 14.7479 | $0.7565 | |
| ETH | <0.01% | $0.001725 | 433.4443 | $0.7478 | |
| ETH | <0.01% | $0.000008 | 93,633.0424 | $0.7434 | |
| ETH | <0.01% | $2,639.96 | 0.00028002 | $0.7392 | |
| ETH | <0.01% | $0.005041 | 145.2818 | $0.7323 | |
| ETH | <0.01% | $0.000522 | 1,401.7781 | $0.732 | |
| ETH | <0.01% | $0.147029 | 4.9371 | $0.7258 | |
| ETH | <0.01% | $0.002295 | 310.7259 | $0.7132 | |
| ETH | <0.01% | $2.33 | 0.3048 | $0.7101 | |
| ETH | <0.01% | $2,212.31 | 0.00031482 | $0.6964 | |
| ETH | <0.01% | $0.011789 | 58.9402 | $0.6948 | |
| ETH | <0.01% | $0.019425 | 35.6318 | $0.6921 | |
| ETH | <0.01% | $0.007034 | 97.5376 | $0.686 | |
| ETH | <0.01% | $0.005784 | 117.4284 | $0.6791 | |
| ETH | <0.01% | $0.002581 | 262.1237 | $0.6765 | |
| ETH | <0.01% | $0.566419 | 1.1929 | $0.6756 | |
| ETH | <0.01% | $0.000001 | 510,628.7741 | $0.6703 | |
| ETH | <0.01% | <$0.000001 | 698,250,856.9288 | $0.6684 | |
| ETH | <0.01% | $8.89 | 0.0751 | $0.6675 | |
| ETH | <0.01% | $3.76 | 0.1759 | $0.6615 | |
| ETH | <0.01% | $0.000296 | 2,207.4523 | $0.6538 | |
| ETH | <0.01% | <$0.000001 | 519,691,192.6843 | $0.6503 | |
| ETH | <0.01% | $0.023691 | 27.2351 | $0.6452 | |
| ETH | <0.01% | $0.000384 | 1,661.5353 | $0.6373 | |
| ETH | <0.01% | $0.010238 | 61.7049 | $0.6317 | |
| ETH | <0.01% | $0.600699 | 1.0479 | $0.6294 | |
| ETH | <0.01% | $1.03 | 0.6077 | $0.6234 | |
| ETH | <0.01% | $0.000071 | 8,718.7428 | $0.6216 | |
| ETH | <0.01% | $0.000007 | 94,040.5951 | $0.6206 | |
| ETH | <0.01% | $0.023128 | 26.8199 | $0.6202 | |
| ETH | <0.01% | $0.00 | 24.955 | $0.00 | |
| ETH | <0.01% | $0.014761 | 41.8416 | $0.6176 | |
| ETH | <0.01% | $0.001078 | 572.6136 | $0.617 | |
| ETH | <0.01% | <$0.000001 | 11,917,555.9583 | $0.6155 | |
| ETH | <0.01% | $225.72 | 0.0027219 | $0.6143 | |
| ETH | <0.01% | $0.137066 | 4.4148 | $0.6051 | |
| ETH | <0.01% | <$0.000001 | 2,264,785.9077 | $0.6031 | |
| ETH | <0.01% | $3.56 | 0.1692 | $0.6023 | |
| ETH | <0.01% | $0.001495 | 402.7606 | $0.6022 | |
| ETH | <0.01% | $0.01125 | 53.5047 | $0.6019 | |
| ETH | <0.01% | $0.27546 | 2.179 | $0.6002 | |
| ETH | <0.01% | $0.002389 | 250.4447 | $0.5984 | |
| ETH | <0.01% | $0.132555 | 4.4585 | $0.5909 | |
| ETH | <0.01% | $0.017796 | 33.1139 | $0.5892 | |
| ETH | <0.01% | $0.002212 | 262.0382 | $0.5796 | |
| ETH | <0.01% | $0.890748 | 0.6502 | $0.5791 | |
| ETH | <0.01% | $0.324553 | 1.7836 | $0.5788 | |
| ETH | <0.01% | $0.011808 | 48.7237 | $0.5753 | |
| ETH | <0.01% | $0.001029 | 559.0974 | $0.5753 | |
| ETH | <0.01% | $0.000371 | 1,549.1841 | $0.5753 | |
| ETH | <0.01% | $0.000168 | 3,406.9705 | $0.5708 | |
| ETH | <0.01% | $0.003709 | 153.8504 | $0.5706 | |
| ETH | <0.01% | $0.225697 | 2.5191 | $0.5685 | |
| ETH | <0.01% | $0.0156 | 36.2343 | $0.5652 | |
| ETH | <0.01% | $2.38 | 0.2369 | $0.5646 | |
| ETH | <0.01% | $0.081224 | 6.9261 | $0.5625 | |
| ETH | <0.01% | $0.325196 | 1.7134 | $0.5571 | |
| ETH | <0.01% | $0.007182 | 77.2183 | $0.5545 | |
| ETH | <0.01% | $0.016336 | 33.8648 | $0.5532 | |
| ETH | <0.01% | <$0.000001 | 4,934,347.2219 | $0.5519 | |
| ETH | <0.01% | $65,384 | 0.00000844 | $0.5518 | |
| ETH | <0.01% | $0.019241 | 28.6402 | $0.551 | |
| ETH | <0.01% | $0.018066 | 30.4938 | $0.5509 | |
| ETH | <0.01% | $0.083804 | 6.5476 | $0.5487 | |
| ETH | <0.01% | <$0.000001 | 1,904,337.7244 | $0.545 | |
| ETH | <0.01% | $0.000402 | 1,354.8217 | $0.545 | |
| ETH | <0.01% | $0.055122 | 9.8628 | $0.5436 | |
| ETH | <0.01% | $0.007405 | 73.2655 | $0.5425 | |
| ETH | <0.01% | $0.000186 | 2,886.351 | $0.5375 | |
| ETH | <0.01% | <$0.000001 | 42,409,293.6098 | $0.5344 | |
| ETH | <0.01% | $0.977023 | 0.5458 | $0.5332 | |
| ETH | <0.01% | $2,193.64 | 0.00024254 | $0.532 | |
| ETH | <0.01% | $0.16553 | 3.2009 | $0.5298 | |
| ETH | <0.01% | $0.003879 | 136.2814 | $0.5286 | |
| ETH | <0.01% | $0.004968 | 105.753 | $0.5253 | |
| ETH | <0.01% | $0.196388 | 2.6718 | $0.5247 | |
| ETH | <0.01% | $2,019.46 | 0.00025945 | $0.5239 | |
| ETH | <0.01% | $0.002611 | 199.7278 | $0.5214 | |
| ETH | <0.01% | $2,110.31 | 0.00024703 | $0.5213 | |
| ETH | <0.01% | $0.125446 | 4.129 | $0.5179 | |
| ETH | <0.01% | $0.000359 | 1,439.1016 | $0.5161 | |
| ETH | <0.01% | $0.003261 | 157.706 | $0.5142 | |
| ETH | <0.01% | $0.00473 | 107.4345 | $0.5081 | |
| ETH | <0.01% | $8.88 | 0.0572 | $0.5075 | |
| ETH | <0.01% | $0.284805 | 1.7645 | $0.5025 | |
| ETH | <0.01% | $0.03223 | 15.3661 | $0.4952 | |
| ETH | <0.01% | $0.002097 | 236.0371 | $0.4949 | |
| ETH | <0.01% | $0.000002 | 214,793.9033 | $0.494 | |
| ETH | <0.01% | $0.039855 | 12.3376 | $0.4917 | |
| ETH | <0.01% | $12.66 | 0.0387 | $0.49 | |
| ETH | <0.01% | $0.001709 | 285.5645 | $0.4881 | |
| ETH | <0.01% | $0.019758 | 24.6847 | $0.4877 | |
| ETH | <0.01% | $0.000724 | 662.8869 | $0.4801 | |
| ETH | <0.01% | $0.00 | 0.6051 | $0.00 | |
| ETH | <0.01% | $0.917018 | 0.4999 | $0.4584 | |
| ETH | <0.01% | $0.010171 | 45.0772 | $0.4584 | |
| ETH | <0.01% | $0.007389 | 61.5961 | $0.4551 | |
| ETH | <0.01% | $1.55 | 0.2927 | $0.4536 | |
| ETH | <0.01% | $0.125355 | 3.5633 | $0.4466 | |
| ETH | <0.01% | $0.000009 | 48,844.0185 | $0.4464 | |
| ETH | <0.01% | <$0.000001 | 12,669,455.4032 | $0.4437 | |
| ETH | <0.01% | $0.001133 | 390.8643 | $0.4429 | |
| ETH | <0.01% | <$0.000001 | 3,866,995.5078 | $0.4424 | |
| ETH | <0.01% | $0.103571 | 4.2558 | $0.4407 | |
| ETH | <0.01% | $0.000351 | 1,245.0335 | $0.4367 | |
| ETH | <0.01% | $0.003099 | 139.9691 | $0.4338 | |
| ETH | <0.01% | <$0.000001 | 12,275,635,976.0232 | $0.4317 | |
| ETH | <0.01% | $0.000382 | 1,126.874 | $0.4308 | |
| ETH | <0.01% | $0.000047 | 9,184.5829 | $0.428 | |
| ETH | <0.01% | $0.001257 | 339.6616 | $0.4269 | |
| ETH | <0.01% | <$0.000001 | 2,755,286,272.7372 | $0.4267 | |
| ETH | <0.01% | $11.99 | 0.0355 | $0.4253 | |
| ETH | <0.01% | $0.004558 | 92.4703 | $0.4214 | |
| ETH | <0.01% | $2,407.09 | 0.00017501 | $0.4212 | |
| ETH | <0.01% | $0.002554 | 162.9478 | $0.4162 | |
| ETH | <0.01% | $0.001107 | 373.0895 | $0.413 | |
| ETH | <0.01% | $0.043183 | 9.5083 | $0.4105 | |
| ETH | <0.01% | <$0.000001 | 9,865,956.8185 | $0.4086 | |
| ETH | <0.01% | $0.000001 | 569,538.5184 | $0.4071 | |
| ETH | <0.01% | $0.098324 | 4.1006 | $0.4031 | |
| ETH | <0.01% | $0.000057 | 7,102.2808 | $0.4012 | |
| ETH | <0.01% | <$0.000001 | 256,563,690.037 | $0.4003 | |
| ETH | <0.01% | $0.007775 | 51.2966 | $0.3988 | |
| ETH | <0.01% | $0.001066 | 370.1004 | $0.3943 | |
| ETH | <0.01% | $0.105341 | 3.7379 | $0.3937 | |
| ETH | <0.01% | $0.000001 | 711,365.9576 | $0.393 | |
| ETH | <0.01% | $0.090045 | 4.3639 | $0.3929 | |
| ETH | <0.01% | $0.00006 | 6,550.9119 | $0.3921 | |
| ETH | <0.01% | $0.008338 | 46.7627 | $0.3899 | |
| ETH | <0.01% | $0.256224 | 1.5197 | $0.3893 | |
| ETH | <0.01% | $0.204533 | 1.8989 | $0.3883 | |
| ETH | <0.01% | <$0.000001 | 422,371,175.1789 | $0.3809 | |
| ETH | <0.01% | $0.000003 | 139,705.9182 | $0.38 | |
| ETH | <0.01% | $1,278.92 | 0.00029638 | $0.379 | |
| ETH | <0.01% | $0.290235 | 1.3016 | $0.3777 | |
| ETH | <0.01% | $0.301726 | 1.2359 | $0.3729 | |
| ETH | <0.01% | $0.005181 | 71.9014 | $0.3725 | |
| ETH | <0.01% | $0.008112 | 45.8971 | $0.3723 | |
| ETH | <0.01% | $0.999617 | 0.3636 | $0.3634 | |
| ETH | <0.01% | $0.000103 | 3,504.8123 | $0.3619 | |
| ETH | <0.01% | $2,317.13 | 0.00015555 | $0.3604 | |
| ETH | <0.01% | $3.23 | 0.1113 | $0.3596 | |
| ETH | <0.01% | $0.000056 | 6,380.0479 | $0.3589 | |
| ETH | <0.01% | <$0.000001 | 2,782,843.9791 | $0.3583 | |
| ETH | <0.01% | $0.000038 | 9,516.6322 | $0.3576 | |
| ETH | <0.01% | $0.00 | 590.1016 | $0.00 | |
| ETH | <0.01% | $0.021001 | 16.8531 | $0.3539 | |
| ETH | <0.01% | $0.007788 | 45.4227 | $0.3537 | |
| ETH | <0.01% | $0.000105 | 3,344.1063 | $0.3503 | |
| ETH | <0.01% | $0.008716 | 39.8941 | $0.3477 | |
| ETH | <0.01% | $0.000001 | 331,012.3692 | $0.3476 | |
| ETH | <0.01% | $0.004739 | 73.3492 | $0.3476 | |
| ETH | <0.01% | $77,257 | 0.00000443 | $0.3422 | |
| ETH | <0.01% | $4,551.92 | 0.00007457 | $0.3394 | |
| ETH | <0.01% | <$0.000001 | 2,381,710,725.254 | $0.3358 | |
| ETH | <0.01% | $0.001678 | 198.8919 | $0.3337 | |
| ETH | <0.01% | $0.000002 | 149,326.4338 | $0.3315 | |
| ETH | <0.01% | $0.092376 | 3.5668 | $0.3294 | |
| ETH | <0.01% | $0.052475 | 6.2764 | $0.3293 | |
| ETH | <0.01% | <$0.000001 | 938,846.2574 | $0.3277 | |
| ETH | <0.01% | $0.029293 | 11.0633 | $0.324 | |
| ETH | <0.01% | $0.007063 | 45.8069 | $0.3235 | |
| ETH | <0.01% | $0.000155 | 2,064.4671 | $0.3206 | |
| ETH | <0.01% | $0.000141 | 2,263.6298 | $0.32 | |
| ETH | <0.01% | $2,095.51 | 0.00015249 | $0.3195 | |
| ETH | <0.01% | $0.036815 | 8.6552 | $0.3186 | |
| ETH | <0.01% | $0.002387 | 133.0298 | $0.3175 | |
| ETH | <0.01% | $0.025154 | 12.6212 | $0.3174 | |
| ETH | <0.01% | <$0.000001 | 2,010,245.0006 | $0.3172 | |
| ETH | <0.01% | $0.13848 | 2.2908 | $0.3172 | |
| ETH | <0.01% | $0.000704 | 450.4167 | $0.3171 | |
| ETH | <0.01% | $0.000169 | 1,878.0825 | $0.317 | |
| ETH | <0.01% | <$0.000001 | 633,347,294.7121 | $0.316 | |
| ETH | <0.01% | $0.002391 | 132.0031 | $0.3156 | |
| ETH | <0.01% | $0.001179 | 265.0877 | $0.3124 | |
| ETH | <0.01% | $0.004048 | 77.1423 | $0.3123 | |
| ETH | <0.01% | $0.002566 | 120.7397 | $0.3097 | |
| ETH | <0.01% | $0.016251 | 18.9218 | $0.3074 | |
| ETH | <0.01% | $0.000091 | 3,362.9232 | $0.3068 | |
| ETH | <0.01% | $0.000225 | 1,358.7563 | $0.3059 | |
| ETH | <0.01% | $0.004147 | 72.9903 | $0.3026 | |
| ETH | <0.01% | $0.007061 | 42.7112 | $0.3015 | |
| ETH | <0.01% | $0.118525 | 2.5089 | $0.2973 | |
| ETH | <0.01% | $0.020875 | 14.1477 | $0.2953 | |
| ETH | <0.01% | $0.194155 | 1.5117 | $0.2935 | |
| ETH | <0.01% | $2,777.07 | 0.00010547 | $0.2928 | |
| ETH | <0.01% | $0.094643 | 3.09 | $0.2924 | |
| ETH | <0.01% | $0.000518 | 560.3144 | $0.2899 | |
| ETH | <0.01% | $0.00125 | 231.3233 | $0.2892 | |
| ETH | <0.01% | $63.59 | 0.00453235 | $0.2882 | |
| ETH | <0.01% | $0.000853 | 336.5574 | $0.2871 | |
| ETH | <0.01% | $0.055305 | 5.1304 | $0.2837 | |
| ETH | <0.01% | $0.392305 | 0.7213 | $0.2829 | |
| ETH | <0.01% | $0.000062 | 4,546.8826 | $0.2816 | |
| ETH | <0.01% | $0.000041 | 6,872.9769 | $0.2815 | |
| ETH | <0.01% | $0.001966 | 143.0016 | $0.2811 | |
| ETH | <0.01% | $0.001915 | 143.7216 | $0.2752 | |
| ETH | <0.01% | $0.000605 | 454.2166 | $0.2748 | |
| ETH | <0.01% | $0.024455 | 11.1857 | $0.2735 | |
| ETH | <0.01% | $0.002685 | 101.2489 | $0.2718 | |
| ETH | <0.01% | $0.011257 | 24.0354 | $0.2705 | |
| ETH | <0.01% | $0.000691 | 389.7636 | $0.2692 | |
| ETH | <0.01% | $0.000629 | 421.1317 | $0.2649 | |
| ETH | <0.01% | $0.001207 | 218.7404 | $0.264 | |
| ETH | <0.01% | $0.008162 | 31.822 | $0.2597 | |
| ETH | <0.01% | $0.004763 | 54.411 | $0.2591 | |
| ETH | <0.01% | $0.000358 | 721.0675 | $0.2582 | |
| ETH | <0.01% | $0.003566 | 72.3559 | $0.258 | |
| ETH | <0.01% | $0.003048 | 83.2073 | $0.2536 | |
| ETH | <0.01% | $0.001874 | 135.0588 | $0.2531 | |
| ETH | <0.01% | $1.03 | 0.2463 | $0.2526 | |
| ETH | <0.01% | $0.000039 | 6,441.933 | $0.2487 | |
| ETH | <0.01% | $0.000001 | 207,109.589 | $0.2485 | |
| ETH | <0.01% | $0.001471 | 168.3799 | $0.2476 | |
| ETH | <0.01% | $0.006412 | 38.4202 | $0.2463 | |
| ETH | <0.01% | $0.064502 | 3.8056 | $0.2454 | |
| ETH | <0.01% | $0.000801 | 303.9069 | $0.2435 | |
| ETH | <0.01% | $0.005086 | 47.784 | $0.243 | |
| ETH | <0.01% | $0.000312 | 779.4354 | $0.243 | |
| ETH | <0.01% | $0.000987 | 245.0533 | $0.2417 | |
| ETH | <0.01% | $0.056562 | 4.2591 | $0.2409 | |
| ETH | <0.01% | $0.000876 | 274.2526 | $0.2402 | |
| ETH | <0.01% | $0.002231 | 107.0775 | $0.2388 | |
| ETH | <0.01% | $0.035546 | 6.6128 | $0.235 | |
| ETH | <0.01% | $0.000318 | 733.5491 | $0.2333 | |
| ETH | <0.01% | $0.000228 | 1,016.949 | $0.2315 | |
| ETH | <0.01% | <$0.000001 | 3,275,283,523.4299 | $0.2286 | |
| ETH | <0.01% | $0.037736 | 5.9773 | $0.2255 | |
| ETH | <0.01% | $0.000155 | 1,456.6412 | $0.2252 | |
| ETH | <0.01% | $0.038168 | 5.759 | $0.2198 | |
| ETH | <0.01% | <$0.000001 | 4,568,463.5058 | $0.2191 | |
| ETH | <0.01% | $0.486595 | 0.4495 | $0.2187 | |
| ETH | <0.01% | $0.00002 | 11,112.834 | $0.2182 | |
| ETH | <0.01% | $0.999918 | 0.2165 | $0.2164 | |
| ETH | <0.01% | <$0.000001 | 1,948,745.9533 | $0.2158 | |
| ETH | <0.01% | $0.000167 | 1,286.2833 | $0.2153 | |
| ETH | <0.01% | $0.026215 | 8.2124 | $0.2152 | |
| ETH | <0.01% | $0.001028 | 208.9673 | $0.2148 | |
| ETH | <0.01% | $0.000024 | 8,754.0607 | $0.2135 | |
| ETH | <0.01% | $0.002964 | 71.4611 | $0.2118 | |
| ETH | <0.01% | $0.000273 | 775.0748 | $0.2116 | |
| ETH | <0.01% | $0.000003 | 64,422.1661 | $0.2114 | |
| ETH | <0.01% | $0.002039 | 103.2776 | $0.2105 | |
| ETH | <0.01% | $0.00166 | 125.1137 | $0.2076 | |
| ETH | <0.01% | $0.000001 | 156,684.7325 | $0.2075 | |
| ETH | <0.01% | $0.030881 | 6.7143 | $0.2073 | |
| ETH | <0.01% | $0.000692 | 292.8069 | $0.2025 | |
| ETH | <0.01% | $0.000015 | 13,101.4185 | $0.1963 | |
| ETH | <0.01% | $0.016361 | 11.9864 | $0.1961 | |
| ETH | <0.01% | $0.000001 | 175,837.0409 | $0.1951 | |
| ETH | <0.01% | $0.000241 | 801.3486 | $0.1934 | |
| ETH | <0.01% | <$0.000001 | 532,078.9884 | $0.1925 | |
| ETH | <0.01% | $0.000906 | 210.915 | $0.191 | |
| ETH | <0.01% | $0.002539 | 75.1192 | $0.1907 | |
| ETH | <0.01% | $38.08 | 0.00500298 | $0.1905 | |
| ETH | <0.01% | $0.000042 | 4,549.1982 | $0.1895 | |
| ETH | <0.01% | $8.55 | 0.0217 | $0.1854 | |
| ETH | <0.01% | $0.012016 | 15.4165 | $0.1852 | |
| ETH | <0.01% | $0.008735 | 21.1844 | $0.185 | |
| ETH | <0.01% | $1 | 0.1849 | $0.185 | |
| ETH | <0.01% | $0.02138 | 8.5627 | $0.183 | |
| ETH | <0.01% | $0.000172 | 1,046.9154 | $0.1797 | |
| ETH | <0.01% | $0.000007 | 27,097.2583 | $0.1791 | |
| ETH | <0.01% | $0.127675 | 1.4028 | $0.179 | |
| ETH | <0.01% | <$0.000001 | 435,969,211.2955 | $0.1789 | |
| ETH | <0.01% | $0.000016 | 11,248.2481 | $0.1786 | |
| ETH | <0.01% | $0.00002 | 8,877.1633 | $0.1778 | |
| ETH | <0.01% | $0.000164 | 1,043.1424 | $0.1705 | |
| ETH | <0.01% | $0.00173 | 98.3573 | $0.1701 | |
| ETH | <0.01% | $0.013769 | 12.2828 | $0.1691 | |
| ETH | <0.01% | $0.003587 | 46.6232 | $0.1672 | |
| ETH | <0.01% | $0.000007 | 24,691.592 | $0.1644 | |
| ETH | <0.01% | $0.002367 | 69.353 | $0.1641 | |
| ETH | <0.01% | $0.000006 | 26,652.3595 | $0.1616 | |
| ETH | <0.01% | <$0.000001 | 277,569,252.376 | $0.1608 | |
| ETH | <0.01% | $0.020514 | 7.8377 | $0.1607 | |
| ETH | <0.01% | $0.999462 | 0.1604 | $0.1602 | |
| ETH | <0.01% | $0.050342 | 3.1345 | $0.1577 | |
| ETH | <0.01% | $0.010978 | 14.2218 | $0.1561 | |
| ETH | <0.01% | $0.056829 | 2.7312 | $0.1552 | |
| ETH | <0.01% | $0.015228 | 10.1771 | $0.1549 | |
| ETH | <0.01% | $0.000004 | 36,992.0419 | $0.1527 | |
| ETH | <0.01% | $0.035014 | 4.3576 | $0.1525 | |
| ETH | <0.01% | $0.000586 | 259.4271 | $0.1521 | |
| ETH | <0.01% | $0.001347 | 112.0592 | $0.1509 | |
| ETH | <0.01% | <$0.000001 | 325,621,916.4999 | $0.1498 | |
| ETH | <0.01% | $0.000101 | 1,479.8901 | $0.1494 | |
| ETH | <0.01% | $0.027139 | 5.4578 | $0.1481 | |
| ETH | <0.01% | $0.001198 | 123.3424 | $0.1477 | |
| ETH | <0.01% | $0.000172 | 856.9548 | $0.1476 | |
| ETH | <0.01% | $0.000459 | 320.2459 | $0.147 | |
| ETH | <0.01% | $0.707736 | 0.2077 | $0.1469 | |
| ETH | <0.01% | $0.11425 | 1.2582 | $0.1437 | |
| ETH | <0.01% | $0.000028 | 5,154.0433 | $0.1433 | |
| ETH | <0.01% | <$0.000001 | 454,194.5048 | $0.143 | |
| ETH | <0.01% | $0.00157 | 90.7609 | $0.1425 | |
| ETH | <0.01% | $0.023441 | 6.0787 | $0.1424 | |
| ETH | <0.01% | $0.004146 | 34.3089 | $0.1422 | |
| ETH | <0.01% | $0.00001 | 13,989.111 | $0.1419 | |
| ETH | <0.01% | <$0.000001 | 19,798,178.596 | $0.1418 | |
| ETH | <0.01% | <$0.000001 | 362,285,639.6352 | $0.1406 | |
| ETH | <0.01% | $0.000011 | 12,695.6031 | $0.14 | |
| ETH | <0.01% | $0.021808 | 6.363 | $0.1387 | |
| ETH | <0.01% | $1.49 | 0.0925 | $0.1378 | |
| ETH | <0.01% | $0.001756 | 78.3651 | $0.1376 | |
| ETH | <0.01% | $0.000001 | 148,539.7228 | $0.1365 | |
| ETH | <0.01% | $0.004054 | 33.6536 | $0.1364 | |
| ETH | <0.01% | $0.001077 | 125.6613 | $0.1353 | |
| ETH | <0.01% | $0.000104 | 1,293.2736 | $0.1348 | |
| ETH | <0.01% | $0.000185 | 726.8405 | $0.1344 | |
| ETH | <0.01% | $0.000011 | 12,273.5649 | $0.1339 | |
| ETH | <0.01% | $0.004249 | 31.4948 | $0.1338 | |
| ETH | <0.01% | $0.009445 | 14.1562 | $0.1337 | |
| ETH | <0.01% | $0.000273 | 489.369 | $0.1335 | |
| ETH | <0.01% | $0.00128 | 103.9677 | $0.133 | |
| ETH | <0.01% | $0.022811 | 5.8119 | $0.1325 | |
| ETH | <0.01% | $0.191688 | 0.6854 | $0.1313 | |
| ETH | <0.01% | $0.89912 | 0.1448 | $0.1301 | |
| ETH | <0.01% | $0.000038 | 3,439.4762 | $0.1297 | |
| ETH | <0.01% | $0.002298 | 56.1174 | $0.1289 | |
| ETH | <0.01% | $0.022607 | 5.6418 | $0.1275 | |
| ETH | <0.01% | $0.007755 | 16.2601 | $0.1261 | |
| ETH | <0.01% | $0.000099 | 1,274.6864 | $0.1255 | |
| ETH | <0.01% | $0.00428 | 29.1858 | $0.1249 | |
| ETH | <0.01% | $0.000003 | 36,237.9993 | $0.1235 | |
| ETH | <0.01% | $0.000156 | 784.3827 | $0.122 | |
| ETH | <0.01% | $0.000019 | 6,228.0712 | $0.1213 | |
| ETH | <0.01% | $0.000627 | 193.1654 | $0.121 | |
| ETH | <0.01% | $0.001064 | 113.5522 | $0.1208 | |
| ETH | <0.01% | $0.000034 | 3,564.6621 | $0.1206 | |
| ETH | <0.01% | $0.004954 | 24.0648 | $0.1192 | |
| ETH | <0.01% | $0.000004 | 33,914.1316 | $0.119 | |
| ETH | <0.01% | $0.00 | 0.01 | $0.00 | |
| ETH | <0.01% | $0.000306 | 387.5004 | $0.1185 | |
| ETH | <0.01% | $0.00563 | 20.9008 | $0.1176 | |
| ETH | <0.01% | $0.000017 | 6,893.1869 | $0.1172 | |
| ETH | <0.01% | $0.042804 | 2.712 | $0.116 | |
| ETH | <0.01% | $1.04 | 0.1114 | $0.1154 | |
| ETH | <0.01% | <$0.000001 | 223,721,250.2458 | $0.1151 | |
| ETH | <0.01% | $0.073471 | 1.5653 | $0.115 | |
| ETH | <0.01% | $0.007343 | 15.6739 | $0.115 | |
| ETH | <0.01% | $0.079197 | 1.4477 | $0.1146 | |
| ETH | <0.01% | $1.54 | 0.0744 | $0.1145 | |
| ETH | <0.01% | <$0.000001 | 2,282,753.136 | $0.114 | |
| ETH | <0.01% | $0.000008 | 13,702.6037 | $0.1135 | |
| ETH | <0.01% | $0.047925 | 2.3262 | $0.1114 | |
| ETH | <0.01% | <$0.000001 | 70,853,070.5 | $0.1112 | |
| ETH | <0.01% | $0.002037 | 54.3922 | $0.1108 | |
| ETH | <0.01% | $0.000121 | 907.3772 | $0.11 | |
| ETH | <0.01% | $1.6 | 0.0679 | $0.1086 | |
| ETH | <0.01% | $0.557985 | 0.1921 | $0.1071 | |
| ETH | <0.01% | $0.997925 | 0.1072 | $0.1069 | |
| ETH | <0.01% | $41.69 | 0.00255115 | $0.1063 | |
| ETH | <0.01% | $1.18 | 0.0888 | $0.1047 | |
| ETH | <0.01% | $0.009791 | 10.6741 | $0.1045 | |
| ETH | <0.01% | <$0.000001 | 829,431.8427 | $0.1043 | |
| ETH | <0.01% | $0.00031 | 330.0052 | $0.1021 | |
| ARB | 30.03% | $0.00 | 38,566,892.1577 | $0.00 | |
| ARB | 0.77% | $0.999906 | 5,714.0824 | $5,713.55 | |
| ARB | 0.67% | $76,177 | 0.0654 | $4,985.51 | |
| ARB | 0.56% | $0.998438 | 4,195.7136 | $4,189.16 | |
| ARB | 0.13% | $2,258.88 | 0.4158 | $939.32 | |
| ARB | 0.11% | $1,970.84 | 0.4282 | $843.82 | |
| ARB | 0.03% | $0.999906 | 255.8936 | $255.87 | |
| ARB | 0.02% | $8.85 | 16.5646 | $146.6 | |
| ARB | 0.02% | $2,767.96 | 0.0476 | $131.84 | |
| ARB | 0.01% | $0.23449 | 445.5016 | $104.47 | |
| ARB | 0.01% | $0.999686 | 87.8586 | $87.83 | |
| ARB | 0.01% | $0.305378 | 254.0763 | $77.59 | |
| ARB | <0.01% | $0.052613 | 1,075.3243 | $56.58 | |
| ARB | <0.01% | $76,390 | 0.00062444 | $47.7 | |
| ARB | <0.01% | $119.31 | 0.3373 | $40.25 | |
| ARB | <0.01% | $0.09615 | 382.7549 | $36.8 | |
| ARB | <0.01% | $1.22 | 20.8147 | $25.39 | |
| ARB | <0.01% | $2,314.06 | 0.0107 | $24.76 | |
| ARB | <0.01% | $77,257 | 0.0002596 | $20.06 | |
| ARB | <0.01% | $2,317.13 | 0.00748137 | $17.34 | |
| ARB | <0.01% | $1.2 | 12.4012 | $14.88 | |
| ARB | <0.01% | $0.009394 | 1,453.7746 | $13.66 | |
| ARB | <0.01% | $1.18 | 11.4058 | $13.46 | |
| ARB | <0.01% | $0.999274 | 13.3308 | $13.32 | |
| ARB | <0.01% | $3.58 | 3.3327 | $11.93 | |
| ARB | <0.01% | $0.023828 | 472.0235 | $11.25 | |
| ARB | <0.01% | $64,957 | 0.00015626 | $10.15 | |
| ARB | <0.01% | $0.05629 | 175.7402 | $9.89 | |
| ARB | <0.01% | $70,983 | 0.00011035 | $7.83 | |
| ARB | <0.01% | $1,974.58 | 0.00298532 | $5.89 | |
| ARB | <0.01% | $0.059181 | 99.2774 | $5.88 | |
| ARB | <0.01% | $1.76 | 3.2532 | $5.73 | |
| ARB | <0.01% | $17.24 | 0.3257 | $5.61 | |
| ARB | <0.01% | $2,624.38 | 0.00211808 | $5.56 | |
| ARB | <0.01% | $1.01 | 4.8835 | $4.91 | |
| ARB | <0.01% | $6.6 | 0.712 | $4.7 | |
| ARB | <0.01% | $0.999608 | 4.0677 | $4.07 | |
| ARB | <0.01% | $0.00 | 0.000046 | $0.00 | |
| ARB | <0.01% | $29.6 | 0.1075 | $3.18 | |
| ARB | <0.01% | $0.986994 | 3.1186 | $3.08 | |
| ARB | <0.01% | $0.067915 | 43.9893 | $2.99 | |
| ARB | <0.01% | $2,533.28 | 0.00109436 | $2.77 | |
| ARB | <0.01% | $0.999554 | 2.7532 | $2.75 | |
| ARB | <0.01% | $0.099974 | 24.4632 | $2.45 | |
| ARB | <0.01% | $1.18 | 1.8958 | $2.24 | |
| ARB | <0.01% | $0.99981 | 2.0526 | $2.05 | |
| ARB | <0.01% | $0.00 | 0.00082525 | $0.00 | |
| ARB | <0.01% | $103.18 | 0.0178 | $1.84 | |
| ARB | <0.01% | $0.005606 | 296.5283 | $1.66 | |
| ARB | <0.01% | $0.9844 | 1.6802 | $1.65 | |
| ARB | <0.01% | $0.997729 | 1.6146 | $1.61 | |
| ARB | <0.01% | $5,027.48 | 0.000289 | $1.45 | |
| ARB | <0.01% | $1.11 | 1.2887 | $1.43 | |
| ARB | <0.01% | $0.950959 | 1.486 | $1.41 | |
| ARB | <0.01% | $0.003731 | 365.3962 | $1.36 | |
| ARB | <0.01% | $0.007129 | 183.7378 | $1.31 | |
| ARB | <0.01% | $1 | 1.2814 | $1.28 | |
| ARB | <0.01% | $0.152826 | 8.0973 | $1.24 | |
| ARB | <0.01% | $0.00 | 1.2377 | $0.00 | |
| ARB | <0.01% | $0.79987 | 1.5085 | $1.21 | |
| ARB | <0.01% | $0.000185 | 6,294.0109 | $1.16 | |
| ARB | <0.01% | $1.15 | 0.9399 | $1.08 | |
| ARB | <0.01% | $0.014426 | 74.2499 | $1.07 | |
| ARB | <0.01% | $0.27546 | 3.7107 | $1.02 | |
| ARB | <0.01% | $2,596 | 0.00038568 | $1 | |
| ARB | <0.01% | $17.78 | 0.0543 | $0.9651 | |
| ARB | <0.01% | $0.999286 | 0.9017 | $0.901 | |
| ARB | <0.01% | $0.088167 | 9.9785 | $0.8797 | |
| ARB | <0.01% | $0.451211 | 1.8733 | $0.8452 | |
| ARB | <0.01% | $0.027114 | 30.8479 | $0.8363 | |
| ARB | <0.01% | $0.996119 | 0.8363 | $0.833 | |
| ARB | <0.01% | $0.994846 | 0.8314 | $0.827 | |
| ARB | <0.01% | $0.210646 | 3.9253 | $0.8268 | |
| ARB | <0.01% | $0.99791 | 0.8115 | $0.8097 | |
| ARB | <0.01% | $78.5 | 0.0102 | $0.8007 | |
| ARB | <0.01% | $0.000184 | 3,890.968 | $0.7165 | |
| ARB | <0.01% | $2.45 | 0.2861 | $0.701 | |
| ARB | <0.01% | $0.000001 | 1,066,922.8938 | $0.6672 | |
| ARB | <0.01% | $0.001863 | 354.8354 | $0.6609 | |
| ARB | <0.01% | $0.002696 | 235.9003 | $0.636 | |
| ARB | <0.01% | $76,732 | 0.00000813 | $0.6238 | |
| ARB | <0.01% | $1.35 | 0.4588 | $0.6193 | |
| ARB | <0.01% | $2.31 | 0.2641 | $0.61 | |
| ARB | <0.01% | $4,582.16 | 0.00012305 | $0.5638 | |
| ARB | <0.01% | $0.133553 | 4.2072 | $0.5618 | |
| ARB | <0.01% | $2,273.11 | 0.00023927 | $0.5438 | |
| ARB | <0.01% | $0.000447 | 1,188.3229 | $0.5307 | |
| ARB | <0.01% | $0.003621 | 146.3645 | $0.5299 | |
| ARB | <0.01% | $8.11 | 0.0649 | $0.5265 | |
| ARB | <0.01% | $0.009758 | 52.9383 | $0.5165 | |
| ARB | <0.01% | $75,557 | 0.00000664 | $0.5016 | |
| ARB | <0.01% | $1.31 | 0.3676 | $0.4815 | |
| ARB | <0.01% | $2,291.89 | 0.00018759 | $0.4299 | |
| ARB | <0.01% | $2.97 | 0.136 | $0.404 | |
| ARB | <0.01% | $0.520132 | 0.7753 | $0.4032 | |
| ARB | <0.01% | $0.014463 | 26.9297 | $0.3894 | |
| ARB | <0.01% | $1.9 | 0.2027 | $0.3851 | |
| ARB | <0.01% | $0.135481 | 2.6896 | $0.3643 | |
| ARB | <0.01% | $0.477521 | 0.7528 | $0.3594 | |
| ARB | <0.01% | $0.209905 | 1.7018 | $0.3572 | |
| ARB | <0.01% | $0.000653 | 538.7548 | $0.3518 | |
| ARB | <0.01% | $0.003709 | 88.6129 | $0.3286 | |
| ARB | <0.01% | $1.09 | 0.3011 | $0.3272 | |
| ARB | <0.01% | $0.992463 | 0.3244 | $0.3219 | |
| ARB | <0.01% | $1.28 | 0.2467 | $0.3157 | |
| ARB | <0.01% | $0.999759 | 0.3148 | $0.3147 | |
| ARB | <0.01% | $0.00 | 0.3232 | $0.00 | |
| ARB | <0.01% | $0.000476 | 622.9476 | $0.2962 | |
| ARB | <0.01% | $0.049909 | 5.8237 | $0.2906 | |
| ARB | <0.01% | $0.677628 | 0.4163 | $0.2821 | |
| ARB | <0.01% | $2.32 | 0.1209 | $0.2805 | |
| ARB | <0.01% | $0.026604 | 10.5011 | $0.2793 | |
| ARB | <0.01% | $0.014296 | 19.2182 | $0.2747 | |
| ARB | <0.01% | $0.058249 | 4.7135 | $0.2745 | |
| ARB | <0.01% | $0.00 | 6.2382 | $0.00 | |
| ARB | <0.01% | $76,284 | 0.00000358 | $0.2731 | |
| ARB | <0.01% | $1,782.35 | 0.00015053 | $0.2683 | |
| ARB | <0.01% | $0.913234 | 0.2785 | $0.2543 | |
| ARB | <0.01% | $0.001098 | 228.88 | $0.2512 | |
| ARB | <0.01% | $0.274129 | 0.9139 | $0.2505 | |
| ARB | <0.01% | $0.000004 | 63,431.4996 | $0.2423 | |
| ARB | <0.01% | $0.999617 | 0.239 | $0.2389 | |
| ARB | <0.01% | $0.322028 | 0.7325 | $0.2358 | |
| ARB | <0.01% | $0.019272 | 12.1473 | $0.234 | |
| ARB | <0.01% | $0.001467 | 152.1893 | $0.2232 | |
| ARB | <0.01% | $0.999554 | 0.222 | $0.2218 | |
| ARB | <0.01% | $0.000899 | 236.8559 | $0.2129 | |
| ARB | <0.01% | $0.046488 | 4.445 | $0.2066 | |
| ARB | <0.01% | $0.012518 | 16.4244 | $0.2055 | |
| ARB | <0.01% | $0.000245 | 833.747 | $0.2045 | |
| ARB | <0.01% | $0.20373 | 0.9992 | $0.2035 | |
| ARB | <0.01% | $0.002504 | 78.398 | $0.1963 | |
| ARB | <0.01% | $0.011377 | 17.245 | $0.1962 | |
| ARB | <0.01% | $20.86 | 0.0093402 | $0.1948 | |
| ARB | <0.01% | $76,043 | 0.00000254 | $0.193 | |
| ARB | <0.01% | $0.009114 | 21.1596 | $0.1928 | |
| ARB | <0.01% | $0.62076 | 0.3078 | $0.191 | |
| ARB | <0.01% | $0.998454 | 0.1826 | $0.1822 | |
| ARB | <0.01% | $0.107156 | 1.688 | $0.1808 | |
| ARB | <0.01% | $0.000006 | 27,459.6865 | $0.1697 | |
| ARB | <0.01% | $0.45006 | 0.377 | $0.1696 | |
| ARB | <0.01% | $0.001418 | 117.2475 | $0.1662 | |
| ARB | <0.01% | $0.000121 | 1,347.8394 | $0.1634 | |
| ARB | <0.01% | $0.000004 | 39,521.7443 | $0.1616 | |
| ARB | <0.01% | $2.08 | 0.0774 | $0.1609 | |
| ARB | <0.01% | $0.056949 | 2.8168 | $0.1604 | |
| ARB | <0.01% | $0.999474 | 0.1587 | $0.1585 | |
| ARB | <0.01% | $0.995286 | 0.1533 | $0.1525 | |
| ARB | <0.01% | $0.00 | 3.5837 | $0.00 | |
| ARB | <0.01% | $0.005459 | 25.4848 | $0.1391 | |
| ARB | <0.01% | $0.99827 | 0.1377 | $0.1374 | |
| ARB | <0.01% | $0.04816 | 2.7752 | $0.1336 | |
| ARB | <0.01% | $0.016096 | 8.2778 | $0.1332 | |
| ARB | <0.01% | $0.138447 | 0.9032 | $0.125 | |
| ARB | <0.01% | $0.052373 | 2.2941 | $0.1201 | |
| ARB | <0.01% | $0.00 | 3.281 | $0.00 | |
| ARB | <0.01% | $2,197.56 | 0.00005043 | $0.1108 | |
| ARB | <0.01% | $0.000035 | 3,132.2317 | $0.1103 | |
| ARB | <0.01% | $0.000382 | 272.882 | $0.1042 | |
| ARB | <0.01% | $0.000004 | 24,671.9023 | $0.1023 | |
| BSC | 5.42% | $0.00213 | 18,982,506.9819 | $40,425.72 | |
| BSC | 1.72% | $1.86 | 6,862.8717 | $12,792.77 | |
| BSC | 1.15% | $0.999625 | 8,536.8648 | $8,533.66 | |
| BSC | 0.41% | $0.999999 | 3,090.6943 | $3,090.69 | |
| BSC | 0.35% | $620.72 | 4.2492 | $2,637.58 | |
| BSC | 0.10% | $0.083984 | 8,860.4082 | $744.13 | |
| BSC | 0.06% | $0.036437 | 13,208.7568 | $481.28 | |
| BSC | 0.06% | $0.713593 | 666.6782 | $475.74 | |
| BSC | 0.05% | $0.22959 | 1,616.5479 | $371.14 | |
| BSC | 0.03% | $68,036.99 | 0.00315506 | $214.66 | |
| BSC | 0.03% | $1,973.04 | 0.107 | $211.21 | |
| BSC | 0.01% | $621.61 | 0.1613 | $100.29 | |
| BSC | 0.01% | $28.42 | 3.1988 | $90.9 | |
| BSC | 0.01% | $0.008519 | 10,588.4734 | $90.21 | |
| BSC | 0.01% | $0.009791 | 8,471.2086 | $82.94 | |
| BSC | <0.01% | $0.013599 | 4,544.8063 | $61.81 | |
| BSC | <0.01% | $0.999206 | 60.5147 | $60.47 | |
| BSC | <0.01% | $7.96 | 6.7331 | $53.6 | |
| BSC | <0.01% | $0.078783 | 628.9805 | $49.55 | |
| BSC | <0.01% | $0.000324 | 142,560.8761 | $46.25 | |
| BSC | <0.01% | $0.162872 | 267.519 | $43.57 | |
| BSC | <0.01% | $0.094454 | 428.0619 | $40.43 | |
| BSC | <0.01% | $0.210452 | 154.9482 | $32.61 | |
| BSC | <0.01% | $0.058568 | 501.0377 | $29.34 | |
| BSC | <0.01% | $1.31 | 21.2277 | $27.81 | |
| BSC | <0.01% | $0.256769 | 78.9262 | $20.27 | |
| BSC | <0.01% | $0.176445 | 88.2764 | $15.58 | |
| BSC | <0.01% | $0.998448 | 15.4354 | $15.41 | |
| BSC | <0.01% | $255.71 | 0.0583 | $14.9 | |
| BSC | <0.01% | $0.150825 | 97.7717 | $14.75 | |
| BSC | <0.01% | $40.88 | 0.3308 | $13.52 | |
| BSC | <0.01% | $0.028315 | 473.6825 | $13.41 | |
| BSC | <0.01% | $0.991424 | 13.051 | $12.94 | |
| BSC | <0.01% | $0.718372 | 16.6868 | $11.99 | |
| BSC | <0.01% | $0.084529 | 135.4769 | $11.45 | |
| BSC | <0.01% | $0.00 | 17.4116 | $0.00 | |
| BSC | <0.01% | $0.999002 | 9.5991 | $9.59 | |
| BSC | <0.01% | $0.090155 | 106.1615 | $9.57 | |
| BSC | <0.01% | $0.217815 | 43.6939 | $9.52 | |
| BSC | <0.01% | $0.309886 | 29.1603 | $9.04 | |
| BSC | <0.01% | $0.008696 | 952.6428 | $8.28 | |
| BSC | <0.01% | $0.001499 | 5,071.3842 | $7.6 | |
| BSC | <0.01% | $1.37 | 5.2293 | $7.16 | |
| BSC | <0.01% | $99 | 0.0702 | $6.95 | |
| BSC | <0.01% | $0.038405 | 177.4274 | $6.81 | |
| BSC | <0.01% | $0.0805 | 83.2195 | $6.7 | |
| BSC | <0.01% | $0.519556 | 12.1849 | $6.33 | |
| BSC | <0.01% | $0.137854 | 44.4112 | $6.12 | |
| BSC | <0.01% | $0.010843 | 554.2645 | $6.01 | |
| BSC | <0.01% | $0.003878 | 1,513.7676 | $5.87 | |
| BSC | <0.01% | $0.014899 | 385.2361 | $5.74 | |
| BSC | <0.01% | $0.017958 | 291.3633 | $5.23 | |
| BSC | <0.01% | $0.005546 | 909.3618 | $5.04 | |
| BSC | <0.01% | $0.027317 | 180.8846 | $4.94 | |
| BSC | <0.01% | $1 | 4.6194 | $4.62 | |
| BSC | <0.01% | $0.010377 | 444.9038 | $4.62 | |
| BSC | <0.01% | $0.952137 | 4.6284 | $4.41 | |
| BSC | <0.01% | $0.046669 | 93.8736 | $4.38 | |
| BSC | <0.01% | $0.000425 | 9,348.7188 | $3.97 | |
| BSC | <0.01% | $0.023999 | 165.4541 | $3.97 | |
| BSC | <0.01% | $0.659651 | 5.759 | $3.8 | |
| BSC | <0.01% | $0.048755 | 70.4333 | $3.43 | |
| BSC | <0.01% | $0.050625 | 66.9954 | $3.39 | |
| BSC | <0.01% | $0.001893 | 1,749.9333 | $3.31 | |
| BSC | <0.01% | $0.034253 | 95.2872 | $3.26 | |
| BSC | <0.01% | $0.087939 | 34.9284 | $3.07 | |
| BSC | <0.01% | $0.000337 | 8,357.6807 | $2.81 | |
| BSC | <0.01% | $1.42 | 1.9756 | $2.81 | |
| BSC | <0.01% | $76,114 | 0.0000368 | $2.8 | |
| BSC | <0.01% | $0.033182 | 78.8656 | $2.62 | |
| BSC | <0.01% | $0.196388 | 13.3172 | $2.62 | |
| BSC | <0.01% | $0.079071 | 32.9257 | $2.6 | |
| BSC | <0.01% | $0.001761 | 1,468.7966 | $2.59 | |
| BSC | <0.01% | $0.00 | 1.9525 | $0.00 | |
| BSC | <0.01% | $0.000002 | 1,418,803.478 | $2.53 | |
| BSC | <0.01% | $0.004968 | 439.0661 | $2.18 | |
| BSC | <0.01% | $0.009091 | 236.2748 | $2.15 | |
| BSC | <0.01% | $0.019934 | 107.6648 | $2.15 | |
| BSC | <0.01% | $0.000305 | 6,890.0088 | $2.1 | |
| BSC | <0.01% | $0.000782 | 2,676.5448 | $2.09 | |
| BSC | <0.01% | $0.997987 | 2.0501 | $2.05 | |
| BSC | <0.01% | $0.00 | 160,602,457.1185 | $0.00 | |
| BSC | <0.01% | $0.003601 | 555.3287 | $2 | |
| BSC | <0.01% | $0.097296 | 20.3625 | $1.98 | |
| BSC | <0.01% | $0.003835 | 497.066 | $1.91 | |
| BSC | <0.01% | $119.38 | 0.016 | $1.9 | |
| BSC | <0.01% | $0.999889 | 1.8982 | $1.9 | |
| BSC | <0.01% | $0.07485 | 24.234 | $1.81 | |
| BSC | <0.01% | $0.001702 | 1,053.2709 | $1.79 | |
| BSC | <0.01% | $0.009557 | 187.0675 | $1.79 | |
| BSC | <0.01% | $0.00 | 0.59 | $0.00 | |
| BSC | <0.01% | $0.03894 | 44.5025 | $1.73 | |
| BSC | <0.01% | $0.557985 | 2.9875 | $1.67 | |
| BSC | <0.01% | $0.012207 | 131.6109 | $1.61 | |
| BSC | <0.01% | $0.029841 | 52.4531 | $1.57 | |
| BSC | <0.01% | $76,284 | 0.00002051 | $1.56 | |
| BSC | <0.01% | $1.35 | 1.1063 | $1.5 | |
| BSC | <0.01% | <$0.000001 | 3,838,441,430.6145 | $1.49 | |
| BSC | <0.01% | $0.007086 | 205.8226 | $1.46 | |
| BSC | <0.01% | $0.00574 | 240.2694 | $1.38 | |
| BSC | <0.01% | $0.999694 | 1.3445 | $1.34 | |
| BSC | <0.01% | $0.026559 | 50.4791 | $1.34 | |
| BSC | <0.01% | $8.85 | 0.1513 | $1.34 | |
| BSC | <0.01% | $0.999193 | 1.3298 | $1.33 | |
| BSC | <0.01% | $3.58 | 0.3701 | $1.32 | |
| BSC | <0.01% | $0.000018 | 71,474.1642 | $1.28 | |
| BSC | <0.01% | $0.003591 | 353.359 | $1.27 | |
| BSC | <0.01% | $568.49 | 0.00213151 | $1.21 | |
| BSC | <0.01% | $0.677313 | 1.7874 | $1.21 | |
| BSC | <0.01% | $0.000004 | 288,607.9353 | $1.18 | |
| BSC | <0.01% | $0.002405 | 483.8346 | $1.16 | |
| BSC | <0.01% | $0.501292 | 2.3144 | $1.16 | |
| BSC | <0.01% | $189.85 | 0.00607882 | $1.15 | |
| BSC | <0.01% | $0.002694 | 426.1956 | $1.15 | |
| BSC | <0.01% | $0.112753 | 10.1703 | $1.15 | |
| BSC | <0.01% | $0.119259 | 9.6021 | $1.15 | |
| BSC | <0.01% | $0.003112 | 361.1511 | $1.12 | |
| BSC | <0.01% | $0.018023 | 62.0614 | $1.12 | |
| BSC | <0.01% | $0.051223 | 21.5374 | $1.1 | |
| BSC | <0.01% | $0.001234 | 879.6915 | $1.09 | |
| BSC | <0.01% | $0.290104 | 3.6144 | $1.05 | |
| BSC | <0.01% | $0.100036 | 10.419 | $1.04 | |
| BSC | <0.01% | $0.00 | 217,474.8677 | $0.00 | |
| BSC | <0.01% | $0.008286 | 117.3531 | $0.9723 | |
| BSC | <0.01% | $0.008249 | 113.3259 | $0.9348 | |
| BSC | <0.01% | $0.01188 | 78.5139 | $0.9327 | |
| BSC | <0.01% | $8.29 | 0.1107 | $0.9174 | |
| BSC | <0.01% | $0.056829 | 16.1219 | $0.9161 | |
| BSC | <0.01% | $0.141949 | 6.2078 | $0.8811 | |
| BSC | <0.01% | $1.35 | 0.6355 | $0.8602 | |
| BSC | <0.01% | $0.003868 | 220.7146 | $0.8537 | |
| BSC | <0.01% | $0.007124 | 118.3914 | $0.8434 | |
| BSC | <0.01% | $0.00 | 18.5245 | $0.00 | |
| BSC | <0.01% | $0.021876 | 35.0163 | $0.766 | |
| BSC | <0.01% | $0.325196 | 2.3555 | $0.766 | |
| BSC | <0.01% | $0.00031 | 2,437.1676 | $0.7546 | |
| BSC | <0.01% | $0.001803 | 413.9444 | $0.7461 | |
| BSC | <0.01% | $0.004107 | 178.8285 | $0.7344 | |
| BSC | <0.01% | $0.029293 | 23.8811 | $0.6995 | |
| BSC | <0.01% | $55,117.55 | 0.00001268 | $0.6988 | |
| BSC | <0.01% | $1 | 0.6946 | $0.6959 | |
| BSC | <0.01% | $0.070858 | 9.7661 | $0.692 | |
| BSC | <0.01% | $9.05 | 0.0738 | $0.6679 | |
| BSC | <0.01% | $0.984014 | 0.6735 | $0.6626 | |
| BSC | <0.01% | $0.001252 | 526.2256 | $0.6588 | |
| BSC | <0.01% | $76,043 | 0.00000819 | $0.6224 | |
| BSC | <0.01% | $0.000199 | 3,107.2834 | $0.6173 | |
| BSC | <0.01% | $0.010202 | 59.9364 | $0.6114 | |
| BSC | <0.01% | $0.056717 | 10.7761 | $0.6111 | |
| BSC | <0.01% | $0.000041 | 14,978.8845 | $0.6103 | |
| BSC | <0.01% | $805.52 | 0.00073034 | $0.5883 | |
| BSC | <0.01% | $0.009442 | 61.7828 | $0.5833 | |
| BSC | <0.01% | $0.026241 | 21.3513 | $0.5602 | |
| BSC | <0.01% | $0.003879 | 142.2689 | $0.5518 | |
| BSC | <0.01% | $0.00 | 48,077,444.3369 | $0.00 | |
| BSC | <0.01% | $0.577704 | 0.9245 | $0.534 | |
| BSC | <0.01% | $0.025806 | 20.5707 | $0.5308 | |
| BSC | <0.01% | $0.008611 | 60.8432 | $0.5239 | |
| BSC | <0.01% | $0.00 | 85.2208 | $0.00 | |
| BSC | <0.01% | <$0.000001 | 9,879,904.6806 | $0.5052 | |
| BSC | <0.01% | <$0.000001 | 13,536,151,353.8788 | $0.4954 | |
| BSC | <0.01% | $0.026878 | 18.261 | $0.4908 | |
| BSC | <0.01% | $0.015179 | 32.2389 | $0.4893 | |
| BSC | <0.01% | $0.000042 | 11,518.6923 | $0.4881 | |
| BSC | <0.01% | <$0.000001 | 2,072,256.1982 | $0.4849 | |
| BSC | <0.01% | $47.98 | 0.00992165 | $0.476 | |
| BSC | <0.01% | $0.004712 | 100.2887 | $0.4725 | |
| BSC | <0.01% | $0.00313 | 149.0262 | $0.4664 | |
| BSC | <0.01% | $0.013434 | 33.5036 | $0.45 | |
| BSC | <0.01% | $1.2 | 0.371 | $0.4452 | |
| BSC | <0.01% | $0.000006 | 66,236.4729 | $0.4166 | |
| BSC | <0.01% | $1.03 | 0.3982 | $0.4117 | |
| BSC | <0.01% | $0.033277 | 12.1817 | $0.4053 | |
| BSC | <0.01% | <$0.000001 | 2,123,030.3423 | $0.3986 | |
| BSC | <0.01% | $0.288619 | 1.3465 | $0.3886 | |
| BSC | <0.01% | $0.066365 | 5.8428 | $0.3877 | |
| BSC | <0.01% | $5,068.37 | 0.00007619 | $0.3861 | |
| BSC | <0.01% | $0.010178 | 37.7726 | $0.3844 | |
| BSC | <0.01% | $0.093325 | 4.0527 | $0.3782 | |
| BSC | <0.01% | $0.081224 | 4.6452 | $0.3772 | |
| BSC | <0.01% | $0.041515 | 9.0739 | $0.3767 | |
| BSC | <0.01% | $0.001566 | 237.2551 | $0.3715 | |
| BSC | <0.01% | $0.065309 | 5.6644 | $0.3699 | |
| BSC | <0.01% | $0.000714 | 514.5841 | $0.3676 | |
| BSC | <0.01% | $0.758423 | 0.4825 | $0.3659 | |
| BSC | <0.01% | $0.015983 | 22.7157 | $0.363 | |
| BSC | <0.01% | $0.004979 | 72.7841 | $0.3623 | |
| BSC | <0.01% | $0.015043 | 23.5012 | $0.3535 | |
| BSC | <0.01% | $0.000971 | 361.4409 | $0.351 | |
| BSC | <0.01% | $2.31 | 0.1514 | $0.3497 | |
| BSC | <0.01% | $0.000902 | 386.8913 | $0.3489 | |
| BSC | <0.01% | $0.010348 | 33.4962 | $0.3466 | |
| BSC | <0.01% | $0.000034 | 10,106.3149 | $0.3464 | |
| BSC | <0.01% | $0.152179 | 2.191 | $0.3334 | |
| BSC | <0.01% | $0.870857 | 0.3813 | $0.332 | |
| BSC | <0.01% | $0.001801 | 183.2503 | $0.33 | |
| BSC | <0.01% | $0.029706 | 10.9478 | $0.3252 | |
| BSC | <0.01% | $0.99908 | 0.3208 | $0.3204 | |
| BSC | <0.01% | $0.00 | 10.77 | $0.00 | |
| BSC | <0.01% | $0.000197 | 1,569.4083 | $0.3097 | |
| BSC | <0.01% | $0.419039 | 0.7232 | $0.303 | |
| BSC | <0.01% | $0.001407 | 212.4877 | $0.2988 | |
| BSC | <0.01% | $0.001064 | 276.8665 | $0.2946 | |
| BSC | <0.01% | $0.00 | 17.7425 | $0.00 | |
| BSC | <0.01% | $0.002677 | 109.2655 | $0.2925 | |
| BSC | <0.01% | $3.65 | 0.0782 | $0.2855 | |
| BSC | <0.01% | $2.29 | 0.1246 | $0.2848 | |
| BSC | <0.01% | $0.00331 | 84.0097 | $0.278 | |
| BSC | <0.01% | $0.079711 | 3.4169 | $0.2723 | |
| BSC | <0.01% | $0.00 | 100.7104 | $0.00 | |
| BSC | <0.01% | $0.000001 | 285,087.2253 | $0.2621 | |
| BSC | <0.01% | $0.090327 | 2.8408 | $0.2566 | |
| BSC | <0.01% | $54.53 | 0.00464132 | $0.253 | |
| BSC | <0.01% | $0.141949 | 1.7656 | $0.2506 | |
| BSC | <0.01% | $0.000389 | 641.9784 | $0.2496 | |
| BSC | <0.01% | $0.008014 | 30.9818 | $0.2483 | |
| BSC | <0.01% | $0.092309 | 2.5956 | $0.2395 | |
| BSC | <0.01% | $0.000023 | 10,417.5366 | $0.2369 | |
| BSC | <0.01% | $0.016089 | 14.3495 | $0.2308 | |
| BSC | <0.01% | $0.000026 | 8,853.9119 | $0.2301 | |
| BSC | <0.01% | $0.004616 | 48.4603 | $0.2237 | |
| BSC | <0.01% | $0.015252 | 14.6101 | $0.2228 | |
| BSC | <0.01% | <$0.000001 | 9,859,340.3477 | $0.221 | |
| BSC | <0.01% | $0.020259 | 10.6865 | $0.2165 | |
| BSC | <0.01% | $0.005669 | 38.1556 | $0.2163 | |
| BSC | <0.01% | $0.000061 | 3,510.5569 | $0.2131 | |
| BSC | <0.01% | $1.32 | 0.1613 | $0.2129 | |
| BSC | <0.01% | <$0.000001 | 44,844,037.1642 | $0.2045 | |
| BSC | <0.01% | $0.000189 | 1,073.7686 | $0.2028 | |
| BSC | <0.01% | $0.043732 | 4.5869 | $0.2005 | |
| BSC | <0.01% | $0.004794 | 41.3743 | $0.1983 | |
| BSC | <0.01% | $0.017836 | 10.9989 | $0.1961 | |
| BSC | <0.01% | $1.33 | 0.1466 | $0.195 | |
| BSC | <0.01% | $0.001639 | 117.6105 | $0.1927 | |
| BSC | <0.01% | $0.000246 | 777.7929 | $0.1911 | |
| BSC | <0.01% | $0.013089 | 14.5596 | $0.1905 | |
| BSC | <0.01% | $0.000431 | 441.1576 | $0.19 | |
| BSC | <0.01% | $0.003114 | 60.9819 | $0.1898 | |
| BSC | <0.01% | $0.000627 | 302.0504 | $0.1893 | |
| BSC | <0.01% | $0.001083 | 174.4593 | $0.1889 | |
| BSC | <0.01% | $0.000064 | 2,923.0163 | $0.1879 | |
| BSC | <0.01% | $0.001222 | 153.2049 | $0.1872 | |
| BSC | <0.01% | $0.294063 | 0.631 | $0.1855 | |
| BSC | <0.01% | $0.00 | 331.3066 | $0.00 | |
| BSC | <0.01% | $0.037736 | 4.7766 | $0.1802 | |
| BSC | <0.01% | $0.0002 | 900.7391 | $0.1798 | |
| BSC | <0.01% | $0.000681 | 263.1339 | $0.1792 | |
| BSC | <0.01% | $0.071604 | 2.4775 | $0.1773 | |
| BSC | <0.01% | $0.02071 | 8.4237 | $0.1744 | |
| BSC | <0.01% | $2.38 | 0.0731 | $0.1742 | |
| BSC | <0.01% | $0.002212 | 78.6322 | $0.1739 | |
| BSC | <0.01% | $0.031369 | 5.5373 | $0.1737 | |
| BSC | <0.01% | $0.027363 | 6.2983 | $0.1723 | |
| BSC | <0.01% | $0.017719 | 9.595 | $0.17 | |
| BSC | <0.01% | $0.032566 | 5.1322 | $0.1671 | |
| BSC | <0.01% | $0.277196 | 0.6009 | $0.1665 | |
| BSC | <0.01% | $1,955.75 | 0.00008463 | $0.1655 | |
| BSC | <0.01% | $0.004396 | 37.3916 | $0.1643 | |
| BSC | <0.01% | $0.067422 | 2.4254 | $0.1635 | |
| BSC | <0.01% | $0.163064 | 0.9979 | $0.1627 | |
| BSC | <0.01% | $0.008024 | 19.7762 | $0.1586 | |
| BSC | <0.01% | $0.002023 | 77.0658 | $0.1558 | |
| BSC | <0.01% | $0.001145 | 133.7666 | $0.1531 | |
| BSC | <0.01% | $0.000955 | 159.8339 | $0.1526 | |
| BSC | <0.01% | $0.001463 | 103.3929 | $0.1512 | |
| BSC | <0.01% | $0.000006 | 24,313.994 | $0.1502 | |
| BSC | <0.01% | $0.000059 | 2,506.72 | $0.1487 | |
| BSC | <0.01% | $0.003681 | 38.4974 | $0.1416 | |
| BSC | <0.01% | $0.086884 | 1.6269 | $0.1413 | |
| BSC | <0.01% | $1.76 | 0.0739 | $0.13 | |
| BSC | <0.01% | $0.013956 | 9.0389 | $0.1261 | |
| BSC | <0.01% | $0.000489 | 256.8472 | $0.1256 | |
| BSC | <0.01% | $0.055305 | 2.2341 | $0.1235 | |
| BSC | <0.01% | $0.009441 | 12.8797 | $0.1215 | |
| BSC | <0.01% | $0.266829 | 0.4469 | $0.1192 | |
| BSC | <0.01% | $0.000049 | 2,399.9159 | $0.1175 | |
| BSC | <0.01% | $0.000023 | 5,176.0564 | $0.1174 | |
| BSC | <0.01% | $0.477352 | 0.2446 | $0.1167 | |
| BSC | <0.01% | $0.024025 | 4.8346 | $0.1161 | |
| BSC | <0.01% | $0.001979 | 58.6515 | $0.116 | |
| BSC | <0.01% | $0.001359 | 84.9489 | $0.1154 | |
| BSC | <0.01% | $0.095811 | 1.2033 | $0.1152 | |
| BSC | <0.01% | $0.001071 | 107.0894 | $0.1147 | |
| BSC | <0.01% | $0.005017 | 22.6079 | $0.1134 | |
| BSC | <0.01% | $0.001232 | 91.8644 | $0.1132 | |
| BSC | <0.01% | $0.00005 | 2,258.2881 | $0.1124 | |
| BSC | <0.01% | $0.056071 | 1.977 | $0.1108 | |
| BSC | <0.01% | $0.00 | 5.4188 | $0.00 | |
| BSC | <0.01% | $0.001103 | 95.8787 | $0.1057 | |
| BSC | <0.01% | $0.008874 | 11.8049 | $0.1047 | |
| BSC | <0.01% | $0.001061 | 98.6989 | $0.1046 | |
| BSC | <0.01% | $0.007788 | 13.3507 | $0.1039 | |
| BSC | <0.01% | $0.003349 | 30.6429 | $0.1026 | |
| BSC | <0.01% | $2.23 | 0.0455 | $0.1014 | |
| BSC | <0.01% | $0.027726 | 3.6523 | $0.1012 | |
| BSC | <0.01% | $0.002814 | 35.6953 | $0.1004 | |
| BASE | 1.78% | $1 | 13,233.3769 | $13,233.38 | |
| BASE | 0.90% | $2,263.38 | 2.9676 | $6,716.72 | |
| BASE | 0.41% | $76,331 | 0.0402 | $3,070.91 | |
| BASE | 0.37% | $1,970.96 | 1.4091 | $2,777.26 | |
| BASE | 0.09% | $0.635022 | 1,083.1561 | $687.83 | |
| BASE | 0.09% | $0.184182 | 3,715.2547 | $684.28 | |
| BASE | 0.07% | $0.320244 | 1,732.9159 | $554.96 | |
| BASE | 0.07% | $4.25 | 122.2511 | $519.57 | |
| BASE | 0.05% | $1.18 | 330.7176 | $390.25 | |
| BASE | 0.05% | $0.000596 | 591,567.3433 | $352.59 | |
| BASE | 0.04% | $32.23 | 10.1964 | $328.63 | |
| BASE | 0.03% | $0.998334 | 246.2054 | $245.8 | |
| BASE | 0.03% | $0.260731 | 877.3382 | $228.75 | |
| BASE | 0.02% | $0.020681 | 8,186.1092 | $169.3 | |
| BASE | 0.02% | $0.036317 | 4,327.1251 | $157.15 | |
| BASE | 0.02% | $0.000211 | 721,599.736 | $152.31 | |
| BASE | 0.02% | $5.8 | 20.9974 | $121.78 | |
| BASE | 0.02% | $71,128 | 0.00168063 | $119.54 | |
| BASE | 0.02% | $0.986994 | 119.4877 | $117.93 | |
| BASE | 0.01% | $0.111581 | 830.8362 | $92.71 | |
| BASE | 0.01% | $0.296961 | 303.621 | $90.16 | |
| BASE | 0.01% | $1 | 84.7875 | $84.87 | |
| BASE | 0.01% | $0.999177 | 83.6493 | $83.58 | |
| BASE | 0.01% | $59.82 | 1.3852 | $82.86 | |
| BASE | <0.01% | $0.64802 | 111.2248 | $72.08 | |
| BASE | <0.01% | $0.10775 | 648.1395 | $69.84 | |
| BASE | <0.01% | $1.59 | 42.6006 | $67.73 | |
| BASE | <0.01% | $0.095671 | 605.0526 | $57.89 | |
| BASE | <0.01% | $1.12 | 48.3351 | $54.14 | |
| BASE | <0.01% | $1.63 | 23.7685 | $38.74 | |
| BASE | <0.01% | $2.73 | 12.5084 | $34.15 | |
| BASE | <0.01% | $0.00009 | 368,108.2855 | $33.21 | |
| BASE | <0.01% | $0.000056 | 594,482.4121 | $33.12 | |
| BASE | <0.01% | $0.019545 | 1,684.0895 | $32.92 | |
| BASE | <0.01% | $0.29828 | 104.2386 | $31.09 | |
| BASE | <0.01% | $0.40344 | 74.5224 | $30.07 | |
| BASE | <0.01% | $0.019895 | 1,440 | $28.65 | |
| BASE | <0.01% | $0.091438 | 311.3381 | $28.47 | |
| BASE | <0.01% | $2,419.43 | 0.0117 | $28.26 | |
| BASE | <0.01% | $1.29 | 20.9446 | $27.02 | |
| BASE | <0.01% | $0.061996 | 404.4691 | $25.08 | |
| BASE | <0.01% | $0.000031 | 711,083.9428 | $22.26 | |
| BASE | <0.01% | $0.006235 | 3,547.4786 | $22.12 | |
| BASE | <0.01% | $0.014079 | 1,415.9675 | $19.94 | |
| BASE | <0.01% | $2,773.1 | 0.00710362 | $19.7 | |
| BASE | <0.01% | $1.76 | 11.187 | $19.69 | |
| BASE | <0.01% | $0.029824 | 651.6939 | $19.44 | |
| BASE | <0.01% | $0.011673 | 1,645.9575 | $19.21 | |
| BASE | <0.01% | $0.000113 | 157,719.9489 | $17.9 | |
| BASE | <0.01% | $0.995793 | 17.5248 | $17.45 | |
| BASE | <0.01% | $0.020225 | 794.3827 | $16.07 | |
| BASE | <0.01% | $0.310917 | 51.1971 | $15.92 | |
| BASE | <0.01% | $0.095287 | 158.8642 | $15.14 | |
| BASE | <0.01% | $0.000225 | 65,067.1591 | $14.63 | |
| BASE | <0.01% | $0.000569 | 22,319.7901 | $12.7 | |
| BASE | <0.01% | $0.011717 | 1,029.0838 | $12.06 | |
| BASE | <0.01% | $0.022239 | 493.1274 | $10.97 | |
| BASE | <0.01% | $0.104868 | 102.3145 | $10.73 | |
| BASE | <0.01% | $0.380353 | 26.8607 | $10.22 | |
| BASE | <0.01% | $0.004143 | 2,442.6839 | $10.12 | |
| BASE | <0.01% | $0.999819 | 9.9995 | $10 | |
| BASE | <0.01% | $0.026897 | 370.0079 | $9.95 | |
| BASE | <0.01% | $76,114 | 0.00012984 | $9.88 | |
| BASE | <0.01% | $0.001354 | 6,940.8766 | $9.39 | |
| BASE | <0.01% | $0.007313 | 1,272.4462 | $9.31 | |
| BASE | <0.01% | $2,216.17 | 0.00419656 | $9.3 | |
| BASE | <0.01% | $0.098773 | 93.7039 | $9.26 | |
| BASE | <0.01% | $0.082709 | 89.1624 | $7.37 | |
| BASE | <0.01% | $0.00 | 1,527.8423 | $0.00 | |
| BASE | <0.01% | $85.15 | 0.0815 | $6.94 | |
| BASE | <0.01% | $0.00 | 0.00279302 | $0.00 | |
| BASE | <0.01% | $119.37 | 0.0559 | $6.67 | |
| BASE | <0.01% | $0.001408 | 4,712.8072 | $6.63 | |
| BASE | <0.01% | $0.017852 | 363.2957 | $6.49 | |
| BASE | <0.01% | $0.000795 | 8,083 | $6.43 | |
| BASE | <0.01% | $0.080466 | 73.5328 | $5.92 | |
| BASE | <0.01% | $1.35 | 4.3447 | $5.87 | |
| BASE | <0.01% | $2,462.49 | 0.00232443 | $5.72 | |
| BASE | <0.01% | $0.091028 | 61.1124 | $5.56 | |
| BASE | <0.01% | $0.002135 | 2,573.0064 | $5.49 | |
| BASE | <0.01% | $0.025851 | 205.3772 | $5.31 | |
| BASE | <0.01% | $0.001284 | 3,973.9899 | $5.1 | |
| BASE | <0.01% | $0.07458 | 66.5691 | $4.96 | |
| BASE | <0.01% | $0.00035 | 13,977.8996 | $4.89 | |
| BASE | <0.01% | $0.999239 | 4.8381 | $4.83 | |
| BASE | <0.01% | $0.00267 | 1,671.5391 | $4.46 | |
| BASE | <0.01% | $0.007148 | 623.1023 | $4.45 | |
| BASE | <0.01% | $172.1 | 0.0255 | $4.39 | |
| BASE | <0.01% | $1.29 | 3.3793 | $4.36 | |
| BASE | <0.01% | $2,793.24 | 0.00155808 | $4.35 | |
| BASE | <0.01% | $0.078951 | 54.3273 | $4.29 | |
| BASE | <0.01% | $0.000415 | 10,322.4853 | $4.28 | |
| BASE | <0.01% | $0.015493 | 272.8789 | $4.23 | |
| BASE | <0.01% | $0.053342 | 77.0039 | $4.11 | |
| BASE | <0.01% | $0.000006 | 702,646.3281 | $4.05 | |
| BASE | <0.01% | $0.012754 | 302.2503 | $3.86 | |
| BASE | <0.01% | $0.000671 | 5,503.6614 | $3.69 | |
| BASE | <0.01% | $1.04 | 3.5123 | $3.66 | |
| BASE | <0.01% | $0.025783 | 133.9252 | $3.45 | |
| BASE | <0.01% | $0.002752 | 1,239.67 | $3.41 | |
| BASE | <0.01% | $0.459727 | 7.2488 | $3.33 | |
| BASE | <0.01% | $0.005376 | 595.1049 | $3.2 | |
| BASE | <0.01% | $0.030291 | 105.5279 | $3.2 | |
| BASE | <0.01% | $0.106061 | 29.9615 | $3.18 | |
| BASE | <0.01% | $174.4 | 0.018 | $3.15 | |
| BASE | <0.01% | $0.00663 | 468.453 | $3.11 | |
| BASE | <0.01% | $0.000089 | 34,186.0138 | $3.05 | |
| BASE | <0.01% | $0.042665 | 71.0923 | $3.03 | |
| BASE | <0.01% | $0.071381 | 42.3721 | $3.02 | |
| BASE | <0.01% | $0.995263 | 3.0156 | $3 | |
| BASE | <0.01% | $0.031807 | 92.8954 | $2.95 | |
| BASE | <0.01% | $0.00131 | 2,200.9332 | $2.88 | |
| BASE | <0.01% | $0.007313 | 392.3495 | $2.87 | |
| BASE | <0.01% | $0.124489 | 22.9072 | $2.85 | |
| BASE | <0.01% | $76,388 | 0.00003689 | $2.82 | |
| BASE | <0.01% | $0.015185 | 181.0522 | $2.75 | |
| BASE | <0.01% | $3.4 | 0.7931 | $2.7 | |
| BASE | <0.01% | $1.18 | 2.2843 | $2.7 | |
| BASE | <0.01% | $0.00 | 1,544 | $0.00 | |
| BASE | <0.01% | $0.003176 | 816.5326 | $2.59 | |
| BASE | <0.01% | $0.002678 | 934.0124 | $2.5 | |
| BASE | <0.01% | $0.000732 | 3,304.1918 | $2.42 | |
| BASE | <0.01% | $0.020579 | 117.4207 | $2.42 | |
| BASE | <0.01% | $1,974.58 | 0.00122188 | $2.41 | |
| BASE | <0.01% | $0.000489 | 4,928.3739 | $2.41 | |
| BASE | <0.01% | $0.135508 | 17.1761 | $2.33 | |
| BASE | <0.01% | $0.009971 | 226.6189 | $2.26 | |
| BASE | <0.01% | $0.101793 | 21.797 | $2.22 | |
| BASE | <0.01% | $0.021085 | 105.0199 | $2.21 | |
| BASE | <0.01% | <$0.000001 | 13,079,692.2105 | $2.21 | |
| BASE | <0.01% | $0.00135 | 1,593.5061 | $2.15 | |
| BASE | <0.01% | $0.008812 | 231.4454 | $2.04 | |
| BASE | <0.01% | $0.000081 | 24,269.1974 | $1.96 | |
| BASE | <0.01% | $0.005738 | 338.1838 | $1.94 | |
| BASE | <0.01% | $1 | 1.8003 | $1.81 | |
| BASE | <0.01% | $0.056311 | 31.3913 | $1.77 | |
| BASE | <0.01% | <$0.000001 | 218,765,034.7109 | $1.75 | |
| BASE | <0.01% | $0.003587 | 481.7768 | $1.73 | |
| BASE | <0.01% | $0.495362 | 3.3926 | $1.68 | |
| BASE | <0.01% | $1.2 | 1.3149 | $1.58 | |
| BASE | <0.01% | $0.000001 | 1,331,089.0043 | $1.54 | |
| BASE | <0.01% | $1.06 | 1.4371 | $1.53 | |
| BASE | <0.01% | $0.013776 | 110.4094 | $1.52 | |
| BASE | <0.01% | $0.999803 | 1.5131 | $1.51 | |
| BASE | <0.01% | $0.999739 | 1.4478 | $1.45 | |
| BASE | <0.01% | $0.003996 | 358.8969 | $1.43 | |
| BASE | <0.01% | $0.000126 | 11,281.7259 | $1.42 | |
| BASE | <0.01% | $0.952393 | 1.4369 | $1.37 | |
| BASE | <0.01% | $0.026556 | 51.1347 | $1.36 | |
| BASE | <0.01% | $2,283.43 | 0.00059295 | $1.35 | |
| BASE | <0.01% | $0.996997 | 1.3544 | $1.35 | |
| BASE | <0.01% | $0.000273 | 4,880.1499 | $1.33 | |
| BASE | <0.01% | $0.016809 | 75.0942 | $1.26 | |
| BASE | <0.01% | $0.001173 | 1,073.7686 | $1.26 | |
| BASE | <0.01% | $0.137202 | 9.0372 | $1.24 | |
| BASE | <0.01% | $0.013152 | 93.7608 | $1.23 | |
| BASE | <0.01% | $2.31 | 0.5191 | $1.2 | |
| BASE | <0.01% | $0.997325 | 1.1808 | $1.18 | |
| BASE | <0.01% | $0.000001 | 1,125,704.0836 | $1.15 | |
| BASE | <0.01% | $0.007513 | 143.77 | $1.08 | |
| BASE | <0.01% | $0.090778 | 11.894 | $1.08 | |
| BASE | <0.01% | $2,269 | 0.00047419 | $1.08 | |
| BASE | <0.01% | $0.234608 | 4.5843 | $1.08 | |
| BASE | <0.01% | $0.019272 | 54.1289 | $1.04 | |
| BASE | <0.01% | $0.558472 | 1.8595 | $1.04 | |
| BASE | <0.01% | $0.981315 | 1.0229 | $1 | |
| BASE | <0.01% | $0.210051 | 4.5085 | $0.947 | |
| BASE | <0.01% | $0.013086 | 69.735 | $0.9125 | |
| BASE | <0.01% | $0.00 | 839.1455 | $0.00 | |
| BASE | <0.01% | $0.049925 | 18.0795 | $0.9026 | |
| BASE | <0.01% | $0.007899 | 112.1551 | $0.8858 | |
| BASE | <0.01% | $0.003816 | 230.5634 | $0.8797 | |
| BASE | <0.01% | $0.000996 | 870.2641 | $0.8667 | |
| BASE | <0.01% | $0.054336 | 15.6473 | $0.8502 | |
| BASE | <0.01% | $76,738 | 0.00001099 | $0.8433 | |
| BASE | <0.01% | $1.09 | 0.7747 | $0.8405 | |
| BASE | <0.01% | $0.000019 | 42,902.7944 | $0.8331 | |
| BASE | <0.01% | $0.066868 | 12.1933 | $0.8153 | |
| BASE | <0.01% | $2.04 | 0.3895 | $0.7945 | |
| BASE | <0.01% | $17.78 | 0.0441 | $0.7842 | |
| BASE | <0.01% | $0.008846 | 85.4303 | $0.7557 | |
| BASE | <0.01% | $0.104744 | 7.1669 | $0.7506 | |
| BASE | <0.01% | $0.008942 | 83.8081 | $0.7493 | |
| BASE | <0.01% | $0.053404 | 13.9525 | $0.7451 | |
| BASE | <0.01% | $0.001495 | 491.3675 | $0.7345 | |
| BASE | <0.01% | $0.725876 | 0.9878 | $0.717 | |
| BASE | <0.01% | $0.000066 | 10,582.2782 | $0.6989 | |
| BASE | <0.01% | $0.000041 | 16,885.8809 | $0.6929 | |
| BASE | <0.01% | <$0.000001 | 140,909,453.8202 | $0.6904 | |
| BASE | <0.01% | $0.109845 | 6.1574 | $0.6763 | |
| BASE | <0.01% | $0.009127 | 73.7204 | $0.6728 | |
| BASE | <0.01% | $0.000775 | 863.1715 | $0.669 | |
| BASE | <0.01% | $0.007675 | 85.4741 | $0.656 | |
| BASE | <0.01% | <$0.000001 | 84,021,637.2921 | $0.6553 | |
| BASE | <0.01% | $0.000345 | 1,787.1757 | $0.6168 | |
| BASE | <0.01% | $0.000178 | 3,441 | $0.6136 | |
| BASE | <0.01% | $0.00014 | 3,991.0844 | $0.5585 | |
| BASE | <0.01% | $0.000071 | 7,671.3191 | $0.5473 | |
| BASE | <0.01% | $0.003263 | 166.1041 | $0.542 | |
| BASE | <0.01% | $0.00 | 1.1541 | $0.00 | |
| BASE | <0.01% | $0.378592 | 1.4075 | $0.5328 | |
| BASE | <0.01% | $0.020228 | 25.7197 | $0.5202 | |
| BASE | <0.01% | $0.00001 | 53,483.905 | $0.5198 | |
| BASE | <0.01% | <$0.000001 | 1,295,388,984.4512 | $0.5181 | |
| BASE | <0.01% | $0.005833 | 87.7677 | $0.5119 | |
| BASE | <0.01% | $0.003307 | 154.6735 | $0.5114 | |
| BASE | <0.01% | $0.707812 | 0.7178 | $0.508 | |
| BASE | <0.01% | $0.012626 | 39.4305 | $0.4978 | |
| BASE | <0.01% | $0.132086 | 3.7423 | $0.4943 | |
| BASE | <0.01% | $0.000222 | 2,216.2044 | $0.4916 | |
| BASE | <0.01% | $0.000068 | 6,518.8944 | $0.4432 | |
| BASE | <0.01% | <$0.000001 | 5,071,729.8578 | $0.4366 | |
| BASE | <0.01% | $0.156614 | 2.7659 | $0.4331 | |
| BASE | <0.01% | $0.000001 | 759,961.1293 | $0.4285 | |
| BASE | <0.01% | $0.01271 | 32.6358 | $0.4148 | |
| BASE | <0.01% | $0.006472 | 64.0103 | $0.4142 | |
| BASE | <0.01% | $0.602415 | 0.6872 | $0.4139 | |
| BASE | <0.01% | $0.4021 | 1.0174 | $0.409 | |
| BASE | <0.01% | $0.00 | 2.0364 | $0.00 | |
| BASE | <0.01% | $0.557793 | 0.6994 | $0.3901 | |
| BASE | <0.01% | $0.002241 | 170.3591 | $0.3817 | |
| BASE | <0.01% | $0.060019 | 6.3399 | $0.3805 | |
| BASE | <0.01% | $0.001725 | 219.0046 | $0.3777 | |
| BASE | <0.01% | $0.004662 | 76.4074 | $0.3562 | |
| BASE | <0.01% | $0.00004 | 8,897.8897 | $0.3535 | |
| BASE | <0.01% | <$0.000001 | 5,087,575.5294 | $0.3495 | |
| BASE | <0.01% | $0.005515 | 62.1084 | $0.3425 | |
| BASE | <0.01% | $11.95 | 0.0285 | $0.3406 | |
| BASE | <0.01% | $0.003865 | 87.6578 | $0.3387 | |
| BASE | <0.01% | $0.584696 | 0.5762 | $0.3368 | |
| BASE | <0.01% | $0.050161 | 6.5299 | $0.3275 | |
| BASE | <0.01% | $0.016488 | 19.816 | $0.3267 | |
| BASE | <0.01% | $0.028785 | 11.1802 | $0.3218 | |
| BASE | <0.01% | $0.00212 | 149.8643 | $0.3177 | |
| BASE | <0.01% | $0.005019 | 63.1643 | $0.317 | |
| BASE | <0.01% | $1.01 | 0.3124 | $0.3139 | |
| BASE | <0.01% | $0.006441 | 46.8258 | $0.3016 | |
| BASE | <0.01% | $0.000004 | 73,057.9631 | $0.2819 | |
| BASE | <0.01% | $0.000844 | 329.6072 | $0.2781 | |
| BASE | <0.01% | $0.000027 | 10,464.4534 | $0.2775 | |
| BASE | <0.01% | $0.000171 | 1,607.1471 | $0.2744 | |
| BASE | <0.01% | $0.00131 | 208.4843 | $0.273 | |
| BASE | <0.01% | $0.011944 | 21.9747 | $0.2624 | |
| BASE | <0.01% | $0.000713 | 364.2069 | $0.2597 | |
| BASE | <0.01% | $0.148019 | 1.7243 | $0.2552 | |
| BASE | <0.01% | $0.005293 | 47.8796 | $0.2534 | |
| BASE | <0.01% | $0.000173 | 1,432.4479 | $0.2473 | |
| BASE | <0.01% | $0.69574 | 0.353 | $0.2455 | |
| BASE | <0.01% | $0.000009 | 26,668.6023 | $0.244 | |
| BASE | <0.01% | $0.018752 | 12.3649 | $0.2318 | |
| BASE | <0.01% | $1.94 | 0.1193 | $0.2314 | |
| BASE | <0.01% | $0.012778 | 17.7213 | $0.2264 | |
| BASE | <0.01% | $0.001248 | 174.345 | $0.2176 | |
| BASE | <0.01% | $0.037748 | 5.7047 | $0.2153 | |
| BASE | <0.01% | $0.055265 | 3.8913 | $0.215 | |
| BASE | <0.01% | $0.000155 | 1,373.8497 | $0.2133 | |
| BASE | <0.01% | $0.003428 | 61.3057 | $0.2101 | |
| BASE | <0.01% | $0.00 | 10.24 | $0.00 | |
| BASE | <0.01% | $0.000131 | 1,548.6474 | $0.2027 | |
| BASE | <0.01% | $0.000187 | 1,049.3027 | $0.1964 | |
| BASE | <0.01% | $0.001007 | 192.524 | $0.1938 | |
| BASE | <0.01% | $0.000023 | 8,220.8239 | $0.191 | |
| BASE | <0.01% | $0.119467 | 1.5945 | $0.1904 | |
| BASE | <0.01% | $0.00063 | 299.6161 | $0.1888 | |
| BASE | <0.01% | $0.000191 | 976.6809 | $0.1863 | |
| BASE | <0.01% | $0.019493 | 9.4814 | $0.1848 | |
| BASE | <0.01% | $0.015047 | 11.9019 | $0.179 | |
| BASE | <0.01% | <$0.000001 | 640,509.0435 | $0.174 | |
| BASE | <0.01% | $0.000107 | 1,596.0845 | $0.1702 | |
| BASE | <0.01% | $76,285 | 0.00000221 | $0.1689 | |
| BASE | <0.01% | $0.000304 | 552.392 | $0.1679 | |
| BASE | <0.01% | $0.009991 | 16.4616 | $0.1644 | |
| BASE | <0.01% | $0.129609 | 1.2632 | $0.1637 | |
| BASE | <0.01% | $0.000379 | 427.6345 | $0.1621 | |
| BASE | <0.01% | $0.084549 | 1.8307 | $0.1547 | |
| BASE | <0.01% | $0.00 | 4.624 | $0.00 | |
| BASE | <0.01% | $0.000001 | 246,373.2666 | $0.1483 | |
| BASE | <0.01% | $0.870857 | 0.1694 | $0.1474 | |
| BASE | <0.01% | $0.000002 | 71,797.6357 | $0.1464 | |
| BASE | <0.01% | $0.169605 | 0.8532 | $0.1447 | |
| BASE | <0.01% | $1 | 0.1437 | $0.1436 | |
| BASE | <0.01% | $0.000078 | 1,831.753 | $0.1435 | |
| BASE | <0.01% | $0.000011 | 13,368.8328 | $0.1414 | |
| BASE | <0.01% | $0.016477 | 8.5378 | $0.1406 | |
| BASE | <0.01% | $0.040496 | 3.3771 | $0.1367 | |
| BASE | <0.01% | $0.020261 | 6.6837 | $0.1354 | |
| BASE | <0.01% | $0.000825 | 162.6104 | $0.1342 | |
| BASE | <0.01% | $0.463615 | 0.2874 | $0.1332 | |
| BASE | <0.01% | $0.000018 | 7,539.9959 | $0.1331 | |
| BASE | <0.01% | $0.119417 | 1.0867 | $0.1297 | |
| BASE | <0.01% | $0.051184 | 2.4461 | $0.1251 | |
| BASE | <0.01% | $0.000008 | 15,418.169 | $0.1218 | |
| BASE | <0.01% | $0.000004 | 30,817.8093 | $0.1177 | |
| BASE | <0.01% | $0.000003 | 42,894.9832 | $0.1153 | |
| BASE | <0.01% | $0.993795 | 0.1151 | $0.1143 | |
| BASE | <0.01% | $0.000193 | 575.6051 | $0.1108 | |
| BASE | <0.01% | $0.282201 | 0.391 | $0.1103 | |
| BASE | <0.01% | $0.000128 | 855.88 | $0.1092 | |
| BASE | <0.01% | $147.83 | 0.0006966 | $0.1029 | |
| BASE | <0.01% | $0.000426 | 239.0794 | $0.1018 | |
| BASE | <0.01% | $0.166465 | 0.612 | $0.1018 | |
| BASE | <0.01% | $0.000001 | 133,141.912 | $0.1016 | |
| AVAX | 0.46% | $0.99992 | 3,450.7807 | $3,450.51 | |
| AVAX | 0.13% | $0.00 | 999.5996 | $0.00 | |
| AVAX | 0.11% | $9.05 | 86.5377 | $783.42 | |
| AVAX | 0.07% | $76,248 | 0.00668978 | $510.08 | |
| AVAX | 0.06% | $9.04 | 53.4238 | $482.93 | |
| AVAX | 0.05% | $2,263.38 | 0.1493 | $337.99 | |
| AVAX | 0.02% | $12.51 | 9.6949 | $121.28 | |
| AVAX | 0.01% | $5,009.63 | 0.0155 | $77.56 | |
| AVAX | <0.01% | $0.999831 | 31.8669 | $31.86 | |
| AVAX | <0.01% | $0.036511 | 775.0695 | $28.3 | |
| AVAX | <0.01% | $1.18 | 9.2445 | $10.89 | |
| AVAX | <0.01% | $67,825.96 | 0.0001387 | $9.41 | |
| AVAX | <0.01% | $67,825.96 | 0.00013157 | $8.92 | |
| AVAX | <0.01% | $76,284 | 0.00009705 | $7.4 | |
| AVAX | <0.01% | $0.000964 | 6,054.6423 | $5.84 | |
| AVAX | <0.01% | $0.025644 | 196.9481 | $5.05 | |
| AVAX | <0.01% | $0.028152 | 171.9141 | $4.84 | |
| AVAX | <0.01% | $0.009434 | 505.7177 | $4.77 | |
| AVAX | <0.01% | <$0.000001 | 31,968,793.2593 | $2.87 | |
| AVAX | <0.01% | $0.001927 | 1,375.4468 | $2.65 | |
| AVAX | <0.01% | $8.85 | 0.2737 | $2.42 | |
| AVAX | <0.01% | $1.3 | 1.7696 | $2.3 | |
| AVAX | <0.01% | $0.99992 | 2.0228 | $2.02 | |
| AVAX | <0.01% | $4,545.39 | 0.00043628 | $1.98 | |
| AVAX | <0.01% | $0.99791 | 1.6725 | $1.67 | |
| AVAX | <0.01% | $0.999709 | 1.6408 | $1.64 | |
| AVAX | <0.01% | $264,122 | 0.00000581 | $1.53 | |
| AVAX | <0.01% | $119.31 | 0.0126 | $1.5 | |
| AVAX | <0.01% | $13.09 | 0.0965 | $1.26 | |
| AVAX | <0.01% | $119.42 | 0.00900466 | $1.08 | |
| AVAX | <0.01% | $0.006417 | 140.9587 | $0.9045 | |
| AVAX | <0.01% | $1.76 | 0.4224 | $0.7433 | |
| AVAX | <0.01% | $0.99981 | 0.6728 | $0.6726 | |
| AVAX | <0.01% | $0.008042 | 81.4432 | $0.6549 | |
| AVAX | <0.01% | $103.18 | 0.00624926 | $0.6447 | |
| AVAX | <0.01% | <$0.000001 | 344,361,983.6194 | $0.5854 | |
| AVAX | <0.01% | $0.152826 | 3.7995 | $0.5806 | |
| AVAX | <0.01% | $0.999819 | 0.5469 | $0.5468 | |
| AVAX | <0.01% | $0.991582 | 0.5387 | $0.5341 | |
| AVAX | <0.01% | $0.006995 | 75.1323 | $0.5255 | |
| AVAX | <0.01% | $0.999617 | 0.4749 | $0.4747 | |
| AVAX | <0.01% | $1.22 | 0.3578 | $0.4364 | |
| AVAX | <0.01% | $0.013337 | 29.1805 | $0.3891 | |
| AVAX | <0.01% | $8.06 | 0.0356 | $0.2871 | |
| AVAX | <0.01% | $0.000352 | 738.219 | $0.2594 | |
| AVAX | <0.01% | $0.000184 | 1,392.0361 | $0.2563 | |
| AVAX | <0.01% | $0.0003 | 623.3117 | $0.1872 | |
| AVAX | <0.01% | $0.045074 | 3.3839 | $0.1525 | |
| AVAX | <0.01% | $0.037099 | 3.5817 | $0.1328 | |
| AVAX | <0.01% | $0.000883 | 125.3944 | $0.1106 | |
| POL | 0.11% | $0.999906 | 804.3865 | $804.31 | |
| POL | 0.09% | $0.998295 | 688.7076 | $687.53 | |
| POL | 0.07% | $0.999686 | 555.5808 | $555.41 | |
| POL | 0.06% | $1,973.03 | 0.2313 | $456.29 | |
| POL | 0.06% | $76,114 | 0.00558505 | $425.1 | |
| POL | 0.02% | $0.107707 | 1,435.9799 | $154.67 | |
| POL | 0.02% | $0.00 | 141.1724 | $0.00 | |
| POL | <0.01% | $8.85 | 8.085 | $71.55 | |
| POL | <0.01% | $2,773.1 | 0.0175 | $48.54 | |
| POL | <0.01% | $119.31 | 0.3522 | $42.02 | |
| POL | <0.01% | $0.107877 | 327.8307 | $35.37 | |
| POL | <0.01% | $0.143864 | 119.7573 | $17.23 | |
| POL | <0.01% | $64,957 | 0.00026375 | $17.13 | |
| POL | <0.01% | $0.111672 | 123.0704 | $13.74 | |
| POL | <0.01% | $0.192277 | 65.092 | $12.52 | |
| POL | <0.01% | $85.15 | 0.1364 | $11.62 | |
| POL | <0.01% | $0.002752 | 3,632.84 | $10 | |
| POL | <0.01% | $5,127.69 | 0.00185623 | $9.52 | |
| POL | <0.01% | $0.000021 | 369,995.512 | $7.78 | |
| POL | <0.01% | $0.083063 | 86.7692 | $7.21 | |
| POL | <0.01% | $0.956203 | 7.3652 | $7.04 | |
| POL | <0.01% | $103.18 | 0.0674 | $6.95 | |
| POL | <0.01% | $0.99981 | 6.8538 | $6.85 | |
| POL | <0.01% | $0.99791 | 5.149 | $5.14 | |
| POL | <0.01% | $0.008999 | 470.7073 | $4.24 | |
| POL | <0.01% | $3.58 | 1.151 | $4.12 | |
| POL | <0.01% | $0.00001 | 371,035.1904 | $3.74 | |
| POL | <0.01% | $0.00 | 0.0306 | $0.00 | |
| POL | <0.01% | $2.08 | 1.6156 | $3.36 | |
| POL | <0.01% | $1.18 | 2.7608 | $3.26 | |
| POL | <0.01% | $1.18 | 2.7608 | $3.26 | |
| POL | <0.01% | $0.788627 | 4.0804 | $3.22 | |
| POL | <0.01% | $0.010775 | 251.8196 | $2.71 | |
| POL | <0.01% | $0.000518 | 5,088.3274 | $2.64 | |
| POL | <0.01% | $0.9844 | 2.527 | $2.49 | |
| POL | <0.01% | $0.402228 | 5.6836 | $2.29 | |
| POL | <0.01% | $0.011993 | 183.4957 | $2.2 | |
| POL | <0.01% | $0.109309 | 19.1092 | $2.09 | |
| POL | <0.01% | $0.79987 | 2.5005 | $2 | |
| POL | <0.01% | $0.23449 | 8.5268 | $2 | |
| POL | <0.01% | $0.040455 | 48.3873 | $1.96 | |
| POL | <0.01% | $4,545.39 | 0.00041394 | $1.88 | |
| POL | <0.01% | $0.999617 | 1.8334 | $1.83 | |
| POL | <0.01% | $0.053404 | 33.7017 | $1.8 | |
| POL | <0.01% | $0.191897 | 9.2122 | $1.77 | |
| POL | <0.01% | $1.27 | 1.39 | $1.77 | |
| POL | <0.01% | $0.009499 | 172.7727 | $1.64 | |
| POL | <0.01% | $0.107492 | 14.8731 | $1.6 | |
| POL | <0.01% | $1.24 | 1.1677 | $1.45 | |
| POL | <0.01% | <$0.000001 | 10,073,242.6591 | $1.43 | |
| POL | <0.01% | $17.78 | 0.0797 | $1.42 | |
| POL | <0.01% | $0.027114 | 51.3719 | $1.39 | |
| POL | <0.01% | $0.450747 | 2.6564 | $1.2 | |
| POL | <0.01% | $1,974.58 | 0.00059476 | $1.17 | |
| POL | <0.01% | $0.000024 | 46,727.3088 | $1.14 | |
| POL | <0.01% | $0.027405 | 38.8917 | $1.07 | |
| POL | <0.01% | $147.83 | 0.00708642 | $1.05 | |
| POL | <0.01% | $1,526.62 | 0.00067531 | $1.03 | |
| POL | <0.01% | $0.006417 | 157.6321 | $1.01 | |
| POL | <0.01% | $0.997729 | 0.9809 | $0.9786 | |
| POL | <0.01% | $1.44 | 0.645 | $0.9287 | |
| POL | <0.01% | $0.165502 | 5.5465 | $0.9179 | |
| POL | <0.01% | $0.111737 | 8.0284 | $0.897 | |
| POL | <0.01% | $0.006995 | 123.0349 | $0.8606 | |
| POL | <0.01% | $0.999831 | 0.8289 | $0.8287 | |
| POL | <0.01% | $0.138447 | 5.9362 | $0.8218 | |
| POL | <0.01% | $118.57 | 0.00688331 | $0.8161 | |
| POL | <0.01% | $0.193144 | 4.0853 | $0.789 | |
| POL | <0.01% | $0.000263 | 2,933.2226 | $0.7712 | |
| POL | <0.01% | $0.00001 | 76,051.0732 | $0.769 | |
| POL | <0.01% | $0.123909 | 5.9193 | $0.7334 | |
| POL | <0.01% | $0.000671 | 1,037.3142 | $0.6958 | |
| POL | <0.01% | $0.024025 | 28.0681 | $0.6743 | |
| POL | <0.01% | $2,314.06 | 0.00026674 | $0.6172 | |
| POL | <0.01% | $0.007165 | 82.1003 | $0.5882 | |
| POL | <0.01% | $0.03682 | 15.9069 | $0.5856 | |
| POL | <0.01% | $0.999974 | 0.5524 | $0.5523 | |
| POL | <0.01% | $0.0084 | 64.2118 | $0.5393 | |
| POL | <0.01% | $1.76 | 0.2966 | $0.522 | |
| POL | <0.01% | $0.009988 | 52.2014 | $0.5213 | |
| POL | <0.01% | $0.000006 | 82,174.819 | $0.5078 | |
| POL | <0.01% | $0.282597 | 1.7779 | $0.5024 | |
| POL | <0.01% | $0.001068 | 445.5109 | $0.4757 | |
| POL | <0.01% | $0.999759 | 0.4508 | $0.4506 | |
| POL | <0.01% | $0.00159 | 275.5254 | $0.4381 | |
| POL | <0.01% | $0.99981 | 0.4369 | $0.4368 | |
| POL | <0.01% | $0.199402 | 2.0886 | $0.4164 | |
| POL | <0.01% | $0.055128 | 7.4739 | $0.412 | |
| POL | <0.01% | $0.000328 | 1,256.1762 | $0.4117 | |
| POL | <0.01% | $0.142511 | 2.8296 | $0.4032 | |
| POL | <0.01% | $1 | 0.4016 | $0.4023 | |
| POL | <0.01% | $0.078157 | 5.059 | $0.3953 | |
| POL | <0.01% | $0.032238 | 12.1163 | $0.3906 | |
| POL | <0.01% | $0.227865 | 1.6938 | $0.3859 | |
| POL | <0.01% | $0.098774 | 3.5526 | $0.3509 | |
| POL | <0.01% | $1,975.54 | 0.00017634 | $0.3483 | |
| POL | <0.01% | $6.36 | 0.0541 | $0.344 | |
| POL | <0.01% | $0.15759 | 2.1279 | $0.3353 | |
| POL | <0.01% | $0.107156 | 3.0865 | $0.3307 | |
| POL | <0.01% | $0.006909 | 47.7111 | $0.3296 | |
| POL | <0.01% | $0.000109 | 3,010.358 | $0.3267 | |
| POL | <0.01% | $45.53 | 0.0071366 | $0.3249 | |
| POL | <0.01% | $0.048724 | 6.585 | $0.3208 | |
| POL | <0.01% | $0.008638 | 36.1038 | $0.3118 | |
| POL | <0.01% | $0.004749 | 65.4857 | $0.311 | |
| POL | <0.01% | $0.172753 | 1.7952 | $0.3101 | |
| POL | <0.01% | $0.002809 | 106.8274 | $0.3001 | |
| POL | <0.01% | <$0.000001 | 5,851,703.3948 | $0.2996 | |
| POL | <0.01% | $0.002393 | 124.8537 | $0.2988 | |
| POL | <0.01% | $0.109063 | 2.6332 | $0.2871 | |
| POL | <0.01% | $0.027808 | 10.0242 | $0.2787 | |
| POL | <0.01% | $0.000001 | 272,292.1289 | $0.2635 | |
| POL | <0.01% | $16.96 | 0.0151 | $0.2563 | |
| POL | <0.01% | $0.148093 | 1.6086 | $0.2382 | |
| POL | <0.01% | $0.094747 | 2.4598 | $0.233 | |
| POL | <0.01% | $0.011683 | 19.7298 | $0.2304 | |
| POL | <0.01% | $71,100 | 0.00000317 | $0.2254 | |
| POL | <0.01% | $0.095875 | 2.2715 | $0.2177 | |
| POL | <0.01% | $0.032569 | 6.5929 | $0.2147 | |
| POL | <0.01% | $0.004278 | 49.6642 | $0.2124 | |
| POL | <0.01% | $0.152349 | 1.3694 | $0.2086 | |
| POL | <0.01% | $0.000273 | 745.2088 | $0.2032 | |
| POL | <0.01% | $0.000006 | 30,528.6332 | $0.192 | |
| POL | <0.01% | $0.021359 | 8.9688 | $0.1915 | |
| POL | <0.01% | $0.000008 | 22,869.2921 | $0.1909 | |
| POL | <0.01% | $0.000455 | 396.8293 | $0.1807 | |
| POL | <0.01% | $0.092782 | 1.9226 | $0.1783 | |
| POL | <0.01% | $0.000155 | 1,124.5533 | $0.1743 | |
| POL | <0.01% | $0.057758 | 2.9909 | $0.1727 | |
| POL | <0.01% | $0.557686 | 0.3098 | $0.1727 | |
| POL | <0.01% | $0.872195 | 0.1959 | $0.1708 | |
| POL | <0.01% | $0.000556 | 304.6598 | $0.1693 | |
| POL | <0.01% | $0.016054 | 10.4185 | $0.1672 | |
| POL | <0.01% | $0.000074 | 2,201.4312 | $0.163 | |
| POL | <0.01% | $0.001115 | 143.7004 | $0.1602 | |
| POL | <0.01% | $0.000034 | 4,668.9048 | $0.1579 | |
| POL | <0.01% | $0.001843 | 84.5058 | $0.1557 | |
| POL | <0.01% | $0.00 | 28.9735 | $0.00 | |
| POL | <0.01% | $9.05 | 0.015 | $0.1353 | |
| POL | <0.01% | $3.38 | 0.0399 | $0.1349 | |
| POL | <0.01% | $0.162511 | 0.8269 | $0.1343 | |
| POL | <0.01% | $0.152465 | 0.8487 | $0.1294 | |
| POL | <0.01% | $0.000028 | 4,555.3497 | $0.1254 | |
| POL | <0.01% | $0.005028 | 24.8125 | $0.1247 | |
| POL | <0.01% | $0.00004 | 3,111.6958 | $0.1236 | |
| POL | <0.01% | $0.001072 | 114.0083 | $0.1221 | |
| POL | <0.01% | $0.00 | 84.8339 | $0.00 | |
| POL | <0.01% | $0.000364 | 332.0365 | $0.1209 | |
| POL | <0.01% | $0.000315 | 379.9847 | $0.1197 | |
| POL | <0.01% | $0.000119 | 977.3567 | $0.1165 | |
| POL | <0.01% | $0.00084 | 124.5136 | $0.1046 | |
| POL | <0.01% | $0.322028 | 0.3228 | $0.1039 | |
| POL | <0.01% | $0.092364 | 1.1052 | $0.102 | |
| POL | <0.01% | $0.155148 | 0.6561 | $0.1017 | |
| OP | 0.13% | $0.999906 | 974.5334 | $974.44 | |
| OP | 0.04% | $1,970.96 | 0.1417 | $279.25 | |
| OP | 0.03% | $76,114 | 0.00282695 | $215.17 | |
| OP | 0.03% | $2,263.38 | 0.0903 | $204.33 | |
| OP | 0.02% | $0.999625 | 122.2036 | $122.16 | |
| OP | 0.01% | $0.853435 | 109.1266 | $93.13 | |
| OP | <0.01% | $0.999906 | 71.4736 | $71.47 | |
| OP | <0.01% | $71,128 | 0.00089345 | $63.55 | |
| OP | <0.01% | $1.34 | 39.0969 | $52.39 | |
| OP | <0.01% | $0.014985 | 3,464.5203 | $51.92 | |
| OP | <0.01% | $2,773.1 | 0.0104 | $28.76 | |
| OP | <0.01% | $0.125326 | 124.9601 | $15.66 | |
| OP | <0.01% | $0.403637 | 35.1451 | $14.19 | |
| OP | <0.01% | $1.01 | 13.5098 | $13.58 | |
| OP | <0.01% | $2,314.06 | 0.00340619 | $7.88 | |
| OP | <0.01% | $0.999639 | 7.0309 | $7.03 | |
| OP | <0.01% | $121.58 | 0.0413 | $5.02 | |
| OP | <0.01% | $119.26 | 0.0384 | $4.58 | |
| OP | <0.01% | $0.382506 | 9.7949 | $3.75 | |
| OP | <0.01% | $8.85 | 0.316 | $2.8 | |
| OP | <0.01% | $0.019594 | 88.4015 | $1.73 | |
| OP | <0.01% | $1,810.99 | 0.00087696 | $1.59 | |
| OP | <0.01% | $0.152179 | 7.8815 | $1.2 | |
| OP | <0.01% | $0.99981 | 1.0912 | $1.09 | |
| OP | <0.01% | $0.99791 | 0.9385 | $0.9365 | |
| OP | <0.01% | $0.00 | 0.00035519 | $0.00 | |
| OP | <0.01% | $1.76 | 0.4722 | $0.831 | |
| OP | <0.01% | $2,627.86 | 0.0002802 | $0.7363 | |
| OP | <0.01% | $3.57 | 0.1932 | $0.6898 | |
| OP | <0.01% | $0.075916 | 8.7081 | $0.661 | |
| OP | <0.01% | $0.135552 | 4.3186 | $0.5854 | |
| OP | <0.01% | $0.999739 | 0.5534 | $0.5532 | |
| OP | <0.01% | $1 | 0.403 | $0.4041 | |
| OP | <0.01% | $0.00 | 5,525.5703 | $0.00 | |
| OP | <0.01% | $0.960534 | 0.3707 | $0.3561 | |
| OP | <0.01% | $0.007321 | 48.0176 | $0.3515 | |
| OP | <0.01% | $0.149637 | 2.3159 | $0.3465 | |
| OP | <0.01% | $6.95 | 0.0491 | $0.3414 | |
| OP | <0.01% | $0.00 | 0.2808 | $0.00 | |
| OP | <0.01% | $1.2 | 0.174 | $0.2088 | |
| OP | <0.01% | $2,188.23 | 0.00009333 | $0.2042 | |
| OP | <0.01% | $0.997819 | 0.2017 | $0.2012 | |
| OP | <0.01% | $103.18 | 0.00180054 | $0.1857 | |
| OP | <0.01% | $1,974.58 | 0.00008403 | $0.1659 | |
| OP | <0.01% | $0.014985 | 10.4355 | $0.1563 | |
| OP | <0.01% | $8.06 | 0.0194 | $0.1561 | |
| OP | <0.01% | $0.035294 | 3.8993 | $0.1376 | |
| OP | <0.01% | $0.004146 | 31.7264 | $0.1315 | |
| OP | <0.01% | $0.000714 | 164.0278 | $0.1171 | |
| OP | <0.01% | $0.052475 | 2.1686 | $0.1137 | |
| OP | <0.01% | $0.031809 | 3.4 | $0.1081 | |
| UNI | 0.10% | $0.999998 | 777.5999 | $777.6 | |
| UNI | 0.05% | $1,970.81 | 0.1711 | $337.18 | |
| UNI | 0.05% | $0.998295 | 336.1466 | $335.57 | |
| UNI | 0.03% | $2,263.48 | 0.1018 | $230.39 | |
| UNI | <0.01% | $67,828.55 | 0.00081577 | $55.33 | |
| UNI | <0.01% | $32.94 | 1.1836 | $38.99 | |
| UNI | <0.01% | $99.2 | 0.1125 | $11.16 | |
| UNI | <0.01% | $3.58 | 1.274 | $4.56 | |
| UNI | <0.01% | $0.00003 | 38,445.711 | $1.15 | |
| GNO | 0.05% | $2,258.88 | 0.1631 | $368.39 | |
| GNO | 0.03% | $120.07 | 1.828 | $219.49 | |
| GNO | 0.02% | $0.999892 | 168.4816 | $168.46 | |
| GNO | 0.02% | $1.18 | 138.519 | $163.45 | |
| GNO | 0.02% | $1.18 | 138.519 | $163.45 | |
| GNO | 0.02% | $0.999905 | 163.1351 | $163.12 | |
| GNO | 0.01% | $0.999892 | 102.6481 | $102.64 | |
| GNO | 0.01% | $0.209806 | 469.5667 | $98.52 | |
| GNO | <0.01% | $0.106898 | 184.5095 | $19.72 | |
| GNO | <0.01% | $2,767.96 | 0.00635058 | $17.58 | |
| GNO | <0.01% | $0.999905 | 16.6481 | $16.65 | |
| GNO | <0.01% | $1.22 | 13.5552 | $16.54 | |
| GNO | <0.01% | $0.999552 | 10.413 | $10.41 | |
| GNO | <0.01% | $0.999617 | 5.2871 | $5.29 | |
| GNO | <0.01% | $0.040458 | 97.6475 | $3.95 | |
| GNO | <0.01% | $76,177 | 0.00004957 | $3.78 | |
| GNO | <0.01% | $424.64 | 0.00649368 | $2.76 | |
| GNO | <0.01% | $8.85 | 0.2255 | $2 | |
| GNO | <0.01% | $1.29 | 1.068 | $1.38 | |
| GNO | <0.01% | $0.000609 | 1,788.7358 | $1.09 | |
| GNO | <0.01% | $0.999674 | 1.0763 | $1.08 | |
| GNO | <0.01% | $738.36 | 0.00143038 | $1.06 | |
| GNO | <0.01% | $0.192277 | 5.3794 | $1.03 | |
| GNO | <0.01% | $0.99981 | 0.7541 | $0.7539 | |
| GNO | <0.01% | $0.992463 | 0.5518 | $0.5476 | |
| GNO | <0.01% | $1,974.58 | 0.00021641 | $0.4273 | |
| GNO | <0.01% | $1.18 | 0.2198 | $0.2593 | |
| GNO | <0.01% | $0.998159 | 0.2433 | $0.2428 | |
| GNO | <0.01% | $0.14809 | 1.552 | $0.2298 | |
| GNO | <0.01% | $2,314.06 | 0.00007109 | $0.1645 | |
| SONIC | <0.01% | $0.800662 | 26.274 | $21.04 | |
| SONIC | <0.01% | $0.999906 | 13.8309 | $13.83 | |
| SONIC | <0.01% | $0.001206 | 9,402.9424 | $11.34 | |
| SONIC | <0.01% | $0.053892 | 205.196 | $11.06 | |
| SONIC | <0.01% | $0.999625 | 3.8477 | $3.85 | |
| SONIC | <0.01% | $2,263.38 | 0.00095786 | $2.17 | |
| SONIC | <0.01% | $0.999694 | 1.3998 | $1.4 | |
| SONIC | <0.01% | $0.051182 | 21.8972 | $1.12 | |
| SONIC | <0.01% | $0.042018 | 21.3148 | $0.895615 | |
| SONIC | <0.01% | $0.005845 | 144.504 | $0.8445 | |
| PLASMA | <0.01% | $0.094231 | 0.068 | $0.00641 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.