POL Price: $0.217743 (-0.27%)
Gas: 0 GWei
 

Overview

POL Balance

Polygon PoS Chain LogoPolygon PoS Chain LogoPolygon PoS Chain Logo0 POL

POL Value

$0.00

Token Holdings

Multichain Info

1 address found via
Transaction Hash
Method
Block
From
To
Transfer703946842025-04-17 2:00:096 days ago1744855209IN
The Unfettered: Old SOULS Token
0 POL0.0014951730.00000002
Transfer703773422025-04-16 15:45:056 days ago1744818305IN
The Unfettered: Old SOULS Token
0 POL0.0010497427.99996455
Transfer703436792025-04-15 19:48:157 days ago1744746495IN
The Unfettered: Old SOULS Token
0 POL0.0016409443.75500004
Transfer703435702025-04-15 19:44:257 days ago1744746265IN
The Unfettered: Old SOULS Token
0 POL0.0023891543.75500003
Transfer703434922025-04-15 19:41:397 days ago1744746099IN
The Unfettered: Old SOULS Token
0 POL0.0013078843.75500003
Transfer698554932025-04-03 18:17:2919 days ago1743704249IN
The Unfettered: Old SOULS Token
0 POL0.0017816135.76456338
Approve697094762025-03-31 3:37:1723 days ago1743392237IN
The Unfettered: Old SOULS Token
0 POL0.0014168730.00000006
Transfer696577332025-03-29 20:55:0724 days ago1743281707IN
The Unfettered: Old SOULS Token
0 POL0.0009753926.00000005
Transfer696577332025-03-29 20:55:0724 days ago1743281707IN
The Unfettered: Old SOULS Token
0 POL0.0009760126.00000005
Transfer696577332025-03-29 20:55:0724 days ago1743281707IN
The Unfettered: Old SOULS Token
0 POL0.0014206126.00000005
Transfer696577332025-03-29 20:55:0724 days ago1743281707IN
The Unfettered: Old SOULS Token
0 POL0.0014193626.00000005
Transfer696577322025-03-29 20:55:0524 days ago1743281705IN
The Unfettered: Old SOULS Token
0 POL0.001420326.00000005
Transfer696577322025-03-29 20:55:0524 days ago1743281705IN
The Unfettered: Old SOULS Token
0 POL0.001420326.00000005
Transfer696577322025-03-29 20:55:0524 days ago1743281705IN
The Unfettered: Old SOULS Token
0 POL0.0009750726.00000005
Transfer696577322025-03-29 20:55:0524 days ago1743281705IN
The Unfettered: Old SOULS Token
0 POL0.0014193626.00000005
Transfer696577322025-03-29 20:55:0524 days ago1743281705IN
The Unfettered: Old SOULS Token
0 POL0.0009753926.00000005
Transfer696577322025-03-29 20:55:0524 days ago1743281705IN
The Unfettered: Old SOULS Token
0 POL0.0014206126.00000005
Transfer696577312025-03-29 20:55:0324 days ago1743281703IN
The Unfettered: Old SOULS Token
0 POL0.0009750726.00000005
Transfer696576122025-03-29 20:50:4924 days ago1743281449IN
The Unfettered: Old SOULS Token
0 POL0.0014206126.00000003
Transfer696576112025-03-29 20:50:4724 days ago1743281447IN
The Unfettered: Old SOULS Token
0 POL0.0014206126.00000003
Transfer696576112025-03-29 20:50:4724 days ago1743281447IN
The Unfettered: Old SOULS Token
0 POL0.0009760126.00000003
Transfer696575932025-03-29 20:50:0924 days ago1743281409IN
The Unfettered: Old SOULS Token
0 POL0.001420326.00000003
Transfer696575922025-03-29 20:50:0724 days ago1743281407IN
The Unfettered: Old SOULS Token
0 POL0.0014206126.00000003
Transfer696575922025-03-29 20:50:0724 days ago1743281407IN
The Unfettered: Old SOULS Token
0 POL0.0014206126.00000003
Transfer696575922025-03-29 20:50:0724 days ago1743281407IN
The Unfettered: Old SOULS Token
0 POL0.0014199926.00000003
View all transactions

Latest 1 internal transaction

Parent Transaction Hash Block From To
427724072023-05-16 11:06:11707 days ago1684235171  Contract Creation0 POL
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x4e112d73...Db3E0A598
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
SoulsToken

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : SoulsToken.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.12;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./interfaces/IManagers.sol";
import "./interfaces/IBotPrevention.sol";

contract SoulsToken is ERC20, Ownable {
    //Storage Variables
    IBotPrevention botPrevention;
    IManagers managers;

    uint256 public constant maxSupply = 3000000000 ether;

    bool public botPreventionEnabled = true;

    //Custom Errors
    error BotPreventionError();
    error AlreadyDisabled();
    error AlreadyEnabled();
    error NotAuthorized();

    //Events
    event DisableBotPrevention(address manager, bool isApproved);
    event EnableBotPrevention(address manager, bool isApproved);

    constructor(
        string memory _name,
        string memory _symbol,
        address _managers,
        address _botPrevention
    ) ERC20(_name, _symbol) {
        botPrevention = IBotPrevention(_botPrevention);
        managers = IManagers(_managers);
        _mint(msg.sender, maxSupply);
    }

    modifier onlyManager() {
        if (!managers.isManager(msg.sender)) {
            revert NotAuthorized();
        }
        _;
    }

    function disableBotPrevention() external onlyManager {
        if (!botPreventionEnabled) {
            revert AlreadyDisabled();
        }
        string memory _title = "Set Bot Prevention Status";
        bytes memory _encodedValues = abi.encode(0);
        managers.approveTopic(_title, _encodedValues);
        bool _isApproved = managers.isApproved(_title, _encodedValues);
        if (_isApproved) {
            botPreventionEnabled = false;
            managers.deleteTopic(_title);
        }
        emit DisableBotPrevention(msg.sender, _isApproved);
    }

    function enableBotPrevention() external onlyManager {
        if (botPreventionEnabled) {
            revert AlreadyEnabled();
        }
        string memory _title = "Set Bot Prevention Status";
        bytes memory _encodedValues = abi.encode(0);
        managers.approveTopic(_title, _encodedValues);
        bool _isApproved = managers.isApproved(_title, _encodedValues);
        if (_isApproved) {
            botPreventionEnabled = true;
            managers.deleteTopic(_title);
            botPrevention.resetBotPreventionData();
        }
        emit EnableBotPrevention(msg.sender, _isApproved);
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal view override {
        if (botPreventionEnabled && from != address(0)) {
            if (!managers.isManager(tx.origin) || !managers.isTrustedSource(msg.sender)) {
                if (!botPrevention.beforeTokenTransfer(from, to, amount)) {
                    revert BotPreventionError();
                }
            }
        }
    }

    function _afterTokenTransfer(address from, address to, uint256 amount) internal override {
        if (botPreventionEnabled && from != address(0)) {
            if (!managers.isManager(tx.origin) || !managers.isTrustedSource(msg.sender)) {
                if (!botPrevention.afterTokenTransfer(from, to, amount)) {
                    revert BotPreventionError();
                }
            }
        }
    }
}

File 2 of 8 : 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 8 : 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].
 *
 * 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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

File 6 of 8 : 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 7 of 8 : IBotPrevention.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.12;

interface IBotPrevention {
    function setDexPairAddress(address _pairAddress) external;

    function beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) external view  returns (bool);

    function afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) external  returns (bool);

	function resetBotPreventionData() external;
}

File 8 of 8 : IManagers.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.12;

import "@openzeppelin/contracts/access/Ownable.sol";

interface IManagers {
    function isManager(address _address) external view returns (bool);

    function approveTopic(string memory _title, bytes memory _encodedValues) external;

    function cancelTopicApproval(string memory _title) external;

    function deleteTopic(string memory _title) external;

    function isApproved(string memory _title, bytes memory _value) external view returns (bool);

    function changeManager1(address _newAddress) external;

    function changeManager2(address _newAddress) external;

    function changeManager3(address _newAddress) external;

    function changeManager4(address _newAddress) external;

    function changeManager5(address _newAddress) external;

    function isTrustedSource(address _address) external view returns (bool);

    function addAddressToTrustedSources(address _address, string memory _name) external;
}

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_managers","type":"address"},{"internalType":"address","name":"_botPrevention","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyDisabled","type":"error"},{"inputs":[],"name":"AlreadyEnabled","type":"error"},{"inputs":[],"name":"BotPreventionError","type":"error"},{"inputs":[],"name":"NotAuthorized","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"manager","type":"address"},{"indexed":false,"internalType":"bool","name":"isApproved","type":"bool"}],"name":"DisableBotPrevention","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"manager","type":"address"},{"indexed":false,"internalType":"bool","name":"isApproved","type":"bool"}],"name":"EnableBotPrevention","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"botPreventionEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"disableBotPrevention","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableBotPrevention","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c80638da5cb5b116100a2578063a9059cbb11610071578063a9059cbb146102bf578063d5abeb01146102ef578063dd62ed3e1461030d578063f2fde38b1461033d578063fb9787761461035957610116565b80638da5cb5b1461024957806395d89b4114610267578063a155f55c14610285578063a457c2d71461028f57610116565b806323b872dd116100e957806323b872dd14610191578063313ce567146101c157806339509351146101df57806370a082311461020f578063715018a61461023f57610116565b806306fdde031461011b578063095ea7b3146101395780630a37dde71461016957806318160ddd14610173575b600080fd5b610123610377565b6040516101309190611ac7565b60405180910390f35b610153600480360381019061014e9190611b82565b610409565b6040516101609190611bdd565b60405180910390f35b61017161042c565b005b61017b6107bf565b6040516101889190611c07565b60405180910390f35b6101ab60048036038101906101a69190611c22565b6107c9565b6040516101b89190611bdd565b60405180910390f35b6101c96107f8565b6040516101d69190611c91565b60405180910390f35b6101f960048036038101906101f49190611b82565b610801565b6040516102069190611bdd565b60405180910390f35b61022960048036038101906102249190611cac565b610838565b6040516102369190611c07565b60405180910390f35b610247610880565b005b610251610894565b60405161025e9190611ce8565b60405180910390f35b61026f6108be565b60405161027c9190611ac7565b60405180910390f35b61028d610950565b005b6102a960048036038101906102a49190611b82565b610d67565b6040516102b69190611bdd565b60405180910390f35b6102d960048036038101906102d49190611b82565b610dde565b6040516102e69190611bdd565b60405180910390f35b6102f7610e01565b6040516103049190611c07565b60405180910390f35b61032760048036038101906103229190611d03565b610e11565b6040516103349190611c07565b60405180910390f35b61035760048036038101906103529190611cac565b610e98565b005b610361610f1c565b60405161036e9190611bdd565b60405180910390f35b60606003805461038690611d72565b80601f01602080910402602001604051908101604052809291908181526020018280546103b290611d72565b80156103ff5780601f106103d4576101008083540402835291602001916103ff565b820191906000526020600020905b8154815290600101906020018083116103e257829003601f168201915b5050505050905090565b600080610414610f2f565b9050610421818585610f37565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f3ae2415336040518263ffffffff1660e01b81526004016104879190611ce8565b602060405180830381865afa1580156104a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104c89190611dd0565b6104fe576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600760149054906101000a900460ff16610543576040517e5ecddb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006040518060400160405280601981526020017f53657420426f742050726576656e74696f6e205374617475730000000000000081525090506000806040516020016105909190611e42565b6040516020818303038152906040529050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b9d94383836040518363ffffffff1660e01b81526004016105fe929190611eb2565b600060405180830381600087803b15801561061857600080fd5b505af115801561062c573d6000803e3d6000fd5b505050506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f621394d84846040518363ffffffff1660e01b815260040161068f929190611eb2565b602060405180830381865afa1580156106ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106d09190611dd0565b90508015610781576000600760146101000a81548160ff021916908315150217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f4daa673846040518263ffffffff1660e01b815260040161074e9190611ac7565b600060405180830381600087803b15801561076857600080fd5b505af115801561077c573d6000803e3d6000fd5b505050505b7fb386445c99f0fbc8a4aba11c5f01e642fc80d521ceba7716115e4eac67c3b46c33826040516107b2929190611ee9565b60405180910390a1505050565b6000600254905090565b6000806107d4610f2f565b90506107e1858285611102565b6107ec85858561118e565b60019150509392505050565b60006012905090565b60008061080c610f2f565b905061082d81858561081e8589610e11565b6108289190611f41565b610f37565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610888611406565b6108926000611484565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108cd90611d72565b80601f01602080910402602001604051908101604052809291908181526020018280546108f990611d72565b80156109465780601f1061091b57610100808354040283529160200191610946565b820191906000526020600020905b81548152906001019060200180831161092957829003601f168201915b5050505050905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f3ae2415336040518263ffffffff1660e01b81526004016109ab9190611ce8565b602060405180830381865afa1580156109c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109ec9190611dd0565b610a22576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600760149054906101000a900460ff1615610a69576040517ff2a5f75a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006040518060400160405280601981526020017f53657420426f742050726576656e74696f6e20537461747573000000000000008152509050600080604051602001610ab69190611e42565b6040516020818303038152906040529050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b9d94383836040518363ffffffff1660e01b8152600401610b24929190611eb2565b600060405180830381600087803b158015610b3e57600080fd5b505af1158015610b52573d6000803e3d6000fd5b505050506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f621394d84846040518363ffffffff1660e01b8152600401610bb5929190611eb2565b602060405180830381865afa158015610bd2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bf69190611dd0565b90508015610d29576001600760146101000a81548160ff021916908315150217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f4daa673846040518263ffffffff1660e01b8152600401610c749190611ac7565b600060405180830381600087803b158015610c8e57600080fd5b505af1158015610ca2573d6000803e3d6000fd5b50505050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166326d592806040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610d1057600080fd5b505af1158015610d24573d6000803e3d6000fd5b505050505b7f92b0e84dd3a0df3dcb299584e28e45bb95f30aa49e273fc63da0750215546b683382604051610d5a929190611ee9565b60405180910390a1505050565b600080610d72610f2f565b90506000610d808286610e11565b905083811015610dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbc90612009565b60405180910390fd5b610dd28286868403610f37565b60019250505092915050565b600080610de9610f2f565b9050610df681858561118e565b600191505092915050565b6b09b18ab5df7180b6b800000081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ea0611406565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f079061209b565b60405180910390fd5b610f1981611484565b50565b600760149054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e9061212d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100e906121bf565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110f59190611c07565b60405180910390a3505050565b600061110e8484610e11565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611188578181101561117a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111719061222b565b60405180910390fd5b6111878484848403610f37565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f5906122bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561126e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112659061234f565b60405180910390fd5b61127983838361154a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f6906123e1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113ed9190611c07565b60405180910390a36114008484846117bb565b50505050565b61140e610f2f565b73ffffffffffffffffffffffffffffffffffffffff1661142c610894565b73ffffffffffffffffffffffffffffffffffffffff1614611482576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114799061244d565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600760149054906101000a900460ff1680156115935750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156117b657600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f3ae2415326040518263ffffffff1660e01b81526004016115f39190611ce8565b602060405180830381865afa158015611610573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116349190611dd0565b15806116d95750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e052a5c9336040518263ffffffff1660e01b81526004016116969190611ce8565b602060405180830381865afa1580156116b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116d79190611dd0565b155b156117b557600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637cbab1c78484846040518463ffffffff1660e01b815260040161173d9392919061246d565b602060405180830381865afa15801561175a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061177e9190611dd0565b6117b4576040517f92586cfc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b505050565b600760149054906101000a900460ff1680156118045750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611a2957600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f3ae2415326040518263ffffffff1660e01b81526004016118649190611ce8565b602060405180830381865afa158015611881573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118a59190611dd0565b158061194a5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e052a5c9336040518263ffffffff1660e01b81526004016119079190611ce8565b602060405180830381865afa158015611924573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119489190611dd0565b155b15611a2857600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663df6258be8484846040518463ffffffff1660e01b81526004016119ae9392919061246d565b6020604051808303816000875af11580156119cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119f19190611dd0565b611a27576040517f92586cfc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a68578082015181840152602081019050611a4d565b83811115611a77576000848401525b50505050565b6000601f19601f8301169050919050565b6000611a9982611a2e565b611aa38185611a39565b9350611ab3818560208601611a4a565b611abc81611a7d565b840191505092915050565b60006020820190508181036000830152611ae18184611a8e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b1982611aee565b9050919050565b611b2981611b0e565b8114611b3457600080fd5b50565b600081359050611b4681611b20565b92915050565b6000819050919050565b611b5f81611b4c565b8114611b6a57600080fd5b50565b600081359050611b7c81611b56565b92915050565b60008060408385031215611b9957611b98611ae9565b5b6000611ba785828601611b37565b9250506020611bb885828601611b6d565b9150509250929050565b60008115159050919050565b611bd781611bc2565b82525050565b6000602082019050611bf26000830184611bce565b92915050565b611c0181611b4c565b82525050565b6000602082019050611c1c6000830184611bf8565b92915050565b600080600060608486031215611c3b57611c3a611ae9565b5b6000611c4986828701611b37565b9350506020611c5a86828701611b37565b9250506040611c6b86828701611b6d565b9150509250925092565b600060ff82169050919050565b611c8b81611c75565b82525050565b6000602082019050611ca66000830184611c82565b92915050565b600060208284031215611cc257611cc1611ae9565b5b6000611cd084828501611b37565b91505092915050565b611ce281611b0e565b82525050565b6000602082019050611cfd6000830184611cd9565b92915050565b60008060408385031215611d1a57611d19611ae9565b5b6000611d2885828601611b37565b9250506020611d3985828601611b37565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611d8a57607f821691505b60208210811415611d9e57611d9d611d43565b5b50919050565b611dad81611bc2565b8114611db857600080fd5b50565b600081519050611dca81611da4565b92915050565b600060208284031215611de657611de5611ae9565b5b6000611df484828501611dbb565b91505092915050565b6000819050919050565b6000819050919050565b6000611e2c611e27611e2284611dfd565b611e07565b611c75565b9050919050565b611e3c81611e11565b82525050565b6000602082019050611e576000830184611e33565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611e8482611e5d565b611e8e8185611e68565b9350611e9e818560208601611a4a565b611ea781611a7d565b840191505092915050565b60006040820190508181036000830152611ecc8185611a8e565b90508181036020830152611ee08184611e79565b90509392505050565b6000604082019050611efe6000830185611cd9565b611f0b6020830184611bce565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611f4c82611b4c565b9150611f5783611b4c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611f8c57611f8b611f12565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611ff3602583611a39565b9150611ffe82611f97565b604082019050919050565b6000602082019050818103600083015261202281611fe6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612085602683611a39565b915061209082612029565b604082019050919050565b600060208201905081810360008301526120b481612078565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612117602483611a39565b9150612122826120bb565b604082019050919050565b600060208201905081810360008301526121468161210a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006121a9602283611a39565b91506121b48261214d565b604082019050919050565b600060208201905081810360008301526121d88161219c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612215601d83611a39565b9150612220826121df565b602082019050919050565b6000602082019050818103600083015261224481612208565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006122a7602583611a39565b91506122b28261224b565b604082019050919050565b600060208201905081810360008301526122d68161229a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612339602383611a39565b9150612344826122dd565b604082019050919050565b600060208201905081810360008301526123688161232c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006123cb602683611a39565b91506123d68261236f565b604082019050919050565b600060208201905081810360008301526123fa816123be565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612437602083611a39565b915061244282612401565b602082019050919050565b600060208201905081810360008301526124668161242a565b9050919050565b60006060820190506124826000830186611cd9565b61248f6020830185611cd9565b61249c6040830184611bf8565b94935050505056fea26469706673582212207e8dc7be011f27c9592e2ffebebf73bf1d918a53d6e0bf54730fa2a267df9d0964736f6c634300080c0033

Block Transaction Gas Used Reward
view all blocks produced

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

OVERVIEW

The Unfettered Souls token contract has migrated to a 0xaa4fbc6809a8e1924520fc85282ac4c76a7671d7.

Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]
[ 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.