ETH Price: $3,054.30 (+1.30%)
Gas: 2 Gwei

Contract

0x4fB2932F1a9dE0Ae753a9279703697Bc18f4E0c2
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Transfer176796662023-07-12 19:51:23361 days ago1689191483IN
USDANT Stablecoin: USDANT Token
0 ETH0.0009795830.12810538
Transfer176796602023-07-12 19:50:11361 days ago1689191411IN
USDANT Stablecoin: USDANT Token
0 ETH0.0017799132.71056044
Transfer176795702023-07-12 19:31:59361 days ago1689190319IN
USDANT Stablecoin: USDANT Token
0 ETH0.0011008533.85776456
Transfer176795432023-07-12 19:26:35361 days ago1689189995IN
USDANT Stablecoin: USDANT Token
0 ETH0.0015943929.301202
Transfer176791292023-07-12 18:03:23361 days ago1689185003IN
USDANT Stablecoin: USDANT Token
0 ETH0.0018309856.31387941
Transfer176764312023-07-12 8:56:11362 days ago1689152171IN
USDANT Stablecoin: USDANT Token
0 ETH0.0006072816.2748724
Transfer176714802023-07-11 16:12:23362 days ago1689091943IN
USDANT Stablecoin: USDANT Token
0 ETH0.0021440539.40255928
Transfer176714732023-07-11 16:10:59362 days ago1689091859IN
USDANT Stablecoin: USDANT Token
0 ETH0.0020118840.56060283
Transfer175951322023-06-30 22:43:47373 days ago1688165027IN
USDANT Stablecoin: USDANT Token
0 ETH0.0006583320.26263156
Transfer175781522023-06-28 13:35:59375 days ago1687959359IN
USDANT Stablecoin: USDANT Token
0 ETH0.0009422119
Transfer175780852023-06-28 13:22:23375 days ago1687958543IN
USDANT Stablecoin: USDANT Token
0 ETH0.0008270516.68184597
Transfer171684682023-05-01 20:52:35433 days ago1682974355IN
USDANT Stablecoin: USDANT Token
0 ETH0.0025665978.93828347
Transfer171683612023-05-01 20:30:59433 days ago1682973059IN
USDANT Stablecoin: USDANT Token
0 ETH0.0027291783.96948245
Transfer171680132023-05-01 19:20:47433 days ago1682968847IN
USDANT Stablecoin: USDANT Token
0 ETH0.0036480597.82924801
Transfer171680022023-05-01 19:18:35433 days ago1682968715IN
USDANT Stablecoin: USDANT Token
0 ETH0.00388384104.1523699
Transfer170337912023-04-12 18:48:23452 days ago1681325303IN
USDANT Stablecoin: USDANT Token
0 ETH0.0007963324.50107857
Transfer170337832023-04-12 18:46:47452 days ago1681325207IN
USDANT Stablecoin: USDANT Token
0 ETH0.0018734434.4371394
Transfer169990182023-04-07 20:38:47457 days ago1680899927IN
USDANT Stablecoin: USDANT Token
0 ETH0.0007124321.91960813
Transfer169989862023-04-07 20:32:23457 days ago1680899543IN
USDANT Stablecoin: USDANT Token
0 ETH0.0015619528.71130068
Transfer169900982023-04-06 14:17:11458 days ago1680790631IN
USDANT Stablecoin: USDANT Token
0 ETH0.000956329.42311049
Transfer169900932023-04-06 14:16:11458 days ago1680790571IN
USDANT Stablecoin: USDANT Token
0 ETH0.0019774536.34902394
Transfer169763782023-04-04 15:22:47460 days ago1680621767IN
USDANT Stablecoin: USDANT Token
0 ETH0.001860249.86871644
Transfer169624572023-04-02 16:01:59462 days ago1680451319IN
USDANT Stablecoin: USDANT Token
0 ETH0.0007804924.01371698
Transfer169618132023-04-02 13:50:35462 days ago1680443435IN
USDANT Stablecoin: USDANT Token
0 ETH0.0018579534.15235537
Transfer169327522023-03-29 11:48:35466 days ago1680090515IN
USDANT Stablecoin: USDANT Token
0 ETH0.0011951932.04112717
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:
AntsColonyUSDANTstablecoin

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Audited
File 1 of 6 : erc20.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol";
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol";

// It's a main contract for the token
contract AntsColonyUSDANTstablecoin is ERC20, Ownable {
    uint256 private _totalSupplyInitial = 100000000000;

    mapping(address => bool) public blockedAccounts;

    event AddedBlocked(address _user);
    event RemovedBlocked(address _user);

    constructor() ERC20("USDANT Stablecoin", "USDANT") {
        _mint(msg.sender, _totalSupplyInitial * (10**decimals()));
    }

    // Specifying token decimals explicitly
    function decimals() public view virtual override returns (uint8) {
        return 6;
    }

    // Overiding the transfer method to check if an account is blocked upon the transaction
    function transfer(address to, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        require(
            !blockedAccounts[msg.sender],
            "Caller (msg.sender) must not be blocked"
        );

        return super.transfer(to, amount);
    }

    // Overiding the transferFrom method to check if an account is blocked upon the transaction
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        require(!blockedAccounts[from], "Owner (from) must not be blocked");
        require(
            !blockedAccounts[msg.sender],
            "Caller (msg.sender) must not be blocked"
        );

        return super.transferFrom(from, to, amount);
    }

    // Forward user ERC20 methods to upgraded contract if this one is deprecated
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        require(
            !blockedAccounts[spender],
            "Spender (spender) must not be blocked"
        );
        require(
            !blockedAccounts[msg.sender],
            "Caller (msg.sender) must not be blocked"
        );

        return super.approve(spender, amount);
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        override
        returns (bool)
    {
        require(
            !blockedAccounts[spender],
            "Spender (spender) must not be blocked"
        );
        require(
            !blockedAccounts[msg.sender],
            "Caller (msg.sender) must not be blocked"
        );

        return super.increaseAllowance(spender, addedValue);
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        override
        returns (bool)
    {
        require(
            !blockedAccounts[spender],
            "Spender (spender) must not be blocked"
        );
        require(
            !blockedAccounts[msg.sender],
            "Caller (msg.sender) must not be blocked"
        );

        return super.decreaseAllowance(spender, subtractedValue);
    }

    // Issuing <amount> tokens on address <to>
    function mint(address to, uint256 amount) public onlyOwner {
        _mint(to, amount);
    }

    // Burning <amount> tokens on address <from>
    function burn(address from, uint256 amount) public onlyOwner {
        _burn(from, amount);
    }

    function getBlockStatus(address _maker) public view returns (bool) {
        return blockedAccounts[_maker];
    }

    // Adding an address to block
    function addBlock(address _address) public onlyOwner {
        blockedAccounts[_address] = true;
        emit AddedBlocked(_address);
    }

    // Removing an address from block
    function removeBlock(address _address) public onlyOwner {
        blockedAccounts[_address] = false;
        emit RemovedBlocked(_address);
    }
}

File 2 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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);
    }
}

File 3 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 5 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 6 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_user","type":"address"}],"name":"AddedBlocked","type":"event"},{"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":"_user","type":"address"}],"name":"RemovedBlocked","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":"_address","type":"address"}],"name":"addBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blockedAccounts","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_maker","type":"address"}],"name":"getBlockStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeBlock","outputs":[],"stateMutability":"nonpayable","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"}]

608060405264174876e8006006553480156200001a57600080fd5b506040518060400160405280601181526020017f555344414e5420537461626c65636f696e0000000000000000000000000000008152506040518060400160405280600681526020017f555344414e5400000000000000000000000000000000000000000000000000008152508160039081620000989190620005d9565b508060049081620000aa9190620005d9565b505050620000cd620000c16200011160201b60201c565b6200011960201b60201c565b6200010b33620000e2620001df60201b60201c565b600a620000f0919062000850565b600654620000ff9190620008a1565b620001e860201b60201c565b620009d8565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006006905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200025a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000251906200094d565b60405180910390fd5b6200026e600083836200035560201b60201c565b80600260008282546200028291906200096f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003359190620009bb565b60405180910390a362000351600083836200035a60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003e157607f821691505b602082108103620003f757620003f662000399565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004617fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000422565b6200046d868362000422565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004ba620004b4620004ae8462000485565b6200048f565b62000485565b9050919050565b6000819050919050565b620004d68362000499565b620004ee620004e582620004c1565b8484546200042f565b825550505050565b600090565b62000505620004f6565b62000512818484620004cb565b505050565b5b818110156200053a576200052e600082620004fb565b60018101905062000518565b5050565b601f82111562000589576200055381620003fd565b6200055e8462000412565b810160208510156200056e578190505b620005866200057d8562000412565b83018262000517565b50505b505050565b600082821c905092915050565b6000620005ae600019846008026200058e565b1980831691505092915050565b6000620005c983836200059b565b9150826002028217905092915050565b620005e4826200035f565b67ffffffffffffffff8111156200060057620005ff6200036a565b5b6200060c8254620003c8565b620006198282856200053e565b600060209050601f8311600181146200065157600084156200063c578287015190505b620006488582620005bb565b865550620006b8565b601f1984166200066186620003fd565b60005b828110156200068b5784890151825560018201915060208501945060208101905062000664565b86831015620006ab5784890151620006a7601f8916826200059b565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200074e57808604811115620007265762000725620006c0565b5b6001851615620007365780820291505b80810290506200074685620006ef565b945062000706565b94509492505050565b6000826200076957600190506200083c565b816200077957600090506200083c565b81600181146200079257600281146200079d57620007d3565b60019150506200083c565b60ff841115620007b257620007b1620006c0565b5b8360020a915084821115620007cc57620007cb620006c0565b5b506200083c565b5060208310610133831016604e8410600b84101617156200080d5782820a905083811115620008075762000806620006c0565b5b6200083c565b6200081c8484846001620006fc565b92509050818404811115620008365762000835620006c0565b5b81810290505b9392505050565b600060ff82169050919050565b60006200085d8262000485565b91506200086a8362000843565b9250620008997fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000757565b905092915050565b6000620008ae8262000485565b9150620008bb8362000485565b9250828202620008cb8162000485565b91508282048414831517620008e557620008e4620006c0565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000935601f83620008ec565b91506200094282620008fd565b602082019050919050565b60006020820190508181036000830152620009688162000926565b9050919050565b60006200097c8262000485565b9150620009898362000485565b9250828201905080821115620009a457620009a3620006c0565b5b92915050565b620009b58162000485565b82525050565b6000602082019050620009d26000830184620009aa565b92915050565b61246780620009e86000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80638c19773f116100ad578063a9059cbb11610071578063a9059cbb14610345578063d4ee404114610375578063dd62ed3e14610391578063f2fde38b146103c1578063f45bf3d2146103dd5761012c565b80638c19773f146102a15780638da5cb5b146102bd57806395d89b41146102db5780639dc29fac146102f9578063a457c2d7146103155761012c565b8063348e4774116100f4578063348e4774146101eb578063395093511461021b57806340c10f191461024b57806370a0823114610267578063715018a6146102975761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b61013961040d565b60405161014691906118fc565b60405180910390f35b610169600480360381019061016491906119b7565b61049f565b6040516101769190611a12565b60405180910390f35b6101876105cd565b6040516101949190611a3c565b60405180910390f35b6101b760048036038101906101b29190611a57565b6105d7565b6040516101c49190611a12565b60405180910390f35b6101d5610707565b6040516101e29190611ac6565b60405180910390f35b61020560048036038101906102009190611ae1565b610710565b6040516102129190611a12565b60405180910390f35b610235600480360381019061023091906119b7565b610766565b6040516102429190611a12565b60405180910390f35b610265600480360381019061026091906119b7565b610894565b005b610281600480360381019061027c9190611ae1565b6108aa565b60405161028e9190611a3c565b60405180910390f35b61029f6108f2565b005b6102bb60048036038101906102b69190611ae1565b610906565b005b6102c56109a0565b6040516102d29190611b1d565b60405180910390f35b6102e36109ca565b6040516102f091906118fc565b60405180910390f35b610313600480360381019061030e91906119b7565b610a5c565b005b61032f600480360381019061032a91906119b7565b610a72565b60405161033c9190611a12565b60405180910390f35b61035f600480360381019061035a91906119b7565b610ba0565b60405161036c9190611a12565b60405180910390f35b61038f600480360381019061038a9190611ae1565b610c41565b005b6103ab60048036038101906103a69190611b38565b610cdb565b6040516103b89190611a3c565b60405180910390f35b6103db60048036038101906103d69190611ae1565b610d62565b005b6103f760048036038101906103f29190611ae1565b610de5565b6040516104049190611a12565b60405180910390f35b60606003805461041c90611ba7565b80601f016020809104026020016040519081016040528092919081815260200182805461044890611ba7565b80156104955780601f1061046a57610100808354040283529160200191610495565b820191906000526020600020905b81548152906001019060200180831161047857829003601f168201915b5050505050905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561052e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052590611c4a565b60405180910390fd5b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156105bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b290611cdc565b60405180910390fd5b6105c58383610e05565b905092915050565b6000600254905090565b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065d90611d48565b60405180910390fd5b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156106f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ea90611cdc565b60405180910390fd5b6106fe848484610e28565b90509392505050565b60006006905090565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156107f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ec90611c4a565b60405180910390fd5b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087990611cdc565b60405180910390fd5b61088c8383610e57565b905092915050565b61089c610e8e565b6108a68282610f0c565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108fa610e8e565b6109046000611062565b565b61090e610e8e565b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f7e99748215aa2b7c9eefdecd7d2a6bf66fb37ce74fbb44cdaf74109487c42606816040516109959190611b1d565b60405180910390a150565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109d990611ba7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0590611ba7565b8015610a525780601f10610a2757610100808354040283529160200191610a52565b820191906000526020600020905b815481529060010190602001808311610a3557829003601f168201915b5050505050905090565b610a64610e8e565b610a6e8282611128565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af890611c4a565b60405180910390fd5b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8590611cdc565b60405180910390fd5b610b9883836112f5565b905092915050565b6000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2690611cdc565b60405180910390fd5b610c39838361136c565b905092915050565b610c49610e8e565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f0fe550c5abc68b0eff863a0a4ee7024372c1d7fcdc8b3d0d3ddff709b7df8ef781604051610cd09190611b1d565b60405180910390a150565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d6a610e8e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd090611dda565b60405180910390fd5b610de281611062565b50565b60076020528060005260406000206000915054906101000a900460ff1681565b600080610e1061138f565b9050610e1d818585611397565b600191505092915050565b600080610e3361138f565b9050610e40858285611560565b610e4b8585856115ec565b60019150509392505050565b600080610e6261138f565b9050610e83818585610e748589610cdb565b610e7e9190611e29565b611397565b600191505092915050565b610e9661138f565b73ffffffffffffffffffffffffffffffffffffffff16610eb46109a0565b73ffffffffffffffffffffffffffffffffffffffff1614610f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0190611ea9565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7290611f15565b60405180910390fd5b610f8760008383611862565b8060026000828254610f999190611e29565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161104a9190611a3c565b60405180910390a361105e60008383611867565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e90611fa7565b60405180910390fd5b6111a382600083611862565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611229576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122090612039565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112dc9190611a3c565b60405180910390a36112f083600084611867565b505050565b60008061130061138f565b9050600061130e8286610cdb565b905083811015611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a906120cb565b60405180910390fd5b6113608286868403611397565b60019250505092915050565b60008061137761138f565b90506113848185856115ec565b600191505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fd9061215d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146c906121ef565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115539190611a3c565b60405180910390a3505050565b600061156c8484610cdb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115e657818110156115d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cf9061225b565b60405180910390fd5b6115e58484848403611397565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361165b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611652906122ed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c19061237f565b60405180910390fd5b6116d5838383611862565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561175b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175290612411565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118499190611a3c565b60405180910390a361185c848484611867565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156118a657808201518184015260208101905061188b565b60008484015250505050565b6000601f19601f8301169050919050565b60006118ce8261186c565b6118d88185611877565b93506118e8818560208601611888565b6118f1816118b2565b840191505092915050565b6000602082019050818103600083015261191681846118c3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061194e82611923565b9050919050565b61195e81611943565b811461196957600080fd5b50565b60008135905061197b81611955565b92915050565b6000819050919050565b61199481611981565b811461199f57600080fd5b50565b6000813590506119b18161198b565b92915050565b600080604083850312156119ce576119cd61191e565b5b60006119dc8582860161196c565b92505060206119ed858286016119a2565b9150509250929050565b60008115159050919050565b611a0c816119f7565b82525050565b6000602082019050611a276000830184611a03565b92915050565b611a3681611981565b82525050565b6000602082019050611a516000830184611a2d565b92915050565b600080600060608486031215611a7057611a6f61191e565b5b6000611a7e8682870161196c565b9350506020611a8f8682870161196c565b9250506040611aa0868287016119a2565b9150509250925092565b600060ff82169050919050565b611ac081611aaa565b82525050565b6000602082019050611adb6000830184611ab7565b92915050565b600060208284031215611af757611af661191e565b5b6000611b058482850161196c565b91505092915050565b611b1781611943565b82525050565b6000602082019050611b326000830184611b0e565b92915050565b60008060408385031215611b4f57611b4e61191e565b5b6000611b5d8582860161196c565b9250506020611b6e8582860161196c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611bbf57607f821691505b602082108103611bd257611bd1611b78565b5b50919050565b7f5370656e64657220287370656e64657229206d757374206e6f7420626520626c60008201527f6f636b6564000000000000000000000000000000000000000000000000000000602082015250565b6000611c34602583611877565b9150611c3f82611bd8565b604082019050919050565b60006020820190508181036000830152611c6381611c27565b9050919050565b7f43616c6c657220286d73672e73656e64657229206d757374206e6f742062652060008201527f626c6f636b656400000000000000000000000000000000000000000000000000602082015250565b6000611cc6602783611877565b9150611cd182611c6a565b604082019050919050565b60006020820190508181036000830152611cf581611cb9565b9050919050565b7f4f776e6572202866726f6d29206d757374206e6f7420626520626c6f636b6564600082015250565b6000611d32602083611877565b9150611d3d82611cfc565b602082019050919050565b60006020820190508181036000830152611d6181611d25565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611dc4602683611877565b9150611dcf82611d68565b604082019050919050565b60006020820190508181036000830152611df381611db7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e3482611981565b9150611e3f83611981565b9250828201905080821115611e5757611e56611dfa565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e93602083611877565b9150611e9e82611e5d565b602082019050919050565b60006020820190508181036000830152611ec281611e86565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611eff601f83611877565b9150611f0a82611ec9565b602082019050919050565b60006020820190508181036000830152611f2e81611ef2565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f91602183611877565b9150611f9c82611f35565b604082019050919050565b60006020820190508181036000830152611fc081611f84565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612023602283611877565b915061202e82611fc7565b604082019050919050565b6000602082019050818103600083015261205281612016565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006120b5602583611877565b91506120c082612059565b604082019050919050565b600060208201905081810360008301526120e4816120a8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612147602483611877565b9150612152826120eb565b604082019050919050565b600060208201905081810360008301526121768161213a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006121d9602283611877565b91506121e48261217d565b604082019050919050565b60006020820190508181036000830152612208816121cc565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612245601d83611877565b91506122508261220f565b602082019050919050565b6000602082019050818103600083015261227481612238565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006122d7602583611877565b91506122e28261227b565b604082019050919050565b60006020820190508181036000830152612306816122ca565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612369602383611877565b91506123748261230d565b604082019050919050565b600060208201905081810360008301526123988161235c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006123fb602683611877565b91506124068261239f565b604082019050919050565b6000602082019050818103600083015261242a816123ee565b905091905056fea2646970667358221220e548054e7500ad5199c6dbb31fbdd48a8fb6318606ee8615503f8847767da94864736f6c63430008110033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c80638c19773f116100ad578063a9059cbb11610071578063a9059cbb14610345578063d4ee404114610375578063dd62ed3e14610391578063f2fde38b146103c1578063f45bf3d2146103dd5761012c565b80638c19773f146102a15780638da5cb5b146102bd57806395d89b41146102db5780639dc29fac146102f9578063a457c2d7146103155761012c565b8063348e4774116100f4578063348e4774146101eb578063395093511461021b57806340c10f191461024b57806370a0823114610267578063715018a6146102975761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b61013961040d565b60405161014691906118fc565b60405180910390f35b610169600480360381019061016491906119b7565b61049f565b6040516101769190611a12565b60405180910390f35b6101876105cd565b6040516101949190611a3c565b60405180910390f35b6101b760048036038101906101b29190611a57565b6105d7565b6040516101c49190611a12565b60405180910390f35b6101d5610707565b6040516101e29190611ac6565b60405180910390f35b61020560048036038101906102009190611ae1565b610710565b6040516102129190611a12565b60405180910390f35b610235600480360381019061023091906119b7565b610766565b6040516102429190611a12565b60405180910390f35b610265600480360381019061026091906119b7565b610894565b005b610281600480360381019061027c9190611ae1565b6108aa565b60405161028e9190611a3c565b60405180910390f35b61029f6108f2565b005b6102bb60048036038101906102b69190611ae1565b610906565b005b6102c56109a0565b6040516102d29190611b1d565b60405180910390f35b6102e36109ca565b6040516102f091906118fc565b60405180910390f35b610313600480360381019061030e91906119b7565b610a5c565b005b61032f600480360381019061032a91906119b7565b610a72565b60405161033c9190611a12565b60405180910390f35b61035f600480360381019061035a91906119b7565b610ba0565b60405161036c9190611a12565b60405180910390f35b61038f600480360381019061038a9190611ae1565b610c41565b005b6103ab60048036038101906103a69190611b38565b610cdb565b6040516103b89190611a3c565b60405180910390f35b6103db60048036038101906103d69190611ae1565b610d62565b005b6103f760048036038101906103f29190611ae1565b610de5565b6040516104049190611a12565b60405180910390f35b60606003805461041c90611ba7565b80601f016020809104026020016040519081016040528092919081815260200182805461044890611ba7565b80156104955780601f1061046a57610100808354040283529160200191610495565b820191906000526020600020905b81548152906001019060200180831161047857829003601f168201915b5050505050905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561052e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052590611c4a565b60405180910390fd5b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156105bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b290611cdc565b60405180910390fd5b6105c58383610e05565b905092915050565b6000600254905090565b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065d90611d48565b60405180910390fd5b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156106f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ea90611cdc565b60405180910390fd5b6106fe848484610e28565b90509392505050565b60006006905090565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156107f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ec90611c4a565b60405180910390fd5b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087990611cdc565b60405180910390fd5b61088c8383610e57565b905092915050565b61089c610e8e565b6108a68282610f0c565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108fa610e8e565b6109046000611062565b565b61090e610e8e565b6001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f7e99748215aa2b7c9eefdecd7d2a6bf66fb37ce74fbb44cdaf74109487c42606816040516109959190611b1d565b60405180910390a150565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109d990611ba7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0590611ba7565b8015610a525780601f10610a2757610100808354040283529160200191610a52565b820191906000526020600020905b815481529060010190602001808311610a3557829003601f168201915b5050505050905090565b610a64610e8e565b610a6e8282611128565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af890611c4a565b60405180910390fd5b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8590611cdc565b60405180910390fd5b610b9883836112f5565b905092915050565b6000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2690611cdc565b60405180910390fd5b610c39838361136c565b905092915050565b610c49610e8e565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f0fe550c5abc68b0eff863a0a4ee7024372c1d7fcdc8b3d0d3ddff709b7df8ef781604051610cd09190611b1d565b60405180910390a150565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d6a610e8e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd090611dda565b60405180910390fd5b610de281611062565b50565b60076020528060005260406000206000915054906101000a900460ff1681565b600080610e1061138f565b9050610e1d818585611397565b600191505092915050565b600080610e3361138f565b9050610e40858285611560565b610e4b8585856115ec565b60019150509392505050565b600080610e6261138f565b9050610e83818585610e748589610cdb565b610e7e9190611e29565b611397565b600191505092915050565b610e9661138f565b73ffffffffffffffffffffffffffffffffffffffff16610eb46109a0565b73ffffffffffffffffffffffffffffffffffffffff1614610f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0190611ea9565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7290611f15565b60405180910390fd5b610f8760008383611862565b8060026000828254610f999190611e29565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161104a9190611a3c565b60405180910390a361105e60008383611867565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e90611fa7565b60405180910390fd5b6111a382600083611862565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611229576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122090612039565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112dc9190611a3c565b60405180910390a36112f083600084611867565b505050565b60008061130061138f565b9050600061130e8286610cdb565b905083811015611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a906120cb565b60405180910390fd5b6113608286868403611397565b60019250505092915050565b60008061137761138f565b90506113848185856115ec565b600191505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fd9061215d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146c906121ef565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115539190611a3c565b60405180910390a3505050565b600061156c8484610cdb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115e657818110156115d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cf9061225b565b60405180910390fd5b6115e58484848403611397565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361165b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611652906122ed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c19061237f565b60405180910390fd5b6116d5838383611862565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561175b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175290612411565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118499190611a3c565b60405180910390a361185c848484611867565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156118a657808201518184015260208101905061188b565b60008484015250505050565b6000601f19601f8301169050919050565b60006118ce8261186c565b6118d88185611877565b93506118e8818560208601611888565b6118f1816118b2565b840191505092915050565b6000602082019050818103600083015261191681846118c3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061194e82611923565b9050919050565b61195e81611943565b811461196957600080fd5b50565b60008135905061197b81611955565b92915050565b6000819050919050565b61199481611981565b811461199f57600080fd5b50565b6000813590506119b18161198b565b92915050565b600080604083850312156119ce576119cd61191e565b5b60006119dc8582860161196c565b92505060206119ed858286016119a2565b9150509250929050565b60008115159050919050565b611a0c816119f7565b82525050565b6000602082019050611a276000830184611a03565b92915050565b611a3681611981565b82525050565b6000602082019050611a516000830184611a2d565b92915050565b600080600060608486031215611a7057611a6f61191e565b5b6000611a7e8682870161196c565b9350506020611a8f8682870161196c565b9250506040611aa0868287016119a2565b9150509250925092565b600060ff82169050919050565b611ac081611aaa565b82525050565b6000602082019050611adb6000830184611ab7565b92915050565b600060208284031215611af757611af661191e565b5b6000611b058482850161196c565b91505092915050565b611b1781611943565b82525050565b6000602082019050611b326000830184611b0e565b92915050565b60008060408385031215611b4f57611b4e61191e565b5b6000611b5d8582860161196c565b9250506020611b6e8582860161196c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611bbf57607f821691505b602082108103611bd257611bd1611b78565b5b50919050565b7f5370656e64657220287370656e64657229206d757374206e6f7420626520626c60008201527f6f636b6564000000000000000000000000000000000000000000000000000000602082015250565b6000611c34602583611877565b9150611c3f82611bd8565b604082019050919050565b60006020820190508181036000830152611c6381611c27565b9050919050565b7f43616c6c657220286d73672e73656e64657229206d757374206e6f742062652060008201527f626c6f636b656400000000000000000000000000000000000000000000000000602082015250565b6000611cc6602783611877565b9150611cd182611c6a565b604082019050919050565b60006020820190508181036000830152611cf581611cb9565b9050919050565b7f4f776e6572202866726f6d29206d757374206e6f7420626520626c6f636b6564600082015250565b6000611d32602083611877565b9150611d3d82611cfc565b602082019050919050565b60006020820190508181036000830152611d6181611d25565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611dc4602683611877565b9150611dcf82611d68565b604082019050919050565b60006020820190508181036000830152611df381611db7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e3482611981565b9150611e3f83611981565b9250828201905080821115611e5757611e56611dfa565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e93602083611877565b9150611e9e82611e5d565b602082019050919050565b60006020820190508181036000830152611ec281611e86565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611eff601f83611877565b9150611f0a82611ec9565b602082019050919050565b60006020820190508181036000830152611f2e81611ef2565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f91602183611877565b9150611f9c82611f35565b604082019050919050565b60006020820190508181036000830152611fc081611f84565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612023602283611877565b915061202e82611fc7565b604082019050919050565b6000602082019050818103600083015261205281612016565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006120b5602583611877565b91506120c082612059565b604082019050919050565b600060208201905081810360008301526120e4816120a8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612147602483611877565b9150612152826120eb565b604082019050919050565b600060208201905081810360008301526121768161213a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006121d9602283611877565b91506121e48261217d565b604082019050919050565b60006020820190508181036000830152612208816121cc565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612245601d83611877565b91506122508261220f565b602082019050919050565b6000602082019050818103600083015261227481612238565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006122d7602583611877565b91506122e28261227b565b604082019050919050565b60006020820190508181036000830152612306816122ca565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612369602383611877565b91506123748261230d565b604082019050919050565b600060208201905081810360008301526123988161235c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006123fb602683611877565b91506124068261239f565b604082019050919050565b6000602082019050818103600083015261242a816123ee565b905091905056fea2646970667358221220e548054e7500ad5199c6dbb31fbdd48a8fb6318606ee8615503f8847767da94864736f6c63430008110033

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

USDANT Stablecoin is a multi-collateral backed stablecoin combining a variety of popular stablecoins. It provides users a cost-effective stablecoin solution to reduce counterparty risk and increase stability. USDANT is designed to minimize volatility and maintain consistent pricing.

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.