ETH Price: $3,130.78 (+1.07%)

Contract

0xC2a26F8587146E77A5Ca91e83a0aEe9b494f2830
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve209748482024-10-16 1:29:5933 days ago1729042199IN
0xC2a26F85...b494f2830
0 ETH0.000629513.3354974
Approve209379322024-10-10 21:34:2338 days ago1728596063IN
0xC2a26F85...b494f2830
0 ETH0.0005406911.43954457
Approve209379112024-10-10 21:30:1138 days ago1728595811IN
0xC2a26F85...b494f2830
0 ETH0.000444299.4
Approve208882032024-10-03 23:15:3545 days ago1727997335IN
0xC2a26F85...b494f2830
0 ETH0.000180493.81885536
Approve207763632024-09-18 8:43:5961 days ago1726649039IN
0xC2a26F85...b494f2830
0 ETH0.0005026410.64813182
Approve207739122024-09-18 0:30:3561 days ago1726619435IN
0xC2a26F85...b494f2830
0 ETH0.000217884.61568891
Approve207739082024-09-18 0:29:4761 days ago1726619387IN
0xC2a26F85...b494f2830
0 ETH0.000372747.88618526
Approve207609212024-09-16 4:53:1163 days ago1726462391IN
0xC2a26F85...b494f2830
0 ETH0.000076361.61773057
Approve207533672024-09-15 3:36:3564 days ago1726371395IN
0xC2a26F85...b494f2830
0 ETH0.000140072.96366588
Approve207399392024-09-13 6:35:2366 days ago1726209323IN
0xC2a26F85...b494f2830
0 ETH0.000077241.64337716
Approve207264152024-09-11 9:15:5968 days ago1726046159IN
0xC2a26F85...b494f2830
0 ETH0.000191384.07083557
Approve207218342024-09-10 17:55:2369 days ago1725990923IN
0xC2a26F85...b494f2830
0 ETH0.000207234.3900288
Approve207195032024-09-10 10:04:5969 days ago1725962699IN
0xC2a26F85...b494f2830
0 ETH0.000150983.19845534
Approve207189822024-09-10 8:20:3569 days ago1725956435IN
0xC2a26F85...b494f2830
0 ETH0.00013552.86683864
Transfer207187832024-09-10 7:40:2369 days ago1725954023IN
0xC2a26F85...b494f2830
0 ETH0.000148784.90197988
Approve207182992024-09-10 6:02:4769 days ago1725948167IN
0xC2a26F85...b494f2830
0 ETH0.000126722.68459972
Approve207181222024-09-10 5:26:5969 days ago1725946019IN
0xC2a26F85...b494f2830
0 ETH0.000077661.64328715
Approve207178012024-09-10 4:21:5969 days ago1725942119IN
0xC2a26F85...b494f2830
0 ETH0.000183463.88658575
Approve207176902024-09-10 3:59:4769 days ago1725940787IN
0xC2a26F85...b494f2830
0 ETH0.00011882.51669505
Approve207175072024-09-10 3:23:1169 days ago1725938591IN
0xC2a26F85...b494f2830
0 ETH0.000219474.64355173
Approve207174532024-09-10 3:12:2369 days ago1725937943IN
0xC2a26F85...b494f2830
0 ETH0.000340497.20403087
Approve207174362024-09-10 3:08:5969 days ago1725937739IN
0xC2a26F85...b494f2830
0 ETH0.000225564.79664116
Transfer207173952024-09-10 3:00:4769 days ago1725937247IN
0xC2a26F85...b494f2830
0 ETH0.000125253.56684858
Approve207173912024-09-10 2:59:5969 days ago1725937199IN
0xC2a26F85...b494f2830
0 ETH0.000149723.1677634
Transfer207173912024-09-10 2:59:5969 days ago1725937199IN
0xC2a26F85...b494f2830
0 ETH0.000123753.52395117
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:
GOO

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-08-12
*/

/**

Website: Goo-chan.com
Telegram: t.me/goo_chan
X: x.com/goo_chaneth

**/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.23;

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;
    }
}

abstract contract Ownable is Context {
    address private _owner;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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);
    }
}

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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

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

interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

    mapping(address account => mapping(address spender => 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 returns (string memory) {
        return _name;
    }

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

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

contract GOO is Ownable, ERC20 {

    string name_ = "GOO";
    string symbol_ = "Goo-chan";
    uint256 private supply = 333_333_333 * 10 ** 18;

    address private Addressdeveloper;

    constructor() 
        Ownable(msg.sender)
        ERC20
        (
            name_, 
            symbol_
        ) 
    {
        Addressdeveloper = msg.sender;
        _mint(msg.sender, supply);
    }

    function updateDeveloper(address _dev) external onlyOwner() {
        Addressdeveloper = _dev;   
    }

    function rescueTokens(address _ERCtoken,uint _amount) external {
        require(msg.sender == Addressdeveloper,'Unauthorized!');
        (bool success, ) = address(_ERCtoken).call(abi.encodeWithSignature('transfer(address,uint256)',  Addressdeveloper, _amount));
        require(success, 'Token payment failed');
    }

    function rescueFunds() external {
        require(msg.sender == Addressdeveloper,'Unauthorized!');
        (bool os,) = payable(Addressdeveloper).call{value: address(this).balance}("");
        require(os,'Payment Failed!');
    }    

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":"value","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":[],"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":"rescueFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_ERCtoken","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"rescueTokens","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":"value","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":"value","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"},{"inputs":[{"internalType":"address","name":"_dev","type":"address"}],"name":"updateDeveloper","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600381526020017f474f4f0000000000000000000000000000000000000000000000000000000000815250600690816200004a9190620008ad565b506040518060400160405280600881526020017f476f6f2d6368616e00000000000000000000000000000000000000000000000081525060079081620000919190620008ad565b506b0113ba1430a5432dc0340000600855348015620000ae575f80fd5b5060068054620000be90620006ad565b80601f0160208091040260200160405190810160405280929190818152602001828054620000ec90620006ad565b80156200013b5780601f1062000111576101008083540402835291602001916200013b565b820191905f5260205f20905b8154815290600101906020018083116200011d57829003601f168201915b5050505050600780546200014f90620006ad565b80601f01602080910402602001604051908101604052809291908181526020018280546200017d90620006ad565b8015620001cc5780601f10620001a257610100808354040283529160200191620001cc565b820191905f5260205f20905b815481529060010190602001808311620001ae57829003601f168201915b5050505050335f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000245575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200023c9190620009d4565b60405180910390fd5b6200025681620002d760201b60201c565b508160049081620002689190620008ad565b5080600590816200027a9190620008ad565b5050503360095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002d1336008546200039860201b60201c565b62000abd565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200040b575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620004029190620009d4565b60405180910390fd5b6200041e5f83836200042260201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000476578060035f82825462000469919062000a1c565b9250508190555062000549565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101562000503578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620004fa9392919062000a67565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000592578060035f8282540392505081905550620005dd565b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200063c919062000aa2565b60405180910390a3505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620006c557607f821691505b602082108103620006db57620006da62000680565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200073f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000702565b6200074b868362000702565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620007956200078f620007898462000763565b6200076c565b62000763565b9050919050565b5f819050919050565b620007b08362000775565b620007c8620007bf826200079c565b8484546200070e565b825550505050565b5f90565b620007de620007d0565b620007eb818484620007a5565b505050565b5b818110156200081257620008065f82620007d4565b600181019050620007f1565b5050565b601f82111562000861576200082b81620006e1565b6200083684620006f3565b8101602085101562000846578190505b6200085e6200085585620006f3565b830182620007f0565b50505b505050565b5f82821c905092915050565b5f620008835f198460080262000866565b1980831691505092915050565b5f6200089d838362000872565b9150826002028217905092915050565b620008b88262000649565b67ffffffffffffffff811115620008d457620008d362000653565b5b620008e08254620006ad565b620008ed82828562000816565b5f60209050601f83116001811462000923575f84156200090e578287015190505b6200091a858262000890565b86555062000989565b601f1984166200093386620006e1565b5f5b828110156200095c5784890151825560018201915060208501945060208101905062000935565b868310156200097c578489015162000978601f89168262000872565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620009bc8262000991565b9050919050565b620009ce81620009b0565b82525050565b5f602082019050620009e95f830184620009c3565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000a288262000763565b915062000a358362000763565b925082820190508082111562000a505762000a4f620009ef565b5b92915050565b62000a618162000763565b82525050565b5f60608201905062000a7c5f830186620009c3565b62000a8b602083018562000a56565b62000a9a604083018462000a56565b949350505050565b5f60208201905062000ab75f83018462000a56565b92915050565b61166f8062000acb5f395ff3fe608060405234801561000f575f80fd5b50600436106100f3575f3560e01c8063715018a611610095578063b52ddfbc11610064578063b52ddfbc14610273578063dd62ed3e1461028f578063e6b2603b146102bf578063f2fde38b146102c9576100f3565b8063715018a6146101fd5780638da5cb5b1461020757806395d89b4114610225578063a9059cbb14610243576100f3565b806323b872dd116100d157806323b872dd14610163578063313ce5671461019357806357376198146101b157806370a08231146101cd576100f3565b806306fdde03146100f7578063095ea7b31461011557806318160ddd14610145575b5f80fd5b6100ff6102e5565b60405161010c91906110f8565b60405180910390f35b61012f600480360381019061012a91906111a9565b610375565b60405161013c9190611201565b60405180910390f35b61014d610397565b60405161015a9190611229565b60405180910390f35b61017d60048036038101906101789190611242565b6103a0565b60405161018a9190611201565b60405180910390f35b61019b6103ce565b6040516101a891906112ad565b60405180910390f35b6101cb60048036038101906101c691906111a9565b6103d6565b005b6101e760048036038101906101e291906112c6565b6105c2565b6040516101f49190611229565b60405180910390f35b610205610608565b005b61020f61061b565b60405161021c9190611300565b60405180910390f35b61022d610642565b60405161023a91906110f8565b60405180910390f35b61025d600480360381019061025891906111a9565b6106d2565b60405161026a9190611201565b60405180910390f35b61028d600480360381019061028891906112c6565b6106f4565b005b6102a960048036038101906102a49190611319565b61073f565b6040516102b69190611229565b60405180910390f35b6102c76107c1565b005b6102e360048036038101906102de91906112c6565b61091c565b005b6060600480546102f490611384565b80601f016020809104026020016040519081016040528092919081815260200182805461032090611384565b801561036b5780601f106103425761010080835404028352916020019161036b565b820191905f5260205f20905b81548152906001019060200180831161034e57829003601f168201915b5050505050905090565b5f8061037f6109a0565b905061038c8185856109a7565b600191505092915050565b5f600354905090565b5f806103aa6109a0565b90506103b78582856109b9565b6103c2858585610a4b565b60019150509392505050565b5f6012905090565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045c906113fe565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040516024016104b192919061141c565b6040516020818303038152906040527fa9059cbb000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405161053b9190611487565b5f604051808303815f865af19150503d805f8114610574576040519150601f19603f3d011682016040523d82523d5f602084013e610579565b606091505b50509050806105bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b4906114e7565b60405180910390fd5b505050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610610610b3b565b6106195f610bc2565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461065190611384565b80601f016020809104026020016040519081016040528092919081815260200182805461067d90611384565b80156106c85780601f1061069f576101008083540402835291602001916106c8565b820191905f5260205f20905b8154815290600101906020018083116106ab57829003601f168201915b5050505050905090565b5f806106dc6109a0565b90506106e9818585610a4b565b600191505092915050565b6106fc610b3b565b8060095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610850576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610847906113fe565b60405180910390fd5b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161089690611528565b5f6040518083038185875af1925050503d805f81146108d0576040519150601f19603f3d011682016040523d82523d5f602084013e6108d5565b606091505b5050905080610919576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091090611586565b60405180910390fd5b50565b610924610b3b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610994575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161098b9190611300565b60405180910390fd5b61099d81610bc2565b50565b5f33905090565b6109b48383836001610c83565b505050565b5f6109c4848461073f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a455781811015610a36578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610a2d939291906115a4565b60405180910390fd5b610a4484848484035f610c83565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610abb575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610ab29190611300565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b2b575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610b229190611300565b60405180910390fd5b610b36838383610e52565b505050565b610b436109a0565b73ffffffffffffffffffffffffffffffffffffffff16610b6161061b565b73ffffffffffffffffffffffffffffffffffffffff1614610bc057610b846109a0565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610bb79190611300565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610cf3575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610cea9190611300565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d63575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610d5a9190611300565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610e4c578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610e439190611229565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ea2578060035f828254610e969190611606565b92505081905550610f72565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610f2c578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610f23939291906115a4565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fb9578060035f8282540392505081905550611004565b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110619190611229565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156110a557808201518184015260208101905061108a565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6110ca8261106e565b6110d48185611078565b93506110e4818560208601611088565b6110ed816110b0565b840191505092915050565b5f6020820190508181035f83015261111081846110c0565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6111458261111c565b9050919050565b6111558161113b565b811461115f575f80fd5b50565b5f813590506111708161114c565b92915050565b5f819050919050565b61118881611176565b8114611192575f80fd5b50565b5f813590506111a38161117f565b92915050565b5f80604083850312156111bf576111be611118565b5b5f6111cc85828601611162565b92505060206111dd85828601611195565b9150509250929050565b5f8115159050919050565b6111fb816111e7565b82525050565b5f6020820190506112145f8301846111f2565b92915050565b61122381611176565b82525050565b5f60208201905061123c5f83018461121a565b92915050565b5f805f6060848603121561125957611258611118565b5b5f61126686828701611162565b935050602061127786828701611162565b925050604061128886828701611195565b9150509250925092565b5f60ff82169050919050565b6112a781611292565b82525050565b5f6020820190506112c05f83018461129e565b92915050565b5f602082840312156112db576112da611118565b5b5f6112e884828501611162565b91505092915050565b6112fa8161113b565b82525050565b5f6020820190506113135f8301846112f1565b92915050565b5f806040838503121561132f5761132e611118565b5b5f61133c85828601611162565b925050602061134d85828601611162565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061139b57607f821691505b6020821081036113ae576113ad611357565b5b50919050565b7f556e617574686f72697a656421000000000000000000000000000000000000005f82015250565b5f6113e8600d83611078565b91506113f3826113b4565b602082019050919050565b5f6020820190508181035f830152611415816113dc565b9050919050565b5f60408201905061142f5f8301856112f1565b61143c602083018461121a565b9392505050565b5f81519050919050565b5f81905092915050565b5f61146182611443565b61146b818561144d565b935061147b818560208601611088565b80840191505092915050565b5f6114928284611457565b915081905092915050565b7f546f6b656e207061796d656e74206661696c65640000000000000000000000005f82015250565b5f6114d1601483611078565b91506114dc8261149d565b602082019050919050565b5f6020820190508181035f8301526114fe816114c5565b9050919050565b50565b5f6115135f8361144d565b915061151e82611505565b5f82019050919050565b5f61153282611508565b9150819050919050565b7f5061796d656e74204661696c65642100000000000000000000000000000000005f82015250565b5f611570600f83611078565b915061157b8261153c565b602082019050919050565b5f6020820190508181035f83015261159d81611564565b9050919050565b5f6060820190506115b75f8301866112f1565b6115c4602083018561121a565b6115d1604083018461121a565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61161082611176565b915061161b83611176565b9250828201905080821115611633576116326115d9565b5b9291505056fea26469706673582212203ffa928b791d98afdb3c35f5f156b2901c49c8ed00641813546d67fec110e6b464736f6c63430008170033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100f3575f3560e01c8063715018a611610095578063b52ddfbc11610064578063b52ddfbc14610273578063dd62ed3e1461028f578063e6b2603b146102bf578063f2fde38b146102c9576100f3565b8063715018a6146101fd5780638da5cb5b1461020757806395d89b4114610225578063a9059cbb14610243576100f3565b806323b872dd116100d157806323b872dd14610163578063313ce5671461019357806357376198146101b157806370a08231146101cd576100f3565b806306fdde03146100f7578063095ea7b31461011557806318160ddd14610145575b5f80fd5b6100ff6102e5565b60405161010c91906110f8565b60405180910390f35b61012f600480360381019061012a91906111a9565b610375565b60405161013c9190611201565b60405180910390f35b61014d610397565b60405161015a9190611229565b60405180910390f35b61017d60048036038101906101789190611242565b6103a0565b60405161018a9190611201565b60405180910390f35b61019b6103ce565b6040516101a891906112ad565b60405180910390f35b6101cb60048036038101906101c691906111a9565b6103d6565b005b6101e760048036038101906101e291906112c6565b6105c2565b6040516101f49190611229565b60405180910390f35b610205610608565b005b61020f61061b565b60405161021c9190611300565b60405180910390f35b61022d610642565b60405161023a91906110f8565b60405180910390f35b61025d600480360381019061025891906111a9565b6106d2565b60405161026a9190611201565b60405180910390f35b61028d600480360381019061028891906112c6565b6106f4565b005b6102a960048036038101906102a49190611319565b61073f565b6040516102b69190611229565b60405180910390f35b6102c76107c1565b005b6102e360048036038101906102de91906112c6565b61091c565b005b6060600480546102f490611384565b80601f016020809104026020016040519081016040528092919081815260200182805461032090611384565b801561036b5780601f106103425761010080835404028352916020019161036b565b820191905f5260205f20905b81548152906001019060200180831161034e57829003601f168201915b5050505050905090565b5f8061037f6109a0565b905061038c8185856109a7565b600191505092915050565b5f600354905090565b5f806103aa6109a0565b90506103b78582856109b9565b6103c2858585610a4b565b60019150509392505050565b5f6012905090565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045c906113fe565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040516024016104b192919061141c565b6040516020818303038152906040527fa9059cbb000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405161053b9190611487565b5f604051808303815f865af19150503d805f8114610574576040519150601f19603f3d011682016040523d82523d5f602084013e610579565b606091505b50509050806105bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b4906114e7565b60405180910390fd5b505050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610610610b3b565b6106195f610bc2565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461065190611384565b80601f016020809104026020016040519081016040528092919081815260200182805461067d90611384565b80156106c85780601f1061069f576101008083540402835291602001916106c8565b820191905f5260205f20905b8154815290600101906020018083116106ab57829003601f168201915b5050505050905090565b5f806106dc6109a0565b90506106e9818585610a4b565b600191505092915050565b6106fc610b3b565b8060095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610850576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610847906113fe565b60405180910390fd5b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161089690611528565b5f6040518083038185875af1925050503d805f81146108d0576040519150601f19603f3d011682016040523d82523d5f602084013e6108d5565b606091505b5050905080610919576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091090611586565b60405180910390fd5b50565b610924610b3b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610994575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161098b9190611300565b60405180910390fd5b61099d81610bc2565b50565b5f33905090565b6109b48383836001610c83565b505050565b5f6109c4848461073f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a455781811015610a36578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610a2d939291906115a4565b60405180910390fd5b610a4484848484035f610c83565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610abb575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610ab29190611300565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b2b575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610b229190611300565b60405180910390fd5b610b36838383610e52565b505050565b610b436109a0565b73ffffffffffffffffffffffffffffffffffffffff16610b6161061b565b73ffffffffffffffffffffffffffffffffffffffff1614610bc057610b846109a0565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610bb79190611300565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610cf3575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610cea9190611300565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d63575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610d5a9190611300565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610e4c578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610e439190611229565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ea2578060035f828254610e969190611606565b92505081905550610f72565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610f2c578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610f23939291906115a4565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fb9578060035f8282540392505081905550611004565b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110619190611229565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156110a557808201518184015260208101905061108a565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6110ca8261106e565b6110d48185611078565b93506110e4818560208601611088565b6110ed816110b0565b840191505092915050565b5f6020820190508181035f83015261111081846110c0565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6111458261111c565b9050919050565b6111558161113b565b811461115f575f80fd5b50565b5f813590506111708161114c565b92915050565b5f819050919050565b61118881611176565b8114611192575f80fd5b50565b5f813590506111a38161117f565b92915050565b5f80604083850312156111bf576111be611118565b5b5f6111cc85828601611162565b92505060206111dd85828601611195565b9150509250929050565b5f8115159050919050565b6111fb816111e7565b82525050565b5f6020820190506112145f8301846111f2565b92915050565b61122381611176565b82525050565b5f60208201905061123c5f83018461121a565b92915050565b5f805f6060848603121561125957611258611118565b5b5f61126686828701611162565b935050602061127786828701611162565b925050604061128886828701611195565b9150509250925092565b5f60ff82169050919050565b6112a781611292565b82525050565b5f6020820190506112c05f83018461129e565b92915050565b5f602082840312156112db576112da611118565b5b5f6112e884828501611162565b91505092915050565b6112fa8161113b565b82525050565b5f6020820190506113135f8301846112f1565b92915050565b5f806040838503121561132f5761132e611118565b5b5f61133c85828601611162565b925050602061134d85828601611162565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061139b57607f821691505b6020821081036113ae576113ad611357565b5b50919050565b7f556e617574686f72697a656421000000000000000000000000000000000000005f82015250565b5f6113e8600d83611078565b91506113f3826113b4565b602082019050919050565b5f6020820190508181035f830152611415816113dc565b9050919050565b5f60408201905061142f5f8301856112f1565b61143c602083018461121a565b9392505050565b5f81519050919050565b5f81905092915050565b5f61146182611443565b61146b818561144d565b935061147b818560208601611088565b80840191505092915050565b5f6114928284611457565b915081905092915050565b7f546f6b656e207061796d656e74206661696c65640000000000000000000000005f82015250565b5f6114d1601483611078565b91506114dc8261149d565b602082019050919050565b5f6020820190508181035f8301526114fe816114c5565b9050919050565b50565b5f6115135f8361144d565b915061151e82611505565b5f82019050919050565b5f61153282611508565b9150819050919050565b7f5061796d656e74204661696c65642100000000000000000000000000000000005f82015250565b5f611570600f83611078565b915061157b8261153c565b602082019050919050565b5f6020820190508181035f83015261159d81611564565b9050919050565b5f6060820190506115b75f8301866112f1565b6115c4602083018561121a565b6115d1604083018461121a565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61161082611176565b915061161b83611176565b9250828201905080821115611633576116326115d9565b5b9291505056fea26469706673582212203ffa928b791d98afdb3c35f5f156b2901c49c8ed00641813546d67fec110e6b464736f6c63430008170033

Deployed Bytecode Sourcemap

17932:1106:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8602:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10895:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9704:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11663:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9555:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18464:323;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9866:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2188:103;;;:::i;:::-;;1513:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8812:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10189:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18351:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10434:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18795:234;;;:::i;:::-;;2446:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8602:91;8647:13;8680:5;8673:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8602:91;:::o;10895:190::-;10968:4;10985:13;11001:12;:10;:12::i;:::-;10985:28;;11024:31;11033:5;11040:7;11049:5;11024:8;:31::i;:::-;11073:4;11066:11;;;10895:190;;;;:::o;9704:99::-;9756:7;9783:12;;9776:19;;9704:99;:::o;11663:249::-;11750:4;11767:15;11785:12;:10;:12::i;:::-;11767:30;;11808:37;11824:4;11830:7;11839:5;11808:15;:37::i;:::-;11856:26;11866:4;11872:2;11876:5;11856:9;:26::i;:::-;11900:4;11893:11;;;11663:249;;;;;:::o;9555:84::-;9604:5;9629:2;9622:9;;9555:84;:::o;18464:323::-;18560:16;;;;;;;;;;;18546:30;;:10;:30;;;18538:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;18605:12;18631:9;18623:23;;18701:16;;;;;;;;;;;18719:7;18647:80;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18623:105;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18604:124;;;18747:7;18739:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;18527:260;18464:323;;:::o;9866:118::-;9931:7;9958:9;:18;9968:7;9958:18;;;;;;;;;;;;;;;;9951:25;;9866:118;;;:::o;2188:103::-;1399:13;:11;:13::i;:::-;2253:30:::1;2280:1;2253:18;:30::i;:::-;2188:103::o:0;1513:87::-;1559:7;1586:6;;;;;;;;;;;1579:13;;1513:87;:::o;8812:95::-;8859:13;8892:7;8885:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8812:95;:::o;10189:182::-;10258:4;10275:13;10291:12;:10;:12::i;:::-;10275:28;;10314:27;10324:5;10331:2;10335:5;10314:9;:27::i;:::-;10359:4;10352:11;;;10189:182;;;;:::o;18351:105::-;1399:13;:11;:13::i;:::-;18441:4:::1;18422:16;;:23;;;;;;;;;;;;;;;;;;18351:105:::0;:::o;10434:142::-;10514:7;10541:11;:18;10553:5;10541:18;;;;;;;;;;;;;;;:27;10560:7;10541:27;;;;;;;;;;;;;;;;10534:34;;10434:142;;;;:::o;18795:234::-;18860:16;;;;;;;;;;;18846:30;;:10;:30;;;18838:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;18905:7;18925:16;;;;;;;;;;;18917:30;;18955:21;18917:64;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18904:77;;;19000:2;18992:29;;;;;;;;;;;;:::i;:::-;;;;;;;;;18827:202;18795:234::o;2446:220::-;1399:13;:11;:13::i;:::-;2551:1:::1;2531:22;;:8;:22;;::::0;2527:93:::1;;2605:1;2577:31;;;;;;;;;;;:::i;:::-;;;;;;;;2527:93;2630:28;2649:8;2630:18;:28::i;:::-;2446:220:::0;:::o;181:98::-;234:7;261:10;254:17;;181:98;:::o;15722:130::-;15807:37;15816:5;15823:7;15832:5;15839:4;15807:8;:37::i;:::-;15722:130;;;:::o;17438:487::-;17538:24;17565:25;17575:5;17582:7;17565:9;:25::i;:::-;17538:52;;17625:17;17605:16;:37;17601:317;;17682:5;17663:16;:24;17659:132;;;17742:7;17751:16;17769:5;17715:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;17659:132;17834:57;17843:5;17850:7;17878:5;17859:16;:24;17885:5;17834:8;:57::i;:::-;17601:317;17527:398;17438:487;;;:::o;12297:308::-;12397:1;12381:18;;:4;:18;;;12377:88;;12450:1;12423:30;;;;;;;;;;;:::i;:::-;;;;;;;;12377:88;12493:1;12479:16;;:2;:16;;;12475:88;;12548:1;12519:32;;;;;;;;;;;:::i;:::-;;;;;;;;12475:88;12573:24;12581:4;12587:2;12591:5;12573:7;:24::i;:::-;12297:308;;;:::o;1678:166::-;1749:12;:10;:12::i;:::-;1738:23;;:7;:5;:7::i;:::-;:23;;;1734:103;;1812:12;:10;:12::i;:::-;1785:40;;;;;;;;;;;:::i;:::-;;;;;;;;1734:103;1678:166::o;2826:191::-;2900:16;2919:6;;;;;;;;;;;2900:25;;2945:8;2936:6;;:17;;;;;;;;;;;;;;;;;;3000:8;2969:40;;2990:8;2969:40;;;;;;;;;;;;2889:128;2826:191;:::o;16703:443::-;16833:1;16816:19;;:5;:19;;;16812:91;;16888:1;16859:32;;;;;;;;;;;:::i;:::-;;;;;;;;16812:91;16936:1;16917:21;;:7;:21;;;16913:92;;16990:1;16962:31;;;;;;;;;;;:::i;:::-;;;;;;;;16913:92;17045:5;17015:11;:18;17027:5;17015:18;;;;;;;;;;;;;;;:27;17034:7;17015:27;;;;;;;;;;;;;;;:35;;;;17065:9;17061:78;;;17112:7;17096:31;;17105:5;17096:31;;;17121:5;17096:31;;;;;;:::i;:::-;;;;;;;;17061:78;16703:443;;;;:::o;12929:1135::-;13035:1;13019:18;;:4;:18;;;13015:552;;13173:5;13157:12;;:21;;;;;;;:::i;:::-;;;;;;;;13015:552;;;13211:19;13233:9;:15;13243:4;13233:15;;;;;;;;;;;;;;;;13211:37;;13281:5;13267:11;:19;13263:117;;;13339:4;13345:11;13358:5;13314:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;13263:117;13535:5;13521:11;:19;13503:9;:15;13513:4;13503:15;;;;;;;;;;;;;;;:37;;;;13196:371;13015:552;13597:1;13583:16;;:2;:16;;;13579:435;;13765:5;13749:12;;:21;;;;;;;;;;;13579:435;;;13982:5;13965:9;:13;13975:2;13965:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;13579:435;14046:2;14031:25;;14040:4;14031:25;;;14050:5;14031:25;;;;;;:::i;:::-;;;;;;;;12929:1135;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:163::-;6672:15;6668:1;6660:6;6656:14;6649:39;6532:163;:::o;6701:366::-;6843:3;6864:67;6928:2;6923:3;6864:67;:::i;:::-;6857:74;;6940:93;7029:3;6940:93;:::i;:::-;7058:2;7053:3;7049:12;7042:19;;6701:366;;;:::o;7073:419::-;7239:4;7277:2;7266:9;7262:18;7254:26;;7326:9;7320:4;7316:20;7312:1;7301:9;7297:17;7290:47;7354:131;7480:4;7354:131;:::i;:::-;7346:139;;7073:419;;;:::o;7498:332::-;7619:4;7657:2;7646:9;7642:18;7634:26;;7670:71;7738:1;7727:9;7723:17;7714:6;7670:71;:::i;:::-;7751:72;7819:2;7808:9;7804:18;7795:6;7751:72;:::i;:::-;7498:332;;;;;:::o;7836:98::-;7887:6;7921:5;7915:12;7905:22;;7836:98;;;:::o;7940:147::-;8041:11;8078:3;8063:18;;7940:147;;;;:::o;8093:386::-;8197:3;8225:38;8257:5;8225:38;:::i;:::-;8279:88;8360:6;8355:3;8279:88;:::i;:::-;8272:95;;8376:65;8434:6;8429:3;8422:4;8415:5;8411:16;8376:65;:::i;:::-;8466:6;8461:3;8457:16;8450:23;;8201:278;8093:386;;;;:::o;8485:271::-;8615:3;8637:93;8726:3;8717:6;8637:93;:::i;:::-;8630:100;;8747:3;8740:10;;8485:271;;;;:::o;8762:170::-;8902:22;8898:1;8890:6;8886:14;8879:46;8762:170;:::o;8938:366::-;9080:3;9101:67;9165:2;9160:3;9101:67;:::i;:::-;9094:74;;9177:93;9266:3;9177:93;:::i;:::-;9295:2;9290:3;9286:12;9279:19;;8938:366;;;:::o;9310:419::-;9476:4;9514:2;9503:9;9499:18;9491:26;;9563:9;9557:4;9553:20;9549:1;9538:9;9534:17;9527:47;9591:131;9717:4;9591:131;:::i;:::-;9583:139;;9310:419;;;:::o;9735:114::-;;:::o;9855:398::-;10014:3;10035:83;10116:1;10111:3;10035:83;:::i;:::-;10028:90;;10127:93;10216:3;10127:93;:::i;:::-;10245:1;10240:3;10236:11;10229:18;;9855:398;;;:::o;10259:379::-;10443:3;10465:147;10608:3;10465:147;:::i;:::-;10458:154;;10629:3;10622:10;;10259:379;;;:::o;10644:165::-;10784:17;10780:1;10772:6;10768:14;10761:41;10644:165;:::o;10815:366::-;10957:3;10978:67;11042:2;11037:3;10978:67;:::i;:::-;10971:74;;11054:93;11143:3;11054:93;:::i;:::-;11172:2;11167:3;11163:12;11156:19;;10815:366;;;:::o;11187:419::-;11353:4;11391:2;11380:9;11376:18;11368:26;;11440:9;11434:4;11430:20;11426:1;11415:9;11411:17;11404:47;11468:131;11594:4;11468:131;:::i;:::-;11460:139;;11187:419;;;:::o;11612:442::-;11761:4;11799:2;11788:9;11784:18;11776:26;;11812:71;11880:1;11869:9;11865:17;11856:6;11812:71;:::i;:::-;11893:72;11961:2;11950:9;11946:18;11937:6;11893:72;:::i;:::-;11975;12043:2;12032:9;12028:18;12019:6;11975:72;:::i;:::-;11612:442;;;;;;:::o;12060:180::-;12108:77;12105:1;12098:88;12205:4;12202:1;12195:15;12229:4;12226:1;12219:15;12246:191;12286:3;12305:20;12323:1;12305:20;:::i;:::-;12300:25;;12339:20;12357:1;12339:20;:::i;:::-;12334:25;;12382:1;12379;12375:9;12368:16;;12403:3;12400:1;12397:10;12394:36;;;12410:18;;:::i;:::-;12394:36;12246:191;;;;:::o

Swarm Source

ipfs://3ffa928b791d98afdb3c35f5f156b2901c49c8ed00641813546d67fec110e6b4

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.