ETH Price: $3,310.19 (-10.00%)

Contract

0x48B847cF774A5710F36f594b11fc10E2E59BbA72
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer214423072024-12-20 7:41:471 hr ago1734680507IN
0x48B847cF...2E59BbA72
0 ETH0.0004058.54275904
Transfer214384862024-12-19 18:54:2314 hrs ago1734634463IN
0x48B847cF...2E59BbA72
0 ETH0.0016334653.91493721
Transfer214384602024-12-19 18:49:1114 hrs ago1734634151IN
0x48B847cF...2E59BbA72
0 ETH0.00258654.56046176
Transfer214375902024-12-19 15:54:2317 hrs ago1734623663IN
0x48B847cF...2E59BbA72
0 ETH0.000868828.68760769
Transfer214375532024-12-19 15:46:5917 hrs ago1734623219IN
0x48B847cF...2E59BbA72
0 ETH0.0013842529.21298559
Transfer214357592024-12-19 9:45:4723 hrs ago1734601547IN
0x48B847cF...2E59BbA72
0 ETH0.000555810.65059378
Transfer214356402024-12-19 9:21:4724 hrs ago1734600107IN
0x48B847cF...2E59BbA72
0 ETH0.0005448310.44046381
Approve214354652024-12-19 8:46:3524 hrs ago1734597995IN
0x48B847cF...2E59BbA72
0 ETH0.0005387911.40811699
Transfer214354312024-12-19 8:39:4724 hrs ago1734597587IN
0x48B847cF...2E59BbA72
0 ETH0.0006447712.35557458
Transfer214353822024-12-19 8:29:4725 hrs ago1734596987IN
0x48B847cF...2E59BbA72
0 ETH0.0005959111.41936207
Transfer214351382024-12-19 7:40:4725 hrs ago1734594047IN
0x48B847cF...2E59BbA72
0 ETH0.0005681910.88804599
Transfer214324522024-12-18 22:39:2334 hrs ago1734561563IN
0x48B847cF...2E59BbA72
0 ETH0.0005395215.37755338
Transfer214324232024-12-18 22:33:3535 hrs ago1734561215IN
0x48B847cF...2E59BbA72
0 ETH0.0005119316.89716019
Approve214289352024-12-18 10:51:2346 hrs ago1734519083IN
0x48B847cF...2E59BbA72
0 ETH0.0009188319.45489205
Transfer214289322024-12-18 10:50:4746 hrs ago1734519047IN
0x48B847cF...2E59BbA72
0 ETH0.0010911920.91020204
Transfer214288622024-12-18 10:36:4746 hrs ago1734518207IN
0x48B847cF...2E59BbA72
0 ETH0.001249523.94370982
Transfer214231922024-12-17 15:36:232 days ago1734449783IN
0x48B847cF...2E59BbA72
0 ETH0.001613253.26742391
Transfer214231702024-12-17 15:31:592 days ago1734449519IN
0x48B847cF...2E59BbA72
0 ETH0.0021506945.38776898
Transfer214231322024-12-17 15:24:232 days ago1734449063IN
0x48B847cF...2E59BbA72
0 ETH0.001546644.08163338
Transfer214231082024-12-17 15:19:352 days ago1734448775IN
0x48B847cF...2E59BbA72
0 ETH0.0012526341.34501843
Approve214207502024-12-17 7:25:473 days ago1734420347IN
0x48B847cF...2E59BbA72
0 ETH0.000381438.07629081
Approve214134402024-12-16 6:58:594 days ago1734332339IN
0x48B847cF...2E59BbA72
0 ETH0.000379328.03170297
Transfer214134292024-12-16 6:56:474 days ago1734332207IN
0x48B847cF...2E59BbA72
0 ETH0.000499719.57575315
Transfer214097652024-12-15 18:40:234 days ago1734288023IN
0x48B847cF...2E59BbA72
0 ETH0.0003142110.37529574
Transfer214097392024-12-15 18:35:114 days ago1734287711IN
0x48B847cF...2E59BbA72
0 ETH0.000450159.5
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
WrappedToken

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-11-13
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol

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

// File: @openzeppelin/contracts/utils/Context.sol

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol

/**
 * @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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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:
     *
     * - `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");

        _beforeTokenTransfer(from, to, amount);

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

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

        _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 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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 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 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 {}
}

// File: @openzeppelin/contracts/access/Ownable.sol

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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);
    }
}

// File: contracts/WrappedToken.sol

contract WrappedToken is Context, Ownable, ERC20 {
    uint8 private _decimals;
    bytes4 public source;
    bytes32 public sourceAddress;

    constructor(
        bytes4 source_,
        bytes32 sourceAddress_,
        uint8 decimals_,
        string memory name,
        string memory symbol
    ) ERC20(name, symbol) {
        source = source_;
        sourceAddress = sourceAddress_;
        _decimals = decimals_;
    }

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

    function mint(address to, uint256 amount) public virtual onlyOwner {
        _mint(to, amount);
    }

    function burn(address from, uint256 amount) public virtual onlyOwner {
        _burn(from, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bytes4","name":"source_","type":"bytes4"},{"internalType":"bytes32","name":"sourceAddress_","type":"bytes32"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","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":[],"name":"source","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sourceAddress","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"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":"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"}]

60806040523480156200001157600080fd5b506040516200224a3803806200224a8339818101604052810190620000379190620004c7565b8181620000596200004d620000d860201b60201c565b620000e060201b60201c565b816004908051906020019062000071929190620001a4565b5080600590805190602001906200008a929190620001a4565b50505084600660016101000a81548163ffffffff021916908360e01c02179055508360078190555082600660006101000a81548160ff021916908360ff1602179055505050505050620005f2565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b290620005bc565b90600052602060002090601f016020900481019282620001d6576000855562000222565b82601f10620001f157805160ff191683800117855562000222565b8280016001018555821562000222579182015b828111156200022157825182559160200191906001019062000204565b5b50905062000231919062000235565b5090565b5b808211156200025057600081600090555060010162000236565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6200029f8162000268565b8114620002ab57600080fd5b50565b600081519050620002bf8162000294565b92915050565b6000819050919050565b620002da81620002c5565b8114620002e657600080fd5b50565b600081519050620002fa81620002cf565b92915050565b600060ff82169050919050565b620003188162000300565b81146200032457600080fd5b50565b60008151905062000338816200030d565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003938262000348565b810181811067ffffffffffffffff82111715620003b557620003b462000359565b5b80604052505050565b6000620003ca62000254565b9050620003d8828262000388565b919050565b600067ffffffffffffffff821115620003fb57620003fa62000359565b5b620004068262000348565b9050602081019050919050565b60005b838110156200043357808201518184015260208101905062000416565b8381111562000443576000848401525b50505050565b6000620004606200045a84620003dd565b620003be565b9050828152602081018484840111156200047f576200047e62000343565b5b6200048c84828562000413565b509392505050565b600082601f830112620004ac57620004ab6200033e565b5b8151620004be84826020860162000449565b91505092915050565b600080600080600060a08688031215620004e657620004e56200025e565b5b6000620004f688828901620002ae565b95505060206200050988828901620002e9565b94505060406200051c8882890162000327565b935050606086015167ffffffffffffffff81111562000540576200053f62000263565b5b6200054e8882890162000494565b925050608086015167ffffffffffffffff81111562000572576200057162000263565b5b620005808882890162000494565b9150509295509295909350565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005d557607f821691505b60208210811415620005ec57620005eb6200058d565b5b50919050565b611c4880620006026000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102d1578063a9059cbb14610301578063b0fa844414610331578063dd62ed3e1461034f578063f2fde38b1461037f57610116565b8063715018a61461026f5780638da5cb5b1461027957806395d89b41146102975780639dc29fac146102b557610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d557806340c10f191461020557806367e828bf1461022157806370a082311461023f57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b61012361039b565b60405161013091906111c0565b60405180910390f35b610153600480360381019061014e919061127b565b61042d565b60405161016091906112d6565b60405180910390f35b610171610450565b60405161017e9190611300565b60405180910390f35b6101a1600480360381019061019c919061131b565b61045a565b6040516101ae91906112d6565b60405180910390f35b6101bf610489565b6040516101cc919061138a565b60405180910390f35b6101ef60048036038101906101ea919061127b565b6104a0565b6040516101fc91906112d6565b60405180910390f35b61021f600480360381019061021a919061127b565b6104d7565b005b6102296104ed565b60405161023691906113e0565b60405180910390f35b610259600480360381019061025491906113fb565b610500565b6040516102669190611300565b60405180910390f35b610277610549565b005b61028161055d565b60405161028e9190611437565b60405180910390f35b61029f610586565b6040516102ac91906111c0565b60405180910390f35b6102cf60048036038101906102ca919061127b565b610618565b005b6102eb60048036038101906102e6919061127b565b61062e565b6040516102f891906112d6565b60405180910390f35b61031b6004803603810190610316919061127b565b6106a5565b60405161032891906112d6565b60405180910390f35b6103396106c8565b604051610346919061146b565b60405180910390f35b61036960048036038101906103649190611486565b6106ce565b6040516103769190611300565b60405180910390f35b610399600480360381019061039491906113fb565b610755565b005b6060600480546103aa906114f5565b80601f01602080910402602001604051908101604052809291908181526020018280546103d6906114f5565b80156104235780601f106103f857610100808354040283529160200191610423565b820191906000526020600020905b81548152906001019060200180831161040657829003601f168201915b5050505050905090565b6000806104386107d9565b90506104458185856107e1565b600191505092915050565b6000600354905090565b6000806104656107d9565b90506104728582856109ac565b61047d858585610a38565b60019150509392505050565b6000600660009054906101000a900460ff16905090565b6000806104ab6107d9565b90506104cc8185856104bd85896106ce565b6104c79190611556565b6107e1565b600191505092915050565b6104df610cb3565b6104e98282610d31565b5050565b600660019054906101000a900460e01b81565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610551610cb3565b61055b6000610e89565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610595906114f5565b80601f01602080910402602001604051908101604052809291908181526020018280546105c1906114f5565b801561060e5780601f106105e35761010080835404028352916020019161060e565b820191906000526020600020905b8154815290600101906020018083116105f157829003601f168201915b5050505050905090565b610620610cb3565b61062a8282610f4d565b5050565b6000806106396107d9565b9050600061064782866106ce565b90508381101561068c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106839061161e565b60405180910390fd5b61069982868684036107e1565b60019250505092915050565b6000806106b06107d9565b90506106bd818585610a38565b600191505092915050565b60075481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61075d610cb3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156107cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c4906116b0565b60405180910390fd5b6107d681610e89565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084890611742565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b8906117d4565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161099f9190611300565b60405180910390a3505050565b60006109b884846106ce565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a325781811015610a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1b90611840565b60405180910390fd5b610a3184848484036107e1565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9f906118d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0f90611964565b60405180910390fd5b610b2383838361111d565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba1906119f6565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c9a9190611300565b60405180910390a3610cad848484611122565b50505050565b610cbb6107d9565b73ffffffffffffffffffffffffffffffffffffffff16610cd961055d565b73ffffffffffffffffffffffffffffffffffffffff1614610d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2690611a62565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9890611ace565b60405180910390fd5b610dad6000838361111d565b8060036000828254610dbf9190611556565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e719190611300565b60405180910390a3610e8560008383611122565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb490611b60565b60405180910390fd5b610fc98260008361111d565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611050576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104790611bf2565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111049190611300565b60405180910390a361111883600084611122565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611161578082015181840152602081019050611146565b83811115611170576000848401525b50505050565b6000601f19601f8301169050919050565b600061119282611127565b61119c8185611132565b93506111ac818560208601611143565b6111b581611176565b840191505092915050565b600060208201905081810360008301526111da8184611187565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611212826111e7565b9050919050565b61122281611207565b811461122d57600080fd5b50565b60008135905061123f81611219565b92915050565b6000819050919050565b61125881611245565b811461126357600080fd5b50565b6000813590506112758161124f565b92915050565b60008060408385031215611292576112916111e2565b5b60006112a085828601611230565b92505060206112b185828601611266565b9150509250929050565b60008115159050919050565b6112d0816112bb565b82525050565b60006020820190506112eb60008301846112c7565b92915050565b6112fa81611245565b82525050565b600060208201905061131560008301846112f1565b92915050565b600080600060608486031215611334576113336111e2565b5b600061134286828701611230565b935050602061135386828701611230565b925050604061136486828701611266565b9150509250925092565b600060ff82169050919050565b6113848161136e565b82525050565b600060208201905061139f600083018461137b565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6113da816113a5565b82525050565b60006020820190506113f560008301846113d1565b92915050565b600060208284031215611411576114106111e2565b5b600061141f84828501611230565b91505092915050565b61143181611207565b82525050565b600060208201905061144c6000830184611428565b92915050565b6000819050919050565b61146581611452565b82525050565b6000602082019050611480600083018461145c565b92915050565b6000806040838503121561149d5761149c6111e2565b5b60006114ab85828601611230565b92505060206114bc85828601611230565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061150d57607f821691505b60208210811415611521576115206114c6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061156182611245565b915061156c83611245565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156115a1576115a0611527565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611608602583611132565b9150611613826115ac565b604082019050919050565b60006020820190508181036000830152611637816115fb565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061169a602683611132565b91506116a58261163e565b604082019050919050565b600060208201905081810360008301526116c98161168d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061172c602483611132565b9150611737826116d0565b604082019050919050565b6000602082019050818103600083015261175b8161171f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117be602283611132565b91506117c982611762565b604082019050919050565b600060208201905081810360008301526117ed816117b1565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061182a601d83611132565b9150611835826117f4565b602082019050919050565b600060208201905081810360008301526118598161181d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118bc602583611132565b91506118c782611860565b604082019050919050565b600060208201905081810360008301526118eb816118af565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061194e602383611132565b9150611959826118f2565b604082019050919050565b6000602082019050818103600083015261197d81611941565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119e0602683611132565b91506119eb82611984565b604082019050919050565b60006020820190508181036000830152611a0f816119d3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a4c602083611132565b9150611a5782611a16565b602082019050919050565b60006020820190508181036000830152611a7b81611a3f565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611ab8601f83611132565b9150611ac382611a82565b602082019050919050565b60006020820190508181036000830152611ae781611aab565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b4a602183611132565b9150611b5582611aee565b604082019050919050565b60006020820190508181036000830152611b7981611b3d565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bdc602283611132565b9150611be782611b80565b604082019050919050565b60006020820190508181036000830152611c0b81611bcf565b905091905056fea2646970667358221220b7eba138df23d9768cbe7cdf83e1300b5a994409654d7a89812e281a6b0f4ae664736f6c634300080900335741564500000000000000000000000000000000000000000000000000000000e9deefd3a4ecc5621f032f42a6ffe1ff2f7dd52567d80dc4bcc0f3fd8983d02d000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000005554e4954300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005554e495430000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102d1578063a9059cbb14610301578063b0fa844414610331578063dd62ed3e1461034f578063f2fde38b1461037f57610116565b8063715018a61461026f5780638da5cb5b1461027957806395d89b41146102975780639dc29fac146102b557610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d557806340c10f191461020557806367e828bf1461022157806370a082311461023f57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b61012361039b565b60405161013091906111c0565b60405180910390f35b610153600480360381019061014e919061127b565b61042d565b60405161016091906112d6565b60405180910390f35b610171610450565b60405161017e9190611300565b60405180910390f35b6101a1600480360381019061019c919061131b565b61045a565b6040516101ae91906112d6565b60405180910390f35b6101bf610489565b6040516101cc919061138a565b60405180910390f35b6101ef60048036038101906101ea919061127b565b6104a0565b6040516101fc91906112d6565b60405180910390f35b61021f600480360381019061021a919061127b565b6104d7565b005b6102296104ed565b60405161023691906113e0565b60405180910390f35b610259600480360381019061025491906113fb565b610500565b6040516102669190611300565b60405180910390f35b610277610549565b005b61028161055d565b60405161028e9190611437565b60405180910390f35b61029f610586565b6040516102ac91906111c0565b60405180910390f35b6102cf60048036038101906102ca919061127b565b610618565b005b6102eb60048036038101906102e6919061127b565b61062e565b6040516102f891906112d6565b60405180910390f35b61031b6004803603810190610316919061127b565b6106a5565b60405161032891906112d6565b60405180910390f35b6103396106c8565b604051610346919061146b565b60405180910390f35b61036960048036038101906103649190611486565b6106ce565b6040516103769190611300565b60405180910390f35b610399600480360381019061039491906113fb565b610755565b005b6060600480546103aa906114f5565b80601f01602080910402602001604051908101604052809291908181526020018280546103d6906114f5565b80156104235780601f106103f857610100808354040283529160200191610423565b820191906000526020600020905b81548152906001019060200180831161040657829003601f168201915b5050505050905090565b6000806104386107d9565b90506104458185856107e1565b600191505092915050565b6000600354905090565b6000806104656107d9565b90506104728582856109ac565b61047d858585610a38565b60019150509392505050565b6000600660009054906101000a900460ff16905090565b6000806104ab6107d9565b90506104cc8185856104bd85896106ce565b6104c79190611556565b6107e1565b600191505092915050565b6104df610cb3565b6104e98282610d31565b5050565b600660019054906101000a900460e01b81565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610551610cb3565b61055b6000610e89565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610595906114f5565b80601f01602080910402602001604051908101604052809291908181526020018280546105c1906114f5565b801561060e5780601f106105e35761010080835404028352916020019161060e565b820191906000526020600020905b8154815290600101906020018083116105f157829003601f168201915b5050505050905090565b610620610cb3565b61062a8282610f4d565b5050565b6000806106396107d9565b9050600061064782866106ce565b90508381101561068c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106839061161e565b60405180910390fd5b61069982868684036107e1565b60019250505092915050565b6000806106b06107d9565b90506106bd818585610a38565b600191505092915050565b60075481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61075d610cb3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156107cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c4906116b0565b60405180910390fd5b6107d681610e89565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084890611742565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b8906117d4565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161099f9190611300565b60405180910390a3505050565b60006109b884846106ce565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a325781811015610a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1b90611840565b60405180910390fd5b610a3184848484036107e1565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9f906118d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0f90611964565b60405180910390fd5b610b2383838361111d565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba1906119f6565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c9a9190611300565b60405180910390a3610cad848484611122565b50505050565b610cbb6107d9565b73ffffffffffffffffffffffffffffffffffffffff16610cd961055d565b73ffffffffffffffffffffffffffffffffffffffff1614610d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2690611a62565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9890611ace565b60405180910390fd5b610dad6000838361111d565b8060036000828254610dbf9190611556565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e719190611300565b60405180910390a3610e8560008383611122565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb490611b60565b60405180910390fd5b610fc98260008361111d565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611050576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104790611bf2565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111049190611300565b60405180910390a361111883600084611122565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611161578082015181840152602081019050611146565b83811115611170576000848401525b50505050565b6000601f19601f8301169050919050565b600061119282611127565b61119c8185611132565b93506111ac818560208601611143565b6111b581611176565b840191505092915050565b600060208201905081810360008301526111da8184611187565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611212826111e7565b9050919050565b61122281611207565b811461122d57600080fd5b50565b60008135905061123f81611219565b92915050565b6000819050919050565b61125881611245565b811461126357600080fd5b50565b6000813590506112758161124f565b92915050565b60008060408385031215611292576112916111e2565b5b60006112a085828601611230565b92505060206112b185828601611266565b9150509250929050565b60008115159050919050565b6112d0816112bb565b82525050565b60006020820190506112eb60008301846112c7565b92915050565b6112fa81611245565b82525050565b600060208201905061131560008301846112f1565b92915050565b600080600060608486031215611334576113336111e2565b5b600061134286828701611230565b935050602061135386828701611230565b925050604061136486828701611266565b9150509250925092565b600060ff82169050919050565b6113848161136e565b82525050565b600060208201905061139f600083018461137b565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6113da816113a5565b82525050565b60006020820190506113f560008301846113d1565b92915050565b600060208284031215611411576114106111e2565b5b600061141f84828501611230565b91505092915050565b61143181611207565b82525050565b600060208201905061144c6000830184611428565b92915050565b6000819050919050565b61146581611452565b82525050565b6000602082019050611480600083018461145c565b92915050565b6000806040838503121561149d5761149c6111e2565b5b60006114ab85828601611230565b92505060206114bc85828601611230565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061150d57607f821691505b60208210811415611521576115206114c6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061156182611245565b915061156c83611245565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156115a1576115a0611527565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611608602583611132565b9150611613826115ac565b604082019050919050565b60006020820190508181036000830152611637816115fb565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061169a602683611132565b91506116a58261163e565b604082019050919050565b600060208201905081810360008301526116c98161168d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061172c602483611132565b9150611737826116d0565b604082019050919050565b6000602082019050818103600083015261175b8161171f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117be602283611132565b91506117c982611762565b604082019050919050565b600060208201905081810360008301526117ed816117b1565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061182a601d83611132565b9150611835826117f4565b602082019050919050565b600060208201905081810360008301526118598161181d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118bc602583611132565b91506118c782611860565b604082019050919050565b600060208201905081810360008301526118eb816118af565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061194e602383611132565b9150611959826118f2565b604082019050919050565b6000602082019050818103600083015261197d81611941565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119e0602683611132565b91506119eb82611984565b604082019050919050565b60006020820190508181036000830152611a0f816119d3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a4c602083611132565b9150611a5782611a16565b602082019050919050565b60006020820190508181036000830152611a7b81611a3f565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611ab8601f83611132565b9150611ac382611a82565b602082019050919050565b60006020820190508181036000830152611ae781611aab565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b4a602183611132565b9150611b5582611aee565b604082019050919050565b60006020820190508181036000830152611b7981611b3d565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bdc602283611132565b9150611be782611b80565b604082019050919050565b60006020820190508181036000830152611c0b81611bcf565b905091905056fea2646970667358221220b7eba138df23d9768cbe7cdf83e1300b5a994409654d7a89812e281a6b0f4ae664736f6c63430008090033

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

5741564500000000000000000000000000000000000000000000000000000000e9deefd3a4ecc5621f032f42a6ffe1ff2f7dd52567d80dc4bcc0f3fd8983d02d000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000005554e4954300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005554e495430000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : source_ (bytes4): 0x57415645
Arg [1] : sourceAddress_ (bytes32): 0xe9deefd3a4ecc5621f032f42a6ffe1ff2f7dd52567d80dc4bcc0f3fd8983d02d
Arg [2] : decimals_ (uint8): 18
Arg [3] : name (string): UNIT0
Arg [4] : symbol (string): UNIT0

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 5741564500000000000000000000000000000000000000000000000000000000
Arg [1] : e9deefd3a4ecc5621f032f42a6ffe1ff2f7dd52567d80dc4bcc0f3fd8983d02d
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [4] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 554e495430000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [8] : 554e495430000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

19999:778:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6377:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8737:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7506:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9518:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20448:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10188:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20556:103;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20085:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7677:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19143:103;;;:::i;:::-;;18502:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6596:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20667:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10929:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8010:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20112:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8266:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19401:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6377:100;6431:13;6464:5;6457:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6377:100;:::o;8737:201::-;8820:4;8837:13;8853:12;:10;:12::i;:::-;8837:28;;8876:32;8885:5;8892:7;8901:6;8876:8;:32::i;:::-;8926:4;8919:11;;;8737:201;;;;:::o;7506:108::-;7567:7;7594:12;;7587:19;;7506:108;:::o;9518:261::-;9615:4;9632:15;9650:12;:10;:12::i;:::-;9632:30;;9673:38;9689:4;9695:7;9704:6;9673:15;:38::i;:::-;9722:27;9732:4;9738:2;9742:6;9722:9;:27::i;:::-;9767:4;9760:11;;;9518:261;;;;;:::o;20448:100::-;20506:5;20531:9;;;;;;;;;;;20524:16;;20448:100;:::o;10188:238::-;10276:4;10293:13;10309:12;:10;:12::i;:::-;10293:28;;10332:64;10341:5;10348:7;10385:10;10357:25;10367:5;10374:7;10357:9;:25::i;:::-;:38;;;;:::i;:::-;10332:8;:64::i;:::-;10414:4;10407:11;;;10188:238;;;;:::o;20556:103::-;18388:13;:11;:13::i;:::-;20634:17:::1;20640:2;20644:6;20634:5;:17::i;:::-;20556:103:::0;;:::o;20085:20::-;;;;;;;;;;;;;:::o;7677:127::-;7751:7;7778:9;:18;7788:7;7778:18;;;;;;;;;;;;;;;;7771:25;;7677:127;;;:::o;19143:103::-;18388:13;:11;:13::i;:::-;19208:30:::1;19235:1;19208:18;:30::i;:::-;19143:103::o:0;18502:87::-;18548:7;18575:6;;;;;;;;;;;18568:13;;18502:87;:::o;6596:104::-;6652:13;6685:7;6678:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6596:104;:::o;20667:107::-;18388:13;:11;:13::i;:::-;20747:19:::1;20753:4;20759:6;20747:5;:19::i;:::-;20667:107:::0;;:::o;10929:436::-;11022:4;11039:13;11055:12;:10;:12::i;:::-;11039:28;;11078:24;11105:25;11115:5;11122:7;11105:9;:25::i;:::-;11078:52;;11169:15;11149:16;:35;;11141:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11262:60;11271:5;11278:7;11306:15;11287:16;:34;11262:8;:60::i;:::-;11353:4;11346:11;;;;10929:436;;;;:::o;8010:193::-;8089:4;8106:13;8122:12;:10;:12::i;:::-;8106:28;;8145;8155:5;8162:2;8166:6;8145:9;:28::i;:::-;8191:4;8184:11;;;8010:193;;;;:::o;20112:28::-;;;;:::o;8266:151::-;8355:7;8382:11;:18;8394:5;8382:18;;;;;;;;;;;;;;;:27;8401:7;8382:27;;;;;;;;;;;;;;;;8375:34;;8266:151;;;;:::o;19401:201::-;18388:13;:11;:13::i;:::-;19510:1:::1;19490:22;;:8;:22;;;;19482:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;19566:28;19585:8;19566:18;:28::i;:::-;19401:201:::0;:::o;4018:98::-;4071:7;4098:10;4091:17;;4018:98;:::o;14922:346::-;15041:1;15024:19;;:5;:19;;;;15016:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15122:1;15103:21;;:7;:21;;;;15095:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15206:6;15176:11;:18;15188:5;15176:18;;;;;;;;;;;;;;;:27;15195:7;15176:27;;;;;;;;;;;;;;;:36;;;;15244:7;15228:32;;15237:5;15228:32;;;15253:6;15228:32;;;;;;:::i;:::-;;;;;;;;14922:346;;;:::o;15559:419::-;15660:24;15687:25;15697:5;15704:7;15687:9;:25::i;:::-;15660:52;;15747:17;15727:16;:37;15723:248;;15809:6;15789:16;:26;;15781:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15893:51;15902:5;15909:7;15937:6;15918:16;:25;15893:8;:51::i;:::-;15723:248;15649:329;15559:419;;;:::o;11835:806::-;11948:1;11932:18;;:4;:18;;;;11924:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12025:1;12011:16;;:2;:16;;;;12003:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12080:38;12101:4;12107:2;12111:6;12080:20;:38::i;:::-;12131:19;12153:9;:15;12163:4;12153:15;;;;;;;;;;;;;;;;12131:37;;12202:6;12187:11;:21;;12179:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12319:6;12305:11;:20;12287:9;:15;12297:4;12287:15;;;;;;;;;;;;;;;:38;;;;12522:6;12505:9;:13;12515:2;12505:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12572:2;12557:26;;12566:4;12557:26;;;12576:6;12557:26;;;;;;:::i;:::-;;;;;;;;12596:37;12616:4;12622:2;12626:6;12596:19;:37::i;:::-;11913:728;11835:806;;;:::o;18667:132::-;18742:12;:10;:12::i;:::-;18731:23;;:7;:5;:7::i;:::-;:23;;;18723:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18667:132::o;12928:548::-;13031:1;13012:21;;:7;:21;;;;13004:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;13082:49;13111:1;13115:7;13124:6;13082:20;:49::i;:::-;13160:6;13144:12;;:22;;;;;;;:::i;:::-;;;;;;;;13337:6;13315:9;:18;13325:7;13315:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;13391:7;13370:37;;13387:1;13370:37;;;13400:6;13370:37;;;;;;:::i;:::-;;;;;;;;13420:48;13448:1;13452:7;13461:6;13420:19;:48::i;:::-;12928:548;;:::o;19762:191::-;19836:16;19855:6;;;;;;;;;;;19836:25;;19881:8;19872:6;;:17;;;;;;;;;;;;;;;;;;19936:8;19905:40;;19926:8;19905:40;;;;;;;;;;;;19825:128;19762:191;:::o;13809:675::-;13912:1;13893:21;;:7;:21;;;;13885:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13965:49;13986:7;14003:1;14007:6;13965:20;:49::i;:::-;14027:22;14052:9;:18;14062:7;14052:18;;;;;;;;;;;;;;;;14027:43;;14107:6;14089:14;:24;;14081:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14226:6;14209:14;:23;14188:9;:18;14198:7;14188:18;;;;;;;;;;;;;;;:44;;;;14343:6;14327:12;;:22;;;;;;;;;;;14404:1;14378:37;;14387:7;14378:37;;;14408:6;14378:37;;;;;;:::i;:::-;;;;;;;;14428:48;14448:7;14465:1;14469:6;14428:19;:48::i;:::-;13874:610;13809:675;;:::o;16578:91::-;;;;:::o;17273:90::-;;;;:::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:149::-;4937:7;4977:66;4970:5;4966:78;4955:89;;4901:149;;;:::o;5056:115::-;5141:23;5158:5;5141:23;:::i;:::-;5136:3;5129:36;5056:115;;:::o;5177:218::-;5268:4;5306:2;5295:9;5291:18;5283:26;;5319:69;5385:1;5374:9;5370:17;5361:6;5319:69;:::i;:::-;5177:218;;;;:::o;5401:329::-;5460:6;5509:2;5497:9;5488:7;5484:23;5480:32;5477:119;;;5515:79;;:::i;:::-;5477:119;5635:1;5660:53;5705:7;5696:6;5685:9;5681:22;5660:53;:::i;:::-;5650:63;;5606:117;5401:329;;;;:::o;5736:118::-;5823:24;5841:5;5823:24;:::i;:::-;5818:3;5811:37;5736:118;;:::o;5860:222::-;5953:4;5991:2;5980:9;5976:18;5968:26;;6004:71;6072:1;6061:9;6057:17;6048:6;6004:71;:::i;:::-;5860:222;;;;:::o;6088:77::-;6125:7;6154:5;6143:16;;6088:77;;;:::o;6171:118::-;6258:24;6276:5;6258:24;:::i;:::-;6253:3;6246:37;6171:118;;:::o;6295:222::-;6388:4;6426:2;6415:9;6411:18;6403:26;;6439:71;6507:1;6496:9;6492:17;6483:6;6439:71;:::i;:::-;6295:222;;;;:::o;6523:474::-;6591:6;6599;6648:2;6636:9;6627:7;6623:23;6619:32;6616:119;;;6654:79;;:::i;:::-;6616:119;6774:1;6799:53;6844:7;6835:6;6824:9;6820:22;6799:53;:::i;:::-;6789:63;;6745:117;6901:2;6927:53;6972:7;6963:6;6952:9;6948:22;6927:53;:::i;:::-;6917:63;;6872:118;6523:474;;;;;:::o;7003:180::-;7051:77;7048:1;7041:88;7148:4;7145:1;7138:15;7172:4;7169:1;7162:15;7189:320;7233:6;7270:1;7264:4;7260:12;7250:22;;7317:1;7311:4;7307:12;7338:18;7328:81;;7394:4;7386:6;7382:17;7372:27;;7328:81;7456:2;7448:6;7445:14;7425:18;7422:38;7419:84;;;7475:18;;:::i;:::-;7419:84;7240:269;7189:320;;;:::o;7515:180::-;7563:77;7560:1;7553:88;7660:4;7657:1;7650:15;7684:4;7681:1;7674:15;7701:305;7741:3;7760:20;7778:1;7760:20;:::i;:::-;7755:25;;7794:20;7812:1;7794:20;:::i;:::-;7789:25;;7948:1;7880:66;7876:74;7873:1;7870:81;7867:107;;;7954:18;;:::i;:::-;7867:107;7998:1;7995;7991:9;7984:16;;7701:305;;;;:::o;8012:224::-;8152:34;8148:1;8140:6;8136:14;8129:58;8221:7;8216:2;8208:6;8204:15;8197:32;8012:224;:::o;8242:366::-;8384:3;8405:67;8469:2;8464:3;8405:67;:::i;:::-;8398:74;;8481:93;8570:3;8481:93;:::i;:::-;8599:2;8594:3;8590:12;8583:19;;8242:366;;;:::o;8614:419::-;8780:4;8818:2;8807:9;8803:18;8795:26;;8867:9;8861:4;8857:20;8853:1;8842:9;8838:17;8831:47;8895:131;9021:4;8895:131;:::i;:::-;8887:139;;8614:419;;;:::o;9039:225::-;9179:34;9175:1;9167:6;9163:14;9156:58;9248:8;9243:2;9235:6;9231:15;9224:33;9039:225;:::o;9270:366::-;9412:3;9433:67;9497:2;9492:3;9433:67;:::i;:::-;9426:74;;9509:93;9598:3;9509:93;:::i;:::-;9627:2;9622:3;9618:12;9611:19;;9270:366;;;:::o;9642:419::-;9808:4;9846:2;9835:9;9831:18;9823:26;;9895:9;9889:4;9885:20;9881:1;9870:9;9866:17;9859:47;9923:131;10049:4;9923:131;:::i;:::-;9915:139;;9642:419;;;:::o;10067:223::-;10207:34;10203:1;10195:6;10191:14;10184:58;10276:6;10271:2;10263:6;10259:15;10252:31;10067:223;:::o;10296:366::-;10438:3;10459:67;10523:2;10518:3;10459:67;:::i;:::-;10452:74;;10535:93;10624:3;10535:93;:::i;:::-;10653:2;10648:3;10644:12;10637:19;;10296:366;;;:::o;10668:419::-;10834:4;10872:2;10861:9;10857:18;10849:26;;10921:9;10915:4;10911:20;10907:1;10896:9;10892:17;10885:47;10949:131;11075:4;10949:131;:::i;:::-;10941:139;;10668:419;;;:::o;11093:221::-;11233:34;11229:1;11221:6;11217:14;11210:58;11302:4;11297:2;11289:6;11285:15;11278:29;11093:221;:::o;11320:366::-;11462:3;11483:67;11547:2;11542:3;11483:67;:::i;:::-;11476:74;;11559:93;11648:3;11559:93;:::i;:::-;11677:2;11672:3;11668:12;11661:19;;11320:366;;;:::o;11692:419::-;11858:4;11896:2;11885:9;11881:18;11873:26;;11945:9;11939:4;11935:20;11931:1;11920:9;11916:17;11909:47;11973:131;12099:4;11973:131;:::i;:::-;11965:139;;11692:419;;;:::o;12117:179::-;12257:31;12253:1;12245:6;12241:14;12234:55;12117:179;:::o;12302:366::-;12444:3;12465:67;12529:2;12524:3;12465:67;:::i;:::-;12458:74;;12541:93;12630:3;12541:93;:::i;:::-;12659:2;12654:3;12650:12;12643:19;;12302:366;;;:::o;12674:419::-;12840:4;12878:2;12867:9;12863:18;12855:26;;12927:9;12921:4;12917:20;12913:1;12902:9;12898:17;12891:47;12955:131;13081:4;12955:131;:::i;:::-;12947:139;;12674:419;;;:::o;13099:224::-;13239:34;13235:1;13227:6;13223:14;13216:58;13308:7;13303:2;13295:6;13291:15;13284:32;13099:224;:::o;13329:366::-;13471:3;13492:67;13556:2;13551:3;13492:67;:::i;:::-;13485:74;;13568:93;13657:3;13568:93;:::i;:::-;13686:2;13681:3;13677:12;13670:19;;13329:366;;;:::o;13701:419::-;13867:4;13905:2;13894:9;13890:18;13882:26;;13954:9;13948:4;13944:20;13940:1;13929:9;13925:17;13918:47;13982:131;14108:4;13982:131;:::i;:::-;13974:139;;13701:419;;;:::o;14126:222::-;14266:34;14262:1;14254:6;14250:14;14243:58;14335:5;14330:2;14322:6;14318:15;14311:30;14126:222;:::o;14354:366::-;14496:3;14517:67;14581:2;14576:3;14517:67;:::i;:::-;14510:74;;14593:93;14682:3;14593:93;:::i;:::-;14711:2;14706:3;14702:12;14695:19;;14354:366;;;:::o;14726:419::-;14892:4;14930:2;14919:9;14915:18;14907:26;;14979:9;14973:4;14969:20;14965:1;14954:9;14950:17;14943:47;15007:131;15133:4;15007:131;:::i;:::-;14999:139;;14726:419;;;:::o;15151:225::-;15291:34;15287:1;15279:6;15275:14;15268:58;15360:8;15355:2;15347:6;15343:15;15336:33;15151:225;:::o;15382:366::-;15524:3;15545:67;15609:2;15604:3;15545:67;:::i;:::-;15538:74;;15621:93;15710:3;15621:93;:::i;:::-;15739:2;15734:3;15730:12;15723:19;;15382:366;;;:::o;15754:419::-;15920:4;15958:2;15947:9;15943:18;15935:26;;16007:9;16001:4;15997:20;15993:1;15982:9;15978:17;15971:47;16035:131;16161:4;16035:131;:::i;:::-;16027:139;;15754:419;;;:::o;16179:182::-;16319:34;16315:1;16307:6;16303:14;16296:58;16179:182;:::o;16367:366::-;16509:3;16530:67;16594:2;16589:3;16530:67;:::i;:::-;16523:74;;16606:93;16695:3;16606:93;:::i;:::-;16724:2;16719:3;16715:12;16708:19;;16367:366;;;:::o;16739:419::-;16905:4;16943:2;16932:9;16928:18;16920:26;;16992:9;16986:4;16982:20;16978:1;16967:9;16963:17;16956:47;17020:131;17146:4;17020:131;:::i;:::-;17012:139;;16739:419;;;:::o;17164:181::-;17304:33;17300:1;17292:6;17288:14;17281:57;17164:181;:::o;17351:366::-;17493:3;17514:67;17578:2;17573:3;17514:67;:::i;:::-;17507:74;;17590:93;17679:3;17590:93;:::i;:::-;17708:2;17703:3;17699:12;17692:19;;17351:366;;;:::o;17723:419::-;17889:4;17927:2;17916:9;17912:18;17904:26;;17976:9;17970:4;17966:20;17962:1;17951:9;17947:17;17940:47;18004:131;18130:4;18004:131;:::i;:::-;17996:139;;17723:419;;;:::o;18148:220::-;18288:34;18284:1;18276:6;18272:14;18265:58;18357:3;18352:2;18344:6;18340:15;18333:28;18148:220;:::o;18374:366::-;18516:3;18537:67;18601:2;18596:3;18537:67;:::i;:::-;18530:74;;18613:93;18702:3;18613:93;:::i;:::-;18731:2;18726:3;18722:12;18715:19;;18374:366;;;:::o;18746:419::-;18912:4;18950:2;18939:9;18935:18;18927:26;;18999:9;18993:4;18989:20;18985:1;18974:9;18970:17;18963:47;19027:131;19153:4;19027:131;:::i;:::-;19019:139;;18746:419;;;:::o;19171:221::-;19311:34;19307:1;19299:6;19295:14;19288:58;19380:4;19375:2;19367:6;19363:15;19356:29;19171:221;:::o;19398:366::-;19540:3;19561:67;19625:2;19620:3;19561:67;:::i;:::-;19554:74;;19637:93;19726:3;19637:93;:::i;:::-;19755:2;19750:3;19746:12;19739:19;;19398:366;;;:::o;19770:419::-;19936:4;19974:2;19963:9;19959:18;19951:26;;20023:9;20017:4;20013:20;20009:1;19998:9;19994:17;19987:47;20051:131;20177:4;20051:131;:::i;:::-;20043:139;;19770:419;;;:::o

Swarm Source

ipfs://b7eba138df23d9768cbe7cdf83e1300b5a994409654d7a89812e281a6b0f4ae6

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.