ETH Price: $3,335.47 (-1.24%)

Contract

0xEDb3F8b53CD2F3bddB4063DB759c274793b65Ef1
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve190706612024-01-23 16:48:59334 days ago1706028539IN
0xEDb3F8b5...793b65Ef1
0 ETH0.000392616.2087478
Approve173064232023-05-21 8:00:23582 days ago1684656023IN
0xEDb3F8b5...793b65Ef1
0 ETH0.0013697829.68363375
Approve170022782023-04-08 7:42:35625 days ago1680939755IN
0xEDb3F8b5...793b65Ef1
0 ETH0.0005342522.05664205
Approve151595012022-07-17 9:57:45890 days ago1658051865IN
0xEDb3F8b5...793b65Ef1
0 ETH0.000180187.43890622
Approve145641132022-04-11 11:20:50987 days ago1649676050IN
0xEDb3F8b5...793b65Ef1
0 ETH0.0005525722.81304581
Approve139099542021-12-31 0:42:391088 days ago1640911359IN
0xEDb3F8b5...793b65Ef1
0 ETH0.0022223791.75017739
Approve119413122021-02-27 19:46:111394 days ago1614455171IN
0xEDb3F8b5...793b65Ef1
0 ETH0.00178485123
Approve112381332020-11-11 19:08:371502 days ago1605121717IN
0xEDb3F8b5...793b65Ef1
0 ETH0.0007593417.1
Approve112380702020-11-11 18:56:111502 days ago1605120971IN
0xEDb3F8b5...793b65Ef1
0 ETH0.0008881220
Approve112372382020-11-11 15:49:311502 days ago1605109771IN
0xEDb3F8b5...793b65Ef1
0 ETH0.0035968881
Transfer112115602020-11-07 17:07:501506 days ago1604768870IN
0xEDb3F8b5...793b65Ef1
0 ETH0.0025051249
Approve111898492020-11-04 9:23:321510 days ago1604481812IN
0xEDb3F8b5...793b65Ef1
0 ETH0.0007104916.00000145
Approve111839652020-11-03 11:33:181511 days ago1604403198IN
0xEDb3F8b5...793b65Ef1
0 ETH0.0010213323.00000145
Transfer111833952020-11-03 9:31:501511 days ago1604395910IN
0xEDb3F8b5...793b65Ef1
0 ETH0.0019427538
Transfer111832152020-11-03 8:51:141511 days ago1604393474IN
0xEDb3F8b5...793b65Ef1
0 ETH0.0024034347
Approve111810312020-11-03 0:50:081511 days ago1604364608IN
0xEDb3F8b5...793b65Ef1
0 ETH0.0010213323
Approve111802062020-11-02 21:50:031511 days ago1604353803IN
0xEDb3F8b5...793b65Ef1
0 ETH0.0012433628
Approve111795072020-11-02 19:09:121511 days ago1604344152IN
0xEDb3F8b5...793b65Ef1
0 ETH0.0018650542
Approve111778222020-11-02 13:10:101511 days ago1604322610IN
0xEDb3F8b5...793b65Ef1
0 ETH0.0036412982
Approve111774182020-11-02 11:37:131512 days ago1604317033IN
0xEDb3F8b5...793b65Ef1
0 ETH0.003565880.3
Approve111774072020-11-02 11:34:111512 days ago1604316851IN
0xEDb3F8b5...793b65Ef1
0 ETH0.0032416373
Approve111770342020-11-02 10:16:091512 days ago1604312169IN
0xEDb3F8b5...793b65Ef1
0 ETH0.0036856983
Approve111758522020-11-02 5:54:331512 days ago1604296473IN
0xEDb3F8b5...793b65Ef1
0 ETH0.0013321830
Approve111758002020-11-02 5:41:311512 days ago1604295691IN
0xEDb3F8b5...793b65Ef1
0 ETH0.0010701824.1
Approve111748252020-11-02 1:58:231512 days ago1604282303IN
0xEDb3F8b5...793b65Ef1
0 ETH0.0017762440
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:
ERC20

Compiler Version
v0.6.8+commit.0bbfe453

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-11-01
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.6.8;

library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        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.
 */
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 () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


/**
 * @dev Interface of the ERC20 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);
}

contract ERC20 is Ownable, IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name = "ZSEC PROTOCOL";
    string private _symbol = "ZSEC";
    uint8 private _decimals = 18;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor () public {
        _mint(_msgSender(), 40000E18);
    }



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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    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, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

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

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");


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

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

}

Contract Security Audit

Contract ABI

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

60c0604052600d60808190526c1694d150c8141493d513d0d3d3609a1b60a09081526200003091600491906200027c565b50604080518082019091526004808252635a53454360e01b60209092019182526200005e916005916200027c565b506006805460ff191660121790553480156200007957600080fd5b5060006200008f6001600160e01b036200011016565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200010a620000f06001600160e01b036200011016565b690878678326eac90000006001600160e01b036200011516565b6200031e565b335b90565b6001600160a01b03821662000171576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200018d816003546200021a60201b620007e71790919060201c565b6003556001600160a01b038216600090815260016020908152604090912054620001c2918390620007e76200021a821b17901c565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60008282018381101562000275576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002bf57805160ff1916838001178555620002ef565b82800160010185558215620002ef579182015b82811115620002ef578251825591602001919060010190620002d2565b50620002fd92915062000301565b5090565b6200011291905b80821115620002fd576000815560010162000308565b610c8a806200032e6000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d7146102a2578063a9059cbb146102ce578063dd62ed3e146102fa578063f2fde38b14610328576100ea565b8063715018a61461026c5780638da5cb5b1461027657806395d89b411461029a576100ea565b806323b872dd116100c857806323b872dd146101c6578063313ce567146101fc578063395093511461021a57806370a0823114610246576100ea565b806306fdde03146100ef578063095ea7b31461016c57806318160ddd146101ac575b600080fd5b6100f761034e565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610131578181015183820152602001610119565b50505050905090810190601f16801561015e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101986004803603604081101561018257600080fd5b506001600160a01b0381351690602001356103e4565b604080519115158252519081900360200190f35b6101b4610401565b60408051918252519081900360200190f35b610198600480360360608110156101dc57600080fd5b506001600160a01b03813581169160208101359091169060400135610407565b610204610494565b6040805160ff9092168252519081900360200190f35b6101986004803603604081101561023057600080fd5b506001600160a01b03813516906020013561049d565b6101b46004803603602081101561025c57600080fd5b50356001600160a01b03166104f1565b61027461050c565b005b61027e6105c0565b604080516001600160a01b039092168252519081900360200190f35b6100f76105cf565b610198600480360360408110156102b857600080fd5b506001600160a01b038135169060200135610630565b610198600480360360408110156102e457600080fd5b506001600160a01b03813516906020013561069e565b6101b46004803603604081101561031057600080fd5b506001600160a01b03813581169160200135166106b2565b6102746004803603602081101561033e57600080fd5b50356001600160a01b03166106dd565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103da5780601f106103af576101008083540402835291602001916103da565b820191906000526020600020905b8154815290600101906020018083116103bd57829003601f168201915b5050505050905090565b60006103f86103f1610848565b848461084c565b50600192915050565b60035490565b6000610414848484610938565b61048a84610420610848565b61048585604051806060016040528060288152602001610bbf602891396001600160a01b038a1660009081526002602052604081209061045e610848565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610a9616565b61084c565b5060019392505050565b60065460ff1690565b60006103f86104aa610848565b8461048585600260006104bb610848565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6107e716565b6001600160a01b031660009081526001602052604090205490565b610514610848565b6000546001600160a01b03908116911614610576576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103da5780601f106103af576101008083540402835291602001916103da565b60006103f861063d610848565b8461048585604051806060016040528060258152602001610c306025913960026000610667610848565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610a9616565b60006103f86106ab610848565b8484610938565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6106e5610848565b6000546001600160a01b03908116911614610747576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811661078c5760405162461bcd60e51b8152600401808060200182810382526026815260200180610b516026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600082820183811015610841576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b0383166108915760405162461bcd60e51b8152600401808060200182810382526024815260200180610c0c6024913960400191505060405180910390fd5b6001600160a01b0382166108d65760405162461bcd60e51b8152600401808060200182810382526022815260200180610b776022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661097d5760405162461bcd60e51b8152600401808060200182810382526025815260200180610be76025913960400191505060405180910390fd5b6001600160a01b0382166109c25760405162461bcd60e51b8152600401808060200182810382526023815260200180610b2e6023913960400191505060405180910390fd5b610a0581604051806060016040528060268152602001610b99602691396001600160a01b038616600090815260016020526040902054919063ffffffff610a9616565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610a3a908263ffffffff6107e716565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610b255760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610aea578181015183820152602001610ad2565b50505050905090810190601f168015610b175780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e9fbe6132d662700bde579da29794232eb7d8ed66afe71017b753a000e7dbd3a64736f6c63430006080033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d7146102a2578063a9059cbb146102ce578063dd62ed3e146102fa578063f2fde38b14610328576100ea565b8063715018a61461026c5780638da5cb5b1461027657806395d89b411461029a576100ea565b806323b872dd116100c857806323b872dd146101c6578063313ce567146101fc578063395093511461021a57806370a0823114610246576100ea565b806306fdde03146100ef578063095ea7b31461016c57806318160ddd146101ac575b600080fd5b6100f761034e565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610131578181015183820152602001610119565b50505050905090810190601f16801561015e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101986004803603604081101561018257600080fd5b506001600160a01b0381351690602001356103e4565b604080519115158252519081900360200190f35b6101b4610401565b60408051918252519081900360200190f35b610198600480360360608110156101dc57600080fd5b506001600160a01b03813581169160208101359091169060400135610407565b610204610494565b6040805160ff9092168252519081900360200190f35b6101986004803603604081101561023057600080fd5b506001600160a01b03813516906020013561049d565b6101b46004803603602081101561025c57600080fd5b50356001600160a01b03166104f1565b61027461050c565b005b61027e6105c0565b604080516001600160a01b039092168252519081900360200190f35b6100f76105cf565b610198600480360360408110156102b857600080fd5b506001600160a01b038135169060200135610630565b610198600480360360408110156102e457600080fd5b506001600160a01b03813516906020013561069e565b6101b46004803603604081101561031057600080fd5b506001600160a01b03813581169160200135166106b2565b6102746004803603602081101561033e57600080fd5b50356001600160a01b03166106dd565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103da5780601f106103af576101008083540402835291602001916103da565b820191906000526020600020905b8154815290600101906020018083116103bd57829003601f168201915b5050505050905090565b60006103f86103f1610848565b848461084c565b50600192915050565b60035490565b6000610414848484610938565b61048a84610420610848565b61048585604051806060016040528060288152602001610bbf602891396001600160a01b038a1660009081526002602052604081209061045e610848565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610a9616565b61084c565b5060019392505050565b60065460ff1690565b60006103f86104aa610848565b8461048585600260006104bb610848565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6107e716565b6001600160a01b031660009081526001602052604090205490565b610514610848565b6000546001600160a01b03908116911614610576576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103da5780601f106103af576101008083540402835291602001916103da565b60006103f861063d610848565b8461048585604051806060016040528060258152602001610c306025913960026000610667610848565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610a9616565b60006103f86106ab610848565b8484610938565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6106e5610848565b6000546001600160a01b03908116911614610747576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811661078c5760405162461bcd60e51b8152600401808060200182810382526026815260200180610b516026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600082820183811015610841576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b0383166108915760405162461bcd60e51b8152600401808060200182810382526024815260200180610c0c6024913960400191505060405180910390fd5b6001600160a01b0382166108d65760405162461bcd60e51b8152600401808060200182810382526022815260200180610b776022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661097d5760405162461bcd60e51b8152600401808060200182810382526025815260200180610be76025913960400191505060405180910390fd5b6001600160a01b0382166109c25760405162461bcd60e51b8152600401808060200182810382526023815260200180610b2e6023913960400191505060405180910390fd5b610a0581604051806060016040528060268152602001610b99602691396001600160a01b038616600090815260016020526040902054919063ffffffff610a9616565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610a3a908263ffffffff6107e716565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610b255760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610aea578181015183820152602001610ad2565b50505050905090810190601f168015610b175780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e9fbe6132d662700bde579da29794232eb7d8ed66afe71017b753a000e7dbd3a64736f6c63430006080033

Deployed Bytecode Sourcemap

10090:8351:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;10090:8351:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;10925:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;10925:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13031:169;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;13031:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;12000:100;;;:::i;:::-;;;;;;;;;;;;;;;;13674:321;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;13674:321:0;;;;;;;;;;;;;;;;;:::i;11852:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14404:218;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;14404:218:0;;;;;;;;:::i;12163:119::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;12163:119:0;-1:-1:-1;;;;;12163:119:0;;:::i;6821:148::-;;;:::i;:::-;;6179:79;;;:::i;:::-;;;;-1:-1:-1;;;;;6179:79:0;;;;;;;;;;;;;;11127:87;;;:::i;15125:269::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;15125:269:0;;;;;;;;:::i;12495:175::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;12495:175:0;;;;;;;;:::i;12733:151::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;12733:151:0;;;;;;;;;;:::i;7124:244::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;7124:244:0;-1:-1:-1;;;;;7124:244:0;;:::i;10925:83::-;10995:5;10988:12;;;;;;;;-1:-1:-1;;10988:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10962:13;;10988:12;;10995:5;;10988:12;;10995:5;10988:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10925:83;:::o;13031:169::-;13114:4;13131:39;13140:12;:10;:12::i;:::-;13154:7;13163:6;13131:8;:39::i;:::-;-1:-1:-1;13188:4:0;13031:169;;;;:::o;12000:100::-;12080:12;;12000:100;:::o;13674:321::-;13780:4;13797:36;13807:6;13815:9;13826:6;13797:9;:36::i;:::-;13844:121;13853:6;13861:12;:10;:12::i;:::-;13875:89;13913:6;13875:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13875:19:0;;;;;;:11;:19;;;;;;13895:12;:10;:12::i;:::-;-1:-1:-1;;;;;13875:33:0;;;;;;;;;;;;-1:-1:-1;13875:33:0;;;:89;;:37;:89;:::i;:::-;13844:8;:121::i;:::-;-1:-1:-1;13983:4:0;13674:321;;;;;:::o;11852:83::-;11918:9;;;;11852:83;:::o;14404:218::-;14492:4;14509:83;14518:12;:10;:12::i;:::-;14532:7;14541:50;14580:10;14541:11;:25;14553:12;:10;:12::i;:::-;-1:-1:-1;;;;;14541:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14541:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;12163:119::-;-1:-1:-1;;;;;12256:18:0;12229:7;12256:18;;;:9;:18;;;;;;;12163:119::o;6821:148::-;6401:12;:10;:12::i;:::-;6391:6;;-1:-1:-1;;;;;6391:6:0;;;:22;;;6383:67;;;;;-1:-1:-1;;;6383:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6928:1:::1;6912:6:::0;;6891:40:::1;::::0;-1:-1:-1;;;;;6912:6:0;;::::1;::::0;6891:40:::1;::::0;6928:1;;6891:40:::1;6959:1;6942:19:::0;;-1:-1:-1;;;;;;6942:19:0::1;::::0;;6821:148::o;6179:79::-;6217:7;6244:6;-1:-1:-1;;;;;6244:6:0;6179:79;:::o;11127:87::-;11199:7;11192:14;;;;;;;;-1:-1:-1;;11192:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11166:13;;11192:14;;11199:7;;11192:14;;11199:7;11192:14;;;;;;;;;;;;;;;;;;;;;;;;15125:269;15218:4;15235:129;15244:12;:10;:12::i;:::-;15258:7;15267:96;15306:15;15267:96;;;;;;;;;;;;;;;;;:11;:25;15279:12;:10;:12::i;:::-;-1:-1:-1;;;;;15267:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15267:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;12495:175::-;12581:4;12598:42;12608:12;:10;:12::i;:::-;12622:9;12633:6;12598:9;:42::i;12733:151::-;-1:-1:-1;;;;;12849:18:0;;;12822:7;12849:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12733:151::o;7124:244::-;6401:12;:10;:12::i;:::-;6391:6;;-1:-1:-1;;;;;6391:6:0;;;:22;;;6383:67;;;;;-1:-1:-1;;;6383:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7213:22:0;::::1;7205:73;;;;-1:-1:-1::0;;;7205:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7315:6;::::0;;7294:38:::1;::::0;-1:-1:-1;;;;;7294:38:0;;::::1;::::0;7315:6;::::1;::::0;7294:38:::1;::::0;::::1;7343:6;:17:::0;;-1:-1:-1;;;;;;7343:17:0::1;-1:-1:-1::0;;;;;7343:17:0;;;::::1;::::0;;;::::1;::::0;;7124:244::o;324:181::-;382:7;414:5;;;438:6;;;;430:46;;;;;-1:-1:-1;;;430:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;496:1;324:181;-1:-1:-1;;;324:181:0:o;4817:106::-;4905:10;4817:106;:::o;18090:346::-;-1:-1:-1;;;;;18192:19:0;;18184:68;;;;-1:-1:-1;;;18184:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18271:21:0;;18263:68;;;;-1:-1:-1;;;18263:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18344:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18396:32;;;;;;;;;;;;;;;;;18090:346;;;:::o;15884:479::-;-1:-1:-1;;;;;15990:20:0;;15982:70;;;;-1:-1:-1;;;15982:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16071:23:0;;16063:71;;;;-1:-1:-1;;;16063:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16167;16189:6;16167:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16167:17:0;;;;;;:9;:17;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;16147:17:0;;;;;;;:9;:17;;;;;;:91;;;;16272:20;;;;;;;:32;;16297:6;16272:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;16249:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;16320:35;;;;;;;16249:20;;16320:35;;;;;;;;;;;;;15884:479;;;:::o;1227:192::-;1313:7;1349:12;1341:6;;;;1333:29;;;;-1:-1:-1;;;1333:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;1333:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1385:5:0;;;1227:192::o

Swarm Source

ipfs://e9fbe6132d662700bde579da29794232eb7d8ed66afe71017b753a000e7dbd3a

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.