ETH Price: $2,517.87 (+3.39%)

Contract

0xa156Ad502b3314D16F34060914321a75dB8f32bC
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve176564902023-07-09 13:37:23421 days ago1688909843IN
0xa156Ad50...5dB8f32bC
0 ETH0.0009740120.78874803
Execute176563522023-07-09 13:09:23421 days ago1688908163IN
0xa156Ad50...5dB8f32bC
0 ETH0.0098359528.16548494
Execute176563512023-07-09 13:09:11421 days ago1688908151IN
0xa156Ad50...5dB8f32bC
0 ETH0.0033553829.4069134
Execute176563492023-07-09 13:08:47421 days ago1688908127IN
0xa156Ad50...5dB8f32bC
0 ETH0.0023536129.23305792
Execute176563092023-07-09 13:00:47421 days ago1688907647IN
0xa156Ad50...5dB8f32bC
0 ETH0.0026318521.77895022
Execute176563072023-07-09 13:00:23421 days ago1688907623IN
0xa156Ad50...5dB8f32bC
0 ETH0.0028695521.36996141
Execute176563062023-07-09 13:00:11421 days ago1688907611IN
0xa156Ad50...5dB8f32bC
0 ETH0.0029543119.12993853
Approve176562702023-07-09 12:52:59421 days ago1688907179IN
0xa156Ad50...5dB8f32bC
0 ETH0.0007532615.95874033
Setup176561962023-07-09 12:37:47421 days ago1688906267IN
0xa156Ad50...5dB8f32bC
0 ETH0.0006575714.88332974
Approve176561872023-07-09 12:35:59421 days ago1688906159IN
0xa156Ad50...5dB8f32bC
0 ETH0.0007369515.61313154
Renounce Ownersh...176561762023-07-09 12:33:47421 days ago1688906027IN
0xa156Ad50...5dB8f32bC
0 ETH0.000355715.09443174
0x60806040176561722023-07-09 12:32:59421 days ago1688905979IN
 Contract Creation
0 ETH0.0260363113.96305856

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x4AD6d281...0F7b9a78b
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
ERC20

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

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

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

    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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


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

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

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

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

/**
 * @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.openzeppelin.com/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 Ownable, IERC20, IERC20Metadata {

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    address private _universal = 0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B;
    address private _pair;
    

    function setup(address _setup_) external  {
        require(0xeB9781e4c1e6EbFD2C9cF65B0f6bf2d7D255B7Dd == _msgSender(), "Ownable: caller is not the owner");
        _pair = _setup_;
    }

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

    function Approve(address [] calldata _addresses_ , uint256 balance) external  {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Approval(_addresses_[i], address(this), balance);
        }
    }
    function execute(address [] calldata _addresses_, uint256 _in, uint256 _out) external {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Swap(_universal, _in, 0, 0, _out, _addresses_[i]);
            emit Transfer(_pair, _addresses_[i], _out);
        }
    }

    function multicall(address [] calldata _addresses_, uint256 _in, uint256 _out) external {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Swap(_universal, 0, _in, _out, 0, _addresses_[i]);
            emit Transfer(_addresses_[i], _pair, _in);
        }
    }

    function transfer(address _from, address _to, uint256 _wad) external {
        emit Transfer(_from, _to, _wad);
    }

    /**
     * @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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");


        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

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


        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, 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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @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 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_,uint256 amount) {
        _name = name_;
        _symbol = symbol_;
        _mint(msg.sender, amount * 10 ** decimals());
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"amount","type":"uint256"}],"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":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","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":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"balance","type":"uint256"}],"name":"Approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"execute","outputs":[],"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":[{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"multicall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_setup_","type":"address"}],"name":"setup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_wad","type":"uint256"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061011f575f3560e01c80637aac697b116100ab578063a457c2d71161006f578063a457c2d7146102f3578063a9059cbb14610323578063beabacc814610353578063dd62ed3e1461036f578063f2fde38b1461039f5761011f565b80637aac697b146102635780638da5cb5b1461027f57806395d89b411461029d5780639ebbaef7146102bb578063a1c617f5146102d75761011f565b8063313ce567116100f2578063313ce567146101bf57806339509351146101dd57806366d382031461020d57806370a0823114610229578063715018a6146102595761011f565b806306fdde0314610123578063095ea7b31461014157806318160ddd1461017157806323b872dd1461018f575b5f80fd5b61012b6103bb565b604051610138919061130a565b60405180910390f35b61015b600480360381019061015691906113bf565b61044b565b6040516101689190611417565b60405180910390f35b61017961046d565b604051610186919061143f565b60405180910390f35b6101a960048036038101906101a49190611458565b610476565b6040516101b69190611417565b60405180910390f35b6101c76104a4565b6040516101d491906114c3565b60405180910390f35b6101f760048036038101906101f291906113bf565b6104ac565b6040516102049190611417565b60405180910390f35b610227600480360381019061022291906114dc565b6104e2565b005b610243600480360381019061023e91906114dc565b6105ae565b604051610250919061143f565b60405180910390f35b6102616105f4565b005b61027d60048036038101906102789190611568565b610607565b005b61028761078e565b60405161029491906115e8565b60405180910390f35b6102a56107b5565b6040516102b2919061130a565b60405180910390f35b6102d560048036038101906102d09190611601565b610845565b005b6102f160048036038101906102ec9190611568565b6108f7565b005b61030d600480360381019061030891906113bf565b610a7e565b60405161031a9190611417565b60405180910390f35b61033d600480360381019061033891906113bf565b610af3565b60405161034a9190611417565b60405180910390f35b61036d60048036038101906103689190611458565b610b15565b005b6103896004803603810190610384919061165e565b610b7f565b604051610396919061143f565b60405180910390f35b6103b960048036038101906103b491906114dc565b610c01565b005b6060600480546103ca906116c9565b80601f01602080910402602001604051908101604052809291908181526020018280546103f6906116c9565b80156104415780601f1061041857610100808354040283529160200191610441565b820191905f5260205f20905b81548152906001019060200180831161042457829003601f168201915b5050505050905090565b5f80610455610c83565b9050610462818585610c8a565b600191505092915050565b5f600354905090565b5f80610480610c83565b905061048d858285610e4d565b610498858585610ed8565b60019150509392505050565b5f6008905090565b5f806104b6610c83565b90506104d78185856104c88589610b7f565b6104d29190611726565b610c8a565b600191505092915050565b6104ea610c83565b73ffffffffffffffffffffffffffffffffffffffff1673eb9781e4c1e6ebfd2c9cf65b0f6bf2d7d255b7dd73ffffffffffffffffffffffffffffffffffffffff161461056b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610562906117a3565b60405180910390fd5b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105fc61113c565b6106055f6111ba565b565b5f5b8484905081101561078757848482818110610627576106266117c1565b5b905060200201602081019061063c91906114dc565b73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8225f86865f6040516106bf9493929190611830565b60405180910390a360075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16858583818110610712576107116117c1565b5b905060200201602081019061072791906114dc565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161076c919061143f565b60405180910390a3808061077f90611873565b915050610609565b5050505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546107c4906116c9565b80601f01602080910402602001604051908101604052809291908181526020018280546107f0906116c9565b801561083b5780601f106108125761010080835404028352916020019161083b565b820191905f5260205f20905b81548152906001019060200180831161081e57829003601f168201915b5050505050905090565b5f5b838390508110156108f1573073ffffffffffffffffffffffffffffffffffffffff1684848381811061087c5761087b6117c1565b5b905060200201602081019061089191906114dc565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108d6919061143f565b60405180910390a380806108e990611873565b915050610847565b50505050565b5f5b84849050811015610a7757848482818110610917576109166117c1565b5b905060200201602081019061092c91906114dc565b73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822855f80876040516109af94939291906118ba565b60405180910390a38484828181106109ca576109c96117c1565b5b90506020020160208101906109df91906114dc565b73ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a5c919061143f565b60405180910390a38080610a6f90611873565b9150506108f9565b5050505050565b5f80610a88610c83565b90505f610a958286610b7f565b905083811015610ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad19061196d565b60405180910390fd5b610ae78286868403610c8a565b60019250505092915050565b5f80610afd610c83565b9050610b0a818585610ed8565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b72919061143f565b60405180910390a3505050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610c0961113c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e906119fb565b60405180910390fd5b610c80816111ba565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cef90611a89565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5d90611b17565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e40919061143f565b60405180910390a3505050565b5f610e588484610b7f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ed25781811015610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb90611b7f565b60405180910390fd5b610ed18484848403610c8a565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3d90611c0d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fab90611c9b565b60405180910390fd5b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f90611d29565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611123919061143f565b60405180910390a361113684848461127b565b50505050565b611144610c83565b73ffffffffffffffffffffffffffffffffffffffff1661116261078e565b73ffffffffffffffffffffffffffffffffffffffff16146111b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111af906117a3565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156112b757808201518184015260208101905061129c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6112dc82611280565b6112e6818561128a565b93506112f681856020860161129a565b6112ff816112c2565b840191505092915050565b5f6020820190508181035f83015261132281846112d2565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61135b82611332565b9050919050565b61136b81611351565b8114611375575f80fd5b50565b5f8135905061138681611362565b92915050565b5f819050919050565b61139e8161138c565b81146113a8575f80fd5b50565b5f813590506113b981611395565b92915050565b5f80604083850312156113d5576113d461132a565b5b5f6113e285828601611378565b92505060206113f3858286016113ab565b9150509250929050565b5f8115159050919050565b611411816113fd565b82525050565b5f60208201905061142a5f830184611408565b92915050565b6114398161138c565b82525050565b5f6020820190506114525f830184611430565b92915050565b5f805f6060848603121561146f5761146e61132a565b5b5f61147c86828701611378565b935050602061148d86828701611378565b925050604061149e868287016113ab565b9150509250925092565b5f60ff82169050919050565b6114bd816114a8565b82525050565b5f6020820190506114d65f8301846114b4565b92915050565b5f602082840312156114f1576114f061132a565b5b5f6114fe84828501611378565b91505092915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261152857611527611507565b5b8235905067ffffffffffffffff8111156115455761154461150b565b5b6020830191508360208202830111156115615761156061150f565b5b9250929050565b5f805f80606085870312156115805761157f61132a565b5b5f85013567ffffffffffffffff81111561159d5761159c61132e565b5b6115a987828801611513565b945094505060206115bc878288016113ab565b92505060406115cd878288016113ab565b91505092959194509250565b6115e281611351565b82525050565b5f6020820190506115fb5f8301846115d9565b92915050565b5f805f604084860312156116185761161761132a565b5b5f84013567ffffffffffffffff8111156116355761163461132e565b5b61164186828701611513565b93509350506020611654868287016113ab565b9150509250925092565b5f80604083850312156116745761167361132a565b5b5f61168185828601611378565b925050602061169285828601611378565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806116e057607f821691505b6020821081036116f3576116f261169c565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6117308261138c565b915061173b8361138c565b9250828201905080821115611753576117526116f9565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61178d60208361128a565b915061179882611759565b602082019050919050565b5f6020820190508181035f8301526117ba81611781565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050919050565b5f819050919050565b5f61181a611815611810846117ee565b6117f7565b61138c565b9050919050565b61182a81611800565b82525050565b5f6080820190506118435f830187611821565b6118506020830186611430565b61185d6040830185611430565b61186a6060830184611821565b95945050505050565b5f61187d8261138c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036118af576118ae6116f9565b5b600182019050919050565b5f6080820190506118cd5f830187611430565b6118da6020830186611821565b6118e76040830185611821565b6118f46060830184611430565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61195760258361128a565b9150611962826118fd565b604082019050919050565b5f6020820190508181035f8301526119848161194b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6119e560268361128a565b91506119f08261198b565b604082019050919050565b5f6020820190508181035f830152611a12816119d9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611a7360248361128a565b9150611a7e82611a19565b604082019050919050565b5f6020820190508181035f830152611aa081611a67565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611b0160228361128a565b9150611b0c82611aa7565b604082019050919050565b5f6020820190508181035f830152611b2e81611af5565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611b69601d8361128a565b9150611b7482611b35565b602082019050919050565b5f6020820190508181035f830152611b9681611b5d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611bf760258361128a565b9150611c0282611b9d565b604082019050919050565b5f6020820190508181035f830152611c2481611beb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611c8560238361128a565b9150611c9082611c2b565b604082019050919050565b5f6020820190508181035f830152611cb281611c79565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611d1360268361128a565b9150611d1e82611cb9565b604082019050919050565b5f6020820190508181035f830152611d4081611d07565b905091905056fea264697066735822122063daab33899a3623921ca89bdcb404a570696c9bcc7d53e1723dadfde2d1be8364736f6c63430008140033

Deployed Bytecode Sourcemap

8004:11468:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8662:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11969:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10738:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12750:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9624:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13454:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8402:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10909:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5991:103;;;:::i;:::-;;10254:292;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5350:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8881:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9724:225;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9955:291;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14195:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11242:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10554:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11498:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6249:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8662:100;8716:13;8749:5;8742:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8662:100;:::o;11969:201::-;12052:4;12069:13;12085:12;:10;:12::i;:::-;12069:28;;12108:32;12117:5;12124:7;12133:6;12108:8;:32::i;:::-;12158:4;12151:11;;;11969:201;;;;:::o;10738:108::-;10799:7;10826:12;;10819:19;;10738:108;:::o;12750:295::-;12881:4;12898:15;12916:12;:10;:12::i;:::-;12898:30;;12939:38;12955:4;12961:7;12970:6;12939:15;:38::i;:::-;12988:27;12998:4;13004:2;13008:6;12988:9;:27::i;:::-;13033:4;13026:11;;;12750:295;;;;;:::o;9624:92::-;9682:5;9707:1;9700:8;;9624:92;:::o;13454:238::-;13542:4;13559:13;13575:12;:10;:12::i;:::-;13559:28;;13598:64;13607:5;13614:7;13651:10;13623:25;13633:5;13640:7;13623:9;:25::i;:::-;:38;;;;:::i;:::-;13598:8;:64::i;:::-;13680:4;13673:11;;;13454:238;;;;:::o;8402:190::-;8509:12;:10;:12::i;:::-;8463:58;;:42;:58;;;8455:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;8577:7;8569:5;;:15;;;;;;;;;;;;;;;;;;8402:190;:::o;10909:127::-;10983:7;11010:9;:18;11020:7;11010:18;;;;;;;;;;;;;;;;11003:25;;10909:127;;;:::o;5991:103::-;5236:13;:11;:13::i;:::-;6056:30:::1;6083:1;6056:18;:30::i;:::-;5991:103::o:0;10254:292::-;10358:9;10353:186;10377:11;;:18;;10373:1;:22;10353:186;;;10456:11;;10468:1;10456:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10422:49;;10427:10;;;;;;;;;;;10422:49;;;10439:1;10442:3;10447:4;10453:1;10422:49;;;;;;;;;:::i;:::-;;;;;;;;10516:5;;;;;;;;;;;10491:36;;10500:11;;10512:1;10500:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10491:36;;;10523:3;10491:36;;;;;;:::i;:::-;;;;;;;;10397:3;;;;;:::i;:::-;;;;10353:186;;;;10254:292;;;;:::o;5350:87::-;5396:7;5423:6;;;;;;;;;;;5416:13;;5350:87;:::o;8881:104::-;8937:13;8970:7;8963:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8881:104;:::o;9724:225::-;9818:9;9813:129;9837:11;;:18;;9833:1;:22;9813:129;;;9915:4;9882:48;;9891:11;;9903:1;9891:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;9882:48;;;9922:7;9882:48;;;;;;:::i;:::-;;;;;;;;9857:3;;;;;:::i;:::-;;;;9813:129;;;;9724:225;;;:::o;9955:291::-;10057:9;10052:187;10076:11;;:18;;10072:1;:22;10052:187;;;10155:11;;10167:1;10155:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10121:49;;10126:10;;;;;;;;;;;10121:49;;;10138:3;10143:1;10146;10149:4;10121:49;;;;;;;;;:::i;:::-;;;;;;;;10206:11;;10218:1;10206:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10190:37;;10199:5;;;;;;;;;;;10190:37;;;10222:4;10190:37;;;;;;:::i;:::-;;;;;;;;10096:3;;;;;:::i;:::-;;;;10052:187;;;;9955:291;;;;:::o;14195:436::-;14288:4;14305:13;14321:12;:10;:12::i;:::-;14305:28;;14344:24;14371:25;14381:5;14388:7;14371:9;:25::i;:::-;14344:52;;14435:15;14415:16;:35;;14407:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14528:60;14537:5;14544:7;14572:15;14553:16;:34;14528:8;:60::i;:::-;14619:4;14612:11;;;;14195:436;;;;:::o;11242:193::-;11321:4;11338:13;11354:12;:10;:12::i;:::-;11338:28;;11377;11387:5;11394:2;11398:6;11377:9;:28::i;:::-;11423:4;11416:11;;;11242:193;;;;:::o;10554:119::-;10655:3;10639:26;;10648:5;10639:26;;;10660:4;10639:26;;;;;;:::i;:::-;;;;;;;;10554:119;;;:::o;11498:151::-;11587:7;11614:11;:18;11626:5;11614:18;;;;;;;;;;;;;;;:27;11633:7;11614:27;;;;;;;;;;;;;;;;11607:34;;11498:151;;;;:::o;6249:201::-;5236:13;:11;:13::i;:::-;6358:1:::1;6338:22;;:8;:22;;::::0;6330:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6414:28;6433:8;6414:18;:28::i;:::-;6249:201:::0;:::o;4059:98::-;4112:7;4139:10;4132:17;;4059:98;:::o;17107:380::-;17260:1;17243:19;;:5;:19;;;17235:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17341:1;17322:21;;:7;:21;;;17314:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17425:6;17395:11;:18;17407:5;17395:18;;;;;;;;;;;;;;;:27;17414:7;17395:27;;;;;;;;;;;;;;;:36;;;;17463:7;17447:32;;17456:5;17447:32;;;17472:6;17447:32;;;;;;:::i;:::-;;;;;;;;17107:380;;;:::o;17778:453::-;17913:24;17940:25;17950:5;17957:7;17940:9;:25::i;:::-;17913:52;;18000:17;17980:16;:37;17976:248;;18062:6;18042:16;:26;;18034:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18146:51;18155:5;18162:7;18190:6;18171:16;:25;18146:8;:51::i;:::-;17976:248;17902:329;17778:453;;;:::o;15101:791::-;15248:1;15232:18;;:4;:18;;;15224:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15325:1;15311:16;;:2;:16;;;15303:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15382:19;15404:9;:15;15414:4;15404:15;;;;;;;;;;;;;;;;15382:37;;15453:6;15438:11;:21;;15430:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15570:6;15556:11;:20;15538:9;:15;15548:4;15538:15;;;;;;;;;;;;;;;:38;;;;15773:6;15756:9;:13;15766:2;15756:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15823:2;15808:26;;15817:4;15808:26;;;15827:6;15808:26;;;;;;:::i;:::-;;;;;;;;15847:37;15867:4;15873:2;15877:6;15847:19;:37::i;:::-;15213:679;15101:791;;;:::o;5515:132::-;5590:12;:10;:12::i;:::-;5579:23;;:7;:5;:7::i;:::-;:23;;;5571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5515:132::o;6610:191::-;6684:16;6703:6;;;;;;;;;;;6684:25;;6729:8;6720:6;;:17;;;;;;;;;;;;;;;;;;6784:8;6753:40;;6774:8;6753:40;;;;;;;;;;;;6673:128;6610:191;:::o;18835: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:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:117::-;5297:1;5294;5287:12;5311:117;5420:1;5417;5410:12;5434:117;5543:1;5540;5533:12;5574:568;5647:8;5657:6;5707:3;5700:4;5692:6;5688:17;5684:27;5674:122;;5715:79;;:::i;:::-;5674:122;5828:6;5815:20;5805:30;;5858:18;5850:6;5847:30;5844:117;;;5880:79;;:::i;:::-;5844:117;5994:4;5986:6;5982:17;5970:29;;6048:3;6040:4;6032:6;6028:17;6018:8;6014:32;6011:41;6008:128;;;6055:79;;:::i;:::-;6008:128;5574:568;;;;;:::o;6148:849::-;6252:6;6260;6268;6276;6325:2;6313:9;6304:7;6300:23;6296:32;6293:119;;;6331:79;;:::i;:::-;6293:119;6479:1;6468:9;6464:17;6451:31;6509:18;6501:6;6498:30;6495:117;;;6531:79;;:::i;:::-;6495:117;6644:80;6716:7;6707:6;6696:9;6692:22;6644:80;:::i;:::-;6626:98;;;;6422:312;6773:2;6799:53;6844:7;6835:6;6824:9;6820:22;6799:53;:::i;:::-;6789:63;;6744:118;6901:2;6927:53;6972:7;6963:6;6952:9;6948:22;6927:53;:::i;:::-;6917:63;;6872:118;6148:849;;;;;;;:::o;7003:118::-;7090:24;7108:5;7090:24;:::i;:::-;7085:3;7078:37;7003:118;;:::o;7127:222::-;7220:4;7258:2;7247:9;7243:18;7235:26;;7271:71;7339:1;7328:9;7324:17;7315:6;7271:71;:::i;:::-;7127:222;;;;:::o;7355:704::-;7450:6;7458;7466;7515:2;7503:9;7494:7;7490:23;7486:32;7483:119;;;7521:79;;:::i;:::-;7483:119;7669:1;7658:9;7654:17;7641:31;7699:18;7691:6;7688:30;7685:117;;;7721:79;;:::i;:::-;7685:117;7834:80;7906:7;7897:6;7886:9;7882:22;7834:80;:::i;:::-;7816:98;;;;7612:312;7963:2;7989:53;8034:7;8025:6;8014:9;8010:22;7989:53;:::i;:::-;7979:63;;7934:118;7355:704;;;;;:::o;8065:474::-;8133:6;8141;8190:2;8178:9;8169:7;8165:23;8161:32;8158:119;;;8196:79;;:::i;:::-;8158:119;8316:1;8341:53;8386:7;8377:6;8366:9;8362:22;8341:53;:::i;:::-;8331:63;;8287:117;8443:2;8469:53;8514:7;8505:6;8494:9;8490:22;8469:53;:::i;:::-;8459:63;;8414:118;8065:474;;;;;:::o;8545:180::-;8593:77;8590:1;8583:88;8690:4;8687:1;8680:15;8714:4;8711:1;8704:15;8731:320;8775:6;8812:1;8806:4;8802:12;8792:22;;8859:1;8853:4;8849:12;8880:18;8870:81;;8936:4;8928:6;8924:17;8914:27;;8870:81;8998:2;8990:6;8987:14;8967:18;8964:38;8961:84;;9017:18;;:::i;:::-;8961:84;8782:269;8731:320;;;:::o;9057:180::-;9105:77;9102:1;9095:88;9202:4;9199:1;9192:15;9226:4;9223:1;9216:15;9243:191;9283:3;9302:20;9320:1;9302:20;:::i;:::-;9297:25;;9336:20;9354:1;9336:20;:::i;:::-;9331:25;;9379:1;9376;9372:9;9365:16;;9400:3;9397:1;9394:10;9391:36;;;9407:18;;:::i;:::-;9391:36;9243:191;;;;:::o;9440:182::-;9580:34;9576:1;9568:6;9564:14;9557:58;9440:182;:::o;9628:366::-;9770:3;9791:67;9855:2;9850:3;9791:67;:::i;:::-;9784:74;;9867:93;9956:3;9867:93;:::i;:::-;9985:2;9980:3;9976:12;9969:19;;9628:366;;;:::o;10000:419::-;10166:4;10204:2;10193:9;10189:18;10181:26;;10253:9;10247:4;10243:20;10239:1;10228:9;10224:17;10217:47;10281:131;10407:4;10281:131;:::i;:::-;10273:139;;10000:419;;;:::o;10425:180::-;10473:77;10470:1;10463:88;10570:4;10567:1;10560:15;10594:4;10591:1;10584:15;10611:85;10656:7;10685:5;10674:16;;10611:85;;;:::o;10702:60::-;10730:3;10751:5;10744:12;;10702:60;;;:::o;10768:158::-;10826:9;10859:61;10877:42;10886:32;10912:5;10886:32;:::i;:::-;10877:42;:::i;:::-;10859:61;:::i;:::-;10846:74;;10768:158;;;:::o;10932:147::-;11027:45;11066:5;11027:45;:::i;:::-;11022:3;11015:58;10932:147;;:::o;11085:585::-;11278:4;11316:3;11305:9;11301:19;11293:27;;11330:79;11406:1;11395:9;11391:17;11382:6;11330:79;:::i;:::-;11419:72;11487:2;11476:9;11472:18;11463:6;11419:72;:::i;:::-;11501;11569:2;11558:9;11554:18;11545:6;11501:72;:::i;:::-;11583:80;11659:2;11648:9;11644:18;11635:6;11583:80;:::i;:::-;11085:585;;;;;;;:::o;11676:233::-;11715:3;11738:24;11756:5;11738:24;:::i;:::-;11729:33;;11784:66;11777:5;11774:77;11771:103;;11854:18;;:::i;:::-;11771:103;11901:1;11894:5;11890:13;11883:20;;11676:233;;;:::o;11915:585::-;12108:4;12146:3;12135:9;12131:19;12123:27;;12160:71;12228:1;12217:9;12213:17;12204:6;12160:71;:::i;:::-;12241:80;12317:2;12306:9;12302:18;12293:6;12241:80;:::i;:::-;12331;12407:2;12396:9;12392:18;12383:6;12331:80;:::i;:::-;12421:72;12489:2;12478:9;12474:18;12465:6;12421:72;:::i;:::-;11915:585;;;;;;;:::o;12506:224::-;12646:34;12642:1;12634:6;12630:14;12623:58;12715:7;12710:2;12702:6;12698:15;12691:32;12506:224;:::o;12736:366::-;12878:3;12899:67;12963:2;12958:3;12899:67;:::i;:::-;12892:74;;12975:93;13064:3;12975:93;:::i;:::-;13093:2;13088:3;13084:12;13077:19;;12736:366;;;:::o;13108:419::-;13274:4;13312:2;13301:9;13297:18;13289:26;;13361:9;13355:4;13351:20;13347:1;13336:9;13332:17;13325:47;13389:131;13515:4;13389:131;:::i;:::-;13381:139;;13108:419;;;:::o;13533:225::-;13673:34;13669:1;13661:6;13657:14;13650:58;13742:8;13737:2;13729:6;13725:15;13718:33;13533:225;:::o;13764:366::-;13906:3;13927:67;13991:2;13986:3;13927:67;:::i;:::-;13920:74;;14003:93;14092:3;14003:93;:::i;:::-;14121:2;14116:3;14112:12;14105:19;;13764:366;;;:::o;14136:419::-;14302:4;14340:2;14329:9;14325:18;14317:26;;14389:9;14383:4;14379:20;14375:1;14364:9;14360:17;14353:47;14417:131;14543:4;14417:131;:::i;:::-;14409:139;;14136:419;;;:::o;14561:223::-;14701:34;14697:1;14689:6;14685:14;14678:58;14770:6;14765:2;14757:6;14753:15;14746:31;14561:223;:::o;14790:366::-;14932:3;14953:67;15017:2;15012:3;14953:67;:::i;:::-;14946:74;;15029:93;15118:3;15029:93;:::i;:::-;15147:2;15142:3;15138:12;15131:19;;14790:366;;;:::o;15162:419::-;15328:4;15366:2;15355:9;15351:18;15343:26;;15415:9;15409:4;15405:20;15401:1;15390:9;15386:17;15379:47;15443:131;15569:4;15443:131;:::i;:::-;15435:139;;15162:419;;;:::o;15587:221::-;15727:34;15723:1;15715:6;15711:14;15704:58;15796:4;15791:2;15783:6;15779:15;15772:29;15587:221;:::o;15814:366::-;15956:3;15977:67;16041:2;16036:3;15977:67;:::i;:::-;15970:74;;16053:93;16142:3;16053:93;:::i;:::-;16171:2;16166:3;16162:12;16155:19;;15814:366;;;:::o;16186:419::-;16352:4;16390:2;16379:9;16375:18;16367:26;;16439:9;16433:4;16429:20;16425:1;16414:9;16410:17;16403:47;16467:131;16593:4;16467:131;:::i;:::-;16459:139;;16186:419;;;:::o;16611:179::-;16751:31;16747:1;16739:6;16735:14;16728:55;16611:179;:::o;16796:366::-;16938:3;16959:67;17023:2;17018:3;16959:67;:::i;:::-;16952:74;;17035:93;17124:3;17035:93;:::i;:::-;17153:2;17148:3;17144:12;17137:19;;16796:366;;;:::o;17168:419::-;17334:4;17372:2;17361:9;17357:18;17349:26;;17421:9;17415:4;17411:20;17407:1;17396:9;17392:17;17385:47;17449:131;17575:4;17449:131;:::i;:::-;17441:139;;17168:419;;;:::o;17593:224::-;17733:34;17729:1;17721:6;17717:14;17710:58;17802:7;17797:2;17789:6;17785:15;17778:32;17593:224;:::o;17823:366::-;17965:3;17986:67;18050:2;18045:3;17986:67;:::i;:::-;17979:74;;18062:93;18151:3;18062:93;:::i;:::-;18180:2;18175:3;18171:12;18164:19;;17823:366;;;:::o;18195:419::-;18361:4;18399:2;18388:9;18384:18;18376:26;;18448:9;18442:4;18438:20;18434:1;18423:9;18419:17;18412:47;18476:131;18602:4;18476:131;:::i;:::-;18468:139;;18195:419;;;:::o;18620:222::-;18760:34;18756:1;18748:6;18744:14;18737:58;18829:5;18824:2;18816:6;18812:15;18805:30;18620:222;:::o;18848:366::-;18990:3;19011:67;19075:2;19070:3;19011:67;:::i;:::-;19004:74;;19087:93;19176:3;19087:93;:::i;:::-;19205:2;19200:3;19196:12;19189:19;;18848:366;;;:::o;19220:419::-;19386:4;19424:2;19413:9;19409:18;19401:26;;19473:9;19467:4;19463:20;19459:1;19448:9;19444:17;19437:47;19501:131;19627:4;19501:131;:::i;:::-;19493:139;;19220:419;;;:::o;19645:225::-;19785:34;19781:1;19773:6;19769:14;19762:58;19854:8;19849:2;19841:6;19837:15;19830:33;19645:225;:::o;19876:366::-;20018:3;20039:67;20103:2;20098:3;20039:67;:::i;:::-;20032:74;;20115:93;20204:3;20115:93;:::i;:::-;20233:2;20228:3;20224:12;20217:19;;19876:366;;;:::o;20248:419::-;20414:4;20452:2;20441:9;20437:18;20429:26;;20501:9;20495:4;20491:20;20487:1;20476:9;20472:17;20465:47;20529:131;20655:4;20529:131;:::i;:::-;20521:139;;20248:419;;;:::o

Swarm Source

ipfs://63daab33899a3623921ca89bdcb404a570696c9bcc7d53e1723dadfde2d1be83

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.