ETH Price: $3,634.38 (+0.95%)
Gas: 6.61 Gwei
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer195400402024-03-29 13:45:35281 days ago1711719935IN
0x61a5A3De...24668E6ca
0 ETH0.0016608231.71319829
Transfer194369812024-03-15 1:07:47295 days ago1710464867IN
0x61a5A3De...24668E6ca
0 ETH0.0022376942.7187641
Approve135543182021-11-05 3:56:311156 days ago1636084591IN
0x61a5A3De...24668E6ca
0 ETH0.00501907106.35213592

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block
From
To
135416532021-11-03 3:56:081158 days ago1635911768
0x61a5A3De...24668E6ca
0.035 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
BurnableToken

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2021-11-03
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 this function is
     * overridden;
     *
     * 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 virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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);

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

        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] + 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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This 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");

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

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

        _afterTokenTransfer(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");

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

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

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

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This 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);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}


/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}



contract BurnableToken is ERC20Burnable {

    uint8 private _decimals;

    constructor(uint256 totalSupply_, string memory name_, string memory symbol_, uint8 decimals_, address service_) ERC20(name_, symbol_) payable {
        _decimals = decimals_;
        _mint(_msgSender(), totalSupply_ * 10 ** decimals());
        payable(service_).transfer(getBalance());
    }

    receive() payable external{
        
    }

    function getBalance() private view returns(uint256){
        return address(this).balance;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"totalSupply_","type":"uint256"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"address","name":"service_","type":"address"}],"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":"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","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":"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"},{"stateMutability":"payable","type":"receive"}]

6080604052604051620023b4380380620023b48339818101604052810190620000299190620005fc565b8383816003908051906020019062000043929190620002d1565b5080600490805190602001906200005c929190620002d1565b50505081600560006101000a81548160ff021916908360ff160217905550620000c56200008e6200012760201b60201c565b6200009e6200012f60201b60201c565b600a620000ac919062000845565b87620000b9919062000896565b6200014660201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff166108fc620000ef620002bf60201b60201c565b9081150290604051600060405180830381858888f193505050501580156200011b573d6000803e3d6000fd5b50505050505062000a6a565b600033905090565b6000600560009054906101000a900460ff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620001b9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001b09062000958565b60405180910390fd5b620001cd60008383620002c760201b60201c565b8060026000828254620001e191906200097a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200023891906200097a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200029f9190620009e8565b60405180910390a3620002bb60008383620002cc60201b60201c565b5050565b600047905090565b505050565b505050565b828054620002df9062000a34565b90600052602060002090601f0160209004810192826200030357600085556200034f565b82601f106200031e57805160ff19168380011785556200034f565b828001600101855582156200034f579182015b828111156200034e57825182559160200191906001019062000331565b5b5090506200035e919062000362565b5090565b5b808211156200037d57600081600090555060010162000363565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b620003aa8162000395565b8114620003b657600080fd5b50565b600081519050620003ca816200039f565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200042582620003da565b810181811067ffffffffffffffff82111715620004475762000446620003eb565b5b80604052505050565b60006200045c62000381565b90506200046a82826200041a565b919050565b600067ffffffffffffffff8211156200048d576200048c620003eb565b5b6200049882620003da565b9050602081019050919050565b60005b83811015620004c5578082015181840152602081019050620004a8565b83811115620004d5576000848401525b50505050565b6000620004f2620004ec846200046f565b62000450565b905082815260208101848484011115620005115762000510620003d5565b5b6200051e848285620004a5565b509392505050565b600082601f8301126200053e576200053d620003d0565b5b815162000550848260208601620004db565b91505092915050565b600060ff82169050919050565b620005718162000559565b81146200057d57600080fd5b50565b600081519050620005918162000566565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620005c48262000597565b9050919050565b620005d681620005b7565b8114620005e257600080fd5b50565b600081519050620005f681620005cb565b92915050565b600080600080600060a086880312156200061b576200061a6200038b565b5b60006200062b88828901620003b9565b955050602086015167ffffffffffffffff8111156200064f576200064e62000390565b5b6200065d8882890162000526565b945050604086015167ffffffffffffffff81111562000681576200068062000390565b5b6200068f8882890162000526565b9350506060620006a28882890162000580565b9250506080620006b588828901620005e5565b9150509295509295909350565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200075057808604811115620007285762000727620006c2565b5b6001851615620007385780820291505b80810290506200074885620006f1565b945062000708565b94509492505050565b6000826200076b57600190506200083e565b816200077b57600090506200083e565b81600181146200079457600281146200079f57620007d5565b60019150506200083e565b60ff841115620007b457620007b3620006c2565b5b8360020a915084821115620007ce57620007cd620006c2565b5b506200083e565b5060208310610133831016604e8410600b84101617156200080f5782820a905083811115620008095762000808620006c2565b5b6200083e565b6200081e8484846001620006fe565b92509050818404811115620008385762000837620006c2565b5b81810290505b9392505050565b6000620008528262000395565b91506200085f8362000559565b92506200088e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000759565b905092915050565b6000620008a38262000395565b9150620008b08362000395565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620008ec57620008eb620006c2565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000940601f83620008f7565b91506200094d8262000908565b602082019050919050565b60006020820190508181036000830152620009738162000931565b9050919050565b6000620009878262000395565b9150620009948362000395565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620009cc57620009cb620006c2565b5b828201905092915050565b620009e28162000395565b82525050565b6000602082019050620009ff6000830184620009d7565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a4d57607f821691505b6020821081141562000a645762000a6362000a05565b5b50919050565b61193a8062000a7a6000396000f3fe6080604052600436106100c65760003560e01c806342966c681161007f57806395d89b411161005957806395d89b4114610299578063a457c2d7146102c4578063a9059cbb14610301578063dd62ed3e1461033e576100cd565b806342966c681461020a57806370a082311461023357806379cc679014610270576100cd565b806306fdde03146100d2578063095ea7b3146100fd57806318160ddd1461013a57806323b872dd14610165578063313ce567146101a257806339509351146101cd576100cd565b366100cd57005b600080fd5b3480156100de57600080fd5b506100e761037b565b6040516100f49190610fb7565b60405180910390f35b34801561010957600080fd5b50610124600480360381019061011f9190611072565b61040d565b60405161013191906110cd565b60405180910390f35b34801561014657600080fd5b5061014f61042b565b60405161015c91906110f7565b60405180910390f35b34801561017157600080fd5b5061018c60048036038101906101879190611112565b610435565b60405161019991906110cd565b60405180910390f35b3480156101ae57600080fd5b506101b761052d565b6040516101c49190611181565b60405180910390f35b3480156101d957600080fd5b506101f460048036038101906101ef9190611072565b610544565b60405161020191906110cd565b60405180910390f35b34801561021657600080fd5b50610231600480360381019061022c919061119c565b6105f0565b005b34801561023f57600080fd5b5061025a600480360381019061025591906111c9565b610604565b60405161026791906110f7565b60405180910390f35b34801561027c57600080fd5b5061029760048036038101906102929190611072565b61064c565b005b3480156102a557600080fd5b506102ae6106c7565b6040516102bb9190610fb7565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190611072565b610759565b6040516102f891906110cd565b60405180910390f35b34801561030d57600080fd5b5061032860048036038101906103239190611072565b610844565b60405161033591906110cd565b60405180910390f35b34801561034a57600080fd5b50610365600480360381019061036091906111f6565b610862565b60405161037291906110f7565b60405180910390f35b60606003805461038a90611265565b80601f01602080910402602001604051908101604052809291908181526020018280546103b690611265565b80156104035780601f106103d857610100808354040283529160200191610403565b820191906000526020600020905b8154815290600101906020018083116103e657829003601f168201915b5050505050905090565b600061042161041a6108e9565b84846108f1565b6001905092915050565b6000600254905090565b6000610442848484610abc565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061048d6108e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561050d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050490611309565b60405180910390fd5b610521856105196108e9565b8584036108f1565b60019150509392505050565b6000600560009054906101000a900460ff16905090565b60006105e66105516108e9565b84846001600061055f6108e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105e19190611358565b6108f1565b6001905092915050565b6106016105fb6108e9565b82610d3d565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600061065f8361065a6108e9565b610862565b9050818110156106a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069b90611420565b60405180910390fd5b6106b8836106b06108e9565b8484036108f1565b6106c28383610d3d565b505050565b6060600480546106d690611265565b80601f016020809104026020016040519081016040528092919081815260200182805461070290611265565b801561074f5780601f106107245761010080835404028352916020019161074f565b820191906000526020600020905b81548152906001019060200180831161073257829003601f168201915b5050505050905090565b600080600160006107686108e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081c906114b2565b60405180910390fd5b6108396108306108e9565b858584036108f1565b600191505092915050565b60006108586108516108e9565b8484610abc565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095890611544565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c8906115d6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610aaf91906110f7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2390611668565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b93906116fa565b60405180910390fd5b610ba7838383610f14565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c249061178c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610cc09190611358565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d2491906110f7565b60405180910390a3610d37848484610f19565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da49061181e565b60405180910390fd5b610db982600083610f14565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e36906118b0565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610e9691906118d0565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610efb91906110f7565b60405180910390a3610f0f83600084610f19565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610f58578082015181840152602081019050610f3d565b83811115610f67576000848401525b50505050565b6000601f19601f8301169050919050565b6000610f8982610f1e565b610f938185610f29565b9350610fa3818560208601610f3a565b610fac81610f6d565b840191505092915050565b60006020820190508181036000830152610fd18184610f7e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061100982610fde565b9050919050565b61101981610ffe565b811461102457600080fd5b50565b60008135905061103681611010565b92915050565b6000819050919050565b61104f8161103c565b811461105a57600080fd5b50565b60008135905061106c81611046565b92915050565b6000806040838503121561108957611088610fd9565b5b600061109785828601611027565b92505060206110a88582860161105d565b9150509250929050565b60008115159050919050565b6110c7816110b2565b82525050565b60006020820190506110e260008301846110be565b92915050565b6110f18161103c565b82525050565b600060208201905061110c60008301846110e8565b92915050565b60008060006060848603121561112b5761112a610fd9565b5b600061113986828701611027565b935050602061114a86828701611027565b925050604061115b8682870161105d565b9150509250925092565b600060ff82169050919050565b61117b81611165565b82525050565b60006020820190506111966000830184611172565b92915050565b6000602082840312156111b2576111b1610fd9565b5b60006111c08482850161105d565b91505092915050565b6000602082840312156111df576111de610fd9565b5b60006111ed84828501611027565b91505092915050565b6000806040838503121561120d5761120c610fd9565b5b600061121b85828601611027565b925050602061122c85828601611027565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061127d57607f821691505b6020821081141561129157611290611236565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006112f3602883610f29565b91506112fe82611297565b604082019050919050565b60006020820190508181036000830152611322816112e6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006113638261103c565b915061136e8361103c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156113a3576113a2611329565b5b828201905092915050565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b600061140a602483610f29565b9150611415826113ae565b604082019050919050565b60006020820190508181036000830152611439816113fd565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061149c602583610f29565b91506114a782611440565b604082019050919050565b600060208201905081810360008301526114cb8161148f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061152e602483610f29565b9150611539826114d2565b604082019050919050565b6000602082019050818103600083015261155d81611521565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006115c0602283610f29565b91506115cb82611564565b604082019050919050565b600060208201905081810360008301526115ef816115b3565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611652602583610f29565b915061165d826115f6565b604082019050919050565b6000602082019050818103600083015261168181611645565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006116e4602383610f29565b91506116ef82611688565b604082019050919050565b60006020820190508181036000830152611713816116d7565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611776602683610f29565b91506117818261171a565b604082019050919050565b600060208201905081810360008301526117a581611769565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611808602183610f29565b9150611813826117ac565b604082019050919050565b60006020820190508181036000830152611837816117fb565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061189a602283610f29565b91506118a58261183e565b604082019050919050565b600060208201905081810360008301526118c98161188d565b9050919050565b60006118db8261103c565b91506118e68361103c565b9250828210156118f9576118f8611329565b5b82820390509291505056fea26469706673582212204cfbb67ef01efbee07c637a96a84f9ec8a71b6764fa9272a65bd7cefc049480164736f6c6343000809003300000000000000000000000000000000000000000000000000000030e4f9b40000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000e2c1470d8e3f8cafd7205de006987e7f8edef9ad000000000000000000000000000000000000000000000000000000000000000e557262616e204477656c6c657273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000355444b0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106100c65760003560e01c806342966c681161007f57806395d89b411161005957806395d89b4114610299578063a457c2d7146102c4578063a9059cbb14610301578063dd62ed3e1461033e576100cd565b806342966c681461020a57806370a082311461023357806379cc679014610270576100cd565b806306fdde03146100d2578063095ea7b3146100fd57806318160ddd1461013a57806323b872dd14610165578063313ce567146101a257806339509351146101cd576100cd565b366100cd57005b600080fd5b3480156100de57600080fd5b506100e761037b565b6040516100f49190610fb7565b60405180910390f35b34801561010957600080fd5b50610124600480360381019061011f9190611072565b61040d565b60405161013191906110cd565b60405180910390f35b34801561014657600080fd5b5061014f61042b565b60405161015c91906110f7565b60405180910390f35b34801561017157600080fd5b5061018c60048036038101906101879190611112565b610435565b60405161019991906110cd565b60405180910390f35b3480156101ae57600080fd5b506101b761052d565b6040516101c49190611181565b60405180910390f35b3480156101d957600080fd5b506101f460048036038101906101ef9190611072565b610544565b60405161020191906110cd565b60405180910390f35b34801561021657600080fd5b50610231600480360381019061022c919061119c565b6105f0565b005b34801561023f57600080fd5b5061025a600480360381019061025591906111c9565b610604565b60405161026791906110f7565b60405180910390f35b34801561027c57600080fd5b5061029760048036038101906102929190611072565b61064c565b005b3480156102a557600080fd5b506102ae6106c7565b6040516102bb9190610fb7565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190611072565b610759565b6040516102f891906110cd565b60405180910390f35b34801561030d57600080fd5b5061032860048036038101906103239190611072565b610844565b60405161033591906110cd565b60405180910390f35b34801561034a57600080fd5b50610365600480360381019061036091906111f6565b610862565b60405161037291906110f7565b60405180910390f35b60606003805461038a90611265565b80601f01602080910402602001604051908101604052809291908181526020018280546103b690611265565b80156104035780601f106103d857610100808354040283529160200191610403565b820191906000526020600020905b8154815290600101906020018083116103e657829003601f168201915b5050505050905090565b600061042161041a6108e9565b84846108f1565b6001905092915050565b6000600254905090565b6000610442848484610abc565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061048d6108e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561050d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050490611309565b60405180910390fd5b610521856105196108e9565b8584036108f1565b60019150509392505050565b6000600560009054906101000a900460ff16905090565b60006105e66105516108e9565b84846001600061055f6108e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105e19190611358565b6108f1565b6001905092915050565b6106016105fb6108e9565b82610d3d565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600061065f8361065a6108e9565b610862565b9050818110156106a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069b90611420565b60405180910390fd5b6106b8836106b06108e9565b8484036108f1565b6106c28383610d3d565b505050565b6060600480546106d690611265565b80601f016020809104026020016040519081016040528092919081815260200182805461070290611265565b801561074f5780601f106107245761010080835404028352916020019161074f565b820191906000526020600020905b81548152906001019060200180831161073257829003601f168201915b5050505050905090565b600080600160006107686108e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081c906114b2565b60405180910390fd5b6108396108306108e9565b858584036108f1565b600191505092915050565b60006108586108516108e9565b8484610abc565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095890611544565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c8906115d6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610aaf91906110f7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2390611668565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b93906116fa565b60405180910390fd5b610ba7838383610f14565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c249061178c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610cc09190611358565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d2491906110f7565b60405180910390a3610d37848484610f19565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da49061181e565b60405180910390fd5b610db982600083610f14565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e36906118b0565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610e9691906118d0565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610efb91906110f7565b60405180910390a3610f0f83600084610f19565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610f58578082015181840152602081019050610f3d565b83811115610f67576000848401525b50505050565b6000601f19601f8301169050919050565b6000610f8982610f1e565b610f938185610f29565b9350610fa3818560208601610f3a565b610fac81610f6d565b840191505092915050565b60006020820190508181036000830152610fd18184610f7e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061100982610fde565b9050919050565b61101981610ffe565b811461102457600080fd5b50565b60008135905061103681611010565b92915050565b6000819050919050565b61104f8161103c565b811461105a57600080fd5b50565b60008135905061106c81611046565b92915050565b6000806040838503121561108957611088610fd9565b5b600061109785828601611027565b92505060206110a88582860161105d565b9150509250929050565b60008115159050919050565b6110c7816110b2565b82525050565b60006020820190506110e260008301846110be565b92915050565b6110f18161103c565b82525050565b600060208201905061110c60008301846110e8565b92915050565b60008060006060848603121561112b5761112a610fd9565b5b600061113986828701611027565b935050602061114a86828701611027565b925050604061115b8682870161105d565b9150509250925092565b600060ff82169050919050565b61117b81611165565b82525050565b60006020820190506111966000830184611172565b92915050565b6000602082840312156111b2576111b1610fd9565b5b60006111c08482850161105d565b91505092915050565b6000602082840312156111df576111de610fd9565b5b60006111ed84828501611027565b91505092915050565b6000806040838503121561120d5761120c610fd9565b5b600061121b85828601611027565b925050602061122c85828601611027565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061127d57607f821691505b6020821081141561129157611290611236565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006112f3602883610f29565b91506112fe82611297565b604082019050919050565b60006020820190508181036000830152611322816112e6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006113638261103c565b915061136e8361103c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156113a3576113a2611329565b5b828201905092915050565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b600061140a602483610f29565b9150611415826113ae565b604082019050919050565b60006020820190508181036000830152611439816113fd565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061149c602583610f29565b91506114a782611440565b604082019050919050565b600060208201905081810360008301526114cb8161148f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061152e602483610f29565b9150611539826114d2565b604082019050919050565b6000602082019050818103600083015261155d81611521565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006115c0602283610f29565b91506115cb82611564565b604082019050919050565b600060208201905081810360008301526115ef816115b3565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611652602583610f29565b915061165d826115f6565b604082019050919050565b6000602082019050818103600083015261168181611645565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006116e4602383610f29565b91506116ef82611688565b604082019050919050565b60006020820190508181036000830152611713816116d7565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611776602683610f29565b91506117818261171a565b604082019050919050565b600060208201905081810360008301526117a581611769565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611808602183610f29565b9150611813826117ac565b604082019050919050565b60006020820190508181036000830152611837816117fb565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061189a602283610f29565b91506118a58261183e565b604082019050919050565b600060208201905081810360008301526118c98161188d565b9050919050565b60006118db8261103c565b91506118e68361103c565b9250828210156118f9576118f8611329565b5b82820390509291505056fea26469706673582212204cfbb67ef01efbee07c637a96a84f9ec8a71b6764fa9272a65bd7cefc049480164736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000030e4f9b40000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000e2c1470d8e3f8cafd7205de006987e7f8edef9ad000000000000000000000000000000000000000000000000000000000000000e557262616e204477656c6c657273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000355444b0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : totalSupply_ (uint256): 210000000000
Arg [1] : name_ (string): Urban Dwellers
Arg [2] : symbol_ (string): UDK
Arg [3] : decimals_ (uint8): 18
Arg [4] : service_ (address): 0xe2c1470D8E3f8cAFd7205DE006987E7F8EdeF9Ad

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000030e4f9b400
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 000000000000000000000000e2c1470d8e3f8cafd7205de006987e7f8edef9ad
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [6] : 557262616e204477656c6c657273000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 55444b0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

17222:647:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6091:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8258:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7211:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8909:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17766:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9810:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16433:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7382:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16843:368;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6310:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10528:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7722:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7960:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6091:100;6145:13;6178:5;6171:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6091:100;:::o;8258:169::-;8341:4;8358:39;8367:12;:10;:12::i;:::-;8381:7;8390:6;8358:8;:39::i;:::-;8415:4;8408:11;;8258:169;;;;:::o;7211:108::-;7272:7;7299:12;;7292:19;;7211:108;:::o;8909:492::-;9049:4;9066:36;9076:6;9084:9;9095:6;9066:9;:36::i;:::-;9115:24;9142:11;:19;9154:6;9142:19;;;;;;;;;;;;;;;:33;9162:12;:10;:12::i;:::-;9142:33;;;;;;;;;;;;;;;;9115:60;;9214:6;9194:16;:26;;9186:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9301:57;9310:6;9318:12;:10;:12::i;:::-;9351:6;9332:16;:25;9301:8;:57::i;:::-;9389:4;9382:11;;;8909:492;;;;;:::o;17766:100::-;17824:5;17849:9;;;;;;;;;;;17842:16;;17766:100;:::o;9810:215::-;9898:4;9915:80;9924:12;:10;:12::i;:::-;9938:7;9984:10;9947:11;:25;9959:12;:10;:12::i;:::-;9947:25;;;;;;;;;;;;;;;:34;9973:7;9947:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;9915:8;:80::i;:::-;10013:4;10006:11;;9810:215;;;;:::o;16433:91::-;16489:27;16495:12;:10;:12::i;:::-;16509:6;16489:5;:27::i;:::-;16433:91;:::o;7382:127::-;7456:7;7483:9;:18;7493:7;7483:18;;;;;;;;;;;;;;;;7476:25;;7382:127;;;:::o;16843:368::-;16920:24;16947:32;16957:7;16966:12;:10;:12::i;:::-;16947:9;:32::i;:::-;16920:59;;17018:6;16998:16;:26;;16990:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;17101:58;17110:7;17119:12;:10;:12::i;:::-;17152:6;17133:16;:25;17101:8;:58::i;:::-;17181:22;17187:7;17196:6;17181:5;:22::i;:::-;16909:302;16843:368;;:::o;6310:104::-;6366:13;6399:7;6392:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6310:104;:::o;10528:413::-;10621:4;10638:24;10665:11;:25;10677:12;:10;:12::i;:::-;10665:25;;;;;;;;;;;;;;;:34;10691:7;10665:34;;;;;;;;;;;;;;;;10638:61;;10738:15;10718:16;:35;;10710:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10831:67;10840:12;:10;:12::i;:::-;10854:7;10882:15;10863:16;:34;10831:8;:67::i;:::-;10929:4;10922:11;;;10528:413;;;;:::o;7722:175::-;7808:4;7825:42;7835:12;:10;:12::i;:::-;7849:9;7860:6;7825:9;:42::i;:::-;7885:4;7878:11;;7722:175;;;;:::o;7960:151::-;8049:7;8076:11;:18;8088:5;8076:18;;;;;;;;;;;;;;;:27;8095:7;8076:27;;;;;;;;;;;;;;;;8069:34;;7960:151;;;;:::o;3895:98::-;3948:7;3975:10;3968:17;;3895:98;:::o;14212:380::-;14365:1;14348:19;;:5;:19;;;;14340:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14446:1;14427:21;;:7;:21;;;;14419:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14530:6;14500:11;:18;14512:5;14500:18;;;;;;;;;;;;;;;:27;14519:7;14500:27;;;;;;;;;;;;;;;:36;;;;14568:7;14552:32;;14561:5;14552:32;;;14577:6;14552:32;;;;;;:::i;:::-;;;;;;;;14212:380;;;:::o;11431:733::-;11589:1;11571:20;;:6;:20;;;;11563:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11673:1;11652:23;;:9;:23;;;;11644:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11728:47;11749:6;11757:9;11768:6;11728:20;:47::i;:::-;11788:21;11812:9;:17;11822:6;11812:17;;;;;;;;;;;;;;;;11788:41;;11865:6;11848:13;:23;;11840:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;11986:6;11970:13;:22;11950:9;:17;11960:6;11950:17;;;;;;;;;;;;;;;:42;;;;12038:6;12014:9;:20;12024:9;12014:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12079:9;12062:35;;12071:6;12062:35;;;12090:6;12062:35;;;;;;:::i;:::-;;;;;;;;12110:46;12130:6;12138:9;12149:6;12110:19;:46::i;:::-;11552:612;11431:733;;;:::o;13183:591::-;13286:1;13267:21;;:7;:21;;;;13259:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13339:49;13360:7;13377:1;13381:6;13339:20;:49::i;:::-;13401:22;13426:9;:18;13436:7;13426:18;;;;;;;;;;;;;;;;13401:43;;13481:6;13463:14;:24;;13455:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13600:6;13583:14;:23;13562:9;:18;13572:7;13562:18;;;;;;;;;;;;;;;:44;;;;13644:6;13628:12;;:22;;;;;;;:::i;:::-;;;;;;;;13694:1;13668:37;;13677:7;13668:37;;;13698:6;13668:37;;;;;;:::i;:::-;;;;;;;;13718:48;13738:7;13755:1;13759:6;13718:19;:48::i;:::-;13248:526;13183:591;;:::o;15192:125::-;;;;:::o;15921:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:::-;5295:6;5344:2;5332:9;5323:7;5319:23;5315:32;5312:119;;;5350:79;;:::i;:::-;5312:119;5470:1;5495:53;5540:7;5531:6;5520:9;5516:22;5495:53;:::i;:::-;5485:63;;5441:117;5236:329;;;;:::o;5571:474::-;5639:6;5647;5696:2;5684:9;5675:7;5671:23;5667:32;5664:119;;;5702:79;;:::i;:::-;5664:119;5822:1;5847:53;5892:7;5883:6;5872:9;5868:22;5847:53;:::i;:::-;5837:63;;5793:117;5949:2;5975:53;6020:7;6011:6;6000:9;5996:22;5975:53;:::i;:::-;5965:63;;5920:118;5571:474;;;;;:::o;6051:180::-;6099:77;6096:1;6089:88;6196:4;6193:1;6186:15;6220:4;6217:1;6210:15;6237:320;6281:6;6318:1;6312:4;6308:12;6298:22;;6365:1;6359:4;6355:12;6386:18;6376:81;;6442:4;6434:6;6430:17;6420:27;;6376:81;6504:2;6496:6;6493:14;6473:18;6470:38;6467:84;;;6523:18;;:::i;:::-;6467:84;6288:269;6237:320;;;:::o;6563:227::-;6703:34;6699:1;6691:6;6687:14;6680:58;6772:10;6767:2;6759:6;6755:15;6748:35;6563:227;:::o;6796:366::-;6938:3;6959:67;7023:2;7018:3;6959:67;:::i;:::-;6952:74;;7035:93;7124:3;7035:93;:::i;:::-;7153:2;7148:3;7144:12;7137:19;;6796:366;;;:::o;7168:419::-;7334:4;7372:2;7361:9;7357:18;7349:26;;7421:9;7415:4;7411:20;7407:1;7396:9;7392:17;7385:47;7449:131;7575:4;7449:131;:::i;:::-;7441:139;;7168:419;;;:::o;7593:180::-;7641:77;7638:1;7631:88;7738:4;7735:1;7728:15;7762:4;7759:1;7752:15;7779:305;7819:3;7838:20;7856:1;7838:20;:::i;:::-;7833:25;;7872:20;7890:1;7872:20;:::i;:::-;7867:25;;8026:1;7958:66;7954:74;7951:1;7948:81;7945:107;;;8032:18;;:::i;:::-;7945:107;8076:1;8073;8069:9;8062:16;;7779:305;;;;:::o;8090:223::-;8230:34;8226:1;8218:6;8214:14;8207:58;8299:6;8294:2;8286:6;8282:15;8275:31;8090:223;:::o;8319:366::-;8461:3;8482:67;8546:2;8541:3;8482:67;:::i;:::-;8475:74;;8558:93;8647:3;8558:93;:::i;:::-;8676:2;8671:3;8667:12;8660:19;;8319:366;;;:::o;8691:419::-;8857:4;8895:2;8884:9;8880:18;8872:26;;8944:9;8938:4;8934:20;8930:1;8919:9;8915:17;8908:47;8972:131;9098:4;8972:131;:::i;:::-;8964:139;;8691:419;;;:::o;9116:224::-;9256:34;9252:1;9244:6;9240:14;9233:58;9325:7;9320:2;9312:6;9308:15;9301:32;9116:224;:::o;9346:366::-;9488:3;9509:67;9573:2;9568:3;9509:67;:::i;:::-;9502:74;;9585:93;9674:3;9585:93;:::i;:::-;9703:2;9698:3;9694:12;9687:19;;9346:366;;;:::o;9718:419::-;9884:4;9922:2;9911:9;9907:18;9899:26;;9971:9;9965:4;9961:20;9957:1;9946:9;9942:17;9935:47;9999:131;10125:4;9999:131;:::i;:::-;9991:139;;9718:419;;;:::o;10143:223::-;10283:34;10279:1;10271:6;10267:14;10260:58;10352:6;10347:2;10339:6;10335:15;10328:31;10143:223;:::o;10372:366::-;10514:3;10535:67;10599:2;10594:3;10535:67;:::i;:::-;10528:74;;10611:93;10700:3;10611:93;:::i;:::-;10729:2;10724:3;10720:12;10713:19;;10372:366;;;:::o;10744:419::-;10910:4;10948:2;10937:9;10933:18;10925:26;;10997:9;10991:4;10987:20;10983:1;10972:9;10968:17;10961:47;11025:131;11151:4;11025:131;:::i;:::-;11017:139;;10744:419;;;:::o;11169:221::-;11309:34;11305:1;11297:6;11293:14;11286:58;11378:4;11373:2;11365:6;11361:15;11354:29;11169:221;:::o;11396:366::-;11538:3;11559:67;11623:2;11618:3;11559:67;:::i;:::-;11552:74;;11635:93;11724:3;11635:93;:::i;:::-;11753:2;11748:3;11744:12;11737:19;;11396:366;;;:::o;11768:419::-;11934:4;11972:2;11961:9;11957:18;11949:26;;12021:9;12015:4;12011:20;12007:1;11996:9;11992:17;11985:47;12049:131;12175:4;12049:131;:::i;:::-;12041:139;;11768:419;;;:::o;12193:224::-;12333:34;12329:1;12321:6;12317:14;12310:58;12402:7;12397:2;12389:6;12385:15;12378:32;12193:224;:::o;12423:366::-;12565:3;12586:67;12650:2;12645:3;12586:67;:::i;:::-;12579:74;;12662:93;12751:3;12662:93;:::i;:::-;12780:2;12775:3;12771:12;12764:19;;12423:366;;;:::o;12795:419::-;12961:4;12999:2;12988:9;12984:18;12976:26;;13048:9;13042:4;13038:20;13034:1;13023:9;13019:17;13012:47;13076:131;13202:4;13076:131;:::i;:::-;13068:139;;12795:419;;;:::o;13220:222::-;13360:34;13356:1;13348:6;13344:14;13337:58;13429:5;13424:2;13416:6;13412:15;13405:30;13220:222;:::o;13448:366::-;13590:3;13611:67;13675:2;13670:3;13611:67;:::i;:::-;13604:74;;13687:93;13776:3;13687:93;:::i;:::-;13805:2;13800:3;13796:12;13789:19;;13448:366;;;:::o;13820:419::-;13986:4;14024:2;14013:9;14009:18;14001:26;;14073:9;14067:4;14063:20;14059:1;14048:9;14044:17;14037:47;14101:131;14227:4;14101:131;:::i;:::-;14093:139;;13820:419;;;:::o;14245:225::-;14385:34;14381:1;14373:6;14369:14;14362:58;14454:8;14449:2;14441:6;14437:15;14430:33;14245:225;:::o;14476:366::-;14618:3;14639:67;14703:2;14698:3;14639:67;:::i;:::-;14632:74;;14715:93;14804:3;14715:93;:::i;:::-;14833:2;14828:3;14824:12;14817:19;;14476:366;;;:::o;14848:419::-;15014:4;15052:2;15041:9;15037:18;15029:26;;15101:9;15095:4;15091:20;15087:1;15076:9;15072:17;15065:47;15129:131;15255:4;15129:131;:::i;:::-;15121:139;;14848:419;;;:::o;15273:220::-;15413:34;15409:1;15401:6;15397:14;15390:58;15482:3;15477:2;15469:6;15465:15;15458:28;15273:220;:::o;15499:366::-;15641:3;15662:67;15726:2;15721:3;15662:67;:::i;:::-;15655:74;;15738:93;15827:3;15738:93;:::i;:::-;15856:2;15851:3;15847:12;15840:19;;15499:366;;;:::o;15871:419::-;16037:4;16075:2;16064:9;16060:18;16052:26;;16124:9;16118:4;16114:20;16110:1;16099:9;16095:17;16088:47;16152:131;16278:4;16152:131;:::i;:::-;16144:139;;15871:419;;;:::o;16296:221::-;16436:34;16432:1;16424:6;16420:14;16413:58;16505:4;16500:2;16492:6;16488:15;16481:29;16296:221;:::o;16523:366::-;16665:3;16686:67;16750:2;16745:3;16686:67;:::i;:::-;16679:74;;16762:93;16851:3;16762:93;:::i;:::-;16880:2;16875:3;16871:12;16864:19;;16523:366;;;:::o;16895:419::-;17061:4;17099:2;17088:9;17084:18;17076:26;;17148:9;17142:4;17138:20;17134:1;17123:9;17119:17;17112:47;17176:131;17302:4;17176:131;:::i;:::-;17168:139;;16895:419;;;:::o;17320:191::-;17360:4;17380:20;17398:1;17380:20;:::i;:::-;17375:25;;17414:20;17432:1;17414:20;:::i;:::-;17409:25;;17453:1;17450;17447:8;17444:34;;;17458:18;;:::i;:::-;17444:34;17503:1;17500;17496:9;17488:17;;17320:191;;;;:::o

Swarm Source

ipfs://4cfbb67ef01efbee07c637a96a84f9ec8a71b6764fa9272a65bd7cefc0494801

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  ]
[ 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.