ETH Price: $2,361.18 (+0.89%)

Contract

0xC69E2B518DAB46707733c11De99A5166Ee95e9D7
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00
Transaction Hash
Method
Block
From
To
Approve188062942023-12-17 14:19:11270 days ago1702822751IN
0xC69E2B51...6Ee95e9D7
0 ETH0.0018595539.96639085
Transfer184689312023-10-31 8:30:35317 days ago1698741035IN
0xC69E2B51...6Ee95e9D7
0 ETH0.0009461320.21778421
Approve178943432023-08-11 21:31:35398 days ago1691789495IN
0xC69E2B51...6Ee95e9D7
0 ETH0.0008664218.59766557
Transfer177714542023-07-25 16:59:11415 days ago1690304351IN
0xC69E2B51...6Ee95e9D7
0 ETH0.0012550842.24580648
Approve177661792023-07-24 23:15:47415 days ago1690240547IN
0xC69E2B51...6Ee95e9D7
0 ETH0.0012999328.08358058
Approve177251022023-07-19 5:16:59421 days ago1689743819IN
0xC69E2B51...6Ee95e9D7
0 ETH0.0008959719.25659408
Transfer176940232023-07-14 20:18:47426 days ago1689365927IN
0xC69E2B51...6Ee95e9D7
0 ETH0.0010300319.97230812
Transfer175881972023-06-29 23:22:11440 days ago1688080931IN
0xC69E2B51...6Ee95e9D7
0 ETH0.0011821725.25528584
Approve175880252023-06-29 22:47:11441 days ago1688078831IN
0xC69E2B51...6Ee95e9D7
0 ETH0.000990440.85148856
Transfer175866312023-06-29 18:06:59441 days ago1688062019IN
0xC69E2B51...6Ee95e9D7
0 ETH0.0016507755.02590335
Approve175800442023-06-28 19:57:11442 days ago1687982231IN
0xC69E2B51...6Ee95e9D7
0 ETH0.0011126623.91387967
Approve175800202023-06-28 19:52:23442 days ago1687981943IN
0xC69E2B51...6Ee95e9D7
0 ETH0.0012573227.16318567
Approve175799342023-06-28 19:34:59442 days ago1687980899IN
0xC69E2B51...6Ee95e9D7
0 ETH0.0016713535.92157811
Transfer175799172023-06-28 19:31:35442 days ago1687980695IN
0xC69E2B51...6Ee95e9D7
0 ETH0.0012471741.97956724
Transfer175799022023-06-28 19:28:35442 days ago1687980515IN
0xC69E2B51...6Ee95e9D7
0 ETH0.0007192724.21060587
Transfer175794782023-06-28 18:03:23442 days ago1687975403IN
0xC69E2B51...6Ee95e9D7
0 ETH0.0005965420.07975082
Transfer175774272023-06-28 11:09:47442 days ago1687950587IN
0xC69E2B51...6Ee95e9D7
0 ETH0.0003949513.29407465
Transfer175774232023-06-28 11:08:59442 days ago1687950539IN
0xC69E2B51...6Ee95e9D7
0 ETH0.0003941413.26698159
Transfer175774192023-06-28 11:08:11442 days ago1687950491IN
0xC69E2B51...6Ee95e9D7
0 ETH0.0003760112.6616121
Transfer175774132023-06-28 11:06:59442 days ago1687950419IN
0xC69E2B51...6Ee95e9D7
0 ETH0.0003924913.21668288
Transfer175774062023-06-28 11:05:35442 days ago1687950335IN
0xC69E2B51...6Ee95e9D7
0 ETH0.0003690612.42778329
Transfer175773952023-06-28 11:03:23442 days ago1687950203IN
0xC69E2B51...6Ee95e9D7
0 ETH0.0004074313.71973285
Transfer175773912023-06-28 11:02:35442 days ago1687950155IN
0xC69E2B51...6Ee95e9D7
0 ETH0.0004387214.77940201
Transfer175773832023-06-28 11:00:59442 days ago1687950059IN
0xC69E2B51...6Ee95e9D7
0 ETH0.000423814.27084765
Transfer175773802023-06-28 11:00:23442 days ago1687950023IN
0xC69E2B51...6Ee95e9D7
0 ETH0.0004041113.60234276
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:
AiDogeToken

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

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

// SPDX-License-Identifier: MIT

pragma solidity 0.8.9;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(
        address owner,
        address spender
    ) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
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");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

contract AiDogeToken is Context, IERC20Metadata, Ownable {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private constant _decimals = 18;
    uint256 public constant hardCap = 1_000_000_000_000 * (10 ** _decimals); //1 trillion

    /**
     * @dev Contract constructor.
     * @param name_ The name of the token.
     * @param symbol_ The symbol of the token.
     * @param _to The initial address to mint the total supply to.
     */
    constructor(string memory name_, string memory symbol_, address _to) {
        _name = name_;
        _symbol = symbol_;
        _mint(_to, hardCap);
    }

    /**
     * @dev Returns the name of the token.
     * @return The name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token.
     * @return The symbol of the token.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used for token display.
     * @return The number of decimals.
     */
    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }

    /**
     * @dev Returns the total supply of the token.
     * @return The total supply.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev Returns the balance of the specified account.
     * @param account The address to check the balance for.
     * @return The balance of the account.
     */
    function balanceOf(
        address account
    ) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev Transfers tokens from the caller to a specified recipient.
     * @param recipient The address to transfer tokens to.
     * @param amount The amount of tokens to transfer.
     * @return A boolean value indicating whether the transfer was successful.
     */
    function transfer(
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev Returns the amount of tokens that the spender is allowed to spend on behalf of the owner.
     * @param from The address that approves the spending.
     * @param to The address that is allowed to spend.
     * @return The remaining allowance for the spender.
     */
    function allowance(
        address from,
        address to
    ) public view virtual override returns (uint256) {
        return _allowances[from][to];
    }

    /**
     * @dev Approves the specified address to spend the specified amount of tokens on behalf of the caller.
     * @param to The address to approve the spending for.
     * @param amount The amount of tokens to approve.
     * @return A boolean value indicating whether the approval was successful.
     */
    function approve(
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        _approve(_msgSender(), to, amount);
        return true;
    }

    /**
     * @dev Transfers tokens from one address to another.
     * @param sender The address to transfer tokens from.
     * @param recipient The address to transfer tokens to.
     * @param amount The amount of tokens to transfer.
     * @return A boolean value indicating whether the transfer was successful.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Increases the allowance of the specified address to spend tokens on behalf of the caller.
     * @param to The address to increase the allowance for.
     * @param addedValue The amount of tokens to increase the allowance by.
     * @return A boolean value indicating whether the increase was successful.
     */
    function increaseAllowance(
        address to,
        uint256 addedValue
    ) public virtual returns (bool) {
        _approve(_msgSender(), to, _allowances[_msgSender()][to] + addedValue);
        return true;
    }

    /**
     * @dev Decreases the allowance granted by the owner of the tokens to `to` account.
     * @param to The account allowed to spend the tokens.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     * @return A boolean value indicating whether the operation succeeded.
     */
    function decreaseAllowance(
        address to,
        uint256 subtractedValue
    ) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][to];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), to, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Transfers `amount` tokens from `sender` to `recipient`.
     * @param sender The account to transfer tokens from.
     * @param recipient The account to transfer tokens to.
     * @param amount The amount of tokens to transfer.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(amount > 0, "ERC20: transfer amount zero");
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

    /**
     * @dev Creates `amount` tokens and assigns them to `account`.
     * @param account The account to assign the newly created tokens to.
     * @param amount The amount of tokens to create.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the total supply.
     * @param account The account to burn tokens from.
     * @param amount The amount of tokens to burn.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Destroys `amount` tokens from the caller's account, reducing the total supply.
     * @param amount The amount of tokens to burn.
     */
    function burn(uint256 amount) external {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `to` over the caller's tokens.
     * @param from The account granting the allowance.
     * @param to The account allowed to spend the tokens.
     * @param amount The amount of tokens to allow.
     */
    function _approve(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: approve from the zero address");
        require(to != address(0), "ERC20: approve to the zero address");

        _allowances[from][to] = amount;
        emit Approval(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"_to","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":"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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hardCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200133c3803806200133c833981016040819052620000349162000349565b6200003f336200009e565b825162000054906004906020860190620001d6565b5081516200006a906005906020850190620001d6565b5062000095816200007e6012600a620004eb565b6200008f9064e8d4a5100062000503565b620000ee565b5050506200057d565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001495760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600360008282546200015d919062000525565b90915550506001600160a01b038216600090815260016020526040812080548392906200018c90849062000525565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620001e49062000540565b90600052602060002090601f01602090048101928262000208576000855562000253565b82601f106200022357805160ff191683800117855562000253565b8280016001018555821562000253579182015b828111156200025357825182559160200191906001019062000236565b506200026192915062000265565b5090565b5b8082111562000261576000815560010162000266565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002a457600080fd5b81516001600160401b0380821115620002c157620002c16200027c565b604051601f8301601f19908116603f01168101908282118183101715620002ec57620002ec6200027c565b816040528381526020925086838588010111156200030957600080fd5b600091505b838210156200032d57858201830151818301840152908201906200030e565b838211156200033f5760008385830101525b9695505050505050565b6000806000606084860312156200035f57600080fd5b83516001600160401b03808211156200037757600080fd5b620003858783880162000292565b945060208601519150808211156200039c57600080fd5b50620003ab8682870162000292565b604086015190935090506001600160a01b0381168114620003cb57600080fd5b809150509250925092565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200042d578160001904821115620004115762000411620003d6565b808516156200041f57918102915b93841c9390800290620003f1565b509250929050565b6000826200044657506001620004e5565b816200045557506000620004e5565b81600181146200046e5760028114620004795762000499565b6001915050620004e5565b60ff8411156200048d576200048d620003d6565b50506001821b620004e5565b5060208310610133831016604e8410600b8410161715620004be575081810a620004e5565b620004ca8383620003ec565b8060001904821115620004e157620004e1620003d6565b0290505b92915050565b6000620004fc60ff84168362000435565b9392505050565b6000816000190483118215151615620005205762000520620003d6565b500290565b600082198211156200053b576200053b620003d6565b500190565b600181811c908216806200055557607f821691505b602082108114156200057757634e487b7160e01b600052602260045260246000fd5b50919050565b610daf806200058d6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb14610209578063dd62ed3e1461021c578063f2fde38b14610255578063fb86a4041461026857600080fd5b8063715018a6146101cb5780638da5cb5b146101d357806395d89b41146101ee578063a457c2d7146101f657600080fd5b8063313ce567116100d3578063313ce5671461016b578063395093511461017a57806342966c681461018d57806370a08231146101a257600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d610270565b60405161011a9190610aa2565b60405180910390f35b610136610131366004610b13565b610302565b604051901515815260200161011a565b6003545b60405190815260200161011a565b610136610166366004610b3d565b610319565b6040516012815260200161011a565b610136610188366004610b13565b6103c8565b6101a061019b366004610b79565b610404565b005b61014a6101b0366004610b92565b6001600160a01b031660009081526001602052604090205490565b6101a0610411565b6000546040516001600160a01b03909116815260200161011a565b61010d610425565b610136610204366004610b13565b610434565b610136610217366004610b13565b6104cd565b61014a61022a366004610bb4565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101a0610263366004610b92565b6104da565b61014a610550565b60606004805461027f90610be7565b80601f01602080910402602001604051908101604052809291908181526020018280546102ab90610be7565b80156102f85780601f106102cd576101008083540402835291602001916102f8565b820191906000526020600020905b8154815290600101906020018083116102db57829003601f168201915b5050505050905090565b600061030f33848461056e565b5060015b92915050565b6000610326848484610693565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156103b05760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103bd853385840361056e565b506001949350505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161030f9185906103ff908690610c38565b61056e565b61040e33826108b2565b50565b6104196109f8565b6104236000610a52565b565b60606005805461027f90610be7565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156104b65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103a7565b6104c3338585840361056e565b5060019392505050565b600061030f338484610693565b6104e26109f8565b6001600160a01b0381166105475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103a7565b61040e81610a52565b61055c6012600a610d34565b61056b9064e8d4a51000610d43565b81565b6001600160a01b0383166105d05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103a7565b6001600160a01b0382166106315760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103a7565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600081116106e35760405162461bcd60e51b815260206004820152601b60248201527f45524332303a207472616e7366657220616d6f756e74207a65726f000000000060448201526064016103a7565b6001600160a01b0383166107475760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103a7565b6001600160a01b0382166107a95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103a7565b6001600160a01b038316600090815260016020526040902054818110156108215760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103a7565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610858908490610c38565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108a491815260200190565b60405180910390a350505050565b6001600160a01b0382166109125760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103a7565b6001600160a01b038216600090815260016020526040902054818110156109865760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103a7565b6001600160a01b03831660009081526001602052604081208383039055600380548492906109b5908490610d62565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610686565b6000546001600160a01b031633146104235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103a7565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b81811015610acf57858101830151858201604001528201610ab3565b81811115610ae1576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610b0e57600080fd5b919050565b60008060408385031215610b2657600080fd5b610b2f83610af7565b946020939093013593505050565b600080600060608486031215610b5257600080fd5b610b5b84610af7565b9250610b6960208501610af7565b9150604084013590509250925092565b600060208284031215610b8b57600080fd5b5035919050565b600060208284031215610ba457600080fd5b610bad82610af7565b9392505050565b60008060408385031215610bc757600080fd5b610bd083610af7565b9150610bde60208401610af7565b90509250929050565b600181811c90821680610bfb57607f821691505b60208210811415610c1c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610c4b57610c4b610c22565b500190565b600181815b80851115610c8b578160001904821115610c7157610c71610c22565b80851615610c7e57918102915b93841c9390800290610c55565b509250929050565b600082610ca257506001610313565b81610caf57506000610313565b8160018114610cc55760028114610ccf57610ceb565b6001915050610313565b60ff841115610ce057610ce0610c22565b50506001821b610313565b5060208310610133831016604e8410600b8410161715610d0e575081810a610313565b610d188383610c50565b8060001904821115610d2c57610d2c610c22565b029392505050565b6000610bad60ff841683610c93565b6000816000190483118215151615610d5d57610d5d610c22565b500290565b600082821015610d7457610d74610c22565b50039056fea264697066735822122056b20ee3a854b754ccc7bba39c3f808b1a11a4388d77cddd85b0970b3a364c8464736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000040827a779beeb0cd445c4061161aad36afef1f8c0000000000000000000000000000000000000000000000000000000000000007414920444f47450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064149444f47450000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb14610209578063dd62ed3e1461021c578063f2fde38b14610255578063fb86a4041461026857600080fd5b8063715018a6146101cb5780638da5cb5b146101d357806395d89b41146101ee578063a457c2d7146101f657600080fd5b8063313ce567116100d3578063313ce5671461016b578063395093511461017a57806342966c681461018d57806370a08231146101a257600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d610270565b60405161011a9190610aa2565b60405180910390f35b610136610131366004610b13565b610302565b604051901515815260200161011a565b6003545b60405190815260200161011a565b610136610166366004610b3d565b610319565b6040516012815260200161011a565b610136610188366004610b13565b6103c8565b6101a061019b366004610b79565b610404565b005b61014a6101b0366004610b92565b6001600160a01b031660009081526001602052604090205490565b6101a0610411565b6000546040516001600160a01b03909116815260200161011a565b61010d610425565b610136610204366004610b13565b610434565b610136610217366004610b13565b6104cd565b61014a61022a366004610bb4565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101a0610263366004610b92565b6104da565b61014a610550565b60606004805461027f90610be7565b80601f01602080910402602001604051908101604052809291908181526020018280546102ab90610be7565b80156102f85780601f106102cd576101008083540402835291602001916102f8565b820191906000526020600020905b8154815290600101906020018083116102db57829003601f168201915b5050505050905090565b600061030f33848461056e565b5060015b92915050565b6000610326848484610693565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156103b05760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103bd853385840361056e565b506001949350505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161030f9185906103ff908690610c38565b61056e565b61040e33826108b2565b50565b6104196109f8565b6104236000610a52565b565b60606005805461027f90610be7565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156104b65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103a7565b6104c3338585840361056e565b5060019392505050565b600061030f338484610693565b6104e26109f8565b6001600160a01b0381166105475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103a7565b61040e81610a52565b61055c6012600a610d34565b61056b9064e8d4a51000610d43565b81565b6001600160a01b0383166105d05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103a7565b6001600160a01b0382166106315760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103a7565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600081116106e35760405162461bcd60e51b815260206004820152601b60248201527f45524332303a207472616e7366657220616d6f756e74207a65726f000000000060448201526064016103a7565b6001600160a01b0383166107475760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103a7565b6001600160a01b0382166107a95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103a7565b6001600160a01b038316600090815260016020526040902054818110156108215760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103a7565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610858908490610c38565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108a491815260200190565b60405180910390a350505050565b6001600160a01b0382166109125760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103a7565b6001600160a01b038216600090815260016020526040902054818110156109865760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103a7565b6001600160a01b03831660009081526001602052604081208383039055600380548492906109b5908490610d62565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610686565b6000546001600160a01b031633146104235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103a7565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b81811015610acf57858101830151858201604001528201610ab3565b81811115610ae1576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610b0e57600080fd5b919050565b60008060408385031215610b2657600080fd5b610b2f83610af7565b946020939093013593505050565b600080600060608486031215610b5257600080fd5b610b5b84610af7565b9250610b6960208501610af7565b9150604084013590509250925092565b600060208284031215610b8b57600080fd5b5035919050565b600060208284031215610ba457600080fd5b610bad82610af7565b9392505050565b60008060408385031215610bc757600080fd5b610bd083610af7565b9150610bde60208401610af7565b90509250929050565b600181811c90821680610bfb57607f821691505b60208210811415610c1c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610c4b57610c4b610c22565b500190565b600181815b80851115610c8b578160001904821115610c7157610c71610c22565b80851615610c7e57918102915b93841c9390800290610c55565b509250929050565b600082610ca257506001610313565b81610caf57506000610313565b8160018114610cc55760028114610ccf57610ceb565b6001915050610313565b60ff841115610ce057610ce0610c22565b50506001821b610313565b5060208310610133831016604e8410600b8410161715610d0e575081810a610313565b610d188383610c50565b8060001904821115610d2c57610d2c610c22565b029392505050565b6000610bad60ff841683610c93565b6000816000190483118215151615610d5d57610d5d610c22565b500290565b600082821015610d7457610d74610c22565b50039056fea264697066735822122056b20ee3a854b754ccc7bba39c3f808b1a11a4388d77cddd85b0970b3a364c8464736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000040827a779beeb0cd445c4061161aad36afef1f8c0000000000000000000000000000000000000000000000000000000000000007414920444f47450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064149444f47450000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): AI DOGE
Arg [1] : symbol_ (string): AIDOGE
Arg [2] : _to (address): 0x40827a779BEEB0cd445c4061161aad36AFef1f8C

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000040827a779beeb0cd445c4061161aad36afef1f8c
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [4] : 414920444f474500000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 4149444f47450000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

6732:8764:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7637:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10030:184;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;10030:184:0;1053:187:1;8300:108:0;8388:12;;8300:108;;;1391:25:1;;;1379:2;1364:18;8300:108:0;1245:177:1;10554:529:0;;;;;;:::i;:::-;;:::i;8088:100::-;;;7054:2;1902:36:1;;1890:2;1875:18;8088:100:0;1760:184:1;11430:225:0;;;;;;:::i;:::-;;:::i;14780:85::-;;;;;;:::i;:::-;;:::i;:::-;;8598:143;;;;;;:::i;:::-;-1:-1:-1;;;;;8715:18:0;8688:7;8715:18;;;:9;:18;;;;;;;8598:143;5878:103;;;:::i;5237:87::-;5283:7;5310:6;5237:87;;-1:-1:-1;;;;;5310:6:0;;;2471:51:1;;2459:2;2444:18;5237:87:0;2325:203:1;7850:104:0;;;:::i;11987:460::-;;;;;;:::i;:::-;;:::i;9035:200::-;;;;;;:::i;:::-;;:::i;9537:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;9672:17:0;;;9645:7;9672:17;;;:11;:17;;;;;;;;:21;;;;;;;;;;;;;9537:164;6136:238;;;;;;:::i;:::-;;:::i;7063:71::-;;;:::i;7637:100::-;7691:13;7724:5;7717:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7637:100;:::o;10030:184::-;10133:4;10150:34;4001:10;10173:2;10177:6;10150:8;:34::i;:::-;-1:-1:-1;10202:4:0;10030:184;;;;;:::o;10554:529::-;10694:4;10711:36;10721:6;10729:9;10740:6;10711:9;:36::i;:::-;-1:-1:-1;;;;;10787:19:0;;10760:24;10787:19;;;:11;:19;;;;;;;;4001:10;10787:33;;;;;;;;10853:26;;;;10831:116;;;;-1:-1:-1;;;10831:116:0;;3385:2:1;10831:116:0;;;3367:21:1;3424:2;3404:18;;;3397:30;3463:34;3443:18;;;3436:62;-1:-1:-1;;;3514:18:1;;;3507:38;3562:19;;10831:116:0;;;;;;;;;10983:57;10992:6;4001:10;11033:6;11014:16;:25;10983:8;:57::i;:::-;-1:-1:-1;11071:4:0;;10554:529;-1:-1:-1;;;;10554:529:0:o;11430:225::-;4001:10;11538:4;11582:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11582:29:0;;;;;;;;;;11538:4;;11555:70;;11578:2;;11582:42;;11614:10;;11582:42;:::i;:::-;11555:8;:70::i;14780:85::-;14830:27;4001:10;14850:6;14830:5;:27::i;:::-;14780:85;:::o;5878:103::-;5123:13;:11;:13::i;:::-;5943:30:::1;5970:1;5943:18;:30::i;:::-;5878:103::o:0;7850:104::-;7906:13;7939:7;7932:14;;;;;:::i;11987:460::-;4001:10;12100:4;12144:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12144:29:0;;;;;;;;;;12206:35;;;;12184:122;;;;-1:-1:-1;;;12184:122:0;;4059:2:1;12184:122:0;;;4041:21:1;4098:2;4078:18;;;4071:30;4137:34;4117:18;;;4110:62;-1:-1:-1;;;4188:18:1;;;4181:35;4233:19;;12184:122:0;3857:401:1;12184:122:0;12342:62;4001:10;12365:2;12388:15;12369:16;:34;12342:8;:62::i;:::-;-1:-1:-1;12435:4:0;;11987:460;-1:-1:-1;;;11987:460:0:o;9035:200::-;9146:4;9163:42;4001:10;9187:9;9198:6;9163:9;:42::i;6136:238::-;5123:13;:11;:13::i;:::-;-1:-1:-1;;;;;6239:22:0;::::1;6217:110;;;::::0;-1:-1:-1;;;6217:110:0;;4465:2:1;6217:110:0::1;::::0;::::1;4447:21:1::0;4504:2;4484:18;;;4477:30;4543:34;4523:18;;;4516:62;-1:-1:-1;;;4594:18:1;;;4587:36;4640:19;;6217:110:0::1;4263:402:1::0;6217:110:0::1;6338:28;6357:8;6338:18;:28::i;7063:71::-:0;7118:15;7054:2;7118;:15;:::i;:::-;7097:37;;:17;:37;:::i;:::-;7063:71;:::o;15137:356::-;-1:-1:-1;;;;;15267:18:0;;15259:67;;;;-1:-1:-1;;;15259:67:0;;6428:2:1;15259:67:0;;;6410:21:1;6467:2;6447:18;;;6440:30;6506:34;6486:18;;;6479:62;-1:-1:-1;;;6557:18:1;;;6550:34;6601:19;;15259:67:0;6226:400:1;15259:67:0;-1:-1:-1;;;;;15345:16:0;;15337:63;;;;-1:-1:-1;;;15337:63:0;;6833:2:1;15337:63:0;;;6815:21:1;6872:2;6852:18;;;6845:30;6911:34;6891:18;;;6884:62;-1:-1:-1;;;6962:18:1;;;6955:32;7004:19;;15337:63:0;6631:398:1;15337:63:0;-1:-1:-1;;;;;15413:17:0;;;;;;;:11;:17;;;;;;;;:21;;;;;;;;;;;;;:30;;;15459:26;;1391:25:1;;;15459:26:0;;1364:18:1;15459:26:0;;;;;;;;15137:356;;;:::o;12717:712::-;12866:1;12857:6;:10;12849:50;;;;-1:-1:-1;;;12849:50:0;;7236:2:1;12849:50:0;;;7218:21:1;7275:2;7255:18;;;7248:30;7314:29;7294:18;;;7287:57;7361:18;;12849:50:0;7034:351:1;12849:50:0;-1:-1:-1;;;;;12918:20:0;;12910:70;;;;-1:-1:-1;;;12910:70:0;;7592:2:1;12910:70:0;;;7574:21:1;7631:2;7611:18;;;7604:30;7670:34;7650:18;;;7643:62;-1:-1:-1;;;7721:18:1;;;7714:35;7766:19;;12910:70:0;7390:401:1;12910:70:0;-1:-1:-1;;;;;12999:23:0;;12991:71;;;;-1:-1:-1;;;12991:71:0;;7998:2:1;12991:71:0;;;7980:21:1;8037:2;8017:18;;;8010:30;8076:34;8056:18;;;8049:62;-1:-1:-1;;;8127:18:1;;;8120:33;8170:19;;12991:71:0;7796:399:1;12991:71:0;-1:-1:-1;;;;;13099:17:0;;13075:21;13099:17;;;:9;:17;;;;;;13149:23;;;;13127:111;;;;-1:-1:-1;;;13127:111:0;;8402:2:1;13127:111:0;;;8384:21:1;8441:2;8421:18;;;8414:30;8480:34;8460:18;;;8453:62;-1:-1:-1;;;8531:18:1;;;8524:36;8577:19;;13127:111:0;8200:402:1;13127:111:0;-1:-1:-1;;;;;13274:17:0;;;;;;;:9;:17;;;;;;13294:22;;;13274:42;;13338:20;;;;;;;;:30;;13310:6;;13274:17;13338:30;;13310:6;;13338:30;:::i;:::-;;;;;;;;13403:9;-1:-1:-1;;;;;13386:35:0;13395:6;-1:-1:-1;;;;;13386:35:0;;13414:6;13386:35;;;;1391:25:1;;1379:2;1364:18;;1245:177;13386:35:0;;;;;;;;12838:591;12717:712;;;:::o;14142:468::-;-1:-1:-1;;;;;14226:21:0;;14218:67;;;;-1:-1:-1;;;14218:67:0;;8809:2:1;14218:67:0;;;8791:21:1;8848:2;8828:18;;;8821:30;8887:34;8867:18;;;8860:62;-1:-1:-1;;;8938:18:1;;;8931:31;8979:19;;14218:67:0;8607:397:1;14218:67:0;-1:-1:-1;;;;;14323:18:0;;14298:22;14323:18;;;:9;:18;;;;;;14360:24;;;;14352:71;;;;-1:-1:-1;;;14352:71:0;;9211:2:1;14352:71:0;;;9193:21:1;9250:2;9230:18;;;9223:30;9289:34;9269:18;;;9262:62;-1:-1:-1;;;9340:18:1;;;9333:32;9382:19;;14352:71:0;9009:398:1;14352:71:0;-1:-1:-1;;;;;14459:18:0;;;;;;:9;:18;;;;;14480:23;;;14459:44;;14525:12;:22;;14497:6;;14459:18;14525:22;;14497:6;;14525:22;:::i;:::-;;;;-1:-1:-1;;14565:37:0;;1391:25:1;;;14591:1:0;;-1:-1:-1;;;;;14565:37:0;;;;;1379:2:1;1364:18;14565:37:0;1245:177:1;5402:132:0;5283:7;5310:6;-1:-1:-1;;;;;5310:6:0;4001:10;5466:23;5458:68;;;;-1:-1:-1;;;5458:68:0;;9744:2:1;5458:68:0;;;9726:21:1;;;9763:18;;;9756:30;9822:34;9802:18;;;9795:62;9874:18;;5458:68:0;9542:356:1;6534:191:0;6608:16;6627:6;;-1:-1:-1;;;;;6644:17:0;;;-1:-1:-1;;;;;;6644:17:0;;;;;;6677:40;;6627:6;;;;;;;6677:40;;6608:16;6677:40;6597:128;6534:191;:::o;14:597: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;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:180::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;-1:-1:-1;2100:23:1;;1949:180;-1:-1:-1;1949:180:1:o;2134:186::-;2193:6;2246:2;2234:9;2225:7;2221:23;2217:32;2214:52;;;2262:1;2259;2252:12;2214:52;2285:29;2304:9;2285:29;:::i;:::-;2275:39;2134:186;-1:-1:-1;;;2134:186:1:o;2533:260::-;2601:6;2609;2662:2;2650:9;2641:7;2637:23;2633:32;2630:52;;;2678:1;2675;2668:12;2630:52;2701:29;2720:9;2701:29;:::i;:::-;2691:39;;2749:38;2783:2;2772:9;2768:18;2749:38;:::i;:::-;2739:48;;2533:260;;;;;:::o;2798:380::-;2877:1;2873:12;;;;2920;;;2941:61;;2995:4;2987:6;2983:17;2973:27;;2941:61;3048:2;3040:6;3037:14;3017:18;3014:38;3011:161;;;3094:10;3089:3;3085:20;3082:1;3075:31;3129:4;3126:1;3119:15;3157:4;3154:1;3147:15;3011:161;;2798:380;;;:::o;3592:127::-;3653:10;3648:3;3644:20;3641:1;3634:31;3684:4;3681:1;3674:15;3708:4;3705:1;3698:15;3724:128;3764:3;3795:1;3791:6;3788:1;3785:13;3782:39;;;3801:18;;:::i;:::-;-1:-1:-1;3837:9:1;;3724:128::o;4670:422::-;4759:1;4802:5;4759:1;4816:270;4837:7;4827:8;4824:21;4816:270;;;4896:4;4892:1;4888:6;4884:17;4878:4;4875:27;4872:53;;;4905:18;;:::i;:::-;4955:7;4945:8;4941:22;4938:55;;;4975:16;;;;4938:55;5054:22;;;;5014:15;;;;4816:270;;;4820:3;4670:422;;;;;:::o;5097:806::-;5146:5;5176:8;5166:80;;-1:-1:-1;5217:1:1;5231:5;;5166:80;5265:4;5255:76;;-1:-1:-1;5302:1:1;5316:5;;5255:76;5347:4;5365:1;5360:59;;;;5433:1;5428:130;;;;5340:218;;5360:59;5390:1;5381:10;;5404:5;;;5428:130;5465:3;5455:8;5452:17;5449:43;;;5472:18;;:::i;:::-;-1:-1:-1;;5528:1:1;5514:16;;5543:5;;5340:218;;5642:2;5632:8;5629:16;5623:3;5617:4;5614:13;5610:36;5604:2;5594:8;5591:16;5586:2;5580:4;5577:12;5573:35;5570:77;5567:159;;;-1:-1:-1;5679:19:1;;;5711:5;;5567:159;5758:34;5783:8;5777:4;5758:34;:::i;:::-;5828:6;5824:1;5820:6;5816:19;5807:7;5804:32;5801:58;;;5839:18;;:::i;:::-;5877:20;;5097:806;-1:-1:-1;;;5097:806:1:o;5908:140::-;5966:5;5995:47;6036:4;6026:8;6022:19;6016:4;5995:47;:::i;6053:168::-;6093:7;6159:1;6155;6151:6;6147:14;6144:1;6141:21;6136:1;6129:9;6122:17;6118:45;6115:71;;;6166:18;;:::i;:::-;-1:-1:-1;6206:9:1;;6053:168::o;9412:125::-;9452:4;9480:1;9477;9474:8;9471:34;;;9485:18;;:::i;:::-;-1:-1:-1;9522:9:1;;9412:125::o

Swarm Source

ipfs://56b20ee3a854b754ccc7bba39c3f808b1a11a4388d77cddd85b0970b3a364c84

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.