ETH Price: $2,152.00 (-0.12%)
Gas: 0.03 Gwei

Contract

0x75dB17E2A64DBae13c51ecc6D4E5cEe86a72F00d
 

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
Open Trading177171012023-07-18 2:19:23977 days ago1689646763IN
0x75dB17E2...86a72F00d
0 ETH0.000603813.86244085
Approve177170922023-07-18 2:17:35977 days ago1689646655IN
0x75dB17E2...86a72F00d
0 ETH0.0005869712.71745121

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
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:
x1000

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license
/**
 *Submitted for verification at Etherscan.io on 2023-07-18
*/

/**

Welcome to x1000 | ETHEREUM 🛰

WEBSITE: https://x1000eth.com/

TWITTER: https://twitter.com/x1000eth

TG: https://t.me/x1000eth

*/

// SPDX-License-Identifier: unlicense

pragma solidity ^0.8.17;

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);

}
interface IUniswapV2Router02 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}
 
contract x1000 {
    string public constant name = "x1000";  //
    string public constant symbol = unicode"x1000";  //
    uint8 public constant decimals = 9;
    uint256 public constant totalSupply = 1_000_000 * 10**decimals;

    uint256 constant buyTax = 0;
    uint256 constant sellTax = 1;
    uint256 constant swapAmount = totalSupply / 100;

    mapping (address => uint256) public balanceOf;
    mapping (address => mapping (address => uint256)) public allowance;
    
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );

    address immutable pair;
    address constant ETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
    address constant routerAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    IUniswapV2Router02 constant _uniswapV2Router = IUniswapV2Router02(routerAddress);
    address payable constant deployer = payable(address(0x3987601D47046D4520d38838D65e6928204768C9)); // 

    bool private swapping;
    bool private tradingOpen;

    constructor() {
        pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), ETH);
        balanceOf[msg.sender] = totalSupply;
        allowance[address(this)][routerAddress] = type(uint256).max;
        emit Transfer(address(0), msg.sender, totalSupply);
    }

    receive() external payable {}

    function approve(address spender, uint256 amount) external returns (bool){
        allowance[msg.sender][spender] = amount;
        emit Approval(msg.sender, spender, amount);
        return true;
    }

    function transfer(address to, uint256 amount) external returns (bool){
        return _transfer(msg.sender, to, amount);
    }

    function transferFrom(address from, address to, uint256 amount) external returns (bool){
        allowance[from][msg.sender] -= amount;        
        return _transfer(from, to, amount);
    }

    function _transfer(address from, address to, uint256 amount) internal returns (bool){
        require(tradingOpen || from == deployer || to == deployer);

        balanceOf[from] -= amount;

        if (to == pair && !swapping && balanceOf[address(this)] >= swapAmount){
            swapping = true;
            address[] memory path = new  address[](2);
            path[0] = address(this);
            path[1] = ETH;
            _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
                swapAmount,
                0,
                path,
                address(this),
                block.timestamp
            );
            deployer.transfer(address(this).balance);
            swapping = false;
        }

        if(from != address(this)){
            uint256 taxAmount = amount * (from == pair ? buyTax : sellTax) / 100;
            amount -= taxAmount;
            balanceOf[address(this)] += taxAmount;
        }
        balanceOf[to] += amount;
        emit Transfer(from, to, amount);
        return true;
    }

    function openTrading() external {
        require(!tradingOpen);
        require(msg.sender == deployer);
        tradingOpen = true;        
    }
}

Contract Security Audit

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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","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":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","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":"to","type":"address"},{"internalType":"uint256","name":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040523480156200001157600080fd5b50737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000065573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200008b9190620001d2565b6040516364e329cb60e11b815230600482015273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc260248201526001600160a01b03919091169063c9c65396906044016020604051808303816000875af1158015620000ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001149190620001d2565b6001600160a01b03166080526200012e6009600a62000319565b6200013d90620f42406200032a565b336000818152602081815260408083209490945530825260018152838220737a250d5630b4cf539739df2c5dacb4c659f2488d835290529182206000199055907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620001ac6009600a62000319565b620001bb90620f42406200032a565b60405190815260200160405180910390a362000344565b600060208284031215620001e557600080fd5b81516001600160a01b0381168114620001fd57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200025b5781600019048211156200023f576200023f62000204565b808516156200024d57918102915b93841c93908002906200021f565b509250929050565b600082620002745750600162000313565b81620002835750600062000313565b81600181146200029c5760028114620002a757620002c7565b600191505062000313565b60ff841115620002bb57620002bb62000204565b50506001821b62000313565b5060208310610133831016604e8410600b8410161715620002ec575081810a62000313565b620002f883836200021a565b80600019048211156200030f576200030f62000204565b0290505b92915050565b6000620001fd60ff84168362000263565b808202811582820484141762000313576200031362000204565b608051610a5c62000367600039600081816103e501526106070152610a5c6000f3fe6080604052600436106100955760003560e01c806370a082311161005957806370a082311461018257806395d89b41146100a1578063a9059cbb146101af578063c9567bf9146101cf578063dd62ed3e146101e657600080fd5b806306fdde03146100a1578063095ea7b3146100e857806318160ddd1461011857806323b872dd1461013b578063313ce5671461015b57600080fd5b3661009c57005b600080fd5b3480156100ad57600080fd5b506100d260405180604001604052806005815260200164078313030360dc1b81525081565b6040516100df9190610719565b60405180910390f35b3480156100f457600080fd5b50610108610103366004610783565b61021e565b60405190151581526020016100df565b34801561012457600080fd5b5061012d61028b565b6040519081526020016100df565b34801561014757600080fd5b506101086101563660046107ad565b6102a7565b34801561016757600080fd5b50610170600981565b60405160ff90911681526020016100df565b34801561018e57600080fd5b5061012d61019d3660046107e9565b60006020819052908152604090205481565b3480156101bb57600080fd5b506101086101ca366004610783565b6102f5565b3480156101db57600080fd5b506101e4610309565b005b3480156101f257600080fd5b5061012d610201366004610804565b600160209081526000928352604080842090915290825290205481565b3360008181526001602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906102799086815260200190565b60405180910390a35060015b92915050565b6102976009600a610931565b6102a490620f4240610940565b81565b6001600160a01b03831660009081526001602090815260408083203384529091528120805483919083906102dc908490610957565b909155506102ed905084848461034f565b949350505050565b600061030233848461034f565b9392505050565b600254610100900460ff161561031e57600080fd5b33733987601d47046d4520d38838d65e6928204768c91461033e57600080fd5b6002805461ff001916610100179055565b600254600090610100900460ff168061038457506001600160a01b038416733987601d47046d4520d38838d65e6928204768c9145b806103ab57506001600160a01b038316733987601d47046d4520d38838d65e6928204768c9145b6103b457600080fd5b6001600160a01b038416600090815260208190526040812080548492906103dc908490610957565b925050819055507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148015610427575060025460ff16155b80156104665750606461043c6009600a610931565b61044990620f4240610940565b610453919061096a565b3060009081526020819052604090205410155b156105f1576002805460ff1916600117815560408051828152606081018252600092909160208301908036833701905050905030816000815181106104ad576104ad61098c565b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2816001815181106104f5576104f561098c565b6001600160a01b0390921660209283029190910190910152737a250d5630b4cf539739df2c5dacb4c659f2488d63791ac94760646105356009600a610931565b61054290620f4240610940565b61054c919061096a565b60008430426040518663ffffffff1660e01b81526004016105719594939291906109a2565b600060405180830381600087803b15801561058b57600080fd5b505af115801561059f573d6000803e3d6000fd5b5050604051733987601d47046d4520d38838d65e6928204768c992504780156108fc029250906000818181858888f193505050501580156105e4573d6000803e3d6000fd5b50506002805460ff191690555b6001600160a01b038416301461069357600060647f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b031614610645576001610648565b60005b6106529085610940565b61065c919061096a565b90506106688184610957565b3060009081526020819052604081208054929550839290919061068c908490610a13565b9091555050505b6001600160a01b038316600090815260208190526040812080548492906106bb908490610a13565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161070791815260200190565b60405180910390a35060019392505050565b600060208083528351808285015260005b818110156107465785810183015185820160400152820161072a565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461077e57600080fd5b919050565b6000806040838503121561079657600080fd5b61079f83610767565b946020939093013593505050565b6000806000606084860312156107c257600080fd5b6107cb84610767565b92506107d960208501610767565b9150604084013590509250925092565b6000602082840312156107fb57600080fd5b61030282610767565b6000806040838503121561081757600080fd5b61082083610767565b915061082e60208401610767565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111561088857816000190482111561086e5761086e610837565b8085161561087b57918102915b93841c9390800290610852565b509250929050565b60008261089f57506001610285565b816108ac57506000610285565b81600181146108c257600281146108cc576108e8565b6001915050610285565b60ff8411156108dd576108dd610837565b50506001821b610285565b5060208310610133831016604e8410600b841016171561090b575081810a610285565b610915838361084d565b806000190482111561092957610929610837565b029392505050565b600061030260ff841683610890565b808202811582820484141761028557610285610837565b8181038181111561028557610285610837565b60008261098757634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156109f25784516001600160a01b0316835293830193918301916001016109cd565b50506001600160a01b03969096166060850152505050608001529392505050565b808201808211156102855761028561083756fea2646970667358221220ae42184c6dc93b490ef1a0589f6d4a2c264105584c416e719e57d20656780f0a64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106100955760003560e01c806370a082311161005957806370a082311461018257806395d89b41146100a1578063a9059cbb146101af578063c9567bf9146101cf578063dd62ed3e146101e657600080fd5b806306fdde03146100a1578063095ea7b3146100e857806318160ddd1461011857806323b872dd1461013b578063313ce5671461015b57600080fd5b3661009c57005b600080fd5b3480156100ad57600080fd5b506100d260405180604001604052806005815260200164078313030360dc1b81525081565b6040516100df9190610719565b60405180910390f35b3480156100f457600080fd5b50610108610103366004610783565b61021e565b60405190151581526020016100df565b34801561012457600080fd5b5061012d61028b565b6040519081526020016100df565b34801561014757600080fd5b506101086101563660046107ad565b6102a7565b34801561016757600080fd5b50610170600981565b60405160ff90911681526020016100df565b34801561018e57600080fd5b5061012d61019d3660046107e9565b60006020819052908152604090205481565b3480156101bb57600080fd5b506101086101ca366004610783565b6102f5565b3480156101db57600080fd5b506101e4610309565b005b3480156101f257600080fd5b5061012d610201366004610804565b600160209081526000928352604080842090915290825290205481565b3360008181526001602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906102799086815260200190565b60405180910390a35060015b92915050565b6102976009600a610931565b6102a490620f4240610940565b81565b6001600160a01b03831660009081526001602090815260408083203384529091528120805483919083906102dc908490610957565b909155506102ed905084848461034f565b949350505050565b600061030233848461034f565b9392505050565b600254610100900460ff161561031e57600080fd5b33733987601d47046d4520d38838d65e6928204768c91461033e57600080fd5b6002805461ff001916610100179055565b600254600090610100900460ff168061038457506001600160a01b038416733987601d47046d4520d38838d65e6928204768c9145b806103ab57506001600160a01b038316733987601d47046d4520d38838d65e6928204768c9145b6103b457600080fd5b6001600160a01b038416600090815260208190526040812080548492906103dc908490610957565b925050819055507f0000000000000000000000004c4f2a8da0e049ed94f0d227ad49e86e85a28f6a6001600160a01b0316836001600160a01b0316148015610427575060025460ff16155b80156104665750606461043c6009600a610931565b61044990620f4240610940565b610453919061096a565b3060009081526020819052604090205410155b156105f1576002805460ff1916600117815560408051828152606081018252600092909160208301908036833701905050905030816000815181106104ad576104ad61098c565b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2816001815181106104f5576104f561098c565b6001600160a01b0390921660209283029190910190910152737a250d5630b4cf539739df2c5dacb4c659f2488d63791ac94760646105356009600a610931565b61054290620f4240610940565b61054c919061096a565b60008430426040518663ffffffff1660e01b81526004016105719594939291906109a2565b600060405180830381600087803b15801561058b57600080fd5b505af115801561059f573d6000803e3d6000fd5b5050604051733987601d47046d4520d38838d65e6928204768c992504780156108fc029250906000818181858888f193505050501580156105e4573d6000803e3d6000fd5b50506002805460ff191690555b6001600160a01b038416301461069357600060647f0000000000000000000000004c4f2a8da0e049ed94f0d227ad49e86e85a28f6a6001600160a01b0316866001600160a01b031614610645576001610648565b60005b6106529085610940565b61065c919061096a565b90506106688184610957565b3060009081526020819052604081208054929550839290919061068c908490610a13565b9091555050505b6001600160a01b038316600090815260208190526040812080548492906106bb908490610a13565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161070791815260200190565b60405180910390a35060019392505050565b600060208083528351808285015260005b818110156107465785810183015185820160400152820161072a565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461077e57600080fd5b919050565b6000806040838503121561079657600080fd5b61079f83610767565b946020939093013593505050565b6000806000606084860312156107c257600080fd5b6107cb84610767565b92506107d960208501610767565b9150604084013590509250925092565b6000602082840312156107fb57600080fd5b61030282610767565b6000806040838503121561081757600080fd5b61082083610767565b915061082e60208401610767565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111561088857816000190482111561086e5761086e610837565b8085161561087b57918102915b93841c9390800290610852565b509250929050565b60008261089f57506001610285565b816108ac57506000610285565b81600181146108c257600281146108cc576108e8565b6001915050610285565b60ff8411156108dd576108dd610837565b50506001821b610285565b5060208310610133831016604e8410600b841016171561090b575081810a610285565b610915838361084d565b806000190482111561092957610929610837565b029392505050565b600061030260ff841683610890565b808202811582820484141761028557610285610837565b8181038181111561028557610285610837565b60008261098757634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156109f25784516001600160a01b0316835293830193918301916001016109cd565b50506001600160a01b03969096166060850152505050608001529392505050565b808201808211156102855761028561083756fea2646970667358221220ae42184c6dc93b490ef1a0589f6d4a2c264105584c416e719e57d20656780f0a64736f6c63430008110033

Deployed Bytecode Sourcemap

728:3283:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;750:37;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;750:37:0;;;;;;;;;;;;:::i;:::-;;;;;;;;2213:206;;;;;;;;;;-1:-1:-1;2213:206:0;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;2213:206:0;1004:187:1;896:62:0;;;;;;;;;;;;;:::i;:::-;;;1342:25:1;;;1330:2;1315:18;896:62:0;1196:177:1;2563:196:0;;;;;;;;;;-1:-1:-1;2563:196:0;;;;;:::i;:::-;;:::i;855:34::-;;;;;;;;;;;;888:1;855:34;;;;;1883:4:1;1871:17;;;1853:36;;1841:2;1826:18;855:34:0;1711:184:1;1092:45:0;;;;;;;;;;-1:-1:-1;1092:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;2427:128;;;;;;;;;;-1:-1:-1;2427:128:0;;;;;:::i;:::-;;:::i;3857:151::-;;;;;;;;;;;;;:::i;:::-;;1144:66;;;;;;;;;;-1:-1:-1;1144:66:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;2213:206;2307:10;2281:4;2297:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;2297:30:0;;;;;;;;;;:39;;;2352:37;2281:4;;2297:30;;2352:37;;;;2330:6;1342:25:1;;1330:2;1315:18;;1196:177;2352:37:0;;;;;;;;-1:-1:-1;2407:4:0;2213:206;;;;;:::o;896:62::-;946:12;888:1;946:2;:12;:::i;:::-;934:24;;:9;:24;:::i;:::-;896:62;:::o;2563:196::-;-1:-1:-1;;;;;2661:15:0;;2645:4;2661:15;;;:9;:15;;;;;;;;2677:10;2661:27;;;;;;;:37;;2692:6;;2661:27;2645:4;;2661:37;;2692:6;;2661:37;:::i;:::-;;;;-1:-1:-1;2724:27:0;;-1:-1:-1;2734:4:0;2740:2;2744:6;2724:9;:27::i;:::-;2717:34;2563:196;-1:-1:-1;;;;2563:196:0:o;2427:128::-;2491:4;2514:33;2524:10;2536:2;2540:6;2514:9;:33::i;:::-;2507:40;2427:128;-1:-1:-1;;;2427:128:0:o;3857:151::-;3909:11;;;;;;;3908:12;3900:21;;;;;;3940:10;1743:42;3940:22;3932:31;;;;;;3974:11;:18;;-1:-1:-1;;3974:18:0;;;;;3857:151::o;2767:1082::-;2870:11;;2846:4;;2870:11;;;;;;:31;;-1:-1:-1;;;;;;2885:16:0;;1743:42;2885:16;2870:31;:49;;;-1:-1:-1;;;;;;2905:14:0;;1743:42;2905:14;2870:49;2862:58;;;;;;-1:-1:-1;;;;;2933:15:0;;:9;:15;;;;;;;;;;:25;;2952:6;;2933:9;:25;;2952:6;;2933:25;:::i;:::-;;;;;;;;2981:4;-1:-1:-1;;;;;2975:10:0;:2;-1:-1:-1;;;;;2975:10:0;;:23;;;;-1:-1:-1;2990:8:0;;;;2989:9;2975:23;:65;;;;-1:-1:-1;1080:3:0;946:12;888:1;946:2;:12;:::i;:::-;934:24;;:9;:24;:::i;:::-;1066:17;;;;:::i;:::-;3020:4;3002:9;:24;;;;;;;;;;;:38;;2975:65;2971:555;;;3056:8;:15;;-1:-1:-1;;3056:15:0;3067:4;3056:15;;;3110:17;;;;;;;;;;;-1:-1:-1;;3110:17:0;;;;;;;;;;;;-1:-1:-1;3110:17:0;3086:41;;3160:4;3142;3147:1;3142:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;3142:23:0;;;-1:-1:-1;;;;;3142:23:0;;;;;1473:42;3180:4;3185:1;3180:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;3180:13:0;;;:7;;;;;;;;;;;:13;1555:42;3208:67;1080:3;946:12;888:1;946:2;:12;:::i;:::-;934:24;;:9;:24;:::i;:::-;1066:17;;;;:::i;:::-;3323:1;3343:4;3374;3398:15;3208:220;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3443:40:0;;1743:42;;-1:-1:-1;3461:21:0;3443:40;;;;;-1:-1:-1;3461:21:0;3443:40;;;;3461:21;1743:42;3443:40;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3498:8:0;:16;;-1:-1:-1;;3498:16:0;;;2971:555;-1:-1:-1;;;;;3541:21:0;;3557:4;3541:21;3538:206;;3578:17;3643:3;3616:4;-1:-1:-1;;;;;3608:12:0;:4;-1:-1:-1;;;;;3608:12:0;;:31;;1028:1;3608:31;;;993:1;3608:31;3598:42;;:6;:42;:::i;:::-;:48;;;;:::i;:::-;3578:68;-1:-1:-1;3661:19:0;3578:68;3661:19;;:::i;:::-;3713:4;3695:9;:24;;;;;;;;;;:37;;3661:19;;-1:-1:-1;3723:9:0;;3695:24;;:9;:37;;3723:9;;3695:37;:::i;:::-;;;;-1:-1:-1;;;3538:206:0;-1:-1:-1;;;;;3754:13:0;;:9;:13;;;;;;;;;;:23;;3771:6;;3754:9;:23;;3771:6;;3754:23;:::i;:::-;;;;;;;;3808:2;-1:-1:-1;;;;;3793:26:0;3802:4;-1:-1:-1;;;;;3793:26:0;;3812:6;3793:26;;;;1342:25:1;;1330:2;1315:18;;1196:177;3793:26:0;;;;;;;;-1:-1:-1;3837:4:0;2767:1082;;;;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:186::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2051:29;2070:9;2051:29;:::i;2091:260::-;2159:6;2167;2220:2;2208:9;2199:7;2195:23;2191:32;2188:52;;;2236:1;2233;2226:12;2188:52;2259:29;2278:9;2259:29;:::i;:::-;2249:39;;2307:38;2341:2;2330:9;2326:18;2307:38;:::i;:::-;2297:48;;2091:260;;;;;:::o;2356:127::-;2417:10;2412:3;2408:20;2405:1;2398:31;2448:4;2445:1;2438:15;2472:4;2469:1;2462:15;2488:422;2577:1;2620:5;2577:1;2634:270;2655:7;2645:8;2642:21;2634:270;;;2714:4;2710:1;2706:6;2702:17;2696:4;2693:27;2690:53;;;2723:18;;:::i;:::-;2773:7;2763:8;2759:22;2756:55;;;2793:16;;;;2756:55;2872:22;;;;2832:15;;;;2634:270;;;2638:3;2488:422;;;;;:::o;2915:806::-;2964:5;2994:8;2984:80;;-1:-1:-1;3035:1:1;3049:5;;2984:80;3083:4;3073:76;;-1:-1:-1;3120:1:1;3134:5;;3073:76;3165:4;3183:1;3178:59;;;;3251:1;3246:130;;;;3158:218;;3178:59;3208:1;3199:10;;3222:5;;;3246:130;3283:3;3273:8;3270:17;3267:43;;;3290:18;;:::i;:::-;-1:-1:-1;;3346:1:1;3332:16;;3361:5;;3158:218;;3460:2;3450:8;3447:16;3441:3;3435:4;3432:13;3428:36;3422:2;3412:8;3409:16;3404:2;3398:4;3395:12;3391:35;3388:77;3385:159;;;-1:-1:-1;3497:19:1;;;3529:5;;3385:159;3576:34;3601:8;3595:4;3576:34;:::i;:::-;3646:6;3642:1;3638:6;3634:19;3625:7;3622:32;3619:58;;;3657:18;;:::i;:::-;3695:20;;2915:806;-1:-1:-1;;;2915:806:1:o;3726:140::-;3784:5;3813:47;3854:4;3844:8;3840:19;3834:4;3813:47;:::i;3871:168::-;3944:9;;;3975;;3992:15;;;3986:22;;3972:37;3962:71;;4013:18;;:::i;4044:128::-;4111:9;;;4132:11;;;4129:37;;;4146:18;;:::i;4177:217::-;4217:1;4243;4233:132;;4287:10;4282:3;4278:20;4275:1;4268:31;4322:4;4319:1;4312:15;4350:4;4347:1;4340:15;4233:132;-1:-1:-1;4379:9:1;;4177:217::o;4531:127::-;4592:10;4587:3;4583:20;4580:1;4573:31;4623:4;4620:1;4613:15;4647:4;4644:1;4637:15;4663:980;4925:4;4973:3;4962:9;4958:19;5004:6;4993:9;4986:25;5030:2;5068:6;5063:2;5052:9;5048:18;5041:34;5111:3;5106:2;5095:9;5091:18;5084:31;5135:6;5170;5164:13;5201:6;5193;5186:22;5239:3;5228:9;5224:19;5217:26;;5278:2;5270:6;5266:15;5252:29;;5299:1;5309:195;5323:6;5320:1;5317:13;5309:195;;;5388:13;;-1:-1:-1;;;;;5384:39:1;5372:52;;5479:15;;;;5444:12;;;;5420:1;5338:9;5309:195;;;-1:-1:-1;;;;;;;5560:32:1;;;;5555:2;5540:18;;5533:60;-1:-1:-1;;;5624:3:1;5609:19;5602:35;5521:3;4663:980;-1:-1:-1;;;4663:980:1:o;5648:125::-;5713:9;;;5734:10;;;5731:36;;;5747:18;;:::i

Swarm Source

ipfs://ae42184c6dc93b490ef1a0589f6d4a2c264105584c416e719e57d20656780f0a

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

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