ETH Price: $3,275.25 (+0.91%)
Gas: 2 Gwei

Contract

0x7AC168c81F4F3820Fa3F22603ce5864D6aB3C547
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve203202642024-07-16 16:27:4710 days ago1721147267IN
Accumulated Finance: stACME Token
0 ETH0.0009093819.25470275
Approve202011982024-06-30 1:23:3527 days ago1719710615IN
Accumulated Finance: stACME Token
0 ETH0.000100562.14404756
Approve201686392024-06-25 12:17:1131 days ago1719317831IN
Accumulated Finance: stACME Token
0 ETH0.000276845.86175699
Approve199994712024-06-01 20:50:4755 days ago1717275047IN
Accumulated Finance: stACME Token
0 ETH0.000268145.71674068
Approve199283272024-05-22 22:12:4765 days ago1716415967IN
Accumulated Finance: stACME Token
0 ETH0.000408998.65983963
Approve198970742024-05-18 13:17:4769 days ago1716038267IN
Accumulated Finance: stACME Token
0 ETH0.000153.17602364
Approve198032052024-05-05 10:10:2383 days ago1714903823IN
Accumulated Finance: stACME Token
0 ETH0.00031096.58292958
Approve197573562024-04-29 0:21:3589 days ago1714350095IN
Accumulated Finance: stACME Token
0 ETH0.000226794.80199536
Approve197521832024-04-28 6:59:3590 days ago1714287575IN
Accumulated Finance: stACME Token
0 ETH0.000264025.59029083
Approve197188902024-04-23 15:09:1194 days ago1713884951IN
Accumulated Finance: stACME Token
0 ETH0.0011492524.33360517
Approve197188102024-04-23 14:52:5994 days ago1713883979IN
Accumulated Finance: stACME Token
0 ETH0.001096323.37291652
Approve197077962024-04-22 1:55:4796 days ago1713750947IN
Accumulated Finance: stACME Token
0 ETH0.000296056.26855435
Approve196984352024-04-20 18:32:4797 days ago1713637967IN
Accumulated Finance: stACME Token
0 ETH0.000378498.01405043
Approve196172432024-04-09 9:37:59109 days ago1712655479IN
Accumulated Finance: stACME Token
0 ETH0.0012319726.25865994
Approve195884662024-04-05 8:51:11113 days ago1712307071IN
Accumulated Finance: stACME Token
0 ETH0.0026003355.05811623
Approve195736882024-04-03 7:13:35115 days ago1712128415IN
Accumulated Finance: stACME Token
0 ETH0.0010628422.50399087
Approve195621082024-04-01 16:16:23116 days ago1711988183IN
Accumulated Finance: stACME Token
0 ETH0.0010539839.11612287
Approve194848502024-03-21 18:35:47127 days ago1711046147IN
Accumulated Finance: stACME Token
0 ETH0.0008181830.36500159
Approve194848332024-03-21 18:32:23127 days ago1711045943IN
Accumulated Finance: stACME Token
0 ETH0.0008086530.01123906
Approve194672092024-03-19 7:08:11130 days ago1710832091IN
Accumulated Finance: stACME Token
0 ETH0.0013403428.37964406
Approve192702762024-02-20 17:03:35157 days ago1708448615IN
Accumulated Finance: stACME Token
0 ETH0.0019645341.59599685
Approve192317242024-02-15 7:04:59163 days ago1707980699IN
Accumulated Finance: stACME Token
0 ETH0.000959820.32226518
Approve192129962024-02-12 16:00:23165 days ago1707753623IN
Accumulated Finance: stACME Token
0 ETH0.002120644.90052919
Approve192098082024-02-12 5:17:47166 days ago1707715067IN
Accumulated Finance: stACME Token
0 ETH0.0011471424.28891746
Transfer191371042024-02-02 0:17:59176 days ago1706833079IN
Accumulated Finance: stACME Token
0 ETH0.0009970220
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:
StakedACME

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

/**
 * @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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

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

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

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

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

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

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

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

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


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

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

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


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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @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_, uint8 decimals_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
    }

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

    /**
     * @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 `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `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;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

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

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

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

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

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

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

/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        require(!paused(), "ERC20Pausable: token transfer while paused");
    }
}

contract StakedACME is ERC20, ERC20Burnable, Pausable, Ownable {
    constructor(
        string memory name,
        string memory symbol,
        uint8 decimals
    ) ERC20(name, symbol, decimals) {}

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

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

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        whenNotPaused
        override
    {
        super._beforeTokenTransfer(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"}],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620025c4380380620025c48339818101604052810190620000379190620002d5565b8282828260039080519060200190620000529291906200019c565b5081600490805190602001906200006b9291906200019c565b5080600560006101000a81548160ff021916908360ff1602179055505050506000600560016101000a81548160ff021916908315150217905550620000c5620000b9620000ce60201b60201c565b620000d660201b60201c565b505050620004f4565b600033905090565b6000600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001aa90620003ff565b90600052602060002090601f016020900481019282620001ce57600085556200021a565b82601f10620001e957805160ff19168380011785556200021a565b828001600101855582156200021a579182015b8281111562000219578251825591602001919060010190620001fc565b5b5090506200022991906200022d565b5090565b5b80821115620002485760008160009055506001016200022e565b5090565b6000620002636200025d8462000386565b6200035d565b9050828152602081018484840111156200027c57600080fd5b62000289848285620003c9565b509392505050565b600082601f830112620002a357600080fd5b8151620002b58482602086016200024c565b91505092915050565b600081519050620002cf81620004da565b92915050565b600080600060608486031215620002eb57600080fd5b600084015167ffffffffffffffff8111156200030657600080fd5b620003148682870162000291565b935050602084015167ffffffffffffffff8111156200033257600080fd5b620003408682870162000291565b92505060406200035386828701620002be565b9150509250925092565b6000620003696200037c565b905062000377828262000435565b919050565b6000604051905090565b600067ffffffffffffffff821115620003a457620003a36200049a565b5b620003af82620004c9565b9050602081019050919050565b600060ff82169050919050565b60005b83811015620003e9578082015181840152602081019050620003cc565b83811115620003f9576000848401525b50505050565b600060028204905060018216806200041857607f821691505b602082108114156200042f576200042e6200046b565b5b50919050565b6200044082620004c9565b810181811067ffffffffffffffff821117156200046257620004616200049a565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620004e581620003bc565b8114620004f157600080fd5b50565b6120c080620005046000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b41146102f9578063a457c2d714610317578063a9059cbb14610347578063dd62ed3e14610377578063f2fde38b146103a75761012c565b806370a082311461027b578063715018a6146102ab57806379cc6790146102b55780638456cb59146102d15780638da5cb5b146102db5761012c565b806339509351116100f457806339509351146101eb5780633f4ba83a1461021b57806340c10f191461022557806342966c68146102415780635c975abb1461025d5761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103c3565b60405161014691906118e1565b60405180910390f35b610169600480360381019061016491906115e7565b610455565b60405161017691906118c6565b60405180910390f35b610187610478565b6040516101949190611ac3565b60405180910390f35b6101b760048036038101906101b29190611598565b610482565b6040516101c491906118c6565b60405180910390f35b6101d56104b1565b6040516101e29190611ade565b60405180910390f35b610205600480360381019061020091906115e7565b6104c8565b60405161021291906118c6565b60405180910390f35b6102236104ff565b005b61023f600480360381019061023a91906115e7565b610585565b005b61025b60048036038101906102569190611623565b61060f565b005b610265610623565b60405161027291906118c6565b60405180910390f35b61029560048036038101906102909190611533565b61063a565b6040516102a29190611ac3565b60405180910390f35b6102b3610682565b005b6102cf60048036038101906102ca91906115e7565b61070a565b005b6102d961072a565b005b6102e36107b0565b6040516102f091906118ab565b60405180910390f35b6103016107da565b60405161030e91906118e1565b60405180910390f35b610331600480360381019061032c91906115e7565b61086c565b60405161033e91906118c6565b60405180910390f35b610361600480360381019061035c91906115e7565b6108e3565b60405161036e91906118c6565b60405180910390f35b610391600480360381019061038c919061155c565b610906565b60405161039e9190611ac3565b60405180910390f35b6103c160048036038101906103bc9190611533565b61098d565b005b6060600380546103d290611c27565b80601f01602080910402602001604051908101604052809291908181526020018280546103fe90611c27565b801561044b5780601f106104205761010080835404028352916020019161044b565b820191906000526020600020905b81548152906001019060200180831161042e57829003601f168201915b5050505050905090565b600080610460610a85565b905061046d818585610a8d565b600191505092915050565b6000600254905090565b60008061048d610a85565b905061049a858285610c58565b6104a5858585610ce4565b60019150509392505050565b6000600560009054906101000a900460ff16905090565b6000806104d3610a85565b90506104f48185856104e58589610906565b6104ef9190611b15565b610a8d565b600191505092915050565b610507610a85565b73ffffffffffffffffffffffffffffffffffffffff166105256107b0565b73ffffffffffffffffffffffffffffffffffffffff161461057b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057290611a03565b60405180910390fd5b610583610f65565b565b61058d610a85565b73ffffffffffffffffffffffffffffffffffffffff166105ab6107b0565b73ffffffffffffffffffffffffffffffffffffffff1614610601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f890611a03565b60405180910390fd5b61060b8282611007565b5050565b61062061061a610a85565b82611167565b50565b6000600560019054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61068a610a85565b73ffffffffffffffffffffffffffffffffffffffff166106a86107b0565b73ffffffffffffffffffffffffffffffffffffffff16146106fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f590611a03565b60405180910390fd5b610708600061133e565b565b61071c82610716610a85565b83610c58565b6107268282611167565b5050565b610732610a85565b73ffffffffffffffffffffffffffffffffffffffff166107506107b0565b73ffffffffffffffffffffffffffffffffffffffff16146107a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079d90611a03565b60405180910390fd5b6107ae611404565b565b6000600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107e990611c27565b80601f016020809104026020016040519081016040528092919081815260200182805461081590611c27565b80156108625780601f1061083757610100808354040283529160200191610862565b820191906000526020600020905b81548152906001019060200180831161084557829003601f168201915b5050505050905090565b600080610877610a85565b905060006108858286610906565b9050838110156108ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c190611a83565b60405180910390fd5b6108d78286868403610a8d565b60019250505092915050565b6000806108ee610a85565b90506108fb818585610ce4565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610995610a85565b73ffffffffffffffffffffffffffffffffffffffff166109b36107b0565b73ffffffffffffffffffffffffffffffffffffffff1614610a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0090611a03565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7090611963565b60405180910390fd5b610a828161133e565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af490611a63565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6490611983565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c4b9190611ac3565b60405180910390a3505050565b6000610c648484610906565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cde5781811015610cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc7906119a3565b60405180910390fd5b610cdd8484848403610a8d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b90611a43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbb90611903565b60405180910390fd5b610dcf8383836114a7565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c906119c3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ee89190611b15565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f4c9190611ac3565b60405180910390a3610f5f8484846114ff565b50505050565b610f6d610623565b610fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa390611923565b60405180910390fd5b6000600560016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610ff0610a85565b604051610ffd91906118ab565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e90611aa3565b60405180910390fd5b611083600083836114a7565b80600260008282546110959190611b15565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110ea9190611b15565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161114f9190611ac3565b60405180910390a3611163600083836114ff565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce90611a23565b60405180910390fd5b6111e3826000836114a7565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126090611943565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546112c09190611b6b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113259190611ac3565b60405180910390a3611339836000846114ff565b505050565b6000600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61140c610623565b1561144c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611443906119e3565b60405180910390fd5b6001600560016101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611490610a85565b60405161149d91906118ab565b60405180910390a1565b6114af610623565b156114ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e6906119e3565b60405180910390fd5b6114fa838383611504565b505050565b505050565b505050565b6000813590506115188161205c565b92915050565b60008135905061152d81612073565b92915050565b60006020828403121561154557600080fd5b600061155384828501611509565b91505092915050565b6000806040838503121561156f57600080fd5b600061157d85828601611509565b925050602061158e85828601611509565b9150509250929050565b6000806000606084860312156115ad57600080fd5b60006115bb86828701611509565b93505060206115cc86828701611509565b92505060406115dd8682870161151e565b9150509250925092565b600080604083850312156115fa57600080fd5b600061160885828601611509565b92505060206116198582860161151e565b9150509250929050565b60006020828403121561163557600080fd5b60006116438482850161151e565b91505092915050565b61165581611b9f565b82525050565b61166481611bb1565b82525050565b600061167582611af9565b61167f8185611b04565b935061168f818560208601611bf4565b61169881611cb7565b840191505092915050565b60006116b0602383611b04565b91506116bb82611cc8565b604082019050919050565b60006116d3601483611b04565b91506116de82611d17565b602082019050919050565b60006116f6602283611b04565b915061170182611d40565b604082019050919050565b6000611719602683611b04565b915061172482611d8f565b604082019050919050565b600061173c602283611b04565b915061174782611dde565b604082019050919050565b600061175f601d83611b04565b915061176a82611e2d565b602082019050919050565b6000611782602683611b04565b915061178d82611e56565b604082019050919050565b60006117a5601083611b04565b91506117b082611ea5565b602082019050919050565b60006117c8602083611b04565b91506117d382611ece565b602082019050919050565b60006117eb602183611b04565b91506117f682611ef7565b604082019050919050565b600061180e602583611b04565b915061181982611f46565b604082019050919050565b6000611831602483611b04565b915061183c82611f95565b604082019050919050565b6000611854602583611b04565b915061185f82611fe4565b604082019050919050565b6000611877601f83611b04565b915061188282612033565b602082019050919050565b61189681611bdd565b82525050565b6118a581611be7565b82525050565b60006020820190506118c0600083018461164c565b92915050565b60006020820190506118db600083018461165b565b92915050565b600060208201905081810360008301526118fb818461166a565b905092915050565b6000602082019050818103600083015261191c816116a3565b9050919050565b6000602082019050818103600083015261193c816116c6565b9050919050565b6000602082019050818103600083015261195c816116e9565b9050919050565b6000602082019050818103600083015261197c8161170c565b9050919050565b6000602082019050818103600083015261199c8161172f565b9050919050565b600060208201905081810360008301526119bc81611752565b9050919050565b600060208201905081810360008301526119dc81611775565b9050919050565b600060208201905081810360008301526119fc81611798565b9050919050565b60006020820190508181036000830152611a1c816117bb565b9050919050565b60006020820190508181036000830152611a3c816117de565b9050919050565b60006020820190508181036000830152611a5c81611801565b9050919050565b60006020820190508181036000830152611a7c81611824565b9050919050565b60006020820190508181036000830152611a9c81611847565b9050919050565b60006020820190508181036000830152611abc8161186a565b9050919050565b6000602082019050611ad8600083018461188d565b92915050565b6000602082019050611af3600083018461189c565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611b2082611bdd565b9150611b2b83611bdd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611b6057611b5f611c59565b5b828201905092915050565b6000611b7682611bdd565b9150611b8183611bdd565b925082821015611b9457611b93611c59565b5b828203905092915050565b6000611baa82611bbd565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611c12578082015181840152602081019050611bf7565b83811115611c21576000848401525b50505050565b60006002820490506001821680611c3f57607f821691505b60208210811415611c5357611c52611c88565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61206581611b9f565b811461207057600080fd5b50565b61207c81611bdd565b811461208757600080fd5b5056fea2646970667358221220ec85d58c0e027d2547819ca18207463a807520c802778f22b9600ca2e47a801d64736f6c63430008040033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000b5374616b65642041434d450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006737441434d450000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b41146102f9578063a457c2d714610317578063a9059cbb14610347578063dd62ed3e14610377578063f2fde38b146103a75761012c565b806370a082311461027b578063715018a6146102ab57806379cc6790146102b55780638456cb59146102d15780638da5cb5b146102db5761012c565b806339509351116100f457806339509351146101eb5780633f4ba83a1461021b57806340c10f191461022557806342966c68146102415780635c975abb1461025d5761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103c3565b60405161014691906118e1565b60405180910390f35b610169600480360381019061016491906115e7565b610455565b60405161017691906118c6565b60405180910390f35b610187610478565b6040516101949190611ac3565b60405180910390f35b6101b760048036038101906101b29190611598565b610482565b6040516101c491906118c6565b60405180910390f35b6101d56104b1565b6040516101e29190611ade565b60405180910390f35b610205600480360381019061020091906115e7565b6104c8565b60405161021291906118c6565b60405180910390f35b6102236104ff565b005b61023f600480360381019061023a91906115e7565b610585565b005b61025b60048036038101906102569190611623565b61060f565b005b610265610623565b60405161027291906118c6565b60405180910390f35b61029560048036038101906102909190611533565b61063a565b6040516102a29190611ac3565b60405180910390f35b6102b3610682565b005b6102cf60048036038101906102ca91906115e7565b61070a565b005b6102d961072a565b005b6102e36107b0565b6040516102f091906118ab565b60405180910390f35b6103016107da565b60405161030e91906118e1565b60405180910390f35b610331600480360381019061032c91906115e7565b61086c565b60405161033e91906118c6565b60405180910390f35b610361600480360381019061035c91906115e7565b6108e3565b60405161036e91906118c6565b60405180910390f35b610391600480360381019061038c919061155c565b610906565b60405161039e9190611ac3565b60405180910390f35b6103c160048036038101906103bc9190611533565b61098d565b005b6060600380546103d290611c27565b80601f01602080910402602001604051908101604052809291908181526020018280546103fe90611c27565b801561044b5780601f106104205761010080835404028352916020019161044b565b820191906000526020600020905b81548152906001019060200180831161042e57829003601f168201915b5050505050905090565b600080610460610a85565b905061046d818585610a8d565b600191505092915050565b6000600254905090565b60008061048d610a85565b905061049a858285610c58565b6104a5858585610ce4565b60019150509392505050565b6000600560009054906101000a900460ff16905090565b6000806104d3610a85565b90506104f48185856104e58589610906565b6104ef9190611b15565b610a8d565b600191505092915050565b610507610a85565b73ffffffffffffffffffffffffffffffffffffffff166105256107b0565b73ffffffffffffffffffffffffffffffffffffffff161461057b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057290611a03565b60405180910390fd5b610583610f65565b565b61058d610a85565b73ffffffffffffffffffffffffffffffffffffffff166105ab6107b0565b73ffffffffffffffffffffffffffffffffffffffff1614610601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f890611a03565b60405180910390fd5b61060b8282611007565b5050565b61062061061a610a85565b82611167565b50565b6000600560019054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61068a610a85565b73ffffffffffffffffffffffffffffffffffffffff166106a86107b0565b73ffffffffffffffffffffffffffffffffffffffff16146106fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f590611a03565b60405180910390fd5b610708600061133e565b565b61071c82610716610a85565b83610c58565b6107268282611167565b5050565b610732610a85565b73ffffffffffffffffffffffffffffffffffffffff166107506107b0565b73ffffffffffffffffffffffffffffffffffffffff16146107a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079d90611a03565b60405180910390fd5b6107ae611404565b565b6000600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107e990611c27565b80601f016020809104026020016040519081016040528092919081815260200182805461081590611c27565b80156108625780601f1061083757610100808354040283529160200191610862565b820191906000526020600020905b81548152906001019060200180831161084557829003601f168201915b5050505050905090565b600080610877610a85565b905060006108858286610906565b9050838110156108ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c190611a83565b60405180910390fd5b6108d78286868403610a8d565b60019250505092915050565b6000806108ee610a85565b90506108fb818585610ce4565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610995610a85565b73ffffffffffffffffffffffffffffffffffffffff166109b36107b0565b73ffffffffffffffffffffffffffffffffffffffff1614610a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0090611a03565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7090611963565b60405180910390fd5b610a828161133e565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af490611a63565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6490611983565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c4b9190611ac3565b60405180910390a3505050565b6000610c648484610906565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cde5781811015610cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc7906119a3565b60405180910390fd5b610cdd8484848403610a8d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b90611a43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbb90611903565b60405180910390fd5b610dcf8383836114a7565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c906119c3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ee89190611b15565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f4c9190611ac3565b60405180910390a3610f5f8484846114ff565b50505050565b610f6d610623565b610fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa390611923565b60405180910390fd5b6000600560016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610ff0610a85565b604051610ffd91906118ab565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e90611aa3565b60405180910390fd5b611083600083836114a7565b80600260008282546110959190611b15565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110ea9190611b15565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161114f9190611ac3565b60405180910390a3611163600083836114ff565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce90611a23565b60405180910390fd5b6111e3826000836114a7565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126090611943565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546112c09190611b6b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113259190611ac3565b60405180910390a3611339836000846114ff565b505050565b6000600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61140c610623565b1561144c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611443906119e3565b60405180910390fd5b6001600560016101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611490610a85565b60405161149d91906118ab565b60405180910390a1565b6114af610623565b156114ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e6906119e3565b60405180910390fd5b6114fa838383611504565b505050565b505050565b505050565b6000813590506115188161205c565b92915050565b60008135905061152d81612073565b92915050565b60006020828403121561154557600080fd5b600061155384828501611509565b91505092915050565b6000806040838503121561156f57600080fd5b600061157d85828601611509565b925050602061158e85828601611509565b9150509250929050565b6000806000606084860312156115ad57600080fd5b60006115bb86828701611509565b93505060206115cc86828701611509565b92505060406115dd8682870161151e565b9150509250925092565b600080604083850312156115fa57600080fd5b600061160885828601611509565b92505060206116198582860161151e565b9150509250929050565b60006020828403121561163557600080fd5b60006116438482850161151e565b91505092915050565b61165581611b9f565b82525050565b61166481611bb1565b82525050565b600061167582611af9565b61167f8185611b04565b935061168f818560208601611bf4565b61169881611cb7565b840191505092915050565b60006116b0602383611b04565b91506116bb82611cc8565b604082019050919050565b60006116d3601483611b04565b91506116de82611d17565b602082019050919050565b60006116f6602283611b04565b915061170182611d40565b604082019050919050565b6000611719602683611b04565b915061172482611d8f565b604082019050919050565b600061173c602283611b04565b915061174782611dde565b604082019050919050565b600061175f601d83611b04565b915061176a82611e2d565b602082019050919050565b6000611782602683611b04565b915061178d82611e56565b604082019050919050565b60006117a5601083611b04565b91506117b082611ea5565b602082019050919050565b60006117c8602083611b04565b91506117d382611ece565b602082019050919050565b60006117eb602183611b04565b91506117f682611ef7565b604082019050919050565b600061180e602583611b04565b915061181982611f46565b604082019050919050565b6000611831602483611b04565b915061183c82611f95565b604082019050919050565b6000611854602583611b04565b915061185f82611fe4565b604082019050919050565b6000611877601f83611b04565b915061188282612033565b602082019050919050565b61189681611bdd565b82525050565b6118a581611be7565b82525050565b60006020820190506118c0600083018461164c565b92915050565b60006020820190506118db600083018461165b565b92915050565b600060208201905081810360008301526118fb818461166a565b905092915050565b6000602082019050818103600083015261191c816116a3565b9050919050565b6000602082019050818103600083015261193c816116c6565b9050919050565b6000602082019050818103600083015261195c816116e9565b9050919050565b6000602082019050818103600083015261197c8161170c565b9050919050565b6000602082019050818103600083015261199c8161172f565b9050919050565b600060208201905081810360008301526119bc81611752565b9050919050565b600060208201905081810360008301526119dc81611775565b9050919050565b600060208201905081810360008301526119fc81611798565b9050919050565b60006020820190508181036000830152611a1c816117bb565b9050919050565b60006020820190508181036000830152611a3c816117de565b9050919050565b60006020820190508181036000830152611a5c81611801565b9050919050565b60006020820190508181036000830152611a7c81611824565b9050919050565b60006020820190508181036000830152611a9c81611847565b9050919050565b60006020820190508181036000830152611abc8161186a565b9050919050565b6000602082019050611ad8600083018461188d565b92915050565b6000602082019050611af3600083018461189c565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611b2082611bdd565b9150611b2b83611bdd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611b6057611b5f611c59565b5b828201905092915050565b6000611b7682611bdd565b9150611b8183611bdd565b925082821015611b9457611b93611c59565b5b828203905092915050565b6000611baa82611bbd565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611c12578082015181840152602081019050611bf7565b83811115611c21576000848401525b50505050565b60006002820490506001821680611c3f57607f821691505b60208210811415611c5357611c52611c88565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61206581611b9f565b811461207057600080fd5b50565b61207c81611bdd565b811461208757600080fd5b5056fea2646970667358221220ec85d58c0e027d2547819ca18207463a807520c802778f22b9600ca2e47a801d64736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000b5374616b65642041434d450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006737441434d450000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Staked ACME
Arg [1] : symbol (string): stACME
Arg [2] : decimals (uint8): 8

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 5374616b65642041434d45000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 737441434d450000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

23214:661:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8523:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10881:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9650:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11662:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9485:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12366:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23497:65;;;:::i;:::-;;23570:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21873:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20308:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9821:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2384:103;;;:::i;:::-;;22283:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23428:61;;;:::i;:::-;;1733:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8742:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13107:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10154:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10410:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2642:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8523:100;8577:13;8610:5;8603:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8523:100;:::o;10881:201::-;10964:4;10981:13;10997:12;:10;:12::i;:::-;10981:28;;11020:32;11029:5;11036:7;11045:6;11020:8;:32::i;:::-;11070:4;11063:11;;;10881:201;;;;:::o;9650:108::-;9711:7;9738:12;;9731:19;;9650:108;:::o;11662:295::-;11793:4;11810:15;11828:12;:10;:12::i;:::-;11810:30;;11851:38;11867:4;11873:7;11882:6;11851:15;:38::i;:::-;11900:27;11910:4;11916:2;11920:6;11900:9;:27::i;:::-;11945:4;11938:11;;;11662:295;;;;;:::o;9485:100::-;9543:5;9568:9;;;;;;;;;;;9561:16;;9485:100;:::o;12366:238::-;12454:4;12471:13;12487:12;:10;:12::i;:::-;12471:28;;12510:64;12519:5;12526:7;12563:10;12535:25;12545:5;12552:7;12535:9;:25::i;:::-;:38;;;;:::i;:::-;12510:8;:64::i;:::-;12592:4;12585:11;;;12366:238;;;;:::o;23497:65::-;1964:12;:10;:12::i;:::-;1953:23;;:7;:5;:7::i;:::-;:23;;;1945:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23544:10:::1;:8;:10::i;:::-;23497:65::o:0;23570:95::-;1964:12;:10;:12::i;:::-;1953:23;;:7;:5;:7::i;:::-;:23;;;1945:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23640:17:::1;23646:2;23650:6;23640:5;:17::i;:::-;23570:95:::0;;:::o;21873:91::-;21929:27;21935:12;:10;:12::i;:::-;21949:6;21929:5;:27::i;:::-;21873:91;:::o;20308:86::-;20355:4;20379:7;;;;;;;;;;;20372:14;;20308:86;:::o;9821:127::-;9895:7;9922:9;:18;9932:7;9922:18;;;;;;;;;;;;;;;;9915:25;;9821:127;;;:::o;2384:103::-;1964:12;:10;:12::i;:::-;1953:23;;:7;:5;:7::i;:::-;:23;;;1945:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2449:30:::1;2476:1;2449:18;:30::i;:::-;2384:103::o:0;22283:164::-;22360:46;22376:7;22385:12;:10;:12::i;:::-;22399:6;22360:15;:46::i;:::-;22417:22;22423:7;22432:6;22417:5;:22::i;:::-;22283:164;;:::o;23428:61::-;1964:12;:10;:12::i;:::-;1953:23;;:7;:5;:7::i;:::-;:23;;;1945:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23473:8:::1;:6;:8::i;:::-;23428:61::o:0;1733:87::-;1779:7;1806:6;;;;;;;;;;;1799:13;;1733:87;:::o;8742:104::-;8798:13;8831:7;8824:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8742:104;:::o;13107:436::-;13200:4;13217:13;13233:12;:10;:12::i;:::-;13217:28;;13256:24;13283:25;13293:5;13300:7;13283:9;:25::i;:::-;13256:52;;13347:15;13327:16;:35;;13319:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13440:60;13449:5;13456:7;13484:15;13465:16;:34;13440:8;:60::i;:::-;13531:4;13524:11;;;;13107:436;;;;:::o;10154:193::-;10233:4;10250:13;10266:12;:10;:12::i;:::-;10250:28;;10289;10299:5;10306:2;10310:6;10289:9;:28::i;:::-;10335:4;10328:11;;;10154:193;;;;:::o;10410:151::-;10499:7;10526:11;:18;10538:5;10526:18;;;;;;;;;;;;;;;:27;10545:7;10526:27;;;;;;;;;;;;;;;;10519:34;;10410:151;;;;:::o;2642:201::-;1964:12;:10;:12::i;:::-;1953:23;;:7;:5;:7::i;:::-;:23;;;1945:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2751:1:::1;2731:22;;:8;:22;;;;2723:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2807:28;2826:8;2807:18;:28::i;:::-;2642:201:::0;:::o;600:98::-;653:7;680:10;673:17;;600:98;:::o;16741:380::-;16894:1;16877:19;;:5;:19;;;;16869:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16975:1;16956:21;;:7;:21;;;;16948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17059:6;17029:11;:18;17041:5;17029:18;;;;;;;;;;;;;;;:27;17048:7;17029:27;;;;;;;;;;;;;;;:36;;;;17097:7;17081:32;;17090:5;17081:32;;;17106:6;17081:32;;;;;;:::i;:::-;;;;;;;;16741:380;;;:::o;17412:453::-;17547:24;17574:25;17584:5;17591:7;17574:9;:25::i;:::-;17547:52;;17634:17;17614:16;:37;17610:248;;17696:6;17676:16;:26;;17668:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17780:51;17789:5;17796:7;17824:6;17805:16;:25;17780:8;:51::i;:::-;17610:248;17412:453;;;;:::o;14022:671::-;14169:1;14153:18;;:4;:18;;;;14145:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14246:1;14232:16;;:2;:16;;;;14224:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;14301:38;14322:4;14328:2;14332:6;14301:20;:38::i;:::-;14352:19;14374:9;:15;14384:4;14374:15;;;;;;;;;;;;;;;;14352:37;;14423:6;14408:11;:21;;14400:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;14540:6;14526:11;:20;14508:9;:15;14518:4;14508:15;;;;;;;;;;;;;;;:38;;;;14585:6;14568:9;:13;14578:2;14568:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;14624:2;14609:26;;14618:4;14609:26;;;14628:6;14609:26;;;;;;:::i;:::-;;;;;;;;14648:37;14668:4;14674:2;14678:6;14648:19;:37::i;:::-;14022:671;;;;:::o;21367:120::-;20911:8;:6;:8::i;:::-;20903:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;21436:5:::1;21426:7;;:15;;;;;;;;;;;;;;;;;;21457:22;21466:12;:10;:12::i;:::-;21457:22;;;;;;:::i;:::-;;;;;;;;21367:120::o:0;14980:399::-;15083:1;15064:21;;:7;:21;;;;15056:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;15134:49;15163:1;15167:7;15176:6;15134:20;:49::i;:::-;15212:6;15196:12;;:22;;;;;;;:::i;:::-;;;;;;;;15251:6;15229:9;:18;15239:7;15229:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;15294:7;15273:37;;15290:1;15273:37;;;15303:6;15273:37;;;;;;:::i;:::-;;;;;;;;15323:48;15351:1;15355:7;15364:6;15323:19;:48::i;:::-;14980:399;;:::o;15712:591::-;15815:1;15796:21;;:7;:21;;;;15788:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;15868:49;15889:7;15906:1;15910:6;15868:20;:49::i;:::-;15930:22;15955:9;:18;15965:7;15955:18;;;;;;;;;;;;;;;;15930:43;;16010:6;15992:14;:24;;15984:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16129:6;16112:14;:23;16091:9;:18;16101:7;16091:18;;;;;;;;;;;;;;;:44;;;;16173:6;16157:12;;:22;;;;;;;:::i;:::-;;;;;;;;16223:1;16197:37;;16206:7;16197:37;;;16227:6;16197:37;;;;;;:::i;:::-;;;;;;;;16247:48;16267:7;16284:1;16288:6;16247:19;:48::i;:::-;15712:591;;;:::o;3003:191::-;3077:16;3096:6;;;;;;;;;;;3077:25;;3122:8;3113:6;;:17;;;;;;;;;;;;;;;;;;3177:8;3146:40;;3167:8;3146:40;;;;;;;;;;;;3003:191;;:::o;21108:118::-;20634:8;:6;:8::i;:::-;20633:9;20625:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;21178:4:::1;21168:7;;:14;;;;;;;;;;;;;;;;;;21198:20;21205:12;:10;:12::i;:::-;21198:20;;;;;;:::i;:::-;;;;;;;;21108:118::o:0;23673:199::-;20634:8;:6;:8::i;:::-;20633:9;20625:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;23820:44:::1;23847:4;23853:2;23857:6;23820:26;:44::i;:::-;23673:199:::0;;;:::o;19194:124::-;;;;:::o;18465:125::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;633:6;641;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;1055:6;1063;1071;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;1604:6;1612;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;2008:6;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;2544:3;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:366::-;2968:3;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3065:93;3154:3;3065:93;:::i;:::-;3183:2;3178:3;3174:12;3167:19;;2972:220;;;:::o;3198:366::-;3340:3;3361:67;3425:2;3420:3;3361:67;:::i;:::-;3354:74;;3437:93;3526:3;3437:93;:::i;:::-;3555:2;3550:3;3546:12;3539:19;;3344:220;;;:::o;3570:366::-;3712:3;3733:67;3797:2;3792:3;3733:67;:::i;:::-;3726:74;;3809:93;3898:3;3809:93;:::i;:::-;3927:2;3922:3;3918:12;3911:19;;3716:220;;;:::o;3942:366::-;4084:3;4105:67;4169:2;4164:3;4105:67;:::i;:::-;4098:74;;4181:93;4270:3;4181:93;:::i;:::-;4299:2;4294:3;4290:12;4283:19;;4088:220;;;:::o;4314:366::-;4456:3;4477:67;4541:2;4536:3;4477:67;:::i;:::-;4470:74;;4553:93;4642:3;4553:93;:::i;:::-;4671:2;4666:3;4662:12;4655:19;;4460:220;;;:::o;4686:366::-;4828:3;4849:67;4913:2;4908:3;4849:67;:::i;:::-;4842:74;;4925:93;5014:3;4925:93;:::i;:::-;5043:2;5038:3;5034:12;5027:19;;4832:220;;;:::o;5058:366::-;5200:3;5221:67;5285:2;5280:3;5221:67;:::i;:::-;5214:74;;5297:93;5386:3;5297:93;:::i;:::-;5415:2;5410:3;5406:12;5399:19;;5204:220;;;:::o;5430:366::-;5572:3;5593:67;5657:2;5652:3;5593:67;:::i;:::-;5586:74;;5669:93;5758:3;5669:93;:::i;:::-;5787:2;5782:3;5778:12;5771:19;;5576:220;;;:::o;5802:366::-;5944:3;5965:67;6029:2;6024:3;5965:67;:::i;:::-;5958:74;;6041:93;6130:3;6041:93;:::i;:::-;6159:2;6154:3;6150:12;6143:19;;5948:220;;;:::o;6174:366::-;6316:3;6337:67;6401:2;6396:3;6337:67;:::i;:::-;6330:74;;6413:93;6502:3;6413:93;:::i;:::-;6531:2;6526:3;6522:12;6515:19;;6320:220;;;:::o;6546:366::-;6688:3;6709:67;6773:2;6768:3;6709:67;:::i;:::-;6702:74;;6785:93;6874:3;6785:93;:::i;:::-;6903:2;6898:3;6894:12;6887:19;;6692:220;;;:::o;6918:366::-;7060:3;7081:67;7145:2;7140:3;7081:67;:::i;:::-;7074:74;;7157:93;7246:3;7157:93;:::i;:::-;7275:2;7270:3;7266:12;7259:19;;7064:220;;;:::o;7290:366::-;7432:3;7453:67;7517:2;7512:3;7453:67;:::i;:::-;7446:74;;7529:93;7618:3;7529:93;:::i;:::-;7647:2;7642:3;7638:12;7631:19;;7436:220;;;:::o;7662:366::-;7804:3;7825:67;7889:2;7884:3;7825:67;:::i;:::-;7818:74;;7901:93;7990:3;7901:93;:::i;:::-;8019:2;8014:3;8010:12;8003:19;;7808:220;;;:::o;8034:118::-;8121:24;8139:5;8121:24;:::i;:::-;8116:3;8109:37;8099:53;;:::o;8158:112::-;8241:22;8257:5;8241:22;:::i;:::-;8236:3;8229:35;8219:51;;:::o;8276:222::-;8369:4;8407:2;8396:9;8392:18;8384:26;;8420:71;8488:1;8477:9;8473:17;8464:6;8420:71;:::i;:::-;8374:124;;;;:::o;8504:210::-;8591:4;8629:2;8618:9;8614:18;8606:26;;8642:65;8704:1;8693:9;8689:17;8680:6;8642:65;:::i;:::-;8596:118;;;;:::o;8720:313::-;8833:4;8871:2;8860:9;8856:18;8848:26;;8920:9;8914:4;8910:20;8906:1;8895:9;8891:17;8884:47;8948:78;9021:4;9012:6;8948:78;:::i;:::-;8940:86;;8838:195;;;;:::o;9039:419::-;9205:4;9243:2;9232:9;9228:18;9220:26;;9292:9;9286:4;9282:20;9278:1;9267:9;9263:17;9256:47;9320:131;9446:4;9320:131;:::i;:::-;9312:139;;9210:248;;;:::o;9464:419::-;9630:4;9668:2;9657:9;9653:18;9645:26;;9717:9;9711:4;9707:20;9703:1;9692:9;9688:17;9681:47;9745:131;9871:4;9745:131;:::i;:::-;9737:139;;9635:248;;;:::o;9889:419::-;10055:4;10093:2;10082:9;10078:18;10070:26;;10142:9;10136:4;10132:20;10128:1;10117:9;10113:17;10106:47;10170:131;10296:4;10170:131;:::i;:::-;10162:139;;10060:248;;;:::o;10314:419::-;10480:4;10518:2;10507:9;10503:18;10495:26;;10567:9;10561:4;10557:20;10553:1;10542:9;10538:17;10531:47;10595:131;10721:4;10595:131;:::i;:::-;10587:139;;10485:248;;;:::o;10739:419::-;10905:4;10943:2;10932:9;10928:18;10920:26;;10992:9;10986:4;10982:20;10978:1;10967:9;10963:17;10956:47;11020:131;11146:4;11020:131;:::i;:::-;11012:139;;10910:248;;;:::o;11164:419::-;11330:4;11368:2;11357:9;11353:18;11345:26;;11417:9;11411:4;11407:20;11403:1;11392:9;11388:17;11381:47;11445:131;11571:4;11445:131;:::i;:::-;11437:139;;11335:248;;;:::o;11589:419::-;11755:4;11793:2;11782:9;11778:18;11770:26;;11842:9;11836:4;11832:20;11828:1;11817:9;11813:17;11806:47;11870:131;11996:4;11870:131;:::i;:::-;11862:139;;11760:248;;;:::o;12014:419::-;12180:4;12218:2;12207:9;12203:18;12195:26;;12267:9;12261:4;12257:20;12253:1;12242:9;12238:17;12231:47;12295:131;12421:4;12295:131;:::i;:::-;12287:139;;12185:248;;;:::o;12439:419::-;12605:4;12643:2;12632:9;12628:18;12620:26;;12692:9;12686:4;12682:20;12678:1;12667:9;12663:17;12656:47;12720:131;12846:4;12720:131;:::i;:::-;12712:139;;12610:248;;;:::o;12864:419::-;13030:4;13068:2;13057:9;13053:18;13045:26;;13117:9;13111:4;13107:20;13103:1;13092:9;13088:17;13081:47;13145:131;13271:4;13145:131;:::i;:::-;13137:139;;13035:248;;;:::o;13289:419::-;13455:4;13493:2;13482:9;13478:18;13470:26;;13542:9;13536:4;13532:20;13528:1;13517:9;13513:17;13506:47;13570:131;13696:4;13570:131;:::i;:::-;13562:139;;13460:248;;;:::o;13714:419::-;13880:4;13918:2;13907:9;13903:18;13895:26;;13967:9;13961:4;13957:20;13953:1;13942:9;13938:17;13931:47;13995:131;14121:4;13995:131;:::i;:::-;13987:139;;13885:248;;;:::o;14139:419::-;14305:4;14343:2;14332:9;14328:18;14320:26;;14392:9;14386:4;14382:20;14378:1;14367:9;14363:17;14356:47;14420:131;14546:4;14420:131;:::i;:::-;14412:139;;14310:248;;;:::o;14564:419::-;14730:4;14768:2;14757:9;14753:18;14745:26;;14817:9;14811:4;14807:20;14803:1;14792:9;14788:17;14781:47;14845:131;14971:4;14845:131;:::i;:::-;14837:139;;14735:248;;;:::o;14989:222::-;15082:4;15120:2;15109:9;15105:18;15097:26;;15133:71;15201:1;15190:9;15186:17;15177:6;15133:71;:::i;:::-;15087:124;;;;:::o;15217:214::-;15306:4;15344:2;15333:9;15329:18;15321:26;;15357:67;15421:1;15410:9;15406:17;15397:6;15357:67;:::i;:::-;15311:120;;;;:::o;15437:99::-;15489:6;15523:5;15517:12;15507:22;;15496:40;;;:::o;15542:169::-;15626:11;15660:6;15655:3;15648:19;15700:4;15695:3;15691:14;15676:29;;15638:73;;;;:::o;15717:305::-;15757:3;15776:20;15794:1;15776:20;:::i;:::-;15771:25;;15810:20;15828:1;15810:20;:::i;:::-;15805:25;;15964:1;15896:66;15892:74;15889:1;15886:81;15883:2;;;15970:18;;:::i;:::-;15883:2;16014:1;16011;16007:9;16000:16;;15761:261;;;;:::o;16028:191::-;16068:4;16088:20;16106:1;16088:20;:::i;:::-;16083:25;;16122:20;16140:1;16122:20;:::i;:::-;16117:25;;16161:1;16158;16155:8;16152:2;;;16166:18;;:::i;:::-;16152:2;16211:1;16208;16204:9;16196:17;;16073:146;;;;:::o;16225:96::-;16262:7;16291:24;16309:5;16291:24;:::i;:::-;16280:35;;16270:51;;;:::o;16327:90::-;16361:7;16404:5;16397:13;16390:21;16379:32;;16369:48;;;:::o;16423:126::-;16460:7;16500:42;16493:5;16489:54;16478:65;;16468:81;;;:::o;16555:77::-;16592:7;16621:5;16610:16;;16600:32;;;:::o;16638:86::-;16673:7;16713:4;16706:5;16702:16;16691:27;;16681:43;;;:::o;16730:307::-;16798:1;16808:113;16822:6;16819:1;16816:13;16808:113;;;16907:1;16902:3;16898:11;16892:18;16888:1;16883:3;16879:11;16872:39;16844:2;16841:1;16837:10;16832:15;;16808:113;;;16939:6;16936:1;16933:13;16930:2;;;17019:1;17010:6;17005:3;17001:16;16994:27;16930:2;16779:258;;;;:::o;17043:320::-;17087:6;17124:1;17118:4;17114:12;17104:22;;17171:1;17165:4;17161:12;17192:18;17182:2;;17248:4;17240:6;17236:17;17226:27;;17182:2;17310;17302:6;17299:14;17279:18;17276:38;17273:2;;;17329:18;;:::i;:::-;17273:2;17094:269;;;;:::o;17369:180::-;17417:77;17414:1;17407:88;17514:4;17511:1;17504:15;17538:4;17535:1;17528:15;17555:180;17603:77;17600:1;17593:88;17700:4;17697:1;17690:15;17724:4;17721:1;17714:15;17741:102;17782:6;17833:2;17829:7;17824:2;17817:5;17813:14;17809:28;17799:38;;17789:54;;;:::o;17849:222::-;17989:34;17985:1;17977:6;17973:14;17966:58;18058:5;18053:2;18045:6;18041:15;18034:30;17955:116;:::o;18077:170::-;18217:22;18213:1;18205:6;18201:14;18194:46;18183:64;:::o;18253:221::-;18393:34;18389:1;18381:6;18377:14;18370:58;18462:4;18457:2;18449:6;18445:15;18438:29;18359:115;:::o;18480:225::-;18620:34;18616:1;18608:6;18604:14;18597:58;18689:8;18684:2;18676:6;18672:15;18665:33;18586:119;:::o;18711:221::-;18851:34;18847:1;18839:6;18835:14;18828:58;18920:4;18915:2;18907:6;18903:15;18896:29;18817:115;:::o;18938:179::-;19078:31;19074:1;19066:6;19062:14;19055:55;19044:73;:::o;19123:225::-;19263:34;19259:1;19251:6;19247:14;19240:58;19332:8;19327:2;19319:6;19315:15;19308:33;19229:119;:::o;19354:166::-;19494:18;19490:1;19482:6;19478:14;19471:42;19460:60;:::o;19526:182::-;19666:34;19662:1;19654:6;19650:14;19643:58;19632:76;:::o;19714:220::-;19854:34;19850:1;19842:6;19838:14;19831:58;19923:3;19918:2;19910:6;19906:15;19899:28;19820:114;:::o;19940:224::-;20080:34;20076:1;20068:6;20064:14;20057:58;20149:7;20144:2;20136:6;20132:15;20125:32;20046:118;:::o;20170:223::-;20310:34;20306:1;20298:6;20294:14;20287:58;20379:6;20374:2;20366:6;20362:15;20355:31;20276:117;:::o;20399:224::-;20539:34;20535:1;20527:6;20523:14;20516:58;20608:7;20603:2;20595:6;20591:15;20584:32;20505:118;:::o;20629:181::-;20769:33;20765:1;20757:6;20753:14;20746:57;20735:75;:::o;20816:122::-;20889:24;20907:5;20889:24;:::i;:::-;20882:5;20879:35;20869:2;;20928:1;20925;20918:12;20869:2;20859:79;:::o;20944:122::-;21017:24;21035:5;21017:24;:::i;:::-;21010:5;21007:35;20997:2;;21056:1;21053;21046:12;20997:2;20987:79;:::o

Swarm Source

ipfs://ec85d58c0e027d2547819ca18207463a807520c802778f22b9600ca2e47a801d

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

stACME is a liquid staking WACME derivative powered by Accumulated Finance.

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.